blob: e9a1d18cd1a1b79de35c2aa926f498346006edcc [file] [log] [blame]
Nobuhiro Iwamatsu3ec5f862014-12-17 08:03:00 +09001menu "MMC Host controller Support"
2
Maxime Ripard4f780742015-10-15 22:04:05 +02003config MMC
Masahiro Yamadaa5ed4be2016-12-07 22:10:26 +09004 bool "MMC/SD/SDIO card support"
5 default ARM || PPC || SANDBOX
Maxime Ripard4f780742015-10-15 22:04:05 +02006 help
Masahiro Yamadaa5ed4be2016-12-07 22:10:26 +09007 This selects MultiMediaCard, Secure Digital and Secure
8 Digital I/O support.
9
10 If you want MMC/SD/SDIO support, you should say Y here and
11 also to your specific host controller driver.
Maxime Ripard4f780742015-10-15 22:04:05 +020012
Simon Glass1e8eb1b2015-06-23 15:38:48 -060013config DM_MMC
14 bool "Enable MMC controllers using Driver Model"
15 depends on DM
16 help
Robert P. J. Day8d56db92016-07-15 13:44:45 -040017 This enables the MultiMediaCard (MMC) uclass which supports MMC and
Simon Glass1e8eb1b2015-06-23 15:38:48 -060018 Secure Digital I/O (SDIO) cards. Both removable (SD, micro-SD, etc.)
19 and non-removable (e.g. eMMC chip) devices are supported. These
20 appear as block devices in U-Boot and can support filesystems such
21 as EXT4 and FAT.
22
Simon Glass394dfc02016-06-12 23:30:22 -060023config DM_MMC_OPS
24 bool "Support MMC controller operations using Driver Model"
25 depends on DM_MMC
Simon Glass0bf1f492016-10-01 14:43:19 -060026 default y if DM_MMC
Simon Glass394dfc02016-06-12 23:30:22 -060027 help
28 Driver model provides a means of supporting device operations. This
29 option moves MMC operations under the control of driver model. The
30 option will be removed as soon as all DM_MMC drivers use it, as it
31 will the only supported behaviour.
32
Marek Vasutf537e392016-12-01 02:06:33 +010033config SPL_MMC_TINY
34 bool "Tiny MMC framework in SPL"
35 help
36 Enable MMC framework tinification support. This option is useful if
37 if your SPL is extremely size constrained. Heed the warning, enable
38 this option if and only if you know exactly what you are doing, if
39 you are reading this help text, you most likely have no idea :-)
40
41 The MMC framework is reduced to bare minimum to be useful. No malloc
42 support is needed for the MMC framework operation with this option
43 enabled. The framework supports exactly one MMC device and exactly
44 one MMC driver. The MMC driver can be adjusted to avoid any malloc
45 operations too, which can remove the need for malloc support in SPL
46 and thus further reduce footprint.
47
Mateusz Kulikowskia00b0c02016-03-31 23:12:16 +020048config MSM_SDHCI
49 bool "Qualcomm SDHCI controller"
Simon Glass86120252016-06-12 23:30:31 -060050 depends on DM_MMC && BLK && DM_MMC_OPS
Mateusz Kulikowskia00b0c02016-03-31 23:12:16 +020051 help
52 Enables support for SDHCI 2.0 controller present on some Qualcomm
53 Snapdragon devices. This device is compatible with eMMC v4.5 and
54 SD 3.0 specifications. Both SD and eMMC devices are supported.
55 Card-detect gpios are not supported.
56
Wenyou Yang83e88a42016-08-10 10:51:05 +080057config ATMEL_SDHCI
58 bool "Atmel SDHCI controller support"
59 depends on DM_MMC && BLK && DM_MMC_OPS && ARCH_AT91
60 help
61 This enables support for the Atmel SDHCI controller, which supports
62 the embedded MultiMedia Card (e.MMC) Specification V4.51, the SD
63 Memory Card Specification V3.0, and the SDIO V3.0 specification.
64 It is compliant with the SD Host Controller Standard V3.0
65 specification.
66
Simon Glass4ecaa6d2015-08-30 16:55:37 -060067config ROCKCHIP_DWMMC
68 bool "Rockchip SD/MMC controller support"
69 depends on DM_MMC && OF_CONTROL
70 help
71 This enables support for the Rockchip SD/MMM controller, which is
72 based on Designware IP. The device is compatible with at least
73 SD 3.0, SDIO 3.0 and MMC 4.5 and supports common eMMC chips as well
74 as removeable SD and micro-SD cards.
75
Nobuhiro Iwamatsu3ec5f862014-12-17 08:03:00 +090076config SH_SDHI
77 bool "SuperH/Renesas ARM SoCs on-chip SDHI host controller support"
78 depends on RMOBILE
79 help
80 Support for the on-chip SDHI host controller on SuperH/Renesas ARM SoCs platform
81
Andrei Pistiricabe033172016-01-28 15:30:18 +053082config PIC32_SDHCI
83 bool "Microchip PIC32 on-chip SDHCI support"
84 depends on DM_MMC && MACH_PIC32
85 help
86 Support for Microchip PIC32 SDHCI controller.
87
Michal Simek90770fe2016-02-04 11:43:40 +010088config ZYNQ_SDHCI
89 bool "Arasan SDHCI controller support"
Michal Simek2cdeab22016-12-15 11:15:49 +010090 depends on DM_MMC && OF_CONTROL && BLK && DM_MMC_OPS
Michal Simek90770fe2016-02-04 11:43:40 +010091 help
92 Support for Arasan SDHCI host controller on Zynq/ZynqMP ARM SoCs platform
93
Kever Yang65922e02016-07-18 17:00:58 +080094config ROCKCHIP_SDHCI
95 bool "Arasan SDHCI controller for Rockchip support"
96 depends on DM_MMC && BLK && DM_MMC_OPS
97 help
98 Support for Arasan SDHCI host controller on Rockchip ARM SoCs platform
99
Masahiro Yamadaa0cfcc02016-02-18 19:52:48 +0900100config MMC_UNIPHIER
101 bool "UniPhier SD/MMC Host Controller support"
102 depends on ARCH_UNIPHIER
Masahiro Yamadae67eac02016-09-14 01:06:03 +0900103 depends on BLK
Masahiro Yamadab26daaa2016-08-25 14:52:35 +0900104 select DM_MMC_OPS
Masahiro Yamadaa0cfcc02016-02-18 19:52:48 +0900105 help
106 This selects support for the SD/MMC Host Controller on UniPhier SoCs.
107
Simon Glassf9eebac2016-05-01 13:52:42 -0600108config SANDBOX_MMC
109 bool "Sandbox MMC support"
110 depends on MMC && SANDBOX
111 help
112 This select a dummy sandbox MMC driver. At present this does nothing
113 other than allow sandbox to be build with MMC support. This
114 improves build coverage for sandbox and makes it easier to detect
115 MMC build errors with sandbox.
116
Nobuhiro Iwamatsu3ec5f862014-12-17 08:03:00 +0900117endmenu