Go to the documentation of this file.00001 
00002 
00003 
00004 
00005 #ifndef _DISKIO
00006 
00007 #define _READONLY       0       
00008 #define _USE_IOCTL      1       
00009 
00010 #include "integer.h"
00011 
00012 
00013 
00014 typedef BYTE    DSTATUS;
00015 
00016 
00017 typedef enum {
00018         RES_OK = 0,             
00019         RES_ERROR,              
00020         RES_WRPRT,              
00021         RES_NOTRDY,             
00022         RES_PARERR              
00023 } DRESULT;
00024 
00025 
00026 
00027 
00028 
00029 int assign_drives (int, int);
00030 DSTATUS disk_initialize (BYTE);
00031 DSTATUS disk_status (BYTE);
00032 DRESULT disk_read (BYTE, BYTE*, DWORD, BYTE);
00033 #if     _READONLY == 0
00034 DRESULT disk_write (BYTE, const BYTE*, DWORD, BYTE);
00035 #endif
00036 DRESULT disk_ioctl (BYTE, BYTE, void*);
00037 
00038 
00039 
00040 
00041 
00042 #define STA_NOINIT              0x01    
00043 #define STA_NODISK              0x02    
00044 #define STA_PROTECT             0x04    
00045 
00046 
00047 
00048 
00049 
00050 #define CTRL_SYNC                       0       
00051 #define GET_SECTOR_COUNT        1       
00052 #define GET_SECTOR_SIZE         2       
00053 #define GET_BLOCK_SIZE          3       
00054 #define CTRL_ERASE_SECTOR       4       
00055 
00056 
00057 #define CTRL_POWER                      5       
00058 #define CTRL_LOCK                       6       
00059 #define CTRL_EJECT                      7       
00060 
00061 
00062 #define MMC_GET_TYPE            10      
00063 #define MMC_GET_CSD                     11      
00064 #define MMC_GET_CID                     12      
00065 #define MMC_GET_OCR                     13      
00066 #define MMC_GET_SDSTAT          14      
00067 
00068 
00069 #define ATA_GET_REV                     20      
00070 #define ATA_GET_MODEL           21      
00071 #define ATA_GET_SN                      22      
00072 
00073 
00074 #define NAND_FORMAT                     30      
00075 
00076 
00077 #define _DISKIO
00078 #endif