]> git.karo-electronics.de Git - karo-tx-uboot.git/blobdiff - drivers/mmc/Kconfig
dm: Use dev_get_addr() where possible
[karo-tx-uboot.git] / drivers / mmc / Kconfig
index 7ba85a2b62c45b5f968dbddc1994d7f174163e9a..c9fb58da66608a2a55f28fb4d3a8dfa1d2724dc1 100644 (file)
@@ -1,9 +1,44 @@
 menu "MMC Host controller Support"
 
+config MMC
+       bool
+
+config GENERIC_MMC
+       bool
+       select MMC
+
+config DM_MMC
+       bool "Enable MMC controllers using Driver Model"
+       depends on DM
+       help
+         This enables the MultiMediaCard (MMC) uclass which suports MMC and
+         Secure Digital I/O (SDIO) cards. Both removable (SD, micro-SD, etc.)
+         and non-removable (e.g. eMMC chip) devices are supported. These
+         appear as block devices in U-Boot and can support filesystems such
+         as EXT4 and FAT.
+
 config SH_SDHI
        bool "SuperH/Renesas ARM SoCs on-chip SDHI host controller support"
        depends on RMOBILE
        help
          Support for the on-chip SDHI host controller on SuperH/Renesas ARM SoCs platform
 
+config FSL_ESDHC
+       bool "Freescale ESDHC controller"
+       select GENERIC_MMC
+
+config FSL_USDHC
+       bool "Support USDHC"
+       depends on SOC_MX6
+       depends on FSL_ESDHC
+
+config MXS_MMC
+       bool "i.MXS MMC/SDHC controller"
+       depends on SOC_MXS || SOC_MX6
+       select GENERIC_MMC
+
+config SUPPORT_EMMC_BOOT
+       bool "Support boot from eMMC"
+       depends on MMC
+
 endmenu