121 lines
3.6 KiB
C
121 lines
3.6 KiB
C
/*-----------------------------------------------------------------------*/
|
|
/* 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"
|
|
#include "../crypto.h"
|
|
|
|
/* Definitions of physical drive number for each media */
|
|
#define SDCARD 0
|
|
#define CTRNAND 1
|
|
|
|
/*-----------------------------------------------------------------------*/
|
|
/* Get Drive Status */
|
|
/*-----------------------------------------------------------------------*/
|
|
|
|
DSTATUS disk_status (
|
|
__attribute__((unused))
|
|
BYTE pdrv /* Physical drive nmuber to identify the drive */
|
|
)
|
|
{
|
|
return RES_OK;
|
|
}
|
|
|
|
|
|
|
|
/*-----------------------------------------------------------------------*/
|
|
/* Inidialize a Drive */
|
|
/*-----------------------------------------------------------------------*/
|
|
|
|
DSTATUS disk_initialize (
|
|
BYTE pdrv /* Physical drive nmuber to identify the drive */
|
|
)
|
|
{
|
|
switch(pdrv)
|
|
{
|
|
case SDCARD:
|
|
sdmmc_sdcard_init();
|
|
break;
|
|
case CTRNAND:
|
|
ctrNandInit();
|
|
break;
|
|
}
|
|
|
|
return RES_OK;
|
|
}
|
|
|
|
|
|
|
|
/*-----------------------------------------------------------------------*/
|
|
/* Read Sector(s) */
|
|
/*-----------------------------------------------------------------------*/
|
|
|
|
DRESULT disk_read (
|
|
BYTE pdrv, /* Physical drive nmuber to identify the drive */
|
|
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;
|
|
}
|
|
|
|
|
|
|
|
/*-----------------------------------------------------------------------*/
|
|
/* Write Sector(s) */
|
|
/*-----------------------------------------------------------------------*/
|
|
|
|
#if _USE_WRITE
|
|
DRESULT disk_write (
|
|
BYTE pdrv, /* Physical drive nmuber to identify the drive */
|
|
const BYTE *buff, /* Data to be written */
|
|
DWORD sector, /* Sector address in LBA */
|
|
UINT count /* Number of sectors to write */
|
|
)
|
|
{
|
|
if(pdrv == SDCARD && sdmmc_sdcard_writesectors(sector, count, (BYTE *)buff))
|
|
return RES_PARERR;
|
|
|
|
return RES_OK;
|
|
}
|
|
#endif
|
|
|
|
|
|
|
|
/*-----------------------------------------------------------------------*/
|
|
/* Miscellaneous Functions */
|
|
/*-----------------------------------------------------------------------*/
|
|
|
|
#if _USE_IOCTL
|
|
DRESULT disk_ioctl (
|
|
__attribute__((unused))
|
|
BYTE pdrv, /* Physical drive nmuber (0..) */
|
|
__attribute__((unused))
|
|
BYTE cmd, /* Control code */
|
|
__attribute__((unused))
|
|
void *buff /* Buffer to send/receive control data */
|
|
)
|
|
{
|
|
return RES_PARERR;
|
|
}
|
|
#endif
|