blob: dc8f2b6852e8b6ba685ea40fd23667e210d8ff62 [file] [log] [blame]
Nobuhiro Iwamatsu72d42ba2014-12-17 08:03:00 +09001menu "MMC Host controller Support"
2
Maxime Ripard7a777f62015-10-15 22:04:05 +02003config MMC
4 bool "Enable MMC support"
Simon Glassf376a3c2016-05-01 13:52:42 -06005 depends on ARCH_SUNXI || SANDBOX
Maxime Ripard7a777f62015-10-15 22:04:05 +02006 help
7 TODO: Move all architectures to use this option
8
Simon Glasse7ecf7c2015-06-23 15:38:48 -06009config DM_MMC
10 bool "Enable MMC controllers using Driver Model"
11 depends on DM
12 help
Robert P. J. Day62a3b7d2016-07-15 13:44:45 -040013 This enables the MultiMediaCard (MMC) uclass which supports MMC and
Simon Glasse7ecf7c2015-06-23 15:38:48 -060014 Secure Digital I/O (SDIO) cards. Both removable (SD, micro-SD, etc.)
15 and non-removable (e.g. eMMC chip) devices are supported. These
16 appear as block devices in U-Boot and can support filesystems such
17 as EXT4 and FAT.
18
Simon Glass8ca51e52016-06-12 23:30:22 -060019config DM_MMC_OPS
20 bool "Support MMC controller operations using Driver Model"
21 depends on DM_MMC
22 help
23 Driver model provides a means of supporting device operations. This
24 option moves MMC operations under the control of driver model. The
25 option will be removed as soon as all DM_MMC drivers use it, as it
26 will the only supported behaviour.
27
Mateusz Kulikowski9d11d122016-03-31 23:12:16 +020028config MSM_SDHCI
29 bool "Qualcomm SDHCI controller"
Simon Glass4b00bdb2016-06-12 23:30:31 -060030 depends on DM_MMC && BLK && DM_MMC_OPS
Mateusz Kulikowski9d11d122016-03-31 23:12:16 +020031 help
32 Enables support for SDHCI 2.0 controller present on some Qualcomm
33 Snapdragon devices. This device is compatible with eMMC v4.5 and
34 SD 3.0 specifications. Both SD and eMMC devices are supported.
35 Card-detect gpios are not supported.
36
Simon Glassa8cb4fb2015-08-30 16:55:37 -060037config ROCKCHIP_DWMMC
38 bool "Rockchip SD/MMC controller support"
39 depends on DM_MMC && OF_CONTROL
40 help
41 This enables support for the Rockchip SD/MMM controller, which is
42 based on Designware IP. The device is compatible with at least
43 SD 3.0, SDIO 3.0 and MMC 4.5 and supports common eMMC chips as well
44 as removeable SD and micro-SD cards.
45
Nobuhiro Iwamatsu72d42ba2014-12-17 08:03:00 +090046config SH_SDHI
47 bool "SuperH/Renesas ARM SoCs on-chip SDHI host controller support"
48 depends on RMOBILE
49 help
50 Support for the on-chip SDHI host controller on SuperH/Renesas ARM SoCs platform
51
Andrei Pistirica102142c2016-01-28 15:30:18 +053052config PIC32_SDHCI
53 bool "Microchip PIC32 on-chip SDHCI support"
54 depends on DM_MMC && MACH_PIC32
55 help
56 Support for Microchip PIC32 SDHCI controller.
57
Michal Simekce0335f2016-02-04 11:43:40 +010058config ZYNQ_SDHCI
59 bool "Arasan SDHCI controller support"
60 depends on DM_MMC && OF_CONTROL
61 help
62 Support for Arasan SDHCI host controller on Zynq/ZynqMP ARM SoCs platform
63
Kever Yang79c83062016-07-18 17:00:58 +080064config ROCKCHIP_SDHCI
65 bool "Arasan SDHCI controller for Rockchip support"
66 depends on DM_MMC && BLK && DM_MMC_OPS
67 help
68 Support for Arasan SDHCI host controller on Rockchip ARM SoCs platform
69
Masahiro Yamadaa111bfb2016-02-18 19:52:48 +090070config MMC_UNIPHIER
71 bool "UniPhier SD/MMC Host Controller support"
72 depends on ARCH_UNIPHIER
73 help
74 This selects support for the SD/MMC Host Controller on UniPhier SoCs.
75
Simon Glassf376a3c2016-05-01 13:52:42 -060076config SANDBOX_MMC
77 bool "Sandbox MMC support"
78 depends on MMC && SANDBOX
79 help
80 This select a dummy sandbox MMC driver. At present this does nothing
81 other than allow sandbox to be build with MMC support. This
82 improves build coverage for sandbox and makes it easier to detect
83 MMC build errors with sandbox.
84
Nobuhiro Iwamatsu72d42ba2014-12-17 08:03:00 +090085endmenu