sdmmc_spi.c 22 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016
  1. /*
  2. * Copyright (c) 2017 Google LLC.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #define DT_DRV_COMPAT zephyr_mmc_spi_slot
  7. #include <logging/log.h>
  8. LOG_MODULE_REGISTER(sdmmc_spi, CONFIG_SDMMC_LOG_LEVEL);
  9. #include <drivers/disk.h>
  10. #include <drivers/gpio.h>
  11. #include <sys/byteorder.h>
  12. #include <drivers/spi.h>
  13. #include <sys/crc.h>
  14. #include "sdmmc_sdhc.h"
  15. /* Clock speed used during initialisation */
  16. #define SDHC_SPI_INIT_SPEED KHZ(400)
  17. /* Maximum clock speed used after initialisation (actual speed set in DTS).
  18. * SD Specifications Part 1 Physical layer states 25MHz maximum.
  19. */
  20. #define SDHC_SPI_MAX_OPER_SPEED MHZ(25)
  21. #define SPI_SDHC_NODE DT_DRV_INST(0)
  22. #if !DT_NODE_HAS_STATUS(SPI_SDHC_NODE, okay)
  23. #warning NO SDHC slot specified on board
  24. #else
  25. struct sdhc_spi_data {
  26. const struct device *spi;
  27. const struct spi_config *spi_cfg;
  28. bool high_capacity;
  29. uint32_t sector_count;
  30. uint8_t status;
  31. #if LOG_LEVEL >= LOG_LEVEL_DBG
  32. int trace_dir;
  33. #endif
  34. };
  35. struct sdhc_spi_config {
  36. struct spi_config init_cfg;
  37. struct spi_config oper_cfg;
  38. #if DT_SPI_DEV_HAS_CS_GPIOS(SPI_SDHC_NODE)
  39. struct spi_cs_control cs;
  40. #endif
  41. };
  42. static void sdhc_spi_set_status(const struct device *dev, uint8_t status)
  43. {
  44. struct sdhc_spi_data *data = dev->data;
  45. const struct sdhc_spi_config *cfg = dev->config;
  46. data->status = status;
  47. if (status == DISK_STATUS_UNINIT) {
  48. data->spi_cfg = &cfg->init_cfg;
  49. } else if (status == DISK_STATUS_OK) {
  50. data->spi_cfg = &cfg->oper_cfg;
  51. }
  52. }
  53. /* Traces card traffic for LOG_LEVEL_DBG */
  54. static int sdhc_spi_trace(struct sdhc_spi_data *data, int dir, int err,
  55. const uint8_t *buf, int len)
  56. {
  57. #if LOG_LEVEL >= LOG_LEVEL_DBG
  58. if (err != 0) {
  59. printk("(err=%d)", err);
  60. data->trace_dir = 0;
  61. }
  62. if (dir != data->trace_dir) {
  63. data->trace_dir = dir;
  64. printk("\n");
  65. if (dir == 1) {
  66. printk(">>");
  67. } else if (dir == -1) {
  68. printk("<<");
  69. }
  70. }
  71. for (; len != 0; len--) {
  72. printk(" %x", *buf++);
  73. }
  74. #endif
  75. return err;
  76. }
  77. /* Receives a fixed number of bytes */
  78. static int sdhc_spi_rx_bytes(struct sdhc_spi_data *data, uint8_t *buf, int len)
  79. {
  80. struct spi_buf tx_bufs[] = {
  81. {
  82. .buf = (uint8_t *)sdhc_ones,
  83. .len = len
  84. }
  85. };
  86. const struct spi_buf_set tx = {
  87. .buffers = tx_bufs,
  88. .count = 1,
  89. };
  90. struct spi_buf rx_bufs[] = {
  91. {
  92. .buf = buf,
  93. .len = len
  94. }
  95. };
  96. const struct spi_buf_set rx = {
  97. .buffers = rx_bufs,
  98. .count = 1,
  99. };
  100. return sdhc_spi_trace(data, -1,
  101. spi_transceive(data->spi, data->spi_cfg, &tx, &rx),
  102. buf, len);
  103. }
  104. /* Receives and returns a single byte */
  105. static int sdhc_spi_rx_u8(struct sdhc_spi_data *data)
  106. {
  107. uint8_t buf[1];
  108. int err = sdhc_spi_rx_bytes(data, buf, sizeof(buf));
  109. if (err != 0) {
  110. return err;
  111. }
  112. return buf[0];
  113. }
  114. /* Transmits a block of bytes */
  115. static int sdhc_spi_tx(struct sdhc_spi_data *data, const uint8_t *buf, int len)
  116. {
  117. struct spi_buf spi_bufs[] = {
  118. {
  119. .buf = (uint8_t *)buf,
  120. .len = len
  121. }
  122. };
  123. const struct spi_buf_set tx = {
  124. .buffers = spi_bufs,
  125. .count = 1
  126. };
  127. return sdhc_spi_trace(data, 1,
  128. spi_write(data->spi, data->spi_cfg, &tx), buf,
  129. len);
  130. }
  131. /* Transmits the command and payload */
  132. static int sdhc_spi_tx_cmd(struct sdhc_spi_data *data, uint8_t cmd, uint32_t payload)
  133. {
  134. uint8_t buf[SDHC_CMD_SIZE];
  135. LOG_DBG("cmd%d payload=%u", cmd, payload);
  136. sdhc_spi_trace(data, 0, 0, NULL, 0);
  137. /* Encode the command */
  138. buf[0] = SDHC_TX | (cmd & ~SDHC_START);
  139. sys_put_be32(payload, &buf[1]);
  140. /* Add CRC and set LSB as 'end bit' */
  141. buf[SDHC_CMD_BODY_SIZE] = crc7_be(0, buf, SDHC_CMD_BODY_SIZE) | 0x01;
  142. return sdhc_spi_tx(data, buf, sizeof(buf));
  143. }
  144. /* Reads until anything but `discard` is received */
  145. static int sdhc_spi_skip(struct sdhc_spi_data *data, int discard)
  146. {
  147. int err;
  148. struct sdhc_retry retry;
  149. sdhc_retry_init(&retry, SDHC_READY_TIMEOUT, 0);
  150. do {
  151. err = sdhc_spi_rx_u8(data);
  152. if (err != discard) {
  153. return err;
  154. }
  155. } while (sdhc_retry_ok(&retry));
  156. LOG_WRN("Timeout while waiting for !%d", discard);
  157. return -ETIMEDOUT;
  158. }
  159. /* Reads until the first byte in a response is received */
  160. static int sdhc_spi_skip_until_start(struct sdhc_spi_data *data)
  161. {
  162. struct sdhc_retry retry;
  163. int status;
  164. sdhc_retry_init(&retry, SDHC_READY_TIMEOUT, 0);
  165. do {
  166. status = sdhc_spi_rx_u8(data);
  167. if (status < 0) {
  168. return status;
  169. }
  170. if ((status & SDHC_START) == 0) {
  171. return status;
  172. }
  173. } while (sdhc_retry_ok(&retry));
  174. return -ETIMEDOUT;
  175. }
  176. /* Reads until the bus goes high */
  177. static int sdhc_spi_skip_until_ready(struct sdhc_spi_data *data)
  178. {
  179. struct sdhc_retry retry;
  180. int status;
  181. sdhc_retry_init(&retry, SDHC_READY_TIMEOUT, 0);
  182. do {
  183. status = sdhc_spi_rx_u8(data);
  184. if (status < 0) {
  185. return status;
  186. }
  187. if (status == 0) {
  188. /* Card is still busy */
  189. continue;
  190. }
  191. if (status == 0xFF) {
  192. return 0;
  193. }
  194. /* Got something else. Some cards release MISO part
  195. * way through the transfer. Read another and see if
  196. * MISO went high.
  197. */
  198. status = sdhc_spi_rx_u8(data);
  199. if (status < 0) {
  200. return status;
  201. }
  202. if (status == 0xFF) {
  203. return 0;
  204. }
  205. return -EPROTO;
  206. } while (sdhc_retry_ok(&retry));
  207. return -ETIMEDOUT;
  208. }
  209. /* Sends a command and returns the received R1 status code */
  210. static int sdhc_spi_cmd_r1_raw(struct sdhc_spi_data *data,
  211. uint8_t cmd, uint32_t payload)
  212. {
  213. int err;
  214. err = sdhc_spi_tx_cmd(data, cmd, payload);
  215. if (err != 0) {
  216. return err;
  217. }
  218. err = sdhc_spi_skip_until_start(data);
  219. /* Ensure there's a idle byte between commands */
  220. if (cmd != SDHC_SEND_CSD && cmd != SDHC_SEND_CID &&
  221. cmd != SDHC_READ_SINGLE_BLOCK && cmd != SDHC_READ_MULTIPLE_BLOCK &&
  222. cmd != SDHC_WRITE_BLOCK && cmd != SDHC_WRITE_MULTIPLE_BLOCK) {
  223. sdhc_spi_rx_u8(data);
  224. }
  225. return err;
  226. }
  227. /* Sends a command and returns the mapped error code */
  228. static int sdhc_spi_cmd_r1(struct sdhc_spi_data *data,
  229. uint8_t cmd, uint32_t payload)
  230. {
  231. return sdhc_map_r1_status(sdhc_spi_cmd_r1_raw(data, cmd, payload));
  232. }
  233. /* Sends a command in idle mode returns the mapped error code */
  234. static int sdhc_spi_cmd_r1_idle(struct sdhc_spi_data *data, uint8_t cmd,
  235. uint32_t payload)
  236. {
  237. return sdhc_map_r1_idle_status(sdhc_spi_cmd_r1_raw(data, cmd, payload));
  238. }
  239. /* Sends a command and returns the received multi-byte R2 status code */
  240. static int sdhc_spi_cmd_r2(struct sdhc_spi_data *data,
  241. uint8_t cmd, uint32_t payload)
  242. {
  243. int err;
  244. int r1;
  245. int r2;
  246. err = sdhc_spi_tx_cmd(data, cmd, payload);
  247. if (err != 0) {
  248. return err;
  249. }
  250. r1 = sdhc_map_r1_status(sdhc_spi_skip_until_start(data));
  251. /* Always read the rest of the reply */
  252. r2 = sdhc_spi_rx_u8(data);
  253. /* Ensure there's a idle byte between commands */
  254. sdhc_spi_rx_u8(data);
  255. if (r1 < 0) {
  256. return r1;
  257. }
  258. return r2;
  259. }
  260. /* Sends a command and returns the received multi-byte status code */
  261. static int sdhc_spi_cmd_r37_raw(struct sdhc_spi_data *data,
  262. uint8_t cmd, uint32_t payload, uint32_t *reply)
  263. {
  264. int err;
  265. int status;
  266. uint8_t buf[sizeof(*reply)];
  267. err = sdhc_spi_tx_cmd(data, cmd, payload);
  268. if (err != 0) {
  269. return err;
  270. }
  271. status = sdhc_spi_skip_until_start(data);
  272. /* Always read the rest of the reply */
  273. err = sdhc_spi_rx_bytes(data, buf, sizeof(buf));
  274. *reply = sys_get_be32(buf);
  275. /* Ensure there's a idle byte between commands */
  276. sdhc_spi_rx_u8(data);
  277. if (err != 0) {
  278. return err;
  279. }
  280. return status;
  281. }
  282. /* Sends a command in idle mode returns the mapped error code */
  283. static int sdhc_spi_cmd_r7_idle(struct sdhc_spi_data *data,
  284. uint8_t cmd, uint32_t payload, uint32_t *reply)
  285. {
  286. return sdhc_map_r1_idle_status(
  287. sdhc_spi_cmd_r37_raw(data, cmd, payload, reply));
  288. }
  289. /* Sends a command and returns the received multi-byte R3 error code */
  290. static int sdhc_spi_cmd_r3(struct sdhc_spi_data *data,
  291. uint8_t cmd, uint32_t payload, uint32_t *reply)
  292. {
  293. return sdhc_map_r1_status(
  294. sdhc_spi_cmd_r37_raw(data, cmd, payload, reply));
  295. }
  296. /* Receives a SDHC data block */
  297. static int sdhc_spi_rx_block(struct sdhc_spi_data *data,
  298. uint8_t *buf, int len)
  299. {
  300. int err;
  301. int token;
  302. int i;
  303. /* Note the one extra byte to ensure there's an idle byte
  304. * between commands.
  305. */
  306. uint8_t crc[SDHC_CRC16_SIZE + 1];
  307. token = sdhc_spi_skip(data, 0xFF);
  308. if (token < 0) {
  309. return token;
  310. }
  311. if (token != SDHC_TOKEN_SINGLE) {
  312. /* No start token */
  313. return -EIO;
  314. }
  315. /* Read the data in batches */
  316. for (i = 0; i < len; i += sizeof(sdhc_ones)) {
  317. int remain = MIN(sizeof(sdhc_ones), len - i);
  318. struct spi_buf tx_bufs[] = {
  319. {
  320. .buf = (uint8_t *)sdhc_ones,
  321. .len = remain
  322. }
  323. };
  324. const struct spi_buf_set tx = {
  325. .buffers = tx_bufs,
  326. .count = 1,
  327. };
  328. struct spi_buf rx_bufs[] = {
  329. {
  330. .buf = &buf[i],
  331. .len = remain
  332. }
  333. };
  334. const struct spi_buf_set rx = {
  335. .buffers = rx_bufs,
  336. .count = 1,
  337. };
  338. err = sdhc_spi_trace(data, -1,
  339. spi_transceive(data->spi, data->spi_cfg,
  340. &tx, &rx),
  341. &buf[i], remain);
  342. if (err != 0) {
  343. return err;
  344. }
  345. }
  346. err = sdhc_spi_rx_bytes(data, crc, sizeof(crc));
  347. if (err != 0) {
  348. return err;
  349. }
  350. if (sys_get_be16(crc) != crc16_itu_t(0, buf, len)) {
  351. /* Bad CRC */
  352. return -EILSEQ;
  353. }
  354. return 0;
  355. }
  356. /* Transmits a SDHC data block */
  357. static int sdhc_spi_tx_block(struct sdhc_spi_data *data,
  358. uint8_t *send, int len)
  359. {
  360. uint8_t buf[SDHC_CRC16_SIZE];
  361. int err;
  362. /* Start the block */
  363. buf[0] = SDHC_TOKEN_SINGLE;
  364. err = sdhc_spi_tx(data, buf, 1);
  365. if (err != 0) {
  366. return err;
  367. }
  368. /* Write the payload */
  369. err = sdhc_spi_tx(data, send, len);
  370. if (err != 0) {
  371. return err;
  372. }
  373. /* Build and write the trailing CRC */
  374. sys_put_be16(crc16_itu_t(0, send, len), buf);
  375. err = sdhc_spi_tx(data, buf, sizeof(buf));
  376. if (err != 0) {
  377. return err;
  378. }
  379. return sdhc_map_data_status(sdhc_spi_rx_u8(data));
  380. }
  381. static int sdhc_spi_recover(struct sdhc_spi_data *data)
  382. {
  383. /* TODO(nzmichaelh): implement */
  384. return sdhc_spi_cmd_r1(data, SDHC_SEND_STATUS, 0);
  385. }
  386. /* Attempts to return the card to idle mode */
  387. static int sdhc_spi_go_idle(struct sdhc_spi_data *data)
  388. {
  389. /* Write the initial >= 74 clocks */
  390. sdhc_spi_tx(data, sdhc_ones, 10);
  391. spi_release(data->spi, data->spi_cfg);
  392. return sdhc_spi_cmd_r1_idle(data, SDHC_GO_IDLE_STATE, 0);
  393. }
  394. /* Checks the supported host voltage and basic protocol of a SDHC card */
  395. static int sdhc_spi_check_interface(struct sdhc_spi_data *data)
  396. {
  397. uint32_t cond;
  398. int err;
  399. /* Check that the current voltage is supported */
  400. err = sdhc_spi_cmd_r7_idle(data, SDHC_SEND_IF_COND,
  401. SDHC_VHS_3V3 | SDHC_CHECK, &cond);
  402. if (err != 0) {
  403. return err;
  404. }
  405. if ((cond & 0xFF) != SDHC_CHECK) {
  406. /* Card returned a different check pattern */
  407. return -ENOENT;
  408. }
  409. if ((cond & SDHC_VHS_MASK) != SDHC_VHS_3V3) {
  410. /* Card doesn't support this voltage */
  411. return -ENOTSUP;
  412. }
  413. return 0;
  414. }
  415. /* Detect and initialise the card */
  416. static int sdhc_spi_detect(const struct device *dev)
  417. {
  418. struct sdhc_spi_data *data = dev->data;
  419. int err;
  420. uint32_t ocr;
  421. struct sdhc_retry retry;
  422. uint8_t structure;
  423. uint8_t readbllen;
  424. uint32_t csize;
  425. uint8_t csizemult;
  426. uint8_t buf[SDHC_CSD_SIZE];
  427. bool is_v2;
  428. sdhc_spi_set_status(dev, DISK_STATUS_UNINIT);
  429. sdhc_retry_init(&retry, SDHC_INIT_TIMEOUT, SDHC_RETRY_DELAY);
  430. /* Synchronise with the card by sending it to idle */
  431. do {
  432. err = sdhc_spi_go_idle(data);
  433. if (err == 0) {
  434. err = sdhc_spi_check_interface(data);
  435. is_v2 = (err == 0) ? true : false;
  436. break;
  437. }
  438. if (!sdhc_retry_ok(&retry)) {
  439. return -ENOENT;
  440. }
  441. } while (true);
  442. /* Enable CRC mode */
  443. err = sdhc_spi_cmd_r1_idle(data, SDHC_CRC_ON_OFF, 1);
  444. if (err != 0) {
  445. return err;
  446. }
  447. /* Wait for the card to leave idle state */
  448. do {
  449. sdhc_spi_cmd_r1_raw(data, SDHC_APP_CMD, 0);
  450. /* Set HCS only if card conforms to specification v2.00 (cf. 4.2.3) */
  451. err = sdhc_spi_cmd_r1(data, SDHC_SEND_OP_COND, is_v2 ? SDHC_HCS : 0);
  452. if (err == 0) {
  453. break;
  454. }
  455. } while (sdhc_retry_ok(&retry));
  456. if (err != 0) {
  457. /* Card never exited idle */
  458. return -ETIMEDOUT;
  459. }
  460. ocr = 0;
  461. if (is_v2) {
  462. do {
  463. /* Read OCR to check if this is a SDSC or SDHC card.
  464. * CCS bit is valid after BUSY bit is set.
  465. */
  466. err = sdhc_spi_cmd_r3(data, SDHC_READ_OCR, 0, &ocr);
  467. if (err != 0) {
  468. return err;
  469. }
  470. if ((ocr & SDHC_BUSY) != 0U) {
  471. break;
  472. }
  473. } while (sdhc_retry_ok(&retry));
  474. }
  475. if ((ocr & SDHC_CCS) != 0U) {
  476. data->high_capacity = true;
  477. } else {
  478. /* A 'SDSC' card: Set block length to 512 bytes. */
  479. data->high_capacity = false;
  480. err = sdhc_spi_cmd_r1(data, SDHC_SET_BLOCK_SIZE, SDMMC_DEFAULT_BLOCK_SIZE);
  481. if (err != 0) {
  482. return err;
  483. }
  484. }
  485. /* Read the CSD */
  486. err = sdhc_spi_cmd_r1(data, SDHC_SEND_CSD, 0);
  487. if (err != 0) {
  488. return err;
  489. }
  490. err = sdhc_spi_rx_block(data, buf, sizeof(buf));
  491. if (err != 0) {
  492. return err;
  493. }
  494. /* Bits 126..127 are the structure version */
  495. structure = (buf[0] >> 6);
  496. switch (structure) {
  497. case SDHC_CSD_V1:
  498. /* The maximum read data block length is given by bits 80..83 raised
  499. * to the power of 2. Possible values are 9, 10 and 11 for 512, 1024
  500. * and 2048 bytes, respectively. This driver does not make use of block
  501. * lengths greater than 512 bytes, but forces 512 byte block transfers
  502. * instead.
  503. */
  504. readbllen = buf[5] & ((1 << 4) - 1);
  505. if ((readbllen < 9) || (readbllen > 11)) {
  506. /* Invalid maximum read data block length (cf. section 5.3.2) */
  507. return -ENOTSUP;
  508. }
  509. /* The capacity of the card is given by bits 62..73 plus 1 multiplied
  510. * by bits 47..49 plus 2 raised to the power of 2 in maximum read data
  511. * blocks.
  512. */
  513. csize = (sys_get_be32(&buf[6]) >> 14) & ((1 << 12) - 1);
  514. csizemult = (uint8_t) ((sys_get_be16(&buf[9]) >> 7) & ((1 << 3) - 1));
  515. data->sector_count = ((csize + 1) << (csizemult + 2 + readbllen - 9));
  516. break;
  517. case SDHC_CSD_V2:
  518. /* Bits 48..69 are the capacity of the card in 512 KiB units, minus 1.
  519. */
  520. csize = sys_get_be32(&buf[6]) & ((1 << 22) - 1);
  521. if (csize < 4112) {
  522. /* Invalid capacity (cf. section 5.3.3) */
  523. return -ENOTSUP;
  524. }
  525. data->sector_count = (csize + 1) *
  526. (512 * 1024 / SDMMC_DEFAULT_BLOCK_SIZE);
  527. break;
  528. default:
  529. /* Unsupported CSD format */
  530. return -ENOTSUP;
  531. }
  532. LOG_INF("Found a ~%u MiB SDHC card.",
  533. data->sector_count / (1024 * 1024 / SDMMC_DEFAULT_BLOCK_SIZE));
  534. /* Read the CID */
  535. err = sdhc_spi_cmd_r1(data, SDHC_SEND_CID, 0);
  536. if (err != 0) {
  537. return err;
  538. }
  539. err = sdhc_spi_rx_block(data, buf, sizeof(buf));
  540. if (err != 0) {
  541. return err;
  542. }
  543. LOG_INF("Manufacturer ID=%d OEM='%c%c' Name='%c%c%c%c%c' "
  544. "Revision=0x%x Serial=0x%x",
  545. buf[0], buf[1], buf[2], buf[3], buf[4], buf[5], buf[6],
  546. buf[7], buf[8], sys_get_be32(&buf[9]));
  547. /* Initilisation complete */
  548. sdhc_spi_set_status(dev, DISK_STATUS_OK);
  549. return 0;
  550. }
  551. static int sdhc_spi_read(struct sdhc_spi_data *data,
  552. uint8_t *buf, uint32_t sector, uint32_t count)
  553. {
  554. int err;
  555. uint32_t addr;
  556. err = sdhc_map_disk_status(data->status);
  557. if (err != 0) {
  558. return err;
  559. }
  560. /* Translate sector number to data address.
  561. * SDSC cards use byte addressing, SDHC cards use block addressing.
  562. */
  563. if (data->high_capacity) {
  564. addr = sector;
  565. } else {
  566. addr = sector * SDMMC_DEFAULT_BLOCK_SIZE;
  567. }
  568. /* Send the start read command */
  569. err = sdhc_spi_cmd_r1(data, SDHC_READ_MULTIPLE_BLOCK, addr);
  570. if (err != 0) {
  571. goto error;
  572. }
  573. /* Read the sectors */
  574. for (; count != 0U; count--) {
  575. err = sdhc_spi_rx_block(data, buf, SDMMC_DEFAULT_BLOCK_SIZE);
  576. if (err != 0) {
  577. goto error;
  578. }
  579. buf += SDMMC_DEFAULT_BLOCK_SIZE;
  580. }
  581. /* Ignore the error as STOP_TRANSMISSION always returns 0x7F */
  582. sdhc_spi_cmd_r1(data, SDHC_STOP_TRANSMISSION, 0);
  583. /* Wait until the card becomes ready */
  584. err = sdhc_spi_skip_until_ready(data);
  585. error:
  586. spi_release(data->spi, data->spi_cfg);
  587. return err;
  588. }
  589. static int sdhc_spi_write(struct sdhc_spi_data *data,
  590. const uint8_t *buf, uint32_t sector, uint32_t count)
  591. {
  592. int err;
  593. uint32_t addr;
  594. err = sdhc_map_disk_status(data->status);
  595. if (err != 0) {
  596. return err;
  597. }
  598. /* Write the blocks one-by-one */
  599. for (; count != 0U; count--) {
  600. /* Translate sector number to data address.
  601. * SDSC cards use byte addressing, SDHC cards use block addressing.
  602. */
  603. if (data->high_capacity) {
  604. addr = sector;
  605. } else {
  606. addr = sector * SDMMC_DEFAULT_BLOCK_SIZE;
  607. }
  608. err = sdhc_spi_cmd_r1(data, SDHC_WRITE_BLOCK, addr);
  609. if (err < 0) {
  610. goto error;
  611. }
  612. err = sdhc_spi_tx_block(data, (uint8_t *)buf,
  613. SDMMC_DEFAULT_BLOCK_SIZE);
  614. if (err != 0) {
  615. goto error;
  616. }
  617. /* Wait for the card to finish programming */
  618. err = sdhc_spi_skip_until_ready(data);
  619. if (err != 0) {
  620. goto error;
  621. }
  622. err = sdhc_spi_cmd_r2(data, SDHC_SEND_STATUS, 0);
  623. if (err != 0) {
  624. goto error;
  625. }
  626. buf += SDMMC_DEFAULT_BLOCK_SIZE;
  627. sector++;
  628. }
  629. err = 0;
  630. error:
  631. spi_release(data->spi, data->spi_cfg);
  632. return err;
  633. }
  634. /* this function is optimized to write multiple blocks */
  635. static int sdhc_spi_write_multi(struct sdhc_spi_data *data,
  636. const uint8_t *buf, uint32_t sector, uint32_t count)
  637. {
  638. int err;
  639. uint32_t addr;
  640. uint8_t block[SDHC_CRC16_SIZE];
  641. err = sdhc_map_disk_status(data->status);
  642. if (err != 0) {
  643. return err;
  644. }
  645. if (data->high_capacity) {
  646. addr = sector;
  647. } else {
  648. addr = sector * SDMMC_DEFAULT_BLOCK_SIZE;
  649. }
  650. err = sdhc_spi_cmd_r1(data, SDHC_WRITE_MULTIPLE_BLOCK, addr);
  651. if (err < 0) {
  652. goto exit;
  653. }
  654. /* Write the blocks */
  655. for (; count != 0U; count--) {
  656. /* Start the block */
  657. block[0] = SDHC_TOKEN_MULTI_WRITE;
  658. err = sdhc_spi_tx(data, block, 1);
  659. if (err != 0) {
  660. goto exit;
  661. }
  662. /* Write the payload */
  663. err = sdhc_spi_tx(data, buf, SDMMC_DEFAULT_BLOCK_SIZE);
  664. if (err != 0) {
  665. goto exit;
  666. }
  667. /* Build and write the trailing CRC */
  668. sys_put_be16(crc16_itu_t(0, buf, SDMMC_DEFAULT_BLOCK_SIZE),
  669. block);
  670. err = sdhc_spi_tx(data, block, sizeof(block));
  671. if (err != 0) {
  672. goto exit;
  673. }
  674. err = sdhc_map_data_status(sdhc_spi_rx_u8(data));
  675. if (err != 0) {
  676. goto exit;
  677. }
  678. /* Wait for the card to finish programming */
  679. err = sdhc_spi_skip_until_ready(data);
  680. if (err != 0) {
  681. goto exit;
  682. }
  683. buf += SDMMC_DEFAULT_BLOCK_SIZE;
  684. sector++;
  685. }
  686. /* Stop the transmission */
  687. sdhc_spi_tx_cmd(data, SDHC_STOP_TRANSMISSION, 0);
  688. /* Wait for the card to finish operation */
  689. err = sdhc_spi_skip_until_ready(data);
  690. if (err != 0) {
  691. goto exit;
  692. }
  693. err = 0;
  694. exit:
  695. spi_release(data->spi, data->spi_cfg);
  696. return err;
  697. }
  698. static int disk_spi_sdhc_init(const struct device *dev);
  699. static int sdhc_spi_init(const struct device *dev)
  700. {
  701. struct sdhc_spi_data *data = dev->data;
  702. data->spi = device_get_binding(DT_BUS_LABEL(SPI_SDHC_NODE));
  703. disk_spi_sdhc_init(dev);
  704. return 0;
  705. }
  706. static int disk_spi_sdhc_access_status(struct disk_info *disk)
  707. {
  708. const struct device *dev = disk->dev;
  709. struct sdhc_spi_data *data = dev->data;
  710. return data->status;
  711. }
  712. static int disk_spi_sdhc_access_read(struct disk_info *disk,
  713. uint8_t *buf, uint32_t sector, uint32_t count)
  714. {
  715. const struct device *dev = disk->dev;
  716. struct sdhc_spi_data *data = dev->data;
  717. int err;
  718. LOG_DBG("sector=%u count=%u", sector, count);
  719. err = sdhc_spi_read(data, buf, sector, count);
  720. if (err != 0 && sdhc_is_retryable(err)) {
  721. sdhc_spi_recover(data);
  722. err = sdhc_spi_read(data, buf, sector, count);
  723. }
  724. return err;
  725. }
  726. static int disk_spi_sdhc_access_write(struct disk_info *disk,
  727. const uint8_t *buf, uint32_t sector, uint32_t count)
  728. {
  729. const struct device *dev = disk->dev;
  730. struct sdhc_spi_data *data = dev->data;
  731. int err;
  732. /* for more than 2 blocks the multiple block is preferred */
  733. if (count > 2) {
  734. LOG_DBG("multi block sector=%u count=%u", sector, count);
  735. err = sdhc_spi_write_multi(data, buf, sector, count);
  736. if (err != 0 && sdhc_is_retryable(err)) {
  737. sdhc_spi_recover(data);
  738. err = sdhc_spi_write_multi(data, buf, sector, count);
  739. }
  740. } else {
  741. LOG_DBG("sector=%u count=%u", sector, count);
  742. err = sdhc_spi_write(data, buf, sector, count);
  743. if (err != 0 && sdhc_is_retryable(err)) {
  744. sdhc_spi_recover(data);
  745. err = sdhc_spi_write(data, buf, sector, count);
  746. }
  747. }
  748. return err;
  749. }
  750. static int disk_spi_sdhc_access_ioctl(struct disk_info *disk,
  751. uint8_t cmd, void *buf)
  752. {
  753. const struct device *dev = disk->dev;
  754. struct sdhc_spi_data *data = dev->data;
  755. int err;
  756. err = sdhc_map_disk_status(data->status);
  757. if (err != 0) {
  758. return err;
  759. }
  760. switch (cmd) {
  761. case DISK_IOCTL_CTRL_SYNC:
  762. break;
  763. case DISK_IOCTL_GET_SECTOR_COUNT:
  764. *(uint32_t *)buf = data->sector_count;
  765. break;
  766. case DISK_IOCTL_GET_SECTOR_SIZE:
  767. *(uint32_t *)buf = SDMMC_DEFAULT_BLOCK_SIZE;
  768. break;
  769. case DISK_IOCTL_GET_ERASE_BLOCK_SZ:
  770. *(uint32_t *)buf = SDMMC_DEFAULT_BLOCK_SIZE;
  771. break;
  772. default:
  773. return -EINVAL;
  774. }
  775. return 0;
  776. }
  777. static int disk_spi_sdhc_access_init(struct disk_info *disk)
  778. {
  779. const struct device *dev = disk->dev;
  780. struct sdhc_spi_data *data = dev->data;
  781. int err;
  782. err = sdhc_spi_detect(dev);
  783. spi_release(data->spi, data->spi_cfg);
  784. return err;
  785. }
  786. static const struct disk_operations spi_sdhc_disk_ops = {
  787. .init = disk_spi_sdhc_access_init,
  788. .status = disk_spi_sdhc_access_status,
  789. .read = disk_spi_sdhc_access_read,
  790. .write = disk_spi_sdhc_access_write,
  791. .ioctl = disk_spi_sdhc_access_ioctl,
  792. };
  793. static struct disk_info spi_sdhc_disk = {
  794. .name = CONFIG_SDMMC_VOLUME_NAME,
  795. .ops = &spi_sdhc_disk_ops,
  796. };
  797. static int disk_spi_sdhc_init(const struct device *dev)
  798. {
  799. sdhc_spi_set_status(dev, DISK_STATUS_UNINIT);
  800. spi_sdhc_disk.dev = dev;
  801. return disk_access_register(&spi_sdhc_disk);
  802. }
  803. static struct sdhc_spi_data sdhc_spi_data_0;
  804. static const struct sdhc_spi_config sdhc_spi_cfg_0 = {
  805. .init_cfg = {
  806. .frequency = SDHC_SPI_INIT_SPEED,
  807. .operation = SPI_WORD_SET(8) | SPI_HOLD_ON_CS,
  808. .slave = DT_REG_ADDR(SPI_SDHC_NODE),
  809. #if DT_SPI_DEV_HAS_CS_GPIOS(SPI_SDHC_NODE)
  810. .cs = &sdhc_spi_cfg_0.cs,
  811. #endif
  812. },
  813. .oper_cfg = {
  814. .frequency = MIN(SDHC_SPI_MAX_OPER_SPEED,
  815. DT_INST_PROP(0, spi_max_frequency)),
  816. .operation = SPI_WORD_SET(8) | SPI_HOLD_ON_CS,
  817. .slave = DT_REG_ADDR(SPI_SDHC_NODE),
  818. #if DT_SPI_DEV_HAS_CS_GPIOS(SPI_SDHC_NODE)
  819. .cs = &sdhc_spi_cfg_0.cs,
  820. #endif
  821. },
  822. #if DT_SPI_DEV_HAS_CS_GPIOS(SPI_SDHC_NODE)
  823. .cs = {
  824. .gpio_dev = DEVICE_DT_GET(DT_SPI_DEV_CS_GPIOS_CTLR(SPI_SDHC_NODE)),
  825. .gpio_pin = DT_SPI_DEV_CS_GPIOS_PIN(SPI_SDHC_NODE),
  826. .gpio_dt_flags = DT_SPI_DEV_CS_GPIOS_FLAGS(SPI_SDHC_NODE),
  827. },
  828. #endif
  829. };
  830. DEVICE_DT_INST_DEFINE(0, sdhc_spi_init, NULL,
  831. &sdhc_spi_data_0, &sdhc_spi_cfg_0,
  832. POST_KERNEL, CONFIG_SDMMC_INIT_PRIORITY, NULL);
  833. #endif