2011-07-24 18:32:09 +02:00
|
|
|
/*****************************************
|
|
|
|
* This code is from Mighty Channel 11
|
|
|
|
* which is based on the TriiForce source.
|
2011-07-26 10:57:12 +02:00
|
|
|
* Modifications by Dimok.
|
2011-07-24 18:32:09 +02:00
|
|
|
*****************************************/
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <ogcsys.h>
|
|
|
|
#include <malloc.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2011-07-26 10:57:12 +02:00
|
|
|
#include "system/IosLoader.h"
|
2011-07-24 18:32:09 +02:00
|
|
|
#include "gecko.h"
|
2011-07-26 10:57:12 +02:00
|
|
|
#include "NandEmu.h"
|
2011-07-24 18:32:09 +02:00
|
|
|
|
2011-07-26 10:57:12 +02:00
|
|
|
/* 'NAND Device' structure */
|
|
|
|
typedef struct {
|
|
|
|
/* Device name */
|
|
|
|
const char *name;
|
|
|
|
|
|
|
|
/* Mode value */
|
|
|
|
u32 mode;
|
|
|
|
|
|
|
|
/* Un/mount command */
|
|
|
|
u32 mountCmd;
|
|
|
|
u32 umountCmd;
|
|
|
|
} nandDevice;
|
2011-07-24 18:32:09 +02:00
|
|
|
|
|
|
|
static nandDevice ndevList[] =
|
|
|
|
{
|
2011-07-26 00:28:22 +02:00
|
|
|
{ "Disable", 0, 0x00, 0x00 },
|
|
|
|
{ "SD/SDHC Card", 1, 0xF0, 0xF1 },
|
|
|
|
{ "USB 2.0 Mass Storage Device", 2, 0xF2, 0xF3 },
|
2011-07-24 18:32:09 +02:00
|
|
|
};
|
|
|
|
|
2011-07-26 10:57:12 +02:00
|
|
|
/* Buffer */
|
|
|
|
static u32 inbuf[8] ATTRIBUTE_ALIGN(32);
|
|
|
|
static const char fs[] ATTRIBUTE_ALIGN(32) = "/dev/fs";
|
|
|
|
static const char fat[] ATTRIBUTE_ALIGN(32) = "fat";
|
2011-07-24 18:32:09 +02:00
|
|
|
static int mounted = 0;
|
|
|
|
static int partition = 0;
|
|
|
|
static int fullmode = 0;
|
|
|
|
static char path[32] = "\0";
|
|
|
|
|
2011-07-26 10:57:12 +02:00
|
|
|
static s32 Nand_Mount(nandDevice *dev)
|
2011-07-24 18:32:09 +02:00
|
|
|
{
|
2011-07-26 00:28:22 +02:00
|
|
|
s32 fd, ret;
|
|
|
|
u32 inlen = 0;
|
|
|
|
ioctlv *vector = NULL;
|
|
|
|
u32 *buffer = NULL;
|
|
|
|
|
|
|
|
/* Open FAT module */
|
|
|
|
fd = IOS_Open(fat, 0);
|
|
|
|
if (fd < 0)
|
|
|
|
return fd;
|
|
|
|
|
2011-07-26 10:57:12 +02:00
|
|
|
// NOTE:
|
|
|
|
// The official cIOSX rev21 by Waninkoko ignores the partition argument
|
|
|
|
// and the nand is always expected to be on the 1st partition.
|
|
|
|
// However this way earlier d2x betas having revision 21 take in
|
|
|
|
// consideration the partition argument.
|
|
|
|
inlen = 1;
|
|
|
|
|
|
|
|
/* Allocate memory */
|
|
|
|
buffer = (u32 *)memalign(32, sizeof(u32)*3);
|
|
|
|
|
|
|
|
/* Set vector pointer */
|
|
|
|
vector = (ioctlv *)buffer;
|
|
|
|
|
|
|
|
buffer[0] = (u32)(buffer + 2);
|
|
|
|
buffer[1] = sizeof(u32);
|
|
|
|
buffer[2] = (u32)partition;
|
2011-07-26 00:28:22 +02:00
|
|
|
|
|
|
|
/* Mount device */
|
|
|
|
ret = IOS_Ioctlv(fd, dev->mountCmd, inlen, 0, vector);
|
|
|
|
|
|
|
|
/* Close FAT module */
|
|
|
|
//!TODO: Figure out why this causes a freeze
|
|
|
|
//IOS_Close(fd);
|
|
|
|
|
|
|
|
/* Free memory */
|
|
|
|
if(buffer != NULL)
|
|
|
|
free(buffer);
|
|
|
|
|
|
|
|
return ret;
|
2011-07-24 18:32:09 +02:00
|
|
|
}
|
|
|
|
|
2011-07-26 10:57:12 +02:00
|
|
|
static s32 Nand_Unmount(nandDevice *dev)
|
2011-07-24 18:32:09 +02:00
|
|
|
{
|
2011-07-26 00:28:22 +02:00
|
|
|
s32 fd, ret;
|
2011-07-24 18:32:09 +02:00
|
|
|
|
2011-07-26 00:28:22 +02:00
|
|
|
// Open FAT module
|
|
|
|
fd = IOS_Open(fat, 0);
|
|
|
|
if (fd < 0)
|
|
|
|
return fd;
|
2011-07-24 18:32:09 +02:00
|
|
|
|
2011-07-26 00:28:22 +02:00
|
|
|
// Unmount device
|
|
|
|
ret = IOS_Ioctlv(fd, dev->umountCmd, 0, 0, NULL);
|
2011-07-24 18:32:09 +02:00
|
|
|
|
2011-07-26 00:28:22 +02:00
|
|
|
// Close FAT module
|
|
|
|
IOS_Close(fd);
|
2011-07-24 18:32:09 +02:00
|
|
|
|
2011-07-26 00:28:22 +02:00
|
|
|
return ret;
|
2011-07-24 18:32:09 +02:00
|
|
|
}
|
|
|
|
|
2011-07-26 10:57:12 +02:00
|
|
|
static s32 Nand_Enable(nandDevice *dev)
|
2011-07-24 18:32:09 +02:00
|
|
|
{
|
2011-07-26 00:28:22 +02:00
|
|
|
s32 fd, ret;
|
|
|
|
u32 *buffer = NULL;
|
|
|
|
|
|
|
|
// Open /dev/fs
|
|
|
|
fd = IOS_Open(fs, 0);
|
|
|
|
if (fd < 0)
|
|
|
|
return fd;
|
|
|
|
|
2011-07-26 10:57:12 +02:00
|
|
|
//FULL NAND emulation since rev18
|
|
|
|
//needed for reading images on triiforce mrc folder using ISFS commands
|
|
|
|
inbuf[0] = dev->mode | fullmode;
|
2011-07-26 00:28:22 +02:00
|
|
|
|
2011-07-26 10:57:12 +02:00
|
|
|
// NOTE:
|
|
|
|
// The official cIOSX rev21 by Waninkoko provides an undocumented feature
|
|
|
|
// to set nand path when mounting the device.
|
|
|
|
// This feature has been discovered during d2x development.
|
|
|
|
int pathlen = strlen(path)+1;
|
|
|
|
|
|
|
|
/* Allocate memory */
|
|
|
|
buffer = (u32 *)memalign(32, (sizeof(u32)*5)+pathlen);
|
|
|
|
|
|
|
|
buffer[0] = (u32)(buffer + 4);
|
|
|
|
buffer[1] = sizeof(u32); // actually not used by cios
|
|
|
|
buffer[2] = (u32)(buffer + 5);
|
|
|
|
buffer[3] = pathlen; // actually not used by cios
|
|
|
|
buffer[4] = inbuf[0];
|
|
|
|
strcpy((char*)(buffer+5), path);
|
|
|
|
|
|
|
|
ret = IOS_Ioctlv(fd, 100, 2, 0, (ioctlv *)buffer);
|
2011-07-26 00:28:22 +02:00
|
|
|
|
|
|
|
/* Free memory */
|
|
|
|
if(buffer != NULL)
|
|
|
|
free(buffer);
|
|
|
|
|
|
|
|
// Close /dev/fs
|
|
|
|
IOS_Close(fd);
|
|
|
|
|
|
|
|
return ret;
|
2011-07-24 18:32:09 +02:00
|
|
|
}
|
|
|
|
|
2011-07-26 10:57:12 +02:00
|
|
|
static s32 Nand_Disable(void)
|
2011-07-24 18:32:09 +02:00
|
|
|
{
|
2011-07-26 00:28:22 +02:00
|
|
|
s32 fd, ret;
|
2011-07-24 18:32:09 +02:00
|
|
|
|
2011-07-26 00:28:22 +02:00
|
|
|
// Open /dev/fs
|
|
|
|
fd = IOS_Open(fs, 0);
|
|
|
|
if (fd < 0)
|
|
|
|
return fd;
|
2011-07-24 18:32:09 +02:00
|
|
|
|
2011-07-26 00:28:22 +02:00
|
|
|
// Set input buffer
|
|
|
|
inbuf[0] = 0;
|
2011-07-24 18:32:09 +02:00
|
|
|
|
2011-07-26 00:28:22 +02:00
|
|
|
// Disable NAND emulator
|
|
|
|
ret = IOS_Ioctl(fd, 100, inbuf, sizeof(inbuf), NULL, 0);
|
2011-07-24 18:32:09 +02:00
|
|
|
|
2011-07-26 00:28:22 +02:00
|
|
|
// Close /dev/fs
|
|
|
|
IOS_Close(fd);
|
2011-07-24 18:32:09 +02:00
|
|
|
|
2011-07-26 00:28:22 +02:00
|
|
|
return ret;
|
2011-07-24 18:32:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
s32 Enable_Emu(int selection)
|
|
|
|
{
|
2011-07-26 00:28:22 +02:00
|
|
|
if(mounted != 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
s32 ret;
|
|
|
|
nandDevice *ndev = NULL;
|
|
|
|
ndev = &ndevList[selection];
|
|
|
|
|
|
|
|
ret = Nand_Mount(ndev);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
gprintf(" ERROR Mount! (ret = %d)\n", ret);
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = Nand_Enable(ndev);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
gprintf(" ERROR Enable! (ret = %d)\n", ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
mounted = selection;
|
|
|
|
return 0;
|
2011-07-24 18:32:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
s32 Disable_Emu()
|
|
|
|
{
|
2011-07-26 00:28:22 +02:00
|
|
|
if(mounted==0)
|
|
|
|
return 0;
|
2011-07-24 18:32:09 +02:00
|
|
|
|
2011-07-26 00:28:22 +02:00
|
|
|
nandDevice *ndev = NULL;
|
|
|
|
ndev = &ndevList[mounted];
|
2011-07-24 18:32:09 +02:00
|
|
|
|
2011-07-26 00:28:22 +02:00
|
|
|
Nand_Disable();
|
|
|
|
Nand_Unmount(ndev);
|
2011-07-24 18:32:09 +02:00
|
|
|
|
2011-07-26 00:28:22 +02:00
|
|
|
mounted = 0;
|
2011-07-24 18:32:09 +02:00
|
|
|
|
2011-07-26 00:28:22 +02:00
|
|
|
return 0;
|
2011-07-24 18:32:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void Set_Partition(int p)
|
|
|
|
{
|
2011-07-26 00:28:22 +02:00
|
|
|
partition = p;
|
2011-07-24 18:32:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void Set_Path(const char* p)
|
|
|
|
{
|
2011-07-26 00:28:22 +02:00
|
|
|
int i = 0;
|
|
|
|
|
|
|
|
while(p[i] != '\0' && i < 31)
|
|
|
|
{
|
|
|
|
path[i] = p[i];
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
while(path[i-1] == '/')
|
|
|
|
{
|
|
|
|
path[i-1] = '\0';
|
|
|
|
--i;
|
|
|
|
}
|
|
|
|
path[i] = '\0';
|
2011-07-24 18:32:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void Set_FullMode(int fm)
|
|
|
|
{
|
2011-07-26 00:28:22 +02:00
|
|
|
fullmode = fm ? 0x100 : 0;
|
2011-07-24 18:32:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const char* Get_Path(void)
|
|
|
|
{
|
2011-07-26 00:28:22 +02:00
|
|
|
return path;
|
2011-07-24 18:32:09 +02:00
|
|
|
}
|