mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-18 09:19:17 +01:00
*Cleaned up USB storage control
- Using mem2 memory from our mem2 manager now - Fixed potential memory overwrite - Removed unneeded or unused functions
This commit is contained in:
parent
defd5f940b
commit
71a95a57d7
@ -2,8 +2,8 @@
|
|||||||
<app version="1">
|
<app version="1">
|
||||||
<name> USB Loader GX</name>
|
<name> USB Loader GX</name>
|
||||||
<coder>USB Loader GX Team</coder>
|
<coder>USB Loader GX Team</coder>
|
||||||
<version>1.0 r980</version>
|
<version>1.0 r981</version>
|
||||||
<release_date>201009281739</release_date>
|
<release_date>201009282041</release_date>
|
||||||
<short_description>Loads games from USB-devices</short_description>
|
<short_description>Loads games from USB-devices</short_description>
|
||||||
<long_description>USB Loader GX is a libwiigui based USB iso loader with a wii-like GUI. You can install games to your HDDs and boot them with shorter loading times.
|
<long_description>USB Loader GX is a libwiigui based USB iso loader with a wii-like GUI. You can install games to your HDDs and boot them with shorter loading times.
|
||||||
The interactive GUI is completely controllable with WiiMote, Classic Controller or GC Controller.
|
The interactive GUI is completely controllable with WiiMote, Classic Controller or GC Controller.
|
||||||
|
@ -38,34 +38,16 @@ class Text: public GuiText
|
|||||||
//!Set to the char pos in text
|
//!Set to the char pos in text
|
||||||
void SetTextPos(int pos);
|
void SetTextPos(int pos);
|
||||||
//!Refresh the rows to draw
|
//!Refresh the rows to draw
|
||||||
int GetCurrPos()
|
int GetCurrPos() { return curLineStart; };
|
||||||
{
|
|
||||||
return curLineStart;
|
|
||||||
}
|
|
||||||
;
|
|
||||||
//!Get the count of loaded lines
|
//!Get the count of loaded lines
|
||||||
int GetLinesCount()
|
int GetLinesCount() { return textDyn.size(); };
|
||||||
{
|
|
||||||
return textDyn.size();
|
|
||||||
}
|
|
||||||
;
|
|
||||||
//!Get the total count of lines
|
//!Get the total count of lines
|
||||||
int GetTotalLinesCount()
|
int GetTotalLinesCount() { return TextLines.size(); };
|
||||||
{
|
|
||||||
return TextLines.size();
|
|
||||||
}
|
|
||||||
;
|
|
||||||
//!Get the original full Text
|
//!Get the original full Text
|
||||||
const wchar_t * GetText();
|
const wchar_t * GetText();
|
||||||
//!Get the original full Text as wString
|
//!Get the original full Text as wString
|
||||||
wString * GetwString()
|
wString * GetwString() { return wText; };
|
||||||
{
|
|
||||||
return wText;
|
|
||||||
}
|
|
||||||
;
|
|
||||||
//!Get the original Text as a UTF-8 text
|
//!Get the original Text as a UTF-8 text
|
||||||
//!memory is allocated in this
|
|
||||||
//!which needs to be deleted later
|
|
||||||
std::string GetUTF8String() const;
|
std::string GetUTF8String() const;
|
||||||
//!Get a Textline
|
//!Get a Textline
|
||||||
const wchar_t * GetTextLine(int ind);
|
const wchar_t * GetTextLine(int ind);
|
||||||
|
@ -31,6 +31,11 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include "usbstorage2.h"
|
#include "usbstorage2.h"
|
||||||
|
#include "memory/mem2.h"
|
||||||
|
|
||||||
|
#define isMEM2Buffer(p) (((u32) p & 0x10000000) != 0)
|
||||||
|
|
||||||
|
#define MAX_BUFFER_SECTORS 256
|
||||||
|
|
||||||
/* IOCTL commands */
|
/* IOCTL commands */
|
||||||
#define UMS_BASE (('U'<<24)|('M'<<16)|('S'<<8))
|
#define UMS_BASE (('U'<<24)|('M'<<16)|('S'<<8))
|
||||||
@ -53,95 +58,19 @@
|
|||||||
#define USB_IOCTL_WBFS_SET_DEVICE (WBFS_BASE+0x50)
|
#define USB_IOCTL_WBFS_SET_DEVICE (WBFS_BASE+0x50)
|
||||||
#define USB_IOCTL_WBFS_SET_FRAGLIST (WBFS_BASE+0x51)
|
#define USB_IOCTL_WBFS_SET_FRAGLIST (WBFS_BASE+0x51)
|
||||||
|
|
||||||
#define UMS_HEAPSIZE 0x1000 //0x10000
|
#define UMS_HEAPSIZE 0x1000
|
||||||
/* Variables */
|
/* Variables */
|
||||||
static char fs[] ATTRIBUTE_ALIGN( 32 ) = "/dev/usb2";
|
static char fs[] ATTRIBUTE_ALIGN( 32 ) = "/dev/usb2";
|
||||||
static char fs2[] ATTRIBUTE_ALIGN( 32 ) = "/dev/usb/ehc";
|
static char fs2[] ATTRIBUTE_ALIGN( 32 ) = "/dev/usb/ehc";
|
||||||
|
|
||||||
static char fsoff[] ATTRIBUTE_ALIGN( 32 ) = "/dev/usb2/OFF";
|
static u8 * mem2_ptr = NULL;
|
||||||
|
|
||||||
static s32 hid = -1, fd = -1;
|
static s32 hid = -1, fd = -1;
|
||||||
static u32 sector_size;
|
static u32 sector_size = 0;
|
||||||
static int mounted = 0;
|
static int mounted = 0;
|
||||||
|
|
||||||
s32 USBStorage2_Umount(void)
|
|
||||||
{
|
|
||||||
if (fd >= 0 && mounted)
|
|
||||||
{
|
|
||||||
s32 ret;
|
|
||||||
|
|
||||||
ret = IOS_IoctlvFormat(hid, fd, USB_IOCTL_UMS_UMOUNT, ":");
|
|
||||||
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
return IPC_ENOENT;
|
|
||||||
}
|
|
||||||
|
|
||||||
s32 USBStorage2_Watchdog(u32 on_off)
|
|
||||||
{
|
|
||||||
if (fd >= 0)
|
|
||||||
{
|
|
||||||
s32 ret;
|
|
||||||
|
|
||||||
ret = IOS_IoctlvFormat(hid, fd, USB_IOCTL_UMS_WATCHDOG, "i:", on_off);
|
|
||||||
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
return IPC_ENOENT;
|
|
||||||
}
|
|
||||||
|
|
||||||
s32 USBStorage2_TestMode(u32 on_off)
|
|
||||||
{
|
|
||||||
if (fd >= 0)
|
|
||||||
{
|
|
||||||
s32 ret;
|
|
||||||
|
|
||||||
ret = IOS_IoctlvFormat(hid, fd, USB_IOCTL_UMS_TESTMODE, "i:", on_off);
|
|
||||||
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
return IPC_ENOENT;
|
|
||||||
}
|
|
||||||
|
|
||||||
inline s32 __USBStorage2_isMEM2Buffer(const void *buffer)
|
|
||||||
{
|
|
||||||
u32 high_addr = ((u32) buffer) >> 24;
|
|
||||||
|
|
||||||
return (high_addr == 0x90) || (high_addr == 0xD0);
|
|
||||||
}
|
|
||||||
|
|
||||||
s32 USBStorage2_GetCapacity(u32 *_sector_size)
|
|
||||||
{
|
|
||||||
if (fd >= 0)
|
|
||||||
{
|
|
||||||
s32 ret;
|
|
||||||
|
|
||||||
ret = IOS_IoctlvFormat(hid, fd, USB_IOCTL_UMS_GET_CAPACITY, ":i", §or_size);
|
|
||||||
|
|
||||||
if (ret && _sector_size) *_sector_size = sector_size;
|
|
||||||
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
return IPC_ENOENT;
|
|
||||||
}
|
|
||||||
|
|
||||||
s32 USBStorage2_EHC_Off(void)
|
|
||||||
{
|
|
||||||
USBStorage2_Deinit();
|
|
||||||
fd = IOS_Open(fsoff, 0);
|
|
||||||
USBStorage2_Deinit();
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
s32 USBStorage2_Init(void)
|
s32 USBStorage2_Init(void)
|
||||||
{
|
{
|
||||||
s32 ret, ret2;
|
s32 ret, ret2;
|
||||||
static u32 sector_size = 0;
|
|
||||||
|
|
||||||
/* Already open */
|
/* Already open */
|
||||||
if (fd >= 0) return 0;
|
if (fd >= 0) return 0;
|
||||||
@ -208,68 +137,128 @@ void USBStorage2_Deinit(void)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
extern void* SYS_AllocArena2MemLo(u32 size, u32 align);
|
|
||||||
|
|
||||||
static void *mem2_ptr = NULL;
|
s32 USBStorage2_Watchdog(u32 on_off)
|
||||||
|
{
|
||||||
|
if (fd >= 0)
|
||||||
|
{
|
||||||
|
s32 ret;
|
||||||
|
|
||||||
|
ret = IOS_IoctlvFormat(hid, fd, USB_IOCTL_UMS_WATCHDOG, "i:", on_off);
|
||||||
|
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
return IPC_ENOENT;
|
||||||
|
}
|
||||||
|
|
||||||
|
s32 USBStorage2_GetCapacity(u32 *_sector_size)
|
||||||
|
{
|
||||||
|
if (fd >= 0)
|
||||||
|
{
|
||||||
|
s32 ret;
|
||||||
|
|
||||||
|
ret = IOS_IoctlvFormat(hid, fd, USB_IOCTL_UMS_GET_CAPACITY, ":i", §or_size);
|
||||||
|
|
||||||
|
if (ret && _sector_size) *_sector_size = sector_size;
|
||||||
|
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
return IPC_ENOENT;
|
||||||
|
}
|
||||||
|
|
||||||
s32 USBStorage2_ReadSectors(u32 sector, u32 numSectors, void *buffer)
|
s32 USBStorage2_ReadSectors(u32 sector, u32 numSectors, void *buffer)
|
||||||
{
|
{
|
||||||
void *buf = (void *) buffer;
|
u8 *buf = (u8 *) buffer;
|
||||||
u32 len = (sector_size * numSectors);
|
u32 len = (sector_size * numSectors);
|
||||||
|
|
||||||
s32 ret;
|
s32 ret = -1;
|
||||||
|
|
||||||
/* Device not opened */
|
/* Device not opened */
|
||||||
if (fd < 0) return fd;
|
if (fd < 0) return fd;
|
||||||
if (!mem2_ptr) mem2_ptr = SYS_AllocArena2MemLo(2048 * 256, 32);
|
|
||||||
|
if (!mem2_ptr)
|
||||||
|
mem2_ptr = (u8 *) MEM2_alloc(sector_size * MAX_BUFFER_SECTORS);
|
||||||
|
|
||||||
/* MEM1 buffer */
|
/* MEM1 buffer */
|
||||||
if (!__USBStorage2_isMEM2Buffer(buffer))
|
if (!isMEM2Buffer(buffer))
|
||||||
{
|
{
|
||||||
/* Allocate memory */
|
/* Allocate memory */
|
||||||
buf = mem2_ptr; //iosAlloc(hid, len);
|
buf = mem2_ptr;
|
||||||
if (!buf) return IPC_ENOMEM;
|
if (!buf) return IPC_ENOMEM;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Read data */
|
// Do not read more than 256 sectors at once and create a mem overflow!
|
||||||
ret = IOS_IoctlvFormat(hid, fd, USB_IOCTL_UMS_READ_SECTORS, "ii:d", sector, numSectors, buf, len);
|
|
||||||
|
|
||||||
/* Copy data */
|
|
||||||
if(buf != buffer)
|
if(buf != buffer)
|
||||||
{
|
{
|
||||||
memcpy(buffer, buf, len);
|
s32 read_size;
|
||||||
//iosFree(hid, buf);
|
s32 sectors_done = 0;
|
||||||
|
|
||||||
|
while(sectors_done < numSectors)
|
||||||
|
{
|
||||||
|
read_size = numSectors-sectors_done < MAX_BUFFER_SECTORS ? numSectors-sectors_done : MAX_BUFFER_SECTORS;
|
||||||
|
|
||||||
|
ret = IOS_IoctlvFormat(hid, fd, USB_IOCTL_UMS_READ_SECTORS, "ii:d", sector+sectors_done, read_size, buf, read_size*sector_size);
|
||||||
|
if(ret < 0)
|
||||||
|
return ret;
|
||||||
|
|
||||||
|
memcpy(((u8 *) buffer) + sectors_done*sector_size, buf, read_size*sector_size);
|
||||||
|
|
||||||
|
sectors_done += read_size;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
/* Read data */
|
||||||
|
ret = IOS_IoctlvFormat(hid, fd, USB_IOCTL_UMS_READ_SECTORS, "ii:d", sector, numSectors, buf, len);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Copy data */
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
s32 USBStorage2_WriteSectors(u32 sector, u32 numSectors, const void *buffer)
|
s32 USBStorage2_WriteSectors(u32 sector, u32 numSectors, const void *buffer)
|
||||||
{
|
{
|
||||||
void *buf = (void *) buffer;
|
u8 *buf = (u8 *) buffer;
|
||||||
u32 len = (sector_size * numSectors);
|
u32 len = (sector_size * numSectors);
|
||||||
|
|
||||||
s32 ret;
|
s32 ret = -1;
|
||||||
|
|
||||||
/* Device not opened */
|
/* Device not opened */
|
||||||
if (fd < 0) return fd;
|
if (fd < 0) return fd;
|
||||||
if (!mem2_ptr) mem2_ptr = SYS_AllocArena2MemLo(2048 * 256, 32);
|
|
||||||
|
/* Device not opened */
|
||||||
|
if (!mem2_ptr)
|
||||||
|
mem2_ptr = (u8 *) MEM2_alloc(sector_size * MAX_BUFFER_SECTORS);
|
||||||
|
|
||||||
/* MEM1 buffer */
|
/* MEM1 buffer */
|
||||||
if (!__USBStorage2_isMEM2Buffer(buffer))
|
if (!isMEM2Buffer(buffer))
|
||||||
{
|
{
|
||||||
/* Allocate memory */
|
// Do not read more than 256 sectors at once and create a mem overflow!
|
||||||
buf = mem2_ptr; //buf = iosAlloc(hid, len);
|
buf = mem2_ptr;
|
||||||
if (!buf) return IPC_ENOMEM;
|
s32 write_size;
|
||||||
|
s32 sectors_done = 0;
|
||||||
|
|
||||||
/* Copy data */
|
while(sectors_done < numSectors)
|
||||||
memcpy(buf, buffer, len);
|
{
|
||||||
|
write_size = numSectors-sectors_done < MAX_BUFFER_SECTORS ? numSectors-sectors_done : MAX_BUFFER_SECTORS;
|
||||||
|
|
||||||
|
memcpy(buf, ((u8 *) buffer) + sectors_done*sector_size, write_size*sector_size);
|
||||||
|
|
||||||
|
ret = IOS_IoctlvFormat(hid, fd, USB_IOCTL_UMS_WRITE_SECTORS, "ii:d", sector+sectors_done, write_size, buf, write_size*sector_size);
|
||||||
|
if(ret < 0)
|
||||||
|
return ret;
|
||||||
|
|
||||||
|
sectors_done += write_size;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
/* Write data */
|
/* Write data */
|
||||||
ret = IOS_IoctlvFormat(hid, fd, USB_IOCTL_UMS_WRITE_SECTORS, "ii:d", sector, numSectors, buf, len);
|
ret = IOS_IoctlvFormat(hid, fd, USB_IOCTL_UMS_WRITE_SECTORS, "ii:d", sector, numSectors, buf, len);
|
||||||
|
}
|
||||||
/* Free memory */
|
|
||||||
if (buf != buffer) iosFree(hid, buf);
|
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
@ -286,23 +275,12 @@ static bool __usbstorage_IsInserted(void)
|
|||||||
|
|
||||||
static bool __usbstorage_ReadSectors(u32 sector, u32 numSectors, void *buffer)
|
static bool __usbstorage_ReadSectors(u32 sector, u32 numSectors, void *buffer)
|
||||||
{
|
{
|
||||||
s32 retval;
|
return (USBStorage2_ReadSectors(sector, numSectors, buffer) >= 0);
|
||||||
|
|
||||||
retval = USBStorage2_ReadSectors(sector, numSectors, buffer);
|
|
||||||
|
|
||||||
if (retval < 0) return false;
|
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool __usbstorage_WriteSectors(u32 sector, u32 numSectors, const void *buffer)
|
static bool __usbstorage_WriteSectors(u32 sector, u32 numSectors, const void *buffer)
|
||||||
{
|
{
|
||||||
s32 retval;
|
return (USBStorage2_WriteSectors(sector, numSectors, buffer) >= 0);
|
||||||
|
|
||||||
retval = USBStorage2_WriteSectors(sector, numSectors, buffer);
|
|
||||||
|
|
||||||
if (retval < 0) return false;
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool __usbstorage_ClearStatus(void)
|
static bool __usbstorage_ClearStatus(void)
|
||||||
@ -312,40 +290,48 @@ static bool __usbstorage_ClearStatus(void)
|
|||||||
|
|
||||||
static bool __usbstorage_Shutdown(void)
|
static bool __usbstorage_Shutdown(void)
|
||||||
{
|
{
|
||||||
//if(mounted) USBStorage2_Umount();
|
|
||||||
USBStorage2_Deinit();
|
USBStorage2_Deinit();
|
||||||
|
|
||||||
mounted = 0;
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
const DISC_INTERFACE __io_usbstorage2 = { DEVICE_TYPE_WII_UMS, FEATURE_MEDIUM_CANREAD | FEATURE_MEDIUM_CANWRITE
|
const DISC_INTERFACE __io_usbstorage2 = {
|
||||||
| FEATURE_WII_USB, (FN_MEDIUM_STARTUP) &__usbstorage_Startup, (FN_MEDIUM_ISINSERTED) &__usbstorage_IsInserted,
|
DEVICE_TYPE_WII_UMS, FEATURE_MEDIUM_CANREAD | FEATURE_MEDIUM_CANWRITE | FEATURE_WII_USB,
|
||||||
(FN_MEDIUM_READSECTORS) &__usbstorage_ReadSectors, (FN_MEDIUM_WRITESECTORS) &__usbstorage_WriteSectors,
|
(FN_MEDIUM_STARTUP) &__usbstorage_Startup,
|
||||||
(FN_MEDIUM_CLEARSTATUS) &__usbstorage_ClearStatus, (FN_MEDIUM_SHUTDOWN) &__usbstorage_Shutdown };
|
(FN_MEDIUM_ISINSERTED) &__usbstorage_IsInserted,
|
||||||
|
(FN_MEDIUM_READSECTORS) &__usbstorage_ReadSectors,
|
||||||
|
(FN_MEDIUM_WRITESECTORS) &__usbstorage_WriteSectors,
|
||||||
|
(FN_MEDIUM_CLEARSTATUS) &__usbstorage_ClearStatus,
|
||||||
|
(FN_MEDIUM_SHUTDOWN) &__usbstorage_Shutdown
|
||||||
|
};
|
||||||
|
|
||||||
bool __io_usb_ReadSectors(u32 sector, u32 count, void *buffer)
|
// woffset is in 32bit words, len is in bytes
|
||||||
|
s32 USBStorage_WBFS_Read(u32 woffset, u32 len, void *buffer)
|
||||||
{
|
{
|
||||||
s32 ret = USBStorage2_ReadSectors(sector, count, buffer);
|
s32 ret;
|
||||||
return ret > 0;
|
|
||||||
|
USBStorage2_Init();
|
||||||
|
/* Device not opened */
|
||||||
|
if (fd < 0) return fd;
|
||||||
|
|
||||||
|
/* Read data */
|
||||||
|
ret = IOS_IoctlvFormat(hid, fd, USB_IOCTL_WBFS_READ_DISC, "ii:d", woffset, len, buffer, len);
|
||||||
|
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool __io_usb_WriteSectors(u32 sector, u32 count, void *buffer)
|
s32 USBStorage_WBFS_SetFragList(void *p, int size)
|
||||||
{
|
{
|
||||||
s32 ret = USBStorage2_WriteSectors(sector, count, buffer);
|
s32 ret;
|
||||||
return ret > 0;
|
USBStorage2_Init();
|
||||||
|
// Device not opened
|
||||||
|
if (fd < 0) return fd;
|
||||||
|
// ioctl
|
||||||
|
ret = IOS_IoctlvFormat(hid, fd, USB_IOCTL_WBFS_SET_FRAGLIST, "d:", p, size);
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool __io_usb_NOP(void)
|
// Not used currently
|
||||||
{
|
#if 0
|
||||||
// do nothing
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
const DISC_INTERFACE __io_usbstorage2_ro = { DEVICE_TYPE_WII_UMS, FEATURE_MEDIUM_CANREAD | FEATURE_MEDIUM_CANWRITE
|
|
||||||
| FEATURE_WII_USB, (FN_MEDIUM_STARTUP) &__usbstorage_Startup, (FN_MEDIUM_ISINSERTED) &__usbstorage_IsInserted,
|
|
||||||
(FN_MEDIUM_READSECTORS) &__usbstorage_ReadSectors, (FN_MEDIUM_WRITESECTORS) &__io_usb_NOP,
|
|
||||||
(FN_MEDIUM_CLEARSTATUS) &__usbstorage_ClearStatus, (FN_MEDIUM_SHUTDOWN) &__usbstorage_Shutdown };
|
|
||||||
|
|
||||||
s32 USBStorage_WBFS_Open(char *buffer)
|
s32 USBStorage_WBFS_Open(char *buffer)
|
||||||
{
|
{
|
||||||
@ -365,26 +351,9 @@ s32 USBStorage_WBFS_Open(char *buffer)
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
// woffset is in 32bit words, len is in bytes
|
|
||||||
s32 USBStorage_WBFS_Read(u32 woffset, u32 len, void *buffer)
|
|
||||||
{
|
|
||||||
s32 ret;
|
|
||||||
|
|
||||||
USBStorage2_Init();
|
|
||||||
/* Device not opened */
|
|
||||||
if (fd < 0) return fd;
|
|
||||||
|
|
||||||
/* Read data */
|
|
||||||
ret = IOS_IoctlvFormat(hid, fd, USB_IOCTL_WBFS_READ_DISC, "ii:d", woffset, len, buffer, len);
|
|
||||||
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
s32 USBStorage_WBFS_SetDevice(int dev)
|
s32 USBStorage_WBFS_SetDevice(int dev)
|
||||||
{
|
{
|
||||||
s32 ret;
|
s32 ret, retval = 0;
|
||||||
static s32 retval = 0;
|
|
||||||
retval = 0;
|
|
||||||
USBStorage2_Init();
|
USBStorage2_Init();
|
||||||
// Device not opened
|
// Device not opened
|
||||||
if (fd < 0) return fd;
|
if (fd < 0) return fd;
|
||||||
@ -394,13 +363,4 @@ s32 USBStorage_WBFS_SetDevice(int dev)
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
s32 USBStorage_WBFS_SetFragList(void *p, int size)
|
#endif
|
||||||
{
|
|
||||||
s32 ret;
|
|
||||||
USBStorage2_Init();
|
|
||||||
// Device not opened
|
|
||||||
if (fd < 0) return fd;
|
|
||||||
// ioctl
|
|
||||||
ret = IOS_IoctlvFormat(hid, fd, USB_IOCTL_WBFS_SET_FRAGLIST, "d:", p, size);
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
@ -9,20 +9,16 @@ extern "C"
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Prototypes */
|
/* Prototypes */
|
||||||
s32 USBStorage2_GetCapacity(u32 *);
|
|
||||||
s32 USBStorage2_Init(void);
|
s32 USBStorage2_Init(void);
|
||||||
void USBStorage2_Deinit(void);
|
void USBStorage2_Deinit(void);
|
||||||
s32 USBStorage2_Umount(void);
|
s32 USBStorage2_Umount(void);
|
||||||
|
s32 USBStorage2_GetCapacity(u32 *);
|
||||||
|
|
||||||
s32 USBStorage2_ReadSectors(u32, u32, void *);
|
s32 USBStorage2_ReadSectors(u32, u32, void *);
|
||||||
s32 USBStorage2_WriteSectors(u32, u32, const void *);
|
s32 USBStorage2_WriteSectors(u32, u32, const void *);
|
||||||
|
|
||||||
s32 USBStorage2_Watchdog(u32 on_off);
|
s32 USBStorage2_Watchdog(u32 on_off);
|
||||||
|
|
||||||
s32 USBStorage2_TestMode(u32 on_off);
|
|
||||||
|
|
||||||
s32 USBStorage2_EHC_Off(void);
|
|
||||||
|
|
||||||
s32 USBStorage_WBFS_Read(u32 woffset, u32 len, void *buffer);
|
s32 USBStorage_WBFS_Read(u32 woffset, u32 len, void *buffer);
|
||||||
s32 USBStorage_WBFS_SetDevice(int dev);
|
s32 USBStorage_WBFS_SetDevice(int dev);
|
||||||
s32 USBStorage_WBFS_SetFragList(void *p, int size);
|
s32 USBStorage_WBFS_SetFragList(void *p, int size);
|
||||||
|
Loading…
Reference in New Issue
Block a user