49 lines
728 B
Plaintext
49 lines
728 B
Plaintext
|
menu "SDMMC Devices"
|
||
|
|
||
|
config DRIVERS_SDMMC
|
||
|
bool "enable SDMMC drivers"
|
||
|
default y
|
||
|
|
||
|
if DRIVERS_SDMMC
|
||
|
|
||
|
config USE_SD
|
||
|
bool "enable SD"
|
||
|
default y
|
||
|
|
||
|
config USE_SDIO
|
||
|
bool "enable SDIO"
|
||
|
default y
|
||
|
|
||
|
config USE_MMC
|
||
|
bool "enable mmc"
|
||
|
default n
|
||
|
|
||
|
config DETECT_CARD
|
||
|
bool "enable detect card"
|
||
|
default y
|
||
|
|
||
|
config SDC_DMA_USED
|
||
|
bool "enable dma transmission"
|
||
|
default y
|
||
|
|
||
|
config SDIO_IRQ_SUPPORT
|
||
|
bool "enable sdio irq"
|
||
|
default y
|
||
|
|
||
|
config SD_TEST
|
||
|
select USE_SD
|
||
|
bool "enable SD Card test case."
|
||
|
default y
|
||
|
|
||
|
config SDC_DMA_BUF_SIZE
|
||
|
int "SD Card Align DMA Buffer Size(Kbyte)."
|
||
|
depends on SDC_DMA_USED
|
||
|
default 64
|
||
|
|
||
|
config DRIVERS_SDC_CDPIN_PRESENT_VAL
|
||
|
int "sdc card detect pin present value"
|
||
|
default 0
|
||
|
|
||
|
endif
|
||
|
endmenu
|