hv_drv_UsbFatfsDiskIo.h 2.6 KB

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