sdcard.c 102.7 KB
Newer Older
M
Ming, Bai 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
/**
  ******************************************************************************
  * @file    SDIO/sdcard.c
  * @author  MCD Application Team
  * @version V3.1.2
  * @date    09/28/2009
  * @brief   This file provides all the SD Card driver firmware functions.
  ******************************************************************************
  * @copy
  *
  * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
  * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE
  * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY
  * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING
  * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE
  * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
  *
  * <h2><center>&copy; COPYRIGHT 2009 STMicroelectronics</center></h2>
  */

/* Includes ------------------------------------------------------------------*/
#include "sdcard.h"
#include "stm32f10x_dma.h"
#include "stm32f10x_sdio.h"
#include "stdbool.h"
#include <rtthread.h>

/** @addtogroup STM32F10x_StdPeriph_Examples
  * @{
  */

/** @addtogroup SDIO_Example
  * @{
  */

/* Private typedef -----------------------------------------------------------*/
/* Private define ------------------------------------------------------------*/
#define NULL 0
#define SDIO_STATIC_FLAGS               ((uint32_t)0x000005FF)
#define SDIO_CMD0TIMEOUT                ((uint32_t)0x00002710)
#define SDIO_FIFO_Address               ((uint32_t)0x40018080)

/* Mask for errors Card Status R1 (OCR Register) */
#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_OVERWRIETE       ((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)

/* Masks for R6 Response */
#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_HIGH_CAPACITY                ((uint32_t)0x40000000)
#define SD_STD_CAPACITY                 ((uint32_t)0x00000000)
#define SD_CHECK_PATTERN                ((uint32_t)0x000001AA)
#define SD_VOLTAGE_WINDOW_MMC           ((uint32_t)0x80FF8000)

#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_CARD_PROGRAMMING             ((uint32_t)0x00000007)
#define SD_CARD_RECEIVING               ((uint32_t)0x00000006)
#define SD_DATATIMEOUT                  ((uint32_t)0xFFFFFFFF)
#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_HALFFIFO                     ((uint32_t)0x00000008)
#define SD_HALFFIFOBYTES                ((uint32_t)0x00000020)

/* Command Class Supported */
#define SD_CCCC_LOCK_UNLOCK             ((uint32_t)0x00000080)
#define SD_CCCC_WRITE_PROT              ((uint32_t)0x00000040)
#define SD_CCCC_ERASE                   ((uint32_t)0x00000020)

/* Following commands are SD Card Specific commands.
   SDIO_APP_CMD should be sent before sending these commands. */
#define SDIO_SEND_IF_COND               ((uint32_t)0x00000008)

#define SDIO_INIT_CLK_DIV                  ((uint8_t)0xB2)
#define SDIO_TRANSFER_CLK_DIV              ((uint8_t)0x1)

/* Private macro -------------------------------------------------------------*/
/* Private variables ---------------------------------------------------------*/
static uint32_t CardType =  SDIO_STD_CAPACITY_SD_CARD_V1_1;
static uint32_t CSD_Tab[4], CID_Tab[4], RCA = 0;
static uint32_t DeviceMode = SD_POLLING_MODE;
static uint32_t TotalNumberOfBytes = 0, StopCondition = 0;
uint32_t *SrcBuffer, *DestBuffer;
volatile SD_Error TransferError = SD_OK;
__IO uint32_t TransferEnd = 0;
__IO uint32_t NumberOfBytes = 0;
SDIO_InitTypeDef SDIO_InitStructure;
SDIO_CmdInitTypeDef SDIO_CmdInitStructure;
SDIO_DataInitTypeDef SDIO_DataInitStructure;

/* Private function prototypes -----------------------------------------------*/
static SD_Error CmdError(void);
static SD_Error CmdResp1Error(uint8_t cmd);
static SD_Error CmdResp7Error(void);
static SD_Error CmdResp3Error(void);
static SD_Error CmdResp2Error(void);
static SD_Error CmdResp6Error(uint8_t cmd, uint16_t *prca);
static SD_Error SDEnWideBus(FunctionalState NewState);
static SD_Error IsCardProgramming(uint8_t *pstatus);
static SD_Error FindSCR(uint16_t rca, uint32_t *pscr);
static uint8_t convert_from_bytes_to_power_of_two(uint16_t NumberOfBytes);
static void GPIO_Configuration(void);
static void DMA_TxConfiguration(uint32_t *BufferSRC, uint32_t BufferSize);
static void DMA_RxConfiguration(uint32_t *BufferDST, uint32_t BufferSize);

/* Private functions ---------------------------------------------------------*/

/**
  * @brief  Initializes the SD Card and put it into StandBy State (Ready
  *   for data transfer).
  * @param  None
  * @retval SD_Error: SD Card Error code.
  */
SD_Error SD_Init(void)
{
145
    SD_Error errorstatus = SD_OK;
M
Ming, Bai 已提交
146

147 148
    /* Configure SDIO interface GPIO */
    GPIO_Configuration();
M
Ming, Bai 已提交
149

150 151
    /* Enable the SDIO AHB Clock */
    RCC_AHBPeriphClockCmd(RCC_AHBPeriph_SDIO, ENABLE);
M
Ming, Bai 已提交
152

153 154
    /* Enable the DMA2 Clock */
    RCC_AHBPeriphClockCmd(RCC_AHBPeriph_DMA2, ENABLE);
M
Ming, Bai 已提交
155

156
    SDIO_DeInit();
M
Ming, Bai 已提交
157

158
    errorstatus = SD_PowerON();
M
Ming, Bai 已提交
159

160 161 162 163 164 165 166 167 168 169 170 171 172
    if (errorstatus != SD_OK)
    {
        /* CMD Response TimeOut (wait for CMDSENT flag) */
        return(errorstatus);
    }

    errorstatus = SD_InitializeCards();

    if (errorstatus != SD_OK)
    {
        /* CMD Response TimeOut (wait for CMDSENT flag) */
        return(errorstatus);
    }
M
Ming, Bai 已提交
173

174 175 176 177 178 179 180 181 182
    /* Configure the SDIO peripheral */
    /* HCLK = 72 MHz, SDIOCLK = 72 MHz, SDIO_CK = HCLK/(2 + 1) = 24 MHz */
    SDIO_InitStructure.SDIO_ClockDiv = SDIO_TRANSFER_CLK_DIV;
    SDIO_InitStructure.SDIO_ClockEdge = SDIO_ClockEdge_Rising;
    SDIO_InitStructure.SDIO_ClockBypass = SDIO_ClockBypass_Disable;
    SDIO_InitStructure.SDIO_ClockPowerSave = SDIO_ClockPowerSave_Disable;
    SDIO_InitStructure.SDIO_BusWide = SDIO_BusWide_1b;
    SDIO_InitStructure.SDIO_HardwareFlowControl = SDIO_HardwareFlowControl_Enable;
    SDIO_Init(&SDIO_InitStructure);
M
Ming, Bai 已提交
183 184 185 186 187 188 189 190 191 192 193 194

    return(errorstatus);
}

/**
  * @brief  Enquires cards about their operating voltage and configures
  *   clock controls.
  * @param  None
  * @retval SD_Error: SD Card Error code.
  */
SD_Error SD_PowerON(void)
{
195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246
    SD_Error errorstatus = SD_OK;
    uint32_t response = 0, count = 0, i = 0;
    bool validvoltage = false;
    uint32_t SDType = SD_STD_CAPACITY;

    /* Power ON Sequence -------------------------------------------------------*/
    /* Configure the SDIO peripheral */
    SDIO_InitStructure.SDIO_ClockDiv = SDIO_INIT_CLK_DIV; /* HCLK = 72MHz, SDIOCLK = 72MHz, SDIO_CK = HCLK/(178 + 2) = 400 KHz */
    SDIO_InitStructure.SDIO_ClockEdge = SDIO_ClockEdge_Rising;
    SDIO_InitStructure.SDIO_ClockBypass = SDIO_ClockBypass_Disable;
    SDIO_InitStructure.SDIO_ClockPowerSave = SDIO_ClockPowerSave_Disable;
    SDIO_InitStructure.SDIO_BusWide = SDIO_BusWide_1b;
    SDIO_InitStructure.SDIO_HardwareFlowControl = SDIO_HardwareFlowControl_Disable;
    SDIO_Init(&SDIO_InitStructure);

    /* Set Power State to ON */
    SDIO_SetPowerState(SDIO_PowerState_ON);

    /* Enable SDIO Clock */
    SDIO_ClockCmd(ENABLE);

    /* CMD0: GO_IDLE_STATE -------------------------------------------------------*/
    /* No CMD response required */
    SDIO_CmdInitStructure.SDIO_Argument = 0x0;
    SDIO_CmdInitStructure.SDIO_CmdIndex = SDIO_GO_IDLE_STATE;
    SDIO_CmdInitStructure.SDIO_Response = SDIO_Response_No;
    SDIO_CmdInitStructure.SDIO_Wait = SDIO_Wait_No;
    SDIO_CmdInitStructure.SDIO_CPSM = SDIO_CPSM_Enable;

    for(i = 0; i < 74; i++)
    {
        SDIO_SendCommand(&SDIO_CmdInitStructure);
        errorstatus = CmdError();
    }

    if (errorstatus != SD_OK)
    {
        /* CMD Response TimeOut (wait for CMDSENT flag) */
        return(errorstatus);
    }

    /* 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 */
    SDIO_CmdInitStructure.SDIO_Argument = SD_CHECK_PATTERN;
    SDIO_CmdInitStructure.SDIO_CmdIndex = SDIO_SEND_IF_COND;
    SDIO_CmdInitStructure.SDIO_Response = SDIO_Response_Short;
    SDIO_CmdInitStructure.SDIO_Wait = SDIO_Wait_No;
    SDIO_CmdInitStructure.SDIO_CPSM = SDIO_CPSM_Enable;
M
Ming, Bai 已提交
247 248
    SDIO_SendCommand(&SDIO_CmdInitStructure);

249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266
    errorstatus = CmdResp7Error();

    if (errorstatus == SD_OK)
    {
        CardType = SDIO_STD_CAPACITY_SD_CARD_V2_0; /* SD Card 2.0 */
        SDType = SD_HIGH_CAPACITY;
    }
    else
    {
        /* CMD55 */
        SDIO_CmdInitStructure.SDIO_Argument = 0x00;
        SDIO_CmdInitStructure.SDIO_CmdIndex = SDIO_APP_CMD;
        SDIO_CmdInitStructure.SDIO_Response = SDIO_Response_Short;
        SDIO_CmdInitStructure.SDIO_Wait = SDIO_Wait_No;
        SDIO_CmdInitStructure.SDIO_CPSM = SDIO_CPSM_Enable;
        SDIO_SendCommand(&SDIO_CmdInitStructure);
        errorstatus = CmdResp1Error(SDIO_APP_CMD);
    }
M
Ming, Bai 已提交
267 268 269 270 271 272 273 274 275
    /* CMD55 */
    SDIO_CmdInitStructure.SDIO_Argument = 0x00;
    SDIO_CmdInitStructure.SDIO_CmdIndex = SDIO_APP_CMD;
    SDIO_CmdInitStructure.SDIO_Response = SDIO_Response_Short;
    SDIO_CmdInitStructure.SDIO_Wait = SDIO_Wait_No;
    SDIO_CmdInitStructure.SDIO_CPSM = SDIO_CPSM_Enable;
    SDIO_SendCommand(&SDIO_CmdInitStructure);
    errorstatus = CmdResp1Error(SDIO_APP_CMD);

276 277 278 279
    /* If errorstatus is Command TimeOut, it is a MMC card */
    /* If errorstatus is SD_OK it is a SD card: SD card 2.0 (voltage range mismatch)
       or SD card 1.x */
    if (errorstatus == SD_OK)
M
Ming, Bai 已提交
280
    {
281 282 283 284
        /* SD CARD */
        /* Send ACMD41 SD_APP_OP_COND with Argument 0x80100000 */
        while ((!validvoltage) && (count < SD_MAX_VOLT_TRIAL))
        {
M
Ming, Bai 已提交
285

286 287 288 289 290 291 292
            /* SEND CMD55 APP_CMD with RCA as 0 */
            SDIO_CmdInitStructure.SDIO_Argument = 0x00;
            SDIO_CmdInitStructure.SDIO_CmdIndex = SDIO_APP_CMD;
            SDIO_CmdInitStructure.SDIO_Response = SDIO_Response_Short;
            SDIO_CmdInitStructure.SDIO_Wait = SDIO_Wait_No;
            SDIO_CmdInitStructure.SDIO_CPSM = SDIO_CPSM_Enable;
            SDIO_SendCommand(&SDIO_CmdInitStructure);
M
Ming, Bai 已提交
293

294
            errorstatus = CmdResp1Error(SDIO_APP_CMD);
M
Ming, Bai 已提交
295

296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311
            if (errorstatus != SD_OK)
            {
                return(errorstatus);
            }
            SDIO_CmdInitStructure.SDIO_Argument = SD_VOLTAGE_WINDOW_SD | SDType;
            SDIO_CmdInitStructure.SDIO_CmdIndex = SDIO_SD_APP_OP_COND;
            SDIO_CmdInitStructure.SDIO_Response = SDIO_Response_Short;
            SDIO_CmdInitStructure.SDIO_Wait = SDIO_Wait_No;
            SDIO_CmdInitStructure.SDIO_CPSM = SDIO_CPSM_Enable;
            SDIO_SendCommand(&SDIO_CmdInitStructure);

            errorstatus = CmdResp3Error();
            if (errorstatus != SD_OK)
            {
                return(errorstatus);
            }
M
Ming, Bai 已提交
312

313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328
            response = SDIO_GetResponse(SDIO_RESP1);
            validvoltage = (bool) (((response >> 31) == 1) ? 1 : 0);
            count++;
        }
        if (count >= SD_MAX_VOLT_TRIAL)
        {
            errorstatus = SD_INVALID_VOLTRANGE;
            return(errorstatus);
        }

        if (response &= SD_HIGH_CAPACITY)
        {
            CardType = SDIO_HIGH_CAPACITY_SD_CARD;
        }
    }/* else MMC Card */
    else
M
Ming, Bai 已提交
329
    {
330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357
        CardType = SDIO_MULTIMEDIA_CARD;

        /* Send CMD1 SEND_OP_COND with Argument 0x80FF8000 */
        while ((!validvoltage) && (count < SD_MAX_VOLT_TRIAL))
        {
            /* SEND CMD55 APP_CMD with RCA as 0 */
            SDIO_CmdInitStructure.SDIO_Argument = SD_VOLTAGE_WINDOW_MMC;
            SDIO_CmdInitStructure.SDIO_CmdIndex = SDIO_SEND_OP_COND;
            SDIO_CmdInitStructure.SDIO_Response = SDIO_Response_Short;
            SDIO_CmdInitStructure.SDIO_Wait = SDIO_Wait_No;
            SDIO_CmdInitStructure.SDIO_CPSM = SDIO_CPSM_Enable;
            SDIO_SendCommand(&SDIO_CmdInitStructure);

            errorstatus = CmdResp3Error();
            if (errorstatus != SD_OK)
            {
                return(errorstatus);
            }

            response = SDIO_GetResponse(SDIO_RESP1);
            validvoltage = (bool) (((response >> 31) == 1) ? 1 : 0);
            count++;
        }
        if (count >= SD_MAX_VOLT_TRIAL)
        {
            errorstatus = SD_INVALID_VOLTRANGE;
            return(errorstatus);
        }
M
Ming, Bai 已提交
358 359
    }

360
    return(SD_OK);
M
Ming, Bai 已提交
361 362 363 364 365 366 367 368 369
}

/**
  * @brief  Turns the SDIO output signals off.
  * @param  None
  * @retval SD_Error: SD Card Error code.
  */
SD_Error SD_PowerOFF(void)
{
370
    SD_Error errorstatus = SD_OK;
M
Ming, Bai 已提交
371

372 373
    /* Set Power State to OFF */
    SDIO_SetPowerState(SDIO_PowerState_OFF);
M
Ming, Bai 已提交
374

375
    return(errorstatus);
M
Ming, Bai 已提交
376 377 378 379 380 381 382 383 384 385
}

/**
  * @brief  Intialises all cards or single card as the case may be.
  *   Card(s) come into standby state.
  * @param  None
  * @retval SD_Error: SD Card Error code.
  */
SD_Error SD_InitializeCards(void)
{
386 387
    SD_Error errorstatus = SD_OK;
    uint16_t rca = 0x01;
M
Ming, Bai 已提交
388

389
    if (SDIO_GetPowerState() == SDIO_PowerState_OFF)
M
Ming, Bai 已提交
390
    {
391 392
        errorstatus = SD_REQUEST_NOT_APPLICABLE;
        return(errorstatus);
M
Ming, Bai 已提交
393 394
    }

395 396 397 398 399 400 401 402 403
    if (SDIO_SECURE_DIGITAL_IO_CARD != CardType)
    {
        /* Send CMD2 ALL_SEND_CID */
        SDIO_CmdInitStructure.SDIO_Argument = 0x0;
        SDIO_CmdInitStructure.SDIO_CmdIndex = SDIO_ALL_SEND_CID;
        SDIO_CmdInitStructure.SDIO_Response = SDIO_Response_Long;
        SDIO_CmdInitStructure.SDIO_Wait = SDIO_Wait_No;
        SDIO_CmdInitStructure.SDIO_CPSM = SDIO_CPSM_Enable;
        SDIO_SendCommand(&SDIO_CmdInitStructure);
M
Ming, Bai 已提交
404

405 406 407 408 409 410
        errorstatus = CmdResp2Error();

        if (SD_OK != errorstatus)
        {
            return(errorstatus);
        }
M
Ming, Bai 已提交
411

412 413 414 415 416 417 418
        CID_Tab[0] = SDIO_GetResponse(SDIO_RESP1);
        CID_Tab[1] = SDIO_GetResponse(SDIO_RESP2);
        CID_Tab[2] = SDIO_GetResponse(SDIO_RESP3);
        CID_Tab[3] = SDIO_GetResponse(SDIO_RESP4);
    }
    if ((SDIO_STD_CAPACITY_SD_CARD_V1_1 == CardType) ||  (SDIO_STD_CAPACITY_SD_CARD_V2_0 == CardType) ||  (SDIO_SECURE_DIGITAL_IO_COMBO_CARD == CardType)
            ||  (SDIO_HIGH_CAPACITY_SD_CARD == CardType))
M
Ming, Bai 已提交
419
    {
420 421 422 423 424 425 426 427 428 429 430 431 432 433 434
        /* Send CMD3 SET_REL_ADDR with argument 0 */
        /* SD Card publishes its RCA. */
        SDIO_CmdInitStructure.SDIO_Argument = 0x00;
        SDIO_CmdInitStructure.SDIO_CmdIndex = SDIO_SET_REL_ADDR;
        SDIO_CmdInitStructure.SDIO_Response = SDIO_Response_Short;
        SDIO_CmdInitStructure.SDIO_Wait = SDIO_Wait_No;
        SDIO_CmdInitStructure.SDIO_CPSM = SDIO_CPSM_Enable;
        SDIO_SendCommand(&SDIO_CmdInitStructure);

        errorstatus = CmdResp6Error(SDIO_SET_REL_ADDR, &rca);

        if (SD_OK != errorstatus)
        {
            return(errorstatus);
        }
M
Ming, Bai 已提交
435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454
    }
    if (SDIO_MULTIMEDIA_CARD == CardType)
    {
        /* Send CMD3 SET_REL_ADDR with argument 0 */
        /* SD Card publishes its RCA. */
        SDIO_CmdInitStructure.SDIO_Argument = (uint32_t)(rca << 16);
        SDIO_CmdInitStructure.SDIO_CmdIndex = SDIO_SET_REL_ADDR;
        SDIO_CmdInitStructure.SDIO_Response = SDIO_Response_Short;
        SDIO_CmdInitStructure.SDIO_Wait = SDIO_Wait_No;
        SDIO_CmdInitStructure.SDIO_CPSM = SDIO_CPSM_Enable;
        SDIO_SendCommand(&SDIO_CmdInitStructure);

        errorstatus = CmdResp2Error();

        if (SD_OK != errorstatus)
        {
            return(errorstatus);
        }
    }

455 456 457
    if (SDIO_SECURE_DIGITAL_IO_CARD != CardType)
    {
        RCA = rca;
M
Ming, Bai 已提交
458

459 460 461 462 463 464 465
        /* Send CMD9 SEND_CSD with argument as card's RCA */
        SDIO_CmdInitStructure.SDIO_Argument = (uint32_t)(rca << 16);
        SDIO_CmdInitStructure.SDIO_CmdIndex = SDIO_SEND_CSD;
        SDIO_CmdInitStructure.SDIO_Response = SDIO_Response_Long;
        SDIO_CmdInitStructure.SDIO_Wait = SDIO_Wait_No;
        SDIO_CmdInitStructure.SDIO_CPSM = SDIO_CPSM_Enable;
        SDIO_SendCommand(&SDIO_CmdInitStructure);
M
Ming, Bai 已提交
466

467
        errorstatus = CmdResp2Error();
M
Ming, Bai 已提交
468

469 470 471 472
        if (SD_OK != errorstatus)
        {
            return(errorstatus);
        }
M
Ming, Bai 已提交
473

474 475 476 477 478
        CSD_Tab[0] = SDIO_GetResponse(SDIO_RESP1);
        CSD_Tab[1] = SDIO_GetResponse(SDIO_RESP2);
        CSD_Tab[2] = SDIO_GetResponse(SDIO_RESP3);
        CSD_Tab[3] = SDIO_GetResponse(SDIO_RESP4);
    }
M
Ming, Bai 已提交
479

480
    errorstatus = SD_OK; /* All cards get intialized */
M
Ming, Bai 已提交
481

482
    return(errorstatus);
M
Ming, Bai 已提交
483 484 485 486 487 488 489 490 491 492
}

/**
  * @brief  Returns information about specific card.
  * @param  cardinfo : pointer to a SD_CardInfo structure
  *   that contains all SD card information.
  * @retval SD_Error: SD Card Error code.
  */
SD_Error SD_GetCardInfo(SD_CardInfo *cardinfo)
{
493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650
    SD_Error errorstatus = SD_OK;
    uint8_t tmp = 0;

    cardinfo->CardType = (uint8_t)CardType;
    cardinfo->RCA = (uint16_t)RCA;

    /* Byte 0 */
    tmp = (uint8_t)((CSD_Tab[0] & 0xFF000000) >> 24);
    cardinfo->SD_csd.CSDStruct = (tmp & 0xC0) >> 6;
    cardinfo->SD_csd.SysSpecVersion = (tmp & 0x3C) >> 2;
    cardinfo->SD_csd.Reserved1 = tmp & 0x03;

    /* Byte 1 */
    tmp = (uint8_t)((CSD_Tab[0] & 0x00FF0000) >> 16);
    cardinfo->SD_csd.TAAC = tmp;

    /* Byte 2 */
    tmp = (uint8_t)((CSD_Tab[0] & 0x0000FF00) >> 8);
    cardinfo->SD_csd.NSAC = tmp;

    /* Byte 3 */
    tmp = (uint8_t)(CSD_Tab[0] & 0x000000FF);
    cardinfo->SD_csd.MaxBusClkFrec = tmp;

    /* Byte 4 */
    tmp = (uint8_t)((CSD_Tab[1] & 0xFF000000) >> 24);
    cardinfo->SD_csd.CardComdClasses = tmp << 4;

    /* Byte 5 */
    tmp = (uint8_t)((CSD_Tab[1] & 0x00FF0000) >> 16);
    cardinfo->SD_csd.CardComdClasses |= (tmp & 0xF0) >> 4;
    cardinfo->SD_csd.RdBlockLen = tmp & 0x0F;

    /* Byte 6 */
    tmp = (uint8_t)((CSD_Tab[1] & 0x0000FF00) >> 8);
    cardinfo->SD_csd.PartBlockRead = (tmp & 0x80) >> 7;
    cardinfo->SD_csd.WrBlockMisalign = (tmp & 0x40) >> 6;
    cardinfo->SD_csd.RdBlockMisalign = (tmp & 0x20) >> 5;
    cardinfo->SD_csd.DSRImpl = (tmp & 0x10) >> 4;
    cardinfo->SD_csd.Reserved2 = 0; /* Reserved */

    if ((CardType == SDIO_STD_CAPACITY_SD_CARD_V1_1) || (CardType == SDIO_STD_CAPACITY_SD_CARD_V2_0))
    {
        cardinfo->SD_csd.DeviceSize = (tmp & 0x03) << 10;

        /* Byte 7 */
        tmp = (uint8_t)(CSD_Tab[1] & 0x000000FF);
        cardinfo->SD_csd.DeviceSize |= (tmp) << 2;

        /* Byte 8 */
        tmp = (uint8_t)((CSD_Tab[2] & 0xFF000000) >> 24);
        cardinfo->SD_csd.DeviceSize |= (tmp & 0xC0) >> 6;

        cardinfo->SD_csd.MaxRdCurrentVDDMin = (tmp & 0x38) >> 3;
        cardinfo->SD_csd.MaxRdCurrentVDDMax = (tmp & 0x07);

        /* Byte 9 */
        tmp = (uint8_t)((CSD_Tab[2] & 0x00FF0000) >> 16);
        cardinfo->SD_csd.MaxWrCurrentVDDMin = (tmp & 0xE0) >> 5;
        cardinfo->SD_csd.MaxWrCurrentVDDMax = (tmp & 0x1C) >> 2;
        cardinfo->SD_csd.DeviceSizeMul = (tmp & 0x03) << 1;
        /* Byte 10 */
        tmp = (uint8_t)((CSD_Tab[2] & 0x0000FF00) >> 8);
        cardinfo->SD_csd.DeviceSizeMul |= (tmp & 0x80) >> 7;

        cardinfo->CardCapacity = (cardinfo->SD_csd.DeviceSize + 1) ;
        cardinfo->CardCapacity *= (1 << (cardinfo->SD_csd.DeviceSizeMul + 2));
        cardinfo->CardBlockSize = 1 << (cardinfo->SD_csd.RdBlockLen);
        cardinfo->CardCapacity *= cardinfo->CardBlockSize;
    }
    else if (CardType == SDIO_HIGH_CAPACITY_SD_CARD)
    {
        /* Byte 7 */
        tmp = (uint8_t)(CSD_Tab[1] & 0x000000FF);
        cardinfo->SD_csd.DeviceSize = (tmp & 0x3F) << 16;

        /* Byte 8 */
        tmp = (uint8_t)((CSD_Tab[2] & 0xFF000000) >> 24);

        cardinfo->SD_csd.DeviceSize |= (tmp << 8);

        /* Byte 9 */
        tmp = (uint8_t)((CSD_Tab[2] & 0x00FF0000) >> 16);

        cardinfo->SD_csd.DeviceSize |= (tmp);

        /* Byte 10 */
        tmp = (uint8_t)((CSD_Tab[2] & 0x0000FF00) >> 8);

        cardinfo->CardCapacity = (cardinfo->SD_csd.DeviceSize + 1) * 512 * 1024;
        cardinfo->CardBlockSize = 512;
    }


    cardinfo->SD_csd.EraseGrSize = (tmp & 0x40) >> 6;
    cardinfo->SD_csd.EraseGrMul = (tmp & 0x3F) << 1;

    /* Byte 11 */
    tmp = (uint8_t)(CSD_Tab[2] & 0x000000FF);
    cardinfo->SD_csd.EraseGrMul |= (tmp & 0x80) >> 7;
    cardinfo->SD_csd.WrProtectGrSize = (tmp & 0x7F);

    /* Byte 12 */
    tmp = (uint8_t)((CSD_Tab[3] & 0xFF000000) >> 24);
    cardinfo->SD_csd.WrProtectGrEnable = (tmp & 0x80) >> 7;
    cardinfo->SD_csd.ManDeflECC = (tmp & 0x60) >> 5;
    cardinfo->SD_csd.WrSpeedFact = (tmp & 0x1C) >> 2;
    cardinfo->SD_csd.MaxWrBlockLen = (tmp & 0x03) << 2;

    /* Byte 13 */
    tmp = (uint8_t)((CSD_Tab[3] & 0x00FF0000) >> 16);
    cardinfo->SD_csd.MaxWrBlockLen |= (tmp & 0xC0) >> 6;
    cardinfo->SD_csd.WriteBlockPaPartial = (tmp & 0x20) >> 5;
    cardinfo->SD_csd.Reserved3 = 0;
    cardinfo->SD_csd.ContentProtectAppli = (tmp & 0x01);

    /* Byte 14 */
    tmp = (uint8_t)((CSD_Tab[3] & 0x0000FF00) >> 8);
    cardinfo->SD_csd.FileFormatGrouop = (tmp & 0x80) >> 7;
    cardinfo->SD_csd.CopyFlag = (tmp & 0x40) >> 6;
    cardinfo->SD_csd.PermWrProtect = (tmp & 0x20) >> 5;
    cardinfo->SD_csd.TempWrProtect = (tmp & 0x10) >> 4;
    cardinfo->SD_csd.FileFormat = (tmp & 0x0C) >> 2;
    cardinfo->SD_csd.ECC = (tmp & 0x03);

    /* Byte 15 */
    tmp = (uint8_t)(CSD_Tab[3] & 0x000000FF);
    cardinfo->SD_csd.CSD_CRC = (tmp & 0xFE) >> 1;
    cardinfo->SD_csd.Reserved4 = 1;


    /* Byte 0 */
    tmp = (uint8_t)((CID_Tab[0] & 0xFF000000) >> 24);
    cardinfo->SD_cid.ManufacturerID = tmp;

    /* Byte 1 */
    tmp = (uint8_t)((CID_Tab[0] & 0x00FF0000) >> 16);
    cardinfo->SD_cid.OEM_AppliID = tmp << 8;

    /* Byte 2 */
    tmp = (uint8_t)((CID_Tab[0] & 0x000000FF00) >> 8);
    cardinfo->SD_cid.OEM_AppliID |= tmp;

    /* Byte 3 */
    tmp = (uint8_t)(CID_Tab[0] & 0x000000FF);
    cardinfo->SD_cid.ProdName1 = tmp << 24;

    /* Byte 4 */
    tmp = (uint8_t)((CID_Tab[1] & 0xFF000000) >> 24);
    cardinfo->SD_cid.ProdName1 |= tmp << 16;

    /* Byte 5 */
    tmp = (uint8_t)((CID_Tab[1] & 0x00FF0000) >> 16);
    cardinfo->SD_cid.ProdName1 |= tmp << 8;

    /* Byte 6 */
    tmp = (uint8_t)((CID_Tab[1] & 0x0000FF00) >> 8);
    cardinfo->SD_cid.ProdName1 |= tmp;
M
Ming, Bai 已提交
651 652

    /* Byte 7 */
653 654
    tmp = (uint8_t)(CID_Tab[1] & 0x000000FF);
    cardinfo->SD_cid.ProdName2 = tmp;
M
Ming, Bai 已提交
655 656

    /* Byte 8 */
657 658
    tmp = (uint8_t)((CID_Tab[2] & 0xFF000000) >> 24);
    cardinfo->SD_cid.ProdRev = tmp;
M
Ming, Bai 已提交
659 660

    /* Byte 9 */
661 662 663
    tmp = (uint8_t)((CID_Tab[2] & 0x00FF0000) >> 16);
    cardinfo->SD_cid.ProdSN = tmp << 24;

M
Ming, Bai 已提交
664
    /* Byte 10 */
665 666
    tmp = (uint8_t)((CID_Tab[2] & 0x0000FF00) >> 8);
    cardinfo->SD_cid.ProdSN |= tmp << 16;
M
Ming, Bai 已提交
667

668 669 670
    /* Byte 11 */
    tmp = (uint8_t)(CID_Tab[2] & 0x000000FF);
    cardinfo->SD_cid.ProdSN |= tmp << 8;
M
Ming, Bai 已提交
671

672 673 674
    /* Byte 12 */
    tmp = (uint8_t)((CID_Tab[3] & 0xFF000000) >> 24);
    cardinfo->SD_cid.ProdSN |= tmp;
M
Ming, Bai 已提交
675

676 677 678 679
    /* Byte 13 */
    tmp = (uint8_t)((CID_Tab[3] & 0x00FF0000) >> 16);
    cardinfo->SD_cid.Reserved1 |= (tmp & 0xF0) >> 4;
    cardinfo->SD_cid.ManufactDate = (tmp & 0x0F) << 8;
M
Ming, Bai 已提交
680

681 682 683
    /* Byte 14 */
    tmp = (uint8_t)((CID_Tab[3] & 0x0000FF00) >> 8);
    cardinfo->SD_cid.ManufactDate |= tmp;
M
Ming, Bai 已提交
684

685 686 687 688 689 690
    /* Byte 15 */
    tmp = (uint8_t)(CID_Tab[3] & 0x000000FF);
    cardinfo->SD_cid.CID_CRC = (tmp & 0xFE) >> 1;
    cardinfo->SD_cid.Reserved2 = 1;

    return(errorstatus);
M
Ming, Bai 已提交
691 692 693 694 695 696 697 698 699 700 701 702 703 704
}

/**
  * @brief  Enables wide bus opeartion for the requeseted card if
  *   supported by card.
  * @param  WideMode: Specifies the SD card wide bus mode.
  *   This parameter can be one of the following values:
  *     @arg SDIO_BusWide_8b: 8-bit data transfer (Only for MMC)
  *     @arg SDIO_BusWide_4b: 4-bit data transfer
  *     @arg SDIO_BusWide_1b: 1-bit data transfer
  * @retval SD_Error: SD Card Error code.
  */
SD_Error SD_EnableWideBusOperation(uint32_t WideMode)
{
705
    SD_Error errorstatus = SD_OK;
M
Ming, Bai 已提交
706

707 708 709 710 711
    /* MMC Card doesn't support this feature */
    if (SDIO_MULTIMEDIA_CARD == CardType)
    {
        errorstatus = SD_UNSUPPORTED_FEATURE;
        return(errorstatus);
M
Ming, Bai 已提交
712
    }
713
    else if ((SDIO_STD_CAPACITY_SD_CARD_V1_1 == CardType) || (SDIO_STD_CAPACITY_SD_CARD_V2_0 == CardType) || (SDIO_HIGH_CAPACITY_SD_CARD == CardType))
M
Ming, Bai 已提交
714
    {
715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738
        if (SDIO_BusWide_8b == WideMode)
        {
            errorstatus = SD_UNSUPPORTED_FEATURE;
            return(errorstatus);
        }
        else if (SDIO_BusWide_4b == WideMode)
        {
            errorstatus = SDEnWideBus(ENABLE);

            if (SD_OK == errorstatus)
            {
                /* Configure the SDIO peripheral */
                SDIO_InitStructure.SDIO_ClockDiv = SDIO_TRANSFER_CLK_DIV;
                SDIO_InitStructure.SDIO_ClockEdge = SDIO_ClockEdge_Rising;
                SDIO_InitStructure.SDIO_ClockBypass = SDIO_ClockBypass_Disable;
                SDIO_InitStructure.SDIO_ClockPowerSave = SDIO_ClockPowerSave_Disable;
                SDIO_InitStructure.SDIO_BusWide = SDIO_BusWide_4b;
                SDIO_InitStructure.SDIO_HardwareFlowControl = SDIO_HardwareFlowControl_Disable;
                SDIO_Init(&SDIO_InitStructure);
            }
        }
        else
        {
            errorstatus = SDEnWideBus(DISABLE);
M
Ming, Bai 已提交
739

740 741 742 743 744 745 746 747 748 749 750 751
            if (SD_OK == errorstatus)
            {
                /* Configure the SDIO peripheral */
                SDIO_InitStructure.SDIO_ClockDiv = SDIO_TRANSFER_CLK_DIV;
                SDIO_InitStructure.SDIO_ClockEdge = SDIO_ClockEdge_Rising;
                SDIO_InitStructure.SDIO_ClockBypass = SDIO_ClockBypass_Disable;
                SDIO_InitStructure.SDIO_ClockPowerSave = SDIO_ClockPowerSave_Disable;
                SDIO_InitStructure.SDIO_BusWide = SDIO_BusWide_1b;
                SDIO_InitStructure.SDIO_HardwareFlowControl = SDIO_HardwareFlowControl_Disable;
                SDIO_Init(&SDIO_InitStructure);
            }
        }
M
Ming, Bai 已提交
752 753
    }

754
    return(errorstatus);
M
Ming, Bai 已提交
755 756 757 758 759 760 761 762 763 764 765 766 767 768
}

/**
  * @brief  Sets device mode whether to operate in Polling, Interrupt or
  *   DMA mode.
  * @param  Mode: Specifies the Data Transfer mode.
  *   This parameter can be one of the following values:
  *     @arg SD_DMA_MODE: Data transfer using DMA.
  *     @arg SD_INTERRUPT_MODE: Data transfer using interrupts.
  *     @arg SD_POLLING_MODE: Data transfer using flags.
  * @retval SD_Error: SD Card Error code.
  */
SD_Error SD_SetDeviceMode(uint32_t Mode)
{
769 770 771 772 773 774 775 776 777 778 779
    SD_Error errorstatus = SD_OK;

    if ((Mode == SD_DMA_MODE) || (Mode == SD_INTERRUPT_MODE) || (Mode == SD_POLLING_MODE))
    {
        DeviceMode = Mode;
    }
    else
    {
        errorstatus = SD_INVALID_PARAMETER;
    }
    return(errorstatus);
M
Ming, Bai 已提交
780 781 782 783 784 785 786 787 788 789

}

/**
  * @brief  Selects od Deselects the corresponding card.
  * @param  addr: Address of the Card to be selected.
  * @retval SD_Error: SD Card Error code.
  */
SD_Error SD_SelectDeselect(uint32_t addr)
{
790
    SD_Error errorstatus = SD_OK;
M
Ming, Bai 已提交
791

792 793 794 795 796 797 798
    /* Send CMD7 SDIO_SEL_DESEL_CARD */
    SDIO_CmdInitStructure.SDIO_Argument =  addr;
    SDIO_CmdInitStructure.SDIO_CmdIndex = SDIO_SEL_DESEL_CARD;
    SDIO_CmdInitStructure.SDIO_Response = SDIO_Response_Short;
    SDIO_CmdInitStructure.SDIO_Wait = SDIO_Wait_No;
    SDIO_CmdInitStructure.SDIO_CPSM = SDIO_CPSM_Enable;
    SDIO_SendCommand(&SDIO_CmdInitStructure);
M
Ming, Bai 已提交
799

800
    errorstatus = CmdResp1Error(SDIO_SEL_DESEL_CARD);
M
Ming, Bai 已提交
801

802
    return(errorstatus);
M
Ming, Bai 已提交
803 804 805 806 807 808 809 810 811 812 813 814
}

/**
  * @brief  Allows to read one block from a specified address in a card.
  * @param  addr: Address from where data are to be read.
  * @param  readbuff: pointer to the buffer that will contain the
  *   received data
  * @param  BlockSize: the SD card Data block size.
  * @retval SD_Error: SD Card Error code.
  */
SD_Error SD_ReadBlock(uint32_t addr, uint32_t *readbuff, uint16_t BlockSize)
{
815 816 817
    SD_Error errorstatus = SD_OK;
    uint32_t count = 0, *tempbuff = readbuff;
    uint8_t power = 0;
M
Ming, Bai 已提交
818

819
    if (NULL == readbuff)
M
Ming, Bai 已提交
820
    {
821 822
        errorstatus = SD_INVALID_PARAMETER;
        return(errorstatus);
M
Ming, Bai 已提交
823
    }
824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839

    TransferError = SD_OK;
    TransferEnd = 0;
    TotalNumberOfBytes = 0;

    /* Clear all DPSM configuration */
    SDIO_DataInitStructure.SDIO_DataTimeOut = SD_DATATIMEOUT;
    SDIO_DataInitStructure.SDIO_DataLength = 0;
    SDIO_DataInitStructure.SDIO_DataBlockSize = SDIO_DataBlockSize_1b;
    SDIO_DataInitStructure.SDIO_TransferDir = SDIO_TransferDir_ToCard;
    SDIO_DataInitStructure.SDIO_TransferMode = SDIO_TransferMode_Block;
    SDIO_DataInitStructure.SDIO_DPSM = SDIO_DPSM_Disable;
    SDIO_DataConfig(&SDIO_DataInitStructure);
    SDIO_DMACmd(DISABLE);

    if (SDIO_GetResponse(SDIO_RESP1) & SD_CARD_LOCKED)
M
Ming, Bai 已提交
840
    {
841 842
        errorstatus = SD_LOCK_UNLOCK_FAILED;
        return(errorstatus);
M
Ming, Bai 已提交
843 844
    }

845
    if (CardType == SDIO_HIGH_CAPACITY_SD_CARD)
M
Ming, Bai 已提交
846
    {
847 848
        BlockSize = 512;
        // addr /= 512;
M
Ming, Bai 已提交
849
    }
850
    if ((BlockSize > 0) && (BlockSize <= 2048) && ((BlockSize & (BlockSize - 1)) == 0))
M
Ming, Bai 已提交
851
    {
852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867
        power = convert_from_bytes_to_power_of_two(BlockSize);

        /* Set Block Size for Card */
        SDIO_CmdInitStructure.SDIO_Argument = (uint32_t) BlockSize;
        SDIO_CmdInitStructure.SDIO_CmdIndex = SDIO_SET_BLOCKLEN;
        SDIO_CmdInitStructure.SDIO_Response = SDIO_Response_Short;
        SDIO_CmdInitStructure.SDIO_Wait = SDIO_Wait_No;
        SDIO_CmdInitStructure.SDIO_CPSM = SDIO_CPSM_Enable;
        SDIO_SendCommand(&SDIO_CmdInitStructure);

        errorstatus = CmdResp1Error(SDIO_SET_BLOCKLEN);

        if (SD_OK != errorstatus)
        {
            return(errorstatus);
        }
M
Ming, Bai 已提交
868
    }
869
    else
M
Ming, Bai 已提交
870
    {
871 872
        errorstatus = SD_INVALID_PARAMETER;
        return(errorstatus);
M
Ming, Bai 已提交
873
    }
874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897

    SDIO_DataInitStructure.SDIO_DataTimeOut = SD_DATATIMEOUT;
    SDIO_DataInitStructure.SDIO_DataLength = BlockSize;
    SDIO_DataInitStructure.SDIO_DataBlockSize = (uint32_t) power << 4;
    SDIO_DataInitStructure.SDIO_TransferDir = SDIO_TransferDir_ToSDIO;
    SDIO_DataInitStructure.SDIO_TransferMode = SDIO_TransferMode_Block;
    SDIO_DataInitStructure.SDIO_DPSM = SDIO_DPSM_Enable;
    SDIO_DataConfig(&SDIO_DataInitStructure);

    TotalNumberOfBytes = BlockSize;
    StopCondition = 0;
    DestBuffer = readbuff;

    /* Send CMD17 READ_SINGLE_BLOCK */
    SDIO_CmdInitStructure.SDIO_Argument = (uint32_t)addr;
    SDIO_CmdInitStructure.SDIO_CmdIndex = SDIO_READ_SINGLE_BLOCK;
    SDIO_CmdInitStructure.SDIO_Response = SDIO_Response_Short;
    SDIO_CmdInitStructure.SDIO_Wait = SDIO_Wait_No;
    SDIO_CmdInitStructure.SDIO_CPSM = SDIO_CPSM_Enable;
    SDIO_SendCommand(&SDIO_CmdInitStructure);

    errorstatus = CmdResp1Error(SDIO_READ_SINGLE_BLOCK);

    if (errorstatus != SD_OK)
M
Ming, Bai 已提交
898
    {
899
        return(errorstatus);
M
Ming, Bai 已提交
900
    }
901 902
    /* In case of single block transfer, no need of stop transfer at all.*/
    if (DeviceMode == SD_POLLING_MODE)
M
Ming, Bai 已提交
903
    {
904 905 906 907 908 909 910 911 912 913 914 915
        /* Polling mode */
        while (!(SDIO->STA &(SDIO_FLAG_RXOVERR | SDIO_FLAG_DCRCFAIL | SDIO_FLAG_DTIMEOUT | SDIO_FLAG_DBCKEND | SDIO_FLAG_STBITERR)))
        {
            if (SDIO_GetFlagStatus(SDIO_FLAG_RXFIFOHF) != RESET)
            {
                for (count = 0; count < 8; count++)
                {
                    *(tempbuff + count) = SDIO_ReadData();
                }
                tempbuff += 8;
            }
        }
M
Ming, Bai 已提交
916

917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978
        if (SDIO_GetFlagStatus(SDIO_FLAG_DTIMEOUT) != RESET)
        {
            SDIO_ClearFlag(SDIO_FLAG_DTIMEOUT);
            errorstatus = SD_DATA_TIMEOUT;
            return(errorstatus);
        }
        else if (SDIO_GetFlagStatus(SDIO_FLAG_DCRCFAIL) != RESET)
        {
            SDIO_ClearFlag(SDIO_FLAG_DCRCFAIL);
            errorstatus = SD_DATA_CRC_FAIL;
            return(errorstatus);
        }
        else if (SDIO_GetFlagStatus(SDIO_FLAG_RXOVERR) != RESET)
        {
            SDIO_ClearFlag(SDIO_FLAG_RXOVERR);
            errorstatus = SD_RX_OVERRUN;
            return(errorstatus);
        }
        else if (SDIO_GetFlagStatus(SDIO_FLAG_STBITERR) != RESET)
        {
            SDIO_ClearFlag(SDIO_FLAG_STBITERR);
            errorstatus = SD_START_BIT_ERR;
            return(errorstatus);
        }
        while (SDIO_GetFlagStatus(SDIO_FLAG_RXDAVL) != RESET)
        {
            *tempbuff = SDIO_ReadData();
            tempbuff++;
        }

        /* Clear all the static flags */
        SDIO_ClearFlag(SDIO_STATIC_FLAGS);
    }
    else if (DeviceMode == SD_INTERRUPT_MODE)
    {
        SDIO_ITConfig(SDIO_IT_DCRCFAIL | SDIO_IT_DTIMEOUT | SDIO_IT_DATAEND | SDIO_IT_RXOVERR | SDIO_IT_RXFIFOHF | SDIO_IT_STBITERR, ENABLE);
        while ((TransferEnd == 0) && (TransferError == SD_OK))
        {}
        if (TransferError != SD_OK)
        {
            return(TransferError);
        }
    }
    else if (DeviceMode == SD_DMA_MODE)
    {
        rt_tick_t tick;

        SDIO_ITConfig(SDIO_IT_DCRCFAIL | SDIO_IT_DTIMEOUT | SDIO_IT_DATAEND | SDIO_IT_RXOVERR | SDIO_IT_STBITERR, ENABLE);
        SDIO_DMACmd(ENABLE);
        tick = rt_tick_get();
        DMA_RxConfiguration(readbuff, BlockSize);
        while (DMA_GetFlagStatus(DMA2_FLAG_TC4) == RESET)
        {
            if ((TransferError != SD_OK) || (rt_tick_get() - tick > 10))
            {
                errorstatus = SD_ERROR;
                // rt_kprintf("sd error\n");
                break;
            }
        }
    }
    return(errorstatus);
M
Ming, Bai 已提交
979 980 981 982 983 984 985 986 987 988 989 990 991
}

/**
  * @brief  Allows to read blocks from a specified address  in a card.
  * @param  addr: Address from where data are to be read.
  * @param  readbuff: pointer to the buffer that will contain the
  *   received data.
  * @param  BlockSize: the SD card Data block size.
  * @param  NumberOfBlocks: number of blocks to be read.
  * @retval SD_Error: SD Card Error code.
  */
SD_Error SD_ReadMultiBlocks(uint32_t addr, uint32_t *readbuff, uint16_t BlockSize, uint32_t NumberOfBlocks)
{
992 993 994
    SD_Error errorstatus = SD_OK;
    uint32_t count = 0, *tempbuff = readbuff;
    uint8_t power = 0;
M
Ming, Bai 已提交
995

996 997 998 999 1000
    if (NULL == readbuff)
    {
        errorstatus = SD_INVALID_PARAMETER;
        return(errorstatus);
    }
M
Ming, Bai 已提交
1001

1002 1003 1004
    TransferError = SD_OK;
    TransferEnd = 0;
    TotalNumberOfBytes = 0;
M
Ming, Bai 已提交
1005

1006 1007 1008 1009 1010 1011 1012 1013 1014
    /* Clear all DPSM configuration */
    SDIO_DataInitStructure.SDIO_DataTimeOut = SD_DATATIMEOUT;
    SDIO_DataInitStructure.SDIO_DataLength = 0;
    SDIO_DataInitStructure.SDIO_DataBlockSize = SDIO_DataBlockSize_1b;
    SDIO_DataInitStructure.SDIO_TransferDir = SDIO_TransferDir_ToCard;
    SDIO_DataInitStructure.SDIO_TransferMode = SDIO_TransferMode_Block;
    SDIO_DataInitStructure.SDIO_DPSM = SDIO_DPSM_Disable;
    SDIO_DataConfig(&SDIO_DataInitStructure);
    SDIO_DMACmd(DISABLE);
M
Ming, Bai 已提交
1015

1016
    if (SDIO_GetResponse(SDIO_RESP1) & SD_CARD_LOCKED)
M
Ming, Bai 已提交
1017
    {
1018 1019
        errorstatus = SD_LOCK_UNLOCK_FAILED;
        return(errorstatus);
M
Ming, Bai 已提交
1020 1021
    }

1022
    if (CardType == SDIO_HIGH_CAPACITY_SD_CARD)
M
Ming, Bai 已提交
1023
    {
1024 1025
        BlockSize = 512;
        // addr /= 512;
M
Ming, Bai 已提交
1026 1027
    }

1028 1029 1030
    if ((BlockSize > 0) && (BlockSize <= 2048) && (0 == (BlockSize & (BlockSize - 1))))
    {
        power = convert_from_bytes_to_power_of_two(BlockSize);
M
Ming, Bai 已提交
1031

1032 1033 1034 1035 1036 1037 1038
        /* Set Block Size for Card */
        SDIO_CmdInitStructure.SDIO_Argument = (uint32_t) BlockSize;
        SDIO_CmdInitStructure.SDIO_CmdIndex = SDIO_SET_BLOCKLEN;
        SDIO_CmdInitStructure.SDIO_Response = SDIO_Response_Short;
        SDIO_CmdInitStructure.SDIO_Wait = SDIO_Wait_No;
        SDIO_CmdInitStructure.SDIO_CPSM = SDIO_CPSM_Enable;
        SDIO_SendCommand(&SDIO_CmdInitStructure);
M
Ming, Bai 已提交
1039

1040
        errorstatus = CmdResp1Error(SDIO_SET_BLOCKLEN);
M
Ming, Bai 已提交
1041

1042 1043 1044 1045 1046 1047
        if (SD_OK != errorstatus)
        {
            return(errorstatus);
        }
    }
    else
M
Ming, Bai 已提交
1048
    {
1049 1050
        errorstatus = SD_INVALID_PARAMETER;
        return(errorstatus);
M
Ming, Bai 已提交
1051 1052
    }

1053
    if (NumberOfBlocks > 1)
M
Ming, Bai 已提交
1054
    {
1055 1056
        /* Common to all modes */
        if (NumberOfBlocks * BlockSize > SD_MAX_DATA_LENGTH)
M
Ming, Bai 已提交
1057
        {
1058 1059
            errorstatus = SD_INVALID_PARAMETER;
            return(errorstatus);
M
Ming, Bai 已提交
1060 1061
        }

1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085
        TotalNumberOfBytes = NumberOfBlocks * BlockSize;
        StopCondition = 1;
        DestBuffer = readbuff;

        SDIO_DataInitStructure.SDIO_DataTimeOut = SD_DATATIMEOUT;
        SDIO_DataInitStructure.SDIO_DataLength = NumberOfBlocks * BlockSize;
        SDIO_DataInitStructure.SDIO_DataBlockSize = (uint32_t) power << 4;
        SDIO_DataInitStructure.SDIO_TransferDir = SDIO_TransferDir_ToSDIO;
        SDIO_DataInitStructure.SDIO_TransferMode = SDIO_TransferMode_Block;
        SDIO_DataInitStructure.SDIO_DPSM = SDIO_DPSM_Enable;
        SDIO_DataConfig(&SDIO_DataInitStructure);

        /* Send CMD18 READ_MULT_BLOCK with argument data address */
        SDIO_CmdInitStructure.SDIO_Argument = (uint32_t)addr;
        SDIO_CmdInitStructure.SDIO_CmdIndex = SDIO_READ_MULT_BLOCK;
        SDIO_CmdInitStructure.SDIO_Response = SDIO_Response_Short;
        SDIO_CmdInitStructure.SDIO_Wait = SDIO_Wait_No;
        SDIO_CmdInitStructure.SDIO_CPSM = SDIO_CPSM_Enable;
        SDIO_SendCommand(&SDIO_CmdInitStructure);

        errorstatus = CmdResp1Error(SDIO_READ_MULT_BLOCK);

        if (errorstatus != SD_OK)
        {
M
Ming, Bai 已提交
1086 1087
            return(errorstatus);
        }
1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191

        if (DeviceMode == SD_POLLING_MODE)
        {
            /* Polling mode */
            while (!(SDIO->STA &(SDIO_FLAG_RXOVERR | SDIO_FLAG_DCRCFAIL | SDIO_FLAG_DATAEND | SDIO_FLAG_DTIMEOUT | SDIO_FLAG_STBITERR)))
            {
                if (SDIO_GetFlagStatus(SDIO_FLAG_RXFIFOHF) != RESET)
                {
                    for (count = 0; count < SD_HALFFIFO; count++)
                    {
                        *(tempbuff + count) = SDIO_ReadData();
                    }
                    tempbuff += SD_HALFFIFO;
                }
            }

            if (SDIO_GetFlagStatus(SDIO_FLAG_DTIMEOUT) != RESET)
            {
                SDIO_ClearFlag(SDIO_FLAG_DTIMEOUT);
                errorstatus = SD_DATA_TIMEOUT;
                return(errorstatus);
            }
            else if (SDIO_GetFlagStatus(SDIO_FLAG_DCRCFAIL) != RESET)
            {
                SDIO_ClearFlag(SDIO_FLAG_DCRCFAIL);
                errorstatus = SD_DATA_CRC_FAIL;
                return(errorstatus);
            }
            else if (SDIO_GetFlagStatus(SDIO_FLAG_RXOVERR) != RESET)
            {
                SDIO_ClearFlag(SDIO_FLAG_RXOVERR);
                errorstatus = SD_RX_OVERRUN;
                return(errorstatus);
            }
            else if (SDIO_GetFlagStatus(SDIO_FLAG_STBITERR) != RESET)
            {
                SDIO_ClearFlag(SDIO_FLAG_STBITERR);
                errorstatus = SD_START_BIT_ERR;
                return(errorstatus);
            }
            while (SDIO_GetFlagStatus(SDIO_FLAG_RXDAVL) != RESET)
            {
                *tempbuff = SDIO_ReadData();
                tempbuff++;
            }

            if (SDIO_GetFlagStatus(SDIO_FLAG_DATAEND) != RESET)
            {
                /* In Case Of SD-CARD Send Command STOP_TRANSMISSION */
                if ((SDIO_STD_CAPACITY_SD_CARD_V1_1 == CardType) || (SDIO_HIGH_CAPACITY_SD_CARD == CardType) || (SDIO_STD_CAPACITY_SD_CARD_V2_0 == CardType))
                {
                    /* Send CMD12 STOP_TRANSMISSION */
                    SDIO_CmdInitStructure.SDIO_Argument = 0x0;
                    SDIO_CmdInitStructure.SDIO_CmdIndex = SDIO_STOP_TRANSMISSION;
                    SDIO_CmdInitStructure.SDIO_Response = SDIO_Response_Short;
                    SDIO_CmdInitStructure.SDIO_Wait = SDIO_Wait_No;
                    SDIO_CmdInitStructure.SDIO_CPSM = SDIO_CPSM_Enable;
                    SDIO_SendCommand(&SDIO_CmdInitStructure);

                    errorstatus = CmdResp1Error(SDIO_STOP_TRANSMISSION);

                    if (errorstatus != SD_OK)
                    {
                        return(errorstatus);
                    }
                }
            }
            /* Clear all the static flags */
            SDIO_ClearFlag(SDIO_STATIC_FLAGS);
        }
        else if (DeviceMode == SD_INTERRUPT_MODE)
        {
            SDIO_ITConfig(SDIO_IT_DCRCFAIL | SDIO_IT_DTIMEOUT | SDIO_IT_DATAEND | SDIO_IT_RXOVERR | SDIO_IT_RXFIFOHF | SDIO_IT_STBITERR, ENABLE);
            while ((TransferEnd == 0) && (TransferError == SD_OK))
            {}
            if (TransferError != SD_OK)
            {
                return(TransferError);
            }
        }
        else if (DeviceMode == SD_DMA_MODE)
        {
            rt_tick_t tick;

            SDIO_ITConfig(SDIO_IT_DCRCFAIL | SDIO_IT_DTIMEOUT | SDIO_IT_DATAEND | SDIO_IT_RXOVERR | SDIO_IT_STBITERR, ENABLE);
            SDIO_DMACmd(ENABLE);
            tick = rt_tick_get();
            DMA_RxConfiguration(readbuff, (NumberOfBlocks * BlockSize));
            while (DMA_GetFlagStatus(DMA2_FLAG_TC4) == RESET)
            {
                if ((TransferError != SD_OK) || (rt_tick_get() - tick > 10))
                {
                    errorstatus = SD_ERROR;
                    // rt_kprintf("sd error\n");
                    return errorstatus;
                }
            }
            while ((TransferEnd == 0) && (TransferError == SD_OK))
            {}
            if (TransferError != SD_OK)
            {
                return(TransferError);
            }
        }
M
Ming, Bai 已提交
1192
    }
1193
    return(errorstatus);
M
Ming, Bai 已提交
1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206
}

/**
  * @brief  Allows to write one block starting from a specified address
  *   in a card.
  * @param  addr: Address from where data are to be read.
  * @param  writebuff: pointer to the buffer that contain the data to be
  *   transferred.
  * @param  BlockSize: the SD card Data block size.
  * @retval SD_Error: SD Card Error code.
  */
SD_Error SD_WriteBlock(uint32_t addr, uint32_t *writebuff, uint16_t BlockSize)
{
1207 1208 1209 1210 1211
    SD_Error errorstatus = SD_OK;
    uint8_t  power = 0, cardstate = 0;
    uint32_t timeout = 0, bytestransferred = 0;
    uint32_t cardstatus = 0, count = 0, restwords = 0;
    uint32_t *tempbuff = writebuff;
M
Ming, Bai 已提交
1212

1213 1214 1215 1216 1217
    if (writebuff == NULL)
    {
        errorstatus = SD_INVALID_PARAMETER;
        return(errorstatus);
    }
M
Ming, Bai 已提交
1218

1219 1220 1221
    TransferError = SD_OK;
    TransferEnd = 0;
    TotalNumberOfBytes = 0;
M
Ming, Bai 已提交
1222

1223 1224 1225 1226 1227 1228 1229 1230
    SDIO_DataInitStructure.SDIO_DataTimeOut = SD_DATATIMEOUT;
    SDIO_DataInitStructure.SDIO_DataLength = 0;
    SDIO_DataInitStructure.SDIO_DataBlockSize = SDIO_DataBlockSize_1b;
    SDIO_DataInitStructure.SDIO_TransferDir = SDIO_TransferDir_ToCard;
    SDIO_DataInitStructure.SDIO_TransferMode = SDIO_TransferMode_Block;
    SDIO_DataInitStructure.SDIO_DPSM = SDIO_DPSM_Disable;
    SDIO_DataConfig(&SDIO_DataInitStructure);
    SDIO_DMACmd(DISABLE);
M
Ming, Bai 已提交
1231

1232
    if (SDIO_GetResponse(SDIO_RESP1) & SD_CARD_LOCKED)
M
Ming, Bai 已提交
1233
    {
1234 1235
        errorstatus = SD_LOCK_UNLOCK_FAILED;
        return(errorstatus);
M
Ming, Bai 已提交
1236 1237
    }

1238 1239 1240 1241 1242
    if (CardType == SDIO_HIGH_CAPACITY_SD_CARD)
    {
        BlockSize = 512;
        // addr /= 512;
    }
M
Ming, Bai 已提交
1243

1244 1245 1246 1247
    /* Set the block size, both on controller and card */
    if ((BlockSize > 0) && (BlockSize <= 2048) && ((BlockSize & (BlockSize - 1)) == 0))
    {
        power = convert_from_bytes_to_power_of_two(BlockSize);
M
Ming, Bai 已提交
1248

1249 1250 1251 1252 1253 1254
        SDIO_CmdInitStructure.SDIO_Argument = (uint32_t) BlockSize;
        SDIO_CmdInitStructure.SDIO_CmdIndex = SDIO_SET_BLOCKLEN;
        SDIO_CmdInitStructure.SDIO_Response = SDIO_Response_Short;
        SDIO_CmdInitStructure.SDIO_Wait = SDIO_Wait_No;
        SDIO_CmdInitStructure.SDIO_CPSM = SDIO_CPSM_Enable;
        SDIO_SendCommand(&SDIO_CmdInitStructure);
M
Ming, Bai 已提交
1255

1256
        errorstatus = CmdResp1Error(SDIO_SET_BLOCKLEN);
M
Ming, Bai 已提交
1257

1258 1259 1260 1261 1262 1263 1264 1265 1266 1267
        if (errorstatus != SD_OK)
        {
            return(errorstatus);
        }
    }
    else
    {
        errorstatus = SD_INVALID_PARAMETER;
        return(errorstatus);
    }
M
Ming, Bai 已提交
1268

1269
    /* Wait till card is ready for data Added */
M
Ming, Bai 已提交
1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280
    SDIO_CmdInitStructure.SDIO_Argument = (uint32_t) (RCA << 16);
    SDIO_CmdInitStructure.SDIO_CmdIndex = SDIO_SEND_STATUS;
    SDIO_CmdInitStructure.SDIO_Response = SDIO_Response_Short;
    SDIO_CmdInitStructure.SDIO_Wait = SDIO_Wait_No;
    SDIO_CmdInitStructure.SDIO_CPSM = SDIO_CPSM_Enable;
    SDIO_SendCommand(&SDIO_CmdInitStructure);

    errorstatus = CmdResp1Error(SDIO_SEND_STATUS);

    if (errorstatus != SD_OK)
    {
1281
        return(errorstatus);
M
Ming, Bai 已提交
1282 1283
    }

1284
    cardstatus = SDIO_GetResponse(SDIO_RESP1);
M
Ming, Bai 已提交
1285

1286
    timeout = SD_DATATIMEOUT;
M
Ming, Bai 已提交
1287

1288
    while (((cardstatus & 0x00000100) == 0) && (timeout > 0))
M
Ming, Bai 已提交
1289
    {
1290 1291 1292 1293 1294 1295 1296
        timeout--;
        SDIO_CmdInitStructure.SDIO_Argument = (uint32_t) (RCA << 16);
        SDIO_CmdInitStructure.SDIO_CmdIndex = SDIO_SEND_STATUS;
        SDIO_CmdInitStructure.SDIO_Response = SDIO_Response_Short;
        SDIO_CmdInitStructure.SDIO_Wait = SDIO_Wait_No;
        SDIO_CmdInitStructure.SDIO_CPSM = SDIO_CPSM_Enable;
        SDIO_SendCommand(&SDIO_CmdInitStructure);
M
Ming, Bai 已提交
1297

1298 1299 1300
        errorstatus = CmdResp1Error(SDIO_SEND_STATUS);

        if (errorstatus != SD_OK)
M
Ming, Bai 已提交
1301
        {
1302
            return(errorstatus);
M
Ming, Bai 已提交
1303
        }
1304
        cardstatus = SDIO_GetResponse(SDIO_RESP1);
M
Ming, Bai 已提交
1305
    }
1306 1307

    if (timeout == 0)
M
Ming, Bai 已提交
1308
    {
1309
        return(SD_ERROR);
M
Ming, Bai 已提交
1310
    }
1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322

    /* Send CMD24 WRITE_SINGLE_BLOCK */
    SDIO_CmdInitStructure.SDIO_Argument = addr;
    SDIO_CmdInitStructure.SDIO_CmdIndex = SDIO_WRITE_SINGLE_BLOCK;
    SDIO_CmdInitStructure.SDIO_Response = SDIO_Response_Short;
    SDIO_CmdInitStructure.SDIO_Wait = SDIO_Wait_No;
    SDIO_CmdInitStructure.SDIO_CPSM = SDIO_CPSM_Enable;
    SDIO_SendCommand(&SDIO_CmdInitStructure);

    errorstatus = CmdResp1Error(SDIO_WRITE_SINGLE_BLOCK);

    if (errorstatus != SD_OK)
M
Ming, Bai 已提交
1323
    {
1324
        return(errorstatus);
M
Ming, Bai 已提交
1325
    }
1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340

    TotalNumberOfBytes = BlockSize;
    StopCondition = 0;
    SrcBuffer = writebuff;

    SDIO_DataInitStructure.SDIO_DataTimeOut = SD_DATATIMEOUT;
    SDIO_DataInitStructure.SDIO_DataLength = BlockSize;
    SDIO_DataInitStructure.SDIO_DataBlockSize = (uint32_t) power << 4;
    SDIO_DataInitStructure.SDIO_TransferDir = SDIO_TransferDir_ToCard;
    SDIO_DataInitStructure.SDIO_TransferMode = SDIO_TransferMode_Block;
    SDIO_DataInitStructure.SDIO_DPSM = SDIO_DPSM_Enable;
    SDIO_DataConfig(&SDIO_DataInitStructure);

    /* In case of single data block transfer no need of stop command at all */
    if (DeviceMode == SD_POLLING_MODE)
M
Ming, Bai 已提交
1341
    {
1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389
        while (!(SDIO->STA & (SDIO_FLAG_DBCKEND | SDIO_FLAG_TXUNDERR | SDIO_FLAG_DCRCFAIL | SDIO_FLAG_DTIMEOUT | SDIO_FLAG_STBITERR)))
        {
            if (SDIO_GetFlagStatus(SDIO_FLAG_TXFIFOHE) != RESET)
            {
                if ((TotalNumberOfBytes - bytestransferred) < 32)
                {
                    restwords = ((TotalNumberOfBytes - bytestransferred) % 4 == 0) ? ((TotalNumberOfBytes - bytestransferred) / 4) : (( TotalNumberOfBytes -  bytestransferred) / 4 + 1);

                    for (count = 0; count < restwords; count++, tempbuff++, bytestransferred += 4)
                    {
                        SDIO_WriteData(*tempbuff);
                    }
                }
                else
                {
                    for (count = 0; count < 8; count++)
                    {
                        SDIO_WriteData(*(tempbuff + count));
                    }
                    tempbuff += 8;
                    bytestransferred += 32;
                }
            }
        }
        if (SDIO_GetFlagStatus(SDIO_FLAG_DTIMEOUT) != RESET)
        {
            SDIO_ClearFlag(SDIO_FLAG_DTIMEOUT);
            errorstatus = SD_DATA_TIMEOUT;
            return(errorstatus);
        }
        else if (SDIO_GetFlagStatus(SDIO_FLAG_DCRCFAIL) != RESET)
        {
            SDIO_ClearFlag(SDIO_FLAG_DCRCFAIL);
            errorstatus = SD_DATA_CRC_FAIL;
            return(errorstatus);
        }
        else if (SDIO_GetFlagStatus(SDIO_FLAG_TXUNDERR) != RESET)
        {
            SDIO_ClearFlag(SDIO_FLAG_TXUNDERR);
            errorstatus = SD_TX_UNDERRUN;
            return(errorstatus);
        }
        else if (SDIO_GetFlagStatus(SDIO_FLAG_STBITERR) != RESET)
        {
            SDIO_ClearFlag(SDIO_FLAG_STBITERR);
            errorstatus = SD_START_BIT_ERR;
            return(errorstatus);
        }
M
Ming, Bai 已提交
1390
    }
1391
    else if (DeviceMode == SD_INTERRUPT_MODE)
M
Ming, Bai 已提交
1392
    {
1393 1394 1395 1396 1397 1398 1399
        SDIO_ITConfig(SDIO_IT_DCRCFAIL | SDIO_IT_DTIMEOUT | SDIO_IT_DATAEND | SDIO_FLAG_TXFIFOHE | SDIO_IT_TXUNDERR | SDIO_IT_STBITERR, ENABLE);
        while ((TransferEnd == 0) && (TransferError == SD_OK))
        {}
        if (TransferError != SD_OK)
        {
            return(TransferError);
        }
M
Ming, Bai 已提交
1400
    }
1401
    else if (DeviceMode == SD_DMA_MODE)
M
Ming, Bai 已提交
1402
    {
1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413
        SDIO_ITConfig(SDIO_IT_DCRCFAIL | SDIO_IT_DTIMEOUT | SDIO_IT_DATAEND | SDIO_IT_TXUNDERR | SDIO_IT_STBITERR, ENABLE);
        DMA_TxConfiguration(writebuff, BlockSize);
        SDIO_DMACmd(ENABLE);
        while (DMA_GetFlagStatus(DMA2_FLAG_TC4) == RESET)
        {}
        while ((TransferEnd == 0) && (TransferError == SD_OK))
        {}
        if (TransferError != SD_OK)
        {
            return(TransferError);
        }
M
Ming, Bai 已提交
1414 1415
    }

1416 1417
    /* Clear all the static flags */
    SDIO_ClearFlag(SDIO_STATIC_FLAGS);
M
Ming, Bai 已提交
1418

1419
    /* Wait till the card is in programming state */
M
Ming, Bai 已提交
1420 1421
    errorstatus = IsCardProgramming(&cardstate);

1422 1423 1424 1425 1426 1427
    while ((errorstatus == SD_OK) && ((cardstate == SD_CARD_PROGRAMMING) || (cardstate == SD_CARD_RECEIVING)))
    {
        errorstatus = IsCardProgramming(&cardstate);
    }

    return(errorstatus);
M
Ming, Bai 已提交
1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441
}

/**
  * @brief  Allows to write blocks starting from a specified address in
  *   a card.
  * @param  addr: Address from where data are to be read.
  * @param  writebuff: pointer to the buffer that contain the data to be
  *   transferred.
  * @param  BlockSize: the SD card Data block size.
  * @param  NumberOfBlocks: number of blocks to be written.
  * @retval SD_Error: SD Card Error code.
  */
SD_Error SD_WriteMultiBlocks(uint32_t addr, uint32_t *writebuff, uint16_t BlockSize, uint32_t NumberOfBlocks)
{
1442 1443 1444 1445 1446
    SD_Error errorstatus = SD_OK;
    uint8_t  power = 0, cardstate = 0;
    uint32_t bytestransferred = 0;
    uint32_t count = 0, restwords = 0;
    uint32_t *tempbuff = writebuff;
M
Ming, Bai 已提交
1447

1448 1449 1450 1451 1452
    if (writebuff == NULL)
    {
        errorstatus = SD_INVALID_PARAMETER;
        return(errorstatus);
    }
M
Ming, Bai 已提交
1453

1454 1455 1456
    TransferError = SD_OK;
    TransferEnd = 0;
    TotalNumberOfBytes = 0;
M
Ming, Bai 已提交
1457

1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507
    SDIO_DataInitStructure.SDIO_DataTimeOut = SD_DATATIMEOUT;
    SDIO_DataInitStructure.SDIO_DataLength = 0;
    SDIO_DataInitStructure.SDIO_DataBlockSize = SDIO_DataBlockSize_1b;
    SDIO_DataInitStructure.SDIO_TransferDir = SDIO_TransferDir_ToCard;
    SDIO_DataInitStructure.SDIO_TransferMode = SDIO_TransferMode_Block;
    SDIO_DataInitStructure.SDIO_DPSM = SDIO_DPSM_Disable;
    SDIO_DataConfig(&SDIO_DataInitStructure);
    SDIO_DMACmd(DISABLE);

    if (SDIO_GetResponse(SDIO_RESP1) & SD_CARD_LOCKED)
    {
        errorstatus = SD_LOCK_UNLOCK_FAILED;
        return(errorstatus);
    }

    if (CardType == SDIO_HIGH_CAPACITY_SD_CARD)
    {
        BlockSize = 512;
        // addr /= 512;
    }

    /* Set the block size, both on controller and card */
    if ((BlockSize > 0) && (BlockSize <= 2048) && ((BlockSize & (BlockSize - 1)) == 0))
    {
        power = convert_from_bytes_to_power_of_two(BlockSize);

        SDIO_CmdInitStructure.SDIO_Argument = (uint32_t) BlockSize;
        SDIO_CmdInitStructure.SDIO_CmdIndex = SDIO_SET_BLOCKLEN;
        SDIO_CmdInitStructure.SDIO_Response = SDIO_Response_Short;
        SDIO_CmdInitStructure.SDIO_Wait = SDIO_Wait_No;
        SDIO_CmdInitStructure.SDIO_CPSM = SDIO_CPSM_Enable;
        SDIO_SendCommand(&SDIO_CmdInitStructure);

        errorstatus = CmdResp1Error(SDIO_SET_BLOCKLEN);

        if (errorstatus != SD_OK)
        {
            return(errorstatus);
        }
    }
    else
    {
        errorstatus = SD_INVALID_PARAMETER;
        return(errorstatus);
    }

    /* Wait till card is ready for data Added */
    SDIO_CmdInitStructure.SDIO_Argument = (uint32_t) (RCA << 16);
    SDIO_CmdInitStructure.SDIO_CmdIndex = SDIO_SEND_STATUS;
    SDIO_CmdInitStructure.SDIO_Response = SDIO_Response_Short;
M
Ming, Bai 已提交
1508 1509 1510 1511
    SDIO_CmdInitStructure.SDIO_Wait = SDIO_Wait_No;
    SDIO_CmdInitStructure.SDIO_CPSM = SDIO_CPSM_Enable;
    SDIO_SendCommand(&SDIO_CmdInitStructure);

1512
    errorstatus = CmdResp1Error(SDIO_SEND_STATUS);
M
Ming, Bai 已提交
1513 1514 1515

    if (errorstatus != SD_OK)
    {
1516
        return(errorstatus);
M
Ming, Bai 已提交
1517
    }
1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698

    if (NumberOfBlocks > 1)
    {
        /* Common to all modes */
        if (NumberOfBlocks * BlockSize > SD_MAX_DATA_LENGTH)
        {
            errorstatus = SD_INVALID_PARAMETER;
            return(errorstatus);
        }

        if ((SDIO_STD_CAPACITY_SD_CARD_V1_1 == CardType) || (SDIO_STD_CAPACITY_SD_CARD_V2_0 == CardType) || (SDIO_HIGH_CAPACITY_SD_CARD == CardType))
        {
            /* To improve performance */
            SDIO_CmdInitStructure.SDIO_Argument = (uint32_t) (RCA << 16);
            SDIO_CmdInitStructure.SDIO_CmdIndex = SDIO_APP_CMD;
            SDIO_CmdInitStructure.SDIO_Response = SDIO_Response_Short;
            SDIO_CmdInitStructure.SDIO_Wait = SDIO_Wait_No;
            SDIO_CmdInitStructure.SDIO_CPSM = SDIO_CPSM_Enable;
            SDIO_SendCommand(&SDIO_CmdInitStructure);


            errorstatus = CmdResp1Error(SDIO_APP_CMD);

            if (errorstatus != SD_OK)
            {
                return(errorstatus);
            }
            /* To improve performance */
            SDIO_CmdInitStructure.SDIO_Argument = (uint32_t)NumberOfBlocks;
            SDIO_CmdInitStructure.SDIO_CmdIndex = SDIO_SET_BLOCK_COUNT;
            SDIO_CmdInitStructure.SDIO_Response = SDIO_Response_Short;
            SDIO_CmdInitStructure.SDIO_Wait = SDIO_Wait_No;
            SDIO_CmdInitStructure.SDIO_CPSM = SDIO_CPSM_Enable;
            SDIO_SendCommand(&SDIO_CmdInitStructure);

            errorstatus = CmdResp1Error(SDIO_SET_BLOCK_COUNT);

            if (errorstatus != SD_OK)
            {
                return(errorstatus);
            }
        }

        /* Send CMD25 WRITE_MULT_BLOCK with argument data address */
        SDIO_CmdInitStructure.SDIO_Argument = (uint32_t)addr;
        SDIO_CmdInitStructure.SDIO_CmdIndex = SDIO_WRITE_MULT_BLOCK;
        SDIO_CmdInitStructure.SDIO_Response = SDIO_Response_Short;
        SDIO_CmdInitStructure.SDIO_Wait = SDIO_Wait_No;
        SDIO_CmdInitStructure.SDIO_CPSM = SDIO_CPSM_Enable;
        SDIO_SendCommand(&SDIO_CmdInitStructure);

        errorstatus = CmdResp1Error(SDIO_WRITE_MULT_BLOCK);

        if (SD_OK != errorstatus)
        {
            return(errorstatus);
        }

        TotalNumberOfBytes = NumberOfBlocks * BlockSize;
        StopCondition = 1;
        SrcBuffer = writebuff;

        SDIO_DataInitStructure.SDIO_DataTimeOut = SD_DATATIMEOUT;
        SDIO_DataInitStructure.SDIO_DataLength = NumberOfBlocks * BlockSize;
        SDIO_DataInitStructure.SDIO_DataBlockSize = (uint32_t) power << 4;
        SDIO_DataInitStructure.SDIO_TransferDir = SDIO_TransferDir_ToCard;
        SDIO_DataInitStructure.SDIO_TransferMode = SDIO_TransferMode_Block;
        SDIO_DataInitStructure.SDIO_DPSM = SDIO_DPSM_Enable;
        SDIO_DataConfig(&SDIO_DataInitStructure);

        if (DeviceMode == SD_POLLING_MODE)
        {
            while (!(SDIO->STA & (SDIO_FLAG_TXUNDERR | SDIO_FLAG_DCRCFAIL | SDIO_FLAG_DATAEND | SDIO_FLAG_DTIMEOUT | SDIO_FLAG_STBITERR)))
            {
                if (SDIO_GetFlagStatus(SDIO_FLAG_TXFIFOHE) != RESET)
                {
                    if (!((TotalNumberOfBytes - bytestransferred) < SD_HALFFIFOBYTES))
                    {
                        for (count = 0; count < SD_HALFFIFO; count++)
                        {
                            SDIO_WriteData(*(tempbuff + count));
                        }
                        tempbuff += SD_HALFFIFO;
                        bytestransferred += SD_HALFFIFOBYTES;
                    }
                    else
                    {
                        restwords = ((TotalNumberOfBytes - bytestransferred) % 4 == 0) ? ((TotalNumberOfBytes - bytestransferred) / 4) :
                                    ((TotalNumberOfBytes - bytestransferred) / 4 + 1);

                        for (count = 0; count < restwords; count++, tempbuff++, bytestransferred += 4)
                        {
                            SDIO_WriteData(*tempbuff);
                        }
                    }
                }
            }

            if (SDIO_GetFlagStatus(SDIO_FLAG_DTIMEOUT) != RESET)
            {
                SDIO_ClearFlag(SDIO_FLAG_DTIMEOUT);
                errorstatus = SD_DATA_TIMEOUT;
                return(errorstatus);
            }
            else if (SDIO_GetFlagStatus(SDIO_FLAG_DCRCFAIL) != RESET)
            {
                SDIO_ClearFlag(SDIO_FLAG_DCRCFAIL);
                errorstatus = SD_DATA_CRC_FAIL;
                return(errorstatus);
            }
            else if (SDIO_GetFlagStatus(SDIO_FLAG_TXUNDERR) != RESET)
            {
                SDIO_ClearFlag(SDIO_FLAG_TXUNDERR);
                errorstatus = SD_TX_UNDERRUN;
                return(errorstatus);
            }
            else if (SDIO_GetFlagStatus(SDIO_FLAG_STBITERR) != RESET)
            {
                SDIO_ClearFlag(SDIO_FLAG_STBITERR);
                errorstatus = SD_START_BIT_ERR;
                return(errorstatus);
            }

            if (SDIO_GetFlagStatus(SDIO_FLAG_DATAEND) != RESET)
            {
                if ((SDIO_STD_CAPACITY_SD_CARD_V1_1 == CardType) || (SDIO_STD_CAPACITY_SD_CARD_V2_0 == CardType) || (SDIO_HIGH_CAPACITY_SD_CARD == CardType))
                {
                    /* Send CMD12 STOP_TRANSMISSION */
                    SDIO_CmdInitStructure.SDIO_Argument = 0x0;
                    SDIO_CmdInitStructure.SDIO_CmdIndex = SDIO_STOP_TRANSMISSION;
                    SDIO_CmdInitStructure.SDIO_Response = SDIO_Response_Short;
                    SDIO_CmdInitStructure.SDIO_Wait = SDIO_Wait_No;
                    SDIO_CmdInitStructure.SDIO_CPSM = SDIO_CPSM_Enable;
                    SDIO_SendCommand(&SDIO_CmdInitStructure);


                    errorstatus = CmdResp1Error(SDIO_STOP_TRANSMISSION);

                    if (errorstatus != SD_OK)
                    {
                        return(errorstatus);
                    }
                }
            }
        }
        else if (DeviceMode == SD_INTERRUPT_MODE)
        {
            SDIO_ITConfig(SDIO_IT_DCRCFAIL | SDIO_IT_DTIMEOUT | SDIO_IT_DATAEND | SDIO_IT_TXFIFOHE | SDIO_IT_TXUNDERR | SDIO_IT_STBITERR, ENABLE);
            while ((TransferEnd == 0) && (TransferError == SD_OK))
            {}
            if (TransferError != SD_OK)
            {
                return(TransferError);
            }
        }
        else if (DeviceMode == SD_DMA_MODE)
        {
            SDIO_ITConfig(SDIO_IT_DCRCFAIL | SDIO_IT_DTIMEOUT | SDIO_IT_DATAEND | SDIO_IT_TXUNDERR | SDIO_IT_STBITERR, ENABLE);
            SDIO_DMACmd(ENABLE);
            DMA_TxConfiguration(writebuff, (NumberOfBlocks * BlockSize));
            while (DMA_GetFlagStatus(DMA2_FLAG_TC4) == RESET)
            {}
            while ((TransferEnd == 0) && (TransferError == SD_OK))
            {}
            if (TransferError != SD_OK)
            {
                return(TransferError);
            }
        }
    }
    /* Clear all the static flags */
    SDIO_ClearFlag(SDIO_STATIC_FLAGS);

    /* Wait till the card is in programming state */
    errorstatus = IsCardProgramming(&cardstate);

    while ((errorstatus == SD_OK) && ((cardstate == SD_CARD_PROGRAMMING) || (cardstate == SD_CARD_RECEIVING)))
    {
        errorstatus = IsCardProgramming(&cardstate);
    }

M
Ming, Bai 已提交
1699
    return(errorstatus);
1700
}
M
Ming, Bai 已提交
1701

1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720
/**
  * @brief  Gets the cuurent data transfer state.
  * @param  None
  * @retval SDTransferState: Data Transfer state.
  *   This value can be:
  *             - SD_NO_TRANSFER: No data transfer is acting
  *             - SD_TRANSFER_IN_PROGRESS: Data transfer is acting
  */
SDTransferState SD_GetTransferState(void)
{
    if (SDIO->STA & (SDIO_FLAG_TXACT | SDIO_FLAG_RXACT))
    {
        return(SD_TRANSFER_IN_PROGRESS);
    }
    else
    {
        return(SD_NO_TRANSFER);
    }
}
M
Ming, Bai 已提交
1721

1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739
/**
  * @brief  Aborts an ongoing data transfer.
  * @param  None
  * @retval SD_Error: SD Card Error code.
  */
SD_Error SD_StopTransfer(void)
{
    SD_Error errorstatus = SD_OK;

    /* Send CMD12 STOP_TRANSMISSION  */
    SDIO_CmdInitStructure.SDIO_Argument = 0x0;
    SDIO_CmdInitStructure.SDIO_CmdIndex = SDIO_STOP_TRANSMISSION;
    SDIO_CmdInitStructure.SDIO_Response = SDIO_Response_Short;
    SDIO_CmdInitStructure.SDIO_Wait = SDIO_Wait_No;
    SDIO_CmdInitStructure.SDIO_CPSM = SDIO_CPSM_Enable;
    SDIO_SendCommand(&SDIO_CmdInitStructure);

    errorstatus = CmdResp1Error(SDIO_STOP_TRANSMISSION);
M
Ming, Bai 已提交
1740 1741

    return(errorstatus);
1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755
}

/**
  * @brief  Allows to erase memory area specified for the given card.
  * @param  startaddr: the start address.
  * @param  endaddr: the end address.
  * @retval SD_Error: SD Card Error code.
  */
SD_Error SD_Erase(uint32_t startaddr, uint32_t endaddr)
{
    SD_Error errorstatus = SD_OK;
    uint32_t delay = 0;
    __IO uint32_t maxdelay = 0;
    uint8_t cardstate = 0;
M
Ming, Bai 已提交
1756

1757 1758
    /* Check if the card coomnd class supports erase command */
    if (((CSD_Tab[1] >> 20) & SD_CCCC_ERASE) == 0)
M
Ming, Bai 已提交
1759
    {
1760 1761 1762 1763 1764 1765 1766 1767 1768 1769
        errorstatus = SD_REQUEST_NOT_APPLICABLE;
        return(errorstatus);
    }

    maxdelay = 72000 / ((SDIO->CLKCR & 0xFF) + 2);

    if (SDIO_GetResponse(SDIO_RESP1) & SD_CARD_LOCKED)
    {
        errorstatus = SD_LOCK_UNLOCK_FAILED;
        return(errorstatus);
M
Ming, Bai 已提交
1770 1771
    }

1772 1773 1774 1775 1776 1777 1778
    if (CardType == SDIO_HIGH_CAPACITY_SD_CARD)
    {
        startaddr /= 512;
        endaddr /= 512;
    }

    /* According to sd-card spec 1.0 ERASE_GROUP_START (CMD32) and erase_group_end(CMD33) */
M
Ming, Bai 已提交
1779 1780
    if ((SDIO_STD_CAPACITY_SD_CARD_V1_1 == CardType) || (SDIO_STD_CAPACITY_SD_CARD_V2_0 == CardType) || (SDIO_HIGH_CAPACITY_SD_CARD == CardType))
    {
1781 1782 1783 1784 1785 1786 1787
        /* Send CMD32 SD_ERASE_GRP_START with argument as addr  */
        SDIO_CmdInitStructure.SDIO_Argument = startaddr;
        SDIO_CmdInitStructure.SDIO_CmdIndex = SDIO_SD_ERASE_GRP_START;
        SDIO_CmdInitStructure.SDIO_Response = SDIO_Response_Short;
        SDIO_CmdInitStructure.SDIO_Wait = SDIO_Wait_No;
        SDIO_CmdInitStructure.SDIO_CPSM = SDIO_CPSM_Enable;
        SDIO_SendCommand(&SDIO_CmdInitStructure);
M
Ming, Bai 已提交
1788

1789 1790 1791 1792 1793
        errorstatus = CmdResp1Error(SDIO_SD_ERASE_GRP_START);
        if (errorstatus != SD_OK)
        {
            return(errorstatus);
        }
M
Ming, Bai 已提交
1794

1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818
        /* Send CMD33 SD_ERASE_GRP_END with argument as addr  */
        SDIO_CmdInitStructure.SDIO_Argument = endaddr;
        SDIO_CmdInitStructure.SDIO_CmdIndex = SDIO_SD_ERASE_GRP_END;
        SDIO_CmdInitStructure.SDIO_Response = SDIO_Response_Short;
        SDIO_CmdInitStructure.SDIO_Wait = SDIO_Wait_No;
        SDIO_CmdInitStructure.SDIO_CPSM = SDIO_CPSM_Enable;
        SDIO_SendCommand(&SDIO_CmdInitStructure);

        errorstatus = CmdResp1Error(SDIO_SD_ERASE_GRP_END);
        if (errorstatus != SD_OK)
        {
            return(errorstatus);
        }
    }

    /* Send CMD38 ERASE */
    SDIO_CmdInitStructure.SDIO_Argument = 0;
    SDIO_CmdInitStructure.SDIO_CmdIndex = SDIO_ERASE;
    SDIO_CmdInitStructure.SDIO_Response = SDIO_Response_Short;
    SDIO_CmdInitStructure.SDIO_Wait = SDIO_Wait_No;
    SDIO_CmdInitStructure.SDIO_CPSM = SDIO_CPSM_Enable;
    SDIO_SendCommand(&SDIO_CmdInitStructure);

    errorstatus = CmdResp1Error(SDIO_ERASE);
M
Ming, Bai 已提交
1819

1820 1821
    if (errorstatus != SD_OK)
    {
M
Ming, Bai 已提交
1822
        return(errorstatus);
1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851
    }

    for (delay = 0; delay < maxdelay; delay++)
    {}

    /* Wait till the card is in programming state */
    errorstatus = IsCardProgramming(&cardstate);

    while ((errorstatus == SD_OK) && ((SD_CARD_PROGRAMMING == cardstate) || (SD_CARD_RECEIVING == cardstate)))
    {
        errorstatus = IsCardProgramming(&cardstate);
    }

    return(errorstatus);
}

/**
  * @brief  Returns the current card's status.
  * @param  pcardstatus: pointer to the buffer that will contain the SD
  *   card status (Card Status register).
  * @retval SD_Error: SD Card Error code.
  */
SD_Error SD_SendStatus(uint32_t *pcardstatus)
{
    SD_Error errorstatus = SD_OK;

    if (pcardstatus == NULL)
    {
        errorstatus = SD_INVALID_PARAMETER;
M
Ming, Bai 已提交
1852 1853 1854
        return(errorstatus);
    }

1855 1856
    SDIO_CmdInitStructure.SDIO_Argument = (uint32_t) RCA << 16;
    SDIO_CmdInitStructure.SDIO_CmdIndex = SDIO_SEND_STATUS;
M
Ming, Bai 已提交
1857 1858 1859 1860 1861 1862
    SDIO_CmdInitStructure.SDIO_Response = SDIO_Response_Short;
    SDIO_CmdInitStructure.SDIO_Wait = SDIO_Wait_No;
    SDIO_CmdInitStructure.SDIO_CPSM = SDIO_CPSM_Enable;
    SDIO_SendCommand(&SDIO_CmdInitStructure);


1863 1864 1865
    errorstatus = CmdResp1Error(SDIO_SEND_STATUS);

    if (errorstatus != SD_OK)
M
Ming, Bai 已提交
1866
    {
1867
        return(errorstatus);
M
Ming, Bai 已提交
1868 1869
    }

1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919
    *pcardstatus = SDIO_GetResponse(SDIO_RESP1);

    return(errorstatus);
}

/**
  * @brief  Returns the current SD card's status.
  * @param  psdstatus: pointer to the buffer that will contain the SD
  *   card status (SD Status register).
  * @retval SD_Error: SD Card Error code.
  */
SD_Error SD_SendSDStatus(uint32_t *psdstatus)
{
    SD_Error errorstatus = SD_OK;
    uint32_t count = 0;

    if (SDIO_GetResponse(SDIO_RESP1) & SD_CARD_LOCKED)
    {
        errorstatus = SD_LOCK_UNLOCK_FAILED;
        return(errorstatus);
    }

    /* Set block size for card if it is not equal to current block size for card. */
    SDIO_CmdInitStructure.SDIO_Argument = 64;
    SDIO_CmdInitStructure.SDIO_CmdIndex = SDIO_SET_BLOCKLEN;
    SDIO_CmdInitStructure.SDIO_Response = SDIO_Response_Short;
    SDIO_CmdInitStructure.SDIO_Wait = SDIO_Wait_No;
    SDIO_CmdInitStructure.SDIO_CPSM = SDIO_CPSM_Enable;
    SDIO_SendCommand(&SDIO_CmdInitStructure);

    errorstatus = CmdResp1Error(SDIO_SET_BLOCKLEN);

    if (errorstatus != SD_OK)
    {
        return(errorstatus);
    }

    /* CMD55 */
    SDIO_CmdInitStructure.SDIO_Argument = (uint32_t) RCA << 16;
    SDIO_CmdInitStructure.SDIO_CmdIndex = SDIO_APP_CMD;
    SDIO_CmdInitStructure.SDIO_Response = SDIO_Response_Short;
    SDIO_CmdInitStructure.SDIO_Wait = SDIO_Wait_No;
    SDIO_CmdInitStructure.SDIO_CPSM = SDIO_CPSM_Enable;
    SDIO_SendCommand(&SDIO_CmdInitStructure);
    errorstatus = CmdResp1Error(SDIO_APP_CMD);

    if (errorstatus != SD_OK)
    {
        return(errorstatus);
    }
M
Ming, Bai 已提交
1920 1921

    SDIO_DataInitStructure.SDIO_DataTimeOut = SD_DATATIMEOUT;
1922 1923 1924
    SDIO_DataInitStructure.SDIO_DataLength = 64;
    SDIO_DataInitStructure.SDIO_DataBlockSize = SDIO_DataBlockSize_64b;
    SDIO_DataInitStructure.SDIO_TransferDir = SDIO_TransferDir_ToSDIO;
M
Ming, Bai 已提交
1925 1926 1927 1928
    SDIO_DataInitStructure.SDIO_TransferMode = SDIO_TransferMode_Block;
    SDIO_DataInitStructure.SDIO_DPSM = SDIO_DPSM_Enable;
    SDIO_DataConfig(&SDIO_DataInitStructure);

1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943
    /* Send ACMD13 SD_APP_STAUS  with argument as card's RCA.*/
    SDIO_CmdInitStructure.SDIO_Argument = 0;
    SDIO_CmdInitStructure.SDIO_CmdIndex = SDIO_SD_APP_STAUS;
    SDIO_CmdInitStructure.SDIO_Response = SDIO_Response_Short;
    SDIO_CmdInitStructure.SDIO_Wait = SDIO_Wait_No;
    SDIO_CmdInitStructure.SDIO_CPSM = SDIO_CPSM_Enable;
    SDIO_SendCommand(&SDIO_CmdInitStructure);
    errorstatus = CmdResp1Error(SDIO_SD_APP_STAUS);

    if (errorstatus != SD_OK)
    {
        return(errorstatus);
    }

    while (!(SDIO->STA &(SDIO_FLAG_RXOVERR | SDIO_FLAG_DCRCFAIL | SDIO_FLAG_DTIMEOUT | SDIO_FLAG_DBCKEND | SDIO_FLAG_STBITERR)))
M
Ming, Bai 已提交
1944
    {
1945
        if (SDIO_GetFlagStatus(SDIO_FLAG_RXFIFOHF) != RESET)
M
Ming, Bai 已提交
1946
        {
1947
            for (count = 0; count < 8; count++)
M
Ming, Bai 已提交
1948
            {
1949
                *(psdstatus + count) = SDIO_ReadData();
M
Ming, Bai 已提交
1950
            }
1951
            psdstatus += 8;
M
Ming, Bai 已提交
1952
        }
1953
    }
M
Ming, Bai 已提交
1954

1955 1956
    if (SDIO_GetFlagStatus(SDIO_FLAG_DTIMEOUT) != RESET)
    {
M
Ming, Bai 已提交
1957 1958 1959
        SDIO_ClearFlag(SDIO_FLAG_DTIMEOUT);
        errorstatus = SD_DATA_TIMEOUT;
        return(errorstatus);
1960 1961 1962
    }
    else if (SDIO_GetFlagStatus(SDIO_FLAG_DCRCFAIL) != RESET)
    {
M
Ming, Bai 已提交
1963 1964 1965
        SDIO_ClearFlag(SDIO_FLAG_DCRCFAIL);
        errorstatus = SD_DATA_CRC_FAIL;
        return(errorstatus);
1966 1967 1968 1969 1970
    }
    else if (SDIO_GetFlagStatus(SDIO_FLAG_RXOVERR) != RESET)
    {
        SDIO_ClearFlag(SDIO_FLAG_RXOVERR);
        errorstatus = SD_RX_OVERRUN;
M
Ming, Bai 已提交
1971
        return(errorstatus);
1972 1973 1974
    }
    else if (SDIO_GetFlagStatus(SDIO_FLAG_STBITERR) != RESET)
    {
M
Ming, Bai 已提交
1975 1976 1977
        SDIO_ClearFlag(SDIO_FLAG_STBITERR);
        errorstatus = SD_START_BIT_ERR;
        return(errorstatus);
1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053
    }

    while (SDIO_GetFlagStatus(SDIO_FLAG_RXDAVL) != RESET)
    {
        *psdstatus = SDIO_ReadData();
        psdstatus++;
    }

    /* Clear all the static status flags*/
    SDIO_ClearFlag(SDIO_STATIC_FLAGS);
    psdstatus -= 16;
    for (count = 0; count < 16; count++)
    {
        psdstatus[count] = ((psdstatus[count] & SD_0TO7BITS) << 24) |((psdstatus[count] & SD_8TO15BITS) << 8) |
                           ((psdstatus[count] & SD_16TO23BITS) >> 8) |((psdstatus[count] & SD_24TO31BITS) >> 24);
    }
    return(errorstatus);
}

/**
  * @brief  Allows to process all the interrupts that are high.
  * @param  None
  * @retval SD_Error: SD Card Error code.
  */
SD_Error SD_ProcessIRQSrc(void)
{
    uint32_t count = 0, restwords = 0;

    if (DeviceMode == SD_INTERRUPT_MODE)
    {
        if (SDIO_GetITStatus(SDIO_IT_RXFIFOHF) != RESET)
        {
            for (count = 0; count < SD_HALFFIFO; count++)
            {
                *(DestBuffer + count) = SDIO_ReadData();
            }
            DestBuffer += SD_HALFFIFO;
            NumberOfBytes += SD_HALFFIFOBYTES;
        }
        else if (SDIO_GetITStatus(SDIO_IT_TXFIFOHE) != RESET)
        {
            if ((TotalNumberOfBytes - NumberOfBytes) < SD_HALFFIFOBYTES)
            {
                restwords = ((TotalNumberOfBytes - NumberOfBytes) %  4 == 0) ?
                            ((TotalNumberOfBytes - NumberOfBytes) / 4) :
                            ((TotalNumberOfBytes - NumberOfBytes) / 4 + 1);

                for (count = 0; count < restwords;  count++, SrcBuffer++, NumberOfBytes += 4)
                {
                    SDIO_WriteData(*SrcBuffer);
                }
            }
            else
            {
                for (count = 0; count < SD_HALFFIFO; count++)
                {
                    SDIO_WriteData(*(SrcBuffer + count));
                }

                SrcBuffer += SD_HALFFIFO;
                NumberOfBytes += SD_HALFFIFOBYTES;
            }
        }
    }

    if (SDIO_GetITStatus(SDIO_IT_DATAEND) != RESET)
    {
        if (DeviceMode != SD_DMA_MODE)
        {
            while ((SDIO_GetFlagStatus(SDIO_FLAG_RXDAVL) != RESET)  &&  (NumberOfBytes < TotalNumberOfBytes))
            {
                *DestBuffer = SDIO_ReadData();
                DestBuffer++;
                NumberOfBytes += 4;
            }
        }
M
Ming, Bai 已提交
2054

2055
        if (StopCondition == 1)
M
Ming, Bai 已提交
2056
        {
2057 2058 2059 2060 2061
            TransferError = SD_StopTransfer();
        }
        else
        {
            TransferError = SD_OK;
M
Ming, Bai 已提交
2062
        }
2063 2064 2065 2066 2067 2068 2069
        SDIO_ClearITPendingBit(SDIO_IT_DATAEND);
        SDIO_ITConfig(SDIO_IT_DCRCFAIL | SDIO_IT_DTIMEOUT | SDIO_IT_DATAEND |
                      SDIO_IT_TXFIFOHE | SDIO_IT_RXFIFOHF | SDIO_IT_TXUNDERR |
                      SDIO_IT_RXOVERR | SDIO_IT_STBITERR, DISABLE);
        TransferEnd = 1;
        NumberOfBytes = 0;
        return(TransferError);
M
Ming, Bai 已提交
2070
    }
2071 2072

    if (SDIO_GetITStatus(SDIO_IT_DCRCFAIL) != RESET)
M
Ming, Bai 已提交
2073
    {
2074 2075 2076 2077 2078 2079 2080
        SDIO_ClearITPendingBit(SDIO_IT_DCRCFAIL);
        SDIO_ITConfig(SDIO_IT_DCRCFAIL | SDIO_IT_DTIMEOUT | SDIO_IT_DATAEND |
                      SDIO_IT_TXFIFOHE | SDIO_IT_RXFIFOHF | SDIO_IT_TXUNDERR |
                      SDIO_IT_RXOVERR | SDIO_IT_STBITERR, DISABLE);
        NumberOfBytes = 0;
        TransferError = SD_DATA_CRC_FAIL;
        return(SD_DATA_CRC_FAIL);
M
Ming, Bai 已提交
2081
    }
2082 2083

    if (SDIO_GetITStatus(SDIO_IT_DTIMEOUT) != RESET)
M
Ming, Bai 已提交
2084
    {
2085 2086 2087 2088 2089 2090 2091
        SDIO_ClearITPendingBit(SDIO_IT_DTIMEOUT);
        SDIO_ITConfig(SDIO_IT_DCRCFAIL | SDIO_IT_DTIMEOUT | SDIO_IT_DATAEND |
                      SDIO_IT_TXFIFOHE | SDIO_IT_RXFIFOHF | SDIO_IT_TXUNDERR |
                      SDIO_IT_RXOVERR | SDIO_IT_STBITERR, DISABLE);
        NumberOfBytes = 0;
        TransferError = SD_DATA_TIMEOUT;
        return(SD_DATA_TIMEOUT);
M
Ming, Bai 已提交
2092 2093
    }

2094 2095 2096 2097 2098 2099 2100 2101 2102 2103
    if (SDIO_GetITStatus(SDIO_IT_RXOVERR) != RESET)
    {
        SDIO_ClearITPendingBit(SDIO_IT_RXOVERR);
        SDIO_ITConfig(SDIO_IT_DCRCFAIL | SDIO_IT_DTIMEOUT | SDIO_IT_DATAEND |
                      SDIO_IT_TXFIFOHE | SDIO_IT_RXFIFOHF | SDIO_IT_TXUNDERR |
                      SDIO_IT_RXOVERR | SDIO_IT_STBITERR, DISABLE);
        NumberOfBytes = 0;
        TransferError = SD_RX_OVERRUN;
        return(SD_RX_OVERRUN);
    }
M
Ming, Bai 已提交
2104

2105 2106 2107 2108 2109 2110 2111 2112 2113 2114
    if (SDIO_GetITStatus(SDIO_IT_TXUNDERR) != RESET)
    {
        SDIO_ClearITPendingBit(SDIO_IT_TXUNDERR);
        SDIO_ITConfig(SDIO_IT_DCRCFAIL | SDIO_IT_DTIMEOUT | SDIO_IT_DATAEND |
                      SDIO_IT_TXFIFOHE | SDIO_IT_RXFIFOHF | SDIO_IT_TXUNDERR |
                      SDIO_IT_RXOVERR | SDIO_IT_STBITERR, DISABLE);
        NumberOfBytes = 0;
        TransferError = SD_TX_UNDERRUN;
        return(SD_TX_UNDERRUN);
    }
M
Ming, Bai 已提交
2115

2116 2117 2118 2119 2120 2121 2122 2123 2124 2125
    if (SDIO_GetITStatus(SDIO_IT_STBITERR) != RESET)
    {
        SDIO_ClearITPendingBit(SDIO_IT_STBITERR);
        SDIO_ITConfig(SDIO_IT_DCRCFAIL | SDIO_IT_DTIMEOUT | SDIO_IT_DATAEND |
                      SDIO_IT_TXFIFOHE | SDIO_IT_RXFIFOHF | SDIO_IT_TXUNDERR |
                      SDIO_IT_RXOVERR | SDIO_IT_STBITERR, DISABLE);
        NumberOfBytes = 0;
        TransferError = SD_START_BIT_ERR;
        return(SD_START_BIT_ERR);
    }
M
Ming, Bai 已提交
2126

2127
    return(SD_OK);
M
Ming, Bai 已提交
2128 2129 2130
}

/**
2131
  * @brief  Checks for error conditions for CMD0.
M
Ming, Bai 已提交
2132 2133 2134
  * @param  None
  * @retval SD_Error: SD Card Error code.
  */
2135
static SD_Error CmdError(void)
M
Ming, Bai 已提交
2136
{
2137 2138 2139 2140 2141 2142 2143 2144 2145
    SD_Error errorstatus = SD_OK;
    uint32_t timeout;

    timeout = SDIO_CMD0TIMEOUT; /* 10000 */

    while ((timeout > 0) && (SDIO_GetFlagStatus(SDIO_FLAG_CMDSENT) == RESET))
    {
        timeout--;
    }
M
Ming, Bai 已提交
2146

2147 2148 2149 2150 2151
    if (timeout == 0)
    {
        errorstatus = SD_CMD_RSP_TIMEOUT;
        return(errorstatus);
    }
M
Ming, Bai 已提交
2152

2153 2154
    /* Clear all the static flags */
    SDIO_ClearFlag(SDIO_STATIC_FLAGS);
M
Ming, Bai 已提交
2155

2156
    return(errorstatus);
M
Ming, Bai 已提交
2157 2158 2159
}

/**
2160 2161 2162
  * @brief  Checks for error conditions for R7.
  *   response.
  * @param  None
M
Ming, Bai 已提交
2163 2164
  * @retval SD_Error: SD Card Error code.
  */
2165
static SD_Error CmdResp7Error(void)
M
Ming, Bai 已提交
2166
{
2167 2168 2169
    SD_Error errorstatus = SD_OK;
    uint32_t status;
    uint32_t timeout = SDIO_CMD0TIMEOUT;
M
Ming, Bai 已提交
2170

2171
    status = SDIO->STA;
M
Ming, Bai 已提交
2172

2173
    while (!(status & (SDIO_FLAG_CCRCFAIL | SDIO_FLAG_CMDREND | SDIO_FLAG_CTIMEOUT)) && (timeout > 0))
M
Ming, Bai 已提交
2174
    {
2175 2176
        timeout--;
        status = SDIO->STA;
M
Ming, Bai 已提交
2177 2178
    }

2179
    if ((timeout == 0) || (status & SDIO_FLAG_CTIMEOUT))
M
Ming, Bai 已提交
2180
    {
2181 2182 2183 2184
        /* Card is not V2.0 complient or card does not support the set voltage range */
        errorstatus = SD_CMD_RSP_TIMEOUT;
        SDIO_ClearFlag(SDIO_FLAG_CTIMEOUT);
        return(errorstatus);
M
Ming, Bai 已提交
2185 2186
    }

2187 2188 2189 2190 2191 2192 2193
    if (status & SDIO_FLAG_CMDREND)
    {
        /* Card is SD V2.0 compliant */
        errorstatus = SD_OK;
        SDIO_ClearFlag(SDIO_FLAG_CMDREND);
        return(errorstatus);
    }
M
Ming, Bai 已提交
2194 2195 2196 2197
    return(errorstatus);
}

/**
2198 2199 2200
  * @brief  Checks for error conditions for R1.
  *   response
  * @param  cmd: The sent command index.
M
Ming, Bai 已提交
2201 2202
  * @retval SD_Error: SD Card Error code.
  */
2203
static SD_Error CmdResp1Error(uint8_t cmd)
M
Ming, Bai 已提交
2204
{
2205 2206 2207
    SD_Error errorstatus = SD_OK;
    uint32_t status;
    uint32_t response_r1;
M
Ming, Bai 已提交
2208

2209
    status = SDIO->STA;
M
Ming, Bai 已提交
2210

2211 2212 2213 2214
    while (!(status & (SDIO_FLAG_CCRCFAIL | SDIO_FLAG_CMDREND | SDIO_FLAG_CTIMEOUT)))
    {
        status = SDIO->STA;
    }
M
Ming, Bai 已提交
2215

2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227
    if (status & SDIO_FLAG_CTIMEOUT)
    {
        errorstatus = SD_CMD_RSP_TIMEOUT;
        SDIO_ClearFlag(SDIO_FLAG_CTIMEOUT);
        return(errorstatus);
    }
    else if (status & SDIO_FLAG_CCRCFAIL)
    {
        errorstatus = SD_CMD_CRC_FAIL;
        SDIO_ClearFlag(SDIO_FLAG_CCRCFAIL);
        return(errorstatus);
    }
M
Ming, Bai 已提交
2228

2229 2230 2231 2232 2233 2234
    /* Check response received is of desired command */
    if (SDIO_GetCommandResponse() != cmd)
    {
        errorstatus = SD_ILLEGAL_CMD;
        return(errorstatus);
    }
M
Ming, Bai 已提交
2235

2236 2237
    /* Clear all the static flags */
    SDIO_ClearFlag(SDIO_STATIC_FLAGS);
M
Ming, Bai 已提交
2238

2239 2240
    /* We have received response, retrieve it for analysis  */
    response_r1 = SDIO_GetResponse(SDIO_RESP1);
M
Ming, Bai 已提交
2241

2242 2243 2244 2245
    if ((response_r1 & SD_OCR_ERRORBITS) == SD_ALLZERO)
    {
        return(errorstatus);
    }
M
Ming, Bai 已提交
2246

2247 2248 2249 2250
    if (response_r1 & SD_OCR_ADDR_OUT_OF_RANGE)
    {
        return(SD_ADDR_OUT_OF_RANGE);
    }
M
Ming, Bai 已提交
2251

2252 2253 2254 2255
    if (response_r1 & SD_OCR_ADDR_MISALIGNED)
    {
        return(SD_ADDR_MISALIGNED);
    }
M
Ming, Bai 已提交
2256

2257 2258 2259 2260
    if (response_r1 & SD_OCR_BLOCK_LEN_ERR)
    {
        return(SD_BLOCK_LEN_ERR);
    }
M
Ming, Bai 已提交
2261

2262 2263 2264 2265
    if (response_r1 & SD_OCR_ERASE_SEQ_ERR)
    {
        return(SD_ERASE_SEQ_ERR);
    }
M
Ming, Bai 已提交
2266

2267 2268 2269 2270
    if (response_r1 & SD_OCR_BAD_ERASE_PARAM)
    {
        return(SD_BAD_ERASE_PARAM);
    }
M
Ming, Bai 已提交
2271

2272
    if (response_r1 & SD_OCR_WRITE_PROT_VIOLATION)
M
Ming, Bai 已提交
2273
    {
2274
        return(SD_WRITE_PROT_VIOLATION);
M
Ming, Bai 已提交
2275 2276
    }

2277 2278 2279 2280
    if (response_r1 & SD_OCR_LOCK_UNLOCK_FAILED)
    {
        return(SD_LOCK_UNLOCK_FAILED);
    }
M
Ming, Bai 已提交
2281

2282 2283 2284 2285
    if (response_r1 & SD_OCR_COM_CRC_FAILED)
    {
        return(SD_COM_CRC_FAILED);
    }
M
Ming, Bai 已提交
2286

2287
    if (response_r1 & SD_OCR_ILLEGAL_CMD)
M
Ming, Bai 已提交
2288
    {
2289
        return(SD_ILLEGAL_CMD);
M
Ming, Bai 已提交
2290
    }
2291 2292

    if (response_r1 & SD_OCR_CARD_ECC_FAILED)
M
Ming, Bai 已提交
2293
    {
2294 2295
        return(SD_CARD_ECC_FAILED);
    }
M
Ming, Bai 已提交
2296

2297 2298 2299 2300 2301 2302 2303 2304 2305
    if (response_r1 & SD_OCR_CC_ERROR)
    {
        return(SD_CC_ERROR);
    }

    if (response_r1 & SD_OCR_GENERAL_UNKNOWN_ERROR)
    {
        return(SD_GENERAL_UNKNOWN_ERROR);
    }
M
Ming, Bai 已提交
2306

2307 2308 2309
    if (response_r1 & SD_OCR_STREAM_READ_UNDERRUN)
    {
        return(SD_STREAM_READ_UNDERRUN);
M
Ming, Bai 已提交
2310 2311
    }

2312
    if (response_r1 & SD_OCR_STREAM_WRITE_OVERRUN)
M
Ming, Bai 已提交
2313
    {
2314
        return(SD_STREAM_WRITE_OVERRUN);
M
Ming, Bai 已提交
2315 2316
    }

2317
    if (response_r1 & SD_OCR_CID_CSD_OVERWRIETE)
M
Ming, Bai 已提交
2318
    {
2319
        return(SD_CID_CSD_OVERWRITE);
M
Ming, Bai 已提交
2320
    }
2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337

    if (response_r1 & SD_OCR_WP_ERASE_SKIP)
    {
        return(SD_WP_ERASE_SKIP);
    }

    if (response_r1 & SD_OCR_CARD_ECC_DISABLED)
    {
        return(SD_CARD_ECC_DISABLED);
    }

    if (response_r1 & SD_OCR_ERASE_RESET)
    {
        return(SD_ERASE_RESET);
    }

    if (response_r1 & SD_OCR_AKE_SEQ_ERROR)
M
Ming, Bai 已提交
2338
    {
2339 2340 2341
        return(SD_AKE_SEQ_ERROR);
    }
    return(errorstatus);
M
Ming, Bai 已提交
2342 2343 2344
}

/**
2345 2346
  * @brief  Checks for error conditions for R3 (OCR).
  *   response.
M
Ming, Bai 已提交
2347 2348 2349
  * @param  None
  * @retval SD_Error: SD Card Error code.
  */
2350
static SD_Error CmdResp3Error(void)
M
Ming, Bai 已提交
2351
{
2352 2353
    SD_Error errorstatus = SD_OK;
    uint32_t status;
M
Ming, Bai 已提交
2354

2355
    status = SDIO->STA;
M
Ming, Bai 已提交
2356

2357 2358 2359 2360
    while (!(status & (SDIO_FLAG_CCRCFAIL | SDIO_FLAG_CMDREND | SDIO_FLAG_CTIMEOUT)))
    {
        status = SDIO->STA;
    }
M
Ming, Bai 已提交
2361

2362 2363 2364 2365 2366 2367 2368 2369
    if (status & SDIO_FLAG_CTIMEOUT)
    {
        errorstatus = SD_CMD_RSP_TIMEOUT;
        SDIO_ClearFlag(SDIO_FLAG_CTIMEOUT);
        return(errorstatus);
    }
    /* Clear all the static flags */
    SDIO_ClearFlag(SDIO_STATIC_FLAGS);
M
Ming, Bai 已提交
2370 2371 2372 2373
    return(errorstatus);
}

/**
2374
  * @brief  Checks for error conditions for R2 (CID or CSD).
M
Ming, Bai 已提交
2375 2376 2377 2378
  *   response.
  * @param  None
  * @retval SD_Error: SD Card Error code.
  */
2379
static SD_Error CmdResp2Error(void)
M
Ming, Bai 已提交
2380
{
2381 2382
    SD_Error errorstatus = SD_OK;
    uint32_t status;
M
Ming, Bai 已提交
2383 2384 2385

    status = SDIO->STA;

2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405
    while (!(status & (SDIO_FLAG_CCRCFAIL | SDIO_FLAG_CTIMEOUT | SDIO_FLAG_CMDREND)))
    {
        status = SDIO->STA;
    }

    if (status & SDIO_FLAG_CTIMEOUT)
    {
        errorstatus = SD_CMD_RSP_TIMEOUT;
        SDIO_ClearFlag(SDIO_FLAG_CTIMEOUT);
        return(errorstatus);
    }
    else if (status & SDIO_FLAG_CCRCFAIL)
    {
        errorstatus = SD_CMD_CRC_FAIL;
        SDIO_ClearFlag(SDIO_FLAG_CCRCFAIL);
        return(errorstatus);
    }

    /* Clear all the static flags */
    SDIO_ClearFlag(SDIO_STATIC_FLAGS);
M
Ming, Bai 已提交
2406 2407 2408 2409 2410

    return(errorstatus);
}

/**
2411 2412
  * @brief  Checks for error conditions for R6 (RCA).
  *   response.
M
Ming, Bai 已提交
2413
  * @param  cmd: The sent command index.
2414 2415
  * @param  prca: pointer to the variable that will contain the SD
  *   card relative address RCA.
M
Ming, Bai 已提交
2416 2417
  * @retval SD_Error: SD Card Error code.
  */
2418
static SD_Error CmdResp6Error(uint8_t cmd, uint16_t *prca)
M
Ming, Bai 已提交
2419
{
2420 2421 2422
    SD_Error errorstatus = SD_OK;
    uint32_t status;
    uint32_t response_r1;
M
Ming, Bai 已提交
2423 2424 2425

    status = SDIO->STA;

2426 2427 2428 2429
    while (!(status & (SDIO_FLAG_CCRCFAIL | SDIO_FLAG_CTIMEOUT | SDIO_FLAG_CMDREND)))
    {
        status = SDIO->STA;
    }
M
Ming, Bai 已提交
2430

2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442
    if (status & SDIO_FLAG_CTIMEOUT)
    {
        errorstatus = SD_CMD_RSP_TIMEOUT;
        SDIO_ClearFlag(SDIO_FLAG_CTIMEOUT);
        return(errorstatus);
    }
    else if (status & SDIO_FLAG_CCRCFAIL)
    {
        errorstatus = SD_CMD_CRC_FAIL;
        SDIO_ClearFlag(SDIO_FLAG_CCRCFAIL);
        return(errorstatus);
    }
M
Ming, Bai 已提交
2443

2444 2445 2446 2447 2448 2449
    /* Check response received is of desired command */
    if (SDIO_GetCommandResponse() != cmd)
    {
        errorstatus = SD_ILLEGAL_CMD;
        return(errorstatus);
    }
M
Ming, Bai 已提交
2450

2451 2452
    /* Clear all the static flags */
    SDIO_ClearFlag(SDIO_STATIC_FLAGS);
M
Ming, Bai 已提交
2453

2454 2455
    /* We have received response, retrieve it.  */
    response_r1 = SDIO_GetResponse(SDIO_RESP1);
M
Ming, Bai 已提交
2456

2457 2458 2459 2460 2461
    if (SD_ALLZERO == (response_r1 & (SD_R6_GENERAL_UNKNOWN_ERROR | SD_R6_ILLEGAL_CMD | SD_R6_COM_CRC_FAILED)))
    {
        *prca = (uint16_t) (response_r1 >> 16);
        return(errorstatus);
    }
M
Ming, Bai 已提交
2462

2463 2464 2465 2466
    if (response_r1 & SD_R6_GENERAL_UNKNOWN_ERROR)
    {
        return(SD_GENERAL_UNKNOWN_ERROR);
    }
M
Ming, Bai 已提交
2467

2468 2469 2470 2471 2472 2473 2474 2475 2476
    if (response_r1 & SD_R6_ILLEGAL_CMD)
    {
        return(SD_ILLEGAL_CMD);
    }

    if (response_r1 & SD_R6_COM_CRC_FAILED)
    {
        return(SD_COM_CRC_FAILED);
    }
M
Ming, Bai 已提交
2477 2478 2479

    return(errorstatus);
}
2480 2481 2482 2483 2484

/**
  * @brief  Enables or disables the SDIO wide bus mode.
  * @param  NewState: new state of the SDIO wide bus mode.
  *   This parameter can be: ENABLE or DISABLE.
M
Ming, Bai 已提交
2485 2486
  * @retval SD_Error: SD Card Error code.
  */
2487
static SD_Error SDEnWideBus(FunctionalState NewState)
M
Ming, Bai 已提交
2488
{
2489
    SD_Error errorstatus = SD_OK;
M
Ming, Bai 已提交
2490

2491
    uint32_t scr[2] = {0, 0};
M
Ming, Bai 已提交
2492

2493 2494 2495 2496 2497
    if (SDIO_GetResponse(SDIO_RESP1) & SD_CARD_LOCKED)
    {
        errorstatus = SD_LOCK_UNLOCK_FAILED;
        return(errorstatus);
    }
M
Ming, Bai 已提交
2498

2499 2500
    /* Get SCR Register */
    errorstatus = FindSCR(RCA, scr);
M
Ming, Bai 已提交
2501

2502 2503 2504 2505
    if (errorstatus != SD_OK)
    {
        return(errorstatus);
    }
M
Ming, Bai 已提交
2506

2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519
    /* If wide bus operation to be enabled */
    if (NewState == ENABLE)
    {
        /* If requested card supports wide bus operation */
        if ((scr[1] & SD_WIDE_BUS_SUPPORT) != SD_ALLZERO)
        {
            /* Send CMD55 APP_CMD with argument as card's RCA.*/
            SDIO_CmdInitStructure.SDIO_Argument = (uint32_t) RCA << 16;
            SDIO_CmdInitStructure.SDIO_CmdIndex = SDIO_APP_CMD;
            SDIO_CmdInitStructure.SDIO_Response = SDIO_Response_Short;
            SDIO_CmdInitStructure.SDIO_Wait = SDIO_Wait_No;
            SDIO_CmdInitStructure.SDIO_CPSM = SDIO_CPSM_Enable;
            SDIO_SendCommand(&SDIO_CmdInitStructure);
M
Ming, Bai 已提交
2520

2521
            errorstatus = CmdResp1Error(SDIO_APP_CMD);
M
Ming, Bai 已提交
2522

2523 2524 2525 2526
            if (errorstatus != SD_OK)
            {
                return(errorstatus);
            }
M
Ming, Bai 已提交
2527

2528 2529 2530 2531 2532 2533 2534
            /* Send ACMD6 APP_CMD with argument as 2 for wide bus mode */
            SDIO_CmdInitStructure.SDIO_Argument = 0x2;
            SDIO_CmdInitStructure.SDIO_CmdIndex = SDIO_APP_SD_SET_BUSWIDTH;
            SDIO_CmdInitStructure.SDIO_Response = SDIO_Response_Short;
            SDIO_CmdInitStructure.SDIO_Wait = SDIO_Wait_No;
            SDIO_CmdInitStructure.SDIO_CPSM = SDIO_CPSM_Enable;
            SDIO_SendCommand(&SDIO_CmdInitStructure);
M
Ming, Bai 已提交
2535

2536
            errorstatus = CmdResp1Error(SDIO_APP_SD_SET_BUSWIDTH);
M
Ming, Bai 已提交
2537

2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561
            if (errorstatus != SD_OK)
            {
                return(errorstatus);
            }
            return(errorstatus);
        }
        else
        {
            errorstatus = SD_REQUEST_NOT_APPLICABLE;
            return(errorstatus);
        }
    }   /* If wide bus operation to be disabled */
    else
    {
        /* If requested card supports 1 bit mode operation */
        if ((scr[1] & SD_SINGLE_BUS_SUPPORT) != SD_ALLZERO)
        {
            /* Send CMD55 APP_CMD with argument as card's RCA.*/
            SDIO_CmdInitStructure.SDIO_Argument = (uint32_t) RCA << 16;
            SDIO_CmdInitStructure.SDIO_CmdIndex = SDIO_APP_CMD;
            SDIO_CmdInitStructure.SDIO_Response = SDIO_Response_Short;
            SDIO_CmdInitStructure.SDIO_Wait = SDIO_Wait_No;
            SDIO_CmdInitStructure.SDIO_CPSM = SDIO_CPSM_Enable;
            SDIO_SendCommand(&SDIO_CmdInitStructure);
M
Ming, Bai 已提交
2562 2563


2564
            errorstatus = CmdResp1Error(SDIO_APP_CMD);
M
Ming, Bai 已提交
2565

2566 2567 2568 2569
            if (errorstatus != SD_OK)
            {
                return(errorstatus);
            }
M
Ming, Bai 已提交
2570

2571 2572 2573 2574 2575 2576 2577
            /* Send ACMD6 APP_CMD with argument as 2 for wide bus mode */
            SDIO_CmdInitStructure.SDIO_Argument = 0x00;
            SDIO_CmdInitStructure.SDIO_CmdIndex = SDIO_APP_SD_SET_BUSWIDTH;
            SDIO_CmdInitStructure.SDIO_Response = SDIO_Response_Short;
            SDIO_CmdInitStructure.SDIO_Wait = SDIO_Wait_No;
            SDIO_CmdInitStructure.SDIO_CPSM = SDIO_CPSM_Enable;
            SDIO_SendCommand(&SDIO_CmdInitStructure);
M
Ming, Bai 已提交
2578

2579
            errorstatus = CmdResp1Error(SDIO_APP_SD_SET_BUSWIDTH);
M
Ming, Bai 已提交
2580

2581 2582 2583 2584
            if (errorstatus != SD_OK)
            {
                return(errorstatus);
            }
M
Ming, Bai 已提交
2585

2586 2587 2588 2589 2590 2591 2592 2593
            return(errorstatus);
        }
        else
        {
            errorstatus = SD_REQUEST_NOT_APPLICABLE;
            return(errorstatus);
        }
    }
M
Ming, Bai 已提交
2594 2595 2596
}

/**
2597 2598 2599
  * @brief  Checks if the SD card is in programming state.
  * @param  pstatus: pointer to the variable that will contain the SD
  *   card state.
M
Ming, Bai 已提交
2600 2601
  * @retval SD_Error: SD Card Error code.
  */
2602
static SD_Error IsCardProgramming(uint8_t *pstatus)
M
Ming, Bai 已提交
2603
{
2604 2605 2606 2607 2608 2609 2610 2611 2612
    SD_Error errorstatus = SD_OK;
    __IO uint32_t respR1 = 0, status = 0;

    SDIO_CmdInitStructure.SDIO_Argument = (uint32_t) RCA << 16;
    SDIO_CmdInitStructure.SDIO_CmdIndex = SDIO_SEND_STATUS;
    SDIO_CmdInitStructure.SDIO_Response = SDIO_Response_Short;
    SDIO_CmdInitStructure.SDIO_Wait = SDIO_Wait_No;
    SDIO_CmdInitStructure.SDIO_CPSM = SDIO_CPSM_Enable;
    SDIO_SendCommand(&SDIO_CmdInitStructure);
M
Ming, Bai 已提交
2613

2614 2615 2616 2617 2618
    status = SDIO->STA;
    while (!(status & (SDIO_FLAG_CCRCFAIL | SDIO_FLAG_CMDREND | SDIO_FLAG_CTIMEOUT)))
    {
        status = SDIO->STA;
    }
M
Ming, Bai 已提交
2619

2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631
    if (status & SDIO_FLAG_CTIMEOUT)
    {
        errorstatus = SD_CMD_RSP_TIMEOUT;
        SDIO_ClearFlag(SDIO_FLAG_CTIMEOUT);
        return(errorstatus);
    }
    else if (status & SDIO_FLAG_CCRCFAIL)
    {
        errorstatus = SD_CMD_CRC_FAIL;
        SDIO_ClearFlag(SDIO_FLAG_CCRCFAIL);
        return(errorstatus);
    }
M
Ming, Bai 已提交
2632

2633
    status = (uint32_t)SDIO_GetCommandResponse();
M
Ming, Bai 已提交
2634

2635 2636 2637 2638
    /* Check response received is of desired command */
    if (status != SDIO_SEND_STATUS)
    {
        errorstatus = SD_ILLEGAL_CMD;
M
Ming, Bai 已提交
2639
        return(errorstatus);
2640 2641 2642 2643 2644
    }

    /* Clear all the static flags */
    SDIO_ClearFlag(SDIO_STATIC_FLAGS);

M
Ming, Bai 已提交
2645

2646 2647
    /* We have received response, retrieve it for analysis  */
    respR1 = SDIO_GetResponse(SDIO_RESP1);
M
Ming, Bai 已提交
2648

2649 2650
    /* Find out card status */
    *pstatus = (uint8_t) ((respR1 >> 9) & 0x0000000F);
M
Ming, Bai 已提交
2651

2652 2653
    if ((respR1 & SD_OCR_ERRORBITS) == SD_ALLZERO)
    {
M
Ming, Bai 已提交
2654 2655
        return(errorstatus);
    }
2656 2657

    if (respR1 & SD_OCR_ADDR_OUT_OF_RANGE)
M
Ming, Bai 已提交
2658
    {
2659
        return(SD_ADDR_OUT_OF_RANGE);
M
Ming, Bai 已提交
2660
    }
2661 2662

    if (respR1 & SD_OCR_ADDR_MISALIGNED)
M
Ming, Bai 已提交
2663
    {
2664 2665
        return(SD_ADDR_MISALIGNED);
    }
M
Ming, Bai 已提交
2666

2667 2668 2669 2670
    if (respR1 & SD_OCR_BLOCK_LEN_ERR)
    {
        return(SD_BLOCK_LEN_ERR);
    }
M
Ming, Bai 已提交
2671

2672 2673 2674 2675
    if (respR1 & SD_OCR_ERASE_SEQ_ERR)
    {
        return(SD_ERASE_SEQ_ERR);
    }
M
Ming, Bai 已提交
2676

2677 2678 2679 2680
    if (respR1 & SD_OCR_BAD_ERASE_PARAM)
    {
        return(SD_BAD_ERASE_PARAM);
    }
M
Ming, Bai 已提交
2681

2682 2683 2684 2685
    if (respR1 & SD_OCR_WRITE_PROT_VIOLATION)
    {
        return(SD_WRITE_PROT_VIOLATION);
    }
M
Ming, Bai 已提交
2686

2687 2688 2689 2690
    if (respR1 & SD_OCR_LOCK_UNLOCK_FAILED)
    {
        return(SD_LOCK_UNLOCK_FAILED);
    }
M
Ming, Bai 已提交
2691

2692 2693 2694 2695
    if (respR1 & SD_OCR_COM_CRC_FAILED)
    {
        return(SD_COM_CRC_FAILED);
    }
M
Ming, Bai 已提交
2696

2697 2698 2699
    if (respR1 & SD_OCR_ILLEGAL_CMD)
    {
        return(SD_ILLEGAL_CMD);
M
Ming, Bai 已提交
2700
    }
2701 2702

    if (respR1 & SD_OCR_CARD_ECC_FAILED)
M
Ming, Bai 已提交
2703
    {
2704
        return(SD_CARD_ECC_FAILED);
M
Ming, Bai 已提交
2705 2706
    }

2707 2708 2709 2710
    if (respR1 & SD_OCR_CC_ERROR)
    {
        return(SD_CC_ERROR);
    }
M
Ming, Bai 已提交
2711

2712 2713 2714 2715
    if (respR1 & SD_OCR_GENERAL_UNKNOWN_ERROR)
    {
        return(SD_GENERAL_UNKNOWN_ERROR);
    }
M
Ming, Bai 已提交
2716

2717 2718 2719 2720
    if (respR1 & SD_OCR_STREAM_READ_UNDERRUN)
    {
        return(SD_STREAM_READ_UNDERRUN);
    }
M
Ming, Bai 已提交
2721

2722 2723 2724 2725 2726 2727 2728 2729 2730
    if (respR1 & SD_OCR_STREAM_WRITE_OVERRUN)
    {
        return(SD_STREAM_WRITE_OVERRUN);
    }

    if (respR1 & SD_OCR_CID_CSD_OVERWRIETE)
    {
        return(SD_CID_CSD_OVERWRITE);
    }
M
Ming, Bai 已提交
2731

2732 2733 2734 2735
    if (respR1 & SD_OCR_WP_ERASE_SKIP)
    {
        return(SD_WP_ERASE_SKIP);
    }
M
Ming, Bai 已提交
2736

2737 2738 2739 2740
    if (respR1 & SD_OCR_CARD_ECC_DISABLED)
    {
        return(SD_CARD_ECC_DISABLED);
    }
M
Ming, Bai 已提交
2741

2742 2743 2744 2745
    if (respR1 & SD_OCR_ERASE_RESET)
    {
        return(SD_ERASE_RESET);
    }
M
Ming, Bai 已提交
2746

2747 2748 2749 2750
    if (respR1 & SD_OCR_AKE_SEQ_ERROR)
    {
        return(SD_AKE_SEQ_ERROR);
    }
M
Ming, Bai 已提交
2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762

    return(errorstatus);
}

/**
  * @brief  Find the SD card SCR register value.
  * @param  rca: selected card address.
  * @param  pscr: pointer to the buffer that will contain the SCR value.
  * @retval SD_Error: SD Card Error code.
  */
static SD_Error FindSCR(uint16_t rca, uint32_t *pscr)
{
2763 2764 2765
    uint32_t index = 0;
    SD_Error errorstatus = SD_OK;
    uint32_t tempscr[2] = {0, 0};
M
Ming, Bai 已提交
2766

2767 2768 2769 2770 2771 2772 2773 2774
    /* Set Block Size To 8 Bytes */
    /* Send CMD55 APP_CMD with argument as card's RCA */
    SDIO_CmdInitStructure.SDIO_Argument = (uint32_t)8;
    SDIO_CmdInitStructure.SDIO_CmdIndex = SDIO_SET_BLOCKLEN;
    SDIO_CmdInitStructure.SDIO_Response = SDIO_Response_Short;
    SDIO_CmdInitStructure.SDIO_Wait = SDIO_Wait_No;
    SDIO_CmdInitStructure.SDIO_CPSM = SDIO_CPSM_Enable;
    SDIO_SendCommand(&SDIO_CmdInitStructure);
M
Ming, Bai 已提交
2775

2776
    errorstatus = CmdResp1Error(SDIO_SET_BLOCKLEN);
M
Ming, Bai 已提交
2777

2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791
    if (errorstatus != SD_OK)
    {
        return(errorstatus);
    }

    /* Send CMD55 APP_CMD with argument as card's RCA */
    SDIO_CmdInitStructure.SDIO_Argument = (uint32_t) RCA << 16;
    SDIO_CmdInitStructure.SDIO_CmdIndex = SDIO_APP_CMD;
    SDIO_CmdInitStructure.SDIO_Response = SDIO_Response_Short;
    SDIO_CmdInitStructure.SDIO_Wait = SDIO_Wait_No;
    SDIO_CmdInitStructure.SDIO_CPSM = SDIO_CPSM_Enable;
    SDIO_SendCommand(&SDIO_CmdInitStructure);

    errorstatus = CmdResp1Error(SDIO_APP_CMD);
M
Ming, Bai 已提交
2792

2793
    if (errorstatus != SD_OK)
M
Ming, Bai 已提交
2794
    {
2795
        return(errorstatus);
M
Ming, Bai 已提交
2796
    }
2797 2798 2799 2800 2801 2802 2803
    SDIO_DataInitStructure.SDIO_DataTimeOut = SD_DATATIMEOUT;
    SDIO_DataInitStructure.SDIO_DataLength = 8;
    SDIO_DataInitStructure.SDIO_DataBlockSize = SDIO_DataBlockSize_8b;
    SDIO_DataInitStructure.SDIO_TransferDir = SDIO_TransferDir_ToSDIO;
    SDIO_DataInitStructure.SDIO_TransferMode = SDIO_TransferMode_Block;
    SDIO_DataInitStructure.SDIO_DPSM = SDIO_DPSM_Enable;
    SDIO_DataConfig(&SDIO_DataInitStructure);
M
Ming, Bai 已提交
2804

2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858
    /* make a delay */
    {
        volatile uint32_t delay;
        for(delay = 0; delay < 20; delay++);
    }

    /* Send ACMD51 SD_APP_SEND_SCR with argument as 0 */
    SDIO_CmdInitStructure.SDIO_Argument = 0x0;
    SDIO_CmdInitStructure.SDIO_CmdIndex = SDIO_SD_APP_SEND_SCR;
    SDIO_CmdInitStructure.SDIO_Response = SDIO_Response_Short;
    SDIO_CmdInitStructure.SDIO_Wait = SDIO_Wait_No;
    SDIO_CmdInitStructure.SDIO_CPSM = SDIO_CPSM_Enable;
    SDIO_SendCommand(&SDIO_CmdInitStructure);

    errorstatus = CmdResp1Error(SDIO_SD_APP_SEND_SCR);

    if (errorstatus != SD_OK)
    {
        return(errorstatus);
    }

    while (!(SDIO->STA & (SDIO_FLAG_RXOVERR | SDIO_FLAG_DCRCFAIL | SDIO_FLAG_DTIMEOUT | SDIO_FLAG_DBCKEND | SDIO_FLAG_STBITERR)))
    {
        if (SDIO_GetFlagStatus(SDIO_FLAG_RXDAVL) != RESET)
        {
            *(tempscr + index) = SDIO_ReadData();
            index++;
        }
    }

    if (SDIO_GetFlagStatus(SDIO_FLAG_DTIMEOUT) != RESET)
    {
        SDIO_ClearFlag(SDIO_FLAG_DTIMEOUT);
        errorstatus = SD_DATA_TIMEOUT;
        return(errorstatus);
    }
    else if (SDIO_GetFlagStatus(SDIO_FLAG_DCRCFAIL) != RESET)
    {
        SDIO_ClearFlag(SDIO_FLAG_DCRCFAIL);
        errorstatus = SD_DATA_CRC_FAIL;
        return(errorstatus);
    }
    else if (SDIO_GetFlagStatus(SDIO_FLAG_RXOVERR) != RESET)
    {
        SDIO_ClearFlag(SDIO_FLAG_RXOVERR);
        errorstatus = SD_RX_OVERRUN;
        return(errorstatus);
    }
    else if (SDIO_GetFlagStatus(SDIO_FLAG_STBITERR) != RESET)
    {
        SDIO_ClearFlag(SDIO_FLAG_STBITERR);
        errorstatus = SD_START_BIT_ERR;
        return(errorstatus);
    }
M
Ming, Bai 已提交
2859

2860 2861
    /* Clear all the static flags */
    SDIO_ClearFlag(SDIO_STATIC_FLAGS);
M
Ming, Bai 已提交
2862

2863
    *(pscr + 1) = ((tempscr[0] & SD_0TO7BITS) << 24) | ((tempscr[0] & SD_8TO15BITS) << 8) | ((tempscr[0] & SD_16TO23BITS) >> 8) | ((tempscr[0] & SD_24TO31BITS) >> 24);
M
Ming, Bai 已提交
2864

2865
    *(pscr) = ((tempscr[1] & SD_0TO7BITS) << 24) | ((tempscr[1] & SD_8TO15BITS) << 8) | ((tempscr[1] & SD_16TO23BITS) >> 8) | ((tempscr[1] & SD_24TO31BITS) >> 24);
M
Ming, Bai 已提交
2866

2867
    return(errorstatus);
M
Ming, Bai 已提交
2868 2869 2870 2871 2872 2873 2874 2875 2876 2877
}

/**
  * @brief  Converts the number of bytes in power of two and returns the
  *   power.
  * @param  NumberOfBytes: number of bytes.
  * @retval None
  */
static uint8_t convert_from_bytes_to_power_of_two(uint16_t NumberOfBytes)
{
2878 2879 2880 2881 2882 2883 2884 2885
    uint8_t count = 0;

    while (NumberOfBytes != 1)
    {
        NumberOfBytes >>= 1;
        count++;
    }
    return(count);
M
Ming, Bai 已提交
2886 2887 2888 2889 2890 2891 2892 2893 2894
}

/**
  * @brief  Configures the SDIO Corresponding GPIO Ports
  * @param  None
  * @retval None
  */
static void GPIO_Configuration(void)
{
2895
    GPIO_InitTypeDef  GPIO_InitStructure;
M
Ming, Bai 已提交
2896

2897 2898
    /* GPIOC and GPIOD Periph clock enable */
    RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOC | RCC_APB2Periph_GPIOD, ENABLE);
M
Ming, Bai 已提交
2899

2900 2901 2902 2903 2904
    /* Configure PC.08, PC.09, PC.10, PC.11, PC.12 pin: D0, D1, D2, D3, CLK pin */
    GPIO_InitStructure.GPIO_Pin = GPIO_Pin_8 | GPIO_Pin_9 | GPIO_Pin_10 | GPIO_Pin_11 | GPIO_Pin_12;
    GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
    GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
    GPIO_Init(GPIOC, &GPIO_InitStructure);
M
Ming, Bai 已提交
2905

2906 2907 2908
    /* Configure PD.02 CMD line */
    GPIO_InitStructure.GPIO_Pin = GPIO_Pin_2;
    GPIO_Init(GPIOD, &GPIO_InitStructure);
M
Ming, Bai 已提交
2909 2910 2911 2912 2913 2914 2915 2916 2917 2918
}

/**
  * @brief  Configures the DMA2 Channel4 for SDIO Tx request.
  * @param  BufferSRC: pointer to the source buffer
  * @param  BufferSize: buffer size
  * @retval None
  */
static void DMA_TxConfiguration(uint32_t *BufferSRC, uint32_t BufferSize)
{
2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941
    DMA_InitTypeDef DMA_InitStructure;

    DMA_ClearFlag(DMA2_FLAG_TC4 | DMA2_FLAG_TE4 | DMA2_FLAG_HT4 | DMA2_FLAG_GL4);

    /* DMA2 Channel4 disable */
    DMA_Cmd(DMA2_Channel4, DISABLE);

    /* DMA2 Channel4 Config */
    DMA_InitStructure.DMA_PeripheralBaseAddr = (uint32_t)SDIO_FIFO_Address;
    DMA_InitStructure.DMA_MemoryBaseAddr = (uint32_t)BufferSRC;
    DMA_InitStructure.DMA_DIR = DMA_DIR_PeripheralDST;
    DMA_InitStructure.DMA_BufferSize = BufferSize / 4;
    DMA_InitStructure.DMA_PeripheralInc = DMA_PeripheralInc_Disable;
    DMA_InitStructure.DMA_MemoryInc = DMA_MemoryInc_Enable;
    DMA_InitStructure.DMA_PeripheralDataSize = DMA_PeripheralDataSize_Word;
    DMA_InitStructure.DMA_MemoryDataSize = DMA_MemoryDataSize_Word;
    DMA_InitStructure.DMA_Mode = DMA_Mode_Normal;
    DMA_InitStructure.DMA_Priority = DMA_Priority_High;
    DMA_InitStructure.DMA_M2M = DMA_M2M_Disable;
    DMA_Init(DMA2_Channel4, &DMA_InitStructure);

    /* DMA2 Channel4 enable */
    DMA_Cmd(DMA2_Channel4, ENABLE);
M
Ming, Bai 已提交
2942 2943 2944 2945 2946 2947 2948 2949 2950 2951
}

/**
  * @brief  Configures the DMA2 Channel4 for SDIO Rx request.
  * @param  BufferDST: pointer to the destination buffer
  * @param  BufferSize: buffer size
  * @retval None
  */
static void DMA_RxConfiguration(uint32_t *BufferDST, uint32_t BufferSize)
{
2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974
    DMA_InitTypeDef DMA_InitStructure;

    DMA_ClearFlag(DMA2_FLAG_TC4 | DMA2_FLAG_TE4 | DMA2_FLAG_HT4 | DMA2_FLAG_GL4);

    /* DMA2 Channel4 disable */
    DMA_Cmd(DMA2_Channel4, DISABLE);

    /* DMA2 Channel4 Config */
    DMA_InitStructure.DMA_PeripheralBaseAddr = (uint32_t)SDIO_FIFO_Address;
    DMA_InitStructure.DMA_MemoryBaseAddr = (uint32_t)BufferDST;
    DMA_InitStructure.DMA_DIR = DMA_DIR_PeripheralSRC;
    DMA_InitStructure.DMA_BufferSize = BufferSize / 4;
    DMA_InitStructure.DMA_PeripheralInc = DMA_PeripheralInc_Disable;
    DMA_InitStructure.DMA_MemoryInc = DMA_MemoryInc_Enable;
    DMA_InitStructure.DMA_PeripheralDataSize = DMA_PeripheralDataSize_Word;
    DMA_InitStructure.DMA_MemoryDataSize = DMA_MemoryDataSize_Word;
    DMA_InitStructure.DMA_Mode = DMA_Mode_Normal;
    DMA_InitStructure.DMA_Priority = DMA_Priority_High;
    DMA_InitStructure.DMA_M2M = DMA_M2M_Disable;
    DMA_Init(DMA2_Channel4, &DMA_InitStructure);

    /* DMA2 Channel4 enable */
    DMA_Cmd(DMA2_Channel4, ENABLE);
M
Ming, Bai 已提交
2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005
}

/**
  * @}
  */

/**
  * @}
  */

/******************* (C) COPYRIGHT 2009 STMicroelectronics *****END OF FILE****/

/*
 * RT-Thread SD Card Driver
 * 20100715 Bernard support SDHC card great than 4G.
 */
#include <rtthread.h>
#include <dfs_fs.h>

/* set sector size to 512 */
#define SECTOR_SIZE		512

static struct rt_device sdcard_device;
static SD_CardInfo SDCardInfo;
static struct dfs_partition part;
static struct rt_semaphore sd_lock;
static rt_uint8_t _sdcard_buffer[SECTOR_SIZE];

/* RT-Thread Device Driver Interface */
static rt_err_t rt_sdcard_init(rt_device_t dev)
{
3006
    NVIC_InitTypeDef NVIC_InitStructure;
M
Ming, Bai 已提交
3007

3008 3009 3010 3011 3012
    NVIC_InitStructure.NVIC_IRQChannel = SDIO_IRQn;
    NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 0;
    NVIC_InitStructure.NVIC_IRQChannelSubPriority = 0;
    NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
    NVIC_Init(&NVIC_InitStructure);
M
Ming, Bai 已提交
3013

3014 3015 3016 3017
    if (rt_sem_init(&sd_lock, "sdlock", 1, RT_IPC_FLAG_FIFO) != RT_EOK)
    {
        rt_kprintf("init sd lock semaphore failed\n");
    }
M
Ming, Bai 已提交
3018

3019
    return RT_EOK;
M
Ming, Bai 已提交
3020 3021 3022 3023
}

static rt_err_t rt_sdcard_open(rt_device_t dev, rt_uint16_t oflag)
{
3024
    return RT_EOK;
M
Ming, Bai 已提交
3025 3026 3027 3028
}

static rt_err_t rt_sdcard_close(rt_device_t dev)
{
3029
    return RT_EOK;
M
Ming, Bai 已提交
3030 3031 3032 3033
}

static rt_size_t rt_sdcard_read(rt_device_t dev, rt_off_t pos, void* buffer, rt_size_t size)
{
3034 3035 3036
    SD_Error status;
    rt_uint32_t retry;
    rt_uint32_t factor;
M
Ming, Bai 已提交
3037

3038 3039
    if (CardType == SDIO_HIGH_CAPACITY_SD_CARD) factor = 1;
    else factor = SECTOR_SIZE;
M
Ming, Bai 已提交
3040

3041
    rt_sem_take(&sd_lock, RT_WAITING_FOREVER);
M
Ming, Bai 已提交
3042 3043 3044 3045 3046 3047

    retry = 3;
    while(retry)
    {
        /* read all sectors */
        if (((rt_uint32_t)buffer % 4 != 0) ||
3048
                ((rt_uint32_t)buffer > 0x20080000))
M
Ming, Bai 已提交
3049 3050 3051 3052 3053 3054 3055
        {
            rt_uint32_t index;

            /* which is not alignment with 4 or chip SRAM */
            for (index = 0; index < size; index ++)
            {
                status = SD_ReadBlock((part.offset + index + pos) * factor,
3056
                                      (uint32_t*)_sdcard_buffer, SECTOR_SIZE);
M
Ming, Bai 已提交
3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068

                if (status != SD_OK) break;

                /* copy to the buffer */
                rt_memcpy(((rt_uint8_t*)buffer + index * SECTOR_SIZE), _sdcard_buffer, SECTOR_SIZE);
            }
        }
        else
        {
            if (size == 1)
            {
                status = SD_ReadBlock((part.offset + pos) * factor,
3069
                                      (uint32_t*)buffer, SECTOR_SIZE);
M
Ming, Bai 已提交
3070 3071 3072 3073
            }
            else
            {
                status = SD_ReadMultiBlocks((part.offset + pos) * factor,
3074
                                            (uint32_t*)buffer, SECTOR_SIZE, size);
M
Ming, Bai 已提交
3075 3076 3077 3078 3079 3080 3081
            }
        }

        if (status == SD_OK) break;

        retry --;
    }
3082
    rt_sem_release(&sd_lock);
M
Ming, Bai 已提交
3083

3084
    if (status == SD_OK) return size;
M
Ming, Bai 已提交
3085

3086 3087
    rt_kprintf("read failed: %d, buffer 0x%08x\n", status, buffer);
    return 0;
M
Ming, Bai 已提交
3088 3089 3090 3091
}

static rt_size_t rt_sdcard_write (rt_device_t dev, rt_off_t pos, const void* buffer, rt_size_t size)
{
3092 3093
    SD_Error status;
    rt_uint32_t factor;
M
Ming, Bai 已提交
3094

3095 3096
    if (CardType == SDIO_HIGH_CAPACITY_SD_CARD) factor = 1;
    else factor = SECTOR_SIZE;
M
Ming, Bai 已提交
3097

3098
    rt_sem_take(&sd_lock, RT_WAITING_FOREVER);
M
Ming, Bai 已提交
3099

3100 3101 3102 3103 3104
    /* read all sectors */
    if (((rt_uint32_t)buffer % 4 != 0) ||
            ((rt_uint32_t)buffer > 0x20080000))
    {
        rt_uint32_t index;
M
Ming, Bai 已提交
3105 3106 3107 3108 3109 3110 3111 3112

        /* which is not alignment with 4 or not chip SRAM */
        for (index = 0; index < size; index ++)
        {
            /* copy to the buffer */
            rt_memcpy(_sdcard_buffer, ((rt_uint8_t*)buffer + index * SECTOR_SIZE), SECTOR_SIZE);

            status = SD_WriteBlock((part.offset + index + pos) * factor,
3113
                                   (uint32_t*)_sdcard_buffer, SECTOR_SIZE);
M
Ming, Bai 已提交
3114 3115 3116

            if (status != SD_OK) break;
        }
3117 3118 3119
    }
    else
    {
M
Ming, Bai 已提交
3120 3121 3122
        if (size == 1)
        {
            status = SD_WriteBlock((part.offset + pos) * factor,
3123
                                   (uint32_t*)buffer, SECTOR_SIZE);
M
Ming, Bai 已提交
3124 3125 3126 3127
        }
        else
        {
            status = SD_WriteMultiBlocks((part.offset + pos) * factor,
3128
                                         (uint32_t*)buffer, SECTOR_SIZE, size);
M
Ming, Bai 已提交
3129
        }
3130
    }
M
Ming, Bai 已提交
3131

3132
    rt_sem_release(&sd_lock);
M
Ming, Bai 已提交
3133

3134
    if (status == SD_OK) return size;
M
Ming, Bai 已提交
3135

3136 3137
    rt_kprintf("write failed: %d, buffer 0x%08x\n", status, buffer);
    return 0;
M
Ming, Bai 已提交
3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152
}

static rt_err_t rt_sdcard_control(rt_device_t dev, rt_uint8_t cmd, void *args)
{
    RT_ASSERT(dev != RT_NULL);

    if (cmd == RT_DEVICE_CTRL_BLK_GETGEOME)
    {
        struct rt_device_blk_geometry *geometry;

        geometry = (struct rt_device_blk_geometry *)args;
        if (geometry == RT_NULL) return -RT_ERROR;

        geometry->bytes_per_sector = 512;
        geometry->block_size = SDCardInfo.CardBlockSize;
3153 3154 3155 3156
        if (CardType == SDIO_HIGH_CAPACITY_SD_CARD)
            geometry->sector_count = (SDCardInfo.SD_csd.DeviceSize + 1)  * 1024;
        else
            geometry->sector_count = SDCardInfo.CardCapacity/SDCardInfo.CardBlockSize;
M
Ming, Bai 已提交
3157 3158
    }

3159
    return RT_EOK;
M
Ming, Bai 已提交
3160 3161
}

3162
int rt_hw_sdcard_init(void)
M
Ming, Bai 已提交
3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175
{
    /* SDIO POWER */
    GPIO_InitTypeDef GPIO_InitStructure;

    RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOC,ENABLE);
    GPIO_InitStructure.GPIO_Pin = GPIO_Pin_6;
    GPIO_InitStructure.GPIO_Mode  = GPIO_Mode_Out_PP;
    GPIO_InitStructure.GPIO_Speed = GPIO_Speed_2MHz;
    GPIO_Init(GPIOC,&GPIO_InitStructure);
    GPIO_ResetBits(GPIOC,GPIO_Pin_6); /* SD card power up */
    // delay same time for SD card power up

    if (SD_Init() == SD_OK)
3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200
    {
        SD_Error status;
        rt_uint8_t *sector;

        status = SD_GetCardInfo(&SDCardInfo);
        if (status != SD_OK) goto __return;

        status = SD_SelectDeselect((u32) (SDCardInfo.RCA << 16));
        if (status != SD_OK) goto __return;

        SD_EnableWideBusOperation(SDIO_BusWide_4b);
        SD_SetDeviceMode(SD_DMA_MODE);

        /* get the first sector to read partition table */
        sector = (rt_uint8_t*) rt_malloc (512);
        if (sector == RT_NULL)
        {
            rt_kprintf("allocate partition sector buffer failed\n");
            return 0;
        }
        status = SD_ReadBlock(0, (uint32_t*)sector, 512);
        if (status == SD_OK)
        {
            /* get the first partition */
            if (dfs_filesystem_get_partition(&part, sector, 0) != 0)
M
Ming, Bai 已提交
3201 3202 3203 3204 3205
            {
                /* there is no partition */
                part.offset = 0;
                part.size   = 0;
            }
3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233
        }
        else
        {
            /* there is no partition table */
            part.offset = 0;
            part.size   = 0;
        }

        /* release sector buffer */
        rt_free(sector);

        /* register sdcard device */
        sdcard_device.type  = RT_Device_Class_Block;
        sdcard_device.init 	= rt_sdcard_init;
        sdcard_device.open 	= rt_sdcard_open;
        sdcard_device.close = rt_sdcard_close;
        sdcard_device.read 	= rt_sdcard_read;
        sdcard_device.write = rt_sdcard_write;
        sdcard_device.control = rt_sdcard_control;

        /* no private */
        sdcard_device.user_data = &SDCardInfo;

        rt_device_register(&sdcard_device, "sd0",
                           RT_DEVICE_FLAG_RDWR | RT_DEVICE_FLAG_REMOVABLE | RT_DEVICE_FLAG_STANDALONE);

        return 0;
    }
M
Ming, Bai 已提交
3234 3235

__return:
3236
    rt_kprintf("sdcard init failed\n");
M
Ming, Bai 已提交
3237
    GPIO_SetBits(GPIOC,GPIO_Pin_6); /* SD card power down */
3238 3239

    return 0;
M
Ming, Bai 已提交
3240
}
3241
INIT_DEVICE_EXPORT(rt_hw_sdcard_init);
wuyangyong's avatar
wuyangyong 已提交
3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253

void SDIO_IRQHandler(void)
{
    /* enter interrupt */
    rt_interrupt_enter();

    /* Process All SDIO Interrupt Sources */
    SD_ProcessIRQSrc();

    /* leave interrupt */
    rt_interrupt_leave();
}