stm32_adafruit_sd.c 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110
  1. /**
  2. ******************************************************************************
  3. * @file stm32_adafruit_sd.c
  4. * @author MCD Application Team
  5. * @version V3.0.0
  6. * @date 23-December-2016
  7. * @brief This file provides a set of functions needed to manage the SD card
  8. * mounted on the Adafruit 1.8" TFT LCD shield (reference ID 802),
  9. * that is used with the STM32 Nucleo board through SPI interface.
  10. * It implements a high level communication layer for read and write
  11. * from/to this memory. The needed STM32XXxx hardware resources (SPI and
  12. * GPIO) are defined in stm32XXxx_nucleo.h file, and the initialization is
  13. * performed in SD_IO_Init() function declared in stm32XXxx_nucleo.c
  14. * file.
  15. * You can easily tailor this driver to any other development board,
  16. * by just adapting the defines for hardware resources and
  17. * SD_IO_Init() function.
  18. *
  19. * +-------------------------------------------------------+
  20. * | Pin assignment |
  21. * +-------------------------+---------------+-------------+
  22. * | STM32XXxx SPI Pins | SD | Pin |
  23. * +-------------------------+---------------+-------------+
  24. * | SD_SPI_CS_PIN | ChipSelect | 1 |
  25. * | SD_SPI_MOSI_PIN / MOSI | DataIn | 2 |
  26. * | | GND | 3 (0 V) |
  27. * | | VDD | 4 (3.3 V)|
  28. * | SD_SPI_SCK_PIN / SCLK | Clock | 5 |
  29. * | | GND | 6 (0 V) |
  30. * | SD_SPI_MISO_PIN / MISO | DataOut | 7 |
  31. * +-------------------------+---------------+-------------+
  32. ******************************************************************************
  33. * @attention
  34. *
  35. * <h2><center>&copy; COPYRIGHT(c) 2016 STMicroelectronics</center></h2>
  36. *
  37. * Redistribution and use in source and binary forms, with or without modification,
  38. * are permitted provided that the following conditions are met:
  39. * 1. Redistributions of source code must retain the above copyright notice,
  40. * this list of conditions and the following disclaimer.
  41. * 2. Redistributions in binary form must reproduce the above copyright notice,
  42. * this list of conditions and the following disclaimer in the documentation
  43. * and/or other materials provided with the distribution.
  44. * 3. Neither the name of STMicroelectronics nor the names of its contributors
  45. * may be used to endorse or promote products derived from this software
  46. * without specific prior written permission.
  47. *
  48. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  49. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  50. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  51. * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
  52. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  53. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  54. * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  55. * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  56. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  57. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  58. *
  59. ******************************************************************************
  60. */
  61. /* File Info : -----------------------------------------------------------------
  62. User NOTES
  63. 1. How to use this driver:
  64. --------------------------
  65. - This driver does not need a specific component driver for the micro SD device
  66. to be included with.
  67. 2. Driver description:
  68. ---------------------
  69. + Initialization steps:
  70. o Initialize the micro SD card using the BSP_SD_Init() function.
  71. o Checking the SD card presence is not managed because SD detection pin is
  72. not physically mapped on the Adafruit shield.
  73. o The function BSP_SD_GetCardInfo() is used to get the micro SD card information
  74. which is stored in the structure "SD_CardInfo".
  75. + Micro SD card operations
  76. o The micro SD card can be accessed with read/write block(s) operations once
  77. it is ready for access. The access can be performed in polling
  78. mode by calling the functions BSP_SD_ReadBlocks()/BSP_SD_WriteBlocks()
  79. o The SD erase block(s) is performed using the function BSP_SD_Erase() with
  80. specifying the number of blocks to erase.
  81. o The SD runtime status is returned when calling the function BSP_SD_GetStatus().
  82. ------------------------------------------------------------------------------*/
  83. /* Includes ------------------------------------------------------------------*/
  84. #include "stm32_adafruit_sd.h"
  85. #include "stdlib.h"
  86. #include "string.h"
  87. #include "stdio.h"
  88. #include <furi_hal.h>
  89. #include "sector_cache.h"
  90. /** @addtogroup BSP
  91. * @{
  92. */
  93. /** @addtogroup STM32_ADAFRUIT
  94. * @{
  95. */
  96. /** @defgroup STM32_ADAFRUIT_SD
  97. * @{
  98. */
  99. /* Private typedef -----------------------------------------------------------*/
  100. /** @defgroup STM32_ADAFRUIT_SD_Private_Types_Definitions
  101. * @{
  102. */
  103. typedef struct {
  104. uint8_t r1;
  105. uint8_t r2;
  106. uint8_t r3;
  107. uint8_t r4;
  108. uint8_t r5;
  109. } SD_CmdAnswer_typedef;
  110. /**
  111. * @}
  112. */
  113. /* Private define ------------------------------------------------------------*/
  114. /** @defgroup STM32_ADAFRUIT_SD_Private_Defines
  115. * @{
  116. */
  117. #define SD_DUMMY_BYTE 0xFF
  118. #define SD_MAX_FRAME_LENGTH 17 /* Lenght = 16 + 1 */
  119. #define SD_CMD_LENGTH 6
  120. #define SD_MAX_TRY 100 /* Number of try */
  121. #define SD_CSD_STRUCT_V1 0x2 /* CSD struct version V1 */
  122. #define SD_CSD_STRUCT_V2 0x1 /* CSD struct version V2 */
  123. /**
  124. * @brief SD ansewer format
  125. */
  126. typedef enum {
  127. SD_ANSWER_R1_EXPECTED,
  128. SD_ANSWER_R1B_EXPECTED,
  129. SD_ANSWER_R2_EXPECTED,
  130. SD_ANSWER_R3_EXPECTED,
  131. SD_ANSWER_R4R5_EXPECTED,
  132. SD_ANSWER_R7_EXPECTED,
  133. } SD_Answer_type;
  134. /**
  135. * @brief Start Data tokens:
  136. * Tokens (necessary because at nop/idle (and CS active) only 0xff is
  137. * on the data/command line)
  138. */
  139. #define SD_TOKEN_START_DATA_SINGLE_BLOCK_READ \
  140. 0xFE /* Data token start byte, Start Single Block Read */
  141. #define SD_TOKEN_START_DATA_MULTIPLE_BLOCK_READ \
  142. 0xFE /* Data token start byte, Start Multiple Block Read */
  143. #define SD_TOKEN_START_DATA_SINGLE_BLOCK_WRITE \
  144. 0xFE /* Data token start byte, Start Single Block Write */
  145. #define SD_TOKEN_START_DATA_MULTIPLE_BLOCK_WRITE \
  146. 0xFD /* Data token start byte, Start Multiple Block Write */
  147. #define SD_TOKEN_STOP_DATA_MULTIPLE_BLOCK_WRITE \
  148. 0xFD /* Data toke stop byte, Stop Multiple Block Write */
  149. /**
  150. * @brief Commands: CMDxx = CMD-number | 0x40
  151. */
  152. #define SD_CMD_GO_IDLE_STATE 0 /* CMD0 = 0x40 */
  153. #define SD_CMD_SEND_OP_COND 1 /* CMD1 = 0x41 */
  154. #define SD_CMD_SEND_IF_COND 8 /* CMD8 = 0x48 */
  155. #define SD_CMD_SEND_CSD 9 /* CMD9 = 0x49 */
  156. #define SD_CMD_SEND_CID 10 /* CMD10 = 0x4A */
  157. #define SD_CMD_STOP_TRANSMISSION 12 /* CMD12 = 0x4C */
  158. #define SD_CMD_SEND_STATUS 13 /* CMD13 = 0x4D */
  159. #define SD_CMD_SET_BLOCKLEN 16 /* CMD16 = 0x50 */
  160. #define SD_CMD_READ_SINGLE_BLOCK 17 /* CMD17 = 0x51 */
  161. #define SD_CMD_READ_MULT_BLOCK 18 /* CMD18 = 0x52 */
  162. #define SD_CMD_SET_BLOCK_COUNT 23 /* CMD23 = 0x57 */
  163. #define SD_CMD_WRITE_SINGLE_BLOCK 24 /* CMD24 = 0x58 */
  164. #define SD_CMD_WRITE_MULT_BLOCK 25 /* CMD25 = 0x59 */
  165. #define SD_CMD_PROG_CSD 27 /* CMD27 = 0x5B */
  166. #define SD_CMD_SET_WRITE_PROT 28 /* CMD28 = 0x5C */
  167. #define SD_CMD_CLR_WRITE_PROT 29 /* CMD29 = 0x5D */
  168. #define SD_CMD_SEND_WRITE_PROT 30 /* CMD30 = 0x5E */
  169. #define SD_CMD_SD_ERASE_GRP_START 32 /* CMD32 = 0x60 */
  170. #define SD_CMD_SD_ERASE_GRP_END 33 /* CMD33 = 0x61 */
  171. #define SD_CMD_UNTAG_SECTOR 34 /* CMD34 = 0x62 */
  172. #define SD_CMD_ERASE_GRP_START 35 /* CMD35 = 0x63 */
  173. #define SD_CMD_ERASE_GRP_END 36 /* CMD36 = 0x64 */
  174. #define SD_CMD_UNTAG_ERASE_GROUP 37 /* CMD37 = 0x65 */
  175. #define SD_CMD_ERASE 38 /* CMD38 = 0x66 */
  176. #define SD_CMD_SD_APP_OP_COND 41 /* CMD41 = 0x69 */
  177. #define SD_CMD_APP_CMD 55 /* CMD55 = 0x77 */
  178. #define SD_CMD_READ_OCR 58 /* CMD55 = 0x79 */
  179. /**
  180. * @brief SD reponses and error flags
  181. */
  182. typedef enum {
  183. /* R1 answer value */
  184. SD_R1_NO_ERROR = (0x00),
  185. SD_R1_IN_IDLE_STATE = (0x01),
  186. SD_R1_ERASE_RESET = (0x02),
  187. SD_R1_ILLEGAL_COMMAND = (0x04),
  188. SD_R1_COM_CRC_ERROR = (0x08),
  189. SD_R1_ERASE_SEQUENCE_ERROR = (0x10),
  190. SD_R1_ADDRESS_ERROR = (0x20),
  191. SD_R1_PARAMETER_ERROR = (0x40),
  192. /* R2 answer value */
  193. SD_R2_NO_ERROR = 0x00,
  194. SD_R2_CARD_LOCKED = 0x01,
  195. SD_R2_LOCKUNLOCK_ERROR = 0x02,
  196. SD_R2_ERROR = 0x04,
  197. SD_R2_CC_ERROR = 0x08,
  198. SD_R2_CARD_ECC_FAILED = 0x10,
  199. SD_R2_WP_VIOLATION = 0x20,
  200. SD_R2_ERASE_PARAM = 0x40,
  201. SD_R2_OUTOFRANGE = 0x80,
  202. /**
  203. * @brief Data response error
  204. */
  205. SD_DATA_OK = (0x05),
  206. SD_DATA_CRC_ERROR = (0x0B),
  207. SD_DATA_WRITE_ERROR = (0x0D),
  208. SD_DATA_OTHER_ERROR = (0xFF)
  209. } SD_Error;
  210. /**
  211. * @}
  212. */
  213. /* Private macro -------------------------------------------------------------*/
  214. /** @defgroup STM32_ADAFRUIT_SD_Private_Macros
  215. * @{
  216. */
  217. /**
  218. * @}
  219. */
  220. /* Private variables ---------------------------------------------------------*/
  221. /** @defgroup STM32_ADAFRUIT_SD_Private_Variables
  222. * @{
  223. */
  224. __IO uint8_t SdStatus = SD_NOT_PRESENT;
  225. /* flag_SDHC :
  226. 0 : Standard capacity
  227. 1 : High capacity
  228. */
  229. uint16_t flag_SDHC = 0;
  230. /**
  231. * @}
  232. */
  233. /* Private function prototypes -----------------------------------------------*/
  234. static uint8_t SD_GetCIDRegister(SD_CID* Cid);
  235. static uint8_t SD_GetCSDRegister(SD_CSD* Csd);
  236. static uint8_t SD_GetDataResponse(void);
  237. static uint8_t SD_GoIdleState(void);
  238. static SD_CmdAnswer_typedef SD_SendCmd(uint8_t Cmd, uint32_t Arg, uint8_t Crc, uint8_t Answer);
  239. static uint8_t SD_WaitData(uint8_t data);
  240. static uint8_t SD_ReadData(void);
  241. /** @defgroup STM32_ADAFRUIT_SD_Private_Function_Prototypes
  242. * @{
  243. */
  244. /**
  245. * @}
  246. */
  247. /* Private functions ---------------------------------------------------------*/
  248. void SD_SPI_Bus_To_Down_State() {
  249. furi_hal_gpio_init_ex(
  250. furi_hal_sd_spi_handle->miso,
  251. GpioModeOutputPushPull,
  252. GpioPullNo,
  253. GpioSpeedVeryHigh,
  254. GpioAltFnUnused);
  255. furi_hal_gpio_init_ex(
  256. furi_hal_sd_spi_handle->mosi,
  257. GpioModeOutputPushPull,
  258. GpioPullNo,
  259. GpioSpeedVeryHigh,
  260. GpioAltFnUnused);
  261. furi_hal_gpio_init_ex(
  262. furi_hal_sd_spi_handle->sck,
  263. GpioModeOutputPushPull,
  264. GpioPullNo,
  265. GpioSpeedVeryHigh,
  266. GpioAltFnUnused);
  267. furi_hal_gpio_write(furi_hal_sd_spi_handle->cs, false);
  268. furi_hal_gpio_write(furi_hal_sd_spi_handle->miso, false);
  269. furi_hal_gpio_write(furi_hal_sd_spi_handle->mosi, false);
  270. furi_hal_gpio_write(furi_hal_sd_spi_handle->sck, false);
  271. }
  272. void SD_SPI_Bus_To_Normal_State() {
  273. furi_hal_gpio_write(furi_hal_sd_spi_handle->cs, true);
  274. furi_hal_gpio_init_ex(
  275. furi_hal_sd_spi_handle->miso,
  276. GpioModeAltFunctionPushPull,
  277. GpioPullUp,
  278. GpioSpeedVeryHigh,
  279. GpioAltFn5SPI2);
  280. furi_hal_gpio_init_ex(
  281. furi_hal_sd_spi_handle->mosi,
  282. GpioModeAltFunctionPushPull,
  283. GpioPullUp,
  284. GpioSpeedVeryHigh,
  285. GpioAltFn5SPI2);
  286. furi_hal_gpio_init_ex(
  287. furi_hal_sd_spi_handle->sck,
  288. GpioModeAltFunctionPushPull,
  289. GpioPullUp,
  290. GpioSpeedVeryHigh,
  291. GpioAltFn5SPI2);
  292. }
  293. /** @defgroup STM32_ADAFRUIT_SD_Private_Functions
  294. * @{
  295. */
  296. uint8_t BSP_SD_MaxMountRetryCount() {
  297. return 10;
  298. }
  299. /**
  300. * @brief Initializes the SD/SD communication.
  301. * @param None
  302. * @retval The SD Response:
  303. * - MSD_ERROR: Sequence failed
  304. * - MSD_OK: Sequence succeed
  305. */
  306. uint8_t BSP_SD_Init(bool reset_card) {
  307. /* Slow speed init */
  308. furi_hal_spi_acquire(&furi_hal_spi_bus_handle_sd_slow);
  309. furi_hal_sd_spi_handle = &furi_hal_spi_bus_handle_sd_slow;
  310. /* We must reset card in spi_lock context */
  311. if(reset_card) {
  312. /* disable power and set low on all bus pins */
  313. furi_hal_power_disable_external_3_3v();
  314. SD_SPI_Bus_To_Down_State();
  315. hal_sd_detect_set_low();
  316. furi_delay_ms(250);
  317. /* reinit bus and enable power */
  318. SD_SPI_Bus_To_Normal_State();
  319. hal_sd_detect_init();
  320. furi_hal_power_enable_external_3_3v();
  321. furi_delay_ms(100);
  322. }
  323. /* Configure IO functionalities for SD pin */
  324. SD_IO_Init();
  325. /* SD detection pin is not physically mapped on the Adafruit shield */
  326. SdStatus = SD_PRESENT;
  327. uint8_t res = BSP_SD_ERROR;
  328. for(uint8_t i = 0; i < 128; i++) {
  329. res = SD_GoIdleState();
  330. if(res == BSP_SD_OK) break;
  331. }
  332. furi_hal_sd_spi_handle = NULL;
  333. furi_hal_spi_release(&furi_hal_spi_bus_handle_sd_slow);
  334. sector_cache_init();
  335. /* SD initialized and set to SPI mode properly */
  336. return res;
  337. }
  338. /**
  339. * @brief Returns information about specific card.
  340. * @param pCardInfo: Pointer to a SD_CardInfo structure that contains all SD
  341. * card information.
  342. * @retval The SD Response:
  343. * - MSD_ERROR: Sequence failed
  344. * - MSD_OK: Sequence succeed
  345. */
  346. uint8_t BSP_SD_GetCardInfo(SD_CardInfo* pCardInfo) {
  347. uint8_t status;
  348. status = SD_GetCSDRegister(&(pCardInfo->Csd));
  349. status |= SD_GetCIDRegister(&(pCardInfo->Cid));
  350. if(flag_SDHC == 1) {
  351. pCardInfo->LogBlockSize = 512;
  352. pCardInfo->CardBlockSize = 512;
  353. pCardInfo->CardCapacity = ((uint64_t)pCardInfo->Csd.version.v2.DeviceSize + 1UL) * 1024UL *
  354. (uint64_t)pCardInfo->LogBlockSize;
  355. pCardInfo->LogBlockNbr = (pCardInfo->CardCapacity) / (pCardInfo->LogBlockSize);
  356. } else {
  357. pCardInfo->CardCapacity = (pCardInfo->Csd.version.v1.DeviceSize + 1);
  358. pCardInfo->CardCapacity *= (1 << (pCardInfo->Csd.version.v1.DeviceSizeMul + 2));
  359. pCardInfo->LogBlockSize = 512;
  360. pCardInfo->CardBlockSize = 1 << (pCardInfo->Csd.RdBlockLen);
  361. pCardInfo->CardCapacity *= pCardInfo->CardBlockSize;
  362. pCardInfo->LogBlockNbr = (pCardInfo->CardCapacity) / (pCardInfo->LogBlockSize);
  363. }
  364. return status;
  365. }
  366. /**
  367. * @brief Reads block(s) from a specified address in the SD card, in polling mode.
  368. * @param pData: Pointer to the buffer that will contain the data to transmit
  369. * @param ReadAddr: Address from where data is to be read. The address is counted
  370. * in blocks of 512bytes
  371. * @param NumOfBlocks: Number of SD blocks to read
  372. * @param Timeout: This parameter is used for compatibility with BSP implementation
  373. * @retval SD status
  374. */
  375. uint8_t
  376. BSP_SD_ReadBlocks(uint32_t* pData, uint32_t ReadAddr, uint32_t NumOfBlocks, uint32_t Timeout) {
  377. UNUSED(Timeout); // FIXME!
  378. uint32_t offset = 0;
  379. uint32_t addr;
  380. uint8_t retr = BSP_SD_ERROR;
  381. SD_CmdAnswer_typedef response;
  382. uint16_t BlockSize = 512;
  383. uint8_t* cached_data;
  384. bool single_sector_read = (NumOfBlocks == 1);
  385. if(single_sector_read && (cached_data = sector_cache_get(ReadAddr))) {
  386. memcpy(pData, cached_data, BlockSize);
  387. return BSP_SD_OK;
  388. }
  389. /* Send CMD16 (SD_CMD_SET_BLOCKLEN) to set the size of the block and
  390. Check if the SD acknowledged the set block length command: R1 response (0x00: no errors) */
  391. response = SD_SendCmd(SD_CMD_SET_BLOCKLEN, BlockSize, 0xFF, SD_ANSWER_R1_EXPECTED);
  392. SD_IO_CSState(1);
  393. SD_IO_WriteByte(SD_DUMMY_BYTE);
  394. if(response.r1 != SD_R1_NO_ERROR) {
  395. goto error;
  396. }
  397. /* Initialize the address */
  398. addr = (ReadAddr * ((flag_SDHC == 1) ? 1 : BlockSize));
  399. /* Data transfer */
  400. while(NumOfBlocks--) {
  401. /* Send CMD17 (SD_CMD_READ_SINGLE_BLOCK) to read one block */
  402. /* Check if the SD acknowledged the read block command: R1 response (0x00: no errors) */
  403. response = SD_SendCmd(SD_CMD_READ_SINGLE_BLOCK, addr, 0xFF, SD_ANSWER_R1_EXPECTED);
  404. if(response.r1 != SD_R1_NO_ERROR) {
  405. goto error;
  406. }
  407. /* Now look for the data token to signify the start of the data */
  408. if(SD_WaitData(SD_TOKEN_START_DATA_SINGLE_BLOCK_READ) == BSP_SD_OK) {
  409. /* Read the SD block data : read NumByteToRead data */
  410. SD_IO_WriteReadData(NULL, (uint8_t*)pData + offset, BlockSize);
  411. /* Set next read address*/
  412. offset += BlockSize;
  413. addr = ((flag_SDHC == 1) ? (addr + 1) : (addr + BlockSize));
  414. /* get CRC bytes (not really needed by us, but required by SD) */
  415. SD_IO_WriteByte(SD_DUMMY_BYTE);
  416. SD_IO_WriteByte(SD_DUMMY_BYTE);
  417. } else {
  418. goto error;
  419. }
  420. /* End the command data read cycle */
  421. SD_IO_CSState(1);
  422. SD_IO_WriteByte(SD_DUMMY_BYTE);
  423. }
  424. if(single_sector_read) {
  425. sector_cache_put(ReadAddr, (uint8_t*)pData);
  426. }
  427. retr = BSP_SD_OK;
  428. error:
  429. /* Send dummy byte: 8 Clock pulses of delay */
  430. SD_IO_CSState(1);
  431. SD_IO_WriteByte(SD_DUMMY_BYTE);
  432. /* Return the reponse */
  433. return retr;
  434. }
  435. /**
  436. * @brief Writes block(s) to a specified address in the SD card, in polling mode.
  437. * @param pData: Pointer to the buffer that will contain the data to transmit
  438. * @param WriteAddr: Address from where data is to be written. The address is counted
  439. * in blocks of 512bytes
  440. * @param NumOfBlocks: Number of SD blocks to write
  441. * @param Timeout: This parameter is used for compatibility with BSP implementation
  442. * @retval SD status
  443. */
  444. uint8_t BSP_SD_WriteBlocks(
  445. uint32_t* pData,
  446. uint32_t WriteAddr,
  447. uint32_t NumOfBlocks,
  448. uint32_t Timeout) {
  449. UNUSED(Timeout); // FIXME!
  450. uint32_t offset = 0;
  451. uint32_t addr;
  452. uint8_t retr = BSP_SD_ERROR;
  453. SD_CmdAnswer_typedef response;
  454. uint16_t BlockSize = 512;
  455. sector_cache_invalidate_range(WriteAddr, WriteAddr + NumOfBlocks);
  456. /* Send CMD16 (SD_CMD_SET_BLOCKLEN) to set the size of the block and
  457. Check if the SD acknowledged the set block length command: R1 response (0x00: no errors) */
  458. response = SD_SendCmd(SD_CMD_SET_BLOCKLEN, BlockSize, 0xFF, SD_ANSWER_R1_EXPECTED);
  459. SD_IO_CSState(1);
  460. SD_IO_WriteByte(SD_DUMMY_BYTE);
  461. if(response.r1 != SD_R1_NO_ERROR) {
  462. goto error;
  463. }
  464. /* Initialize the address */
  465. addr = (WriteAddr * ((flag_SDHC == 1) ? 1 : BlockSize));
  466. /* Data transfer */
  467. while(NumOfBlocks--) {
  468. /* Send CMD24 (SD_CMD_WRITE_SINGLE_BLOCK) to write blocks and
  469. Check if the SD acknowledged the write block command: R1 response (0x00: no errors) */
  470. response = SD_SendCmd(SD_CMD_WRITE_SINGLE_BLOCK, addr, 0xFF, SD_ANSWER_R1_EXPECTED);
  471. if(response.r1 != SD_R1_NO_ERROR) {
  472. goto error;
  473. }
  474. /* Send dummy byte for NWR timing : one byte between CMDWRITE and TOKEN */
  475. SD_IO_WriteByte(SD_DUMMY_BYTE);
  476. SD_IO_WriteByte(SD_DUMMY_BYTE);
  477. /* Send the data token to signify the start of the data */
  478. SD_IO_WriteByte(SD_TOKEN_START_DATA_SINGLE_BLOCK_WRITE);
  479. /* Write the block data to SD */
  480. SD_IO_WriteReadData((uint8_t*)pData + offset, NULL, BlockSize);
  481. /* Set next write address */
  482. offset += BlockSize;
  483. addr = ((flag_SDHC == 1) ? (addr + 1) : (addr + BlockSize));
  484. /* Put CRC bytes (not really needed by us, but required by SD) */
  485. SD_IO_WriteByte(SD_DUMMY_BYTE);
  486. SD_IO_WriteByte(SD_DUMMY_BYTE);
  487. /* Read data response */
  488. if(SD_GetDataResponse() != SD_DATA_OK) {
  489. /* Set response value to failure */
  490. goto error;
  491. }
  492. SD_IO_CSState(1);
  493. SD_IO_WriteByte(SD_DUMMY_BYTE);
  494. }
  495. retr = BSP_SD_OK;
  496. error:
  497. /* Send dummy byte: 8 Clock pulses of delay */
  498. SD_IO_CSState(1);
  499. SD_IO_WriteByte(SD_DUMMY_BYTE);
  500. /* Return the reponse */
  501. return retr;
  502. }
  503. /**
  504. * @brief Erases the specified memory area of the given SD card.
  505. * @param StartAddr: Start address in Blocks (Size of a block is 512bytes)
  506. * @param EndAddr: End address in Blocks (Size of a block is 512bytes)
  507. * @retval SD status
  508. */
  509. uint8_t BSP_SD_Erase(uint32_t StartAddr, uint32_t EndAddr) {
  510. uint8_t retr = BSP_SD_ERROR;
  511. SD_CmdAnswer_typedef response;
  512. uint16_t BlockSize = 512;
  513. /* Send CMD32 (Erase group start) and check if the SD acknowledged the erase command: R1 response (0x00: no errors) */
  514. response = SD_SendCmd(
  515. SD_CMD_SD_ERASE_GRP_START,
  516. (StartAddr) * (flag_SDHC == 1 ? 1 : BlockSize),
  517. 0xFF,
  518. SD_ANSWER_R1_EXPECTED);
  519. SD_IO_CSState(1);
  520. SD_IO_WriteByte(SD_DUMMY_BYTE);
  521. if(response.r1 == SD_R1_NO_ERROR) {
  522. /* Send CMD33 (Erase group end) and Check if the SD acknowledged the erase command: R1 response (0x00: no errors) */
  523. response = SD_SendCmd(
  524. SD_CMD_SD_ERASE_GRP_END,
  525. (EndAddr * 512) * (flag_SDHC == 1 ? 1 : BlockSize),
  526. 0xFF,
  527. SD_ANSWER_R1_EXPECTED);
  528. SD_IO_CSState(1);
  529. SD_IO_WriteByte(SD_DUMMY_BYTE);
  530. if(response.r1 == SD_R1_NO_ERROR) {
  531. /* Send CMD38 (Erase) and Check if the SD acknowledged the erase command: R1 response (0x00: no errors) */
  532. response = SD_SendCmd(SD_CMD_ERASE, 0, 0xFF, SD_ANSWER_R1B_EXPECTED);
  533. if(response.r1 == SD_R1_NO_ERROR) {
  534. retr = BSP_SD_OK;
  535. }
  536. SD_IO_CSState(1);
  537. SD_IO_WriteByte(SD_DUMMY_BYTE);
  538. }
  539. }
  540. /* Return the reponse */
  541. return retr;
  542. }
  543. /**
  544. * @brief Returns the SD status.
  545. * @param None
  546. * @retval The SD status.
  547. */
  548. uint8_t BSP_SD_GetCardState(void) {
  549. SD_CmdAnswer_typedef retr;
  550. /* Send CMD13 (SD_SEND_STATUS) to get SD status */
  551. retr = SD_SendCmd(SD_CMD_SEND_STATUS, 0, 0xFF, SD_ANSWER_R2_EXPECTED);
  552. SD_IO_CSState(1);
  553. SD_IO_WriteByte(SD_DUMMY_BYTE);
  554. /* Find SD status according to card state */
  555. if((retr.r1 == SD_R1_NO_ERROR) && (retr.r2 == SD_R2_NO_ERROR)) {
  556. return BSP_SD_OK;
  557. }
  558. return BSP_SD_ERROR;
  559. }
  560. /**
  561. * @brief Reads the SD card SCD register.
  562. * Reading the contents of the CSD register in SPI mode is a simple
  563. * read-block transaction.
  564. * @param Csd: pointer on an SCD register structure
  565. * @retval SD status
  566. */
  567. uint8_t SD_GetCSDRegister(SD_CSD* Csd) {
  568. uint16_t counter = 0;
  569. uint8_t CSD_Tab[16];
  570. uint8_t retr = BSP_SD_ERROR;
  571. SD_CmdAnswer_typedef response;
  572. /* Send CMD9 (CSD register) or CMD10(CSD register) and Wait for response in the R1 format (0x00 is no errors) */
  573. response = SD_SendCmd(SD_CMD_SEND_CSD, 0, 0xFF, SD_ANSWER_R1_EXPECTED);
  574. if(response.r1 == SD_R1_NO_ERROR) {
  575. if(SD_WaitData(SD_TOKEN_START_DATA_SINGLE_BLOCK_READ) == BSP_SD_OK) {
  576. for(counter = 0; counter < 16; counter++) {
  577. /* Store CSD register value on CSD_Tab */
  578. CSD_Tab[counter] = SD_IO_WriteByte(SD_DUMMY_BYTE);
  579. }
  580. /* Get CRC bytes (not really needed by us, but required by SD) */
  581. SD_IO_WriteByte(SD_DUMMY_BYTE);
  582. SD_IO_WriteByte(SD_DUMMY_BYTE);
  583. /*************************************************************************
  584. CSD header decoding
  585. *************************************************************************/
  586. /* Byte 0 */
  587. Csd->CSDStruct = (CSD_Tab[0] & 0xC0) >> 6;
  588. Csd->Reserved1 = CSD_Tab[0] & 0x3F;
  589. /* Byte 1 */
  590. Csd->TAAC = CSD_Tab[1];
  591. /* Byte 2 */
  592. Csd->NSAC = CSD_Tab[2];
  593. /* Byte 3 */
  594. Csd->MaxBusClkFrec = CSD_Tab[3];
  595. /* Byte 4/5 */
  596. Csd->CardComdClasses = (CSD_Tab[4] << 4) | ((CSD_Tab[5] & 0xF0) >> 4);
  597. Csd->RdBlockLen = CSD_Tab[5] & 0x0F;
  598. /* Byte 6 */
  599. Csd->PartBlockRead = (CSD_Tab[6] & 0x80) >> 7;
  600. Csd->WrBlockMisalign = (CSD_Tab[6] & 0x40) >> 6;
  601. Csd->RdBlockMisalign = (CSD_Tab[6] & 0x20) >> 5;
  602. Csd->DSRImpl = (CSD_Tab[6] & 0x10) >> 4;
  603. /*************************************************************************
  604. CSD v1/v2 decoding
  605. *************************************************************************/
  606. if(flag_SDHC == 0) {
  607. Csd->version.v1.Reserved1 = ((CSD_Tab[6] & 0x0C) >> 2);
  608. Csd->version.v1.DeviceSize = ((CSD_Tab[6] & 0x03) << 10) | (CSD_Tab[7] << 2) |
  609. ((CSD_Tab[8] & 0xC0) >> 6);
  610. Csd->version.v1.MaxRdCurrentVDDMin = (CSD_Tab[8] & 0x38) >> 3;
  611. Csd->version.v1.MaxRdCurrentVDDMax = (CSD_Tab[8] & 0x07);
  612. Csd->version.v1.MaxWrCurrentVDDMin = (CSD_Tab[9] & 0xE0) >> 5;
  613. Csd->version.v1.MaxWrCurrentVDDMax = (CSD_Tab[9] & 0x1C) >> 2;
  614. Csd->version.v1.DeviceSizeMul = ((CSD_Tab[9] & 0x03) << 1) |
  615. ((CSD_Tab[10] & 0x80) >> 7);
  616. } else {
  617. Csd->version.v2.Reserved1 = ((CSD_Tab[6] & 0x0F) << 2) |
  618. ((CSD_Tab[7] & 0xC0) >> 6);
  619. Csd->version.v2.DeviceSize = ((CSD_Tab[7] & 0x3F) << 16) | (CSD_Tab[8] << 8) |
  620. CSD_Tab[9];
  621. Csd->version.v2.Reserved2 = ((CSD_Tab[10] & 0x80) >> 8);
  622. }
  623. Csd->EraseSingleBlockEnable = (CSD_Tab[10] & 0x40) >> 6;
  624. Csd->EraseSectorSize = ((CSD_Tab[10] & 0x3F) << 1) | ((CSD_Tab[11] & 0x80) >> 7);
  625. Csd->WrProtectGrSize = (CSD_Tab[11] & 0x7F);
  626. Csd->WrProtectGrEnable = (CSD_Tab[12] & 0x80) >> 7;
  627. Csd->Reserved2 = (CSD_Tab[12] & 0x60) >> 5;
  628. Csd->WrSpeedFact = (CSD_Tab[12] & 0x1C) >> 2;
  629. Csd->MaxWrBlockLen = ((CSD_Tab[12] & 0x03) << 2) | ((CSD_Tab[13] & 0xC0) >> 6);
  630. Csd->WriteBlockPartial = (CSD_Tab[13] & 0x20) >> 5;
  631. Csd->Reserved3 = (CSD_Tab[13] & 0x1F);
  632. Csd->FileFormatGrouop = (CSD_Tab[14] & 0x80) >> 7;
  633. Csd->CopyFlag = (CSD_Tab[14] & 0x40) >> 6;
  634. Csd->PermWrProtect = (CSD_Tab[14] & 0x20) >> 5;
  635. Csd->TempWrProtect = (CSD_Tab[14] & 0x10) >> 4;
  636. Csd->FileFormat = (CSD_Tab[14] & 0x0C) >> 2;
  637. Csd->Reserved4 = (CSD_Tab[14] & 0x03);
  638. Csd->crc = (CSD_Tab[15] & 0xFE) >> 1;
  639. Csd->Reserved5 = (CSD_Tab[15] & 0x01);
  640. retr = BSP_SD_OK;
  641. }
  642. }
  643. /* Send dummy byte: 8 Clock pulses of delay */
  644. SD_IO_CSState(1);
  645. SD_IO_WriteByte(SD_DUMMY_BYTE);
  646. /* Return the reponse */
  647. return retr;
  648. }
  649. /**
  650. * @brief Reads the SD card CID register.
  651. * Reading the contents of the CID register in SPI mode is a simple
  652. * read-block transaction.
  653. * @param Cid: pointer on an CID register structure
  654. * @retval SD status
  655. */
  656. uint8_t SD_GetCIDRegister(SD_CID* Cid) {
  657. uint32_t counter = 0;
  658. uint8_t retr = BSP_SD_ERROR;
  659. uint8_t CID_Tab[16];
  660. SD_CmdAnswer_typedef response;
  661. /* Send CMD10 (CID register) and Wait for response in the R1 format (0x00 is no errors) */
  662. response = SD_SendCmd(SD_CMD_SEND_CID, 0, 0xFF, SD_ANSWER_R1_EXPECTED);
  663. if(response.r1 == SD_R1_NO_ERROR) {
  664. if(SD_WaitData(SD_TOKEN_START_DATA_SINGLE_BLOCK_READ) == BSP_SD_OK) {
  665. /* Store CID register value on CID_Tab */
  666. for(counter = 0; counter < 16; counter++) {
  667. CID_Tab[counter] = SD_IO_WriteByte(SD_DUMMY_BYTE);
  668. }
  669. /* Get CRC bytes (not really needed by us, but required by SD) */
  670. SD_IO_WriteByte(SD_DUMMY_BYTE);
  671. SD_IO_WriteByte(SD_DUMMY_BYTE);
  672. /* Byte 0 */
  673. Cid->ManufacturerID = CID_Tab[0];
  674. /* Byte 1 */
  675. Cid->OEM_AppliID = CID_Tab[1] << 8;
  676. /* Byte 2 */
  677. Cid->OEM_AppliID |= CID_Tab[2];
  678. /* Byte 3 */
  679. Cid->ProdName1 = CID_Tab[3] << 24;
  680. /* Byte 4 */
  681. Cid->ProdName1 |= CID_Tab[4] << 16;
  682. /* Byte 5 */
  683. Cid->ProdName1 |= CID_Tab[5] << 8;
  684. /* Byte 6 */
  685. Cid->ProdName1 |= CID_Tab[6];
  686. /* Byte 7 */
  687. Cid->ProdName2 = CID_Tab[7];
  688. /* Byte 8 */
  689. Cid->ProdRev = CID_Tab[8];
  690. /* Byte 9 */
  691. Cid->ProdSN = CID_Tab[9] << 24;
  692. /* Byte 10 */
  693. Cid->ProdSN |= CID_Tab[10] << 16;
  694. /* Byte 11 */
  695. Cid->ProdSN |= CID_Tab[11] << 8;
  696. /* Byte 12 */
  697. Cid->ProdSN |= CID_Tab[12];
  698. /* Byte 13 */
  699. Cid->Reserved1 |= (CID_Tab[13] & 0xF0) >> 4;
  700. Cid->ManufactDate = (CID_Tab[13] & 0x0F) << 8;
  701. /* Byte 14 */
  702. Cid->ManufactDate |= CID_Tab[14];
  703. /* Byte 15 */
  704. Cid->CID_CRC = (CID_Tab[15] & 0xFE) >> 1;
  705. Cid->Reserved2 = 1;
  706. retr = BSP_SD_OK;
  707. }
  708. }
  709. /* Send dummy byte: 8 Clock pulses of delay */
  710. SD_IO_CSState(1);
  711. SD_IO_WriteByte(SD_DUMMY_BYTE);
  712. /* Return the reponse */
  713. return retr;
  714. }
  715. /**
  716. * @brief Sends 5 bytes command to the SD card and get response
  717. * @param Cmd: The user expected command to send to SD card.
  718. * @param Arg: The command argument.
  719. * @param Crc: The CRC.
  720. * @param Answer: SD_ANSWER_NOT_EXPECTED or SD_ANSWER_EXPECTED
  721. * @retval SD status
  722. */
  723. SD_CmdAnswer_typedef SD_SendCmd(uint8_t Cmd, uint32_t Arg, uint8_t Crc, uint8_t Answer) {
  724. uint8_t frame[SD_CMD_LENGTH], frameout[SD_CMD_LENGTH];
  725. SD_CmdAnswer_typedef retr = {0xFF, 0xFF, 0xFF, 0xFF, 0xFF};
  726. /* R1 Lenght = NCS(0)+ 6 Bytes command + NCR(min1 max8) + 1 Bytes answer + NEC(0) = 15bytes */
  727. /* R1b identical to R1 + Busy information */
  728. /* R2 Lenght = NCS(0)+ 6 Bytes command + NCR(min1 max8) + 2 Bytes answer + NEC(0) = 16bytes */
  729. /* Prepare Frame to send */
  730. frame[0] = (Cmd | 0x40); /* Construct byte 1 */
  731. frame[1] = (uint8_t)(Arg >> 24); /* Construct byte 2 */
  732. frame[2] = (uint8_t)(Arg >> 16); /* Construct byte 3 */
  733. frame[3] = (uint8_t)(Arg >> 8); /* Construct byte 4 */
  734. frame[4] = (uint8_t)(Arg); /* Construct byte 5 */
  735. frame[5] = (Crc | 0x01); /* Construct byte 6 */
  736. /* Send the command */
  737. SD_IO_CSState(0);
  738. SD_IO_WriteReadData(frame, frameout, SD_CMD_LENGTH); /* Send the Cmd bytes */
  739. switch(Answer) {
  740. case SD_ANSWER_R1_EXPECTED:
  741. retr.r1 = SD_ReadData();
  742. break;
  743. case SD_ANSWER_R1B_EXPECTED:
  744. retr.r1 = SD_ReadData();
  745. retr.r2 = SD_IO_WriteByte(SD_DUMMY_BYTE);
  746. /* Set CS High */
  747. SD_IO_CSState(1);
  748. furi_delay_us(1000);
  749. /* Set CS Low */
  750. SD_IO_CSState(0);
  751. /* Wait IO line return 0xFF */
  752. while(SD_IO_WriteByte(SD_DUMMY_BYTE) != 0xFF)
  753. ;
  754. break;
  755. case SD_ANSWER_R2_EXPECTED:
  756. retr.r1 = SD_ReadData();
  757. retr.r2 = SD_IO_WriteByte(SD_DUMMY_BYTE);
  758. break;
  759. case SD_ANSWER_R3_EXPECTED:
  760. case SD_ANSWER_R7_EXPECTED:
  761. retr.r1 = SD_ReadData();
  762. retr.r2 = SD_IO_WriteByte(SD_DUMMY_BYTE);
  763. retr.r3 = SD_IO_WriteByte(SD_DUMMY_BYTE);
  764. retr.r4 = SD_IO_WriteByte(SD_DUMMY_BYTE);
  765. retr.r5 = SD_IO_WriteByte(SD_DUMMY_BYTE);
  766. break;
  767. default:
  768. break;
  769. }
  770. return retr;
  771. }
  772. /**
  773. * @brief Gets the SD card data response and check the busy flag.
  774. * @param None
  775. * @retval The SD status: Read data response xxx0<status>1
  776. * - status 010: Data accecpted
  777. * - status 101: Data rejected due to a crc error
  778. * - status 110: Data rejected due to a Write error.
  779. * - status 111: Data rejected due to other error.
  780. */
  781. uint8_t SD_GetDataResponse(void) {
  782. uint8_t dataresponse;
  783. uint8_t rvalue = SD_DATA_OTHER_ERROR;
  784. dataresponse = SD_IO_WriteByte(SD_DUMMY_BYTE);
  785. SD_IO_WriteByte(SD_DUMMY_BYTE); /* read the busy response byte*/
  786. /* Mask unused bits */
  787. switch(dataresponse & 0x1F) {
  788. case SD_DATA_OK:
  789. rvalue = SD_DATA_OK;
  790. /* Set CS High */
  791. SD_IO_CSState(1);
  792. /* Set CS Low */
  793. SD_IO_CSState(0);
  794. /* Wait IO line return 0xFF */
  795. while(SD_IO_WriteByte(SD_DUMMY_BYTE) != 0xFF)
  796. ;
  797. break;
  798. case SD_DATA_CRC_ERROR:
  799. rvalue = SD_DATA_CRC_ERROR;
  800. break;
  801. case SD_DATA_WRITE_ERROR:
  802. rvalue = SD_DATA_WRITE_ERROR;
  803. break;
  804. default:
  805. break;
  806. }
  807. /* Return response */
  808. return rvalue;
  809. }
  810. /**
  811. * @brief Put the SD in Idle state.
  812. * @param None
  813. * @retval SD status
  814. */
  815. uint8_t SD_GoIdleState(void) {
  816. SD_CmdAnswer_typedef response;
  817. __IO uint8_t counter;
  818. /* Send CMD0 (SD_CMD_GO_IDLE_STATE) to put SD in SPI mode and
  819. wait for In Idle State Response (R1 Format) equal to 0x01 */
  820. counter = 0;
  821. do {
  822. counter++;
  823. response = SD_SendCmd(SD_CMD_GO_IDLE_STATE, 0, 0x95, SD_ANSWER_R1_EXPECTED);
  824. SD_IO_CSState(1);
  825. SD_IO_WriteByte(SD_DUMMY_BYTE);
  826. if(counter >= SD_MAX_TRY) {
  827. return BSP_SD_ERROR;
  828. }
  829. } while(response.r1 != SD_R1_IN_IDLE_STATE);
  830. /* Send CMD8 (SD_CMD_SEND_IF_COND) to check the power supply status
  831. and wait until response (R7 Format) equal to 0xAA and */
  832. response = SD_SendCmd(SD_CMD_SEND_IF_COND, 0x1AA, 0x87, SD_ANSWER_R7_EXPECTED);
  833. SD_IO_CSState(1);
  834. SD_IO_WriteByte(SD_DUMMY_BYTE);
  835. if((response.r1 & SD_R1_ILLEGAL_COMMAND) == SD_R1_ILLEGAL_COMMAND) {
  836. /* initialise card V1 */
  837. counter = 0;
  838. do {
  839. counter++;
  840. /* initialise card V1 */
  841. /* Send CMD55 (SD_CMD_APP_CMD) before any ACMD command: R1 response (0x00: no errors) */
  842. response = SD_SendCmd(SD_CMD_APP_CMD, 0x00000000, 0xFF, SD_ANSWER_R1_EXPECTED);
  843. SD_IO_CSState(1);
  844. SD_IO_WriteByte(SD_DUMMY_BYTE);
  845. /* Send ACMD41 (SD_CMD_SD_APP_OP_COND) to initialize SDHC or SDXC cards: R1 response (0x00: no errors) */
  846. response = SD_SendCmd(SD_CMD_SD_APP_OP_COND, 0x00000000, 0xFF, SD_ANSWER_R1_EXPECTED);
  847. SD_IO_CSState(1);
  848. SD_IO_WriteByte(SD_DUMMY_BYTE);
  849. if(counter >= SD_MAX_TRY) {
  850. return BSP_SD_ERROR;
  851. }
  852. } while(response.r1 == SD_R1_IN_IDLE_STATE);
  853. flag_SDHC = 0;
  854. } else if(response.r1 == SD_R1_IN_IDLE_STATE) {
  855. /* initialise card V2 */
  856. counter = 0;
  857. do {
  858. counter++;
  859. /* Send CMD55 (SD_CMD_APP_CMD) before any ACMD command: R1 response (0x00: no errors) */
  860. response = SD_SendCmd(SD_CMD_APP_CMD, 0, 0xFF, SD_ANSWER_R1_EXPECTED);
  861. SD_IO_CSState(1);
  862. SD_IO_WriteByte(SD_DUMMY_BYTE);
  863. /* Send ACMD41 (SD_CMD_SD_APP_OP_COND) to initialize SDHC or SDXC cards: R1 response (0x00: no errors) */
  864. response = SD_SendCmd(SD_CMD_SD_APP_OP_COND, 0x40000000, 0xFF, SD_ANSWER_R1_EXPECTED);
  865. SD_IO_CSState(1);
  866. SD_IO_WriteByte(SD_DUMMY_BYTE);
  867. if(counter >= SD_MAX_TRY) {
  868. return BSP_SD_ERROR;
  869. }
  870. } while(response.r1 == SD_R1_IN_IDLE_STATE);
  871. if((response.r1 & SD_R1_ILLEGAL_COMMAND) == SD_R1_ILLEGAL_COMMAND) {
  872. counter = 0;
  873. do {
  874. counter++;
  875. /* Send CMD55 (SD_CMD_APP_CMD) before any ACMD command: R1 response (0x00: no errors) */
  876. response = SD_SendCmd(SD_CMD_APP_CMD, 0, 0xFF, SD_ANSWER_R1_EXPECTED);
  877. SD_IO_CSState(1);
  878. SD_IO_WriteByte(SD_DUMMY_BYTE);
  879. if(response.r1 != SD_R1_IN_IDLE_STATE) {
  880. return BSP_SD_ERROR;
  881. }
  882. /* Send ACMD41 (SD_CMD_SD_APP_OP_COND) to initialize SDHC or SDXC cards: R1 response (0x00: no errors) */
  883. response =
  884. SD_SendCmd(SD_CMD_SD_APP_OP_COND, 0x00000000, 0xFF, SD_ANSWER_R1_EXPECTED);
  885. SD_IO_CSState(1);
  886. SD_IO_WriteByte(SD_DUMMY_BYTE);
  887. if(counter >= SD_MAX_TRY) {
  888. return BSP_SD_ERROR;
  889. }
  890. } while(response.r1 == SD_R1_IN_IDLE_STATE);
  891. }
  892. /* Send CMD58 (SD_CMD_READ_OCR) to initialize SDHC or SDXC cards: R3 response (0x00: no errors) */
  893. response = SD_SendCmd(SD_CMD_READ_OCR, 0x00000000, 0xFF, SD_ANSWER_R3_EXPECTED);
  894. SD_IO_CSState(1);
  895. SD_IO_WriteByte(SD_DUMMY_BYTE);
  896. if(response.r1 != SD_R1_NO_ERROR) {
  897. return BSP_SD_ERROR;
  898. }
  899. flag_SDHC = (response.r2 & 0x40) >> 6;
  900. } else {
  901. return BSP_SD_ERROR;
  902. }
  903. return BSP_SD_OK;
  904. }
  905. /**
  906. * @brief Waits a data until a value different from SD_DUMMY_BITE
  907. * @param None
  908. * @retval the value read
  909. */
  910. uint8_t SD_ReadData(void) {
  911. uint8_t timeout = 0x08;
  912. uint8_t readvalue;
  913. /* Check if response is got or a timeout is happen */
  914. do {
  915. readvalue = SD_IO_WriteByte(SD_DUMMY_BYTE);
  916. timeout--;
  917. } while((readvalue == SD_DUMMY_BYTE) && timeout);
  918. /* Right response got */
  919. return readvalue;
  920. }
  921. /**
  922. * @brief Waits a data from the SD card
  923. * @param data : Expected data from the SD card
  924. * @retval BSP_SD_OK or BSP_SD_TIMEOUT
  925. */
  926. uint8_t SD_WaitData(uint8_t data) {
  927. uint16_t timeout = 0xFFFF;
  928. uint8_t readvalue;
  929. /* Check if response is got or a timeout is happen */
  930. do {
  931. readvalue = SD_IO_WriteByte(SD_DUMMY_BYTE);
  932. timeout--;
  933. } while((readvalue != data) && timeout);
  934. if(timeout == 0) {
  935. /* After time out */
  936. return BSP_SD_TIMEOUT;
  937. }
  938. /* Right response got */
  939. return BSP_SD_OK;
  940. }
  941. /**
  942. * @}
  943. */
  944. /**
  945. * @}
  946. */
  947. /**
  948. * @}
  949. */
  950. /**
  951. * @}
  952. */
  953. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/