]> git.ipfire.org Git - people/ms/u-boot.git/blame - drivers/mmc/Kconfig
Prepare v2016.11
[people/ms/u-boot.git] / drivers / mmc / Kconfig
CommitLineData
72d42bad
NI
1menu "MMC Host controller Support"
2
7a777f6d
MR
3config MMC
4 bool "Enable MMC support"
f376a3cb 5 depends on ARCH_SUNXI || SANDBOX
7a777f6d
MR
6 help
7 TODO: Move all architectures to use this option
8
e7ecf7cb
SG
9config DM_MMC
10 bool "Enable MMC controllers using Driver Model"
11 depends on DM
12 help
62a3b7dd 13 This enables the MultiMediaCard (MMC) uclass which supports MMC and
e7ecf7cb
SG
14 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
8ca51e51
SG
19config DM_MMC_OPS
20 bool "Support MMC controller operations using Driver Model"
21 depends on DM_MMC
252788b4 22 default y if DM_MMC
8ca51e51
SG
23 help
24 Driver model provides a means of supporting device operations. This
25 option moves MMC operations under the control of driver model. The
26 option will be removed as soon as all DM_MMC drivers use it, as it
27 will the only supported behaviour.
28
9d11d12a
MK
29config MSM_SDHCI
30 bool "Qualcomm SDHCI controller"
4b00bdb7 31 depends on DM_MMC && BLK && DM_MMC_OPS
9d11d12a
MK
32 help
33 Enables support for SDHCI 2.0 controller present on some Qualcomm
34 Snapdragon devices. This device is compatible with eMMC v4.5 and
35 SD 3.0 specifications. Both SD and eMMC devices are supported.
36 Card-detect gpios are not supported.
37
a0d0d86f
WY
38config ATMEL_SDHCI
39 bool "Atmel SDHCI controller support"
40 depends on DM_MMC && BLK && DM_MMC_OPS && ARCH_AT91
41 help
42 This enables support for the Atmel SDHCI controller, which supports
43 the embedded MultiMedia Card (e.MMC) Specification V4.51, the SD
44 Memory Card Specification V3.0, and the SDIO V3.0 specification.
45 It is compliant with the SD Host Controller Standard V3.0
46 specification.
47
a8cb4fb5
SG
48config ROCKCHIP_DWMMC
49 bool "Rockchip SD/MMC controller support"
50 depends on DM_MMC && OF_CONTROL
51 help
52 This enables support for the Rockchip SD/MMM controller, which is
53 based on Designware IP. The device is compatible with at least
54 SD 3.0, SDIO 3.0 and MMC 4.5 and supports common eMMC chips as well
55 as removeable SD and micro-SD cards.
56
72d42bad
NI
57config SH_SDHI
58 bool "SuperH/Renesas ARM SoCs on-chip SDHI host controller support"
59 depends on RMOBILE
60 help
61 Support for the on-chip SDHI host controller on SuperH/Renesas ARM SoCs platform
62
102142c9
AP
63config PIC32_SDHCI
64 bool "Microchip PIC32 on-chip SDHCI support"
65 depends on DM_MMC && MACH_PIC32
66 help
67 Support for Microchip PIC32 SDHCI controller.
68
ce0335f2
MS
69config ZYNQ_SDHCI
70 bool "Arasan SDHCI controller support"
71 depends on DM_MMC && OF_CONTROL
72 help
73 Support for Arasan SDHCI host controller on Zynq/ZynqMP ARM SoCs platform
74
79c83065
KY
75config ROCKCHIP_SDHCI
76 bool "Arasan SDHCI controller for Rockchip support"
77 depends on DM_MMC && BLK && DM_MMC_OPS
78 help
79 Support for Arasan SDHCI host controller on Rockchip ARM SoCs platform
80
a111bfbf
MY
81config MMC_UNIPHIER
82 bool "UniPhier SD/MMC Host Controller support"
83 depends on ARCH_UNIPHIER
14f47234 84 depends on BLK
3937404f 85 select DM_MMC_OPS
a111bfbf
MY
86 help
87 This selects support for the SD/MMC Host Controller on UniPhier SoCs.
88
f376a3cb
SG
89config SANDBOX_MMC
90 bool "Sandbox MMC support"
91 depends on MMC && SANDBOX
92 help
93 This select a dummy sandbox MMC driver. At present this does nothing
94 other than allow sandbox to be build with MMC support. This
95 improves build coverage for sandbox and makes it easier to detect
96 MMC build errors with sandbox.
97
72d42bad 98endmenu