38#define QUEUE_SIZE (uint32_t) 10
39#define READ_CPLT_MSG (uint32_t) 1
40#define WRITE_CPLT_MSG (uint32_t) 2
58#define SD_TIMEOUT 30 * 1000
60#define SD_DEFAULT_BLOCK_SIZE 512
92#if defined(ENABLE_SCRATCH_BUFFER)
93#if defined (ENABLE_SD_DMA_CACHE_MAINTENANCE)
94ALIGN_32BYTES(
static uint8_t scratch[BLOCKSIZE]);
96__ALIGN_BEGIN
static uint8_t scratch[BLOCKSIZE] __ALIGN_END;
100static volatile DSTATUS Stat = STA_NOINIT;
102#if (osCMSIS <= 0x20000U)
103static osMessageQId SDQueueID = NULL;
105static osMessageQueueId_t SDQueueID = NULL;
108static DSTATUS SD_CheckStatus(BYTE lun);
111DRESULT
SD_read (BYTE, BYTE*, DWORD, UINT);
113DRESULT SD_write (BYTE,
const BYTE*, DWORD, UINT);
116DRESULT SD_ioctl (BYTE, BYTE,
void*);
139static int SD_CheckStatusWithTimeout(uint32_t timeout)
143#if (osCMSIS <= 0x20000U)
144 timer = osKernelSysTick();
145 while( osKernelSysTick() - timer < timeout)
147 timer = osKernelGetTickCount();
148 while( osKernelGetTickCount() - timer < timeout)
160static DSTATUS SD_CheckStatus(BYTE lun)
185#if (osCMSIS <= 0x20000U)
186 if(osKernelRunning())
188 if(osKernelGetState() == osKernelRunning)
191#if !defined(DISABLE_SD_INIT)
195 Stat = SD_CheckStatus(lun);
199 Stat = SD_CheckStatus(lun);
207 if (Stat != STA_NOINIT)
209 if (SDQueueID == NULL)
211 #if (osCMSIS <= 0x20000U)
212 osMessageQDef(SD_Queue, QUEUE_SIZE, uint16_t);
213 SDQueueID = osMessageCreate (osMessageQ(SD_Queue), NULL);
215 SDQueueID = osMessageQueueNew(QUEUE_SIZE, 2, NULL);
219 if (SDQueueID == NULL)
236 return SD_CheckStatus(lun);
251DRESULT
SD_read(BYTE lun, BYTE *buff, DWORD sector, UINT count)
253 DRESULT res = RES_ERROR;
255#if (osCMSIS < 0x20000U)
261#if (ENABLE_SD_DMA_CACHE_MAINTENANCE == 1)
262 uint32_t alignedAddr;
268 if (SD_CheckStatusWithTimeout(SD_TIMEOUT) < 0)
273#if defined(ENABLE_SCRATCH_BUFFER)
274 if (!((uint32_t)buff & 0x3))
281#if (osCMSIS < 0x20000U)
283 event = osMessageGet(SDQueueID, SD_TIMEOUT);
285 if (event.status == osEventMessage)
287 if (event.value.v == READ_CPLT_MSG)
289 timer = osKernelSysTick();
291 while(osKernelSysTick() - timer <SD_TIMEOUT)
293 status = osMessageQueueGet(SDQueueID, (
void *)&event, NULL, SD_TIMEOUT);
294 if ((status == osOK) && (event == READ_CPLT_MSG))
296 timer = osKernelGetTickCount();
298 while(osKernelGetTickCount() - timer <SD_TIMEOUT)
304#if (ENABLE_SD_DMA_CACHE_MAINTENANCE == 1)
309 alignedAddr = (uint32_t)buff & ~0x1F;
310 SCB_InvalidateDCache_by_Addr((uint32_t*)alignedAddr, count*BLOCKSIZE + ((uint32_t)buff - alignedAddr));
315#if (osCMSIS < 0x20000U)
323#if defined(ENABLE_SCRATCH_BUFFER)
330 for (i = 0; i < count; i++)
336#if (osCMSIS < 0x20000U)
338 event = osMessageGet(SDQueueID, SD_TIMEOUT);
340 if (event.status == osEventMessage)
342 if (event.value.v == READ_CPLT_MSG)
344 timer = osKernelSysTick();
346 while(osKernelSysTick() - timer <SD_TIMEOUT)
348 status = osMessageQueueGet(SDQueueID, (
void *)&event, NULL, SD_TIMEOUT);
349 if ((status == osOK) && (event == READ_CPLT_MSG))
351 timer = osKernelGetTickCount();
354 while(osKernelGetTickCount() - timer < SD_TIMEOUT)
369#if (osCMSIS < 0x20000U)
375#if (ENABLE_SD_DMA_CACHE_MAINTENANCE == 1)
380 SCB_InvalidateDCache_by_Addr((uint32_t*)scratch, BLOCKSIZE);
382 memcpy(buff, scratch, BLOCKSIZE);
391 if ((i == count) && (ret ==
MSD_OK ))
412DRESULT SD_write(BYTE lun,
const BYTE *buff, DWORD sector, UINT count)
414 DRESULT res = RES_ERROR;
417#if (osCMSIS < 0x20000U)
424#if defined(ENABLE_SCRATCH_BUFFER)
432 if (SD_CheckStatusWithTimeout(SD_TIMEOUT) < 0)
437#if defined(ENABLE_SCRATCH_BUFFER)
438 if (!((uint32_t)buff & 0x3))
441#if (ENABLE_SD_DMA_CACHE_MAINTENANCE == 1)
442 uint32_t alignedAddr;
447 alignedAddr = (uint32_t)buff & ~0x1F;
448 SCB_CleanDCache_by_Addr((uint32_t*)alignedAddr, count*BLOCKSIZE + ((uint32_t)buff - alignedAddr));
455#if (osCMSIS < 0x20000U)
457 event = osMessageGet(SDQueueID, SD_TIMEOUT);
459 if (event.status == osEventMessage)
461 if (event.value.v == WRITE_CPLT_MSG)
464 status = osMessageQueueGet(SDQueueID, (
void *)&event, NULL, SD_TIMEOUT);
465 if ((status == osOK) && (event == WRITE_CPLT_MSG))
468 #if (osCMSIS < 0x20000U)
469 timer = osKernelSysTick();
471 while(osKernelSysTick() - timer < SD_TIMEOUT)
473 timer = osKernelGetTickCount();
475 while(osKernelGetTickCount() - timer < SD_TIMEOUT)
484#if (osCMSIS < 0x20000U)
491#if defined(ENABLE_SCRATCH_BUFFER)
496#if (ENABLE_SD_DMA_CACHE_MAINTENANCE == 1)
500 SCB_InvalidateDCache_by_Addr((uint32_t*)scratch, BLOCKSIZE);
502 for (i = 0; i < count; i++)
504 memcpy((
void *)scratch, buff, BLOCKSIZE);
511#if (osCMSIS < 0x20000U)
513 event = osMessageGet(SDQueueID, SD_TIMEOUT);
515 if (event.status == osEventMessage)
517 if (event.value.v == READ_CPLT_MSG)
519 timer = osKernelSysTick();
521 while(osKernelSysTick() - timer <SD_TIMEOUT)
523 status = osMessageQueueGet(SDQueueID, (
void *)&event, NULL, SD_TIMEOUT);
524 if ((status == osOK) && (event == READ_CPLT_MSG))
526 timer = osKernelGetTickCount();
529 while(osKernelGetTickCount() - timer < SD_TIMEOUT)
544#if (osCMSIS < 0x20000U)
557 if ((i == count) && (ret ==
MSD_OK ))
579DRESULT SD_ioctl(BYTE lun, BYTE cmd,
void *buff)
581 DRESULT res = RES_ERROR;
584 if (Stat & STA_NOINIT)
return RES_NOTRDY;
594 case GET_SECTOR_COUNT :
596 *(DWORD*)buff = CardInfo.LogBlockNbr;
601 case GET_SECTOR_SIZE :
603 *(WORD*)buff = CardInfo.LogBlockSize;
608 case GET_BLOCK_SIZE :
610 *(DWORD*)buff = CardInfo.LogBlockSize / SD_DEFAULT_BLOCK_SIZE;
641#if (osCMSIS < 0x20000U)
642 osMessagePut(SDQueueID, WRITE_CPLT_MSG, 0);
644 const uint16_t msg = WRITE_CPLT_MSG;
645 osMessageQueuePut(SDQueueID, (
const void *)&msg, 0, 0);
660#if (osCMSIS < 0x20000U)
661 osMessagePut(SDQueueID, READ_CPLT_MSG, 0);
663 const uint16_t msg = READ_CPLT_MSG;
664 osMessageQueuePut(SDQueueID, (
const void *)&msg, 0, 0);
#define MSD_OK
SD status structure definition
uint8_t BSP_SD_WriteBlocks_DMA(uint32_t *pData, uint32_t WriteAddr, uint32_t NumOfBlocks)
Writes block(s) to a specified address in an SD card, in DMA mode.
uint8_t BSP_SD_Init(void)
Initializes the SD card device.
#define BSP_SD_CardInfo
SD Card information structure.
uint8_t BSP_SD_GetCardState(void)
Gets the current SD card data status.
#define SD_TRANSFER_OK
SD transfer state definition
uint8_t BSP_SD_ReadBlocks_DMA(uint32_t *pData, uint32_t ReadAddr, uint32_t NumOfBlocks)
Reads block(s) from a specified address in an SD card, in DMA mode.
void BSP_SD_GetCardInfo(HAL_SD_CardInfoTypeDef *CardInfo)
Get SD information about specific SD card.
Header for ff_gen_drv.c module.
DRESULT SD_read(BYTE, BYTE *, DWORD, UINT)
Reads Sector(s)
DSTATUS SD_status(BYTE)
Gets Disk Status.
void BSP_SD_ReadCpltCallback(void)
Rx Transfer completed callbacks.
DSTATUS SD_initialize(BYTE)
Initializes a Drive.
void BSP_SD_WriteCpltCallback(void)
Writes Sector(s)
Header for sd_diskio.c module.
Disk IO Driver structure definition.