| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243 |
- /*-----------------------------------------------------------------------*/
- /* 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"
- //#include <windows.h>
- //#include "sdfmd.h"
- //#include <ethdbg.h>
- //#include <halether.h>
- //extern DWORD SDInitialize(void);
- //extern DWORD WriteSector(PBYTE pData, DWORD dwStartSector, DWORD dwNumber);
- //extern DWORD ReadSector(PBYTE pData, DWORD dwStartSector, DWORD dwNumber);
- //extern void Delay(UINT32 count);
- extern void lcd_printstr(char* str);
- #define printf lcd_printstr
- /*-----------------------------------------------------------------------*/
- /* Correspondence between physical drive number and physical drive. */
- /* Note that Tiny-FatFs supports only single drive and always */
- /* accesses drive number 0. */
- /*-----------------------------------------------------------------------*/
- /* 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 SDMMC :
- result = MMC_disk_initialize();
- // translate the reslut code here
- if(result < 0)
- stat = STA_NOINIT;
- else
- stat = 0;
- return stat;
- #if 0
- case USB :
- result = USB_disk_initialize();
- // translate the reslut code here
- if(result < 0)
- stat = STA_NOINIT;
- else
- stat = 0;
-
- return stat;
- #endif
- }
- return STA_NOINIT;
- }
- /*-----------------------------------------------------------------------*/
- /* Return Disk Status */
- DSTATUS disk_status (
- BYTE drv /* Physical drive nmuber (0..) */
- )
- {
- //drv = drv;
- return 0;
- #if 0
- DSTATUS stat;
- int result;
- switch (drv) {
- case ATA :
- result = ATA_disk_status();
- // translate the reslut code here
- return stat;
- case SDMMC :
- result = MMC_disk_status();
- // translate the reslut code here
- return stat;
- #if 0
- case USB :
- result = USB_disk_status();
- // translate the reslut code here
- return stat;
- #endif
- }
- return STA_NOINIT;
- #endif
- }
- /*-----------------------------------------------------------------------*/
- /* 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 SDMMC :
- result = MMC_disk_read(buff, sector, count);
- // translate the reslut code here
- if(result < 0)
- res = RES_ERROR;
- else
- res = RES_OK;
- return res;
- #if 0
- case USB :
- result = USB_disk_read(buff, sector, count);
- // translate the reslut code here
- if(result < 0)
- res = RES_ERROR;
- else
- res = RES_OK;
- return res;
- #endif
- }
-
- 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 SDMMC :
- result = MMC_disk_write(buff, sector, count);
- // translate the reslut code here
- return res;
- #if 0
- case USB :
- result = USB_disk_write(buff, sector, count);
- // translate the reslut code here
- return res;
- #endif
- }
- 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 SDMMC :
- // pre-process here
- result = MMC_disk_ioctl(ctrl, buff);
- // post-process here
- if(result < 0)
- res = RES_PARERR;
- else
- res = RES_OK;
- return res;
- /*case USB :
- // pre-process here
- result = USB_disk_ioctl(ctrl, buff);
- if(result < 0)
- res = RES_PARERR;
- else
- res = RES_OK;
- return res;*/
- }
- return RES_PARERR;
- }
|