mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-15 16:05:10 +01:00
7210addaf2
*modified libcustomfat and ntfs fragment fetch function to support >512 bytes per sector *Added new ehcmodule (thanks rodries) *Added real support of using both ports simultaniously without shutting down the other (thanks rodries for the ehcmodule works on this). There is no longer the limitation that the settings have to be on SD card for this. (ONLY HERMES CIOS) *Moved a few settings to Feature Settings and added a new Hard Drive Settings *Changed Wiinnertag path to only point to the path and not to the file. You must correct the path manually in custom path settings or reset you configs for this change or Winnertag won't work!! *Removed a few compile warnings for devkitPPC R23
79 lines
1.9 KiB
C
79 lines
1.9 KiB
C
#ifndef __USBSTORAGE_H__
|
|
#define __USBSTORAGE_H__
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif /* __cplusplus */
|
|
|
|
#include "ehci.h"
|
|
|
|
|
|
#define USBSTORAGE_OK 0
|
|
#define USBSTORAGE_ENOINTERFACE -10000
|
|
#define USBSTORAGE_ESENSE -10001
|
|
#define USBSTORAGE_ESHORTWRITE -10002
|
|
#define USBSTORAGE_ESHORTREAD -10003
|
|
#define USBSTORAGE_ESIGNATURE -10004
|
|
#define USBSTORAGE_ETAG -10005
|
|
#define USBSTORAGE_ESTATUS -10006
|
|
#define USBSTORAGE_EDATARESIDUE -10007
|
|
#define USBSTORAGE_ETIMEDOUT -ETIMEDOUT
|
|
#define USBSTORAGE_EINIT -10009
|
|
|
|
typedef struct
|
|
{
|
|
u8 configuration;
|
|
u32 interface;
|
|
u32 altInterface;
|
|
|
|
u8 ep_in;
|
|
u8 ep_out;
|
|
|
|
u8 max_lun;
|
|
u32 sector_size[16];
|
|
u32 n_sector[16];
|
|
|
|
struct ehci_device * usb_fd;
|
|
|
|
//mutex_t lock;
|
|
//cond_t cond;
|
|
s32 retval;
|
|
|
|
u32 tag;
|
|
u8 ata_protocol;
|
|
|
|
u8 *buffer;
|
|
} usbstorage_handle;
|
|
|
|
s32 USBStorage_Init(int mode);
|
|
void USBStorage_Umount(void);
|
|
|
|
s32 USBStorage_Open(usbstorage_handle *dev, struct ehci_device *fd);
|
|
s32 USBStorage_Close(usbstorage_handle *dev);
|
|
s32 USBStorage_Reset(usbstorage_handle *dev);
|
|
|
|
s32 USBStorage_GetMaxLUN(usbstorage_handle *dev);
|
|
s32 USBStorage_MountLUN(usbstorage_handle *dev, u8 lun);
|
|
s32 USBStorage_Suspend(usbstorage_handle *dev);
|
|
|
|
s32 USBStorage_ReadCapacity(usbstorage_handle *dev, u8 lun, u32 *sector_size, u32 *n_sectors);
|
|
s32 USBStorage_Read(usbstorage_handle *dev, u8 lun, u32 sector, u16 n_sectors, u8 *buffer);
|
|
s32 USBStorage_Write(usbstorage_handle *dev, u8 lun, u32 sector, u16 n_sectors, const u8 *buffer);
|
|
s32 USBStorage_Inquiry(usbstorage_handle *dev, u8 lun);
|
|
|
|
s32 USBStorage_Read_Sectors(u32 sector, u32 numSectors, void *buffer);
|
|
s32 USBStorage_Write_Sectors(u32 sector, u32 numSectors, const void *buffer);
|
|
|
|
#define DEVICE_TYPE_WII_USB (('W'<<24)|('U'<<16)|('S'<<8)|'B')
|
|
|
|
s32 USBStorage_Try_Device(struct ehci_device *fd);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
#endif /* __USBSTORAGE_H__ */
|