diskio.h 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /*-----------------------------------------------------------------------/
  2. / Low level disk interface modlue include file (C)ChaN, 2014 /
  3. /-----------------------------------------------------------------------*/
  4. #ifndef _DISKIO_DEFINED
  5. #define _DISKIO_DEFINED
  6. #ifdef __cplusplus
  7. extern "C" {
  8. #endif
  9. #include "ff.h"
  10. /* Status of Disk Functions */
  11. typedef BYTE DSTATUS;
  12. /* Results of Disk Functions */
  13. typedef enum {
  14. RES_OK = 0, /* 0: Successful */
  15. RES_ERROR, /* 1: R/W Error */
  16. RES_WRPRT, /* 2: Write Protected */
  17. RES_NOTRDY, /* 3: Not Ready */
  18. RES_PARERR /* 4: Invalid Parameter */
  19. } DRESULT;
  20. /*---------------------------------------*/
  21. /* Prototypes for disk control functions */
  22. DSTATUS disk_initialize (BYTE pdrv);
  23. DSTATUS disk_status (BYTE pdrv);
  24. DRESULT disk_read (BYTE pdrv, BYTE* buff, DWORD sector, UINT count);
  25. DRESULT disk_write (BYTE pdrv, const BYTE* buff, DWORD sector, UINT count);
  26. DRESULT disk_ioctl (BYTE pdrv, BYTE cmd, void* buff);
  27. /* Disk Status Bits (DSTATUS) */
  28. #define STA_NOINIT 0x01 /* Drive not initialized */
  29. #define STA_NODISK 0x02 /* No medium in the drive */
  30. #define STA_PROTECT 0x04 /* Write protected */
  31. /* Command code for disk_ioctrl fucntion */
  32. /* Generic command (Used by FatFs) */
  33. #define CTRL_SYNC 0 /* Complete pending write process (needed at FF_FS_READONLY == 0) */
  34. #define GET_SECTOR_COUNT 1 /* Get media size (needed at FF_USE_MKFS == 1) */
  35. #define GET_SECTOR_SIZE 2 /* Get sector size (needed at FF_MAX_SS != FF_MIN_SS) */
  36. #define GET_BLOCK_SIZE 3 /* Get erase block size (needed at FF_USE_MKFS == 1) */
  37. #define CTRL_TRIM 4 /* Inform device that the data on the block of sectors is no longer used (needed at FF_USE_TRIM == 1) */
  38. /* Generic command (Not used by FatFs) */
  39. #define CTRL_POWER 5 /* Get/Set power status */
  40. #define CTRL_LOCK 6 /* Lock/Unlock media removal */
  41. #define CTRL_EJECT 7 /* Eject media */
  42. #define CTRL_FORMAT 8 /* Create physical format on the media */
  43. /* MMC/SDC specific ioctl command */
  44. #define MMC_GET_TYPE 10 /* Get card type */
  45. #define MMC_GET_CSD 11 /* Get CSD */
  46. #define MMC_GET_CID 12 /* Get CID */
  47. #define MMC_GET_OCR 13 /* Get OCR */
  48. #define MMC_GET_SDSTAT 14 /* Get SD status */
  49. #define ISDIO_READ 55 /* Read data form SD iSDIO register */
  50. #define ISDIO_WRITE 56 /* Write data to SD iSDIO register */
  51. #define ISDIO_MRITE 57 /* Masked write data to SD iSDIO register */
  52. /* ATA/CF specific ioctl command */
  53. #define ATA_GET_REV 20 /* Get F/W revision */
  54. #define ATA_GET_MODEL 21 /* Get model name */
  55. #define ATA_GET_SN 22 /* Get serial number */
  56. /* MMC card type flags (MMC_GET_TYPE) */
  57. #define CT_MMC 0x01 /* MMC ver 3 */
  58. #define CT_SD1 0x02 /* SD ver 1 */
  59. #define CT_SD2 0x04 /* SD ver 2 */
  60. #define CT_SDC (CT_SD1|CT_SD2) /* SD */
  61. #define CT_BLOCK 0x08 /* Block addressing */
  62. #ifdef __cplusplus
  63. }
  64. #endif
  65. #endif