stm32h7xx_hal_sd.h 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741
  1. /**
  2. ******************************************************************************
  3. * @file stm32h7xx_hal_sd.h
  4. * @author MCD Application Team
  5. * @version V1.0.0
  6. * @date 21-April-2017
  7. * @brief Header file of SD HAL module.
  8. ******************************************************************************
  9. * @attention
  10. *
  11. * <h2><center>&copy; COPYRIGHT(c) 2017 STMicroelectronics</center></h2>
  12. *
  13. * Redistribution and use in source and binary forms, with or without modification,
  14. * are permitted provided that the following conditions are met:
  15. * 1. Redistributions of source code must retain the above copyright notice,
  16. * this list of conditions and the following disclaimer.
  17. * 2. Redistributions in binary form must reproduce the above copyright notice,
  18. * this list of conditions and the following disclaimer in the documentation
  19. * and/or other materials provided with the distribution.
  20. * 3. Neither the name of STMicroelectronics nor the names of its contributors
  21. * may be used to endorse or promote products derived from this software
  22. * without specific prior written permission.
  23. *
  24. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  25. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  26. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  27. * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
  28. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  29. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  30. * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  31. * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  32. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  33. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  34. *
  35. ******************************************************************************
  36. */
  37. /* Define to prevent recursive inclusion -------------------------------------*/
  38. #ifndef __STM32H7xx_HAL_SD_H
  39. #define __STM32H7xx_HAL_SD_H
  40. #ifdef __cplusplus
  41. extern "C" {
  42. #endif
  43. /* Includes ------------------------------------------------------------------*/
  44. #include "stm32h7xx_ll_sdmmc.h"
  45. #if (USE_SD_TRANSCEIVER != 0U)
  46. #include "stm32h7xx_ll_delayblock.h"
  47. #endif /* USE_SD_TRANSCEIVER */
  48. /** @addtogroup STM32H7xx_HAL_Driver
  49. * @{
  50. */
  51. /** @addtogroup SD
  52. * @brief SD HAL module driver
  53. * @{
  54. */
  55. /* Exported types ------------------------------------------------------------*/
  56. /** @defgroup SD_Exported_Types SD Exported Types
  57. * @{
  58. */
  59. /** @defgroup SD_Exported_Types_Group1 SD State enumeration structure
  60. * @{
  61. */
  62. typedef enum
  63. {
  64. HAL_SD_STATE_RESET = ((uint32_t)0x00000000U), /*!< SD not yet initialized or disabled */
  65. HAL_SD_STATE_READY = ((uint32_t)0x00000001U), /*!< SD initialized and ready for use */
  66. HAL_SD_STATE_TIMEOUT = ((uint32_t)0x00000002U), /*!< SD Timeout state */
  67. HAL_SD_STATE_BUSY = ((uint32_t)0x00000003U), /*!< SD process ongoing */
  68. HAL_SD_STATE_PROGRAMMING = ((uint32_t)0x00000004U), /*!< SD Programming State */
  69. HAL_SD_STATE_RECEIVING = ((uint32_t)0x00000005U), /*!< SD Receinving State */
  70. HAL_SD_STATE_TRANSFER = ((uint32_t)0x00000006U), /*!< SD Transfert State */
  71. HAL_SD_STATE_ERROR = ((uint32_t)0x0000000FU) /*!< SD is in error state */
  72. }HAL_SD_StateTypeDef;
  73. /**
  74. * @}
  75. */
  76. /** @defgroup SD_Exported_Types_Group2 SD Card State enumeration structure
  77. * @{
  78. */
  79. typedef enum
  80. {
  81. HAL_SD_CARD_READY = ((uint32_t)0x00000001U), /*!< Card state is ready */
  82. HAL_SD_CARD_IDENTIFICATION = ((uint32_t)0x00000002U), /*!< Card is in identification state */
  83. HAL_SD_CARD_STANDBY = ((uint32_t)0x00000003U), /*!< Card is in standby state */
  84. HAL_SD_CARD_TRANSFER = ((uint32_t)0x00000004U), /*!< Card is in transfer state */
  85. HAL_SD_CARD_SENDING = ((uint32_t)0x00000005U), /*!< Card is sending an operation */
  86. HAL_SD_CARD_RECEIVING = ((uint32_t)0x00000006U), /*!< Card is receiving operation information */
  87. HAL_SD_CARD_PROGRAMMING = ((uint32_t)0x00000007U), /*!< Card is in programming state */
  88. HAL_SD_CARD_DISCONNECTED = ((uint32_t)0x00000008U), /*!< Card is disconnected */
  89. HAL_SD_CARD_ERROR = ((uint32_t)0x000000FFU) /*!< Card response Error */
  90. }HAL_SD_CardStateTypedef;
  91. /**
  92. * @}
  93. */
  94. /** @defgroup SD_Exported_Types_Group3 SD Handle Structure definition
  95. * @{
  96. */
  97. #define SD_InitTypeDef SDMMC_InitTypeDef
  98. #define SD_TypeDef SDMMC_TypeDef
  99. /**
  100. * @brief SD Card Information Structure definition
  101. */
  102. typedef struct
  103. {
  104. uint32_t CardType; /*!< Specifies the card Type */
  105. uint32_t CardVersion; /*!< Specifies the card version */
  106. uint32_t Class; /*!< Specifies the class of the card class */
  107. uint32_t RelCardAdd; /*!< Specifies the Relative Card Address */
  108. uint32_t BlockNbr; /*!< Specifies the Card Capacity in blocks */
  109. uint32_t BlockSize; /*!< Specifies one block size in bytes */
  110. uint32_t LogBlockNbr; /*!< Specifies the Card logical Capacity in blocks */
  111. uint32_t LogBlockSize; /*!< Specifies logical block size in bytes */
  112. uint32_t CardSpeed; /*!< Specifies the card Speed */
  113. }HAL_SD_CardInfoTypeDef;
  114. /**
  115. * @brief SD handle Structure definition
  116. */
  117. typedef struct
  118. {
  119. SD_TypeDef *Instance; /*!< SD registers base address */
  120. SD_InitTypeDef Init; /*!< SD required parameters */
  121. HAL_LockTypeDef Lock; /*!< SD locking object */
  122. uint32_t *pTxBuffPtr; /*!< Pointer to SD Tx transfer Buffer */
  123. uint32_t TxXferSize; /*!< SD Tx Transfer size */
  124. uint32_t *pRxBuffPtr; /*!< Pointer to SD Rx transfer Buffer */
  125. uint32_t RxXferSize; /*!< SD Rx Transfer size */
  126. __IO uint32_t Context; /*!< SD transfer context */
  127. __IO HAL_SD_StateTypeDef State; /*!< SD card State */
  128. __IO uint32_t ErrorCode; /*!< SD Card Error codes */
  129. HAL_SD_CardInfoTypeDef SdCard; /*!< SD Card information */
  130. uint32_t CSD[4]; /*!< SD card specific data table */
  131. uint32_t CID[4]; /*!< SD card identification number table */
  132. }SD_HandleTypeDef;
  133. /**
  134. * @}
  135. */
  136. /** @defgroup SD_Exported_Types_Group4 Card Specific Data: CSD Register
  137. * @{
  138. */
  139. typedef struct
  140. {
  141. __IO uint8_t CSDStruct; /*!< CSD structure */
  142. __IO uint8_t SysSpecVersion; /*!< System specification version */
  143. __IO uint8_t Reserved1; /*!< Reserved */
  144. __IO uint8_t TAAC; /*!< Data read access time 1 */
  145. __IO uint8_t NSAC; /*!< Data read access time 2 in CLK cycles */
  146. __IO uint8_t MaxBusClkFrec; /*!< Max. bus clock frequency */
  147. __IO uint16_t CardComdClasses; /*!< Card command classes */
  148. __IO uint8_t RdBlockLen; /*!< Max. read data block length */
  149. __IO uint8_t PartBlockRead; /*!< Partial blocks for read allowed */
  150. __IO uint8_t WrBlockMisalign; /*!< Write block misalignment */
  151. __IO uint8_t RdBlockMisalign; /*!< Read block misalignment */
  152. __IO uint8_t DSRImpl; /*!< DSR implemented */
  153. __IO uint8_t Reserved2; /*!< Reserved */
  154. __IO uint32_t DeviceSize; /*!< Device Size */
  155. __IO uint8_t MaxRdCurrentVDDMin; /*!< Max. read current @ VDD min */
  156. __IO uint8_t MaxRdCurrentVDDMax; /*!< Max. read current @ VDD max */
  157. __IO uint8_t MaxWrCurrentVDDMin; /*!< Max. write current @ VDD min */
  158. __IO uint8_t MaxWrCurrentVDDMax; /*!< Max. write current @ VDD max */
  159. __IO uint8_t DeviceSizeMul; /*!< Device size multiplier */
  160. __IO uint8_t EraseGrSize; /*!< Erase group size */
  161. __IO uint8_t EraseGrMul; /*!< Erase group size multiplier */
  162. __IO uint8_t WrProtectGrSize; /*!< Write protect group size */
  163. __IO uint8_t WrProtectGrEnable; /*!< Write protect group enable */
  164. __IO uint8_t ManDeflECC; /*!< Manufacturer default ECC */
  165. __IO uint8_t WrSpeedFact; /*!< Write speed factor */
  166. __IO uint8_t MaxWrBlockLen; /*!< Max. write data block length */
  167. __IO uint8_t WriteBlockPaPartial; /*!< Partial blocks for write allowed */
  168. __IO uint8_t Reserved3; /*!< Reserved */
  169. __IO uint8_t ContentProtectAppli; /*!< Content protection application */
  170. __IO uint8_t FileFormatGrouop; /*!< File format group */
  171. __IO uint8_t CopyFlag; /*!< Copy flag (OTP) */
  172. __IO uint8_t PermWrProtect; /*!< Permanent write protection */
  173. __IO uint8_t TempWrProtect; /*!< Temporary write protection */
  174. __IO uint8_t FileFormat; /*!< File format */
  175. __IO uint8_t ECC; /*!< ECC code */
  176. __IO uint8_t CSD_CRC; /*!< CSD CRC */
  177. __IO uint8_t Reserved4; /*!< Always 1 */
  178. }HAL_SD_CardCSDTypedef;
  179. /**
  180. * @}
  181. */
  182. /** @defgroup SD_Exported_Types_Group5 Card Identification Data: CID Register
  183. * @{
  184. */
  185. typedef struct
  186. {
  187. __IO uint8_t ManufacturerID; /*!< Manufacturer ID */
  188. __IO uint16_t OEM_AppliID; /*!< OEM/Application ID */
  189. __IO uint32_t ProdName1; /*!< Product Name part1 */
  190. __IO uint8_t ProdName2; /*!< Product Name part2 */
  191. __IO uint8_t ProdRev; /*!< Product Revision */
  192. __IO uint32_t ProdSN; /*!< Product Serial Number */
  193. __IO uint8_t Reserved1; /*!< Reserved1 */
  194. __IO uint16_t ManufactDate; /*!< Manufacturing Date */
  195. __IO uint8_t CID_CRC; /*!< CID CRC */
  196. __IO uint8_t Reserved2; /*!< Always 1 */
  197. }HAL_SD_CardCIDTypedef;
  198. /**
  199. * @}
  200. */
  201. /** @defgroup SD_Exported_Types_Group6 SD Card Status returned by ACMD13
  202. * @{
  203. */
  204. typedef struct
  205. {
  206. __IO uint8_t DataBusWidth; /*!< Shows the currently defined data bus width */
  207. __IO uint8_t SecuredMode; /*!< Card is in secured mode of operation */
  208. __IO uint16_t CardType; /*!< Carries information about card type */
  209. __IO uint32_t ProtectedAreaSize; /*!< Carries information about the capacity of protected area */
  210. __IO uint8_t SpeedClass; /*!< Carries information about the speed class of the card */
  211. __IO uint8_t PerformanceMove; /*!< Carries information about the card's performance move */
  212. __IO uint8_t AllocationUnitSize; /*!< Carries information about the card's allocation unit size */
  213. __IO uint16_t EraseSize; /*!< Determines the number of AUs to be erased in one operation */
  214. __IO uint8_t EraseTimeout; /*!< Determines the timeout for any number of AU erase */
  215. __IO uint8_t EraseOffset; /*!< Carries information about the erase offset */
  216. }HAL_SD_CardStatusTypedef;
  217. /**
  218. * @}
  219. */
  220. /**
  221. * @}
  222. */
  223. /* Exported constants --------------------------------------------------------*/
  224. /** @defgroup SD_Exported_Constants Exported Constants
  225. * @{
  226. */
  227. #define BLOCKSIZE ((uint32_t)512U) /*!< Block size is 512 bytes */
  228. /** @defgroup SD_Exported_Constansts_Group1 SD Error status enumeration Structure definition
  229. * @{
  230. */
  231. #define HAL_SD_ERROR_NONE SDMMC_ERROR_NONE /*!< No error */
  232. #define HAL_SD_ERROR_CMD_CRC_FAIL SDMMC_ERROR_CMD_CRC_FAIL /*!< Command response received (but CRC check failed) */
  233. #define HAL_SD_ERROR_DATA_CRC_FAIL SDMMC_ERROR_DATA_CRC_FAIL /*!< Data block sent/received (CRC check failed) */
  234. #define HAL_SD_ERROR_CMD_RSP_TIMEOUT SDMMC_ERROR_CMD_RSP_TIMEOUT /*!< Command response timeout */
  235. #define HAL_SD_ERROR_DATA_TIMEOUT SDMMC_ERROR_DATA_TIMEOUT /*!< Data timeout */
  236. #define HAL_SD_ERROR_TX_UNDERRUN SDMMC_ERROR_TX_UNDERRUN /*!< Transmit FIFO underrun */
  237. #define HAL_SD_ERROR_RX_OVERRUN SDMMC_ERROR_RX_OVERRUN /*!< Receive FIFO overrun */
  238. #define HAL_SD_ERROR_ADDR_MISALIGNED SDMMC_ERROR_ADDR_MISALIGNED /*!< Misaligned address */
  239. #define HAL_SD_ERROR_BLOCK_LEN_ERR SDMMC_ERROR_BLOCK_LEN_ERR /*!< Transferred block length is not allowed for the card or the
  240. number of transferred bytes does not match the block length */
  241. #define HAL_SD_ERROR_ERASE_SEQ_ERR SDMMC_ERROR_ERASE_SEQ_ERR /*!< An error in the sequence of erase command occurs */
  242. #define HAL_SD_ERROR_BAD_ERASE_PARAM SDMMC_ERROR_BAD_ERASE_PARAM /*!< An invalid selection for erase groups */
  243. #define HAL_SD_ERROR_WRITE_PROT_VIOLATION SDMMC_ERROR_WRITE_PROT_VIOLATION /*!< Attempt to program a write protect block */
  244. #define HAL_SD_ERROR_LOCK_UNLOCK_FAILED SDMMC_ERROR_LOCK_UNLOCK_FAILED /*!< Sequence or password error has been detected in unlock
  245. command or if there was an attempt to access a locked card */
  246. #define HAL_SD_ERROR_COM_CRC_FAILED SDMMC_ERROR_COM_CRC_FAILED /*!< CRC check of the previous command failed */
  247. #define HAL_SD_ERROR_ILLEGAL_CMD SDMMC_ERROR_ILLEGAL_CMD /*!< Command is not legal for the card state */
  248. #define HAL_SD_ERROR_CARD_ECC_FAILED SDMMC_ERROR_CARD_ECC_FAILED /*!< Card internal ECC was applied but failed to correct the data */
  249. #define HAL_SD_ERROR_CC_ERR SDMMC_ERROR_CC_ERR /*!< Internal card controller error */
  250. #define HAL_SD_ERROR_GENERAL_UNKNOWN_ERR SDMMC_ERROR_GENERAL_UNKNOWN_ERR /*!< General or unknown error */
  251. #define HAL_SD_ERROR_STREAM_READ_UNDERRUN SDMMC_ERROR_STREAM_READ_UNDERRUN /*!< The card could not sustain data reading in stream rmode */
  252. #define HAL_SD_ERROR_STREAM_WRITE_OVERRUN SDMMC_ERROR_STREAM_WRITE_OVERRUN /*!< The card could not sustain data programming in stream mode */
  253. #define HAL_SD_ERROR_CID_CSD_OVERWRITE SDMMC_ERROR_CID_CSD_OVERWRITE /*!< CID/CSD overwrite error */
  254. #define HAL_SD_ERROR_WP_ERASE_SKIP SDMMC_ERROR_WP_ERASE_SKIP /*!< Only partial address space was erased */
  255. #define HAL_SD_ERROR_CARD_ECC_DISABLED SDMMC_ERROR_CARD_ECC_DISABLED /*!< Command has been executed without using internal ECC */
  256. #define HAL_SD_ERROR_ERASE_RESET SDMMC_ERROR_ERASE_RESET /*!< Erase sequence was cleared before executing because an out
  257. of erase sequence command was received */
  258. #define HAL_SD_ERROR_AKE_SEQ_ERR SDMMC_ERROR_AKE_SEQ_ERR /*!< Error in sequence of authentication */
  259. #define HAL_SD_ERROR_INVALID_VOLTRANGE SDMMC_ERROR_INVALID_VOLTRANGE /*!< Error in case of invalid voltage range */
  260. #define HAL_SD_ERROR_ADDR_OUT_OF_RANGE SDMMC_ERROR_ADDR_OUT_OF_RANGE /*!< Error when addressed block is out of range */
  261. #define HAL_SD_ERROR_REQUEST_NOT_APPLICABLE SDMMC_ERROR_REQUEST_NOT_APPLICABLE /*!< Error when command request is not applicable */
  262. #define HAL_SD_ERROR_PARAM SDMMC_ERROR_INVALID_PARAMETER /*!< the used parameter is not valid */
  263. #define HAL_SD_ERROR_UNSUPPORTED_FEATURE SDMMC_ERROR_UNSUPPORTED_FEATURE /*!< Error when feature is not insupported */
  264. #define HAL_SD_ERROR_BUSY SDMMC_ERROR_BUSY /*!< Error when transfer process is busy */
  265. #define HAL_SD_ERROR_DMA SDMMC_ERROR_DMA /*!< Error while DMA transfer */
  266. #define HAL_SD_ERROR_TIMEOUT SDMMC_ERROR_TIMEOUT /*!< Timeout Error */
  267. /**
  268. * @}
  269. */
  270. /** @defgroup SD_Exported_Constansts_Group2 SD context enumeration
  271. * @{
  272. */
  273. #define SD_CONTEXT_NONE ((uint32_t)0x00000000U) /*!< None */
  274. #define SD_CONTEXT_READ_SINGLE_BLOCK ((uint32_t)0x00000001U) /*!< Read single block operation */
  275. #define SD_CONTEXT_READ_MULTIPLE_BLOCK ((uint32_t)0x00000002U) /*!< Read multiple blocks operation */
  276. #define SD_CONTEXT_WRITE_SINGLE_BLOCK ((uint32_t)0x00000010U) /*!< Write single block operation */
  277. #define SD_CONTEXT_WRITE_MULTIPLE_BLOCK ((uint32_t)0x00000020U) /*!< Write multiple blocks operation */
  278. #define SD_CONTEXT_IT ((uint32_t)0x00000008U) /*!< Process in Interrupt mode */
  279. #define SD_CONTEXT_DMA ((uint32_t)0x00000080U) /*!< Process in DMA mode */
  280. /**
  281. * @}
  282. */
  283. /** @defgroup SD_Exported_Constansts_Group3 SD Supported Memory Cards
  284. * @{
  285. */
  286. #define CARD_NORMAL_SPEED ((uint32_t)0x00000000U) /*!< Normal Speed Card <12.5Mo/s , Spec Version 1.01 */
  287. #define CARD_HIGH_SPEED ((uint32_t)0x00000100U) /*!< High Speed Card <25Mo/s , Spec version 2.00 */
  288. #define CARD_ULTRA_HIGH_SPEED ((uint32_t)0x00000200U) /*!< UHS-I SD Card <50Mo/s for SDR50, DDR5 Cards
  289. and <104Mo/s for SDR104, Spec version 3.01 */
  290. #define CARD_SDSC ((uint32_t)0x00000000U) /*!< SD Standard Capacity <2Go */
  291. #define CARD_SDHC_SDXC ((uint32_t)0x00000001U) /*!< SD High Capacity <32Go, SD Extended Capacity <2To */
  292. #define CARD_SECURED ((uint32_t)0x00000003U)
  293. /**
  294. * @}
  295. */
  296. /** @defgroup SD_Exported_Constansts_Group4 SD Supported Version
  297. * @{
  298. */
  299. #define CARD_V1_X ((uint32_t)0x00000000U)
  300. #define CARD_V2_X ((uint32_t)0x00000001U)
  301. /**
  302. * @}
  303. */
  304. /**
  305. * @}
  306. */
  307. /* Exported macro ------------------------------------------------------------*/
  308. /** @defgroup SD_Exported_macros SD Exported Macros
  309. * @brief macros to handle interrupts and specific clock configurations
  310. * @{
  311. */
  312. /**
  313. * @brief Enable the SD device interrupt.
  314. * @param __HANDLE__: SD Handle
  315. * @param __INTERRUPT__: specifies the SDMMC interrupt sources to be enabled.
  316. * This parameter can be one or a combination of the following values:
  317. * @arg SDMMC_IT_CCRCFAIL: Command response received (CRC check failed) interrupt
  318. * @arg SDMMC_IT_DCRCFAIL: Data block sent/received (CRC check failed) interrupt
  319. * @arg SDMMC_IT_CTIMEOUT: Command response timeout interrupt
  320. * @arg SDMMC_IT_DTIMEOUT: Data timeout interrupt
  321. * @arg SDMMC_IT_TXUNDERR: Transmit FIFO underrun error interrupt
  322. * @arg SDMMC_IT_RXOVERR: Received FIFO overrun error interrupt
  323. * @arg SDMMC_IT_CMDREND: Command response received (CRC check passed) interrupt
  324. * @arg SDMMC_IT_CMDSENT: Command sent (no response required) interrupt
  325. * @arg SDMMC_IT_DATAEND: Data end (data counter, DATACOUNT, is zero) interrupt
  326. * @arg SDMMC_IT_DHOLD: Data transfer Hold interrupt
  327. * @arg SDMMC_IT_DBCKEND: Data block sent/received (CRC check passed) interrupt
  328. * @arg SDMMC_IT_DABORT: Data transfer aborted by CMD12 interrupt
  329. * @arg SDMMC_IT_TXFIFOHE: Transmit FIFO Half Empty interrupt
  330. * @arg SDMMC_IT_RXFIFOHF: Receive FIFO Half Full interrupt
  331. * @arg SDMMC_IT_RXFIFOF: Receive FIFO full interrupt
  332. * @arg SDMMC_IT_TXFIFOE: Transmit FIFO empty interrupt
  333. * @arg SDMMC_IT_BUSYD0END: End of SDMMC_D0 Busy following a CMD response detected interrupt
  334. * @arg SDMMC_IT_SDIOIT: SDIO interrupt received interrupt
  335. * @arg SDMMC_IT_ACKFAIL: Boot Acknowledgment received interrupt
  336. * @arg SDMMC_IT_ACKTIMEOUT: Boot Acknowledgment timeout interrupt
  337. * @arg SDMMC_IT_VSWEND: Voltage switch critical timing section completion interrupt
  338. * @arg SDMMC_IT_CKSTOP: SDMMC_CK stopped in Voltage switch procedure interrupt
  339. * @arg SDMMC_IT_IDMABTC: IDMA buffer transfer complete interrupt
  340. * @retval None
  341. */
  342. #define __HAL_SD_ENABLE_IT(__HANDLE__, __INTERRUPT__) __SDMMC_ENABLE_IT((__HANDLE__)->Instance, (__INTERRUPT__))
  343. /**
  344. * @brief Disable the SD device interrupt.
  345. * @param __HANDLE__: SD Handle
  346. * @param __INTERRUPT__: specifies the SDMMC interrupt sources to be disabled.
  347. * This parameter can be one or a combination of the following values:
  348. * @arg SDMMC_IT_CCRCFAIL: Command response received (CRC check failed) interrupt
  349. * @arg SDMMC_IT_DCRCFAIL: Data block sent/received (CRC check failed) interrupt
  350. * @arg SDMMC_IT_CTIMEOUT: Command response timeout interrupt
  351. * @arg SDMMC_IT_DTIMEOUT: Data timeout interrupt
  352. * @arg SDMMC_IT_TXUNDERR: Transmit FIFO underrun error interrupt
  353. * @arg SDMMC_IT_RXOVERR: Received FIFO overrun error interrupt
  354. * @arg SDMMC_IT_CMDREND: Command response received (CRC check passed) interrupt
  355. * @arg SDMMC_IT_CMDSENT: Command sent (no response required) interrupt
  356. * @arg SDMMC_IT_DATAEND: Data end (data counter, DATACOUNT, is zero) interrupt
  357. * @arg SDMMC_IT_DHOLD: Data transfer Hold interrupt
  358. * @arg SDMMC_IT_DBCKEND: Data block sent/received (CRC check passed) interrupt
  359. * @arg SDMMC_IT_DABORT: Data transfer aborted by CMD12 interrupt
  360. * @arg SDMMC_IT_TXFIFOHE: Transmit FIFO Half Empty interrupt
  361. * @arg SDMMC_IT_RXFIFOHF: Receive FIFO Half Full interrupt
  362. * @arg SDMMC_IT_RXFIFOF: Receive FIFO full interrupt
  363. * @arg SDMMC_IT_TXFIFOE: Transmit FIFO empty interrupt
  364. * @arg SDMMC_IT_BUSYD0END: End of SDMMC_D0 Busy following a CMD response detected interrupt
  365. * @arg SDMMC_IT_SDIOIT: SDIO interrupt received interrupt
  366. * @arg SDMMC_IT_ACKFAIL: Boot Acknowledgment received interrupt
  367. * @arg SDMMC_IT_ACKTIMEOUT: Boot Acknowledgment timeout interrupt
  368. * @arg SDMMC_IT_VSWEND: Voltage switch critical timing section completion interrupt
  369. * @arg SDMMC_IT_CKSTOP: SDMMC_CK stopped in Voltage switch procedure interrupt
  370. * @arg SDMMC_IT_IDMABTC: IDMA buffer transfer complete interrupt
  371. * @retval None
  372. */
  373. #define __HAL_SD_DISABLE_IT(__HANDLE__, __INTERRUPT__) __SDMMC_DISABLE_IT((__HANDLE__)->Instance, (__INTERRUPT__))
  374. /**
  375. * @brief Check whether the specified SD flag is set or not.
  376. * @param __HANDLE__: SD Handle
  377. * @param __FLAG__: specifies the flag to check.
  378. * This parameter can be one of the following values:
  379. * @arg SDMMC_FLAG_CCRCFAIL: Command response received (CRC check failed)
  380. * @arg SDMMC_FLAG_DCRCFAIL: Data block sent/received (CRC check failed)
  381. * @arg SDMMC_FLAG_CTIMEOUT: Command response timeout
  382. * @arg SDMMC_FLAG_DTIMEOUT: Data timeout
  383. * @arg SDMMC_FLAG_TXUNDERR: Transmit FIFO underrun error
  384. * @arg SDMMC_FLAG_RXOVERR: Received FIFO overrun error
  385. * @arg SDMMC_FLAG_CMDREND: Command response received (CRC check passed)
  386. * @arg SDMMC_FLAG_CMDSENT: Command sent (no response required)
  387. * @arg SDMMC_FLAG_DATAEND: Data end (data counter, DATACOUNT, is zero)
  388. * @arg SDMMC_FLAG_DHOLD: Data transfer Hold
  389. * @arg SDMMC_FLAG_DBCKEND: Data block sent/received (CRC check passed)
  390. * @arg SDMMC_FLAG_DABORT: Data transfer aborted by CMD12
  391. * @arg SDMMC_FLAG_CPSMACT: Command path state machine active
  392. * @arg SDMMC_FLAG_DPSMACT: Data path state machine active
  393. * @arg SDMMC_FLAG_TXFIFOHE: Transmit FIFO Half Empty
  394. * @arg SDMMC_FLAG_RXFIFOHF: Receive FIFO Half Full
  395. * @arg SDMMC_FLAG_TXFIFOF: Transmit FIFO full
  396. * @arg SDMMC_FLAG_RXFIFOF: Receive FIFO full
  397. * @arg SDMMC_FLAG_TXFIFOE: Transmit FIFO empty
  398. * @arg SDMMC_FLAG_RXFIFOE: Receive FIFO empty
  399. * @arg SDMMC_FLAG_BUSYD0: Inverted value of SDMMC_D0 line (Busy)
  400. * @arg SDMMC_FLAG_BUSYD0END: End of SDMMC_D0 Busy following a CMD response detected
  401. * @arg SDMMC_FLAG_SDIOIT: SDIO interrupt received
  402. * @arg SDMMC_FLAG_ACKFAIL: Boot Acknowledgment received
  403. * @arg SDMMC_FLAG_ACKTIMEOUT: Boot Acknowledgment timeout
  404. * @arg SDMMC_FLAG_VSWEND: Voltage switch critical timing section completion
  405. * @arg SDMMC_FLAG_CKSTOP: SDMMC_CK stopped in Voltage switch procedure
  406. * @arg SDMMC_FLAG_IDMATE: IDMA transfer error
  407. * @arg SDMMC_FLAG_IDMABTC: IDMA buffer transfer complete
  408. * @retval The new state of SD FLAG (SET or RESET).
  409. */
  410. #define __HAL_SD_GET_FLAG(__HANDLE__, __FLAG__) __SDMMC_GET_FLAG((__HANDLE__)->Instance, (__FLAG__))
  411. /**
  412. * @brief Clear the SD's pending flags.
  413. * @param __HANDLE__: SD Handle
  414. * @param __FLAG__: specifies the flag to clear.
  415. * This parameter can be one or a combination of the following values:
  416. * @arg SDMMC_FLAG_CCRCFAIL: Command response received (CRC check failed)
  417. * @arg SDMMC_FLAG_DCRCFAIL: Data block sent/received (CRC check failed)
  418. * @arg SDMMC_FLAG_CTIMEOUT: Command response timeout
  419. * @arg SDMMC_FLAG_DTIMEOUT: Data timeout
  420. * @arg SDMMC_FLAG_TXUNDERR: Transmit FIFO underrun error
  421. * @arg SDMMC_FLAG_RXOVERR: Received FIFO overrun error
  422. * @arg SDMMC_FLAG_CMDREND: Command response received (CRC check passed)
  423. * @arg SDMMC_FLAG_CMDSENT: Command sent (no response required)
  424. * @arg SDMMC_FLAG_DATAEND: Data end (data counter, DATACOUNT, is zero)
  425. * @arg SDMMC_FLAG_DHOLD: Data transfer Hold
  426. * @arg SDMMC_FLAG_DBCKEND: Data block sent/received (CRC check passed)
  427. * @arg SDMMC_FLAG_DABORT: Data transfer aborted by CMD12
  428. * @arg SDMMC_FLAG_BUSYD0END: End of SDMMC_D0 Busy following a CMD response detected
  429. * @arg SDMMC_FLAG_SDIOIT: SDIO interrupt received
  430. * @arg SDMMC_FLAG_ACKFAIL: Boot Acknowledgment received
  431. * @arg SDMMC_FLAG_ACKTIMEOUT: Boot Acknowledgment timeout
  432. * @arg SDMMC_FLAG_VSWEND: Voltage switch critical timing section completion
  433. * @arg SDMMC_FLAG_CKSTOP: SDMMC_CK stopped in Voltage switch procedure
  434. * @arg SDMMC_FLAG_IDMATE: IDMA transfer error
  435. * @arg SDMMC_FLAG_IDMABTC: IDMA buffer transfer complete
  436. * @retval None
  437. */
  438. #define __HAL_SD_CLEAR_FLAG(__HANDLE__, __FLAG__) __SDMMC_CLEAR_FLAG((__HANDLE__)->Instance, (__FLAG__))
  439. /**
  440. * @brief Check whether the specified SD interrupt has occurred or not.
  441. * @param __HANDLE__: SD Handle
  442. * @param __INTERRUPT__: specifies the SDMMC interrupt source to check.
  443. * This parameter can be one of the following values:
  444. * @arg SDMMC_IT_CCRCFAIL: Command response received (CRC check failed) interrupt
  445. * @arg SDMMC_IT_DCRCFAIL: Data block sent/received (CRC check failed) interrupt
  446. * @arg SDMMC_IT_CTIMEOUT: Command response timeout interrupt
  447. * @arg SDMMC_IT_DTIMEOUT: Data timeout interrupt
  448. * @arg SDMMC_IT_TXUNDERR: Transmit FIFO underrun error interrupt
  449. * @arg SDMMC_IT_RXOVERR: Received FIFO overrun error interrupt
  450. * @arg SDMMC_IT_CMDREND: Command response received (CRC check passed) interrupt
  451. * @arg SDMMC_IT_CMDSENT: Command sent (no response required) interrupt
  452. * @arg SDMMC_IT_DATAEND: Data end (data counter, DATACOUNT, is zero) interrupt
  453. * @arg SDMMC_IT_DHOLD: Data transfer Hold interrupt
  454. * @arg SDMMC_IT_DBCKEND: Data block sent/received (CRC check passed) interrupt
  455. * @arg SDMMC_IT_DABORT: Data transfer aborted by CMD12 interrupt
  456. * @arg SDMMC_IT_DPSMACT: Data path state machine active interrupt
  457. * @arg SDMMC_IT_CPSMACT: Command path state machine active interrupt
  458. * @arg SDMMC_IT_TXFIFOHE: Transmit FIFO Half Empty interrupt
  459. * @arg SDMMC_IT_RXFIFOHF: Receive FIFO Half Full interrupt
  460. * @arg SDMMC_IT_TXFIFOF: Transmit FIFO full interrupt
  461. * @arg SDMMC_IT_RXFIFOF: Receive FIFO full interrupt
  462. * @arg SDMMC_IT_TXFIFOE: Transmit FIFO empty interrupt
  463. * @arg SDMMC_IT_RXFIFOE: Receive FIFO empty interrupt
  464. * @arg SDMMC_IT_BUSYD0: Inverted value of SDMMC_D0 line (Busy)
  465. * @arg SDMMC_IT_BUSYD0END: End of SDMMC_D0 Busy following a CMD response detected interrupt
  466. * @arg SDMMC_IT_SDIOIT: SDIO interrupt received interrupt
  467. * @arg SDMMC_IT_ACKFAIL: Boot Acknowledgment received interrupt
  468. * @arg SDMMC_IT_ACKTIMEOUT: Boot Acknowledgment timeout interrupt
  469. * @arg SDMMC_IT_VSWEND: Voltage switch critical timing section completion interrupt
  470. * @arg SDMMC_IT_CKSTOP: SDMMC_CK stopped in Voltage switch procedure interrupt
  471. * @arg SDMMC_IT_IDMATE: IDMA transfer error interrupt
  472. * @arg SDMMC_IT_IDMABTC: IDMA buffer transfer complete interrupt
  473. * @retval The new state of SD IT (SET or RESET).
  474. */
  475. #define __HAL_SD_GET_IT(__HANDLE__, __INTERRUPT__) __SDMMC_GET_IT((__HANDLE__)->Instance, (__INTERRUPT__))
  476. /**
  477. * @brief Clear the SD's interrupt pending bits.
  478. * @param __HANDLE__: SD Handle
  479. * @param __INTERRUPT__: specifies the interrupt pending bit to clear.
  480. * This parameter can be one or a combination of the following values:
  481. * @arg SDMMC_IT_CCRCFAIL: Command response received (CRC check failed) interrupt
  482. * @arg SDMMC_IT_DCRCFAIL: Data block sent/received (CRC check failed) interrupt
  483. * @arg SDMMC_IT_CTIMEOUT: Command response timeout interrupt
  484. * @arg SDMMC_IT_DTIMEOUT: Data timeout interrupt
  485. * @arg SDMMC_IT_TXUNDERR: Transmit FIFO underrun error interrupt
  486. * @arg SDMMC_IT_RXOVERR: Received FIFO overrun error interrupt
  487. * @arg SDMMC_IT_CMDREND: Command response received (CRC check passed) interrupt
  488. * @arg SDMMC_IT_CMDSENT: Command sent (no response required) interrupt
  489. * @arg SDMMC_IT_DATAEND: Data end (data counter, DATACOUNT, is zero) interrupt
  490. * @arg SDMMC_IT_DHOLD: Data transfer Hold interrupt
  491. * @arg SDMMC_IT_DBCKEND: Data block sent/received (CRC check passed) interrupt
  492. * @arg SDMMC_IT_DABORT: Data transfer aborted by CMD12 interrupt
  493. * @arg SDMMC_IT_BUSYD0END: End of SDMMC_D0 Busy following a CMD response detected interrupt
  494. * @arg SDMMC_IT_SDIOIT: SDIO interrupt received interrupt
  495. * @arg SDMMC_IT_ACKFAIL: Boot Acknowledgment received interrupt
  496. * @arg SDMMC_IT_ACKTIMEOUT: Boot Acknowledgment timeout interrupt
  497. * @arg SDMMC_IT_VSWEND: Voltage switch critical timing section completion interrupt
  498. * @arg SDMMC_IT_CKSTOP: SDMMC_CK stopped in Voltage switch procedure interrupt
  499. * @arg SDMMC_IT_IDMATE: IDMA transfer error interrupt
  500. * @arg SDMMC_IT_IDMABTC: IDMA buffer transfer complete interrupt
  501. * @retval None
  502. */
  503. #define __HAL_SD_CLEAR_IT(__HANDLE__, __INTERRUPT__) __SDMMC_CLEAR_IT((__HANDLE__)->Instance, (__INTERRUPT__))
  504. /**
  505. * @}
  506. */
  507. /* Include SD HAL Extension module */
  508. #include "stm32h7xx_hal_sd_ex.h"
  509. /* Exported functions --------------------------------------------------------*/
  510. /** @defgroup SD_Exported_Functions SD Exported Functions
  511. * @{
  512. */
  513. /** @defgroup SD_Exported_Functions_Group1 Initialization and de-initialization functions
  514. * @{
  515. */
  516. HAL_StatusTypeDef HAL_SD_Init(SD_HandleTypeDef *hsd);
  517. HAL_StatusTypeDef HAL_SD_InitCard(SD_HandleTypeDef *hsd);
  518. HAL_StatusTypeDef HAL_SD_DeInit (SD_HandleTypeDef *hsd);
  519. void HAL_SD_MspInit(SD_HandleTypeDef *hsd);
  520. void HAL_SD_MspDeInit(SD_HandleTypeDef *hsd);
  521. /**
  522. * @}
  523. */
  524. /** @defgroup SD_Exported_Functions_Group2 Input and Output operation functions
  525. * @{
  526. */
  527. /* Blocking mode: Polling */
  528. HAL_StatusTypeDef HAL_SD_ReadBlocks(SD_HandleTypeDef *hsd, uint8_t *pData, uint32_t BlockAdd, uint32_t NumberOfBlocks, uint32_t Timeout);
  529. HAL_StatusTypeDef HAL_SD_WriteBlocks(SD_HandleTypeDef *hsd, uint8_t *pData, uint32_t BlockAdd, uint32_t NumberOfBlocks, uint32_t Timeout);
  530. HAL_StatusTypeDef HAL_SD_Erase(SD_HandleTypeDef *hsd, uint32_t BlockStartAdd, uint32_t BlockEndAdd);
  531. /* Non-Blocking mode: IT */
  532. HAL_StatusTypeDef HAL_SD_ReadBlocks_IT(SD_HandleTypeDef *hsd, uint8_t *pData, uint32_t BlockAdd, uint32_t NumberOfBlocks);
  533. HAL_StatusTypeDef HAL_SD_WriteBlocks_IT(SD_HandleTypeDef *hsd, uint8_t *pData, uint32_t BlockAdd, uint32_t NumberOfBlocks);
  534. /* Non-Blocking mode: DMA */
  535. HAL_StatusTypeDef HAL_SD_ReadBlocks_DMA(SD_HandleTypeDef *hsd, uint8_t *pData, uint32_t BlockAdd, uint32_t NumberOfBlocks);
  536. HAL_StatusTypeDef HAL_SD_WriteBlocks_DMA(SD_HandleTypeDef *hsd, uint8_t *pData, uint32_t BlockAdd, uint32_t NumberOfBlocks);
  537. void HAL_SD_IRQHandler(SD_HandleTypeDef *hsd);
  538. /* Callback in non blocking modes (DMA) */
  539. void HAL_SD_TxCpltCallback(SD_HandleTypeDef *hsd);
  540. void HAL_SD_RxCpltCallback(SD_HandleTypeDef *hsd);
  541. void HAL_SD_ErrorCallback(SD_HandleTypeDef *hsd);
  542. void HAL_SD_AbortCallback(SD_HandleTypeDef *hsd);
  543. /* Callback to switch in 1.8V mode */
  544. void HAL_SD_DriveTransciver_1_8V_Callback(FlagStatus status);
  545. /**
  546. * @}
  547. */
  548. /** @defgroup SD_Exported_Functions_Group3 Peripheral Control functions
  549. * @{
  550. */
  551. HAL_StatusTypeDef HAL_SD_ConfigWideBusOperation(SD_HandleTypeDef *hsd, uint32_t WideMode);
  552. /**
  553. * @}
  554. */
  555. /** @defgroup SD_Exported_Functions_Group4 SD card related functions
  556. * @{
  557. */
  558. HAL_StatusTypeDef HAL_SD_SendSDStatus(SD_HandleTypeDef *hsd, uint32_t *pSDstatus);
  559. HAL_SD_CardStateTypedef HAL_SD_GetCardState(SD_HandleTypeDef *hsd);
  560. HAL_StatusTypeDef HAL_SD_GetCardCID(SD_HandleTypeDef *hsd, HAL_SD_CardCIDTypedef *pCID);
  561. HAL_StatusTypeDef HAL_SD_GetCardCSD(SD_HandleTypeDef *hsd, HAL_SD_CardCSDTypedef *pCSD);
  562. HAL_StatusTypeDef HAL_SD_GetCardStatus(SD_HandleTypeDef *hsd, HAL_SD_CardStatusTypedef *pStatus);
  563. HAL_StatusTypeDef HAL_SD_GetCardInfo(SD_HandleTypeDef *hsd, HAL_SD_CardInfoTypeDef *pCardInfo);
  564. /**
  565. * @}
  566. */
  567. /** @defgroup SD_Exported_Functions_Group5 Peripheral State and Errors functions
  568. * @{
  569. */
  570. HAL_SD_StateTypeDef HAL_SD_GetState(SD_HandleTypeDef *hsd);
  571. uint32_t HAL_SD_GetError(SD_HandleTypeDef *hsd);
  572. /**
  573. * @}
  574. */
  575. /** @defgroup SD_Exported_Functions_Group6 Perioheral Abort management
  576. * @{
  577. */
  578. HAL_StatusTypeDef HAL_SD_Abort(SD_HandleTypeDef *hsd);
  579. HAL_StatusTypeDef HAL_SD_Abort_IT(SD_HandleTypeDef *hsd);
  580. /**
  581. * @}
  582. */
  583. /* Private types -------------------------------------------------------------*/
  584. /** @defgroup SD_Private_Types SD Private Types
  585. * @{
  586. */
  587. /**
  588. * @}
  589. */
  590. /* Private defines -----------------------------------------------------------*/
  591. /** @defgroup SD_Private_Defines SD Private Defines
  592. * @{
  593. */
  594. /**
  595. * @}
  596. */
  597. /* Private variables ---------------------------------------------------------*/
  598. /** @defgroup SD_Private_Variables SD Private Variables
  599. * @{
  600. */
  601. /**
  602. * @}
  603. */
  604. /* Private constants ---------------------------------------------------------*/
  605. /** @defgroup SD_Private_Constants SD Private Constants
  606. * @{
  607. */
  608. /**
  609. * @}
  610. */
  611. /* Private macros ------------------------------------------------------------*/
  612. /** @defgroup SD_Private_Macros SD Private Macros
  613. * @{
  614. */
  615. /**
  616. * @}
  617. */
  618. /* Private functions prototypes ----------------------------------------------*/
  619. /** @defgroup SD_Private_Functions_Prototypes SD Private Functions Prototypes
  620. * @{
  621. */
  622. /**
  623. * @}
  624. */
  625. /* Private functions ---------------------------------------------------------*/
  626. /** @defgroup SD_Private_Functions SD Private Functions
  627. * @{
  628. */
  629. /**
  630. * @}
  631. */
  632. /**
  633. * @}
  634. */
  635. /**
  636. * @}
  637. */
  638. /**
  639. * @}
  640. */
  641. #ifdef __cplusplus
  642. }
  643. #endif
  644. #endif /* __STM32H7xx_HAL_SD_H */
  645. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/