Merge pull request #10592 from iNavFlight/MrD_Update-parameter-description
[inav.git] / lib / main / STM32F7 / Drivers / STM32F7xx_HAL_Driver / Inc / stm32f7xx_hal_sd.h
blobb6be1a394f04c7a15d52a4fb48b8677febf53871
1 /**
2 ******************************************************************************
3 * @file stm32f7xx_hal_sd.h
4 * @author MCD Application Team
5 * @version V1.2.2
6 * @date 14-April-2017
7 * @brief Header file of SD HAL module.
8 ******************************************************************************
9 * @attention
11 * <h2><center>&copy; COPYRIGHT(c) 2017 STMicroelectronics</center></h2>
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.
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.
35 ******************************************************************************
36 */
38 /* Define to prevent recursive inclusion -------------------------------------*/
39 #ifndef __STM32F7xx_HAL_SD_H
40 #define __STM32F7xx_HAL_SD_H
42 #ifdef __cplusplus
43 extern "C" {
44 #endif
46 /* Includes ------------------------------------------------------------------*/
47 #include "stm32f7xx_ll_sdmmc.h"
49 /** @addtogroup STM32F7xx_HAL_Driver
50 * @{
53 /** @defgroup SD SD
54 * @brief SD HAL module driver
55 * @{
56 */
58 /* Exported types ------------------------------------------------------------*/
59 /** @defgroup SD_Exported_Types SD Exported Types
60 * @{
63 /** @defgroup SD_Exported_Types_Group1 SD State enumeration structure
64 * @{
65 */
66 typedef enum
68 HAL_SD_STATE_RESET = ((uint32_t)0x00000000U), /*!< SD not yet initialized or disabled */
69 HAL_SD_STATE_READY = ((uint32_t)0x00000001U), /*!< SD initialized and ready for use */
70 HAL_SD_STATE_TIMEOUT = ((uint32_t)0x00000002U), /*!< SD Timeout state */
71 HAL_SD_STATE_BUSY = ((uint32_t)0x00000003U), /*!< SD process ongoing */
72 HAL_SD_STATE_PROGRAMMING = ((uint32_t)0x00000004U), /*!< SD Programming State */
73 HAL_SD_STATE_RECEIVING = ((uint32_t)0x00000005U), /*!< SD Receinving State */
74 HAL_SD_STATE_TRANSFER = ((uint32_t)0x00000006U), /*!< SD Transfert State */
75 HAL_SD_STATE_ERROR = ((uint32_t)0x0000000FU) /*!< SD is in error state */
76 }HAL_SD_StateTypeDef;
77 /**
78 * @}
81 /** @defgroup SD_Exported_Types_Group2 SD Card State enumeration structure
82 * @{
83 */
84 typedef enum
86 HAL_SD_CARD_READY = ((uint32_t)0x00000001U), /*!< Card state is ready */
87 HAL_SD_CARD_IDENTIFICATION = ((uint32_t)0x00000002U), /*!< Card is in identification state */
88 HAL_SD_CARD_STANDBY = ((uint32_t)0x00000003U), /*!< Card is in standby state */
89 HAL_SD_CARD_TRANSFER = ((uint32_t)0x00000004U), /*!< Card is in transfer state */
90 HAL_SD_CARD_SENDING = ((uint32_t)0x00000005U), /*!< Card is sending an operation */
91 HAL_SD_CARD_RECEIVING = ((uint32_t)0x00000006U), /*!< Card is receiving operation information */
92 HAL_SD_CARD_PROGRAMMING = ((uint32_t)0x00000007U), /*!< Card is in programming state */
93 HAL_SD_CARD_DISCONNECTED = ((uint32_t)0x00000008U), /*!< Card is disconnected */
94 HAL_SD_CARD_ERROR = ((uint32_t)0x000000FFU) /*!< Card response Error */
95 }HAL_SD_CardStateTypeDef;
96 /**
97 * @}
100 /** @defgroup SD_Exported_Types_Group3 SD Handle Structure definition
101 * @{
103 #define SD_InitTypeDef SDMMC_InitTypeDef
104 #define SD_TypeDef SDMMC_TypeDef
106 /**
107 * @brief SD Card Information Structure definition
109 typedef struct
111 uint32_t CardType; /*!< Specifies the card Type */
113 uint32_t CardVersion; /*!< Specifies the card version */
115 uint32_t Class; /*!< Specifies the class of the card class */
117 uint32_t RelCardAdd; /*!< Specifies the Relative Card Address */
119 uint32_t BlockNbr; /*!< Specifies the Card Capacity in blocks */
121 uint32_t BlockSize; /*!< Specifies one block size in bytes */
123 uint32_t LogBlockNbr; /*!< Specifies the Card logical Capacity in blocks */
125 uint32_t LogBlockSize; /*!< Specifies logical block size in bytes */
127 }HAL_SD_CardInfoTypeDef;
129 /**
130 * @brief SD handle Structure definition
132 typedef struct
134 SD_TypeDef *Instance; /*!< SD registers base address */
136 SD_InitTypeDef Init; /*!< SD required parameters */
138 HAL_LockTypeDef Lock; /*!< SD locking object */
140 uint32_t *pTxBuffPtr; /*!< Pointer to SD Tx transfer Buffer */
142 uint32_t TxXferSize; /*!< SD Tx Transfer size */
144 uint32_t *pRxBuffPtr; /*!< Pointer to SD Rx transfer Buffer */
146 uint32_t RxXferSize; /*!< SD Rx Transfer size */
148 __IO uint32_t Context; /*!< SD transfer context */
150 __IO HAL_SD_StateTypeDef State; /*!< SD card State */
152 __IO uint32_t ErrorCode; /*!< SD Card Error codes */
154 DMA_HandleTypeDef *hdmarx; /*!< SD Rx DMA handle parameters */
156 DMA_HandleTypeDef *hdmatx; /*!< SD Tx DMA handle parameters */
158 HAL_SD_CardInfoTypeDef SdCard; /*!< SD Card information */
160 uint32_t CSD[4]; /*!< SD card specific data table */
162 uint32_t CID[4]; /*!< SD card identification number table */
164 }SD_HandleTypeDef;
166 /**
167 * @}
170 /** @defgroup SD_Exported_Types_Group4 Card Specific Data: CSD Register
171 * @{
173 typedef struct
175 __IO uint8_t CSDStruct; /*!< CSD structure */
176 __IO uint8_t SysSpecVersion; /*!< System specification version */
177 __IO uint8_t Reserved1; /*!< Reserved */
178 __IO uint8_t TAAC; /*!< Data read access time 1 */
179 __IO uint8_t NSAC; /*!< Data read access time 2 in CLK cycles */
180 __IO uint8_t MaxBusClkFrec; /*!< Max. bus clock frequency */
181 __IO uint16_t CardComdClasses; /*!< Card command classes */
182 __IO uint8_t RdBlockLen; /*!< Max. read data block length */
183 __IO uint8_t PartBlockRead; /*!< Partial blocks for read allowed */
184 __IO uint8_t WrBlockMisalign; /*!< Write block misalignment */
185 __IO uint8_t RdBlockMisalign; /*!< Read block misalignment */
186 __IO uint8_t DSRImpl; /*!< DSR implemented */
187 __IO uint8_t Reserved2; /*!< Reserved */
188 __IO uint32_t DeviceSize; /*!< Device Size */
189 __IO uint8_t MaxRdCurrentVDDMin; /*!< Max. read current @ VDD min */
190 __IO uint8_t MaxRdCurrentVDDMax; /*!< Max. read current @ VDD max */
191 __IO uint8_t MaxWrCurrentVDDMin; /*!< Max. write current @ VDD min */
192 __IO uint8_t MaxWrCurrentVDDMax; /*!< Max. write current @ VDD max */
193 __IO uint8_t DeviceSizeMul; /*!< Device size multiplier */
194 __IO uint8_t EraseGrSize; /*!< Erase group size */
195 __IO uint8_t EraseGrMul; /*!< Erase group size multiplier */
196 __IO uint8_t WrProtectGrSize; /*!< Write protect group size */
197 __IO uint8_t WrProtectGrEnable; /*!< Write protect group enable */
198 __IO uint8_t ManDeflECC; /*!< Manufacturer default ECC */
199 __IO uint8_t WrSpeedFact; /*!< Write speed factor */
200 __IO uint8_t MaxWrBlockLen; /*!< Max. write data block length */
201 __IO uint8_t WriteBlockPaPartial; /*!< Partial blocks for write allowed */
202 __IO uint8_t Reserved3; /*!< Reserved */
203 __IO uint8_t ContentProtectAppli; /*!< Content protection application */
204 __IO uint8_t FileFormatGrouop; /*!< File format group */
205 __IO uint8_t CopyFlag; /*!< Copy flag (OTP) */
206 __IO uint8_t PermWrProtect; /*!< Permanent write protection */
207 __IO uint8_t TempWrProtect; /*!< Temporary write protection */
208 __IO uint8_t FileFormat; /*!< File format */
209 __IO uint8_t ECC; /*!< ECC code */
210 __IO uint8_t CSD_CRC; /*!< CSD CRC */
211 __IO uint8_t Reserved4; /*!< Always 1 */
213 }HAL_SD_CardCSDTypeDef;
214 /**
215 * @}
218 /** @defgroup SD_Exported_Types_Group5 Card Identification Data: CID Register
219 * @{
221 typedef struct
223 __IO uint8_t ManufacturerID; /*!< Manufacturer ID */
224 __IO uint16_t OEM_AppliID; /*!< OEM/Application ID */
225 __IO uint32_t ProdName1; /*!< Product Name part1 */
226 __IO uint8_t ProdName2; /*!< Product Name part2 */
227 __IO uint8_t ProdRev; /*!< Product Revision */
228 __IO uint32_t ProdSN; /*!< Product Serial Number */
229 __IO uint8_t Reserved1; /*!< Reserved1 */
230 __IO uint16_t ManufactDate; /*!< Manufacturing Date */
231 __IO uint8_t CID_CRC; /*!< CID CRC */
232 __IO uint8_t Reserved2; /*!< Always 1 */
234 }HAL_SD_CardCIDTypeDef;
235 /**
236 * @}
239 /** @defgroup SD_Exported_Types_Group6 SD Card Status returned by ACMD13
240 * @{
242 typedef struct
244 __IO uint8_t DataBusWidth; /*!< Shows the currently defined data bus width */
245 __IO uint8_t SecuredMode; /*!< Card is in secured mode of operation */
246 __IO uint16_t CardType; /*!< Carries information about card type */
247 __IO uint32_t ProtectedAreaSize; /*!< Carries information about the capacity of protected area */
248 __IO uint8_t SpeedClass; /*!< Carries information about the speed class of the card */
249 __IO uint8_t PerformanceMove; /*!< Carries information about the card's performance move */
250 __IO uint8_t AllocationUnitSize; /*!< Carries information about the card's allocation unit size */
251 __IO uint16_t EraseSize; /*!< Determines the number of AUs to be erased in one operation */
252 __IO uint8_t EraseTimeout; /*!< Determines the timeout for any number of AU erase */
253 __IO uint8_t EraseOffset; /*!< Carries information about the erase offset */
255 }HAL_SD_CardStatusTypeDef;
256 /**
257 * @}
260 /**
261 * @}
264 /* Exported constants --------------------------------------------------------*/
265 /** @defgroup SD_Exported_Constants Exported Constants
266 * @{
269 #define BLOCKSIZE ((uint32_t)512U) /*!< Block size is 512 bytes */
271 /** @defgroup SD_Exported_Constansts_Group1 SD Error status enumeration Structure definition
272 * @{
274 #define HAL_SD_ERROR_NONE SDMMC_ERROR_NONE /*!< No error */
275 #define HAL_SD_ERROR_CMD_CRC_FAIL SDMMC_ERROR_CMD_CRC_FAIL /*!< Command response received (but CRC check failed) */
276 #define HAL_SD_ERROR_DATA_CRC_FAIL SDMMC_ERROR_DATA_CRC_FAIL /*!< Data block sent/received (CRC check failed) */
277 #define HAL_SD_ERROR_CMD_RSP_TIMEOUT SDMMC_ERROR_CMD_RSP_TIMEOUT /*!< Command response timeout */
278 #define HAL_SD_ERROR_DATA_TIMEOUT SDMMC_ERROR_DATA_TIMEOUT /*!< Data timeout */
279 #define HAL_SD_ERROR_TX_UNDERRUN SDMMC_ERROR_TX_UNDERRUN /*!< Transmit FIFO underrun */
280 #define HAL_SD_ERROR_RX_OVERRUN SDMMC_ERROR_RX_OVERRUN /*!< Receive FIFO overrun */
281 #define HAL_SD_ERROR_ADDR_MISALIGNED SDMMC_ERROR_ADDR_MISALIGNED /*!< Misaligned address */
282 #define HAL_SD_ERROR_BLOCK_LEN_ERR SDMMC_ERROR_BLOCK_LEN_ERR /*!< Transferred block length is not allowed for the card or the
283 number of transferred bytes does not match the block length */
284 #define HAL_SD_ERROR_ERASE_SEQ_ERR SDMMC_ERROR_ERASE_SEQ_ERR /*!< An error in the sequence of erase command occurs */
285 #define HAL_SD_ERROR_BAD_ERASE_PARAM SDMMC_ERROR_BAD_ERASE_PARAM /*!< An invalid selection for erase groups */
286 #define HAL_SD_ERROR_WRITE_PROT_VIOLATION SDMMC_ERROR_WRITE_PROT_VIOLATION /*!< Attempt to program a write protect block */
287 #define HAL_SD_ERROR_LOCK_UNLOCK_FAILED SDMMC_ERROR_LOCK_UNLOCK_FAILED /*!< Sequence or password error has been detected in unlock
288 command or if there was an attempt to access a locked card */
289 #define HAL_SD_ERROR_COM_CRC_FAILED SDMMC_ERROR_COM_CRC_FAILED /*!< CRC check of the previous command failed */
290 #define HAL_SD_ERROR_ILLEGAL_CMD SDMMC_ERROR_ILLEGAL_CMD /*!< Command is not legal for the card state */
291 #define HAL_SD_ERROR_CARD_ECC_FAILED SDMMC_ERROR_CARD_ECC_FAILED /*!< Card internal ECC was applied but failed to correct the data */
292 #define HAL_SD_ERROR_CC_ERR SDMMC_ERROR_CC_ERR /*!< Internal card controller error */
293 #define HAL_SD_ERROR_GENERAL_UNKNOWN_ERR SDMMC_ERROR_GENERAL_UNKNOWN_ERR /*!< General or unknown error */
294 #define HAL_SD_ERROR_STREAM_READ_UNDERRUN SDMMC_ERROR_STREAM_READ_UNDERRUN /*!< The card could not sustain data reading in stream rmode */
295 #define HAL_SD_ERROR_STREAM_WRITE_OVERRUN SDMMC_ERROR_STREAM_WRITE_OVERRUN /*!< The card could not sustain data programming in stream mode */
296 #define HAL_SD_ERROR_CID_CSD_OVERWRITE SDMMC_ERROR_CID_CSD_OVERWRITE /*!< CID/CSD overwrite error */
297 #define HAL_SD_ERROR_WP_ERASE_SKIP SDMMC_ERROR_WP_ERASE_SKIP /*!< Only partial address space was erased */
298 #define HAL_SD_ERROR_CARD_ECC_DISABLED SDMMC_ERROR_CARD_ECC_DISABLED /*!< Command has been executed without using internal ECC */
299 #define HAL_SD_ERROR_ERASE_RESET SDMMC_ERROR_ERASE_RESET /*!< Erase sequence was cleared before executing because an out
300 of erase sequence command was received */
301 #define HAL_SD_ERROR_AKE_SEQ_ERR SDMMC_ERROR_AKE_SEQ_ERR /*!< Error in sequence of authentication */
302 #define HAL_SD_ERROR_INVALID_VOLTRANGE SDMMC_ERROR_INVALID_VOLTRANGE /*!< Error in case of invalid voltage range */
303 #define HAL_SD_ERROR_ADDR_OUT_OF_RANGE SDMMC_ERROR_ADDR_OUT_OF_RANGE /*!< Error when addressed block is out of range */
304 #define HAL_SD_ERROR_REQUEST_NOT_APPLICABLE SDMMC_ERROR_REQUEST_NOT_APPLICABLE /*!< Error when command request is not applicable */
305 #define HAL_SD_ERROR_PARAM SDMMC_ERROR_INVALID_PARAMETER /*!< the used parameter is not valid */
306 #define HAL_SD_ERROR_UNSUPPORTED_FEATURE SDMMC_ERROR_UNSUPPORTED_FEATURE /*!< Error when feature is not insupported */
307 #define HAL_SD_ERROR_BUSY SDMMC_ERROR_BUSY /*!< Error when transfer process is busy */
308 #define HAL_SD_ERROR_DMA SDMMC_ERROR_DMA /*!< Error while DMA transfer */
309 #define HAL_SD_ERROR_TIMEOUT SDMMC_ERROR_TIMEOUT /*!< Timeout error */
311 /**
312 * @}
315 /** @defgroup SD_Exported_Constansts_Group2 SD context enumeration
316 * @{
318 #define SD_CONTEXT_NONE ((uint32_t)0x00000000U) /*!< None */
319 #define SD_CONTEXT_READ_SINGLE_BLOCK ((uint32_t)0x00000001U) /*!< Read single block operation */
320 #define SD_CONTEXT_READ_MULTIPLE_BLOCK ((uint32_t)0x00000002U) /*!< Read multiple blocks operation */
321 #define SD_CONTEXT_WRITE_SINGLE_BLOCK ((uint32_t)0x00000010U) /*!< Write single block operation */
322 #define SD_CONTEXT_WRITE_MULTIPLE_BLOCK ((uint32_t)0x00000020U) /*!< Write multiple blocks operation */
323 #define SD_CONTEXT_IT ((uint32_t)0x00000008U) /*!< Process in Interrupt mode */
324 #define SD_CONTEXT_DMA ((uint32_t)0x00000080U) /*!< Process in DMA mode */
327 * @}
330 /** @defgroup SD_Exported_Constansts_Group3 SD Supported Memory Cards
331 * @{
333 #define CARD_SDSC ((uint32_t)0x00000000U)
334 #define CARD_SDHC_SDXC ((uint32_t)0x00000001U)
335 #define CARD_SECURED ((uint32_t)0x00000003U)
338 * @}
341 /** @defgroup SD_Exported_Constansts_Group4 SD Supported Version
342 * @{
344 #define CARD_V1_X ((uint32_t)0x00000000U)
345 #define CARD_V2_X ((uint32_t)0x00000001U)
347 * @}
351 * @}
354 /* Exported macro ------------------------------------------------------------*/
355 /** @defgroup SD_Exported_macros SD Exported Macros
356 * @brief macros to handle interrupts and specific clock configurations
357 * @{
361 * @brief Enable the SD device.
362 * @retval None
364 #define __HAL_SD_ENABLE(__HANDLE__) __SDMMC_ENABLE((__HANDLE__)->Instance)
367 * @brief Disable the SD device.
368 * @retval None
370 #define __HAL_SD_DISABLE(__HANDLE__) __SDMMC_DISABLE((__HANDLE__)->Instance)
373 * @brief Enable the SDMMC DMA transfer.
374 * @retval None
376 #define __HAL_SD_DMA_ENABLE(__HANDLE__) __SDMMC_DMA_ENABLE((__HANDLE__)->Instance)
379 * @brief Disable the SDMMC DMA transfer.
380 * @retval None
382 #define __HAL_SD_DMA_DISABLE(__HANDLE__) __SDMMC_DMA_DISABLE((__HANDLE__)->Instance)
385 * @brief Enable the SD device interrupt.
386 * @param __HANDLE__: SD Handle
387 * @param __INTERRUPT__: specifies the SDMMC interrupt sources to be enabled.
388 * This parameter can be one or a combination of the following values:
389 * @arg SDMMC_IT_CCRCFAIL: Command response received (CRC check failed) interrupt
390 * @arg SDMMC_IT_DCRCFAIL: Data block sent/received (CRC check failed) interrupt
391 * @arg SDMMC_IT_CTIMEOUT: Command response timeout interrupt
392 * @arg SDMMC_IT_DTIMEOUT: Data timeout interrupt
393 * @arg SDMMC_IT_TXUNDERR: Transmit FIFO underrun error interrupt
394 * @arg SDMMC_IT_RXOVERR: Received FIFO overrun error interrupt
395 * @arg SDMMC_IT_CMDREND: Command response received (CRC check passed) interrupt
396 * @arg SDMMC_IT_CMDSENT: Command sent (no response required) interrupt
397 * @arg SDMMC_IT_DATAEND: Data end (data counter, SDIDCOUNT, is zero) interrupt
398 * @arg SDMMC_IT_DBCKEND: Data block sent/received (CRC check passed) interrupt
399 * @arg SDMMC_IT_CMDACT: Command transfer in progress interrupt
400 * @arg SDMMC_IT_TXACT: Data transmit in progress interrupt
401 * @arg SDMMC_IT_RXACT: Data receive in progress interrupt
402 * @arg SDMMC_IT_TXFIFOHE: Transmit FIFO Half Empty interrupt
403 * @arg SDMMC_IT_RXFIFOHF: Receive FIFO Half Full interrupt
404 * @arg SDMMC_IT_TXFIFOF: Transmit FIFO full interrupt
405 * @arg SDMMC_IT_RXFIFOF: Receive FIFO full interrupt
406 * @arg SDMMC_IT_TXFIFOE: Transmit FIFO empty interrupt
407 * @arg SDMMC_IT_RXFIFOE: Receive FIFO empty interrupt
408 * @arg SDMMC_IT_TXDAVL: Data available in transmit FIFO interrupt
409 * @arg SDMMC_IT_RXDAVL: Data available in receive FIFO interrupt
410 * @arg SDMMC_IT_SDIOIT: SD I/O interrupt received interrupt
411 * @retval None
413 #define __HAL_SD_ENABLE_IT(__HANDLE__, __INTERRUPT__) __SDMMC_ENABLE_IT((__HANDLE__)->Instance, (__INTERRUPT__))
416 * @brief Disable the SD device interrupt.
417 * @param __HANDLE__: SD Handle
418 * @param __INTERRUPT__: specifies the SDMMC interrupt sources to be disabled.
419 * This parameter can be one or a combination of the following values:
420 * @arg SDMMC_IT_CCRCFAIL: Command response received (CRC check failed) interrupt
421 * @arg SDMMC_IT_DCRCFAIL: Data block sent/received (CRC check failed) interrupt
422 * @arg SDMMC_IT_CTIMEOUT: Command response timeout interrupt
423 * @arg SDMMC_IT_DTIMEOUT: Data timeout interrupt
424 * @arg SDMMC_IT_TXUNDERR: Transmit FIFO underrun error interrupt
425 * @arg SDMMC_IT_RXOVERR: Received FIFO overrun error interrupt
426 * @arg SDMMC_IT_CMDREND: Command response received (CRC check passed) interrupt
427 * @arg SDMMC_IT_CMDSENT: Command sent (no response required) interrupt
428 * @arg SDMMC_IT_DATAEND: Data end (data counter, SDIDCOUNT, is zero) interrupt
429 * @arg SDMMC_IT_DBCKEND: Data block sent/received (CRC check passed) interrupt
430 * @arg SDMMC_IT_CMDACT: Command transfer in progress interrupt
431 * @arg SDMMC_IT_TXACT: Data transmit in progress interrupt
432 * @arg SDMMC_IT_RXACT: Data receive in progress interrupt
433 * @arg SDMMC_IT_TXFIFOHE: Transmit FIFO Half Empty interrupt
434 * @arg SDMMC_IT_RXFIFOHF: Receive FIFO Half Full interrupt
435 * @arg SDMMC_IT_TXFIFOF: Transmit FIFO full interrupt
436 * @arg SDMMC_IT_RXFIFOF: Receive FIFO full interrupt
437 * @arg SDMMC_IT_TXFIFOE: Transmit FIFO empty interrupt
438 * @arg SDMMC_IT_RXFIFOE: Receive FIFO empty interrupt
439 * @arg SDMMC_IT_TXDAVL: Data available in transmit FIFO interrupt
440 * @arg SDMMC_IT_RXDAVL: Data available in receive FIFO interrupt
441 * @arg SDMMC_IT_SDIOIT: SD I/O interrupt received interrupt
442 * @retval None
444 #define __HAL_SD_DISABLE_IT(__HANDLE__, __INTERRUPT__) __SDMMC_DISABLE_IT((__HANDLE__)->Instance, (__INTERRUPT__))
447 * @brief Check whether the specified SD flag is set or not.
448 * @param __HANDLE__: SD Handle
449 * @param __FLAG__: specifies the flag to check.
450 * This parameter can be one of the following values:
451 * @arg SDMMC_FLAG_CCRCFAIL: Command response received (CRC check failed)
452 * @arg SDMMC_FLAG_DCRCFAIL: Data block sent/received (CRC check failed)
453 * @arg SDMMC_FLAG_CTIMEOUT: Command response timeout
454 * @arg SDMMC_FLAG_DTIMEOUT: Data timeout
455 * @arg SDMMC_FLAG_TXUNDERR: Transmit FIFO underrun error
456 * @arg SDMMC_FLAG_RXOVERR: Received FIFO overrun error
457 * @arg SDMMC_FLAG_CMDREND: Command response received (CRC check passed)
458 * @arg SDMMC_FLAG_CMDSENT: Command sent (no response required)
459 * @arg SDMMC_FLAG_DATAEND: Data end (data counter, SDIDCOUNT, is zero)
460 * @arg SDMMC_FLAG_DBCKEND: Data block sent/received (CRC check passed)
461 * @arg SDMMC_FLAG_CMDACT: Command transfer in progress
462 * @arg SDMMC_FLAG_TXACT: Data transmit in progress
463 * @arg SDMMC_FLAG_RXACT: Data receive in progress
464 * @arg SDMMC_FLAG_TXFIFOHE: Transmit FIFO Half Empty
465 * @arg SDMMC_FLAG_RXFIFOHF: Receive FIFO Half Full
466 * @arg SDMMC_FLAG_TXFIFOF: Transmit FIFO full
467 * @arg SDMMC_FLAG_RXFIFOF: Receive FIFO full
468 * @arg SDMMC_FLAG_TXFIFOE: Transmit FIFO empty
469 * @arg SDMMC_FLAG_RXFIFOE: Receive FIFO empty
470 * @arg SDMMC_FLAG_TXDAVL: Data available in transmit FIFO
471 * @arg SDMMC_FLAG_RXDAVL: Data available in receive FIFO
472 * @arg SDMMC_FLAG_SDIOIT: SD I/O interrupt received
473 * @retval The new state of SD FLAG (SET or RESET).
475 #define __HAL_SD_GET_FLAG(__HANDLE__, __FLAG__) __SDMMC_GET_FLAG((__HANDLE__)->Instance, (__FLAG__))
478 * @brief Clear the SD's pending flags.
479 * @param __HANDLE__: SD Handle
480 * @param __FLAG__: specifies the flag to clear.
481 * This parameter can be one or a combination of the following values:
482 * @arg SDMMC_FLAG_CCRCFAIL: Command response received (CRC check failed)
483 * @arg SDMMC_FLAG_DCRCFAIL: Data block sent/received (CRC check failed)
484 * @arg SDMMC_FLAG_CTIMEOUT: Command response timeout
485 * @arg SDMMC_FLAG_DTIMEOUT: Data timeout
486 * @arg SDMMC_FLAG_TXUNDERR: Transmit FIFO underrun error
487 * @arg SDMMC_FLAG_RXOVERR: Received FIFO overrun error
488 * @arg SDMMC_FLAG_CMDREND: Command response received (CRC check passed)
489 * @arg SDMMC_FLAG_CMDSENT: Command sent (no response required)
490 * @arg SDMMC_FLAG_DATAEND: Data end (data counter, SDIDCOUNT, is zero)
491 * @arg SDMMC_FLAG_DBCKEND: Data block sent/received (CRC check passed)
492 * @arg SDMMC_FLAG_SDIOIT: SD I/O interrupt received
493 * @retval None
495 #define __HAL_SD_CLEAR_FLAG(__HANDLE__, __FLAG__) __SDMMC_CLEAR_FLAG((__HANDLE__)->Instance, (__FLAG__))
498 * @brief Check whether the specified SD interrupt has occurred or not.
499 * @param __HANDLE__: SD Handle
500 * @param __INTERRUPT__: specifies the SDMMC interrupt source to check.
501 * This parameter can be one of the following values:
502 * @arg SDMMC_IT_CCRCFAIL: Command response received (CRC check failed) interrupt
503 * @arg SDMMC_IT_DCRCFAIL: Data block sent/received (CRC check failed) interrupt
504 * @arg SDMMC_IT_CTIMEOUT: Command response timeout interrupt
505 * @arg SDMMC_IT_DTIMEOUT: Data timeout interrupt
506 * @arg SDMMC_IT_TXUNDERR: Transmit FIFO underrun error interrupt
507 * @arg SDMMC_IT_RXOVERR: Received FIFO overrun error interrupt
508 * @arg SDMMC_IT_CMDREND: Command response received (CRC check passed) interrupt
509 * @arg SDMMC_IT_CMDSENT: Command sent (no response required) interrupt
510 * @arg SDMMC_IT_DATAEND: Data end (data counter, SDIDCOUNT, is zero) interrupt
511 * @arg SDMMC_IT_DBCKEND: Data block sent/received (CRC check passed) interrupt
512 * @arg SDMMC_IT_CMDACT: Command transfer in progress interrupt
513 * @arg SDMMC_IT_TXACT: Data transmit in progress interrupt
514 * @arg SDMMC_IT_RXACT: Data receive in progress interrupt
515 * @arg SDMMC_IT_TXFIFOHE: Transmit FIFO Half Empty interrupt
516 * @arg SDMMC_IT_RXFIFOHF: Receive FIFO Half Full interrupt
517 * @arg SDMMC_IT_TXFIFOF: Transmit FIFO full interrupt
518 * @arg SDMMC_IT_RXFIFOF: Receive FIFO full interrupt
519 * @arg SDMMC_IT_TXFIFOE: Transmit FIFO empty interrupt
520 * @arg SDMMC_IT_RXFIFOE: Receive FIFO empty interrupt
521 * @arg SDMMC_IT_TXDAVL: Data available in transmit FIFO interrupt
522 * @arg SDMMC_IT_RXDAVL: Data available in receive FIFO interrupt
523 * @arg SDMMC_IT_SDIOIT: SD I/O interrupt received interrupt
524 * @retval The new state of SD IT (SET or RESET).
526 #define __HAL_SD_GET_IT(__HANDLE__, __INTERRUPT__) __SDMMC_GET_IT((__HANDLE__)->Instance, (__INTERRUPT__))
529 * @brief Clear the SD's interrupt pending bits.
530 * @param __HANDLE__: SD Handle
531 * @param __INTERRUPT__: specifies the interrupt pending bit to clear.
532 * This parameter can be one or a combination of the following values:
533 * @arg SDMMC_IT_CCRCFAIL: Command response received (CRC check failed) interrupt
534 * @arg SDMMC_IT_DCRCFAIL: Data block sent/received (CRC check failed) interrupt
535 * @arg SDMMC_IT_CTIMEOUT: Command response timeout interrupt
536 * @arg SDMMC_IT_DTIMEOUT: Data timeout interrupt
537 * @arg SDMMC_IT_TXUNDERR: Transmit FIFO underrun error interrupt
538 * @arg SDMMC_IT_RXOVERR: Received FIFO overrun error interrupt
539 * @arg SDMMC_IT_CMDREND: Command response received (CRC check passed) interrupt
540 * @arg SDMMC_IT_CMDSENT: Command sent (no response required) interrupt
541 * @arg SDMMC_IT_DATAEND: Data end (data counter, SDMMC_DCOUNT, is zero) interrupt
542 * @arg SDMMC_IT_SDIOIT: SD I/O interrupt received interrupt
543 * @retval None
545 #define __HAL_SD_CLEAR_IT(__HANDLE__, __INTERRUPT__) __SDMMC_CLEAR_IT((__HANDLE__)->Instance, (__INTERRUPT__))
548 * @}
551 /* Exported functions --------------------------------------------------------*/
552 /** @defgroup SD_Exported_Functions SD Exported Functions
553 * @{
556 /** @defgroup SD_Exported_Functions_Group1 Initialization and de-initialization functions
557 * @{
559 HAL_StatusTypeDef HAL_SD_Init(SD_HandleTypeDef *hsd);
560 HAL_StatusTypeDef HAL_SD_InitCard(SD_HandleTypeDef *hsd);
561 HAL_StatusTypeDef HAL_SD_DeInit (SD_HandleTypeDef *hsd);
562 void HAL_SD_MspInit(SD_HandleTypeDef *hsd);
563 void HAL_SD_MspDeInit(SD_HandleTypeDef *hsd);
565 * @}
568 /** @defgroup SD_Exported_Functions_Group2 Input and Output operation functions
569 * @{
571 /* Blocking mode: Polling */
572 HAL_StatusTypeDef HAL_SD_ReadBlocks(SD_HandleTypeDef *hsd, uint8_t *pData, uint32_t BlockAdd, uint32_t NumberOfBlocks, uint32_t Timeout);
573 HAL_StatusTypeDef HAL_SD_WriteBlocks(SD_HandleTypeDef *hsd, uint8_t *pData, uint32_t BlockAdd, uint32_t NumberOfBlocks, uint32_t Timeout);
574 HAL_StatusTypeDef HAL_SD_Erase(SD_HandleTypeDef *hsd, uint32_t BlockStartAdd, uint32_t BlockEndAdd);
575 /* Non-Blocking mode: IT */
576 HAL_StatusTypeDef HAL_SD_ReadBlocks_IT(SD_HandleTypeDef *hsd, uint8_t *pData, uint32_t BlockAdd, uint32_t NumberOfBlocks);
577 HAL_StatusTypeDef HAL_SD_WriteBlocks_IT(SD_HandleTypeDef *hsd, uint8_t *pData, uint32_t BlockAdd, uint32_t NumberOfBlocks);
578 /* Non-Blocking mode: DMA */
579 HAL_StatusTypeDef HAL_SD_ReadBlocks_DMA(SD_HandleTypeDef *hsd, uint8_t *pData, uint32_t BlockAdd, uint32_t NumberOfBlocks);
580 HAL_StatusTypeDef HAL_SD_WriteBlocks_DMA(SD_HandleTypeDef *hsd, uint8_t *pData, uint32_t BlockAdd, uint32_t NumberOfBlocks);
582 void HAL_SD_IRQHandler(SD_HandleTypeDef *hsd);
584 /* Callback in non blocking modes (DMA) */
585 void HAL_SD_TxCpltCallback(SD_HandleTypeDef *hsd);
586 void HAL_SD_RxCpltCallback(SD_HandleTypeDef *hsd);
587 void HAL_SD_ErrorCallback(SD_HandleTypeDef *hsd);
588 void HAL_SD_AbortCallback(SD_HandleTypeDef *hsd);
590 * @}
593 /** @defgroup SD_Exported_Functions_Group3 Peripheral Control functions
594 * @{
596 HAL_StatusTypeDef HAL_SD_ConfigWideBusOperation(SD_HandleTypeDef *hsd, uint32_t WideMode);
598 * @}
601 /** @defgroup SD_Exported_Functions_Group4 SD card related functions
602 * @{
604 HAL_StatusTypeDef HAL_SD_SendSDStatus(SD_HandleTypeDef *hsd, uint32_t *pSDstatus);
605 HAL_SD_CardStateTypeDef HAL_SD_GetCardState(SD_HandleTypeDef *hsd);
606 HAL_StatusTypeDef HAL_SD_GetCardCID(SD_HandleTypeDef *hsd, HAL_SD_CardCIDTypeDef *pCID);
607 HAL_StatusTypeDef HAL_SD_GetCardCSD(SD_HandleTypeDef *hsd, HAL_SD_CardCSDTypeDef *pCSD);
608 HAL_StatusTypeDef HAL_SD_GetCardStatus(SD_HandleTypeDef *hsd, HAL_SD_CardStatusTypeDef *pStatus);
609 HAL_StatusTypeDef HAL_SD_GetCardInfo(SD_HandleTypeDef *hsd, HAL_SD_CardInfoTypeDef *pCardInfo);
611 * @}
614 /** @defgroup SD_Exported_Functions_Group5 Peripheral State and Errors functions
615 * @{
617 HAL_SD_StateTypeDef HAL_SD_GetState(SD_HandleTypeDef *hsd);
618 uint32_t HAL_SD_GetError(SD_HandleTypeDef *hsd);
620 * @}
623 /** @defgroup SD_Exported_Functions_Group6 Perioheral Abort management
624 * @{
626 HAL_StatusTypeDef HAL_SD_Abort(SD_HandleTypeDef *hsd);
627 HAL_StatusTypeDef HAL_SD_Abort_IT(SD_HandleTypeDef *hsd);
629 * @}
632 /* Private types -------------------------------------------------------------*/
633 /** @defgroup SD_Private_Types SD Private Types
634 * @{
638 * @}
641 /* Private defines -----------------------------------------------------------*/
642 /** @defgroup SD_Private_Defines SD Private Defines
643 * @{
647 * @}
650 /* Private variables ---------------------------------------------------------*/
651 /** @defgroup SD_Private_Variables SD Private Variables
652 * @{
656 * @}
659 /* Private constants ---------------------------------------------------------*/
660 /** @defgroup SD_Private_Constants SD Private Constants
661 * @{
665 * @}
668 /* Private macros ------------------------------------------------------------*/
669 /** @defgroup SD_Private_Macros SD Private Macros
670 * @{
674 * @}
677 /* Private functions prototypes ----------------------------------------------*/
678 /** @defgroup SD_Private_Functions_Prototypes SD Private Functions Prototypes
679 * @{
683 * @}
686 /* Private functions ---------------------------------------------------------*/
687 /** @defgroup SD_Private_Functions SD Private Functions
688 * @{
692 * @}
697 * @}
701 * @}
705 * @}
709 #ifdef __cplusplus
711 #endif
714 #endif /* __STM32F7xx_HAL_SD_H */
716 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/