123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550 |
- /**
- ******************************************************************************
- * @file stm32l4xx_hal_sd_ex.c
- * @author MCD Application Team
- * @brief SD card Extended HAL module driver.
- * This file provides firmware functions to manage the following
- * functionalities of the Secure Digital (SD) peripheral:
- * + Extended features functions
- *
- @verbatim
- ==============================================================================
- ##### How to use this driver #####
- ==============================================================================
- [..]
- The SD Extension HAL driver can be used as follows:
- (+) Set card in High Speed mode using HAL_SDEx_HighSpeed() function.
- (+) Configure Buffer0 and Buffer1 start address and Buffer size using HAL_SDEx_ConfigDMAMultiBuffer() function.
- (+) Start Read and Write for multibuffer mode using HAL_SDEx_ReadBlocksDMAMultiBuffer() and HAL_SDEx_WriteBlocksDMAMultiBuffer() functions.
-
- @endverbatim
- ******************************************************************************
- * @attention
- *
- * <h2><center>© COPYRIGHT(c) 2017 STMicroelectronics</center></h2>
- *
- * Redistribution and use in source and binary forms, with or without modification,
- * are permitted provided that the following conditions are met:
- * 1. Redistributions of source code must retain the above copyright notice,
- * this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright notice,
- * this list of conditions and the following disclaimer in the documentation
- * and/or other materials provided with the distribution.
- * 3. Neither the name of STMicroelectronics nor the names of its contributors
- * may be used to endorse or promote products derived from this software
- * without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
- * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
- * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
- * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
- * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
- * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- ******************************************************************************
- */
- /* Includes ------------------------------------------------------------------*/
- #include "stm32l4xx_hal.h"
- #if defined(STM32L4R5xx) || defined(STM32L4R7xx) || defined(STM32L4R9xx) || defined(STM32L4S5xx) || defined(STM32L4S7xx) || defined(STM32L4S9xx)
- /** @addtogroup STM32L4xx_HAL_Driver
- * @{
- */
- /** @defgroup SDEx SDEx
- * @brief SD HAL extended module driver
- * @{
- */
- #ifdef HAL_SD_MODULE_ENABLED
- /* Private typedef -----------------------------------------------------------*/
- /* Private define ------------------------------------------------------------*/
- /* Private macro -------------------------------------------------------------*/
- /* Private variables ---------------------------------------------------------*/
- /* Private function prototypes -----------------------------------------------*/
- /* Private functions ---------------------------------------------------------*/
- /* Exported functions --------------------------------------------------------*/
- /** @addtogroup SDEx_Exported_Functions
- * @{
- */
- /** @addtogroup SDEx_Exported_Functions_Group1
- * @brief High Speed function
- *
- @verbatim
- ==============================================================================
- ##### High Speed function #####
- ==============================================================================
- [..]
- This section provides function allowing to configure the card in High Speed mode.
-
- @endverbatim
- * @{
- */
- /**
- * @brief Switches the SD card to High Speed mode.
- * This API must be used after "Transfer State"
- * @note This operation should be followed by the configuration
- * of PLL to have SDMMCCK clock between 50 and 120 MHz
- * @param hsd: SD handle
- * @retval SD Card error state
- */
- uint32_t HAL_SDEx_HighSpeed(SD_HandleTypeDef *hsd)
- {
- uint32_t errorstate = HAL_OK;
- SDMMC_DataInitTypeDef sdmmc_datainitstructure;
- uint8_t SD_hs[64] = {0};
- uint32_t count = 0, *tempbuff = (uint32_t *)SD_hs;
- uint32_t Timeout = HAL_GetTick();
-
- if(hsd->SdCard.CardSpeed == CARD_NORMAL_SPEED)
- {
- /* Standard Speed Card <= 12.5Mhz */
- return HAL_SD_ERROR_REQUEST_NOT_APPLICABLE;
- }
- if((hsd->SdCard.CardSpeed == CARD_ULTRA_HIGH_SPEED) &&
- (hsd->Init.Transceiver == SDMMC_TRANSCEIVER_ENABLE))
- {
- /* Initialize the Data control register */
- hsd->Instance->DCTRL = 0;
- errorstate = SDMMC_CmdBlockLength(hsd->Instance, 64);
-
- if (errorstate != HAL_OK)
- {
- return errorstate;
- }
-
- /* Configure the SD DPSM (Data Path State Machine) */
- sdmmc_datainitstructure.DataTimeOut = SDMMC_DATATIMEOUT;
- sdmmc_datainitstructure.DataLength = 64;
- sdmmc_datainitstructure.DataBlockSize = SDMMC_DATABLOCK_SIZE_64B ;
- sdmmc_datainitstructure.TransferDir = SDMMC_TRANSFER_DIR_TO_SDMMC;
- sdmmc_datainitstructure.TransferMode = SDMMC_TRANSFER_MODE_BLOCK;
- sdmmc_datainitstructure.DPSM = SDMMC_DPSM_ENABLE;
- SDMMC_ConfigData(hsd->Instance, &sdmmc_datainitstructure);
-
- errorstate = SDMMC_CmdSwitch(hsd->Instance, SDMMC_SDR25_SWITCH_PATTERN);
- if(errorstate != HAL_OK)
- {
- return errorstate;
- }
-
- while(!__HAL_SD_GET_FLAG(hsd, SDMMC_FLAG_RXOVERR | SDMMC_FLAG_DCRCFAIL | SDMMC_FLAG_DTIMEOUT | SDMMC_FLAG_DBCKEND| SDMMC_FLAG_DATAEND ))
- {
- if (__HAL_SD_GET_FLAG(hsd, SDMMC_FLAG_RXFIFOHF))
- {
- for (count = 0; count < 8; count++)
- {
- *(tempbuff + count) = SDMMC_ReadFIFO(hsd->Instance);
- }
-
- tempbuff += 8;
- }
-
- if((HAL_GetTick()-Timeout) >= SDMMC_DATATIMEOUT)
- {
- hsd->ErrorCode = HAL_SD_ERROR_TIMEOUT;
- hsd->State= HAL_SD_STATE_READY;
- return HAL_TIMEOUT;
- }
- }
- if (__HAL_SD_GET_FLAG(hsd, SDMMC_FLAG_DTIMEOUT))
- {
- __HAL_SD_CLEAR_FLAG(hsd, SDMMC_FLAG_DTIMEOUT);
-
- errorstate = 0;
-
- return errorstate;
- }
- else if (__HAL_SD_GET_FLAG(hsd, SDMMC_FLAG_DCRCFAIL))
- {
- __HAL_SD_CLEAR_FLAG(hsd, SDMMC_FLAG_DCRCFAIL);
-
- errorstate = SDMMC_ERROR_DATA_CRC_FAIL;
-
- return errorstate;
- }
- else if (__HAL_SD_GET_FLAG(hsd, SDMMC_FLAG_RXOVERR))
- {
- __HAL_SD_CLEAR_FLAG(hsd, SDMMC_FLAG_RXOVERR);
-
- errorstate = SDMMC_ERROR_RX_OVERRUN;
-
- return errorstate;
- }
- else
- {
- /* No error flag set */
- }
- /* Clear all the static flags */
- __HAL_SD_CLEAR_FLAG(hsd, SDMMC_STATIC_DATA_FLAGS);
-
- /* Test if the switch mode HS is ok */
- if ((SD_hs[13]& 2) != 2)
- {
- errorstate = SDMMC_ERROR_UNSUPPORTED_FEATURE;
- }
- else
- {
- HAL_SDEx_DriveTransceiver_1_8V_Callback(SET);
- }
- /* Set Block Size for Card */
- errorstate = SDMMC_CmdBlockLength(hsd->Instance, BLOCKSIZE);
- if(errorstate != HAL_SD_ERROR_NONE)
- {
- hsd->State = HAL_SD_STATE_READY;
- hsd->ErrorCode |= errorstate;
- return HAL_ERROR;
- }
- }
- return errorstate;
- }
- /**
- * @brief Enable/Disable the SD Transciver 1.8V Mode Callback.
- * @param status: Voltage Switch State
- * @retval None
- */
- __weak void HAL_SDEx_DriveTransceiver_1_8V_Callback(FlagStatus status)
- {
- /* Prevent unused argument(s) compilation warning */
- UNUSED(status);
-
- /* NOTE : This function Should not be modified, when the callback is needed,
- the HAL_SD_EnableTransciver could be implemented in the user file
- */
- }
- /**
- * @}
- */
-
- /** @addtogroup SDEx_Exported_Functions_Group2
- * @brief Multibuffer functions
- *
- @verbatim
- ==============================================================================
- ##### Multibuffer functions #####
- ==============================================================================
- [..]
- This section provides functions allowing to configure the multibuffer mode and start read and write
- multibuffer mode for SD HAL driver.
-
- @endverbatim
- * @{
- */
- /**
- * @brief Configure DMA Dual Buffer mode. The Data transfer is managed by an Internal DMA.
- * @param hsd: SD handle
- * @param pDataBuffer0: Pointer to the buffer0 that will contain/receive the transfered data
- * @param pDataBuffer1: Pointer to the buffer1 that will contain/receive the transfered data
- * @param BufferSize: Size of Buffer0 in Blocks. Buffer0 and Buffer1 must have the same size.
- * @retval HAL status
- */
- HAL_StatusTypeDef HAL_SDEx_ConfigDMAMultiBuffer(SD_HandleTypeDef *hsd, uint32_t *pDataBuffer0, uint32_t *pDataBuffer1, uint32_t BufferSize)
- {
- if(hsd->State == HAL_SD_STATE_READY)
- {
- hsd->Instance->IDMABASE0 = (uint32_t) pDataBuffer0;
- hsd->Instance->IDMABASE1 = (uint32_t) pDataBuffer1;
- hsd->Instance->IDMABSIZE = (uint32_t) (BLOCKSIZE * BufferSize);
-
- return HAL_OK;
- }
- else
- {
- return HAL_BUSY;
- }
- }
-
- /**
- * @brief Reads block(s) from a specified address in a card. The received Data will be stored in Buffer0 and Buffer1.
- * Buffer0, Buffer1 and BufferSize need to be configured by function HAL_SDEx_ConfigDMAMultiBuffer before call this function.
- * @param hsd: SD handle
- * @param BlockAdd: Block Address from where data is to be read
- * @param NumberOfBlocks: Total number of blocks to read
- * @retval HAL status
- */
- HAL_StatusTypeDef HAL_SDEx_ReadBlocksDMAMultiBuffer(SD_HandleTypeDef *hsd, uint32_t BlockAdd, uint32_t NumberOfBlocks)
- {
- SDMMC_DataInitTypeDef config;
- uint32_t errorstate = HAL_SD_ERROR_NONE;
-
- if(hsd->State == HAL_SD_STATE_READY)
- {
- if((BlockAdd + NumberOfBlocks) > (hsd->SdCard.LogBlockNbr))
- {
- hsd->ErrorCode |= HAL_SD_ERROR_ADDR_OUT_OF_RANGE;
- return HAL_ERROR;
- }
-
- if ((hsd->Instance->IDMABASE0 == 0) || (hsd->Instance->IDMABASE1 == 0) || (hsd->Instance->IDMABSIZE == 0))
- {
- hsd->ErrorCode = HAL_SD_ERROR_ADDR_OUT_OF_RANGE;
- return HAL_ERROR;
- }
-
- /* Initialize data control register */
- hsd->Instance->DCTRL = 0;
-
- hsd->ErrorCode = HAL_SD_ERROR_NONE;
- hsd->State = HAL_SD_STATE_BUSY;
- if(hsd->SdCard.CardType != CARD_SDHC_SDXC)
- {
- BlockAdd *= 512;
- }
-
- /* Configure the SD DPSM (Data Path State Machine) */
- config.DataTimeOut = SDMMC_DATATIMEOUT;
- config.DataLength = BLOCKSIZE * NumberOfBlocks;
- config.DataBlockSize = SDMMC_DATABLOCK_SIZE_512B;
- config.TransferDir = SDMMC_TRANSFER_DIR_TO_SDMMC;
- config.TransferMode = SDMMC_TRANSFER_MODE_BLOCK;
- config.DPSM = SDMMC_DPSM_DISABLE;
- SDMMC_ConfigData(hsd->Instance, &config);
-
- hsd->Instance->DCTRL |= SDMMC_DCTRL_FIFORST;
-
- // /* Set Block Size for Card */
- // errorstate = SDMMC_CmdBlockLength(hsd->Instance, BLOCKSIZE);
- // if(errorstate != HAL_SD_ERROR_NONE)
- // {
- // hsd->State = HAL_SD_STATE_READY;
- // hsd->ErrorCode |= errorstate;
- // return HAL_ERROR;
- // }
-
- __SDMMC_CMDTRANS_ENABLE( hsd->Instance);
-
- hsd->Instance->IDMACTRL = SDMMC_ENABLE_IDMA_DOUBLE_BUFF0;
- __HAL_SD_ENABLE_IT(hsd, (SDMMC_IT_DCRCFAIL | SDMMC_IT_DTIMEOUT | SDMMC_IT_RXOVERR | SDMMC_IT_DATAEND | SDMMC_IT_IDMABTC));
-
- /* Read Blocks in DMA mode */
- hsd->Context = (SD_CONTEXT_READ_MULTIPLE_BLOCK | SD_CONTEXT_DMA);
-
- /* Read Multi Block command */
- errorstate = SDMMC_CmdReadMultiBlock(hsd->Instance, BlockAdd);
- if(errorstate != HAL_SD_ERROR_NONE)
- {
- hsd->State = HAL_SD_STATE_READY;
- hsd->ErrorCode |= errorstate;
- return HAL_ERROR;
- }
-
- return HAL_OK;
- }
- else
- {
- return HAL_BUSY;
- }
-
- }
- /**
- * @brief Write block(s) to a specified address in a card. The transfered Data are stored in Buffer0 and Buffer1.
- * Buffer0, Buffer1 and BufferSize need to be configured by function HAL_SDEx_ConfigDMAMultiBuffer before call this function.
- * @param hsd: SD handle
- * @param BlockAdd: Block Address from where data is to be read
- * @param NumberOfBlocks: Total number of blocks to read
- * @retval HAL status
- */
- HAL_StatusTypeDef HAL_SDEx_WriteBlocksDMAMultiBuffer(SD_HandleTypeDef *hsd, uint32_t BlockAdd, uint32_t NumberOfBlocks)
- {
- SDMMC_DataInitTypeDef config;
- uint32_t errorstate = HAL_SD_ERROR_NONE;
-
- if(hsd->State == HAL_SD_STATE_READY)
- {
- if((BlockAdd + NumberOfBlocks) > (hsd->SdCard.LogBlockNbr))
- {
- hsd->ErrorCode |= HAL_SD_ERROR_ADDR_OUT_OF_RANGE;
- return HAL_ERROR;
- }
-
- if ((hsd->Instance->IDMABASE0 == 0) || (hsd->Instance->IDMABASE1 == 0) || (hsd->Instance->IDMABSIZE == 0))
- {
- hsd->ErrorCode = HAL_SD_ERROR_ADDR_OUT_OF_RANGE;
- return HAL_ERROR;
- }
-
- /* Initialize data control register */
- hsd->Instance->DCTRL = 0;
-
- hsd->ErrorCode = HAL_SD_ERROR_NONE;
-
- hsd->State = HAL_SD_STATE_BUSY;
- if(hsd->SdCard.CardType != CARD_SDHC_SDXC)
- {
- BlockAdd *= 512;
- }
-
- /* Configure the SD DPSM (Data Path State Machine) */
- config.DataTimeOut = SDMMC_DATATIMEOUT;
- config.DataLength = BLOCKSIZE * NumberOfBlocks;
- config.DataBlockSize = SDMMC_DATABLOCK_SIZE_512B;
- config.TransferDir = SDMMC_TRANSFER_DIR_TO_CARD;
- config.TransferMode = SDMMC_TRANSFER_MODE_BLOCK;
- config.DPSM = SDMMC_DPSM_DISABLE;
- SDMMC_ConfigData(hsd->Instance, &config);
-
- // /* Set Block Size for Card */
- // errorstate = SDMMC_CmdBlockLength(hsd->Instance, BLOCKSIZE);
- // if(errorstate != HAL_SD_ERROR_NONE)
- // {
- // hsd->State = HAL_SD_STATE_READY;
- // hsd->ErrorCode |= errorstate;
- // return HAL_ERROR;
- // }
-
- __SDMMC_CMDTRANS_ENABLE( hsd->Instance);
-
- hsd->Instance->IDMACTRL = SDMMC_ENABLE_IDMA_DOUBLE_BUFF0;
-
- __HAL_SD_ENABLE_IT(hsd, (SDMMC_IT_DCRCFAIL | SDMMC_IT_DTIMEOUT | SDMMC_IT_TXUNDERR | SDMMC_IT_DATAEND | SDMMC_IT_IDMABTC));
-
- /* Write Blocks in DMA mode */
- hsd->Context = (SD_CONTEXT_WRITE_MULTIPLE_BLOCK | SD_CONTEXT_DMA);
-
- /* Write Multi Block command */
- errorstate = SDMMC_CmdWriteMultiBlock(hsd->Instance, BlockAdd);
- if(errorstate != HAL_SD_ERROR_NONE)
- {
- hsd->State = HAL_SD_STATE_READY;
- hsd->ErrorCode |= errorstate;
- return HAL_ERROR;
- }
-
- return HAL_OK;
- }
- else
- {
- return HAL_BUSY;
- }
- }
-
- /**
- * @brief Change the DMA Buffer0 or Buffer1 address on the fly.
- * @param hsd: pointer to a SD_HandleTypeDef structure.
- * @param Buffer: the buffer to be changed, This parameter can be one of
- * the following values: SD_DMA_BUFFER0 or SD_DMA_BUFFER1
- * @param pDataBuffer: The new address
- * @note The BUFFER0 address can be changed only when the current transfer use
- * BUFFER1 and the BUFFER1 address can be changed only when the current
- * transfer use BUFFER0.
- * @retval HAL status
- */
- HAL_StatusTypeDef HAL_SDEx_ChangeDMABuffer(SD_HandleTypeDef *hsd, HAL_SDEx_DMABuffer_MemoryTypeDef Buffer, uint32_t *pDataBuffer)
- {
- if(Buffer == SD_DMA_BUFFER0)
- {
- /* change the buffer0 address */
- hsd->Instance->IDMABASE0 = (uint32_t)pDataBuffer;
- }
- else
- {
- /* change the memory1 address */
- hsd->Instance->IDMABASE1 = (uint32_t)pDataBuffer;
- }
-
- return HAL_OK;
- }
- /**
- * @brief Read DMA Buffer 0 Transfer completed callbacks
- * @param hsd: SD handle
- * @retval None
- */
- __weak void HAL_SDEx_Read_DMADoubleBuffer0CpltCallback(SD_HandleTypeDef *hsd)
- {
- /* Prevent unused argument(s) compilation warning */
- UNUSED(hsd);
-
- /* NOTE : This function should not be modified, when the callback is needed,
- the HAL_SDEx_Read_DMADoubleBuffer0CpltCallback can be implemented in the user file
- */
- }
- /**
- * @brief Read DMA Buffer 1 Transfer completed callbacks
- * @param hsd: SD handle
- * @retval None
- */
- __weak void HAL_SDEx_Read_DMADoubleBuffer1CpltCallback(SD_HandleTypeDef *hsd)
- {
- /* Prevent unused argument(s) compilation warning */
- UNUSED(hsd);
-
- /* NOTE : This function should not be modified, when the callback is needed,
- the HAL_SDEx_Read_DMADoubleBuffer1CpltCallback can be implemented in the user file
- */
- }
- /**
- * @brief Write DMA Buffer 0 Transfer completed callbacks
- * @param hsd: SD handle
- * @retval None
- */
- __weak void HAL_SDEx_Write_DMADoubleBuffer0CpltCallback(SD_HandleTypeDef *hsd)
- {
- /* Prevent unused argument(s) compilation warning */
- UNUSED(hsd);
-
- /* NOTE : This function should not be modified, when the callback is needed,
- the HAL_SDEx_Write_DMADoubleBuffer0CpltCallback can be implemented in the user file
- */
- }
- /**
- * @brief Write DMA Buffer 1 Transfer completed callbacks
- * @param hsd: SD handle
- * @retval None
- */
- __weak void HAL_SDEx_Write_DMADoubleBuffer1CpltCallback(SD_HandleTypeDef *hsd)
- {
- /* Prevent unused argument(s) compilation warning */
- UNUSED(hsd);
-
- /* NOTE : This function should not be modified, when the callback is needed,
- the HAL_SDEx_Write_DMADoubleBuffer0CpltCallback can be implemented in the user file
- */
- }
- /**
- * @}
- */
- /**
- * @}
- */
- #endif /* HAL_SD_MODULE_ENABLED */
- /**
- * @}
- */
- /**
- * @}
- */
- #endif /* STM32L4R5xx || STM32L4R7xx || STM32L4R9xx || STM32L4S5xx || STM32L4S7xx || STM32L4S9xx */
- /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
|