sd.h 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. #ifndef __SD__H__
  2. #define __SD__H__
  3. /* Disk Status Bits (DSTATUS) */
  4. #define STA_NOINIT 0x01 /* Drive not initialized */
  5. #define STA_NODISK 0x02 /* No medium in the drive */
  6. #define STA_PROTECT 0x04 /* Write protected */
  7. /* In order to support medium hotplug */
  8. #define STA_DISK_OK 0x08 /* Medium OK in the drive */
  9. /* Detect disk hardware insert or remove */
  10. #define DISK_IOCTL_HW_DETECT 10
  11. /* SD commands type argument response */
  12. /* class 0 */
  13. /* This is basically the same command as for MMC with some quirks. */
  14. #define SD_SEND_RELATIVE_ADDR 3 /* bcr R6 */
  15. #define SD_SEND_IF_COND 8 /* bcr [11:0] See below R7 */
  16. #define SD_SWITCH_VOLTAGE 11 /* ac R1 */
  17. /* class 10 */
  18. #define SD_SWITCH 6 /* adtc [31:0] See below R1 */
  19. /* class 5 */
  20. #define SD_ERASE_WR_BLK_START 32 /* ac [31:0] data addr R1 */
  21. #define SD_ERASE_WR_BLK_END 33 /* ac [31:0] data addr R1 */
  22. /* Application commands */
  23. #define SD_APP_SET_BUS_WIDTH 6 /* ac [1:0] bus width R1 */
  24. #define SD_APP_SD_STATUS 13 /* adtc R1 */
  25. #define SD_APP_SEND_NUM_WR_BLKS 22 /* adtc R1 */
  26. #define SD_APP_OP_COND 41 /* bcr [31:0] OCR R3 */
  27. #define SD_APP_SEND_SCR 51 /* adtc R1 */
  28. /* OCR bit definitions */
  29. #define SD_OCR_S18R (1 << 24) /* 1.8V switching request */
  30. #define SD_ROCR_S18A SD_OCR_S18R /* 1.8V switching accepted by card */
  31. #define SD_OCR_XPC (1 << 28) /* SDXC power control */
  32. #define SD_OCR_CCS (1 << 30) /* Card Capacity Status */
  33. /* Application commands */
  34. #define SD_APP_SET_BUS_WIDTH 6 /* ac [1:0] bus width R1 */
  35. /*
  36. * SCR field definitions
  37. */
  38. #define SCR_SPEC_VER_0 0 /* Implements system specification 1.0 - 1.01 */
  39. #define SCR_SPEC_VER_1 1 /* Implements system specification 1.10 */
  40. #define SCR_SPEC_VER_2 2 /* Implements system specification 2.00-3.0X */
  41. /*
  42. * SD bus widths
  43. */
  44. #define SD_BUS_WIDTH_1 0
  45. #define SD_BUS_WIDTH_4 2
  46. /*
  47. * SD_SWITCH mode
  48. */
  49. #define SD_SWITCH_CHECK 0
  50. #define SD_SWITCH_SET 1
  51. /*
  52. * SD_SWITCH function groups
  53. */
  54. #define SD_SWITCH_GRP_ACCESS 0
  55. /*
  56. * SD_SWITCH access modes
  57. */
  58. #define SD_SWITCH_ACCESS_DEF 0
  59. #define SD_SWITCH_ACCESS_HS 1
  60. /* OCR bit definitions */
  61. #define SD_OCR_S18R (1 << 24) /* 1.8V switching request */
  62. #define SD_ROCR_S18A SD_OCR_S18R /* 1.8V switching accepted by card */
  63. #define SD_OCR_XPC (1 << 28) /* SDXC power control */
  64. #define SD_OCR_CCS (1 << 30) /* Card Capacity Status */
  65. /* Detect disk hardware insert or remove */
  66. #define DISK_IOCTL_HW_DETECT 10
  67. int sd_card_storage_ioctl(const struct device *dev, uint8_t cmd, void *buff);
  68. int sd_card_storage_init(const struct device *dev);
  69. #endif /* __SD__H__ */