You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

diskio.h 2.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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. #define _USE_WRITE 1 /* 1: Enable disk_write function */
  10. #define _USE_IOCTL 1 /* 1: Enable disk_ioctl function */
  11. #include "integer.h"
  12. /* Status of Disk Functions */
  13. typedef BYTE DSTATUS;
  14. /* Results of Disk Functions */
  15. typedef enum {
  16. RES_OK = 0, /* 0: Successful */
  17. RES_ERROR, /* 1: R/W Error */
  18. RES_WRPRT, /* 2: Write Protected */
  19. RES_NOTRDY, /* 3: Not Ready */
  20. RES_PARERR /* 4: Invalid Parameter */
  21. } DRESULT;
  22. /*---------------------------------------*/
  23. /* Prototypes for disk control functions */
  24. DSTATUS disk_initialize (BYTE pdrv);
  25. DSTATUS disk_status (BYTE pdrv);
  26. DRESULT disk_read (BYTE pdrv, BYTE* buff, DWORD sector, UINT count);
  27. DRESULT disk_write (BYTE pdrv, const BYTE* buff, DWORD sector, UINT count);
  28. DRESULT disk_ioctl (BYTE pdrv, BYTE cmd, void* buff);
  29. DWORD get_fattime (void);
  30. /* Disk Status Bits (DSTATUS) */
  31. #define STA_NOINIT 0x01 /* Drive not initialized */
  32. #define STA_NODISK 0x02 /* No medium in the drive */
  33. #define STA_PROTECT 0x04 /* Write protected */
  34. /* Command code for disk_ioctrl fucntion */
  35. /* Generic command (Used by FatFs) */
  36. #define CTRL_SYNC 0 /* Complete pending write process (needed at _FS_READONLY == 0) */
  37. #define GET_SECTOR_COUNT 1 /* Get media size (needed at _USE_MKFS == 1) */
  38. #define GET_SECTOR_SIZE 2 /* Get sector size (needed at _MAX_SS != _MIN_SS) */
  39. #define GET_BLOCK_SIZE 3 /* Get erase block size (needed at _USE_MKFS == 1) */
  40. #define CTRL_TRIM 4 /* Inform device that the data on the block of sectors is no longer used (needed at _USE_TRIM == 1) */
  41. /* Generic command (Not used by FatFs) */
  42. #define CTRL_POWER 5 /* Get/Set power status */
  43. #define CTRL_LOCK 6 /* Lock/Unlock media removal */
  44. #define CTRL_EJECT 7 /* Eject media */
  45. #define CTRL_FORMAT 8 /* Create physical format on the media */
  46. /* MMC/SDC specific ioctl command */
  47. #define MMC_GET_TYPE 10 /* Get card type */
  48. #define MMC_GET_CSD 11 /* Get CSD */
  49. #define MMC_GET_CID 12 /* Get CID */
  50. #define MMC_GET_OCR 13 /* Get OCR */
  51. #define MMC_GET_SDSTAT 14 /* Get SD status */
  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. #ifdef __cplusplus
  57. }
  58. #endif
  59. #endif