123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202 |
- /*-----------------------------------------------------------------------*/
- /* Low level disk I/O module skeleton for FatFs (C)ChaN, 2007 */
- /*-----------------------------------------------------------------------*/
- /* This is a stub disk I/O module that acts as front end of the existing */
- /* disk I/O modules and attach it to FatFs module with common interface. */
- /*-----------------------------------------------------------------------*/
- #include "diskio.h"
- /*-----------------------------------------------------------------------*/
- /* Correspondence between physical drive number and physical drive. */
- #define ATA 0
- #define MMC 1
- #define USB 2
- /*-----------------------------------------------------------------------*/
- /* Inidialize a Drive */
- DSTATUS disk_initialize (
- BYTE drv /* Physical drive nmuber (0..) */
- )
- {
- DSTATUS stat;
- int result;
- switch (drv) {
- case ATA :
- result = ATA_disk_initialize();
- // translate the reslut code here
- return stat;
- case MMC :
- result = MMC_disk_initialize();
- // translate the reslut code here
- return stat;
- case USB :
- result = USB_disk_initialize();
- // translate the reslut code here
- return stat;
- }
- return STA_NOINIT;
- }
- /*-----------------------------------------------------------------------*/
- /* Return Disk Status */
- DSTATUS disk_status (
- BYTE drv /* Physical drive nmuber (0..) */
- )
- {
- DSTATUS stat;
- int result;
- switch (drv) {
- case ATA :
- result = ATA_disk_status();
- // translate the reslut code here
- return stat;
- case MMC :
- result = MMC_disk_status();
- // translate the reslut code here
- return stat;
- case USB :
- result = USB_disk_status();
- // translate the reslut code here
- return stat;
- }
- return STA_NOINIT;
- }
- /*-----------------------------------------------------------------------*/
- /* Read Sector(s) */
- DRESULT disk_read (
- BYTE drv, /* Physical drive nmuber (0..) */
- BYTE *buff, /* Data buffer to store read data */
- DWORD sector, /* Sector address (LBA) */
- BYTE count /* Number of sectors to read (1..255) */
- )
- {
- DRESULT res;
- int result;
- switch (drv) {
- case ATA :
- result = ATA_disk_read(buff, sector, count);
- // translate the reslut code here
- return res;
- case MMC :
- result = MMC_disk_read(buff, sector, count);
- // translate the reslut code here
- return res;
- case USB :
- result = USB_disk_read(buff, sector, count);
- // translate the reslut code here
- return res;
- }
- return RES_PARERR;
- }
- /*-----------------------------------------------------------------------*/
- /* Write Sector(s) */
- #if _READONLY == 0
- DRESULT disk_write (
- BYTE drv, /* Physical drive nmuber (0..) */
- const BYTE *buff, /* Data to be written */
- DWORD sector, /* Sector address (LBA) */
- BYTE count /* Number of sectors to write (1..255) */
- )
- {
- DRESULT res;
- int result;
- switch (drv) {
- case ATA :
- result = ATA_disk_write(buff, sector, count);
- // translate the reslut code here
- return res;
- case MMC :
- result = MMC_disk_write(buff, sector, count);
- // translate the reslut code here
- return res;
- case USB :
- result = USB_disk_write(buff, sector, count);
- // translate the reslut code here
- return res;
- }
- return RES_PARERR;
- }
- #endif /* _READONLY */
- /*-----------------------------------------------------------------------*/
- /* Miscellaneous Functions */
- DRESULT disk_ioctl (
- BYTE drv, /* Physical drive nmuber (0..) */
- BYTE ctrl, /* Control code */
- void *buff /* Buffer to send/receive control data */
- )
- {
- DRESULT res;
- int result;
- switch (drv) {
- case ATA :
- // pre-process here
- result = ATA_disk_ioctl(ctrl, buff);
- // post-process here
- return res;
- case MMC :
- // pre-process here
- result = MMC_disk_ioctl(ctrl, buff);
- // post-process here
- return res;
- case USB :
- // pre-process here
- result = USB_disk_ioctl(ctrl, buff);
- // post-process here
- return res;
- }
- return RES_PARERR;
- }
|