sdmmc_sdhc.h 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748
  1. /* disc_access_sdhc.h - header SDHC*/
  2. /*
  3. * Copyright (c) 2019 NXP
  4. *
  5. * SPDX-License-Identifier: Apache-2.0
  6. */
  7. #ifndef ZEPHYR_INCLUDE_DISK_DRIVER_SDMMC_H_
  8. #define ZEPHYR_INCLUDE_DISK_DRIVER_SDMMC_H_
  9. #include <drivers/spi.h>
  10. #define SDMMC_CLOCK_400KHZ (400000U)
  11. #define SD_CLOCK_25MHZ (25000000U)
  12. #define SD_CLOCK_50MHZ (50000000U)
  13. #define SD_CLOCK_100MHZ (100000000U)
  14. #define SD_CLOCK_208MHZ (208000000U)
  15. #define MMC_CLOCK_26MHZ (26000000U)
  16. #define MMC_CLOCK_52MHZ (52000000U)
  17. #define MMC_CLOCK_DDR52 (52000000U)
  18. #define MMC_CLOCK_HS200 (200000000U)
  19. #define MMC_CLOCK_HS400 (400000000U)
  20. /* Command IDs */
  21. #define SDHC_GO_IDLE_STATE 0
  22. #define SDHC_ALL_SEND_CID 2
  23. #define SDHC_SEND_RELATIVE_ADDR 3
  24. #define SDHC_SWITCH 6
  25. #define SDHC_SELECT_CARD 7
  26. #define SDHC_SEND_IF_COND 8
  27. #define SDHC_SEND_CSD 9
  28. #define SDHC_SEND_CID 10
  29. #define SDHC_VOL_SWITCH 11
  30. #define SDHC_STOP_TRANSMISSION 12
  31. #define SDHC_SEND_STATUS 13
  32. #define SDHC_GO_INACTIVE_STATE 15
  33. #define SDHC_SET_BLOCK_SIZE 16
  34. #define SDHC_READ_SINGLE_BLOCK 17
  35. #define SDHC_READ_MULTIPLE_BLOCK 18
  36. #define SDHC_SEND_TUNING_BLOCK 19
  37. #define SDHC_SET_BLOCK_COUNT 23
  38. #define SDHC_WRITE_BLOCK 24
  39. #define SDHC_WRITE_MULTIPLE_BLOCK 25
  40. #define SDHC_ERASE_BLOCK_START 32
  41. #define SDHC_ERASE_BLOCK_END 33
  42. #define SDHC_ERASE_BLOCK_OPERATION 38
  43. #define SDHC_APP_CMD 55
  44. #define SDHC_READ_OCR 58
  45. #define SDHC_CRC_ON_OFF 59
  46. enum sdhc_app_ext_cmd {
  47. SDHC_APP_SET_BUS_WIDTH = 6,
  48. SDHC_APP_SEND_STATUS = 13,
  49. SDHC_APP_SEND_NUM_WRITTEN_BLK = 22,
  50. SDHC_APP_SET_WRITE_BLK_ERASE_CNT = 23,
  51. SDHC_APP_SEND_OP_COND = 41,
  52. SDHC_APP_CLEAR_CARD_DETECT = 42,
  53. SDHC_APP_SEND_SCR = 51
  54. };
  55. #define SDHC_SEND_OP_COND SDHC_APP_SEND_OP_COND
  56. /* R1 response status */
  57. #define SDHC_R1_IDLE 0x01
  58. #define SDHC_R1_ERASE_RESET 0x02
  59. #define SDHC_R1_ILLEGAL_COMMAND 0x04
  60. #define SDHC_R1_COM_CRC 0x08
  61. #define SDHC_R1_ERASE_SEQ 0x10
  62. #define SDHC_R1_ADDRESS 0x20
  63. #define SDHC_R1_PARAMETER 0x40
  64. #define SDHC_CMD_SIZE 6
  65. #define SDHC_CMD_BODY_SIZE (SDHC_CMD_SIZE - 1)
  66. #define SDHC_CRC16_SIZE 2
  67. /* Command flags */
  68. #define SDHC_START 0x80
  69. #define SDHC_TX 0x40
  70. /* Fields in various card registers */
  71. #define SDHC_HCS (1 << 30)
  72. #define SDHC_CCS (1 << 30)
  73. #define SDHC_BUSY (1 << 31)
  74. #define SDHC_VHS_MASK (0x0F << 8)
  75. #define SDHC_VHS_3V3 (1 << 8)
  76. #define SDHC_CHECK 0xAA
  77. #define SDHC_CSD_SIZE 16
  78. #define SDHC_CSD_V1 0
  79. #define SDHC_CSD_V2 1
  80. /* Data block tokens */
  81. #define SDHC_TOKEN_SINGLE 0xFE
  82. #define SDHC_TOKEN_MULTI_WRITE 0xFC
  83. #define SDHC_TOKEN_STOP_TRAN 0xFD
  84. /* Data block responses */
  85. #define SDHC_RESPONSE_ACCEPTED 0x05
  86. #define SDHC_RESPONSE_CRC_ERR 0x0B
  87. #define SDHC_RESPONSE_WRITE_ERR 0x0E
  88. #define SDHC_MIN_TRIES 20
  89. #define SDHC_RETRY_DELAY 20
  90. /* Time to wait for the card to initialise */
  91. #define SDHC_INIT_TIMEOUT 5000
  92. /* Time to wait for the card to respond or come ready */
  93. #define SDHC_READY_TIMEOUT 500
  94. enum sdhc_rsp_type {
  95. SDHC_RSP_TYPE_NONE = 0U,
  96. SDHC_RSP_TYPE_R1 = 1U,
  97. SDHC_RSP_TYPE_R1b = 2U,
  98. SDHC_RSP_TYPE_R2 = 3U,
  99. SDHC_RSP_TYPE_R3 = 4U,
  100. SDHC_RSP_TYPE_R4 = 5U,
  101. SDHC_RSP_TYPE_R5 = 6U,
  102. SDHC_RSP_TYPE_R5b = 7U,
  103. SDHC_RSP_TYPE_R6 = 8U,
  104. SDHC_RSP_TYPE_R7 = 9U,
  105. };
  106. enum sdhc_bus_width {
  107. SDHC_BUS_WIDTH1BIT = 0U,
  108. SDHC_BUS_WIDTH4BIT = 1U,
  109. };
  110. enum sdhc_flag {
  111. SDHC_HIGH_CAPACITY_FLAG = (1U << 1U),
  112. SDHC_4BITS_WIDTH = (1U << 2U),
  113. SDHC_SDHC_FLAG = (1U << 3U),
  114. SDHC_SDXC_FLAG = (1U << 4U),
  115. SDHC_1800MV_FLAG = (1U << 5U),
  116. SDHC_CMD23_FLAG = (1U << 6U),
  117. SDHC_SPEED_CLASS_CONTROL_FLAG = (1U << 7U),
  118. };
  119. enum sdhc_r1_error_flag {
  120. SDHC_R1OUTOF_RANGE_ERR = (1U << 31U),
  121. SDHC_R1ADDRESS_ERR = (1U << 30U),
  122. SDHC_R1BLK_LEN_ERR = (1U << 29U),
  123. SDHC_R1ERASE_SEQ_ERR = (1U << 28U),
  124. SDHC_R1ERASE_PARAMETER_ERR = (1U << 27U),
  125. SDHC_R1WRITE_PROTECTION_ERR = (1U << 26U),
  126. SDHC_R1CARD_LOCKED_ERR = (1U << 25U),
  127. SDHC_R1LOCK_UNLOCK_ERR = (1U << 24U),
  128. SDHC_R1CMD_CRC_ERR = (1U << 23U),
  129. SDHC_R1ILLEGAL_CMD_ERR = (1U << 22U),
  130. SDHC_R1ECC_ERR = (1U << 21U),
  131. SDHC_R1CARD_CONTROL_ERR = (1U << 20U),
  132. SDHC_R1ERR = (1U << 19U),
  133. SDHC_R1CID_CSD_OVERWRITE_ERR = (1U << 16U),
  134. SDHC_R1WRITE_PROTECTION_ERASE_SKIP = (1U << 15U),
  135. SDHC_R1CARD_ECC_DISABLED = (1U << 14U),
  136. SDHC_R1ERASE_RESET = (1U << 13U),
  137. SDHC_R1READY_FOR_DATA = (1U << 8U),
  138. SDHC_R1SWITCH_ERR = (1U << 7U),
  139. SDHC_R1APP_CMD = (1U << 5U),
  140. SDHC_R1AUTH_SEQ_ERR = (1U << 3U),
  141. SDHC_R1ERR_All_FLAG =
  142. (SDHC_R1OUTOF_RANGE_ERR |
  143. SDHC_R1ADDRESS_ERR |
  144. SDHC_R1BLK_LEN_ERR |
  145. SDHC_R1ERASE_SEQ_ERR |
  146. SDHC_R1ERASE_PARAMETER_ERR |
  147. SDHC_R1WRITE_PROTECTION_ERR |
  148. SDHC_R1CARD_LOCKED_ERR |
  149. SDHC_R1LOCK_UNLOCK_ERR |
  150. SDHC_R1CMD_CRC_ERR |
  151. SDHC_R1ILLEGAL_CMD_ERR |
  152. SDHC_R1ECC_ERR |
  153. SDHC_R1CARD_CONTROL_ERR |
  154. SDHC_R1ERR |
  155. SDHC_R1CID_CSD_OVERWRITE_ERR |
  156. SDHC_R1AUTH_SEQ_ERR),
  157. SDHC_R1ERR_NONE = 0,
  158. };
  159. #define SD_R1_CURRENT_STATE(x) (((x)&0x00001E00U) >> 9U)
  160. enum sd_r1_current_state {
  161. SDMMC_R1_IDLE = 0U,
  162. SDMMC_R1_READY = 1U,
  163. SDMMC_R1_IDENTIFY = 2U,
  164. SDMMC_R1_STANDBY = 3U,
  165. SDMMC_R1_TRANSFER = 4U,
  166. SDMMC_R1_SEND_DATA = 5U,
  167. SDMMC_R1_RECIVE_DATA = 6U,
  168. SDMMC_R1_PROGRAM = 7U,
  169. SDMMC_R1_DISCONNECT = 8U,
  170. };
  171. enum sd_ocr_flag {
  172. SD_OCR_PWR_BUSY_FLAG = (1U << 31U),
  173. /*!< Power up busy status */
  174. SD_OCR_HOST_CAP_FLAG = (1U << 30U),
  175. /*!< Card capacity status */
  176. SD_OCR_CARD_CAP_FLAG = SD_OCR_HOST_CAP_FLAG,
  177. /*!< Card capacity status */
  178. SD_OCR_SWITCH_18_REQ_FLAG = (1U << 24U),
  179. /*!< Switch to 1.8V request */
  180. SD_OCR_SWITCH_18_ACCEPT_FLAG = SD_OCR_SWITCH_18_REQ_FLAG,
  181. /*!< Switch to 1.8V accepted */
  182. SD_OCR_VDD27_28FLAG = (1U << 15U),
  183. /*!< VDD 2.7-2.8 */
  184. SD_OCR_VDD28_29FLAG = (1U << 16U),
  185. /*!< VDD 2.8-2.9 */
  186. SD_OCR_VDD29_30FLAG = (1U << 17U),
  187. /*!< VDD 2.9-3.0 */
  188. SD_OCR_VDD30_31FLAG = (1U << 18U),
  189. /*!< VDD 2.9-3.0 */
  190. SD_OCR_VDD31_32FLAG = (1U << 19U),
  191. /*!< VDD 3.0-3.1 */
  192. SD_OCR_VDD32_33FLAG = (1U << 20U),
  193. /*!< VDD 3.1-3.2 */
  194. SD_OCR_VDD33_34FLAG = (1U << 21U),
  195. /*!< VDD 3.2-3.3 */
  196. SD_OCR_VDD34_35FLAG = (1U << 22U),
  197. /*!< VDD 3.3-3.4 */
  198. SD_OCR_VDD35_36FLAG = (1U << 23U),
  199. /*!< VDD 3.4-3.5 */
  200. };
  201. #define SD_PRODUCT_NAME_BYTES (5U)
  202. struct sd_cid {
  203. uint8_t manufacturer;
  204. /*!< Manufacturer ID [127:120] */
  205. uint16_t application;
  206. /*!< OEM/Application ID [119:104] */
  207. uint8_t name[SD_PRODUCT_NAME_BYTES];
  208. /*!< Product name [103:64] */
  209. uint8_t version;
  210. /*!< Product revision [63:56] */
  211. uint32_t ser_num;
  212. /*!< Product serial number [55:24] */
  213. uint16_t date;
  214. /*!< Manufacturing date [19:8] */
  215. };
  216. struct sd_csd {
  217. uint8_t csd_structure;
  218. /*!< CSD structure [127:126] */
  219. uint8_t read_time1;
  220. /*!< Data read access-time-1 [119:112] */
  221. uint8_t read_time2;
  222. /*!< Data read access-time-2 in clock cycles (NSAC*100) [111:104] */
  223. uint8_t xfer_rate;
  224. /*!< Maximum data transfer rate [103:96] */
  225. uint16_t cmd_class;
  226. /*!< Card command classes [95:84] */
  227. uint8_t read_blk_len;
  228. /*!< Maximum read data block length [83:80] */
  229. uint16_t flags;
  230. /*!< Flags in _sd_csd_flag */
  231. uint32_t device_size;
  232. /*!< Device size [73:62] */
  233. uint8_t read_current_min;
  234. /*!< Maximum read current at VDD min [61:59] */
  235. uint8_t read_current_max;
  236. /*!< Maximum read current at VDD max [58:56] */
  237. uint8_t write_current_min;
  238. /*!< Maximum write current at VDD min [55:53] */
  239. uint8_t write_current_max;
  240. /*!< Maximum write current at VDD max [52:50] */
  241. uint8_t dev_size_mul;
  242. /*!< Device size multiplier [49:47] */
  243. uint8_t erase_size;
  244. /*!< Erase sector size [45:39] */
  245. uint8_t write_prtect_size;
  246. /*!< Write protect group size [38:32] */
  247. uint8_t write_speed_factor;
  248. /*!< Write speed factor [28:26] */
  249. uint8_t write_blk_len;
  250. /*!< Maximum write data block length [25:22] */
  251. uint8_t file_fmt;
  252. /*!< File format [11:10] */
  253. };
  254. struct sd_scr {
  255. uint8_t scr_structure;
  256. /*!< SCR Structure [63:60] */
  257. uint8_t sd_spec;
  258. /*!< SD memory card specification version [59:56] */
  259. uint16_t flags;
  260. /*!< SCR flags in _sd_scr_flag */
  261. uint8_t sd_sec;
  262. /*!< Security specification supported [54:52] */
  263. uint8_t sd_width;
  264. /*!< Data bus widths supported [51:48] */
  265. uint8_t sd_ext_sec;
  266. /*!< Extended security support [46:43] */
  267. uint8_t cmd_support;
  268. /*!< Command support bits [33:32] 33-support CMD23, 32-support cmd20*/
  269. uint32_t rsvd;
  270. /*!< reserved for manufacturer usage [31:0] */
  271. };
  272. enum sd_timing_mode {
  273. SD_TIMING_SDR12_DFT_MODE = 0U,
  274. /*!< Identification mode & SDR12 */
  275. SD_TIMING_SDR25_HIGH_SPEED_MODE = 1U,
  276. /*!< High speed mode & SDR25 */
  277. SD_TIMING_SDR50_MODE = 2U,
  278. /*!< SDR50 mode*/
  279. SD_TIMING_SDR104_MODE = 3U,
  280. /*!< SDR104 mode */
  281. SD_TIMING_DDR50_MODE = 4U,
  282. /*!< DDR50 mode */
  283. };
  284. /*! @brief SD card current limit */
  285. enum sd_max_current {
  286. SD_MAX_CURRENT_200MA = 0U,
  287. /*!< default current limit */
  288. SD_MAX_CURRENT_400MA = 1U,
  289. /*!< current limit to 400MA */
  290. SD_MAX_CURRENT_600MA = 2U,
  291. /*!< current limit to 600MA */
  292. SD_MAX_CURRENT_800MA = 3U,
  293. /*!< current limit to 800MA */
  294. };
  295. enum sd_voltage {
  296. SD_VOL_NONE = 0U,
  297. /*!< indicate current voltage setting is not setting bu suser*/
  298. SD_VOL_3_3_V = 1U,
  299. /*!< card operation voltage around 3.3v */
  300. SD_VOL_3_0_V = 2U,
  301. /*!< card operation voltage around 3.0v */
  302. SD_VOL_1_8_V = 3U,
  303. /*!< card operation voltage around 31.8v */
  304. };
  305. #define SDMMC_DEFAULT_BLOCK_SIZE (512U)
  306. struct sd_data_op {
  307. uint32_t start_block;
  308. uint32_t block_size;
  309. uint32_t block_count;
  310. uint32_t *buf;
  311. };
  312. enum sd_switch_arg {
  313. SD_SWITCH_CHECK = 0U,
  314. /*!< SD switch mode 0: check function */
  315. SD_SWITCH_SET = 1U,
  316. /*!< SD switch mode 1: set function */
  317. };
  318. enum sd_group_num {
  319. SD_GRP_TIMING_MODE = 0U,
  320. /*!< access mode group*/
  321. SD_GRP_CMD_SYS_MODE = 1U,
  322. /*!< command system group*/
  323. SD_GRP_DRIVER_STRENGTH_MODE = 2U,
  324. /*!< driver strength group*/
  325. SD_GRP_CURRENT_LIMIT_MODE = 3U,
  326. /*!< current limit group*/
  327. };
  328. enum sd_driver_strength {
  329. SD_DRV_STRENGTH_TYPEB = 0U,
  330. /*!< default driver strength*/
  331. SD_DRV_STRENGTH_TYPEA = 1U,
  332. /*!< driver strength TYPE A */
  333. SD_DRV_STRENGTH_TYPEC = 2U,
  334. /*!< driver strength TYPE C */
  335. SD_DRV_STRENGTH_TYPED = 3U,
  336. /*!< driver strength TYPE D */
  337. };
  338. enum sd_csd_flag {
  339. SD_CSD_READ_BLK_PARTIAL_FLAG = (1U << 0U),
  340. /*!< Partial blocks for read allowed [79:79] */
  341. SD_CSD_WRITE_BLK_MISALIGN_FLAG = (1U << 1U),
  342. /*!< Write block misalignment [78:78] */
  343. SD_CSD_READ_BLK_MISALIGN_FLAG = (1U << 2U),
  344. /*!< Read block misalignment [77:77] */
  345. SD_CSD_DSR_IMPLEMENTED_FLAG = (1U << 3U),
  346. /*!< DSR implemented [76:76] */
  347. SD_CSD_ERASE_BLK_EN_FLAG = (1U << 4U),
  348. /*!< Erase single block enabled [46:46] */
  349. SD_CSD_WRITE_PROTECT_GRP_EN_FLAG = (1U << 5U),
  350. /*!< Write protect group enabled [31:31] */
  351. SD_CSD_WRITE_BLK_PARTIAL_FLAG = (1U << 6U),
  352. /*!< Partial blocks for write allowed [21:21] */
  353. SD_CSD_FILE_FMT_GRP_FLAG = (1U << 7U),
  354. /*!< File format group [15:15] */
  355. SD_CSD_COPY_FLAG = (1U << 8U),
  356. /*!< Copy flag [14:14] */
  357. SD_CSD_PERMANENT_WRITE_PROTECT_FLAG = (1U << 9U),
  358. /*!< Permanent write protection [13:13] */
  359. SD_CSD_TMP_WRITE_PROTECT_FLAG = (1U << 10U),
  360. /*!< Temporary write protection [12:12] */
  361. };
  362. enum sd_scr_flag {
  363. SD_SCR_DATA_STATUS_AFTER_ERASE = (1U << 0U),
  364. /*!< Data status after erases [55:55] */
  365. SD_SCR_SPEC3 = (1U << 1U),
  366. /*!< Specification version 3.00 or higher [47:47]*/
  367. };
  368. enum sd_spec_version {
  369. SD_SPEC_VER1_0 = (1U << 0U),
  370. /*!< SD card version 1.0-1.01 */
  371. SD_SPEC_VER1_1 = (1U << 1U),
  372. /*!< SD card version 1.10 */
  373. SD_SPEC_VER2_0 = (1U << 2U),
  374. /*!< SD card version 2.00 */
  375. SD_SPEC_VER3_0 = (1U << 3U),
  376. /*!< SD card version 3.0 */
  377. };
  378. enum sd_command_class {
  379. SD_CMD_CLASS_BASIC = (1U << 0U),
  380. /*!< Card command class 0 */
  381. SD_CMD_CLASS_BLOCK_READ = (1U << 2U),
  382. /*!< Card command class 2 */
  383. SD_CMD_CLASS_BLOCK_WRITE = (1U << 4U),
  384. /*!< Card command class 4 */
  385. SD_CMD_CLASS_ERASE = (1U << 5U),
  386. /*!< Card command class 5 */
  387. SD_CMD_CLASS_WRITE_PROTECT = (1U << 6U),
  388. /*!< Card command class 6 */
  389. SD_CMD_CLASS_LOCKCARD = (1U << 7U),
  390. /*!< Card command class 7 */
  391. SD_CMD_CLASS_APP_SPECIFIC = (1U << 8U),
  392. /*!< Card command class 8 */
  393. SD_CMD_CLASS_IO_MODE = (1U << 9U),
  394. /*!< Card command class 9 */
  395. SD_CMD_CLASS_SWITCH = (1U << 10U),
  396. /*!< Card command class 10 */
  397. };
  398. struct sdhc_retry {
  399. uint32_t end;
  400. int16_t tries;
  401. uint16_t sleep;
  402. };
  403. struct sdhc_flag_map {
  404. uint8_t mask;
  405. uint8_t err;
  406. };
  407. /* The SD protocol requires sending ones while reading but Zephyr
  408. * defaults to writing zeros.
  409. */
  410. static const uint8_t sdhc_ones[] = {
  411. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  412. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  413. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  414. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  415. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  416. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  417. };
  418. BUILD_ASSERT(sizeof(sdhc_ones) % SDHC_CSD_SIZE == 0);
  419. BUILD_ASSERT(SDMMC_DEFAULT_BLOCK_SIZE % sizeof(sdhc_ones) == 0);
  420. /* Maps R1 response flags to error codes */
  421. static const struct sdhc_flag_map sdhc_r1_flags[] = {
  422. {SDHC_R1_PARAMETER, EFAULT}, {SDHC_R1_ADDRESS, EFAULT},
  423. {SDHC_R1_ILLEGAL_COMMAND, EINVAL}, {SDHC_R1_COM_CRC, EILSEQ},
  424. {SDHC_R1_ERASE_SEQ, EIO}, {SDHC_R1_ERASE_RESET, EIO},
  425. {SDHC_R1_IDLE, ECONNRESET}, {0, 0},
  426. };
  427. /* Maps disk status flags to error codes */
  428. static const struct sdhc_flag_map sdhc_disk_status_flags[] = {
  429. {DISK_STATUS_UNINIT, ENODEV},
  430. {DISK_STATUS_NOMEDIA, ENOENT},
  431. {DISK_STATUS_WR_PROTECT, EROFS},
  432. {0, 0},
  433. };
  434. /* Maps data block flags to error codes */
  435. static const struct sdhc_flag_map sdhc_data_response_flags[] = {
  436. {SDHC_RESPONSE_WRITE_ERR, EIO},
  437. {SDHC_RESPONSE_CRC_ERR, EILSEQ},
  438. {SDHC_RESPONSE_ACCEPTED, 0},
  439. /* Unrecognised value */
  440. {0, EPROTO},
  441. };
  442. /* Returns true if an error code is retryable at the disk layer */
  443. static inline bool sdhc_is_retryable(int err)
  444. {
  445. switch (err) {
  446. case 0:
  447. return false;
  448. case -EILSEQ:
  449. case -EIO:
  450. case -ETIMEDOUT:
  451. return true;
  452. default:
  453. return false;
  454. }
  455. }
  456. /* Maps a flag based error code into a Zephyr errno */
  457. static inline int sdhc_map_flags(const struct sdhc_flag_map *map, int flags)
  458. {
  459. if (flags < 0) {
  460. return flags;
  461. }
  462. for (; map->mask != 0U; map++) {
  463. if ((flags & map->mask) == map->mask) {
  464. return -map->err;
  465. }
  466. }
  467. return -map->err;
  468. }
  469. /* Converts disk status into an error code */
  470. static inline int sdhc_map_disk_status(int status)
  471. {
  472. return sdhc_map_flags(sdhc_disk_status_flags, status);
  473. }
  474. /* Converts the R1 response flags into an error code */
  475. static inline int sdhc_map_r1_status(int status)
  476. {
  477. return sdhc_map_flags(sdhc_r1_flags, status);
  478. }
  479. /* Converts an eary stage idle mode R1 code into an error code */
  480. static inline int sdhc_map_r1_idle_status(int status)
  481. {
  482. if (status < 0) {
  483. return status;
  484. }
  485. if (status == SDHC_R1_IDLE) {
  486. return 0;
  487. }
  488. return sdhc_map_r1_status(status);
  489. }
  490. /* Converts the data block response flags into an error code */
  491. static inline int sdhc_map_data_status(int status)
  492. {
  493. return sdhc_map_flags(sdhc_data_response_flags, status);
  494. }
  495. /* Initialises a retry helper */
  496. static inline void sdhc_retry_init(struct sdhc_retry *retry, uint32_t timeout,
  497. uint16_t sleep)
  498. {
  499. retry->end = k_uptime_get_32() + timeout;
  500. retry->tries = 0;
  501. retry->sleep = sleep;
  502. }
  503. /* Called at the end of a retry loop. Returns if the minimum try
  504. * count and timeout has passed. Delays/yields on retry.
  505. */
  506. static inline bool sdhc_retry_ok(struct sdhc_retry *retry)
  507. {
  508. int32_t remain = retry->end - k_uptime_get_32();
  509. if (retry->tries < SDHC_MIN_TRIES) {
  510. retry->tries++;
  511. if (retry->sleep != 0U) {
  512. k_msleep(retry->sleep);
  513. }
  514. return true;
  515. }
  516. if (remain >= 0) {
  517. if (retry->sleep > 0) {
  518. k_msleep(retry->sleep);
  519. } else {
  520. k_yield();
  521. }
  522. return true;
  523. }
  524. return false;
  525. }
  526. static inline void sdhc_decode_csd(struct sd_csd *csd,
  527. uint32_t *raw_csd, uint32_t *blk_cout, uint32_t *blk_size)
  528. {
  529. uint32_t tmp_blk_cout, tmp_blk_size;
  530. csd->csd_structure = (uint8_t)((raw_csd[3U] &
  531. 0xC0000000U) >> 30U);
  532. csd->read_time1 = (uint8_t)((raw_csd[3U] &
  533. 0xFF0000U) >> 16U);
  534. csd->read_time2 = (uint8_t)((raw_csd[3U] &
  535. 0xFF00U) >> 8U);
  536. csd->xfer_rate = (uint8_t)(raw_csd[3U] &
  537. 0xFFU);
  538. csd->cmd_class = (uint16_t)((raw_csd[2U] &
  539. 0xFFF00000U) >> 20U);
  540. csd->read_blk_len = (uint8_t)((raw_csd[2U] &
  541. 0xF0000U) >> 16U);
  542. if (raw_csd[2U] & 0x8000U)
  543. csd->flags |= SD_CSD_READ_BLK_PARTIAL_FLAG;
  544. if (raw_csd[2U] & 0x4000U)
  545. csd->flags |= SD_CSD_READ_BLK_PARTIAL_FLAG;
  546. if (raw_csd[2U] & 0x2000U)
  547. csd->flags |= SD_CSD_READ_BLK_MISALIGN_FLAG;
  548. if (raw_csd[2U] & 0x1000U)
  549. csd->flags |= SD_CSD_DSR_IMPLEMENTED_FLAG;
  550. switch (csd->csd_structure) {
  551. case 0:
  552. csd->device_size = (uint32_t)((raw_csd[2U] &
  553. 0x3FFU) << 2U);
  554. csd->device_size |= (uint32_t)((raw_csd[1U] &
  555. 0xC0000000U) >> 30U);
  556. csd->read_current_min = (uint8_t)((raw_csd[1U] &
  557. 0x38000000U) >> 27U);
  558. csd->read_current_max = (uint8_t)((raw_csd[1U] &
  559. 0x7000000U) >> 24U);
  560. csd->write_current_min = (uint8_t)((raw_csd[1U] &
  561. 0xE00000U) >> 20U);
  562. csd->write_current_max = (uint8_t)((raw_csd[1U] &
  563. 0x1C0000U) >> 18U);
  564. csd->dev_size_mul = (uint8_t)((raw_csd[1U] &
  565. 0x38000U) >> 15U);
  566. /* Get card total block count and block size. */
  567. tmp_blk_cout = ((csd->device_size + 1U) <<
  568. (csd->dev_size_mul + 2U));
  569. tmp_blk_size = (1U << (csd->read_blk_len));
  570. if (tmp_blk_size != SDMMC_DEFAULT_BLOCK_SIZE) {
  571. tmp_blk_cout = (tmp_blk_cout * tmp_blk_size);
  572. tmp_blk_size = SDMMC_DEFAULT_BLOCK_SIZE;
  573. tmp_blk_cout = (tmp_blk_cout / tmp_blk_size);
  574. }
  575. if (blk_cout)
  576. *blk_cout = tmp_blk_cout;
  577. if (blk_size)
  578. *blk_size = tmp_blk_size;
  579. break;
  580. case 1:
  581. tmp_blk_size = SDMMC_DEFAULT_BLOCK_SIZE;
  582. csd->device_size = (uint32_t)((raw_csd[2U] &
  583. 0x3FU) << 16U);
  584. csd->device_size |= (uint32_t)((raw_csd[1U] &
  585. 0xFFFF0000U) >> 16U);
  586. tmp_blk_cout = ((csd->device_size + 1U) * 1024U);
  587. if (blk_cout)
  588. *blk_cout = tmp_blk_cout;
  589. if (blk_size)
  590. *blk_size = tmp_blk_size;
  591. break;
  592. default:
  593. break;
  594. }
  595. if ((uint8_t)((raw_csd[1U] & 0x4000U) >> 14U))
  596. csd->flags |= SD_CSD_ERASE_BLK_EN_FLAG;
  597. csd->erase_size = (uint8_t)((raw_csd[1U] &
  598. 0x3F80U) >> 7U);
  599. csd->write_prtect_size = (uint8_t)(raw_csd[1U] &
  600. 0x7FU);
  601. csd->write_speed_factor = (uint8_t)((raw_csd[0U] &
  602. 0x1C000000U) >> 26U);
  603. csd->write_blk_len = (uint8_t)((raw_csd[0U] &
  604. 0x3C00000U) >> 22U);
  605. if ((uint8_t)((raw_csd[0U] & 0x200000U) >> 21U))
  606. csd->flags |= SD_CSD_WRITE_BLK_PARTIAL_FLAG;
  607. if ((uint8_t)((raw_csd[0U] & 0x8000U) >> 15U))
  608. csd->flags |= SD_CSD_FILE_FMT_GRP_FLAG;
  609. if ((uint8_t)((raw_csd[0U] & 0x4000U) >> 14U))
  610. csd->flags |= SD_CSD_COPY_FLAG;
  611. if ((uint8_t)((raw_csd[0U] & 0x2000U) >> 13U))
  612. csd->flags |=
  613. SD_CSD_PERMANENT_WRITE_PROTECT_FLAG;
  614. if ((uint8_t)((raw_csd[0U] & 0x1000U) >> 12U))
  615. csd->flags |=
  616. SD_CSD_TMP_WRITE_PROTECT_FLAG;
  617. csd->file_fmt = (uint8_t)((raw_csd[0U] & 0xC00U) >> 10U);
  618. }
  619. static inline void sdhc_decode_scr(struct sd_scr *scr,
  620. uint32_t *raw_scr, uint32_t *version)
  621. {
  622. uint32_t tmp_version = 0;
  623. scr->scr_structure = (uint8_t)((raw_scr[0U] & 0xF0000000U) >> 28U);
  624. scr->sd_spec = (uint8_t)((raw_scr[0U] & 0xF000000U) >> 24U);
  625. if ((uint8_t)((raw_scr[0U] & 0x800000U) >> 23U))
  626. scr->flags |= SD_SCR_DATA_STATUS_AFTER_ERASE;
  627. scr->sd_sec = (uint8_t)((raw_scr[0U] & 0x700000U) >> 20U);
  628. scr->sd_width = (uint8_t)((raw_scr[0U] & 0xF0000U) >> 16U);
  629. if ((uint8_t)((raw_scr[0U] & 0x8000U) >> 15U))
  630. scr->flags |= SD_SCR_SPEC3;
  631. scr->sd_ext_sec = (uint8_t)((raw_scr[0U] & 0x7800U) >> 10U);
  632. scr->cmd_support = (uint8_t)(raw_scr[0U] & 0x3U);
  633. scr->rsvd = raw_scr[1U];
  634. /* Get specification version. */
  635. switch (scr->sd_spec) {
  636. case 0U:
  637. tmp_version = SD_SPEC_VER1_0;
  638. break;
  639. case 1U:
  640. tmp_version = SD_SPEC_VER1_1;
  641. break;
  642. case 2U:
  643. tmp_version = SD_SPEC_VER2_0;
  644. if (scr->flags & SD_SCR_SPEC3) {
  645. tmp_version = SD_SPEC_VER3_0;
  646. }
  647. break;
  648. default:
  649. break;
  650. }
  651. if (version && tmp_version)
  652. *version = tmp_version;
  653. }
  654. static inline void sdhc_decode_cid(struct sd_cid *cid,
  655. uint32_t *raw_cid)
  656. {
  657. cid->manufacturer = (uint8_t)((raw_cid[3U] & 0xFF000000U) >> 24U);
  658. cid->application = (uint16_t)((raw_cid[3U] & 0xFFFF00U) >> 8U);
  659. cid->name[0U] = (uint8_t)((raw_cid[3U] & 0xFFU));
  660. cid->name[1U] = (uint8_t)((raw_cid[2U] & 0xFF000000U) >> 24U);
  661. cid->name[2U] = (uint8_t)((raw_cid[2U] & 0xFF0000U) >> 16U);
  662. cid->name[3U] = (uint8_t)((raw_cid[2U] & 0xFF00U) >> 8U);
  663. cid->name[4U] = (uint8_t)((raw_cid[2U] & 0xFFU));
  664. cid->version = (uint8_t)((raw_cid[1U] & 0xFF000000U) >> 24U);
  665. cid->ser_num = (uint32_t)((raw_cid[1U] & 0xFFFFFFU) << 8U);
  666. cid->ser_num |= (uint32_t)((raw_cid[0U] & 0xFF000000U) >> 24U);
  667. cid->date = (uint16_t)((raw_cid[0U] & 0xFFF00U) >> 8U);
  668. }
  669. #endif /*ZEPHYR_INCLUDE_DISK_DRIVER_SDMMC_H_*/