2009-05-03 20:53:31 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <ogcsys.h>
|
|
|
|
#include <sdcard/wiisd_io.h>
|
|
|
|
|
|
|
|
#include "sdhc.h"
|
|
|
|
|
|
|
|
/* IOCTL comamnds */
|
|
|
|
#define IOCTL_SDHC_INIT 0x01
|
|
|
|
#define IOCTL_SDHC_READ 0x02
|
|
|
|
#define IOCTL_SDHC_WRITE 0x03
|
|
|
|
#define IOCTL_SDHC_ISINSERTED 0x04
|
|
|
|
|
|
|
|
#define SDHC_HEAPSIZE 0x8000
|
2009-12-19 15:05:31 +01:00
|
|
|
#define SDHC_MEM2_SIZE 0x10000
|
|
|
|
|
|
|
|
int sdhc_mode_sd = 0;
|
2009-05-03 20:53:31 +02:00
|
|
|
|
|
|
|
/* Variables */
|
|
|
|
static char fs[] ATTRIBUTE_ALIGN(32) = "/dev/sdio/sdhc";
|
|
|
|
|
|
|
|
static s32 hid = -1, fd = -1;
|
|
|
|
static u32 sector_size = SDHC_SECTOR_SIZE;
|
2009-12-19 15:05:31 +01:00
|
|
|
static void *sdhc_buf2;
|
2009-05-03 20:53:31 +02:00
|
|
|
|
2009-12-19 15:05:31 +01:00
|
|
|
extern void* SYS_AllocArena2MemLo(u32 size,u32 align);
|
2009-05-03 20:53:31 +02:00
|
|
|
|
2010-02-09 11:59:55 +01:00
|
|
|
bool SDHC_Init(void)
|
|
|
|
{
|
|
|
|
s32 ret;
|
|
|
|
|
|
|
|
if (sdhc_mode_sd) {
|
|
|
|
return __io_wiisd.startup();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Already open */
|
|
|
|
if (fd >= 0)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
/* Create heap */
|
|
|
|
if (hid < 0) {
|
|
|
|
hid = iosCreateHeap(SDHC_HEAPSIZE);
|
|
|
|
if (hid < 0)
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
// allocate buf2
|
|
|
|
if (sdhc_buf2 == NULL) {
|
|
|
|
sdhc_buf2 = SYS_AllocArena2MemLo(SDHC_MEM2_SIZE, 32);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Open SDHC device */
|
|
|
|
fd = IOS_Open(fs, 0);
|
|
|
|
if (fd < 0)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
/* Initialize SDHC */
|
|
|
|
ret = IOS_IoctlvFormat(hid, fd, IOCTL_SDHC_INIT, ":");
|
|
|
|
if (ret)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
return true;
|
2009-05-03 20:53:31 +02:00
|
|
|
|
2009-12-19 15:05:31 +01:00
|
|
|
err:
|
2010-02-09 11:59:55 +01:00
|
|
|
/* Close SDHC device */
|
|
|
|
if (fd >= 0) {
|
|
|
|
IOS_Close(fd);
|
|
|
|
fd = -1;
|
|
|
|
}
|
2009-05-03 20:53:31 +02:00
|
|
|
|
2010-02-09 11:59:55 +01:00
|
|
|
return false;
|
2009-05-03 20:53:31 +02:00
|
|
|
}
|
|
|
|
|
2010-02-09 11:59:55 +01:00
|
|
|
bool SDHC_Close(void)
|
|
|
|
{
|
|
|
|
if (sdhc_mode_sd) {
|
|
|
|
return __io_wiisd.shutdown();
|
|
|
|
}
|
2009-05-03 20:53:31 +02:00
|
|
|
|
2010-02-09 11:59:55 +01:00
|
|
|
/* Close SDHC device */
|
|
|
|
if (fd >= 0) {
|
|
|
|
IOS_Close(fd);
|
|
|
|
fd = -1;
|
|
|
|
}
|
2009-05-03 20:53:31 +02:00
|
|
|
|
2010-02-09 11:59:55 +01:00
|
|
|
/*if (hid > 0) {
|
|
|
|
iosDestroyHeap(hid);
|
|
|
|
hid = -1;
|
|
|
|
}*/
|
2009-12-19 15:05:31 +01:00
|
|
|
|
2010-02-09 11:59:55 +01:00
|
|
|
return true;
|
2009-05-03 20:53:31 +02:00
|
|
|
}
|
|
|
|
|
2010-02-09 11:59:55 +01:00
|
|
|
bool SDHC_IsInserted(void)
|
|
|
|
{
|
|
|
|
s32 ret;
|
|
|
|
if (sdhc_mode_sd) {
|
|
|
|
return __io_wiisd.isInserted();
|
|
|
|
}
|
2009-05-03 20:53:31 +02:00
|
|
|
|
2010-02-09 11:59:55 +01:00
|
|
|
/* Check if SD card is inserted */
|
|
|
|
ret = IOS_IoctlvFormat(hid, fd, IOCTL_SDHC_ISINSERTED, ":");
|
2009-05-03 20:53:31 +02:00
|
|
|
|
2010-02-09 11:59:55 +01:00
|
|
|
return (!ret) ? true : false;
|
2009-12-19 15:05:31 +01:00
|
|
|
}
|
2009-05-03 20:53:31 +02:00
|
|
|
|
2010-02-09 11:59:55 +01:00
|
|
|
bool SDHC_ReadSectors(u32 sector, u32 count, void *buffer)
|
|
|
|
{
|
|
|
|
//printf("SD-R(%u %u)\n", sector, count);
|
|
|
|
if (sdhc_mode_sd) {
|
|
|
|
return __io_wiisd.readSectors(sector, count, buffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
void *buf = (void *)buffer;
|
|
|
|
u32 len = (sector_size * count);
|
|
|
|
|
|
|
|
s32 ret;
|
|
|
|
|
|
|
|
/* Device not opened */
|
|
|
|
if (fd < 0)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
/* Buffer not aligned */
|
|
|
|
if ((u32)buffer & 0x1F) {
|
|
|
|
/* Allocate memory */
|
|
|
|
//buf = iosAlloc(hid, len);
|
|
|
|
buf = sdhc_buf2;
|
|
|
|
if (!buf)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Read data */
|
|
|
|
ret = IOS_IoctlvFormat(hid, fd, IOCTL_SDHC_READ, "ii:d", sector, count, buf, len);
|
|
|
|
|
|
|
|
/* Copy data */
|
|
|
|
if (buf != buffer) {
|
|
|
|
memcpy(buffer, buf, len);
|
|
|
|
//iosFree(hid, buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (!ret) ? true : false;
|
2009-12-19 15:05:31 +01:00
|
|
|
}
|
2009-05-03 20:53:31 +02:00
|
|
|
|
2010-02-09 11:59:55 +01:00
|
|
|
bool SDHC_WriteSectors(u32 sector, u32 count, void *buffer)
|
|
|
|
{
|
|
|
|
if (sdhc_mode_sd) {
|
|
|
|
return __io_wiisd.writeSectors(sector, count, buffer);
|
|
|
|
}
|
2009-05-03 20:53:31 +02:00
|
|
|
|
2010-02-09 11:59:55 +01:00
|
|
|
void *buf = (void *)buffer;
|
|
|
|
u32 len = (sector_size * count);
|
2009-05-03 20:53:31 +02:00
|
|
|
|
2010-02-09 11:59:55 +01:00
|
|
|
s32 ret;
|
2009-05-03 20:53:31 +02:00
|
|
|
|
2010-02-09 11:59:55 +01:00
|
|
|
/* Device not opened */
|
|
|
|
if (fd < 0)
|
|
|
|
return false;
|
2009-05-03 20:53:31 +02:00
|
|
|
|
2010-02-09 11:59:55 +01:00
|
|
|
/* Buffer not aligned */
|
|
|
|
if ((u32)buffer & 0x1F) {
|
|
|
|
/* Allocate memory */
|
|
|
|
//buf = iosAlloc(hid, len);
|
|
|
|
buf = sdhc_buf2;
|
|
|
|
if (!buf)
|
|
|
|
return false;
|
2009-05-03 20:53:31 +02:00
|
|
|
|
2010-02-09 11:59:55 +01:00
|
|
|
/* Copy data */
|
|
|
|
memcpy(buf, buffer, len);
|
|
|
|
}
|
2009-05-03 20:53:31 +02:00
|
|
|
|
2010-02-09 11:59:55 +01:00
|
|
|
/* Read data */
|
|
|
|
ret = IOS_IoctlvFormat(hid, fd, IOCTL_SDHC_WRITE, "ii:d", sector, count, buf, len);
|
2009-05-03 20:53:31 +02:00
|
|
|
|
2010-02-09 11:59:55 +01:00
|
|
|
/* Free memory */
|
|
|
|
//if (buf != buffer)
|
|
|
|
// iosFree(hid, buf);
|
2009-05-03 20:53:31 +02:00
|
|
|
|
2010-02-09 11:59:55 +01:00
|
|
|
return (!ret) ? true : false;
|
2009-12-19 15:05:31 +01:00
|
|
|
}
|
2009-05-03 20:53:31 +02:00
|
|
|
|
2010-02-09 11:59:55 +01:00
|
|
|
bool SDHC_ClearStatus(void)
|
|
|
|
{
|
|
|
|
return true;
|
2009-05-03 20:53:31 +02:00
|
|
|
}
|
|
|
|
|
2010-02-09 11:59:55 +01:00
|
|
|
bool __io_SDHC_Close(void)
|
|
|
|
{
|
|
|
|
// do nothing.
|
|
|
|
return true;
|
2009-05-03 20:53:31 +02:00
|
|
|
}
|
|
|
|
|
2010-02-09 11:59:55 +01:00
|
|
|
bool __io_SDHC_NOP(void)
|
|
|
|
{
|
|
|
|
// do nothing.
|
|
|
|
return true;
|
2009-12-19 15:05:31 +01:00
|
|
|
}
|
2009-05-03 20:53:31 +02:00
|
|
|
|
|
|
|
const DISC_INTERFACE __io_sdhc = {
|
2010-02-09 11:59:55 +01:00
|
|
|
DEVICE_TYPE_WII_SD,
|
|
|
|
FEATURE_MEDIUM_CANREAD | FEATURE_MEDIUM_CANWRITE | FEATURE_WII_SD,
|
|
|
|
(FN_MEDIUM_STARTUP)&SDHC_Init,
|
|
|
|
(FN_MEDIUM_ISINSERTED)&SDHC_IsInserted,
|
|
|
|
(FN_MEDIUM_READSECTORS)&SDHC_ReadSectors,
|
|
|
|
(FN_MEDIUM_WRITESECTORS)&SDHC_WriteSectors,
|
|
|
|
(FN_MEDIUM_CLEARSTATUS)&SDHC_ClearStatus,
|
|
|
|
//(FN_MEDIUM_SHUTDOWN)&SDHC_Close
|
|
|
|
(FN_MEDIUM_SHUTDOWN)&__io_SDHC_Close
|
2009-05-03 20:53:31 +02:00
|
|
|
};
|
2009-12-19 15:05:31 +01:00
|
|
|
|
|
|
|
const DISC_INTERFACE __io_sdhc_ro = {
|
2010-02-09 11:59:55 +01:00
|
|
|
DEVICE_TYPE_WII_SD,
|
|
|
|
FEATURE_MEDIUM_CANREAD | FEATURE_WII_SD,
|
|
|
|
(FN_MEDIUM_STARTUP) &SDHC_Init,
|
|
|
|
(FN_MEDIUM_ISINSERTED) &SDHC_IsInserted,
|
|
|
|
(FN_MEDIUM_READSECTORS) &SDHC_ReadSectors,
|
|
|
|
(FN_MEDIUM_WRITESECTORS) &__io_SDHC_NOP, // &SDHC_WriteSectors,
|
|
|
|
(FN_MEDIUM_CLEARSTATUS) &SDHC_ClearStatus,
|
|
|
|
//(FN_MEDIUM_SHUTDOWN)&SDHC_Close
|
|
|
|
(FN_MEDIUM_SHUTDOWN) &__io_SDHC_Close
|
2009-12-19 15:05:31 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|