2 ******************************************************************************
3 * @file stm32f4xx_ll_sdmmc.c
4 * @author MCD Application Team
7 * @brief SDMMC Low Layer HAL module driver.
9 * This file provides firmware functions to manage the following
10 * functionalities of the SDMMC peripheral:
11 * + Initialization/de-initialization functions
12 * + I/O operation functions
13 * + Peripheral Control functions
14 * + Peripheral State functions
17 ==============================================================================
18 ##### SDMMC peripheral features #####
19 ==============================================================================
20 [..] The SD/SDMMC MMC card host interface (SDMMC) provides an interface between the APB2
21 peripheral bus and MultiMedia cards (MMCs), SD memory cards, SDMMC cards and CE-ATA
24 [..] The SDMMC features include the following:
25 (+) Full compliance with MultiMedia Card System Specification Version 4.2. Card support
26 for three different databus modes: 1-bit (default), 4-bit and 8-bit
27 (+) Full compatibility with previous versions of MultiMedia Cards (forward compatibility)
28 (+) Full compliance with SD Memory Card Specifications Version 2.0
29 (+) Full compliance with SD I/O Card Specification Version 2.0: card support for two
30 different data bus modes: 1-bit (default) and 4-bit
31 (+) Full support of the CE-ATA features (full compliance with CE-ATA digital protocol
33 (+) Data transfer up to 48 MHz for the 8 bit mode
34 (+) Data and command output enable signals to control external bidirectional drivers.
37 ##### How to use this driver #####
38 ==============================================================================
40 This driver is a considered as a driver of service for external devices drivers
41 that interfaces with the SDMMC peripheral.
42 According to the device used (SD card/ MMC card / SDMMC card ...), a set of APIs
43 is used in the device's driver to perform SDMMC operations and functionalities.
45 This driver is almost transparent for the final user, it is only used to implement other
46 functionalities of the external device.
49 (+) The SDMMC clock (SDMMCCLK = 48 MHz) is coming from a specific output of PLL
50 (PLL48CLK). Before start working with SDMMC peripheral make sure that the
51 PLL is well configured.
52 The SDMMC peripheral uses two clock signals:
53 (++) SDMMC adapter clock (SDMMCCLK = 48 MHz)
54 (++) APB2 bus clock (PCLK2)
56 -@@- PCLK2 and SDMMC_CK clock frequencies must respect the following condition:
57 Frequency(PCLK2) >= (3 / 8 x Frequency(SDMMC_CK))
59 (+) Enable/Disable peripheral clock using RCC peripheral macros related to SDMMC
62 (+) Enable the Power ON State using the SDIO_PowerState_ON(SDIOx)
63 function and disable it using the function SDIO_PowerState_ON(SDIOx).
65 (+) Enable/Disable the clock using the __SDIO_ENABLE()/__SDIO_DISABLE() macros.
67 (+) Enable/Disable the peripheral interrupts using the macros __SDIO_ENABLE_IT(hSDIO, IT)
68 and __SDIO_DISABLE_IT(hSDIO, IT) if you need to use interrupt mode.
70 (+) When using the DMA mode
71 (++) Configure the DMA in the MSP layer of the external device
72 (++) Active the needed channel Request
73 (++) Enable the DMA using __SDIO_DMA_ENABLE() macro or Disable it using the macro
76 (+) To control the CPSM (Command Path State Machine) and send
77 commands to the card use the SDIO_SendCommand(),
78 SDIO_GetCommandResponse() and SDIO_GetResponse() functions. First, user has
79 to fill the command structure (pointer to SDIO_CmdInitTypeDef) according
80 to the selected command to be sent.
81 The parameters that should be filled are:
84 (++) Command Response type
86 (++) CPSM Status (Enable or Disable).
88 -@@- To check if the command is well received, read the SDIO_CMDRESP
89 register using the SDIO_GetCommandResponse().
90 The SDMMC responses registers (SDIO_RESP1 to SDIO_RESP2), use the
91 SDIO_GetResponse() function.
93 (+) To control the DPSM (Data Path State Machine) and send/receive
94 data to/from the card use the SDIO_ConfigData(), SDIO_GetDataCounter(),
95 SDIO_ReadFIFO(), SDIO_WriteFIFO() and SDIO_GetFIFOCount() functions.
97 *** Read Operations ***
98 =======================
100 (#) First, user has to fill the data structure (pointer to
101 SDIO_DataInitTypeDef) according to the selected data type to be received.
102 The parameters that should be filled are:
106 (++) Data Transfer direction: should be from card (To SDMMC)
107 (++) Data Transfer mode
108 (++) DPSM Status (Enable or Disable)
110 (#) Configure the SDMMC resources to receive the data from the card
111 according to selected transfer mode (Refer to Step 8, 9 and 10).
113 (#) Send the selected Read command (refer to step 11).
115 (#) Use the SDIO flags/interrupts to check the transfer status.
117 *** Write Operations ***
118 ========================
120 (#) First, user has to fill the data structure (pointer to
121 SDIO_DataInitTypeDef) according to the selected data type to be received.
122 The parameters that should be filled are:
126 (++) Data Transfer direction: should be to card (To CARD)
127 (++) Data Transfer mode
128 (++) DPSM Status (Enable or Disable)
130 (#) Configure the SDMMC resources to send the data to the card according to
131 selected transfer mode.
133 (#) Send the selected Write command.
135 (#) Use the SDIO flags/interrupts to check the transfer status.
137 *** Command management operations ***
138 =====================================
140 (#) The commands used for Read/Write/Erase operations are managed in
142 Each function allows to send the needed command with the related argument,
143 then check the response.
144 By the same approach, you could implement a command and check the response.
147 ******************************************************************************
150 * <h2><center>© COPYRIGHT(c) 2017 STMicroelectronics</center></h2>
152 * Redistribution and use in source and binary forms, with or without modification,
153 * are permitted provided that the following conditions are met:
154 * 1. Redistributions of source code must retain the above copyright notice,
155 * this list of conditions and the following disclaimer.
156 * 2. Redistributions in binary form must reproduce the above copyright notice,
157 * this list of conditions and the following disclaimer in the documentation
158 * and/or other materials provided with the distribution.
159 * 3. Neither the name of STMicroelectronics nor the names of its contributors
160 * may be used to endorse or promote products derived from this software
161 * without specific prior written permission.
163 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
164 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
165 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
166 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
167 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
168 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
169 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
170 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
171 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
172 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
174 ******************************************************************************
177 /* Includes ------------------------------------------------------------------*/
178 #include "stm32f4xx_hal.h"
180 /** @addtogroup STM32F4xx_HAL_Driver
184 /** @defgroup SDMMC_LL SDMMC Low Layer
185 * @brief Low layer module for SD
189 #if defined(HAL_SD_MODULE_ENABLED) || defined(HAL_MMC_MODULE_ENABLED)
190 #if defined(STM32F405xx) || defined(STM32F415xx) || defined(STM32F407xx) || defined(STM32F417xx) || \
191 defined(STM32F427xx) || defined(STM32F437xx) || defined(STM32F429xx) || defined(STM32F439xx) || \
192 defined(STM32F401xC) || defined(STM32F401xE) || defined(STM32F411xE) || defined(STM32F446xx) || \
193 defined(STM32F469xx) || defined(STM32F479xx) || defined(STM32F412Zx) || defined(STM32F412Vx) || \
194 defined(STM32F412Rx) || defined(STM32F412Cx) || defined(STM32F413xx) || defined(STM32F423xx)
196 /* Private typedef -----------------------------------------------------------*/
197 /* Private define ------------------------------------------------------------*/
198 /* Private macro -------------------------------------------------------------*/
199 /* Private variables ---------------------------------------------------------*/
200 /* Private function prototypes -----------------------------------------------*/
201 static uint32_t SDMMC_GetCmdError(SDIO_TypeDef
*SDIOx
);
202 static uint32_t SDMMC_GetCmdResp1(SDIO_TypeDef
*SDIOx
, uint8_t SD_CMD
, uint32_t Timeout
);
203 static uint32_t SDMMC_GetCmdResp2(SDIO_TypeDef
*SDIOx
);
204 static uint32_t SDMMC_GetCmdResp3(SDIO_TypeDef
*SDIOx
);
205 static uint32_t SDMMC_GetCmdResp7(SDIO_TypeDef
*SDIOx
);
206 static uint32_t SDMMC_GetCmdResp6(SDIO_TypeDef
*SDIOx
, uint8_t SD_CMD
, uint16_t *pRCA
);
208 /* Exported functions --------------------------------------------------------*/
210 /** @defgroup SDMMC_LL_Exported_Functions SDMMC Low Layer Exported Functions
214 /** @defgroup HAL_SDMMC_LL_Group1 Initialization de-initialization functions
215 * @brief Initialization and Configuration functions
218 ===============================================================================
219 ##### Initialization/de-initialization functions #####
220 ===============================================================================
221 [..] This section provides functions allowing to:
228 * @brief Initializes the SDMMC according to the specified
229 * parameters in the SDMMC_InitTypeDef and create the associated handle.
230 * @param SDIOx: Pointer to SDMMC register base
231 * @param Init: SDMMC initialization structure
234 HAL_StatusTypeDef
SDIO_Init(SDIO_TypeDef
*SDIOx
, SDIO_InitTypeDef Init
)
236 uint32_t tmpreg
= 0U;
238 /* Check the parameters */
239 assert_param(IS_SDIO_ALL_INSTANCE(SDIOx
));
240 assert_param(IS_SDIO_CLOCK_EDGE(Init
.ClockEdge
));
241 assert_param(IS_SDIO_CLOCK_BYPASS(Init
.ClockBypass
));
242 assert_param(IS_SDIO_CLOCK_POWER_SAVE(Init
.ClockPowerSave
));
243 assert_param(IS_SDIO_BUS_WIDE(Init
.BusWide
));
244 assert_param(IS_SDIO_HARDWARE_FLOW_CONTROL(Init
.HardwareFlowControl
));
245 assert_param(IS_SDIO_CLKDIV(Init
.ClockDiv
));
247 /* Set SDMMC configuration parameters */
248 tmpreg
|= (Init
.ClockEdge
|\
250 Init
.ClockPowerSave
|\
252 Init
.HardwareFlowControl
|\
256 /* Write to SDMMC CLKCR */
257 MODIFY_REG(SDIOx
->CLKCR
, CLKCR_CLEAR_MASK
, tmpreg
);
267 /** @defgroup HAL_SDMMC_LL_Group2 IO operation functions
268 * @brief Data transfers functions
271 ===============================================================================
272 ##### I/O operation functions #####
273 ===============================================================================
275 This subsection provides a set of functions allowing to manage the SDMMC data
283 * @brief Read data (word) from Rx FIFO in blocking mode (polling)
284 * @param SDIOx: Pointer to SDMMC register base
287 uint32_t SDIO_ReadFIFO(SDIO_TypeDef
*SDIOx
)
289 /* Read data from Rx FIFO */
290 return (SDIOx
->FIFO
);
294 * @brief Write data (word) to Tx FIFO in blocking mode (polling)
295 * @param SDIOx: Pointer to SDMMC register base
296 * @param pWriteData: pointer to data to write
299 HAL_StatusTypeDef
SDIO_WriteFIFO(SDIO_TypeDef
*SDIOx
, uint32_t *pWriteData
)
301 /* Write data to FIFO */
302 SDIOx
->FIFO
= *pWriteData
;
311 /** @defgroup HAL_SDMMC_LL_Group3 Peripheral Control functions
312 * @brief management functions
315 ===============================================================================
316 ##### Peripheral Control functions #####
317 ===============================================================================
319 This subsection provides a set of functions allowing to control the SDMMC data
327 * @brief Set SDMMC Power state to ON.
328 * @param SDIOx: Pointer to SDMMC register base
331 HAL_StatusTypeDef
SDIO_PowerState_ON(SDIO_TypeDef
*SDIOx
)
333 /* Set power state to ON */
334 SDIOx
->POWER
= SDIO_POWER_PWRCTRL
;
340 * @brief Set SDMMC Power state to OFF.
341 * @param SDIOx: Pointer to SDMMC register base
344 HAL_StatusTypeDef
SDIO_PowerState_OFF(SDIO_TypeDef
*SDIOx
)
346 /* Set power state to OFF */
347 SDIOx
->POWER
= 0x00000000U
;
353 * @brief Get SDMMC Power state.
354 * @param SDIOx: Pointer to SDMMC register base
355 * @retval Power status of the controller. The returned value can be one of the
361 uint32_t SDIO_GetPowerState(SDIO_TypeDef
*SDIOx
)
363 return (SDIOx
->POWER
& SDIO_POWER_PWRCTRL
);
367 * @brief Configure the SDMMC command path according to the specified parameters in
368 * SDIO_CmdInitTypeDef structure and send the command
369 * @param SDIOx: Pointer to SDMMC register base
370 * @param Command: pointer to a SDIO_CmdInitTypeDef structure that contains
371 * the configuration information for the SDMMC command
374 HAL_StatusTypeDef
SDIO_SendCommand(SDIO_TypeDef
*SDIOx
, SDIO_CmdInitTypeDef
*Command
)
376 uint32_t tmpreg
= 0U;
378 /* Check the parameters */
379 assert_param(IS_SDIO_CMD_INDEX(Command
->CmdIndex
));
380 assert_param(IS_SDIO_RESPONSE(Command
->Response
));
381 assert_param(IS_SDIO_WAIT(Command
->WaitForInterrupt
));
382 assert_param(IS_SDIO_CPSM(Command
->CPSM
));
384 /* Set the SDMMC Argument value */
385 SDIOx
->ARG
= Command
->Argument
;
387 /* Set SDMMC command parameters */
388 tmpreg
|= (uint32_t)(Command
->CmdIndex
|\
390 Command
->WaitForInterrupt
|\
393 /* Write to SDMMC CMD register */
394 MODIFY_REG(SDIOx
->CMD
, CMD_CLEAR_MASK
, tmpreg
);
400 * @brief Return the command index of last command for which response received
401 * @param SDIOx: Pointer to SDMMC register base
402 * @retval Command index of the last command response received
404 uint8_t SDIO_GetCommandResponse(SDIO_TypeDef
*SDIOx
)
406 return (uint8_t)(SDIOx
->RESPCMD
);
411 * @brief Return the response received from the card for the last command
412 * @param SDIOx: Pointer to SDMMC register base
413 * @param Response: Specifies the SDMMC response register.
414 * This parameter can be one of the following values:
415 * @arg SDIO_RESP1: Response Register 1
416 * @arg SDIO_RESP1: Response Register 2
417 * @arg SDIO_RESP1: Response Register 3
418 * @arg SDIO_RESP1: Response Register 4
419 * @retval The Corresponding response register value
421 uint32_t SDIO_GetResponse(SDIO_TypeDef
*SDIOx
, uint32_t Response
)
423 __IO
uint32_t tmp
= 0U;
425 /* Check the parameters */
426 assert_param(IS_SDIO_RESP(Response
));
428 /* Get the response */
429 tmp
= (uint32_t)&(SDIOx
->RESP1
) + Response
;
431 return (*(__IO
uint32_t *) tmp
);
435 * @brief Configure the SDMMC data path according to the specified
436 * parameters in the SDIO_DataInitTypeDef.
437 * @param SDIOx: Pointer to SDMMC register base
438 * @param Data : pointer to a SDIO_DataInitTypeDef structure
439 * that contains the configuration information for the SDMMC data.
442 HAL_StatusTypeDef
SDIO_ConfigData(SDIO_TypeDef
*SDIOx
, SDIO_DataInitTypeDef
* Data
)
444 uint32_t tmpreg
= 0U;
446 /* Check the parameters */
447 assert_param(IS_SDIO_DATA_LENGTH(Data
->DataLength
));
448 assert_param(IS_SDIO_BLOCK_SIZE(Data
->DataBlockSize
));
449 assert_param(IS_SDIO_TRANSFER_DIR(Data
->TransferDir
));
450 assert_param(IS_SDIO_TRANSFER_MODE(Data
->TransferMode
));
451 assert_param(IS_SDIO_DPSM(Data
->DPSM
));
453 /* Set the SDMMC Data TimeOut value */
454 SDIOx
->DTIMER
= Data
->DataTimeOut
;
456 /* Set the SDMMC DataLength value */
457 SDIOx
->DLEN
= Data
->DataLength
;
459 /* Set the SDMMC data configuration parameters */
460 tmpreg
|= (uint32_t)(Data
->DataBlockSize
|\
462 Data
->TransferMode
|\
465 /* Write to SDMMC DCTRL */
466 MODIFY_REG(SDIOx
->DCTRL
, DCTRL_CLEAR_MASK
, tmpreg
);
473 * @brief Returns number of remaining data bytes to be transferred.
474 * @param SDIOx: Pointer to SDMMC register base
475 * @retval Number of remaining data bytes to be transferred
477 uint32_t SDIO_GetDataCounter(SDIO_TypeDef
*SDIOx
)
479 return (SDIOx
->DCOUNT
);
483 * @brief Get the FIFO data
484 * @param SDIOx: Pointer to SDMMC register base
485 * @retval Data received
487 uint32_t SDIO_GetFIFOCount(SDIO_TypeDef
*SDIOx
)
489 return (SDIOx
->FIFO
);
493 * @brief Sets one of the two options of inserting read wait interval.
494 * @param SDIOx: Pointer to SDMMC register base
495 * @param SDIO_ReadWaitMode: SDMMC Read Wait operation mode.
496 * This parameter can be:
497 * @arg SDIO_READ_WAIT_MODE_CLK: Read Wait control by stopping SDMMCCLK
498 * @arg SDIO_READ_WAIT_MODE_DATA2: Read Wait control using SDMMC_DATA2
501 HAL_StatusTypeDef
SDIO_SetSDMMCReadWaitMode(SDIO_TypeDef
*SDIOx
, uint32_t SDIO_ReadWaitMode
)
503 /* Check the parameters */
504 assert_param(IS_SDIO_READWAIT_MODE(SDIO_ReadWaitMode
));
506 /* Set SDMMC read wait mode */
507 MODIFY_REG(SDIOx
->DCTRL
, SDIO_DCTRL_RWMOD
, SDIO_ReadWaitMode
);
517 /** @defgroup HAL_SDMMC_LL_Group4 Command management functions
518 * @brief Data transfers functions
521 ===============================================================================
522 ##### Commands management functions #####
523 ===============================================================================
525 This subsection provides a set of functions allowing to manage the needed commands.
532 * @brief Send the Data Block Lenght command and check the response
533 * @param SDIOx: Pointer to SDMMC register base
536 uint32_t SDMMC_CmdBlockLength(SDIO_TypeDef
*SDIOx
, uint32_t BlockSize
)
538 SDIO_CmdInitTypeDef sdmmc_cmdinit
;
539 uint32_t errorstate
= SDMMC_ERROR_NONE
;
541 /* Set Block Size for Card */
542 sdmmc_cmdinit
.Argument
= (uint32_t)BlockSize
;
543 sdmmc_cmdinit
.CmdIndex
= SDMMC_CMD_SET_BLOCKLEN
;
544 sdmmc_cmdinit
.Response
= SDIO_RESPONSE_SHORT
;
545 sdmmc_cmdinit
.WaitForInterrupt
= SDIO_WAIT_NO
;
546 sdmmc_cmdinit
.CPSM
= SDIO_CPSM_ENABLE
;
547 SDIO_SendCommand(SDIOx
, &sdmmc_cmdinit
);
549 /* Check for error conditions */
550 errorstate
= SDMMC_GetCmdResp1(SDIOx
, SDMMC_CMD_SET_BLOCKLEN
, SDIO_CMDTIMEOUT
);
556 * @brief Send the Read Single Block command and check the response
557 * @param SDIOx: Pointer to SDMMC register base
560 uint32_t SDMMC_CmdReadSingleBlock(SDIO_TypeDef
*SDIOx
, uint32_t ReadAdd
)
562 SDIO_CmdInitTypeDef sdmmc_cmdinit
;
563 uint32_t errorstate
= SDMMC_ERROR_NONE
;
565 /* Set Block Size for Card */
566 sdmmc_cmdinit
.Argument
= (uint32_t)ReadAdd
;
567 sdmmc_cmdinit
.CmdIndex
= SDMMC_CMD_READ_SINGLE_BLOCK
;
568 sdmmc_cmdinit
.Response
= SDIO_RESPONSE_SHORT
;
569 sdmmc_cmdinit
.WaitForInterrupt
= SDIO_WAIT_NO
;
570 sdmmc_cmdinit
.CPSM
= SDIO_CPSM_ENABLE
;
571 SDIO_SendCommand(SDIOx
, &sdmmc_cmdinit
);
573 /* Check for error conditions */
574 errorstate
= SDMMC_GetCmdResp1(SDIOx
, SDMMC_CMD_READ_SINGLE_BLOCK
, SDIO_CMDTIMEOUT
);
580 * @brief Send the Read Multi Block command and check the response
581 * @param SDIOx: Pointer to SDIO register base
584 uint32_t SDMMC_CmdReadMultiBlock(SDIO_TypeDef
*SDIOx
, uint32_t ReadAdd
)
586 SDIO_CmdInitTypeDef sdmmc_cmdinit
;
587 uint32_t errorstate
= SDMMC_ERROR_NONE
;
589 /* Set Block Size for Card */
590 sdmmc_cmdinit
.Argument
= (uint32_t)ReadAdd
;
591 sdmmc_cmdinit
.CmdIndex
= SDMMC_CMD_READ_MULT_BLOCK
;
592 sdmmc_cmdinit
.Response
= SDIO_RESPONSE_SHORT
;
593 sdmmc_cmdinit
.WaitForInterrupt
= SDIO_WAIT_NO
;
594 sdmmc_cmdinit
.CPSM
= SDIO_CPSM_ENABLE
;
595 SDIO_SendCommand(SDIOx
, &sdmmc_cmdinit
);
597 /* Check for error conditions */
598 errorstate
= SDMMC_GetCmdResp1(SDIOx
, SDMMC_CMD_READ_MULT_BLOCK
, SDIO_CMDTIMEOUT
);
604 * @brief Send the Write Single Block command and check the response
605 * @param SDIOx: Pointer to SDIO register base
608 uint32_t SDMMC_CmdWriteSingleBlock(SDIO_TypeDef
*SDIOx
, uint32_t WriteAdd
)
610 SDIO_CmdInitTypeDef sdmmc_cmdinit
;
611 uint32_t errorstate
= SDMMC_ERROR_NONE
;
613 /* Set Block Size for Card */
614 sdmmc_cmdinit
.Argument
= (uint32_t)WriteAdd
;
615 sdmmc_cmdinit
.CmdIndex
= SDMMC_CMD_WRITE_SINGLE_BLOCK
;
616 sdmmc_cmdinit
.Response
= SDIO_RESPONSE_SHORT
;
617 sdmmc_cmdinit
.WaitForInterrupt
= SDIO_WAIT_NO
;
618 sdmmc_cmdinit
.CPSM
= SDIO_CPSM_ENABLE
;
619 SDIO_SendCommand(SDIOx
, &sdmmc_cmdinit
);
621 /* Check for error conditions */
622 errorstate
= SDMMC_GetCmdResp1(SDIOx
, SDMMC_CMD_WRITE_SINGLE_BLOCK
, SDIO_CMDTIMEOUT
);
628 * @brief Send the Write Multi Block command and check the response
629 * @param SDIOx: Pointer to SDIO register base
632 uint32_t SDMMC_CmdWriteMultiBlock(SDIO_TypeDef
*SDIOx
, uint32_t WriteAdd
)
634 SDIO_CmdInitTypeDef sdmmc_cmdinit
;
635 uint32_t errorstate
= SDMMC_ERROR_NONE
;
637 /* Set Block Size for Card */
638 sdmmc_cmdinit
.Argument
= (uint32_t)WriteAdd
;
639 sdmmc_cmdinit
.CmdIndex
= SDMMC_CMD_WRITE_MULT_BLOCK
;
640 sdmmc_cmdinit
.Response
= SDIO_RESPONSE_SHORT
;
641 sdmmc_cmdinit
.WaitForInterrupt
= SDIO_WAIT_NO
;
642 sdmmc_cmdinit
.CPSM
= SDIO_CPSM_ENABLE
;
643 SDIO_SendCommand(SDIOx
, &sdmmc_cmdinit
);
645 /* Check for error conditions */
646 errorstate
= SDMMC_GetCmdResp1(SDIOx
, SDMMC_CMD_WRITE_MULT_BLOCK
, SDIO_CMDTIMEOUT
);
652 * @brief Send the Start Address Erase command for SD and check the response
653 * @param SDIOx: Pointer to SDIO register base
656 uint32_t SDMMC_CmdSDEraseStartAdd(SDIO_TypeDef
*SDIOx
, uint32_t StartAdd
)
658 SDIO_CmdInitTypeDef sdmmc_cmdinit
;
659 uint32_t errorstate
= SDMMC_ERROR_NONE
;
661 /* Set Block Size for Card */
662 sdmmc_cmdinit
.Argument
= (uint32_t)StartAdd
;
663 sdmmc_cmdinit
.CmdIndex
= SDMMC_CMD_SD_ERASE_GRP_START
;
664 sdmmc_cmdinit
.Response
= SDIO_RESPONSE_SHORT
;
665 sdmmc_cmdinit
.WaitForInterrupt
= SDIO_WAIT_NO
;
666 sdmmc_cmdinit
.CPSM
= SDIO_CPSM_ENABLE
;
667 SDIO_SendCommand(SDIOx
, &sdmmc_cmdinit
);
669 /* Check for error conditions */
670 errorstate
= SDMMC_GetCmdResp1(SDIOx
, SDMMC_CMD_SD_ERASE_GRP_START
, SDIO_CMDTIMEOUT
);
676 * @brief Send the End Address Erase command for SD and check the response
677 * @param SDIOx: Pointer to SDIO register base
680 uint32_t SDMMC_CmdSDEraseEndAdd(SDIO_TypeDef
*SDIOx
, uint32_t EndAdd
)
682 SDIO_CmdInitTypeDef sdmmc_cmdinit
;
683 uint32_t errorstate
= SDMMC_ERROR_NONE
;
685 /* Set Block Size for Card */
686 sdmmc_cmdinit
.Argument
= (uint32_t)EndAdd
;
687 sdmmc_cmdinit
.CmdIndex
= SDMMC_CMD_SD_ERASE_GRP_END
;
688 sdmmc_cmdinit
.Response
= SDIO_RESPONSE_SHORT
;
689 sdmmc_cmdinit
.WaitForInterrupt
= SDIO_WAIT_NO
;
690 sdmmc_cmdinit
.CPSM
= SDIO_CPSM_ENABLE
;
691 SDIO_SendCommand(SDIOx
, &sdmmc_cmdinit
);
693 /* Check for error conditions */
694 errorstate
= SDMMC_GetCmdResp1(SDIOx
, SDMMC_CMD_SD_ERASE_GRP_END
, SDIO_CMDTIMEOUT
);
700 * @brief Send the Start Address Erase command and check the response
701 * @param SDIOx: Pointer to SDIO register base
704 uint32_t SDMMC_CmdEraseStartAdd(SDIO_TypeDef
*SDIOx
, uint32_t StartAdd
)
706 SDIO_CmdInitTypeDef sdmmc_cmdinit
;
707 uint32_t errorstate
= SDMMC_ERROR_NONE
;
709 /* Set Block Size for Card */
710 sdmmc_cmdinit
.Argument
= (uint32_t)StartAdd
;
711 sdmmc_cmdinit
.CmdIndex
= SDMMC_CMD_ERASE_GRP_START
;
712 sdmmc_cmdinit
.Response
= SDIO_RESPONSE_SHORT
;
713 sdmmc_cmdinit
.WaitForInterrupt
= SDIO_WAIT_NO
;
714 sdmmc_cmdinit
.CPSM
= SDIO_CPSM_ENABLE
;
715 SDIO_SendCommand(SDIOx
, &sdmmc_cmdinit
);
717 /* Check for error conditions */
718 errorstate
= SDMMC_GetCmdResp1(SDIOx
, SDMMC_CMD_ERASE_GRP_START
, SDIO_CMDTIMEOUT
);
724 * @brief Send the End Address Erase command and check the response
725 * @param SDIOx: Pointer to SDIO register base
728 uint32_t SDMMC_CmdEraseEndAdd(SDIO_TypeDef
*SDIOx
, uint32_t EndAdd
)
730 SDIO_CmdInitTypeDef sdmmc_cmdinit
;
731 uint32_t errorstate
= SDMMC_ERROR_NONE
;
733 /* Set Block Size for Card */
734 sdmmc_cmdinit
.Argument
= (uint32_t)EndAdd
;
735 sdmmc_cmdinit
.CmdIndex
= SDMMC_CMD_ERASE_GRP_END
;
736 sdmmc_cmdinit
.Response
= SDIO_RESPONSE_SHORT
;
737 sdmmc_cmdinit
.WaitForInterrupt
= SDIO_WAIT_NO
;
738 sdmmc_cmdinit
.CPSM
= SDIO_CPSM_ENABLE
;
739 SDIO_SendCommand(SDIOx
, &sdmmc_cmdinit
);
741 /* Check for error conditions */
742 errorstate
= SDMMC_GetCmdResp1(SDIOx
, SDMMC_CMD_ERASE_GRP_END
, SDIO_CMDTIMEOUT
);
748 * @brief Send the Erase command and check the response
749 * @param SDIOx: Pointer to SDIO register base
752 uint32_t SDMMC_CmdErase(SDIO_TypeDef
*SDIOx
)
754 SDIO_CmdInitTypeDef sdmmc_cmdinit
;
755 uint32_t errorstate
= SDMMC_ERROR_NONE
;
757 /* Set Block Size for Card */
758 sdmmc_cmdinit
.Argument
= 0U;
759 sdmmc_cmdinit
.CmdIndex
= SDMMC_CMD_ERASE
;
760 sdmmc_cmdinit
.Response
= SDIO_RESPONSE_SHORT
;
761 sdmmc_cmdinit
.WaitForInterrupt
= SDIO_WAIT_NO
;
762 sdmmc_cmdinit
.CPSM
= SDIO_CPSM_ENABLE
;
763 SDIO_SendCommand(SDIOx
, &sdmmc_cmdinit
);
765 /* Check for error conditions */
766 errorstate
= SDMMC_GetCmdResp1(SDIOx
, SDMMC_CMD_ERASE
, SDIO_MAXERASETIMEOUT
);
772 * @brief Send the Stop Transfer command and check the response.
773 * @param SDIOx: Pointer to SDIO register base
776 uint32_t SDMMC_CmdStopTransfer(SDIO_TypeDef
*SDIOx
)
778 SDIO_CmdInitTypeDef sdmmc_cmdinit
;
779 uint32_t errorstate
= SDMMC_ERROR_NONE
;
781 /* Send CMD12 STOP_TRANSMISSION */
782 sdmmc_cmdinit
.Argument
= 0U;
783 sdmmc_cmdinit
.CmdIndex
= SDMMC_CMD_STOP_TRANSMISSION
;
784 sdmmc_cmdinit
.Response
= SDIO_RESPONSE_SHORT
;
785 sdmmc_cmdinit
.WaitForInterrupt
= SDIO_WAIT_NO
;
786 sdmmc_cmdinit
.CPSM
= SDIO_CPSM_ENABLE
;
787 SDIO_SendCommand(SDIOx
, &sdmmc_cmdinit
);
789 /* Check for error conditions */
790 errorstate
= SDMMC_GetCmdResp1(SDIOx
, SDMMC_CMD_STOP_TRANSMISSION
, 100000000U);
796 * @brief Send the Select Deselect command and check the response.
797 * @param SDIOx: Pointer to SDIO register base
798 * @param addr: Address of the card to be selected
801 uint32_t SDMMC_CmdSelDesel(SDIO_TypeDef
*SDIOx
, uint64_t Addr
)
803 SDIO_CmdInitTypeDef sdmmc_cmdinit
;
804 uint32_t errorstate
= SDMMC_ERROR_NONE
;
806 /* Send CMD7 SDMMC_SEL_DESEL_CARD */
807 sdmmc_cmdinit
.Argument
= (uint32_t)Addr
;
808 sdmmc_cmdinit
.CmdIndex
= SDMMC_CMD_SEL_DESEL_CARD
;
809 sdmmc_cmdinit
.Response
= SDIO_RESPONSE_SHORT
;
810 sdmmc_cmdinit
.WaitForInterrupt
= SDIO_WAIT_NO
;
811 sdmmc_cmdinit
.CPSM
= SDIO_CPSM_ENABLE
;
812 SDIO_SendCommand(SDIOx
, &sdmmc_cmdinit
);
814 /* Check for error conditions */
815 errorstate
= SDMMC_GetCmdResp1(SDIOx
, SDMMC_CMD_SEL_DESEL_CARD
, SDIO_CMDTIMEOUT
);
821 * @brief Send the Go Idle State command and check the response.
822 * @param SDIOx: Pointer to SDIO register base
825 uint32_t SDMMC_CmdGoIdleState(SDIO_TypeDef
*SDIOx
)
827 SDIO_CmdInitTypeDef sdmmc_cmdinit
;
828 uint32_t errorstate
= SDMMC_ERROR_NONE
;
830 sdmmc_cmdinit
.Argument
= 0U;
831 sdmmc_cmdinit
.CmdIndex
= SDMMC_CMD_GO_IDLE_STATE
;
832 sdmmc_cmdinit
.Response
= SDIO_RESPONSE_NO
;
833 sdmmc_cmdinit
.WaitForInterrupt
= SDIO_WAIT_NO
;
834 sdmmc_cmdinit
.CPSM
= SDIO_CPSM_ENABLE
;
835 SDIO_SendCommand(SDIOx
, &sdmmc_cmdinit
);
837 /* Check for error conditions */
838 errorstate
= SDMMC_GetCmdError(SDIOx
);
844 * @brief Send the Operating Condition command and check the response.
845 * @param SDIOx: Pointer to SDIO register base
848 uint32_t SDMMC_CmdOperCond(SDIO_TypeDef
*SDIOx
)
850 SDIO_CmdInitTypeDef sdmmc_cmdinit
;
851 uint32_t errorstate
= SDMMC_ERROR_NONE
;
853 /* Send CMD8 to verify SD card interface operating condition */
854 /* Argument: - [31:12]: Reserved (shall be set to '0')
855 - [11:8]: Supply Voltage (VHS) 0x1 (Range: 2.7-3.6 V)
856 - [7:0]: Check Pattern (recommended 0xAA) */
857 /* CMD Response: R7 */
858 sdmmc_cmdinit
.Argument
= SDMMC_CHECK_PATTERN
;
859 sdmmc_cmdinit
.CmdIndex
= SDMMC_CMD_HS_SEND_EXT_CSD
;
860 sdmmc_cmdinit
.Response
= SDIO_RESPONSE_SHORT
;
861 sdmmc_cmdinit
.WaitForInterrupt
= SDIO_WAIT_NO
;
862 sdmmc_cmdinit
.CPSM
= SDIO_CPSM_ENABLE
;
863 SDIO_SendCommand(SDIOx
, &sdmmc_cmdinit
);
865 /* Check for error conditions */
866 errorstate
= SDMMC_GetCmdResp7(SDIOx
);
872 * @brief Send the Application command to verify that that the next command
873 * is an application specific com-mand rather than a standard command
874 * and check the response.
875 * @param SDIOx: Pointer to SDIO register base
878 uint32_t SDMMC_CmdAppCommand(SDIO_TypeDef
*SDIOx
, uint32_t Argument
)
880 SDIO_CmdInitTypeDef sdmmc_cmdinit
;
881 uint32_t errorstate
= SDMMC_ERROR_NONE
;
883 sdmmc_cmdinit
.Argument
= (uint32_t)Argument
;
884 sdmmc_cmdinit
.CmdIndex
= SDMMC_CMD_APP_CMD
;
885 sdmmc_cmdinit
.Response
= SDIO_RESPONSE_SHORT
;
886 sdmmc_cmdinit
.WaitForInterrupt
= SDIO_WAIT_NO
;
887 sdmmc_cmdinit
.CPSM
= SDIO_CPSM_ENABLE
;
888 SDIO_SendCommand(SDIOx
, &sdmmc_cmdinit
);
890 /* Check for error conditions */
891 /* If there is a HAL_ERROR, it is a MMC card, else
892 it is a SD card: SD card 2.0 (voltage range mismatch)
894 errorstate
= SDMMC_GetCmdResp1(SDIOx
, SDMMC_CMD_APP_CMD
, SDIO_CMDTIMEOUT
);
900 * @brief Send the command asking the accessed card to send its operating
901 * condition register (OCR)
902 * @param SDIOx: Pointer to SDIO register base
905 uint32_t SDMMC_CmdAppOperCommand(SDIO_TypeDef
*SDIOx
, uint32_t SdType
)
907 SDIO_CmdInitTypeDef sdmmc_cmdinit
;
908 uint32_t errorstate
= SDMMC_ERROR_NONE
;
910 sdmmc_cmdinit
.Argument
= SDMMC_VOLTAGE_WINDOW_SD
| SdType
;
911 sdmmc_cmdinit
.CmdIndex
= SDMMC_CMD_SD_APP_OP_COND
;
912 sdmmc_cmdinit
.Response
= SDIO_RESPONSE_SHORT
;
913 sdmmc_cmdinit
.WaitForInterrupt
= SDIO_WAIT_NO
;
914 sdmmc_cmdinit
.CPSM
= SDIO_CPSM_ENABLE
;
915 SDIO_SendCommand(SDIOx
, &sdmmc_cmdinit
);
917 /* Check for error conditions */
918 errorstate
= SDMMC_GetCmdResp3(SDIOx
);
924 * @brief Send the Bus Width command and check the response.
925 * @param SDIOx: Pointer to SDIO register base
928 uint32_t SDMMC_CmdBusWidth(SDIO_TypeDef
*SDIOx
, uint32_t BusWidth
)
930 SDIO_CmdInitTypeDef sdmmc_cmdinit
;
931 uint32_t errorstate
= SDMMC_ERROR_NONE
;
933 sdmmc_cmdinit
.Argument
= (uint32_t)BusWidth
;
934 sdmmc_cmdinit
.CmdIndex
= SDMMC_CMD_APP_SD_SET_BUSWIDTH
;
935 sdmmc_cmdinit
.Response
= SDIO_RESPONSE_SHORT
;
936 sdmmc_cmdinit
.WaitForInterrupt
= SDIO_WAIT_NO
;
937 sdmmc_cmdinit
.CPSM
= SDIO_CPSM_ENABLE
;
938 SDIO_SendCommand(SDIOx
, &sdmmc_cmdinit
);
940 /* Check for error conditions */
941 errorstate
= SDMMC_GetCmdResp1(SDIOx
, SDMMC_CMD_APP_SD_SET_BUSWIDTH
, SDIO_CMDTIMEOUT
);
947 * @brief Send the Send SCR command and check the response.
948 * @param SDIOx: Pointer to SDMMC register base
951 uint32_t SDMMC_CmdSendSCR(SDIO_TypeDef
*SDIOx
)
953 SDIO_CmdInitTypeDef sdmmc_cmdinit
;
954 uint32_t errorstate
= SDMMC_ERROR_NONE
;
956 /* Send CMD51 SD_APP_SEND_SCR */
957 sdmmc_cmdinit
.Argument
= 0U;
958 sdmmc_cmdinit
.CmdIndex
= SDMMC_CMD_SD_APP_SEND_SCR
;
959 sdmmc_cmdinit
.Response
= SDIO_RESPONSE_SHORT
;
960 sdmmc_cmdinit
.WaitForInterrupt
= SDIO_WAIT_NO
;
961 sdmmc_cmdinit
.CPSM
= SDIO_CPSM_ENABLE
;
962 SDIO_SendCommand(SDIOx
, &sdmmc_cmdinit
);
964 /* Check for error conditions */
965 errorstate
= SDMMC_GetCmdResp1(SDIOx
, SDMMC_CMD_SD_APP_SEND_SCR
, SDIO_CMDTIMEOUT
);
971 * @brief Send the Send CID command and check the response.
972 * @param SDIOx: Pointer to SDIO register base
975 uint32_t SDMMC_CmdSendCID(SDIO_TypeDef
*SDIOx
)
977 SDIO_CmdInitTypeDef sdmmc_cmdinit
;
978 uint32_t errorstate
= SDMMC_ERROR_NONE
;
980 /* Send CMD2 ALL_SEND_CID */
981 sdmmc_cmdinit
.Argument
= 0U;
982 sdmmc_cmdinit
.CmdIndex
= SDMMC_CMD_ALL_SEND_CID
;
983 sdmmc_cmdinit
.Response
= SDIO_RESPONSE_LONG
;
984 sdmmc_cmdinit
.WaitForInterrupt
= SDIO_WAIT_NO
;
985 sdmmc_cmdinit
.CPSM
= SDIO_CPSM_ENABLE
;
986 SDIO_SendCommand(SDIOx
, &sdmmc_cmdinit
);
988 /* Check for error conditions */
989 errorstate
= SDMMC_GetCmdResp2(SDIOx
);
995 * @brief Send the Send CSD command and check the response.
996 * @param SDIOx: Pointer to SDIO register base
999 uint32_t SDMMC_CmdSendCSD(SDIO_TypeDef
*SDIOx
, uint32_t Argument
)
1001 SDIO_CmdInitTypeDef sdmmc_cmdinit
;
1002 uint32_t errorstate
= SDMMC_ERROR_NONE
;
1004 /* Send CMD9 SEND_CSD */
1005 sdmmc_cmdinit
.Argument
= (uint32_t)Argument
;
1006 sdmmc_cmdinit
.CmdIndex
= SDMMC_CMD_SEND_CSD
;
1007 sdmmc_cmdinit
.Response
= SDIO_RESPONSE_LONG
;
1008 sdmmc_cmdinit
.WaitForInterrupt
= SDIO_WAIT_NO
;
1009 sdmmc_cmdinit
.CPSM
= SDIO_CPSM_ENABLE
;
1010 SDIO_SendCommand(SDIOx
, &sdmmc_cmdinit
);
1012 /* Check for error conditions */
1013 errorstate
= SDMMC_GetCmdResp2(SDIOx
);
1019 * @brief Send the Send CSD command and check the response.
1020 * @param SDIOx: Pointer to SDIO register base
1021 * @retval HAL status
1023 uint32_t SDMMC_CmdSetRelAdd(SDIO_TypeDef
*SDIOx
, uint16_t *pRCA
)
1025 SDIO_CmdInitTypeDef sdmmc_cmdinit
;
1026 uint32_t errorstate
= SDMMC_ERROR_NONE
;
1028 /* Send CMD3 SD_CMD_SET_REL_ADDR */
1029 sdmmc_cmdinit
.Argument
= 0U;
1030 sdmmc_cmdinit
.CmdIndex
= SDMMC_CMD_SET_REL_ADDR
;
1031 sdmmc_cmdinit
.Response
= SDIO_RESPONSE_SHORT
;
1032 sdmmc_cmdinit
.WaitForInterrupt
= SDIO_WAIT_NO
;
1033 sdmmc_cmdinit
.CPSM
= SDIO_CPSM_ENABLE
;
1034 SDIO_SendCommand(SDIOx
, &sdmmc_cmdinit
);
1036 /* Check for error conditions */
1037 errorstate
= SDMMC_GetCmdResp6(SDIOx
, SDMMC_CMD_SET_REL_ADDR
, pRCA
);
1043 * @brief Send the Status command and check the response.
1044 * @param SDIOx: Pointer to SDIO register base
1045 * @retval HAL status
1047 uint32_t SDMMC_CmdSendStatus(SDIO_TypeDef
*SDIOx
, uint32_t Argument
)
1049 SDIO_CmdInitTypeDef sdmmc_cmdinit
;
1050 uint32_t errorstate
= SDMMC_ERROR_NONE
;
1052 sdmmc_cmdinit
.Argument
= (uint32_t)Argument
;
1053 sdmmc_cmdinit
.CmdIndex
= SDMMC_CMD_SEND_STATUS
;
1054 sdmmc_cmdinit
.Response
= SDIO_RESPONSE_SHORT
;
1055 sdmmc_cmdinit
.WaitForInterrupt
= SDIO_WAIT_NO
;
1056 sdmmc_cmdinit
.CPSM
= SDIO_CPSM_ENABLE
;
1057 SDIO_SendCommand(SDIOx
, &sdmmc_cmdinit
);
1059 /* Check for error conditions */
1060 errorstate
= SDMMC_GetCmdResp1(SDIOx
, SDMMC_CMD_SEND_STATUS
, SDIO_CMDTIMEOUT
);
1066 * @brief Send the Status register command and check the response.
1067 * @param SDIOx: Pointer to SDIO register base
1068 * @retval HAL status
1070 uint32_t SDMMC_CmdStatusRegister(SDIO_TypeDef
*SDIOx
)
1072 SDIO_CmdInitTypeDef sdmmc_cmdinit
;
1073 uint32_t errorstate
= SDMMC_ERROR_NONE
;
1075 sdmmc_cmdinit
.Argument
= 0U;
1076 sdmmc_cmdinit
.CmdIndex
= SDMMC_CMD_SD_APP_STATUS
;
1077 sdmmc_cmdinit
.Response
= SDIO_RESPONSE_SHORT
;
1078 sdmmc_cmdinit
.WaitForInterrupt
= SDIO_WAIT_NO
;
1079 sdmmc_cmdinit
.CPSM
= SDIO_CPSM_ENABLE
;
1080 SDIO_SendCommand(SDIOx
, &sdmmc_cmdinit
);
1082 /* Check for error conditions */
1083 errorstate
= SDMMC_GetCmdResp1(SDIOx
, SDMMC_CMD_SD_APP_STATUS
, SDIO_CMDTIMEOUT
);
1089 * @brief Sends host capacity support information and activates the card's
1090 * initialization process. Send SDMMC_CMD_SEND_OP_COND command
1091 * @param SDIOx: Pointer to SDIO register base
1092 * @parame Argument: Argument used for the command
1093 * @retval HAL status
1095 uint32_t SDMMC_CmdOpCondition(SDIO_TypeDef
*SDIOx
, uint32_t Argument
)
1097 SDIO_CmdInitTypeDef sdmmc_cmdinit
;
1098 uint32_t errorstate
= SDMMC_ERROR_NONE
;
1100 sdmmc_cmdinit
.Argument
= Argument
;
1101 sdmmc_cmdinit
.CmdIndex
= SDMMC_CMD_SEND_OP_COND
;
1102 sdmmc_cmdinit
.Response
= SDIO_RESPONSE_SHORT
;
1103 sdmmc_cmdinit
.WaitForInterrupt
= SDIO_WAIT_NO
;
1104 sdmmc_cmdinit
.CPSM
= SDIO_CPSM_ENABLE
;
1105 SDIO_SendCommand(SDIOx
, &sdmmc_cmdinit
);
1107 /* Check for error conditions */
1108 errorstate
= SDMMC_GetCmdResp3(SDIOx
);
1114 * @brief Checks switchable function and switch card function. SDMMC_CMD_HS_SWITCH comand
1115 * @param SDIOx: Pointer to SDIO register base
1116 * @parame Argument: Argument used for the command
1117 * @retval HAL status
1119 uint32_t SDMMC_CmdSwitch(SDIO_TypeDef
*SDIOx
, uint32_t Argument
)
1121 SDIO_CmdInitTypeDef sdmmc_cmdinit
;
1122 uint32_t errorstate
= SDMMC_ERROR_NONE
;
1124 sdmmc_cmdinit
.Argument
= Argument
;
1125 sdmmc_cmdinit
.CmdIndex
= SDMMC_CMD_HS_SWITCH
;
1126 sdmmc_cmdinit
.Response
= SDIO_RESPONSE_SHORT
;
1127 sdmmc_cmdinit
.WaitForInterrupt
= SDIO_WAIT_NO
;
1128 sdmmc_cmdinit
.CPSM
= SDIO_CPSM_ENABLE
;
1129 SDIO_SendCommand(SDIOx
, &sdmmc_cmdinit
);
1131 /* Check for error conditions */
1132 errorstate
= SDMMC_GetCmdResp1(SDIOx
, SDMMC_CMD_HS_SWITCH
, SDIO_CMDTIMEOUT
);
1141 /* Private function ----------------------------------------------------------*/
1142 /** @addtogroup SD_Private_Functions
1147 * @brief Checks for error conditions for CMD0.
1148 * @param hsd: SD handle
1149 * @retval SD Card error state
1151 static uint32_t SDMMC_GetCmdError(SDIO_TypeDef
*SDIOx
)
1153 /* 8 is the number of required instructions cycles for the below loop statement.
1154 The SDMMC_CMDTIMEOUT is expressed in ms */
1155 register uint32_t count
= SDIO_CMDTIMEOUT
* (SystemCoreClock
/ 8U /1000U);
1161 return SDMMC_ERROR_TIMEOUT
;
1164 }while(!__SDIO_GET_FLAG(SDIOx
, SDIO_FLAG_CMDSENT
));
1166 /* Clear all the static flags */
1167 __SDIO_CLEAR_FLAG(SDIOx
, SDIO_STATIC_FLAGS
);
1169 return SDMMC_ERROR_NONE
;
1173 * @brief Checks for error conditions for R1 response.
1174 * @param hsd: SD handle
1175 * @param SD_CMD: The sent command index
1176 * @retval SD Card error state
1178 static uint32_t SDMMC_GetCmdResp1(SDIO_TypeDef
*SDIOx
, uint8_t SD_CMD
, uint32_t Timeout
)
1180 uint32_t response_r1
;
1182 /* 8 is the number of required instructions cycles for the below loop statement.
1183 The Timeout is expressed in ms */
1184 register uint32_t count
= Timeout
* (SystemCoreClock
/ 8U /1000U);
1190 return SDMMC_ERROR_TIMEOUT
;
1193 }while(!__SDIO_GET_FLAG(SDIOx
, SDIO_FLAG_CCRCFAIL
| SDIO_FLAG_CMDREND
| SDIO_FLAG_CTIMEOUT
));
1195 if(__SDIO_GET_FLAG(SDIOx
, SDIO_FLAG_CTIMEOUT
))
1197 __SDIO_CLEAR_FLAG(SDIOx
, SDIO_FLAG_CTIMEOUT
);
1199 return SDMMC_ERROR_CMD_RSP_TIMEOUT
;
1201 else if(__SDIO_GET_FLAG(SDIOx
, SDIO_FLAG_CCRCFAIL
))
1203 __SDIO_CLEAR_FLAG(SDIOx
, SDIO_FLAG_CCRCFAIL
);
1205 return SDMMC_ERROR_CMD_CRC_FAIL
;
1208 /* Check response received is of desired command */
1209 if(SDIO_GetCommandResponse(SDIOx
) != SD_CMD
)
1211 return SDMMC_ERROR_CMD_CRC_FAIL
;
1214 /* Clear all the static flags */
1215 __SDIO_CLEAR_FLAG(SDIOx
, SDIO_STATIC_FLAGS
);
1217 /* We have received response, retrieve it for analysis */
1218 response_r1
= SDIO_GetResponse(SDIOx
, SDIO_RESP1
);
1220 if((response_r1
& SDMMC_OCR_ERRORBITS
) == SDMMC_ALLZERO
)
1222 return SDMMC_ERROR_NONE
;
1224 else if((response_r1
& SDMMC_OCR_ADDR_OUT_OF_RANGE
) == SDMMC_OCR_ADDR_OUT_OF_RANGE
)
1226 return SDMMC_ERROR_ADDR_OUT_OF_RANGE
;
1228 else if((response_r1
& SDMMC_OCR_ADDR_MISALIGNED
) == SDMMC_OCR_ADDR_MISALIGNED
)
1230 return SDMMC_ERROR_ADDR_MISALIGNED
;
1232 else if((response_r1
& SDMMC_OCR_BLOCK_LEN_ERR
) == SDMMC_OCR_BLOCK_LEN_ERR
)
1234 return SDMMC_ERROR_BLOCK_LEN_ERR
;
1236 else if((response_r1
& SDMMC_OCR_ERASE_SEQ_ERR
) == SDMMC_OCR_ERASE_SEQ_ERR
)
1238 return SDMMC_ERROR_ERASE_SEQ_ERR
;
1240 else if((response_r1
& SDMMC_OCR_BAD_ERASE_PARAM
) == SDMMC_OCR_BAD_ERASE_PARAM
)
1242 return SDMMC_ERROR_BAD_ERASE_PARAM
;
1244 else if((response_r1
& SDMMC_OCR_WRITE_PROT_VIOLATION
) == SDMMC_OCR_WRITE_PROT_VIOLATION
)
1246 return SDMMC_ERROR_WRITE_PROT_VIOLATION
;
1248 else if((response_r1
& SDMMC_OCR_LOCK_UNLOCK_FAILED
) == SDMMC_OCR_LOCK_UNLOCK_FAILED
)
1250 return SDMMC_ERROR_LOCK_UNLOCK_FAILED
;
1252 else if((response_r1
& SDMMC_OCR_COM_CRC_FAILED
) == SDMMC_OCR_COM_CRC_FAILED
)
1254 return SDMMC_ERROR_COM_CRC_FAILED
;
1256 else if((response_r1
& SDMMC_OCR_ILLEGAL_CMD
) == SDMMC_OCR_ILLEGAL_CMD
)
1258 return SDMMC_ERROR_ILLEGAL_CMD
;
1260 else if((response_r1
& SDMMC_OCR_CARD_ECC_FAILED
) == SDMMC_OCR_CARD_ECC_FAILED
)
1262 return SDMMC_ERROR_CARD_ECC_FAILED
;
1264 else if((response_r1
& SDMMC_OCR_CC_ERROR
) == SDMMC_OCR_CC_ERROR
)
1266 return SDMMC_ERROR_CC_ERR
;
1268 else if((response_r1
& SDMMC_OCR_STREAM_READ_UNDERRUN
) == SDMMC_OCR_STREAM_READ_UNDERRUN
)
1270 return SDMMC_ERROR_STREAM_READ_UNDERRUN
;
1272 else if((response_r1
& SDMMC_OCR_STREAM_WRITE_OVERRUN
) == SDMMC_OCR_STREAM_WRITE_OVERRUN
)
1274 return SDMMC_ERROR_STREAM_WRITE_OVERRUN
;
1276 else if((response_r1
& SDMMC_OCR_CID_CSD_OVERWRITE
) == SDMMC_OCR_CID_CSD_OVERWRITE
)
1278 return SDMMC_ERROR_CID_CSD_OVERWRITE
;
1280 else if((response_r1
& SDMMC_OCR_WP_ERASE_SKIP
) == SDMMC_OCR_WP_ERASE_SKIP
)
1282 return SDMMC_ERROR_WP_ERASE_SKIP
;
1284 else if((response_r1
& SDMMC_OCR_CARD_ECC_DISABLED
) == SDMMC_OCR_CARD_ECC_DISABLED
)
1286 return SDMMC_ERROR_CARD_ECC_DISABLED
;
1288 else if((response_r1
& SDMMC_OCR_ERASE_RESET
) == SDMMC_OCR_ERASE_RESET
)
1290 return SDMMC_ERROR_ERASE_RESET
;
1292 else if((response_r1
& SDMMC_OCR_AKE_SEQ_ERROR
) == SDMMC_OCR_AKE_SEQ_ERROR
)
1294 return SDMMC_ERROR_AKE_SEQ_ERR
;
1298 return SDMMC_ERROR_GENERAL_UNKNOWN_ERR
;
1303 * @brief Checks for error conditions for R2 (CID or CSD) response.
1304 * @param hsd: SD handle
1305 * @retval SD Card error state
1307 static uint32_t SDMMC_GetCmdResp2(SDIO_TypeDef
*SDIOx
)
1309 /* 8 is the number of required instructions cycles for the below loop statement.
1310 The SDMMC_CMDTIMEOUT is expressed in ms */
1311 register uint32_t count
= SDIO_CMDTIMEOUT
* (SystemCoreClock
/ 8U /1000U);
1317 return SDMMC_ERROR_TIMEOUT
;
1320 }while(!__SDIO_GET_FLAG(SDIOx
, SDIO_FLAG_CCRCFAIL
| SDIO_FLAG_CMDREND
| SDIO_FLAG_CTIMEOUT
));
1322 if (__SDIO_GET_FLAG(SDIOx
, SDIO_FLAG_CTIMEOUT
))
1324 __SDIO_CLEAR_FLAG(SDIOx
, SDIO_FLAG_CTIMEOUT
);
1326 return SDMMC_ERROR_CMD_RSP_TIMEOUT
;
1328 else if (__SDIO_GET_FLAG(SDIOx
, SDIO_FLAG_CCRCFAIL
))
1330 __SDIO_CLEAR_FLAG(SDIOx
, SDIO_FLAG_CCRCFAIL
);
1332 return SDMMC_ERROR_CMD_CRC_FAIL
;
1336 /* No error flag set */
1337 /* Clear all the static flags */
1338 __SDIO_CLEAR_FLAG(SDIOx
, SDIO_STATIC_FLAGS
);
1341 return SDMMC_ERROR_NONE
;
1345 * @brief Checks for error conditions for R3 (OCR) response.
1346 * @param hsd: SD handle
1347 * @retval SD Card error state
1349 static uint32_t SDMMC_GetCmdResp3(SDIO_TypeDef
*SDIOx
)
1351 /* 8 is the number of required instructions cycles for the below loop statement.
1352 The SDMMC_CMDTIMEOUT is expressed in ms */
1353 register uint32_t count
= SDIO_CMDTIMEOUT
* (SystemCoreClock
/ 8U /1000U);
1359 return SDMMC_ERROR_TIMEOUT
;
1362 }while(!__SDIO_GET_FLAG(SDIOx
, SDIO_FLAG_CCRCFAIL
| SDIO_FLAG_CMDREND
| SDIO_FLAG_CTIMEOUT
));
1364 if(__SDIO_GET_FLAG(SDIOx
, SDIO_FLAG_CTIMEOUT
))
1366 __SDIO_CLEAR_FLAG(SDIOx
, SDIO_FLAG_CTIMEOUT
);
1368 return SDMMC_ERROR_CMD_RSP_TIMEOUT
;
1373 /* Clear all the static flags */
1374 __SDIO_CLEAR_FLAG(SDIOx
, SDIO_STATIC_FLAGS
);
1377 return SDMMC_ERROR_NONE
;
1381 * @brief Checks for error conditions for R6 (RCA) response.
1382 * @param hsd: SD handle
1383 * @param SD_CMD: The sent command index
1384 * @param pRCA: Pointer to the variable that will contain the SD card relative
1386 * @retval SD Card error state
1388 static uint32_t SDMMC_GetCmdResp6(SDIO_TypeDef
*SDIOx
, uint8_t SD_CMD
, uint16_t *pRCA
)
1390 uint32_t response_r1
;
1392 /* 8 is the number of required instructions cycles for the below loop statement.
1393 The SDMMC_CMDTIMEOUT is expressed in ms */
1394 register uint32_t count
= SDIO_CMDTIMEOUT
* (SystemCoreClock
/ 8U /1000U);
1400 return SDMMC_ERROR_TIMEOUT
;
1403 }while(!__SDIO_GET_FLAG(SDIOx
, SDIO_FLAG_CCRCFAIL
| SDIO_FLAG_CMDREND
| SDIO_FLAG_CTIMEOUT
));
1405 if(__SDIO_GET_FLAG(SDIOx
, SDIO_FLAG_CTIMEOUT
))
1407 __SDIO_CLEAR_FLAG(SDIOx
, SDIO_FLAG_CTIMEOUT
);
1409 return SDMMC_ERROR_CMD_RSP_TIMEOUT
;
1411 else if(__SDIO_GET_FLAG(SDIOx
, SDIO_FLAG_CCRCFAIL
))
1413 __SDIO_CLEAR_FLAG(SDIOx
, SDIO_FLAG_CCRCFAIL
);
1415 return SDMMC_ERROR_CMD_CRC_FAIL
;
1418 /* Check response received is of desired command */
1419 if(SDIO_GetCommandResponse(SDIOx
) != SD_CMD
)
1421 return SDMMC_ERROR_CMD_CRC_FAIL
;
1424 /* Clear all the static flags */
1425 __SDIO_CLEAR_FLAG(SDIOx
, SDIO_STATIC_FLAGS
);
1427 /* We have received response, retrieve it. */
1428 response_r1
= SDIO_GetResponse(SDIOx
, SDIO_RESP1
);
1430 if((response_r1
& (SDMMC_R6_GENERAL_UNKNOWN_ERROR
| SDMMC_R6_ILLEGAL_CMD
| SDMMC_R6_COM_CRC_FAILED
)) == SDMMC_ALLZERO
)
1432 *pRCA
= (uint16_t) (response_r1
>> 16);
1434 return SDMMC_ERROR_NONE
;
1436 else if((response_r1
& SDMMC_R6_ILLEGAL_CMD
) == SDMMC_R6_ILLEGAL_CMD
)
1438 return SDMMC_ERROR_ILLEGAL_CMD
;
1440 else if((response_r1
& SDMMC_R6_COM_CRC_FAILED
) == SDMMC_R6_COM_CRC_FAILED
)
1442 return SDMMC_ERROR_COM_CRC_FAILED
;
1446 return SDMMC_ERROR_GENERAL_UNKNOWN_ERR
;
1451 * @brief Checks for error conditions for R7 response.
1452 * @param hsd: SD handle
1453 * @retval SD Card error state
1455 static uint32_t SDMMC_GetCmdResp7(SDIO_TypeDef
*SDIOx
)
1457 /* 8 is the number of required instructions cycles for the below loop statement.
1458 The SDIO_CMDTIMEOUT is expressed in ms */
1459 register uint32_t count
= SDIO_CMDTIMEOUT
* (SystemCoreClock
/ 8U /1000U);
1465 return SDMMC_ERROR_TIMEOUT
;
1468 }while(!__SDIO_GET_FLAG(SDIOx
, SDIO_FLAG_CCRCFAIL
| SDIO_FLAG_CMDREND
| SDIO_FLAG_CTIMEOUT
));
1470 if(__SDIO_GET_FLAG(SDIOx
, SDIO_FLAG_CTIMEOUT
))
1472 /* Card is SD V2.0 compliant */
1473 __SDIO_CLEAR_FLAG(SDIOx
, SDIO_FLAG_CMDREND
);
1475 return SDMMC_ERROR_CMD_RSP_TIMEOUT
;
1478 if(__SDIO_GET_FLAG(SDIOx
, SDIO_FLAG_CMDREND
))
1480 /* Card is SD V2.0 compliant */
1481 __SDIO_CLEAR_FLAG(SDIOx
, SDIO_FLAG_CMDREND
);
1484 return SDMMC_ERROR_NONE
;
1496 #endif /* STM32F405xx || STM32F415xx || STM32F407xx || STM32F417xx || STM32F427xx || STM32F437xx || STM32F429xx || STM32F439xx ||
1497 STM32F401xC || STM32F401xE || STM32F411xE || STM32F446xx || STM32F469xx || STM32F479xx || STM32F412Zx || STM32F412Vx ||
1498 STM32F412Rx || STM32F412Cx || STM32F413xx || STM32F423xx */
1499 #endif /* (HAL_SD_MODULE_ENABLED) || (HAL_MMC_MODULE_ENABLED) */
1509 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/