This repository has been archived on 2022-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
Luma3DS-3GX/source/fatfs/diskio.c

120 lines
3.6 KiB
C
Raw Normal View History

2015-08-05 03:57:37 +02:00
/*-----------------------------------------------------------------------*/
/* Low level disk I/O module skeleton for FatFs (C)ChaN, 2014 */
/*-----------------------------------------------------------------------*/
/* If a working storage control module is available, it should be */
/* attached to the FatFs via a glue function rather than modifying it. */
/* This is an example of glue functions to attach various exsisting */
/* storage control modules to the FatFs module with a defined API. */
/*-----------------------------------------------------------------------*/
#include "diskio.h" /* FatFs lower layer API */
#include "sdmmc/sdmmc.h"
/* Definitions of physical drive number for each media */
#define SDCARD 0
#define CTRNAND 1
2015-08-05 03:57:37 +02:00
/*-----------------------------------------------------------------------*/
/* Get Drive Status */
/*-----------------------------------------------------------------------*/
DSTATUS disk_status (
__attribute__((unused))
BYTE pdrv /* Physical drive nmuber to identify the drive */
2015-08-05 03:57:37 +02:00
)
{
return RES_OK;
2015-08-05 03:57:37 +02:00
}
/*-----------------------------------------------------------------------*/
/* Inidialize a Drive */
/*-----------------------------------------------------------------------*/
DSTATUS disk_initialize (
BYTE pdrv /* Physical drive nmuber to identify the drive */
2015-08-05 03:57:37 +02:00
)
{
switch(pdrv)
{
case SDCARD:
sdmmc_sdcard_init();
break;
case CTRNAND:
ctrNandInit();
break;
}
2015-08-05 03:57:37 +02:00
return RES_OK;
}
/*-----------------------------------------------------------------------*/
/* Read Sector(s) */
/*-----------------------------------------------------------------------*/
DRESULT disk_read (
BYTE pdrv, /* Physical drive nmuber to identify the drive */
2015-08-05 03:57:37 +02:00
BYTE *buff, /* Data buffer to store read data */
DWORD sector, /* Sector address in LBA */
UINT count /* Number of sectors to read */
)
{
switch(pdrv)
{
case SDCARD:
if(sdmmc_sdcard_readsectors(sector, count, (BYTE *)buff))
return RES_PARERR;
break;
case CTRNAND:
if(ctrNandRead(sector, count, (BYTE *)buff))
return RES_PARERR;
break;
}
return RES_OK;
2015-08-05 03:57:37 +02:00
}
/*-----------------------------------------------------------------------*/
/* Write Sector(s) */
/*-----------------------------------------------------------------------*/
#if _USE_WRITE
DRESULT disk_write (
BYTE pdrv, /* Physical drive nmuber to identify the drive */
2016-03-17 04:51:07 +01:00
const BYTE *buff, /* Data to be written */
2015-08-05 03:57:37 +02:00
DWORD sector, /* Sector address in LBA */
UINT count /* Number of sectors to write */
)
{
2016-04-14 17:10:55 +02:00
if(pdrv == SDCARD && sdmmc_sdcard_writesectors(sector, count, (BYTE *)buff))
return RES_PARERR;
return RES_OK;
2015-08-05 03:57:37 +02:00
}
#endif
2015-08-05 03:57:37 +02:00
/*-----------------------------------------------------------------------*/
/* Miscellaneous Functions */
/*-----------------------------------------------------------------------*/
#if _USE_IOCTL
DRESULT disk_ioctl (
__attribute__((unused))
2015-08-05 03:57:37 +02:00
BYTE pdrv, /* Physical drive nmuber (0..) */
__attribute__((unused))
2015-08-05 03:57:37 +02:00
BYTE cmd, /* Control code */
__attribute__((unused))
2015-08-05 03:57:37 +02:00
void *buff /* Buffer to send/receive control data */
)
{
return RES_PARERR;
}
#endif