mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-13 03:20:00 +03:00
1903 lines
73 KiB
C
1903 lines
73 KiB
C
/*
|
|
* This file is part of Cleanflight and Betaflight.
|
|
*
|
|
* Cleanflight and Betaflight are free software. You can redistribute
|
|
* this software and/or modify this software under the terms of the
|
|
* GNU General Public License as published by the Free Software
|
|
* Foundation, either version 3 of the License, or (at your option)
|
|
* any later version.
|
|
*
|
|
* Cleanflight and Betaflight are distributed in the hope that they
|
|
* will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
* See the GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this software.
|
|
*
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/*
|
|
* Original author: Alain (https://github.com/aroyer-qc)
|
|
* Modified for BF source: Chris Hockuba (https://github.com/conkerkh)
|
|
*/
|
|
|
|
/* Include(s) -------------------------------------------------------------------------------------------------------*/
|
|
|
|
#include "stdbool.h"
|
|
#include <string.h>
|
|
|
|
#include "platform.h"
|
|
|
|
#ifdef USE_SDCARD_SDIO
|
|
|
|
#include "sdmmc_sdio.h"
|
|
#include "stm32f7xx.h"
|
|
|
|
#include "pg/sdio.h"
|
|
|
|
#include "drivers/io.h"
|
|
#include "drivers/io_impl.h"
|
|
#include "drivers/nvic.h"
|
|
#include "drivers/time.h"
|
|
#include "drivers/rcc.h"
|
|
#include "drivers/dma.h"
|
|
#include "drivers/light_led.h"
|
|
|
|
#include "build/debug.h"
|
|
|
|
#define BLOCK_SIZE ((uint32_t)(512))
|
|
|
|
#define IFCR_CLEAR_MASK_STREAM3 (DMA_LIFCR_CTCIF3 | DMA_LIFCR_CHTIF3 | DMA_LIFCR_CTEIF3 | DMA_LIFCR_CDMEIF3 | DMA_LIFCR_CFEIF3)
|
|
#define IFCR_CLEAR_MASK_STREAM6 (DMA_HIFCR_CTCIF6 | DMA_HIFCR_CHTIF6 | DMA_HIFCR_CTEIF6 | DMA_HIFCR_CDMEIF6 | DMA_HIFCR_CFEIF6)
|
|
|
|
#define SDMMC_ICR_STATIC_FLAGS ((uint32_t)(SDMMC_ICR_CCRCFAILC | SDMMC_ICR_DCRCFAILC | SDMMC_ICR_CTIMEOUTC |\
|
|
SDMMC_ICR_DTIMEOUTC | SDMMC_ICR_TXUNDERRC | SDMMC_ICR_RXOVERRC |\
|
|
SDMMC_ICR_CMDRENDC | SDMMC_ICR_CMDSENTC | SDMMC_ICR_DATAENDC |\
|
|
SDMMC_ICR_DBCKENDC))
|
|
|
|
#define SD_SOFTWARE_COMMAND_TIMEOUT ((uint32_t)0x00020000)
|
|
|
|
#define SD_OCR_ADDR_OUT_OF_RANGE ((uint32_t)0x80000000)
|
|
#define SD_OCR_ADDR_MISALIGNED ((uint32_t)0x40000000)
|
|
#define SD_OCR_BLOCK_LEN_ERR ((uint32_t)0x20000000)
|
|
#define SD_OCR_ERASE_SEQ_ERR ((uint32_t)0x10000000)
|
|
#define SD_OCR_BAD_ERASE_PARAM ((uint32_t)0x08000000)
|
|
#define SD_OCR_WRITE_PROT_VIOLATION ((uint32_t)0x04000000)
|
|
#define SD_OCR_LOCK_UNLOCK_FAILED ((uint32_t)0x01000000)
|
|
#define SD_OCR_COM_CRC_FAILED ((uint32_t)0x00800000)
|
|
#define SD_OCR_ILLEGAL_CMD ((uint32_t)0x00400000)
|
|
#define SD_OCR_CARD_ECC_FAILED ((uint32_t)0x00200000)
|
|
#define SD_OCR_CC_ERROR ((uint32_t)0x00100000)
|
|
#define SD_OCR_GENERAL_UNKNOWN_ERROR ((uint32_t)0x00080000)
|
|
#define SD_OCR_STREAM_READ_UNDERRUN ((uint32_t)0x00040000)
|
|
#define SD_OCR_STREAM_WRITE_OVERRUN ((uint32_t)0x00020000)
|
|
#define SD_OCR_CID_CSD_OVERWRITE ((uint32_t)0x00010000)
|
|
#define SD_OCR_WP_ERASE_SKIP ((uint32_t)0x00008000)
|
|
#define SD_OCR_CARD_ECC_DISABLED ((uint32_t)0x00004000)
|
|
#define SD_OCR_ERASE_RESET ((uint32_t)0x00002000)
|
|
#define SD_OCR_AKE_SEQ_ERROR ((uint32_t)0x00000008)
|
|
#define SD_OCR_ERRORBITS ((uint32_t)0xFDFFE008)
|
|
|
|
#define SD_R6_GENERAL_UNKNOWN_ERROR ((uint32_t)0x00002000)
|
|
#define SD_R6_ILLEGAL_CMD ((uint32_t)0x00004000)
|
|
#define SD_R6_COM_CRC_FAILED ((uint32_t)0x00008000)
|
|
|
|
#define SD_VOLTAGE_WINDOW_SD ((uint32_t)0x80100000)
|
|
#define SD_RESP_HIGH_CAPACITY ((uint32_t)0x40000000)
|
|
#define SD_RESP_STD_CAPACITY ((uint32_t)0x00000000)
|
|
#define SD_CHECK_PATTERN ((uint32_t)0x000001AA)
|
|
|
|
#define SD_MAX_VOLT_TRIAL ((uint32_t)0x0000FFFF)
|
|
#define SD_ALLZERO ((uint32_t)0x00000000)
|
|
|
|
#define SD_WIDE_BUS_SUPPORT ((uint32_t)0x00040000)
|
|
#define SD_SINGLE_BUS_SUPPORT ((uint32_t)0x00010000)
|
|
#define SD_CARD_LOCKED ((uint32_t)0x02000000)
|
|
|
|
#define SD_0TO7BITS ((uint32_t)0x000000FF)
|
|
#define SD_8TO15BITS ((uint32_t)0x0000FF00)
|
|
#define SD_16TO23BITS ((uint32_t)0x00FF0000)
|
|
#define SD_24TO31BITS ((uint32_t)0xFF000000)
|
|
#define SD_MAX_DATA_LENGTH ((uint32_t)0x01FFFFFF)
|
|
|
|
#define SD_CCCC_ERASE ((uint32_t)0x00000020)
|
|
|
|
#define SD_SDMMC_SEND_IF_COND ((uint32_t)SD_CMD_HS_SEND_EXT_CSD)
|
|
|
|
|
|
|
|
#define SD_BUS_WIDE_1B ((uint32_t)0x00000000)
|
|
#define SD_BUS_WIDE_4B SDMMC_CLKCR_WIDBUS_0
|
|
#define SD_BUS_WIDE_8B SDMMC_CLKCR_WIDBUS_1
|
|
|
|
#define SD_CMD_RESPONSE_SHORT SDMMC_CMD_WAITRESP_0
|
|
#define SD_CMD_RESPONSE_LONG SDMMC_CMD_WAITRESP
|
|
|
|
#define SD_DATABLOCK_SIZE_8B (SDMMC_DCTRL_DBLOCKSIZE_0|SDMMC_DCTRL_DBLOCKSIZE_1)
|
|
#define SD_DATABLOCK_SIZE_64B (SDMMC_DCTRL_DBLOCKSIZE_1|SDMMC_DCTRL_DBLOCKSIZE_2)
|
|
#define SD_DATABLOCK_SIZE_512B (SDMMC_DCTRL_DBLOCKSIZE_0|SDMMC_DCTRL_DBLOCKSIZE_3)
|
|
|
|
#define CLKCR_CLEAR_MASK ((uint32_t)(SDMMC_CLKCR_CLKDIV | SDMMC_CLKCR_PWRSAV |\
|
|
SDMMC_CLKCR_BYPASS | SDMMC_CLKCR_WIDBUS |\
|
|
SDMMC_CLKCR_NEGEDGE | SDMMC_CLKCR_HWFC_EN))
|
|
|
|
#define DCTRL_CLEAR_MASK ((uint32_t)(SDMMC_DCTRL_DTEN | SDMMC_DCTRL_DTDIR |\
|
|
SDMMC_DCTRL_DTMODE | SDMMC_DCTRL_DBLOCKSIZE))
|
|
|
|
#define CMD_CLEAR_MASK ((uint32_t)(SDMMC_CMD_CMDINDEX | SDMMC_CMD_WAITRESP |\
|
|
SDMMC_CMD_WAITINT | SDMMC_CMD_WAITPEND |\
|
|
SDMMC_CMD_CPSMEN | SDMMC_CMD_SDMMC1SUSPEND))
|
|
|
|
#define SDMMC_INIT_CLK_DIV ((uint8_t)0x76)
|
|
#define SDMMC_CLK_DIV ((uint8_t)0x00)
|
|
|
|
|
|
#define SD_CMD_GO_IDLE_STATE ((uint8_t)0) // Resets the SD memory card.
|
|
#define SD_CMD_SEND_OP_COND ((uint8_t)1) // Sends host capacity support information and activates the card's initialization process.
|
|
#define SD_CMD_ALL_SEND_CID ((uint8_t)2) // Asks any card connected to the host to send the CID numbers on the CMD line.
|
|
#define SD_CMD_SET_REL_ADDR ((uint8_t)3) // Asks the card to publish a new relative address (RCA).
|
|
#define SD_CMD_HS_SWITCH ((uint8_t)6) // Checks switchable function (mode 0) and switch card function (mode 1).
|
|
#define SD_CMD_SEL_DESEL_CARD ((uint8_t)7) // Selects the card by its own relative address and gets deselected by any other address
|
|
#define SD_CMD_HS_SEND_EXT_CSD ((uint8_t)8) // Sends SD Memory Card interface condition, which includes host supply voltage information
|
|
// and asks the card whether card supports voltage.
|
|
#define SD_CMD_SEND_CSD ((uint8_t)9) // Addressed card sends its card specific data (CSD) on the CMD line.
|
|
#define SD_CMD_SEND_CID ((uint8_t)10) // Addressed card sends its card identification (CID) on the CMD line.
|
|
#define SD_CMD_STOP_TRANSMISSION ((uint8_t)12) // Forces the card to stop transmission.
|
|
#define SD_CMD_SEND_STATUS ((uint8_t)13) // Addressed card sends its status register.
|
|
#define SD_CMD_SET_BLOCKLEN ((uint8_t)16) // Sets the block length (in bytes for SDSC) for all following block commands
|
|
// (read, write, lock). Default block length is fixed to 512 Bytes. Not effective
|
|
// for SDHS and SDXC.
|
|
#define SD_CMD_READ_SINGLE_BLOCK ((uint8_t)17) // Reads single block of size selected by SET_BLOCKLEN in case of SDSC, and a block of
|
|
// fixed 512 bytes in case of SDHC and SDXC.
|
|
#define SD_CMD_READ_MULT_BLOCK ((uint8_t)18) // Continuously transfers data blocks from card to host until interrupted by
|
|
// STOP_TRANSMISSION command.
|
|
#define SD_CMD_WRITE_SINGLE_BLOCK ((uint8_t)24) // Writes single block of size selected by SET_BLOCKLEN in case of SDSC, and a block of
|
|
// fixed 512 bytes in case of SDHC and SDXC.
|
|
#define SD_CMD_WRITE_MULT_BLOCK ((uint8_t)25) // Continuously writes blocks of data until a STOP_TRANSMISSION follows.
|
|
#define SD_CMD_SD_ERASE_GRP_START ((uint8_t)32) // Sets the address of the first write block to be erased. (For SD card only).
|
|
#define SD_CMD_SD_ERASE_GRP_END ((uint8_t)33) // Sets the address of the last write block of the continuous range to be erased.
|
|
// system set by switch function command (CMD6).
|
|
#define SD_CMD_ERASE ((uint8_t)38) // Reserved for SD security applications.
|
|
#define SD_CMD_FAST_IO ((uint8_t)39) // SD card doesn't support it (Reserved).
|
|
#define SD_CMD_APP_CMD ((uint8_t)55) // Indicates to the card that the next command is an application specific command rather
|
|
// than a standard command.
|
|
|
|
/* Following commands are SD Card Specific commands.
|
|
SDMMC_APP_CMD should be sent before sending these commands. */
|
|
#define SD_CMD_APP_SD_SET_BUSWIDTH ((uint8_t)6) // (ACMD6) Defines the data bus width to be used for data transfer. The allowed data bus
|
|
// widths are given in SCR register.
|
|
#define SD_CMD_SD_APP_STATUS ((uint8_t)13) // (ACMD13) Sends the SD status.
|
|
#define SD_CMD_SD_APP_OP_COND ((uint8_t)41) // (ACMD41) Sends host capacity support information (HCS) and asks the accessed card to
|
|
// send its operating condition register (OCR) content in the response on the CMD line.
|
|
#define SD_CMD_SD_APP_SEND_SCR ((uint8_t)51) // Reads the SD Configuration Register (SCR).
|
|
|
|
#define SDMMC_DIR_TX 1
|
|
#define SDMMC_DIR_RX 0
|
|
|
|
#define SDMMC_DMA_ST3 1
|
|
|
|
|
|
/* Typedef(s) -------------------------------------------------------------------------------------------------------*/
|
|
|
|
typedef enum
|
|
{
|
|
SD_SINGLE_BLOCK = 0, // Single block operation
|
|
SD_MULTIPLE_BLOCK = 1, // Multiple blocks operation
|
|
} SD_Operation_t;
|
|
|
|
|
|
typedef struct
|
|
{
|
|
uint32_t CSD[4]; // SD card specific data table
|
|
uint32_t CID[4]; // SD card identification number table
|
|
volatile uint32_t TransferComplete; // SD transfer complete flag in non blocking mode
|
|
volatile uint32_t TransferError; // SD transfer error flag in non blocking mode
|
|
volatile uint32_t RXCplt; // SD RX Complete is equal 0 when no transfer
|
|
volatile uint32_t TXCplt; // SD TX Complete is equal 0 when no transfer
|
|
volatile uint32_t Operation; // SD transfer operation (read/write)
|
|
} SD_Handle_t;
|
|
|
|
typedef enum
|
|
{
|
|
SD_CARD_READY = ((uint32_t)0x00000001), // Card state is ready
|
|
SD_CARD_IDENTIFICATION = ((uint32_t)0x00000002), // Card is in identification state
|
|
SD_CARD_STANDBY = ((uint32_t)0x00000003), // Card is in standby state
|
|
SD_CARD_TRANSFER = ((uint32_t)0x00000004), // Card is in transfer state
|
|
SD_CARD_SENDING = ((uint32_t)0x00000005), // Card is sending an operation
|
|
SD_CARD_RECEIVING = ((uint32_t)0x00000006), // Card is receiving operation information
|
|
SD_CARD_PROGRAMMING = ((uint32_t)0x00000007), // Card is in programming state
|
|
SD_CARD_DISCONNECTED = ((uint32_t)0x00000008), // Card is disconnected
|
|
SD_CARD_ERROR = ((uint32_t)0x000000FF) // Card is in error state
|
|
} SD_CardState_t;
|
|
|
|
/* Variable(s) ------------------------------------------------------------------------------------------------------*/
|
|
|
|
static SD_Handle_t SD_Handle;
|
|
SD_CardInfo_t SD_CardInfo;
|
|
static uint32_t SD_Status;
|
|
static uint32_t SD_CardRCA;
|
|
SD_CardType_t SD_CardType;
|
|
static volatile uint32_t TimeOut;
|
|
DMA_Stream_TypeDef *dma_stream;
|
|
|
|
|
|
/* Private function(s) ----------------------------------------------------------------------------------------------*/
|
|
|
|
static void SD_DataTransferInit (uint32_t Size, uint32_t DataBlockSize, bool IsItReadFromCard);
|
|
static SD_Error_t SD_TransmitCommand (uint32_t Command, uint32_t Argument, int8_t ResponseType);
|
|
static SD_Error_t SD_CmdResponse (uint8_t SD_CMD, int8_t ResponseType);
|
|
static void SD_GetResponse (uint32_t* pResponse);
|
|
static SD_Error_t CheckOCR_Response (uint32_t Response_R1);
|
|
static void SD_DMA_Complete (DMA_Stream_TypeDef* pDMA_Stream);
|
|
static SD_Error_t SD_InitializeCard (void);
|
|
|
|
static SD_Error_t SD_PowerON (void);
|
|
static SD_Error_t SD_WideBusOperationConfig (uint32_t WideMode);
|
|
static SD_Error_t SD_FindSCR (uint32_t *pSCR);
|
|
|
|
void SDMMC_DMA_ST3_IRQHandler(dmaChannelDescriptor_t *dma);
|
|
void SDMMC_DMA_ST6_IRQHandler(dmaChannelDescriptor_t *dma);
|
|
|
|
//static void SD_PowerOFF (void);
|
|
|
|
/** -----------------------------------------------------------------------------------------------------------------*/
|
|
/** DataTransferInit
|
|
*
|
|
* @brief Prepare the state machine for transfer
|
|
* @param SD_TransferType_e TransfertDir
|
|
* @param SD_CARD_BlockSize_e Size
|
|
*/
|
|
static void SD_DataTransferInit(uint32_t Size, uint32_t DataBlockSize, bool IsItReadFromCard)
|
|
{
|
|
uint32_t Direction;
|
|
|
|
SDMMC1->DTIMER = SD_DATATIMEOUT; // Set the SDMMC1 Data TimeOut value
|
|
SDMMC1->DLEN = Size; // Set the SDMMC1 DataLength value
|
|
Direction = (IsItReadFromCard == true) ? SDMMC_DCTRL_DTDIR : 0;
|
|
SDMMC1->DCTRL |= (uint32_t)(DataBlockSize | Direction | SDMMC_DCTRL_DTEN | 0x01);
|
|
return;
|
|
}
|
|
|
|
|
|
/** -----------------------------------------------------------------------------------------------------------------*/
|
|
/** SD_TransmitCommand
|
|
*
|
|
* @brief Send the commande to SDMMC1
|
|
* @param uint32_t Command
|
|
* @param uint32_t Argument Must provide the response size
|
|
* @param uint8_t ResponseType
|
|
* @retval SD Card error state
|
|
*/
|
|
static SD_Error_t SD_TransmitCommand(uint32_t Command, uint32_t Argument, int8_t ResponseType)
|
|
{
|
|
SD_Error_t ErrorState;
|
|
|
|
WRITE_REG(SDMMC1->ICR, SDMMC_ICR_STATIC_FLAGS); // Clear the Command Flags
|
|
WRITE_REG(SDMMC1->ARG, (uint32_t)Argument); // Set the SDMMC1 Argument value
|
|
WRITE_REG(SDMMC1->CMD, (uint32_t)(Command | SDMMC_CMD_CPSMEN)); // Set SDMMC1 command parameters
|
|
if((Argument == 0) && (ResponseType == 0)) ResponseType = -1; // Go idle command
|
|
ErrorState = SD_CmdResponse(Command & SDMMC_CMD_CMDINDEX, ResponseType);
|
|
WRITE_REG(SDMMC1->ICR, SDMMC_ICR_STATIC_FLAGS); // Clear the Command Flags
|
|
|
|
return ErrorState;
|
|
}
|
|
|
|
|
|
/** -----------------------------------------------------------------------------------------------------------------*/
|
|
/**
|
|
* @brief Checks for error conditions for any response.
|
|
* - R2 (CID or CSD) response.
|
|
* - R3 (OCR) response.
|
|
*
|
|
* @param SD_CMD: The sent command Index
|
|
* @retval SD Card error state
|
|
*/
|
|
static SD_Error_t SD_CmdResponse(uint8_t SD_CMD, int8_t ResponseType)
|
|
{
|
|
uint32_t Response_R1;
|
|
uint32_t TimeOut;
|
|
uint32_t Flag;
|
|
|
|
if(ResponseType == -1) {
|
|
Flag = SDMMC_STA_CMDSENT;
|
|
} else {
|
|
Flag = SDMMC_STA_CCRCFAIL | SDMMC_STA_CMDREND | SDMMC_STA_CTIMEOUT;
|
|
}
|
|
|
|
TimeOut = SD_SOFTWARE_COMMAND_TIMEOUT;
|
|
do
|
|
{
|
|
SD_Status = SDMMC1->STA;
|
|
TimeOut--;
|
|
}
|
|
while(((SD_Status & Flag) == 0) && (TimeOut > 0));
|
|
|
|
if(ResponseType <= 0)
|
|
{
|
|
if (TimeOut == 0) {
|
|
return SD_CMD_RSP_TIMEOUT;
|
|
} else {
|
|
return SD_OK;
|
|
}
|
|
}
|
|
|
|
if((SDMMC1->STA & SDMMC_STA_CTIMEOUT) != 0) {
|
|
return SD_CMD_RSP_TIMEOUT;
|
|
}
|
|
if(ResponseType == 3)
|
|
{
|
|
if(TimeOut == 0) {
|
|
return SD_CMD_RSP_TIMEOUT; // Card is not V2.0 compliant or card does not support the set voltage range
|
|
} else {
|
|
return SD_OK; // Card is SD V2.0 compliant
|
|
}
|
|
}
|
|
|
|
if((SDMMC1->STA & SDMMC_STA_CCRCFAIL) != 0) {
|
|
return SD_CMD_CRC_FAIL;
|
|
}
|
|
if(ResponseType == 2) {
|
|
return SD_OK;
|
|
}
|
|
if((uint8_t)SDMMC1->RESPCMD != SD_CMD) {
|
|
return SD_ILLEGAL_CMD; // Check if response is of desired command
|
|
}
|
|
|
|
Response_R1 = SDMMC1->RESP1; // We have received response, retrieve it for analysis
|
|
|
|
if(ResponseType == 1)
|
|
{
|
|
return CheckOCR_Response(Response_R1);
|
|
}
|
|
else if(ResponseType == 6)
|
|
{
|
|
if((Response_R1 & (SD_R6_GENERAL_UNKNOWN_ERROR | SD_R6_ILLEGAL_CMD | SD_R6_COM_CRC_FAILED)) == SD_ALLZERO)
|
|
{
|
|
SD_CardRCA = Response_R1;
|
|
}
|
|
if((Response_R1 & SD_R6_GENERAL_UNKNOWN_ERROR) == SD_R6_GENERAL_UNKNOWN_ERROR) {
|
|
return SD_GENERAL_UNKNOWN_ERROR;
|
|
}
|
|
if((Response_R1 & SD_R6_ILLEGAL_CMD) == SD_R6_ILLEGAL_CMD) {
|
|
return SD_ILLEGAL_CMD;
|
|
}
|
|
if((Response_R1 & SD_R6_COM_CRC_FAILED) == SD_R6_COM_CRC_FAILED) {
|
|
return SD_COM_CRC_FAILED;
|
|
}
|
|
}
|
|
|
|
return SD_OK;
|
|
}
|
|
|
|
|
|
/** -----------------------------------------------------------------------------------------------------------------*/
|
|
/**
|
|
* @brief Analyze the OCR response and return the appropriate error code
|
|
* @param Response_R1: OCR Response code
|
|
* @retval SD Card error state
|
|
*/
|
|
static SD_Error_t CheckOCR_Response(uint32_t Response_R1)
|
|
{
|
|
if((Response_R1 & SD_OCR_ERRORBITS) == SD_ALLZERO) return SD_OK;
|
|
if((Response_R1 & SD_OCR_ADDR_OUT_OF_RANGE) == SD_OCR_ADDR_OUT_OF_RANGE) return SD_ADDR_OUT_OF_RANGE;
|
|
if((Response_R1 & SD_OCR_ADDR_MISALIGNED) == SD_OCR_ADDR_MISALIGNED) return SD_ADDR_MISALIGNED;
|
|
if((Response_R1 & SD_OCR_BLOCK_LEN_ERR) == SD_OCR_BLOCK_LEN_ERR) return SD_BLOCK_LEN_ERR;
|
|
if((Response_R1 & SD_OCR_ERASE_SEQ_ERR) == SD_OCR_ERASE_SEQ_ERR) return SD_ERASE_SEQ_ERR;
|
|
if((Response_R1 & SD_OCR_BAD_ERASE_PARAM) == SD_OCR_BAD_ERASE_PARAM) return SD_BAD_ERASE_PARAM;
|
|
if((Response_R1 & SD_OCR_WRITE_PROT_VIOLATION) == SD_OCR_WRITE_PROT_VIOLATION) return SD_WRITE_PROT_VIOLATION;
|
|
if((Response_R1 & SD_OCR_LOCK_UNLOCK_FAILED) == SD_OCR_LOCK_UNLOCK_FAILED) return SD_LOCK_UNLOCK_FAILED;
|
|
if((Response_R1 & SD_OCR_COM_CRC_FAILED) == SD_OCR_COM_CRC_FAILED) return SD_COM_CRC_FAILED;
|
|
if((Response_R1 & SD_OCR_ILLEGAL_CMD) == SD_OCR_ILLEGAL_CMD) return SD_ILLEGAL_CMD;
|
|
if((Response_R1 & SD_OCR_CARD_ECC_FAILED) == SD_OCR_CARD_ECC_FAILED) return SD_CARD_ECC_FAILED;
|
|
if((Response_R1 & SD_OCR_CC_ERROR) == SD_OCR_CC_ERROR) return SD_CC_ERROR;
|
|
if((Response_R1 & SD_OCR_GENERAL_UNKNOWN_ERROR) == SD_OCR_GENERAL_UNKNOWN_ERROR)return SD_GENERAL_UNKNOWN_ERROR;
|
|
if((Response_R1 & SD_OCR_STREAM_READ_UNDERRUN) == SD_OCR_STREAM_READ_UNDERRUN) return SD_STREAM_READ_UNDERRUN;
|
|
if((Response_R1 & SD_OCR_STREAM_WRITE_OVERRUN) == SD_OCR_STREAM_WRITE_OVERRUN) return SD_STREAM_WRITE_OVERRUN;
|
|
if((Response_R1 & SD_OCR_CID_CSD_OVERWRITE) == SD_OCR_CID_CSD_OVERWRITE) return SD_CID_CSD_OVERWRITE;
|
|
if((Response_R1 & SD_OCR_WP_ERASE_SKIP) == SD_OCR_WP_ERASE_SKIP) return SD_WP_ERASE_SKIP;
|
|
if((Response_R1 & SD_OCR_CARD_ECC_DISABLED) == SD_OCR_CARD_ECC_DISABLED) return SD_CARD_ECC_DISABLED;
|
|
if((Response_R1 & SD_OCR_ERASE_RESET) == SD_OCR_ERASE_RESET) return SD_ERASE_RESET;
|
|
if((Response_R1 & SD_OCR_AKE_SEQ_ERROR) == SD_OCR_AKE_SEQ_ERROR) return SD_AKE_SEQ_ERROR;
|
|
|
|
return SD_OK;
|
|
}
|
|
|
|
|
|
/** -----------------------------------------------------------------------------------------------------------------*/
|
|
/** GetResponse
|
|
*
|
|
* @brief Get response from SD device
|
|
* @param uint32_t* pResponse
|
|
*/
|
|
static void SD_GetResponse(uint32_t* pResponse)
|
|
{
|
|
pResponse[0] = SDMMC1->RESP1;
|
|
pResponse[1] = SDMMC1->RESP2;
|
|
pResponse[2] = SDMMC1->RESP3;
|
|
pResponse[3] = SDMMC1->RESP4;
|
|
}
|
|
|
|
|
|
/** -----------------------------------------------------------------------------------------------------------------*/
|
|
/**
|
|
* @brief SD DMA transfer complete RX and TX callback.
|
|
* @param DMA_Stream_TypeDef* pDMA_Stream
|
|
*/
|
|
static void SD_DMA_Complete(DMA_Stream_TypeDef* pDMA_Stream)
|
|
{
|
|
if (SD_Handle.RXCplt) {
|
|
if (SD_Handle.Operation == ((SDMMC_DIR_RX << 1) | SD_MULTIPLE_BLOCK)) {
|
|
/* Send stop command in multiblock write */
|
|
SD_TransmitCommand((SD_CMD_STOP_TRANSMISSION | SD_CMD_RESPONSE_SHORT), 0, 1);
|
|
}
|
|
|
|
/* Disable the DMA transfer for transmit request by setting the DMAEN bit
|
|
in the SD DCTRL register */
|
|
SDMMC1->DCTRL &= (uint32_t)~((uint32_t)SDMMC_DCTRL_DMAEN);
|
|
|
|
/* Clear all the static flags */
|
|
SDMMC1->ICR = SDMMC_ICR_STATIC_FLAGS;
|
|
|
|
/* Clear flag */
|
|
SD_Handle.RXCplt = 0;
|
|
|
|
/* Disable the stream */
|
|
pDMA_Stream->CR &= ~DMA_SxCR_EN;
|
|
} else {
|
|
/* Enable Dataend IE */
|
|
SDMMC1->MASK |= SDMMC_MASK_DATAENDIE;
|
|
}
|
|
}
|
|
|
|
|
|
/** -----------------------------------------------------------------------------------------------------------------*/
|
|
/**
|
|
* @brief Initializes all cards or single card as the case may be Card(s) come
|
|
* into standby state.
|
|
* @retval SD Card error state
|
|
*/
|
|
static SD_Error_t SD_InitializeCard(void)
|
|
{
|
|
SD_Error_t ErrorState = SD_OK;
|
|
|
|
if((SDMMC1->POWER & SDMMC_POWER_PWRCTRL) != 0) // Power off
|
|
{
|
|
if(SD_CardType != SD_SECURE_DIGITAL_IO)
|
|
{
|
|
// Send CMD2 ALL_SEND_CID
|
|
if((ErrorState = SD_TransmitCommand((SD_CMD_ALL_SEND_CID | SD_CMD_RESPONSE_LONG), 0, 2)) != SD_OK)
|
|
{
|
|
return ErrorState;
|
|
}
|
|
|
|
// Get Card identification number data
|
|
SD_GetResponse(SD_Handle.CID);
|
|
}
|
|
|
|
if((SD_CardType == SD_STD_CAPACITY_V1_1) || (SD_CardType == SD_STD_CAPACITY_V2_0) ||
|
|
(SD_CardType == SD_SECURE_DIGITAL_IO_COMBO) || (SD_CardType == SD_HIGH_CAPACITY))
|
|
{
|
|
// Send CMD3 SET_REL_ADDR with argument 0
|
|
// SD Card publishes its RCA.
|
|
if((ErrorState = SD_TransmitCommand((SD_CMD_SET_REL_ADDR | SD_CMD_RESPONSE_SHORT), 0, 6)) != SD_OK)
|
|
{
|
|
return ErrorState;
|
|
}
|
|
}
|
|
|
|
if(SD_CardType != SD_SECURE_DIGITAL_IO)
|
|
{
|
|
// Send CMD9 SEND_CSD with argument as card's RCA
|
|
if((ErrorState = SD_TransmitCommand((SD_CMD_SEND_CSD | SD_CMD_RESPONSE_LONG), SD_CardRCA, 2)) == SD_OK)
|
|
{
|
|
// Get Card Specific Data
|
|
SD_GetResponse(SD_Handle.CSD);
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
ErrorState = SD_REQUEST_NOT_APPLICABLE;
|
|
}
|
|
|
|
return ErrorState;
|
|
}
|
|
|
|
|
|
/** -----------------------------------------------------------------------------------------------------------------*/
|
|
/**
|
|
* @brief Prepre the DMA transfer
|
|
* @param pDMA: DMA Stream to use for the DMA operation
|
|
* @param pBuffer: Pointer to the buffer that will contain the data to transmit
|
|
* @param BlockSize: The SD card Data block size
|
|
* @note BlockSize must be 512 bytes.
|
|
* @param NumberOfBlocks: Number of blocks to write
|
|
* @retval SD Card error state
|
|
*/
|
|
static void SD_StartBlockTransfert(uint32_t* pBuffer, uint32_t BlockSize, uint32_t NumberOfBlocks, uint8_t dir)
|
|
{
|
|
DMA_Stream_TypeDef *pDMA = dma_stream;
|
|
|
|
SDMMC1->DCTRL = 0; // Initialize data control register
|
|
SD_Handle.TransferComplete = 0; // Initialize handle flags
|
|
SD_Handle.TransferError = SD_OK;
|
|
SD_Handle.Operation = (NumberOfBlocks > 1) ? SD_MULTIPLE_BLOCK : SD_SINGLE_BLOCK; // Initialize SD Read operation
|
|
SD_Handle.Operation |= dir << 1;
|
|
SDMMC1->MASK = 0;
|
|
if (dir == SDMMC_DIR_RX) {
|
|
SDMMC1->MASK |= (SDMMC_MASK_DCRCFAILIE | SDMMC_MASK_DTIMEOUTIE | // Enable transfer interrupts
|
|
SDMMC_MASK_DATAENDIE | SDMMC_MASK_RXOVERRIE);
|
|
} else {
|
|
SDMMC1->MASK |= (SDMMC_MASK_DCRCFAILIE | SDMMC_MASK_DTIMEOUTIE | // Enable transfer interrupts
|
|
SDMMC_MASK_TXUNDERRIE);
|
|
}
|
|
if (dir == SDMMC_DIR_TX) {
|
|
SDMMC1->DCTRL |= SDMMC_DCTRL_DMAEN; // Enable SDMMC1 DMA transfer
|
|
}
|
|
pDMA->CR &= ~DMA_SxCR_EN; // Disable the Peripheral
|
|
while (pDMA->CR & DMA_SxCR_EN);
|
|
pDMA->NDTR = (uint32_t) (BlockSize * NumberOfBlocks) / 4; // Configure DMA Stream data length
|
|
pDMA->M0AR = (uint32_t) pBuffer; // Configure DMA Stream memory address
|
|
if (dir == SDMMC_DIR_RX) {
|
|
pDMA->CR &= ~(0x01U << 6U); // Sets peripheral to memory
|
|
} else {
|
|
pDMA->CR |= DMA_MEMORY_TO_PERIPH; // Sets memory to peripheral
|
|
}
|
|
if (dma_stream == DMA2_Stream3) {
|
|
DMA2->LIFCR = DMA_LIFCR_CTEIF3 | DMA_LIFCR_CDMEIF3 |
|
|
DMA_LIFCR_CFEIF3 | DMA_LIFCR_CHTIF3 | DMA_LIFCR_CTCIF3; // Clear the transfer error flag
|
|
} else {
|
|
DMA2->HIFCR = DMA_HIFCR_CTEIF6 | DMA_HIFCR_CDMEIF6 |
|
|
DMA_HIFCR_CFEIF6 | DMA_HIFCR_CHTIF6 | DMA_HIFCR_CTCIF6; // Clear the transfer error flag
|
|
}
|
|
pDMA->CR |= DMA_SxCR_TCIE | DMA_SxCR_HTIE | DMA_SxCR_TEIE | DMA_SxCR_DMEIE; // Enable all interrupts
|
|
pDMA->FCR |= DMA_SxFCR_FEIE;
|
|
pDMA->CR |= DMA_SxCR_EN; // Enable the Peripheral
|
|
if (dir == SDMMC_DIR_RX) {
|
|
SDMMC1->DCTRL |= SDMMC_DCTRL_DMAEN; // Enable SDMMC1 DMA transfer
|
|
}
|
|
}
|
|
|
|
|
|
/** -----------------------------------------------------------------------------------------------------------------*/
|
|
/**
|
|
* @brief Reads block(s) from a specified address in a card. The Data transfer
|
|
* is managed by DMA mode.
|
|
* @note This API should be followed by the function SD_CheckOperation()
|
|
* to check the completion of the read process
|
|
* @param pReadBuffer: Pointer to the buffer that will contain the received data
|
|
* @param ReadAddr: Address from where data is to be read
|
|
* @param BlockSize: SD card Data block size
|
|
* @note BlockSize must be 512 bytes.
|
|
* @param NumberOfBlocks: Number of blocks to read.
|
|
* @retval SD Card error state
|
|
*/
|
|
SD_Error_t SD_ReadBlocks_DMA(uint64_t ReadAddress, uint32_t *buffer, uint32_t BlockSize, uint32_t NumberOfBlocks)
|
|
{
|
|
SD_Error_t ErrorState;
|
|
uint32_t CmdIndex;
|
|
SD_Handle.RXCplt = 1;
|
|
|
|
//printf("Reading at %ld into %p %ld blocks\n", (uint32_t)ReadAddress, (void*)buffer, NumberOfBlocks);
|
|
|
|
if(SD_CardType != SD_HIGH_CAPACITY)
|
|
{
|
|
ReadAddress *= 512;
|
|
}
|
|
|
|
SD_StartBlockTransfert(buffer, BlockSize, NumberOfBlocks, SDMMC_DIR_RX);
|
|
|
|
// Configure the SD DPSM (Data Path State Machine)
|
|
SD_DataTransferInit(BlockSize * NumberOfBlocks, SD_DATABLOCK_SIZE_512B, true);
|
|
|
|
// Set Block Size for Card
|
|
ErrorState = SD_TransmitCommand((SD_CMD_SET_BLOCKLEN | SD_CMD_RESPONSE_SHORT), BlockSize, 1);
|
|
|
|
// Send CMD18 READ_MULT_BLOCK with argument data address
|
|
// or send CMD17 READ_SINGLE_BLOCK depending on number of block
|
|
uint8_t retries = 10;
|
|
CmdIndex = (NumberOfBlocks > 1) ? SD_CMD_READ_MULT_BLOCK : SD_CMD_READ_SINGLE_BLOCK;
|
|
do {
|
|
ErrorState = SD_TransmitCommand((CmdIndex | SD_CMD_RESPONSE_SHORT), (uint32_t)ReadAddress, 1);
|
|
if (ErrorState != SD_OK && retries--) {
|
|
ErrorState = SD_TransmitCommand((SD_CMD_APP_CMD | SD_CMD_RESPONSE_SHORT), 0, 1);
|
|
}
|
|
} while (ErrorState != SD_OK && retries);
|
|
|
|
if (ErrorState != SD_OK) {
|
|
SD_Handle.RXCplt = 0;
|
|
}
|
|
|
|
// Update the SD transfer error in SD handle
|
|
SD_Handle.TransferError = ErrorState;
|
|
|
|
return ErrorState;
|
|
}
|
|
|
|
|
|
/** -----------------------------------------------------------------------------------------------------------------*/
|
|
/**
|
|
* @brief Writes block(s) to a specified address in a card. The Data transfer
|
|
* is managed by DMA mode.
|
|
* @note This API should be followed by the function SD_CheckOperation()
|
|
* to check the completion of the write process (by SD current status polling).
|
|
* @param pWriteBuffer: pointer to the buffer that will contain the data to transmit
|
|
* @param WriteAddress: Address from where data is to be read
|
|
* @param BlockSize: the SD card Data block size
|
|
* @note BlockSize must be 512 bytes.
|
|
* @param NumberOfBlocks: Number of blocks to write
|
|
* @retval SD Card error state
|
|
*/
|
|
SD_Error_t SD_WriteBlocks_DMA(uint64_t WriteAddress, uint32_t *buffer, uint32_t BlockSize, uint32_t NumberOfBlocks)
|
|
{
|
|
SD_Error_t ErrorState;
|
|
uint32_t CmdIndex;
|
|
SD_Handle.TXCplt = 1;
|
|
|
|
//printf("Reading at %ld into %p %ld blocks\n", (uint32_t)WriteAddress, (void*)buffer, NumberOfBlocks);
|
|
|
|
if(SD_CardType != SD_HIGH_CAPACITY)
|
|
{
|
|
WriteAddress *= 512;
|
|
}
|
|
|
|
// Check number of blocks command
|
|
// Send CMD24 WRITE_SINGLE_BLOCK
|
|
// Send CMD25 WRITE_MULT_BLOCK with argument data address
|
|
CmdIndex = (NumberOfBlocks > 1) ? SD_CMD_WRITE_MULT_BLOCK : SD_CMD_WRITE_SINGLE_BLOCK;
|
|
|
|
// Set Block Size for Card
|
|
uint8_t retries = 10;
|
|
do {
|
|
ErrorState = SD_TransmitCommand((CmdIndex | SD_CMD_RESPONSE_SHORT), (uint32_t)WriteAddress, 1);
|
|
if (ErrorState != SD_OK && retries--) {
|
|
ErrorState = SD_TransmitCommand((SD_CMD_APP_CMD | SD_CMD_RESPONSE_SHORT), 0, 1);
|
|
}
|
|
} while(ErrorState != SD_OK && retries);
|
|
|
|
if (ErrorState != SD_OK) {
|
|
SD_Handle.TXCplt = 0;
|
|
return ErrorState;
|
|
}
|
|
|
|
SD_StartBlockTransfert(buffer, BlockSize, NumberOfBlocks, SDMMC_DIR_TX);
|
|
|
|
// Configure the SD DPSM (Data Path State Machine)
|
|
SD_DataTransferInit(BlockSize * NumberOfBlocks, SD_DATABLOCK_SIZE_512B, false);
|
|
|
|
SD_Handle.TransferError = ErrorState;
|
|
|
|
return ErrorState;
|
|
}
|
|
|
|
SD_Error_t SD_CheckWrite(void) {
|
|
if (SD_Handle.TXCplt != 0) return SD_BUSY;
|
|
return SD_OK;
|
|
}
|
|
|
|
SD_Error_t SD_CheckRead(void) {
|
|
if (SD_Handle.RXCplt != 0) return SD_BUSY;
|
|
return SD_OK;
|
|
}
|
|
|
|
/** -----------------------------------------------------------------------------------------------------------------*/
|
|
/**
|
|
* @brief This function waits until the SD DMA data wirte or read transfer is finished.
|
|
* This should be called after WriteBlocks_DMA or SD_ReadBlocks_DMA() function
|
|
* to insure that all data sent is already transferred by the DMA controller.
|
|
* @retval SD Card error state
|
|
*/
|
|
/*
|
|
SD_Error_t SD_CheckOperation(uint32_t Flag)
|
|
{
|
|
SD_Error_t ErrorState = SD_OK;
|
|
uint32_t TimeOut;
|
|
uint32_t Temp1;
|
|
uint32_t Temp2;
|
|
SD_Error_t Temp3;
|
|
|
|
// Wait for DMA/SD transfer end or SD error variables to be in SD handle
|
|
Temp1 = SD_Handle.DMA_XferComplete;
|
|
Temp2 = SD_Handle.TransferComplete;
|
|
Temp3 = (SD_Error_t)SD_Handle.TransferError;
|
|
|
|
if (((Temp1 & Temp2) == 0) && (Temp3 == SD_OK) && (TimeOut > 0))
|
|
{
|
|
Temp1 = SD_Handle.DMA_XferComplete;
|
|
Temp2 = SD_Handle.TransferComplete;
|
|
Temp3 = (SD_Error_t)SD_Handle.TransferError;
|
|
TimeOut--;
|
|
return SD_BUSY;
|
|
}
|
|
|
|
// Wait until the Rx transfer is no longer active
|
|
if (((SDMMC1->STA & Flag) != 0) && (TimeOut > 0))
|
|
{
|
|
TimeOut--;
|
|
return SD_BUSY;
|
|
}
|
|
|
|
// Send stop command in multi block read
|
|
if(SD_Handle.Operation & 0x01 == SD_MULTIPLE_BLOCK)
|
|
{
|
|
ErrorState = SD_TransmitCommand((SD_CMD_STOP_TRANSMISSION | SD_CMD_RESPONSE_SHORT), 0, 1);
|
|
}
|
|
|
|
if((TimeOut == 0) && (ErrorState == SD_OK))
|
|
{
|
|
ErrorState = SD_DATA_TIMEOUT;
|
|
}
|
|
|
|
// Return error state
|
|
if(SD_Handle.TransferError != SD_OK)
|
|
{
|
|
return (SD_Error_t)(SD_Handle.TransferError);
|
|
}
|
|
|
|
return ErrorState;
|
|
}
|
|
*/
|
|
|
|
/** -----------------------------------------------------------------------------------------------------------------*/
|
|
/**
|
|
* @brief Erases the specified memory area of the given SD card.
|
|
* @param StartAddress: Start byte address
|
|
* @param EndAddress: End byte address
|
|
* @retval SD Card error state
|
|
*/
|
|
/*
|
|
SD_Error_t SD_Erase(uint64_t StartAddress, uint64_t EndAddress)
|
|
{
|
|
SD_Error_t ErrorState;
|
|
uint32_t Delay;
|
|
uint32_t MaxDelay;
|
|
uint8_t CardState;
|
|
|
|
// Check if the card command class supports erase command
|
|
if(((SD_Handle.CSD[1] >> 20) & SD_CCCC_ERASE) == 0)
|
|
{
|
|
return SD_REQUEST_NOT_APPLICABLE;
|
|
}
|
|
|
|
// Get max delay value
|
|
MaxDelay = 120000 / (((SDMMC1->CLKCR) & 0xFF) + 2);
|
|
|
|
if((SDMMC1->RESP1 & SD_CARD_LOCKED) == SD_CARD_LOCKED)
|
|
{
|
|
return SD_LOCK_UNLOCK_FAILED;
|
|
}
|
|
|
|
// Get start and end block for high capacity cards
|
|
if(SD_CardType == SD_HIGH_CAPACITY)
|
|
{
|
|
StartAddress /= 512;
|
|
EndAddress /= 512;
|
|
}
|
|
|
|
// According to sd-card spec 1.0 ERASE_GROUP_START (CMD32) and erase_group_end(CMD33)
|
|
if ((SD_CardType == SD_STD_CAPACITY_V1_1) || (SD_CardType == SD_STD_CAPACITY_V2_0) ||
|
|
(SD_CardType == SD_HIGH_CAPACITY))
|
|
{
|
|
// Send CMD32 SD_ERASE_GRP_START with argument as addr
|
|
if((ErrorState = SD_TransmitCommand((SD_CMD_SD_ERASE_GRP_START | SDMMC_CMD_RESPONSE_SHORT), (uint32_t)StartAddress, 1)) != SD_OK)
|
|
{
|
|
return ErrorState;
|
|
}
|
|
|
|
// Send CMD33 SD_ERASE_GRP_END with argument as addr
|
|
if((ErrorState = SD_TransmitCommand((SD_CMD_SD_ERASE_GRP_END | SDMMC_CMD_RESPONSE_SHORT), (uint32_t)EndAddress, 1)) != SD_OK)
|
|
{
|
|
return ErrorState;
|
|
}
|
|
}
|
|
|
|
// Send CMD38 ERASE
|
|
if((ErrorState = SD_TransmitCommand((SD_CMD_ERASE | SDMMC_CMD_RESPONSE_SHORT), 0, 1)) != SD_OK)
|
|
{
|
|
return ErrorState;
|
|
}
|
|
|
|
for(Delay = 0; Delay < MaxDelay; Delay++);
|
|
|
|
// Wait until the card is in programming state
|
|
ErrorState = SD_IsCardProgramming(&CardState);
|
|
|
|
Delay = SD_DATATIMEOUT;
|
|
while((Delay > 0) && (ErrorState == SD_OK) && ((CardState == SD_CARD_PROGRAMMING) || (CardState == SD_CARD_RECEIVING)))
|
|
{
|
|
ErrorState = SD_IsCardProgramming( &CardState);
|
|
Delay--;
|
|
}
|
|
|
|
return ErrorState;
|
|
}
|
|
*/
|
|
|
|
|
|
/** -----------------------------------------------------------------------------------------------------------------*/
|
|
/**
|
|
* @brief Returns information about specific card.
|
|
* contains all SD cardinformation
|
|
* @retval SD Card error state
|
|
*/
|
|
SD_Error_t SD_GetCardInfo(void)
|
|
{
|
|
SD_Error_t ErrorState = SD_OK;
|
|
uint32_t Temp = 0;
|
|
|
|
// Byte 0
|
|
Temp = (SD_Handle.CSD[0] & 0xFF000000) >> 24;
|
|
SD_CardInfo.SD_csd.CSDStruct = (uint8_t)((Temp & 0xC0) >> 6);
|
|
SD_CardInfo.SD_csd.SysSpecVersion = (uint8_t)((Temp & 0x3C) >> 2);
|
|
SD_CardInfo.SD_csd.Reserved1 = Temp & 0x03;
|
|
|
|
// Byte 1
|
|
Temp = (SD_Handle.CSD[0] & 0x00FF0000) >> 16;
|
|
SD_CardInfo.SD_csd.TAAC = (uint8_t)Temp;
|
|
|
|
// Byte 2
|
|
Temp = (SD_Handle.CSD[0] & 0x0000FF00) >> 8;
|
|
SD_CardInfo.SD_csd.NSAC = (uint8_t)Temp;
|
|
|
|
// Byte 3
|
|
Temp = SD_Handle.CSD[0] & 0x000000FF;
|
|
SD_CardInfo.SD_csd.MaxBusClkFrec = (uint8_t)Temp;
|
|
|
|
// Byte 4
|
|
Temp = (SD_Handle.CSD[1] & 0xFF000000) >> 24;
|
|
SD_CardInfo.SD_csd.CardComdClasses = (uint16_t)(Temp << 4);
|
|
|
|
// Byte 5
|
|
Temp = (SD_Handle.CSD[1] & 0x00FF0000) >> 16;
|
|
SD_CardInfo.SD_csd.CardComdClasses |= (uint16_t)((Temp & 0xF0) >> 4);
|
|
SD_CardInfo.SD_csd.RdBlockLen = (uint8_t)(Temp & 0x0F);
|
|
|
|
// Byte 6
|
|
Temp = (SD_Handle.CSD[1] & 0x0000FF00) >> 8;
|
|
SD_CardInfo.SD_csd.PartBlockRead = (uint8_t)((Temp & 0x80) >> 7);
|
|
SD_CardInfo.SD_csd.WrBlockMisalign = (uint8_t)((Temp & 0x40) >> 6);
|
|
SD_CardInfo.SD_csd.RdBlockMisalign = (uint8_t)((Temp & 0x20) >> 5);
|
|
SD_CardInfo.SD_csd.DSRImpl = (uint8_t)((Temp & 0x10) >> 4);
|
|
SD_CardInfo.SD_csd.Reserved2 = 0; /*!< Reserved */
|
|
|
|
if((SD_CardType == SD_STD_CAPACITY_V1_1) || (SD_CardType == SD_STD_CAPACITY_V2_0))
|
|
{
|
|
SD_CardInfo.SD_csd.DeviceSize = (Temp & 0x03) << 10;
|
|
|
|
// Byte 7
|
|
Temp = (uint8_t)(SD_Handle.CSD[1] & 0x000000FF);
|
|
SD_CardInfo.SD_csd.DeviceSize |= (Temp) << 2;
|
|
|
|
// Byte 8
|
|
Temp = (uint8_t)((SD_Handle.CSD[2] & 0xFF000000) >> 24);
|
|
SD_CardInfo.SD_csd.DeviceSize |= (Temp & 0xC0) >> 6;
|
|
|
|
SD_CardInfo.SD_csd.MaxRdCurrentVDDMin = (Temp & 0x38) >> 3;
|
|
SD_CardInfo.SD_csd.MaxRdCurrentVDDMax = (Temp & 0x07);
|
|
|
|
// Byte 9
|
|
Temp = (uint8_t)((SD_Handle.CSD[2] & 0x00FF0000) >> 16);
|
|
SD_CardInfo.SD_csd.MaxWrCurrentVDDMin = (Temp & 0xE0) >> 5;
|
|
SD_CardInfo.SD_csd.MaxWrCurrentVDDMax = (Temp & 0x1C) >> 2;
|
|
SD_CardInfo.SD_csd.DeviceSizeMul = (Temp & 0x03) << 1;
|
|
|
|
// Byte 10
|
|
Temp = (uint8_t)((SD_Handle.CSD[2] & 0x0000FF00) >> 8);
|
|
SD_CardInfo.SD_csd.DeviceSizeMul |= (Temp & 0x80) >> 7;
|
|
|
|
SD_CardInfo.CardCapacity = (SD_CardInfo.SD_csd.DeviceSize + 1) ;
|
|
SD_CardInfo.CardCapacity *= (1 << (SD_CardInfo.SD_csd.DeviceSizeMul + 2));
|
|
SD_CardInfo.CardBlockSize = 1 << (SD_CardInfo.SD_csd.RdBlockLen);
|
|
SD_CardInfo.CardCapacity = SD_CardInfo.CardCapacity * SD_CardInfo.CardBlockSize / 512; // In 512 byte blocks
|
|
}
|
|
else if(SD_CardType == SD_HIGH_CAPACITY)
|
|
{
|
|
// Byte 7
|
|
Temp = (uint8_t)(SD_Handle.CSD[1] & 0x000000FF);
|
|
SD_CardInfo.SD_csd.DeviceSize = (Temp & 0x3F) << 16;
|
|
|
|
// Byte 8
|
|
Temp = (uint8_t)((SD_Handle.CSD[2] & 0xFF000000) >> 24);
|
|
|
|
SD_CardInfo.SD_csd.DeviceSize |= (Temp << 8);
|
|
|
|
// Byte 9
|
|
Temp = (uint8_t)((SD_Handle.CSD[2] & 0x00FF0000) >> 16);
|
|
|
|
SD_CardInfo.SD_csd.DeviceSize |= (Temp);
|
|
|
|
// Byte 10
|
|
Temp = (uint8_t)((SD_Handle.CSD[2] & 0x0000FF00) >> 8);
|
|
|
|
SD_CardInfo.CardCapacity = ((uint64_t)SD_CardInfo.SD_csd.DeviceSize + 1) * 1024;
|
|
SD_CardInfo.CardBlockSize = 512;
|
|
}
|
|
else
|
|
{
|
|
// Not supported card type
|
|
ErrorState = SD_ERROR;
|
|
}
|
|
|
|
SD_CardInfo.SD_csd.EraseGrSize = (Temp & 0x40) >> 6;
|
|
SD_CardInfo.SD_csd.EraseGrMul = (Temp & 0x3F) << 1;
|
|
|
|
// Byte 11
|
|
Temp = (uint8_t)(SD_Handle.CSD[2] & 0x000000FF);
|
|
SD_CardInfo.SD_csd.EraseGrMul |= (Temp & 0x80) >> 7;
|
|
SD_CardInfo.SD_csd.WrProtectGrSize = (Temp & 0x7F);
|
|
|
|
// Byte 12
|
|
Temp = (uint8_t)((SD_Handle.CSD[3] & 0xFF000000) >> 24);
|
|
SD_CardInfo.SD_csd.WrProtectGrEnable = (Temp & 0x80) >> 7;
|
|
SD_CardInfo.SD_csd.ManDeflECC = (Temp & 0x60) >> 5;
|
|
SD_CardInfo.SD_csd.WrSpeedFact = (Temp & 0x1C) >> 2;
|
|
SD_CardInfo.SD_csd.MaxWrBlockLen = (Temp & 0x03) << 2;
|
|
|
|
// Byte 13
|
|
Temp = (uint8_t)((SD_Handle.CSD[3] & 0x00FF0000) >> 16);
|
|
SD_CardInfo.SD_csd.MaxWrBlockLen |= (Temp & 0xC0) >> 6;
|
|
SD_CardInfo.SD_csd.WriteBlockPaPartial = (Temp & 0x20) >> 5;
|
|
SD_CardInfo.SD_csd.Reserved3 = 0;
|
|
SD_CardInfo.SD_csd.ContentProtectAppli = (Temp & 0x01);
|
|
|
|
// Byte 14
|
|
Temp = (uint8_t)((SD_Handle.CSD[3] & 0x0000FF00) >> 8);
|
|
SD_CardInfo.SD_csd.FileFormatGrouop = (Temp & 0x80) >> 7;
|
|
SD_CardInfo.SD_csd.CopyFlag = (Temp & 0x40) >> 6;
|
|
SD_CardInfo.SD_csd.PermWrProtect = (Temp & 0x20) >> 5;
|
|
SD_CardInfo.SD_csd.TempWrProtect = (Temp & 0x10) >> 4;
|
|
SD_CardInfo.SD_csd.FileFormat = (Temp & 0x0C) >> 2;
|
|
SD_CardInfo.SD_csd.ECC = (Temp & 0x03);
|
|
|
|
// Byte 15
|
|
Temp = (uint8_t)(SD_Handle.CSD[3] & 0x000000FF);
|
|
SD_CardInfo.SD_csd.CSD_CRC = (Temp & 0xFE) >> 1;
|
|
SD_CardInfo.SD_csd.Reserved4 = 1;
|
|
|
|
// Byte 0
|
|
Temp = (uint8_t)((SD_Handle.CID[0] & 0xFF000000) >> 24);
|
|
SD_CardInfo.SD_cid.ManufacturerID = Temp;
|
|
|
|
// Byte 1
|
|
Temp = (uint8_t)((SD_Handle.CID[0] & 0x00FF0000) >> 16);
|
|
SD_CardInfo.SD_cid.OEM_AppliID = Temp << 8;
|
|
|
|
// Byte 2
|
|
Temp = (uint8_t)((SD_Handle.CID[0] & 0x000000FF00) >> 8);
|
|
SD_CardInfo.SD_cid.OEM_AppliID |= Temp;
|
|
|
|
// Byte 3
|
|
Temp = (uint8_t)(SD_Handle.CID[0] & 0x000000FF);
|
|
SD_CardInfo.SD_cid.ProdName1 = Temp << 24;
|
|
|
|
// Byte 4
|
|
Temp = (uint8_t)((SD_Handle.CID[1] & 0xFF000000) >> 24);
|
|
SD_CardInfo.SD_cid.ProdName1 |= Temp << 16;
|
|
|
|
// Byte 5
|
|
Temp = (uint8_t)((SD_Handle.CID[1] & 0x00FF0000) >> 16);
|
|
SD_CardInfo.SD_cid.ProdName1 |= Temp << 8;
|
|
|
|
// Byte 6
|
|
Temp = (uint8_t)((SD_Handle.CID[1] & 0x0000FF00) >> 8);
|
|
SD_CardInfo.SD_cid.ProdName1 |= Temp;
|
|
|
|
// Byte 7
|
|
Temp = (uint8_t)(SD_Handle.CID[1] & 0x000000FF);
|
|
SD_CardInfo.SD_cid.ProdName2 = Temp;
|
|
|
|
// Byte 8
|
|
Temp = (uint8_t)((SD_Handle.CID[2] & 0xFF000000) >> 24);
|
|
SD_CardInfo.SD_cid.ProdRev = Temp;
|
|
|
|
// Byte 9
|
|
Temp = (uint8_t)((SD_Handle.CID[2] & 0x00FF0000) >> 16);
|
|
SD_CardInfo.SD_cid.ProdSN = Temp << 24;
|
|
|
|
// Byte 10
|
|
Temp = (uint8_t)((SD_Handle.CID[2] & 0x0000FF00) >> 8);
|
|
SD_CardInfo.SD_cid.ProdSN |= Temp << 16;
|
|
|
|
// Byte 11
|
|
Temp = (uint8_t)(SD_Handle.CID[2] & 0x000000FF);
|
|
SD_CardInfo.SD_cid.ProdSN |= Temp << 8;
|
|
|
|
// Byte 12
|
|
Temp = (uint8_t)((SD_Handle.CID[3] & 0xFF000000) >> 24);
|
|
SD_CardInfo.SD_cid.ProdSN |= Temp;
|
|
|
|
// Byte 13
|
|
Temp = (uint8_t)((SD_Handle.CID[3] & 0x00FF0000) >> 16);
|
|
SD_CardInfo.SD_cid.Reserved1 |= (Temp & 0xF0) >> 4;
|
|
SD_CardInfo.SD_cid.ManufactDate = (Temp & 0x0F) << 8;
|
|
|
|
// Byte 14
|
|
Temp = (uint8_t)((SD_Handle.CID[3] & 0x0000FF00) >> 8);
|
|
SD_CardInfo.SD_cid.ManufactDate |= Temp;
|
|
|
|
// Byte 15
|
|
Temp = (uint8_t)(SD_Handle.CID[3] & 0x000000FF);
|
|
SD_CardInfo.SD_cid.CID_CRC = (Temp & 0xFE) >> 1;
|
|
SD_CardInfo.SD_cid.Reserved2 = 1;
|
|
|
|
return ErrorState;
|
|
}
|
|
|
|
|
|
/** -----------------------------------------------------------------------------------------------------------------*/
|
|
/**
|
|
* @brief Enables wide bus operation for the requested card if supported by
|
|
* card.
|
|
* @param WideMode: Specifies the SD card wide bus mode
|
|
* This parameter can be one of the following values:
|
|
* @arg SD_BUS_WIDE_8B: 8-bit data transfer (Only for MMC)
|
|
* @arg SD_BUS_WIDE_4B: 4-bit data transfer
|
|
* @arg SD_BUS_WIDE_1B: 1-bit data transfer
|
|
* @retval SD Card error state
|
|
*/
|
|
static SD_Error_t SD_WideBusOperationConfig(uint32_t WideMode)
|
|
{
|
|
SD_Error_t ErrorState = SD_OK;
|
|
uint32_t Temp;
|
|
uint32_t SCR[2] = {0, 0};
|
|
|
|
if((SD_CardType == SD_STD_CAPACITY_V1_1) || (SD_CardType == SD_STD_CAPACITY_V2_0) ||\
|
|
(SD_CardType == SD_HIGH_CAPACITY))
|
|
{
|
|
if(WideMode == SD_BUS_WIDE_8B)
|
|
{
|
|
ErrorState = SD_UNSUPPORTED_FEATURE;
|
|
}
|
|
else if((WideMode == SD_BUS_WIDE_4B) ||
|
|
(WideMode == SD_BUS_WIDE_1B))
|
|
{
|
|
if((SDMMC1->RESP1 & SD_CARD_LOCKED) != SD_CARD_LOCKED)
|
|
{
|
|
// Get SCR Register
|
|
ErrorState = SD_FindSCR(SCR);
|
|
if(ErrorState == SD_OK)
|
|
{
|
|
Temp = (WideMode == SD_BUS_WIDE_4B) ? SD_WIDE_BUS_SUPPORT : SD_SINGLE_BUS_SUPPORT;
|
|
|
|
// If requested card supports wide bus operation
|
|
if((SCR[1] & Temp) != SD_ALLZERO)
|
|
{
|
|
// Send CMD55 APP_CMD with argument as card's RCA.
|
|
ErrorState = SD_TransmitCommand((SD_CMD_APP_CMD | SD_CMD_RESPONSE_SHORT), SD_CardRCA, 1);
|
|
if(ErrorState == SD_OK)
|
|
{
|
|
Temp = (WideMode == SD_BUS_WIDE_4B) ? 2 : 0;
|
|
|
|
// Send ACMD6 APP_CMD with argument as 2 for wide bus mode
|
|
ErrorState = SD_TransmitCommand((SD_CMD_APP_SD_SET_BUSWIDTH | SD_CMD_RESPONSE_SHORT), Temp, 1);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
ErrorState = SD_REQUEST_NOT_APPLICABLE;
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
ErrorState = SD_LOCK_UNLOCK_FAILED;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
ErrorState = SD_INVALID_PARAMETER; // WideMode is not a valid argument
|
|
}
|
|
|
|
if(ErrorState == SD_OK)
|
|
{
|
|
// Configure the SDMMC1 peripheral, we need this delay for some reason...
|
|
while ((READ_REG(SDMMC1->CLKCR) & 0x800) != WideMode) {
|
|
MODIFY_REG(SDMMC1->CLKCR, CLKCR_CLEAR_MASK, (uint32_t) WideMode);
|
|
}
|
|
}
|
|
}
|
|
else {
|
|
ErrorState = SD_UNSUPPORTED_FEATURE;
|
|
}
|
|
|
|
|
|
return ErrorState;
|
|
}
|
|
|
|
|
|
/** -----------------------------------------------------------------------------------------------------------------*/
|
|
/**
|
|
* @brief Switches the SD card to High Speed mode.
|
|
* This API must be used after "Transfer State"
|
|
* @retval SD Card error state
|
|
*/
|
|
/*
|
|
SD_Error_t HAL_SD_HighSpeed(void)
|
|
{
|
|
SD_Error_t ErrorState;
|
|
uint8_t SD_hs[64] = {0};
|
|
uint32_t SD_scr[2] = {0, 0};
|
|
uint32_t SD_SPEC = 0;
|
|
uint32_t Count = 0;
|
|
uint32_t* Buffer = (uint32_t *)SD_hs;
|
|
|
|
// Initialize the Data control register
|
|
SDMMC1->DCTRL = 0;
|
|
|
|
// Get SCR Register
|
|
if((ErrorState = SD_FindSCR(SD_scr)) != SD_OK)
|
|
{
|
|
return ErrorState;
|
|
}
|
|
|
|
// Test the Version supported by the card
|
|
SD_SPEC = (SD_scr[1] & 0x01000000) | (SD_scr[1] & 0x02000000);
|
|
|
|
if(SD_SPEC != SD_ALLZERO)
|
|
{
|
|
// Set Block Size for Card
|
|
if((ErrorState = SD_TransmitCommand((SD_CMD_SET_BLOCKLEN | SDMMC_CMD_RESPONSE_SHORT), 64, 1)) != SD_OK)
|
|
{
|
|
return ErrorState;
|
|
}
|
|
|
|
// Configure the SD DPSM (Data Path State Machine)
|
|
SD_DataTransferInit(64, SDMMC_DATABLOCK_SIZE_64B, true);
|
|
|
|
// Send CMD6 switch mode
|
|
if((ErrorState =SD_TransmitCommand((SD_CMD_HS_SWITCH | SDMMC_CMD_RESPONSE_SHORT), 0x80FFFF01, 1)) != SD_OK)
|
|
{
|
|
return ErrorState;
|
|
}
|
|
|
|
while((SDMMC1->STA & (SDMMC_STA_RXOVERR | SDMMC_STA_DCRCFAIL | SDMMC_STA_DTIMEOUT | SDMMC_STA_DBCKEND)) == 0)
|
|
{
|
|
if((SDMMC1->STA & SDMMC_STA_RXFIFOHF) != 0)
|
|
{
|
|
for(Count = 0; Count < 8; Count++)
|
|
{
|
|
*(Buffer + Count) = SDMMC1->FIFO;
|
|
}
|
|
|
|
Buffer += 8;
|
|
}
|
|
}
|
|
|
|
if((SDMMC1->STA & SDMMC_STA_DTIMEOUT) != 0) return SD_DATA_TIMEOUT;
|
|
else if((SDMMC1->STA & SDMMC_STA_DCRCFAIL) != 0) return SD_DATA_CRC_FAIL;
|
|
else if((SDMMC1->STA & SDMMC_STA_RXOVERR) != 0) return SD_RX_OVERRUN;
|
|
|
|
Count = SD_DATATIMEOUT;
|
|
|
|
while(((SDMMC1->STA & SDMMC_STA_RXDAVL) != 0) && (Count > 0))
|
|
{
|
|
*Buffer = SDMMC1->FIFO;
|
|
Buffer++;
|
|
Count--;
|
|
}
|
|
|
|
// Test if the switch mode HS is ok
|
|
if((SD_hs[13] & 2) != 2)
|
|
{
|
|
ErrorState = SD_UNSUPPORTED_FEATURE;
|
|
}
|
|
}
|
|
|
|
return ErrorState;
|
|
}
|
|
|
|
*/
|
|
|
|
|
|
/** -----------------------------------------------------------------------------------------------------------------*/
|
|
/**
|
|
* @brief Gets the current card's data status.
|
|
* @retval Data Transfer state
|
|
*/
|
|
SD_Error_t SD_GetStatus(void)
|
|
{
|
|
SD_Error_t ErrorState;
|
|
uint32_t Response1;
|
|
SD_CardState_t CardState;
|
|
|
|
|
|
// Send Status command
|
|
if((ErrorState = SD_TransmitCommand((SD_CMD_SEND_STATUS | SD_CMD_RESPONSE_SHORT), SD_CardRCA, 1)) == SD_OK)
|
|
{
|
|
Response1 = SDMMC1->RESP1;
|
|
CardState = (SD_CardState_t)((Response1 >> 9) & 0x0F);
|
|
|
|
// Find SD status according to card state
|
|
if (CardState == SD_CARD_TRANSFER) ErrorState = SD_OK;
|
|
else if(CardState == SD_CARD_ERROR) ErrorState = SD_ERROR;
|
|
else ErrorState = SD_BUSY;
|
|
}
|
|
else
|
|
{
|
|
ErrorState = SD_CARD_ERROR;
|
|
}
|
|
|
|
return ErrorState;
|
|
}
|
|
|
|
|
|
/** -----------------------------------------------------------------------------------------------------------------*/
|
|
/**
|
|
* @brief Gets the SD card status.
|
|
* @retval SD Card error state
|
|
*/
|
|
SD_Error_t SD_GetCardStatus(SD_CardStatus_t* pCardStatus)
|
|
{
|
|
SD_Error_t ErrorState;
|
|
uint32_t Temp = 0;
|
|
uint32_t Status[16];
|
|
uint32_t Count;
|
|
|
|
// Check SD response
|
|
if((SDMMC1->RESP1 & SD_CARD_LOCKED) == SD_CARD_LOCKED)
|
|
{
|
|
return SD_LOCK_UNLOCK_FAILED;
|
|
}
|
|
|
|
// Set block size for card if it is not equal to current block size for card
|
|
if((ErrorState = SD_TransmitCommand((SD_CMD_SET_BLOCKLEN | SD_CMD_RESPONSE_SHORT), 64, 1)) != SD_OK)
|
|
{
|
|
return ErrorState;
|
|
}
|
|
|
|
// Send CMD55
|
|
if((ErrorState = SD_TransmitCommand((SD_CMD_APP_CMD | SD_CMD_RESPONSE_SHORT), SD_CardRCA, 1)) != SD_OK)
|
|
{
|
|
return ErrorState;
|
|
}
|
|
|
|
// Configure the SD DPSM (Data Path State Machine)
|
|
SD_DataTransferInit(64, SD_DATABLOCK_SIZE_64B, true);
|
|
|
|
// Send ACMD13 (SD_APP_STAUS) with argument as card's RCA
|
|
if((ErrorState = SD_TransmitCommand((SD_CMD_SD_APP_STATUS | SD_CMD_RESPONSE_SHORT), 0, 1)) != SD_OK)
|
|
{
|
|
return ErrorState;
|
|
}
|
|
|
|
// Get status data
|
|
while((SDMMC1->STA & (SDMMC_STA_RXOVERR | SDMMC_STA_DCRCFAIL | SDMMC_STA_DTIMEOUT | SDMMC_STA_DBCKEND)) == 0)
|
|
{
|
|
if((SDMMC1->STA & SDMMC_STA_RXFIFOHF) != 0)
|
|
{
|
|
for(Count = 0; Count < 8; Count++)
|
|
{
|
|
Status[Count] = SDMMC1->FIFO;
|
|
}
|
|
}
|
|
}
|
|
|
|
if((SDMMC1->STA & SDMMC_STA_DTIMEOUT) != 0) return SD_DATA_TIMEOUT;
|
|
else if((SDMMC1->STA & SDMMC_STA_DCRCFAIL) != 0) return SD_DATA_CRC_FAIL;
|
|
else if((SDMMC1->STA & SDMMC_STA_RXOVERR) != 0) return SD_RX_OVERRUN;
|
|
else
|
|
{
|
|
/*
|
|
this part from the HAL is very strange has it is possible to overflow the provide buffer... and this originate from ST HAL
|
|
|
|
Count = SD_DATATIMEOUT;
|
|
while(((SDMMC1->STA & SDMMC_STA_RXDAVL) != 0) && (Count > 0))
|
|
{
|
|
*pSDstatus = SDMMC1->FIFO;
|
|
pSDstatus++;
|
|
Count--;
|
|
}
|
|
*/
|
|
}
|
|
|
|
// Byte 0
|
|
Temp = (Status[0] & 0xC0) >> 6;
|
|
pCardStatus->DAT_BUS_WIDTH = (uint8_t)Temp;
|
|
|
|
// Byte 0
|
|
Temp = (Status[0] & 0x20) >> 5;
|
|
pCardStatus->SECURED_MODE = (uint8_t)Temp;
|
|
|
|
// Byte 2
|
|
Temp = (Status[2] & 0xFF);
|
|
pCardStatus->SD_CARD_TYPE = (uint8_t)(Temp << 8);
|
|
|
|
// Byte 3
|
|
Temp = (Status[3] & 0xFF);
|
|
pCardStatus->SD_CARD_TYPE |= (uint8_t)Temp;
|
|
|
|
// Byte 4
|
|
Temp = (Status[4] & 0xFF);
|
|
pCardStatus->SIZE_OF_PROTECTED_AREA = (uint8_t)(Temp << 24);
|
|
|
|
// Byte 5
|
|
Temp = (Status[5] & 0xFF);
|
|
pCardStatus->SIZE_OF_PROTECTED_AREA |= (uint8_t)(Temp << 16);
|
|
|
|
// Byte 6
|
|
Temp = (Status[6] & 0xFF);
|
|
pCardStatus->SIZE_OF_PROTECTED_AREA |= (uint8_t)(Temp << 8);
|
|
|
|
// Byte 7
|
|
Temp = (Status[7] & 0xFF);
|
|
pCardStatus->SIZE_OF_PROTECTED_AREA |= (uint8_t)Temp;
|
|
|
|
// Byte 8
|
|
Temp = (Status[8] & 0xFF);
|
|
pCardStatus->SPEED_CLASS = (uint8_t)Temp;
|
|
|
|
// Byte 9
|
|
Temp = (Status[9] & 0xFF);
|
|
pCardStatus->PERFORMANCE_MOVE = (uint8_t)Temp;
|
|
|
|
// Byte 10
|
|
Temp = (Status[10] & 0xF0) >> 4;
|
|
pCardStatus->AU_SIZE = (uint8_t)Temp;
|
|
|
|
// Byte 11
|
|
Temp = (Status[11] & 0xFF);
|
|
pCardStatus->ERASE_SIZE = (uint8_t)(Temp << 8);
|
|
|
|
// Byte 12
|
|
Temp = (Status[12] & 0xFF);
|
|
pCardStatus->ERASE_SIZE |= (uint8_t)Temp;
|
|
|
|
// Byte 13
|
|
Temp = (Status[13] & 0xFC) >> 2;
|
|
pCardStatus->ERASE_TIMEOUT = (uint8_t)Temp;
|
|
|
|
// Byte 13
|
|
Temp = (Status[13] & 0x3);
|
|
pCardStatus->ERASE_OFFSET = (uint8_t)Temp;
|
|
|
|
return SD_OK;
|
|
}
|
|
|
|
|
|
/** -----------------------------------------------------------------------------------------------------------------*/
|
|
/**
|
|
* @brief Enquires cards about their operating voltage and configures clock
|
|
* controls and stores SD information that will be needed in future
|
|
* in the SD handle.
|
|
* @retval SD Card error state
|
|
*/
|
|
static SD_Error_t SD_PowerON(void)
|
|
{
|
|
SD_Error_t ErrorState;
|
|
uint32_t Response;
|
|
uint32_t Count;
|
|
uint32_t ValidVoltage;
|
|
uint32_t SD_Type;
|
|
//uint32_t TickStart;
|
|
|
|
Count = 0;
|
|
ValidVoltage = 0;
|
|
SD_Type = SD_RESP_STD_CAPACITY;
|
|
|
|
// Power ON Sequence -------------------------------------------------------
|
|
SDMMC1->CLKCR &= ~SDMMC_CLKCR_CLKEN; // Disable SDMMC1 Clock
|
|
SDMMC1->POWER = SDMMC_POWER_PWRCTRL; // Set Power State to ON
|
|
|
|
// 1ms: required power up waiting time before starting the SD initialization sequence (make it 2 to be safe)
|
|
delay(2);
|
|
|
|
SDMMC1->CLKCR |= SDMMC_CLKCR_CLKEN; // Enable SDMMC1 Clock
|
|
|
|
// CMD0: GO_IDLE_STATE -----------------------------------------------------
|
|
// No CMD response required
|
|
if((ErrorState = SD_TransmitCommand(SD_CMD_GO_IDLE_STATE, 0, 0)) != SD_OK)
|
|
{
|
|
// CMD Response Timeout (wait for CMDSENT flag)
|
|
return ErrorState;
|
|
}
|
|
|
|
// CMD8: SEND_IF_COND ------------------------------------------------------
|
|
// Send CMD8 to verify SD card interface operating condition
|
|
// Argument: - [31:12]: Reserved (shall be set to '0')
|
|
//- [11:8]: Supply Voltage (VHS) 0x1 (Range: 2.7-3.6 V)
|
|
//- [7:0]: Check Pattern (recommended 0xAA)
|
|
// CMD Response: R7 */
|
|
if((ErrorState = SD_TransmitCommand((SD_SDMMC_SEND_IF_COND | SD_CMD_RESPONSE_SHORT), SD_CHECK_PATTERN, 7)) == SD_OK)
|
|
{
|
|
// SD Card 2.0
|
|
SD_CardType = SD_STD_CAPACITY_V2_0;
|
|
SD_Type = SD_RESP_HIGH_CAPACITY;
|
|
}
|
|
|
|
// Send CMD55
|
|
// If ErrorState is Command Timeout, it is a MMC card
|
|
// If ErrorState is SD_OK it is a SD card: SD card 2.0 (voltage range mismatch) or SD card 1.x
|
|
if((ErrorState = SD_TransmitCommand((SD_CMD_APP_CMD | SD_CMD_RESPONSE_SHORT), 0, 1)) == SD_OK)
|
|
{
|
|
// SD CARD
|
|
// Send ACMD41 SD_APP_OP_COND with Argument 0x80100000
|
|
while((ValidVoltage == 0) && (Count < SD_MAX_VOLT_TRIAL))
|
|
{
|
|
// SEND CMD55 APP_CMD with RCA as 0
|
|
if((ErrorState = SD_TransmitCommand((SD_CMD_APP_CMD | SD_CMD_RESPONSE_SHORT), 0, 1)) != SD_OK)
|
|
{
|
|
return ErrorState;
|
|
}
|
|
|
|
// Send CMD41
|
|
if((ErrorState = SD_TransmitCommand((SD_CMD_SD_APP_OP_COND | SD_CMD_RESPONSE_SHORT), SD_VOLTAGE_WINDOW_SD | SD_Type, 3)) != SD_OK)
|
|
{
|
|
return ErrorState;
|
|
}
|
|
|
|
Response = SDMMC1->RESP1; // Get command response
|
|
ValidVoltage = (((Response >> 31) == 1) ? 1 : 0); // Get operating voltage
|
|
Count++;
|
|
}
|
|
|
|
if(Count >= SD_MAX_VOLT_TRIAL)
|
|
{
|
|
return SD_INVALID_VOLTRANGE;
|
|
}
|
|
|
|
if((Response & SD_RESP_HIGH_CAPACITY) == SD_RESP_HIGH_CAPACITY)
|
|
{
|
|
SD_CardType = SD_HIGH_CAPACITY;
|
|
}
|
|
} // else MMC Card
|
|
|
|
return ErrorState;
|
|
}
|
|
|
|
|
|
/** -----------------------------------------------------------------------------------------------------------------*/
|
|
/**
|
|
* @brief Turns the SDMMC1 output signals off.
|
|
* @retval SD Card error state
|
|
*/
|
|
#if 0
|
|
static void SD_PowerOFF(void)
|
|
{
|
|
// Set Power State to OFF
|
|
SDMMC1->POWER = (uint32_t)0;
|
|
}
|
|
#endif
|
|
|
|
|
|
/** -----------------------------------------------------------------------------------------------------------------*/
|
|
/**
|
|
* @brief Finds the SD card SCR register value.
|
|
* @param pSCR: pointer to the buffer that will contain the SCR value
|
|
* @retval SD Card error state
|
|
*/
|
|
static SD_Error_t SD_FindSCR(uint32_t *pSCR)
|
|
{
|
|
SD_Error_t ErrorState;
|
|
uint32_t Index = 0;
|
|
uint32_t tempscr[2] = {0, 0};
|
|
|
|
// Set Block Size To 8 Bytes
|
|
// Send CMD55 APP_CMD with argument as card's RCA
|
|
if((ErrorState = SD_TransmitCommand((SD_CMD_SET_BLOCKLEN | SD_CMD_RESPONSE_SHORT), 8, 1)) == SD_OK)
|
|
{
|
|
// Send CMD55 APP_CMD with argument as card's RCA
|
|
if((ErrorState = SD_TransmitCommand((SD_CMD_APP_CMD | SD_CMD_RESPONSE_SHORT), SD_CardRCA, 1)) == SD_OK)
|
|
{
|
|
SD_DataTransferInit(8, SD_DATABLOCK_SIZE_8B, true);
|
|
|
|
// Send ACMD51 SD_APP_SEND_SCR with argument as 0
|
|
if((ErrorState = SD_TransmitCommand((SD_CMD_SD_APP_SEND_SCR | SD_CMD_RESPONSE_SHORT), 0, 1)) == SD_OK)
|
|
{
|
|
while((SDMMC1->STA & (SDMMC_STA_RXOVERR | SDMMC_STA_DCRCFAIL | SDMMC_STA_DTIMEOUT | SDMMC_STA_DBCKEND)) == 0)
|
|
{
|
|
if((SDMMC1->STA & SDMMC_STA_RXDAVL) != 0)
|
|
{
|
|
*(tempscr + Index) = SDMMC1->FIFO;
|
|
Index++;
|
|
}
|
|
}
|
|
|
|
if ((SDMMC1->STA & SDMMC_STA_DTIMEOUT) != 0) ErrorState = SD_DATA_TIMEOUT;
|
|
else if((SDMMC1->STA & SDMMC_STA_DCRCFAIL) != 0) ErrorState = SD_DATA_CRC_FAIL;
|
|
else if((SDMMC1->STA & SDMMC_STA_RXOVERR) != 0) ErrorState = SD_RX_OVERRUN;
|
|
else if((SDMMC1->STA & SDMMC_STA_RXDAVL) != 0) ErrorState = SD_OUT_OF_BOUND;
|
|
else
|
|
{
|
|
*(pSCR + 1) = ((tempscr[0] & SD_0TO7BITS) << 24) | ((tempscr[0] & SD_8TO15BITS) << 8) |
|
|
((tempscr[0] & SD_16TO23BITS) >> 8) | ((tempscr[0] & SD_24TO31BITS) >> 24);
|
|
|
|
*(pSCR) = ((tempscr[1] & SD_0TO7BITS) << 24) | ((tempscr[1] & SD_8TO15BITS) << 8) |
|
|
((tempscr[1] & SD_16TO23BITS) >> 8) | ((tempscr[1] & SD_24TO31BITS) >> 24);
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
return ErrorState;
|
|
}
|
|
|
|
|
|
/** -----------------------------------------------------------------------------------------------------------------*/
|
|
/**
|
|
* @brief Checks if the SD card is in programming state.
|
|
* @param pStatus: pointer to the variable that will contain the SD card state
|
|
* @retval SD Card error state
|
|
*/
|
|
/*
|
|
static SD_Error_t SD_IsCardProgramming(uint8_t *pStatus)
|
|
{
|
|
uint32_t Response_R1;
|
|
|
|
SD_TransmitCommand((SD_CMD_SEND_STATUS | SDMMC_CMD_RESPONSE_SHORT), SD_CardRCA, 0);
|
|
if((SDMMC1->STA & SDMMC_STA_CTIMEOUT) != 0) return SD_CMD_RSP_TIMEOUT;
|
|
else if((SDMMC1->STA & SDMMC_STA_CCRCFAIL) != 0) return SD_CMD_CRC_FAIL;
|
|
if((uint32_t)SDMMC1->RESPCMD != SD_CMD_SEND_STATUS) return SD_ILLEGAL_CMD; // Check if is of desired command
|
|
Response_R1 = SDMMC1->RESP1; // We have received response, retrieve it for analysis
|
|
*pStatus = (uint8_t)((Response_R1 >> 9) & 0x0000000F); // Find out card status
|
|
|
|
return CheckOCR_Response(Response_R1);
|
|
}
|
|
*/
|
|
|
|
/** -----------------------------------------------------------------------------------------------------------------*/
|
|
/**
|
|
* @brief Initialize the SDMMC1 module, DMA, and IO
|
|
*/
|
|
void SD_Initialize_LL(DMA_Stream_TypeDef *dma)
|
|
{
|
|
// Reset SDMMC1 Module
|
|
RCC->APB2RSTR |= RCC_APB2RSTR_SDMMC1RST;
|
|
delay(1);
|
|
RCC->APB2RSTR &= ~RCC_APB2RSTR_SDMMC1RST;
|
|
delay(1);
|
|
|
|
// Enable SDMMC1 clock
|
|
RCC->APB2ENR |= RCC_APB2ENR_SDMMC1EN;
|
|
|
|
// Enable DMA2 clocks
|
|
RCC->AHB1ENR |= RCC_AHB1ENR_DMA2EN;
|
|
|
|
//Configure Pins
|
|
RCC->AHB1ENR |= RCC_AHB1ENR_GPIOCEN | RCC_AHB1ENR_GPIODEN;
|
|
|
|
uint8_t is4BitWidth = sdioConfig()->use4BitWidth;
|
|
|
|
const IO_t d0 = IOGetByTag(IO_TAG(PC8));
|
|
const IO_t d1 = IOGetByTag(IO_TAG(PC9));
|
|
const IO_t d2 = IOGetByTag(IO_TAG(PC10));
|
|
const IO_t d3 = IOGetByTag(IO_TAG(PC11));
|
|
const IO_t clk = IOGetByTag(IO_TAG(PC12));
|
|
const IO_t cmd = IOGetByTag(IO_TAG(PD2));
|
|
|
|
IOInit(d0, OWNER_SDCARD, 0);
|
|
if (is4BitWidth) {
|
|
IOInit(d1, OWNER_SDCARD, 0);
|
|
IOInit(d2, OWNER_SDCARD, 0);
|
|
IOInit(d3, OWNER_SDCARD, 0);
|
|
}
|
|
IOInit(clk, OWNER_SDCARD, 0);
|
|
IOInit(cmd, OWNER_SDCARD, 0);
|
|
|
|
#define SDMMC_DATA IO_CONFIG(GPIO_MODE_AF_PP, GPIO_SPEED_FREQ_VERY_HIGH, GPIO_NOPULL)
|
|
#define SDMMC_CMD IO_CONFIG(GPIO_MODE_AF_PP, GPIO_SPEED_FREQ_VERY_HIGH, GPIO_NOPULL)
|
|
#define SDMMC_CLK IO_CONFIG(GPIO_MODE_AF_PP, GPIO_SPEED_FREQ_VERY_HIGH, GPIO_NOPULL)
|
|
|
|
IOConfigGPIOAF(d0, SDMMC_DATA, GPIO_AF12_SDMMC1);
|
|
if(is4BitWidth) {
|
|
IOConfigGPIOAF(d1, SDMMC_DATA, GPIO_AF12_SDMMC1);
|
|
IOConfigGPIOAF(d2, SDMMC_DATA, GPIO_AF12_SDMMC1);
|
|
IOConfigGPIOAF(d3, SDMMC_DATA, GPIO_AF12_SDMMC1);
|
|
}
|
|
IOConfigGPIOAF(clk, SDMMC_CLK, GPIO_AF12_SDMMC1);
|
|
IOConfigGPIOAF(cmd, SDMMC_CMD, GPIO_AF12_SDMMC1);
|
|
|
|
uint32_t PriorityGroup = NVIC_GetPriorityGrouping();
|
|
|
|
// NVIC configuration for SDIO interrupts
|
|
NVIC_SetPriority(SDMMC1_IRQn, NVIC_EncodePriority(PriorityGroup, 1, 0));
|
|
NVIC_EnableIRQ(SDMMC1_IRQn);
|
|
|
|
dma_stream = dma;
|
|
RCC->AHB1ENR |= RCC_AHB1ENR_DMA2EN;
|
|
if ((uint32_t)dma_stream == (uint32_t)DMA2_Stream3) {
|
|
// Initialize DMA2 channel 3
|
|
DMA2_Stream3->CR = 0; // Reset DMA Stream control register
|
|
DMA2_Stream3->PAR = (uint32_t)&SDMMC1->FIFO;
|
|
DMA2->LIFCR = IFCR_CLEAR_MASK_STREAM3; // Clear all interrupt flags
|
|
DMA2_Stream3->CR = (DMA_CHANNEL_4 | DMA_SxCR_PFCTRL | // Prepare the DMA Stream configuration
|
|
DMA_MINC_ENABLE | DMA_PDATAALIGN_WORD | // And write to DMA Stream CR register
|
|
DMA_MDATAALIGN_WORD | DMA_PRIORITY_VERY_HIGH |
|
|
DMA_MBURST_INC4 | DMA_PBURST_INC4 |
|
|
DMA_MEMORY_TO_PERIPH);
|
|
DMA2_Stream3->FCR = (DMA_SxFCR_DMDIS | DMA_SxFCR_FTH); // Configuration FIFO control register
|
|
dmaInit(dmaGetIdentifier((dmaResource_t *)DMA2_Stream3), OWNER_SDCARD, 0);
|
|
dmaSetHandler(dmaGetIdentifier((dmaResource_t *)DMA2_Stream3), SDMMC_DMA_ST3_IRQHandler, 1, 0);
|
|
} else {
|
|
// Initialize DMA2 channel 6
|
|
DMA2_Stream6->CR = 0; // Reset DMA Stream control register
|
|
DMA2_Stream6->PAR = (uint32_t)&SDMMC1->FIFO;
|
|
DMA2->HIFCR = IFCR_CLEAR_MASK_STREAM6; // Clear all interrupt flags
|
|
DMA2_Stream6->CR = (DMA_CHANNEL_4 | DMA_SxCR_PFCTRL | // Prepare the DMA Stream configuration
|
|
DMA_MINC_ENABLE | DMA_PDATAALIGN_WORD | // And write to DMA Stream CR register
|
|
DMA_MDATAALIGN_WORD | DMA_PRIORITY_VERY_HIGH |
|
|
DMA_MBURST_INC4 | DMA_PBURST_INC4 |
|
|
DMA_MEMORY_TO_PERIPH);
|
|
DMA2_Stream6->FCR = (DMA_SxFCR_DMDIS | DMA_SxFCR_FTH); // Configuration FIFO control register
|
|
dmaInit(dmaGetIdentifier((dmaResource_t *)DMA2_Stream6), OWNER_SDCARD, 0);
|
|
dmaSetHandler(dmaGetIdentifier((dmaResource_t *)DMA2_Stream6), SDMMC_DMA_ST6_IRQHandler, 1, 0);
|
|
}
|
|
}
|
|
|
|
|
|
/** -----------------------------------------------------------------------------------------------------------------*/
|
|
bool SD_GetState(void)
|
|
{
|
|
// Check SDCARD status
|
|
if(SD_GetStatus() == SD_OK) return true;
|
|
return false;
|
|
}
|
|
|
|
|
|
/** -----------------------------------------------------------------------------------------------------------------*/
|
|
static bool SD_DoInit(void)
|
|
{
|
|
SD_Error_t ErrorState;
|
|
|
|
__HAL_RCC_SDMMC1_CLK_ENABLE();
|
|
|
|
// Initialize SDMMC1 peripheral interface with default configuration for SD card initialization
|
|
MODIFY_REG(SDMMC1->CLKCR, CLKCR_CLEAR_MASK, (uint32_t) SDMMC_INIT_CLK_DIV);
|
|
|
|
if((ErrorState = SD_PowerON()) == SD_OK) // Identify card operating voltage
|
|
{
|
|
if((ErrorState = SD_InitializeCard()) == SD_OK) // Initialize the present card and put them in idle state
|
|
{
|
|
if((ErrorState = SD_GetCardInfo()) == SD_OK) // Read CSD/CID MSD registers
|
|
{
|
|
// Select the Card - Send CMD7 SDMMC_SEL_DESEL_CARD
|
|
ErrorState = SD_TransmitCommand((SD_CMD_SEL_DESEL_CARD | SD_CMD_RESPONSE_SHORT), SD_CardRCA, 1);
|
|
MODIFY_REG(SDMMC1->CLKCR, CLKCR_CLEAR_MASK, (uint32_t) SDMMC_CLK_DIV); // Configure SDMMC1 peripheral interface
|
|
}
|
|
}
|
|
}
|
|
|
|
// Configure SD Bus width
|
|
if(ErrorState == SD_OK)
|
|
{
|
|
// Enable wide operation
|
|
if (sdioConfig()->use4BitWidth) {
|
|
ErrorState = SD_WideBusOperationConfig(SD_BUS_WIDE_4B);
|
|
} else {
|
|
ErrorState = SD_WideBusOperationConfig(SD_BUS_WIDE_1B);
|
|
}
|
|
}
|
|
|
|
// Configure the SDCARD device
|
|
return ErrorState;
|
|
}
|
|
|
|
bool SD_Init(void)
|
|
{
|
|
static bool sdInitAttempted = false;
|
|
static SD_Error_t result = SD_ERROR;
|
|
|
|
if (sdInitAttempted) {
|
|
return result;
|
|
}
|
|
|
|
sdInitAttempted = true;
|
|
|
|
result = SD_DoInit();
|
|
|
|
return result;
|
|
}
|
|
|
|
|
|
/** -----------------------------------------------------------------------------------------------------------------*/
|
|
/**
|
|
* @brief This function handles SD card interrupt request.
|
|
*/
|
|
void SDMMC1_IRQHandler(void) {
|
|
// Check for SDMMC1 interrupt flags
|
|
if ((SDMMC1->STA & SDMMC_STA_DATAEND) != 0) {
|
|
SDMMC1->ICR = SDMMC_ICR_DATAENDC;
|
|
SDMMC1->ICR = SDMMC_ICR_STATIC_FLAGS;
|
|
SDMMC1->MASK &= ~(SDMMC_MASK_DATAENDIE | SDMMC_MASK_DCRCFAILIE | SDMMC_MASK_DTIMEOUTIE | \
|
|
SDMMC_MASK_TXUNDERRIE | SDMMC_MASK_RXOVERRIE | SDMMC_MASK_TXFIFOHEIE | SDMMC_MASK_RXFIFOHFIE);
|
|
|
|
/* Currently doesn't implement multiple block write handling */
|
|
if ((SD_Handle.Operation & 0x02) == (SDMMC_DIR_TX << 1)) {
|
|
/* Disable the stream */
|
|
dma_stream->CR &= ~DMA_SxCR_EN;
|
|
SDMMC1->DCTRL &= ~(SDMMC_DCTRL_DMAEN);
|
|
/* Transfer is complete */
|
|
SD_Handle.TXCplt = 0;
|
|
if ((SD_Handle.Operation & 0x01) == SD_MULTIPLE_BLOCK) {
|
|
/* Send stop command in multiblock write */
|
|
SD_TransmitCommand((SD_CMD_STOP_TRANSMISSION | SD_CMD_RESPONSE_SHORT), 0, 1);
|
|
}
|
|
}
|
|
SD_Handle.TransferComplete = 1;
|
|
SD_Handle.TransferError = SD_OK; // No transfer error
|
|
}
|
|
else if ((SDMMC1->STA & SDMMC_STA_DCRCFAIL) != 0)
|
|
SD_Handle.TransferError = SD_DATA_CRC_FAIL;
|
|
else if ((SDMMC1->STA & SDMMC_STA_DTIMEOUT) != 0)
|
|
SD_Handle.TransferError = SD_DATA_TIMEOUT;
|
|
else if ((SDMMC1->STA & SDMMC_STA_RXOVERR) != 0)
|
|
SD_Handle.TransferError = SD_RX_OVERRUN;
|
|
else if ((SDMMC1->STA & SDMMC_STA_TXUNDERR) != 0)
|
|
SD_Handle.TransferError = SD_TX_UNDERRUN;
|
|
|
|
SDMMC1->ICR = SDMMC_ICR_STATIC_FLAGS;
|
|
|
|
// Disable all SDMMC1 peripheral interrupt sources
|
|
SDMMC1->MASK &= ~(SDMMC_MASK_DCRCFAILIE | SDMMC_MASK_DTIMEOUTIE
|
|
| SDMMC_MASK_DATAENDIE |
|
|
SDMMC_MASK_TXFIFOHEIE | SDMMC_MASK_RXFIFOHFIE | SDMMC_MASK_TXUNDERRIE |
|
|
SDMMC_MASK_RXOVERRIE);
|
|
}
|
|
|
|
/** -----------------------------------------------------------------------------------------------------------------*/
|
|
/**
|
|
* @brief This function handles DMA2 Stream 3 interrupt request.
|
|
*/
|
|
void SDMMC_DMA_ST3_IRQHandler(dmaChannelDescriptor_t *dma)
|
|
{
|
|
UNUSED(dma);
|
|
// Transfer Error Interrupt management
|
|
if((DMA2->LISR & DMA_LISR_TEIF3) != 0)
|
|
{
|
|
if((DMA2_Stream3->CR & DMA_SxCR_TEIE) != 0)
|
|
{
|
|
DMA2_Stream3->CR &= ~DMA_SxCR_TEIE; // Disable the transfer error interrupt
|
|
DMA2->LIFCR = DMA_LIFCR_CTEIF3; // Clear the transfer error flag
|
|
}
|
|
}
|
|
|
|
// FIFO Error Interrupt management
|
|
if((DMA2->LISR & DMA_LISR_FEIF3) != 0)
|
|
{
|
|
if((DMA2_Stream3->FCR & DMA_SxFCR_FEIE) != 0)
|
|
{
|
|
DMA2_Stream3->FCR &= ~DMA_SxFCR_FEIE; // Disable the FIFO Error interrupt
|
|
DMA2->LIFCR = DMA_LIFCR_CFEIF3; // Clear the FIFO error flag
|
|
}
|
|
}
|
|
|
|
// Direct Mode Error Interrupt management
|
|
if((DMA2->LISR & DMA_LISR_DMEIF3) != 0)
|
|
{
|
|
if((DMA2_Stream3->CR & DMA_SxCR_DMEIE) != 0)
|
|
{
|
|
DMA2_Stream3->CR &= ~DMA_SxCR_DMEIE; // Disable the direct mode Error interrupt
|
|
DMA2->LIFCR = DMA_LIFCR_CDMEIF3; // Clear the FIFO error flag
|
|
}
|
|
}
|
|
|
|
// Half Transfer Complete Interrupt management
|
|
if((DMA2->LISR & DMA_LISR_HTIF3) != 0)
|
|
{
|
|
if((DMA2_Stream3->CR & DMA_SxCR_HTIE) != 0)
|
|
{
|
|
if(((DMA2_Stream3->CR) & (uint32_t)(DMA_SxCR_DBM)) != 0) // Multi_Buffering mode enabled
|
|
{
|
|
DMA2->LIFCR = DMA_LIFCR_CHTIF3; // Clear the half transfer complete flag
|
|
}
|
|
else
|
|
{
|
|
if((DMA2_Stream3->CR & DMA_SxCR_CIRC) == 0) // Disable the half transfer interrupt if the DMA mode is not CIRCULAR
|
|
{
|
|
DMA2_Stream3->CR &= ~DMA_SxCR_HTIE; // Disable the half transfer interrupt
|
|
}
|
|
|
|
DMA2->LIFCR = DMA_LIFCR_CHTIF3; // Clear the half transfer complete flag
|
|
}
|
|
}
|
|
}
|
|
|
|
// Transfer Complete Interrupt management
|
|
if((DMA2->LISR & DMA_LISR_TCIF3) != 0)
|
|
{
|
|
if((DMA2_Stream3->CR & DMA_SxCR_TCIE) != 0)
|
|
{
|
|
if((DMA2_Stream3->CR & (uint32_t)(DMA_SxCR_DBM)) != 0)
|
|
{
|
|
DMA2->LIFCR = DMA_LIFCR_CTCIF3; // Clear the transfer complete flag
|
|
}
|
|
else //Disable the transfer complete interrupt if the DMA mode is not CIRCULAR
|
|
{
|
|
if((DMA2_Stream3->CR & DMA_SxCR_CIRC) == 0)
|
|
{
|
|
DMA2_Stream3->CR &= ~DMA_SxCR_TCIE; // Disable the transfer complete interrupt
|
|
}
|
|
|
|
DMA2->LIFCR = DMA_LIFCR_CTCIF3; // Clear the transfer complete flag
|
|
SD_DMA_Complete(DMA2_Stream3);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
/** -----------------------------------------------------------------------------------------------------------------*/
|
|
/**
|
|
* @brief This function handles DMA2 Stream 6 interrupt request.
|
|
*/
|
|
void SDMMC_DMA_ST6_IRQHandler(dmaChannelDescriptor_t *dma)
|
|
{
|
|
UNUSED(dma);
|
|
// Transfer Error Interrupt management
|
|
if((DMA2->HISR & DMA_HISR_TEIF6) != 0)
|
|
{
|
|
if((DMA2_Stream6->CR & DMA_SxCR_TEIE) != 0)
|
|
{
|
|
DMA2_Stream6->CR &= ~DMA_SxCR_TEIE; // Disable the transfer error interrupt
|
|
DMA2->HIFCR = DMA_HIFCR_CTEIF6; // Clear the transfer error flag
|
|
}
|
|
}
|
|
|
|
// FIFO Error Interrupt management
|
|
if((DMA2->HISR & DMA_HISR_FEIF6) != 0)
|
|
{
|
|
if((DMA2_Stream6->FCR & DMA_SxFCR_FEIE) != 0)
|
|
{
|
|
DMA2_Stream6->FCR &= ~DMA_SxFCR_FEIE; // Disable the FIFO Error interrupt
|
|
DMA2->HIFCR = DMA_HIFCR_CFEIF6; // Clear the FIFO error flag
|
|
}
|
|
}
|
|
|
|
// Direct Mode Error Interrupt management
|
|
if((DMA2->HISR & DMA_HISR_DMEIF6) != 0)
|
|
{
|
|
if((DMA2_Stream6->CR & DMA_SxCR_DMEIE) != 0)
|
|
{
|
|
DMA2_Stream6->CR &= ~DMA_SxCR_DMEIE; // Disable the direct mode Error interrupt
|
|
DMA2->HIFCR = DMA_HIFCR_CDMEIF6; // Clear the FIFO error flag
|
|
}
|
|
}
|
|
|
|
// Half Transfer Complete Interrupt management
|
|
if((DMA2->HISR & DMA_HISR_HTIF6) != 0)
|
|
{
|
|
if((DMA2_Stream6->CR & DMA_SxCR_HTIE) != 0)
|
|
{
|
|
if(((DMA2_Stream6->CR) & (uint32_t)(DMA_SxCR_DBM)) != 0) // Multi_Buffering mode enabled
|
|
{
|
|
DMA2->HIFCR = DMA_HIFCR_CHTIF6; // Clear the half transfer complete flag
|
|
}
|
|
else
|
|
{
|
|
if((DMA2_Stream6->CR & DMA_SxCR_CIRC) == 0) // Disable the half transfer interrupt if the DMA mode is not CIRCULAR
|
|
{
|
|
DMA2_Stream6->CR &= ~DMA_SxCR_HTIE; // Disable the half transfer interrupt
|
|
}
|
|
|
|
DMA2->HIFCR = DMA_HIFCR_CHTIF6; // Clear the half transfer complete flag
|
|
}
|
|
}
|
|
}
|
|
|
|
// Transfer Complete Interrupt management
|
|
if((DMA2->HISR & DMA_HISR_TCIF6) != 0)
|
|
{
|
|
if((DMA2_Stream6->CR & DMA_SxCR_TCIE) != 0)
|
|
{
|
|
if((DMA2_Stream6->CR & (uint32_t)(DMA_SxCR_DBM)) != 0)
|
|
{
|
|
DMA2->HIFCR = DMA_HIFCR_CTCIF6; // Clear the transfer complete flag
|
|
}
|
|
else //Disable the transfer complete interrupt if the DMA mode is not CIRCULAR
|
|
{
|
|
if((DMA2_Stream6->CR & DMA_SxCR_CIRC) == 0)
|
|
{
|
|
DMA2_Stream6->CR &= ~DMA_SxCR_TCIE; // Disable the transfer complete interrupt
|
|
}
|
|
|
|
DMA2->HIFCR = DMA_HIFCR_CTCIF6; // Clear the transfer complete flag
|
|
SD_DMA_Complete(DMA2_Stream6);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/* ------------------------------------------------------------------------------------------------------------------*/
|
|
#endif
|