mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2026-03-23 18:37:27 +08:00
* [sdio][dm] import Kconfig for DM Signed-off-by: GuEe-GUI <2991707448@qq.com> * [sdio] fixup IRQ and mmcsd threads' stack size default Signed-off-by: GuEe-GUI <2991707448@qq.com> * [sdio][dm] Support DM mode 1. Support features read by DM. 2. Support regulator API in drivers. 3. Support send tuning option CMD. 4. Replace `switch_uhs_voltage` by `signal_voltage_switch`. Signed-off-by: GuEe-GUI <2991707448@qq.com> * [dm][sdhci] Cleanup the SDHCI Signed-off-by: GuEe-GUI <2991707448@qq.com> * [sdio][dm] add new SDIO/SDHCI drivers 1. SDHCI support on PCI bus 2. Synopsys DesignWare MMC Family(MMIO/PCI) Signed-off-by: GuEe-GUI <2991707448@qq.com> --------- Signed-off-by: GuEe-GUI <2991707448@qq.com>
37 lines
1012 B
Plaintext
37 lines
1012 B
Plaintext
menuconfig RT_USING_SDIO
|
|
bool "Using SD/MMC device drivers"
|
|
select RT_USING_BLK
|
|
default n
|
|
|
|
if RT_USING_SDIO
|
|
config RT_SDIO_STACK_SIZE
|
|
int "The stack size for sdio irq thread"
|
|
default IDLE_THREAD_STACK_SIZE
|
|
|
|
config RT_SDIO_THREAD_PRIORITY
|
|
int "The priority level value of sdio irq thread"
|
|
default 15
|
|
|
|
config RT_MMCSD_STACK_SIZE
|
|
int "The stack size for mmcsd thread"
|
|
default IDLE_THREAD_STACK_SIZE
|
|
|
|
config RT_MMCSD_THREAD_PRIORITY
|
|
int "The priority level value of mmcsd thread"
|
|
default 22
|
|
|
|
config RT_MMCSD_MAX_PARTITION
|
|
int "mmcsd max partition"
|
|
default 16
|
|
config RT_SDIO_DEBUG
|
|
bool "Enable SDIO debug log output"
|
|
default n
|
|
config RT_USING_SDHCI
|
|
bool "Using sdhci for sd/mmc drivers"
|
|
default n
|
|
endif
|
|
|
|
if RT_USING_DM && RT_USING_SDIO
|
|
rsource "host/Kconfig"
|
|
endif
|