]> git.karo-electronics.de Git - karo-tx-uboot.git/blob - drivers/mmc/Kconfig
dm: tpm: sandbox: Convert TPM driver to driver model
[karo-tx-uboot.git] / drivers / mmc / Kconfig
1 menu "MMC Host controller Support"
2
3 config MMC
4         bool
5
6 config GENERIC_MMC
7         bool
8         select MMC
9
10 config DM_MMC
11         bool "Enable MMC controllers using Driver Model"
12         depends on DM
13         help
14           This enables the MultiMediaCard (MMC) uclass which suports MMC and
15           Secure Digital I/O (SDIO) cards. Both removable (SD, micro-SD, etc.)
16           and non-removable (e.g. eMMC chip) devices are supported. These
17           appear as block devices in U-Boot and can support filesystems such
18           as EXT4 and FAT.
19
20 config SH_SDHI
21         bool "SuperH/Renesas ARM SoCs on-chip SDHI host controller support"
22         depends on RMOBILE
23         help
24           Support for the on-chip SDHI host controller on SuperH/Renesas ARM SoCs platform
25
26 config FSL_ESDHC
27         bool "Freescale ESDHC controller"
28         select GENERIC_MMC
29
30 config FSL_USDHC
31         bool "Support USDHC"
32         depends on SOC_MX6
33         depends on FSL_ESDHC
34
35 config MXS_MMC
36         bool "i.MXS MMC/SDHC controller"
37         depends on SOC_MXS || SOC_MX6
38         select GENERIC_MMC
39
40 config SUPPORT_EMMC_BOOT
41         bool "Support boot from eMMC"
42         depends on MMC
43
44 endmenu