Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

A BSP is required so that the SD/MMC cardmode driver will work on a particular system. The functions shown in the table below must be implemented. Pleaser refer to section C-5 “SD/MMC Cardmode BSP” for the details about implementing your own BSP.

Function

Description

FSDev_SD_Card_BSP_Open()

Open (initialize) SD/MMC card interface.

FSDev_SD_Card_BSP_Close()

Close (uninitialize) SD/MMC card interface.

FSDev_SD_Card_BSP_Lock()

Acquire SD/MMC card bus lock.

FSDev_SD_Card_BSP_Unlock()

Release SD/MMC card bus lock.

FSDev_SD_Card_BSP_CmdStart()

Start a command.

FSDev_SD_Card_BSP_CmdWaitEnd()

Wait for a command to end and get response.

FSDev_SD_Card_BSP_CmdDataRd()

Read data following command.

FSDev_SD_Card_BSP_CmdDataWr()

Write data following command.

FSDev_SD_Card_BSP_GetBlkCntMax()

Get max block count.

FSDev_SD_Card_BSP_GetBusWidthMax()

Get maximum bus width, in bits.

FSDev_SD_Card_BSP_SetBusWidth()

Set bus width.

FSDev_SD_Card_BSP_SetClkFreq()

Set clock frequency.

FSDev_SD_Card_BSP_SetTimeoutData()

Set data timeout.

FSDev_SD_Card_BSP_SetTimeoutResp()

Set response timeout

Table 14-3 SD/MMC cardmode BSP functions

The Open()/Close() functions are called upon open/close or medium change; these calls are always matched. The status and information functions (GetBlkCntMax(), GetBusWidthMax(), SetBusWidth(), SetClkFreq(), SetTimeoutData(), SetTimeoutResp()) help configure the new card upon insertion. Lock() and Unlock() surround all card accesses.

The remaining functions (CmdStart(), CmdWaitEnd(), CmdDataRd(), CmdDataWr()) constitute the command execution state machine (see Figure 14-9). A return error from one of the functions will abort the state machine, so the requisite considerations, such as preparing for the next command or preventing further interrupts, must be first handled.

Figure 14-9 Command execution

  • No labels