blob: 0f8a230de2f322fe27673ce10e6c303ba893ec5d [file] [log] [blame]
Thomas Gleixnerec8f24b2019-05-19 13:07:45 +01001# SPDX-License-Identifier: GPL-2.0-only
Pierre Ossman1c6a0712007-02-11 19:57:36 +01002#
3# MMC/SD host controller drivers
4#
5
Pierre Ossman57105732008-09-07 13:16:58 +02006comment "MMC/SD/SDIO Host Controller Drivers"
Pierre Ossman1c6a0712007-02-11 19:57:36 +01007
Shawn Lin03596b92017-07-19 15:55:47 +08008config MMC_DEBUG
Wolfram Sangb4f146f52017-09-05 20:27:50 +02009 bool "MMC host drivers debugging"
Shawn Lin03596b92017-07-19 15:55:47 +080010 depends on MMC != n
11 help
12 This is an option for use by developers; most people should
13 say N here. This enables MMC host driver debugging. And further
14 added host drivers please don't invent their private macro for
15 debugging.
16
Pierre Ossman1c6a0712007-02-11 19:57:36 +010017config MMC_ARMMMCI
18 tristate "ARM AMBA Multimedia Card Interface support"
Jan Engelhardt790864d2007-05-08 22:30:32 +020019 depends on ARM_AMBA
Pierre Ossman1c6a0712007-02-11 19:57:36 +010020 help
21 This selects the ARM(R) AMBA(R) PrimeCell Multimedia Card
22 Interface (PL180 and PL181) support. If you have an ARM(R)
23 platform with a Multimedia Card slot, say Y or M here.
24
25 If unsure, say N.
26
Srinivas Kandagatla9cb15142014-07-29 03:50:30 +010027config MMC_QCOM_DML
Srinivas Kandagatla1ac99062017-08-30 14:22:12 +020028 bool "Qualcomm Data Mover for SD Card Controller"
Srinivas Kandagatla9cb15142014-07-29 03:50:30 +010029 depends on MMC_ARMMMCI && QCOM_BAM_DMA
30 default y
31 help
32 This selects the Qualcomm Data Mover lite/local on SD Card controller.
33 This option will enable the dma to work correctly, if you are using
34 Qcom SOCs and MMC, you would probably need this option to get DMA working.
35
36 if unsure, say N.
37
Ludovic Barre46b723d2018-10-08 14:08:55 +020038config MMC_STM32_SDMMC
39 bool "STMicroelectronics STM32 SDMMC Controller"
40 depends on MMC_ARMMMCI
41 default y
42 help
43 This selects the STMicroelectronics STM32 SDMMC host controller.
44 If you have a STM32 sdmmc host with internal DMA say Y here.
45
46 If unsure, say N.
47
Pierre Ossman1c6a0712007-02-11 19:57:36 +010048config MMC_PXA
49 tristate "Intel PXA25x/26x/27x Multimedia Card Interface support"
Jan Engelhardt790864d2007-05-08 22:30:32 +020050 depends on ARCH_PXA
Pierre Ossman1c6a0712007-02-11 19:57:36 +010051 help
52 This selects the Intel(R) PXA(R) Multimedia card Interface.
53 If you have a PXA(R) platform with a Multimedia Card slot,
54 say Y or M here.
55
56 If unsure, say N.
57
58config MMC_SDHCI
Pierre Ossman34671dc2008-01-05 23:18:58 +010059 tristate "Secure Digital Host Controller Interface support"
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +010060 depends on HAS_DMA
Pierre Ossman1c6a0712007-02-11 19:57:36 +010061 help
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +010062 This selects the generic Secure Digital Host Controller Interface.
Pierre Ossman1c6a0712007-02-11 19:57:36 +010063 It is used by manufacturers such as Texas Instruments(R), Ricoh(R)
64 and Toshiba(R). Most controllers found in laptops are of this type.
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +010065
66 If you have a controller with this interface, say Y or M here. You
67 also need to enable an appropriate bus interface.
68
69 If unsure, say N.
70
Anton Vorontsov4e4141a2009-03-17 00:13:46 +030071config MMC_SDHCI_IO_ACCESSORS
72 bool
73 depends on MMC_SDHCI
74 help
75 This is silent Kconfig symbol that is selected by the drivers that
76 need to overwrite SDHCI IO memory accessors.
77
Albert Herranz7657c3a2009-12-17 15:27:20 -080078config MMC_SDHCI_BIG_ENDIAN_32BIT_BYTE_SWAPPER
79 bool
Jean Delvare82813b72015-01-26 11:35:44 +010080 depends on MMC_SDHCI
Albert Herranz7657c3a2009-12-17 15:27:20 -080081 select MMC_SDHCI_IO_ACCESSORS
82 help
83 This option is selected by drivers running on big endian hosts
84 and performing I/O to a SDHCI controller through a bus that
85 implements a hardware byte swapper using a 32-bit datum.
86 This endian mapping mode is called "data invariance" and
87 has the effect of scrambling the addresses and formats of data
88 accessed in sizes other than the datum size.
89
yangbo lu2ca63522015-10-08 18:36:47 +080090 This is the case for the Nintendo Wii SDHCI.
Albert Herranz7657c3a2009-12-17 15:27:20 -080091
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +010092config MMC_SDHCI_PCI
93 tristate "SDHCI support on PCI bus"
94 depends on MMC_SDHCI && PCI
Adrian Hunter8ee82bd2017-11-29 15:41:06 +020095 select MMC_CQHCI
Adrian Hunter0a49a612019-05-06 11:38:53 +030096 select IOSF_MBI if X86
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +010097 help
98 This selects the PCI Secure Digital Host Controller Interface.
99 Most controllers found today are PCI devices.
100
Pierre Ossman1c6a0712007-02-11 19:57:36 +0100101 If you have a controller with this interface, say Y or M here.
102
103 If unsure, say N.
104
Philip Langdale5ae70292007-09-15 12:54:08 -0700105config MMC_RICOH_MMC
Kees Cook86147c82012-10-02 11:17:47 -0700106 bool "Ricoh MMC Controller Disabler"
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +0100107 depends on MMC_SDHCI_PCI
Jean Delvareba2f7322015-01-26 11:44:15 +0100108 default y
Philip Langdale5ae70292007-09-15 12:54:08 -0700109 help
Maxim Levitsky03cd8f72010-03-05 13:43:20 -0800110 This adds a pci quirk to disable Ricoh MMC Controller. This
Philip Langdale5ae70292007-09-15 12:54:08 -0700111 proprietary controller is unnecessary because the SDHCI driver
112 supports MMC cards on the SD controller, but if it is not
113 disabled, it will steal the MMC cards away - rendering them
Maxim Levitsky03cd8f72010-03-05 13:43:20 -0800114 useless. It is safe to select this even if you don't
Philip Langdale5ae70292007-09-15 12:54:08 -0700115 have a Ricoh based card reader.
116
Philip Langdale5ae70292007-09-15 12:54:08 -0700117 If unsure, say Y.
118
Adrian Hunterc4e05032012-11-23 21:17:34 +0100119config MMC_SDHCI_ACPI
120 tristate "SDHCI support for ACPI enumerated SDHCI controllers"
Sinan Kayac2eda8a2019-01-05 10:06:04 +0000121 depends on MMC_SDHCI && ACPI && PCI
Adrian Hunter6e1c7d62016-04-15 14:06:57 +0300122 select IOSF_MBI if X86
Adrian Hunterc4e05032012-11-23 21:17:34 +0100123 help
124 This selects support for ACPI enumerated SDHCI controllers,
125 identified by ACPI Compatibility ID PNP0D40 or specific
126 ACPI Hardware IDs.
127
128 If you have a controller with this interface, say Y or M here.
129
130 If unsure, say N.
131
Shawn Guof0de8362011-06-02 10:57:50 +0800132config MMC_SDHCI_PLTFM
133 tristate "SDHCI platform and OF driver helper"
Shawn Guo38576af2011-05-27 23:48:14 +0800134 depends on MMC_SDHCI
Shawn Guof0de8362011-06-02 10:57:50 +0800135 help
136 This selects the common helper functions support for Secure Digital
137 Host Controller Interface based platform and OF drivers.
138
139 If you have a controller with this interface, say Y or M here.
140
141 If unsure, say N.
142
Soren Brinkmanne3ec3a32013-12-02 10:02:36 -0800143config MMC_SDHCI_OF_ARASAN
144 tristate "SDHCI OF support for the Arasan SDHCI controllers"
145 depends on MMC_SDHCI_PLTFM
146 depends on OF
Douglas Andersonc390f212016-06-20 10:56:50 -0700147 depends on COMMON_CLK
Shawn Lin84362d72018-01-16 11:43:51 +0800148 select MMC_CQHCI
Soren Brinkmanne3ec3a32013-12-02 10:02:36 -0800149 help
150 This selects the Arasan Secure Digital Host Controller Interface
151 (SDHCI). This hardware is found e.g. in Xilinx' Zynq SoC.
152
153 If you have a controller with this interface, say Y or M here.
154
155 If unsure, say N.
156
Andrew Jefferybb7b8ec2019-08-07 10:06:29 +0930157config MMC_SDHCI_OF_ASPEED
158 tristate "SDHCI OF support for the ASPEED SDHCI controller"
159 depends on MMC_SDHCI_PLTFM
160 depends on OF
161 help
162 This selects the ASPEED Secure Digital Host Controller Interface.
163
164 If you have a controller with this interface, say Y or M here. You
165 also need to enable an appropriate bus interface.
166
167 If unsure, say N.
168
ludovic.desroches@atmel.combb5f8ea2015-07-29 16:22:47 +0200169config MMC_SDHCI_OF_AT91
170 tristate "SDHCI OF support for the Atmel SDMMC controller"
171 depends on MMC_SDHCI_PLTFM
172 depends on OF
ludovic.desroches@atmel.combb5f8ea2015-07-29 16:22:47 +0200173 help
174 This selects the Atmel SDMMC driver
175
Shawn Guof0de8362011-06-02 10:57:50 +0800176config MMC_SDHCI_OF_ESDHC
177 tristate "SDHCI OF support for the Freescale eSDHC controller"
178 depends on MMC_SDHCI_PLTFM
yangbo lu2ca63522015-10-08 18:36:47 +0800179 depends on PPC || ARCH_MXC || ARCH_LAYERSCAPE
180 select MMC_SDHCI_IO_ACCESSORS
yangbo lu151ede42016-11-09 11:14:12 +0800181 select FSL_GUTS
Albert Herranz7657c3a2009-12-17 15:27:20 -0800182 help
183 This selects the Freescale eSDHC controller support.
Anton Vorontsov3085e9c2009-03-17 00:14:05 +0300184
Shawn Guof0de8362011-06-02 10:57:50 +0800185 If you have a controller with this interface, say Y or M here.
186
Anton Vorontsov3085e9c2009-03-17 00:14:05 +0300187 If unsure, say N.
188
Albert Herranz1144ab52009-12-17 15:27:20 -0800189config MMC_SDHCI_OF_HLWD
Shawn Guof0de8362011-06-02 10:57:50 +0800190 tristate "SDHCI OF support for the Nintendo Wii SDHCI controllers"
191 depends on MMC_SDHCI_PLTFM
Kevin Hao5f2e0972015-02-26 20:08:21 +0800192 depends on PPC
Albert Herranz1144ab52009-12-17 15:27:20 -0800193 select MMC_SDHCI_BIG_ENDIAN_32BIT_BYTE_SWAPPER
194 help
195 This selects the Secure Digital Host Controller Interface (SDHCI)
196 found in the "Hollywood" chipset of the Nintendo Wii video game
197 console.
198
Shawn Guof0de8362011-06-02 10:57:50 +0800199 If you have a controller with this interface, say Y or M here.
200
Albert Herranz1144ab52009-12-17 15:27:20 -0800201 If unsure, say N.
202
Jisheng Zhange438cf42018-07-06 15:23:55 +0800203config MMC_SDHCI_OF_DWCMSHC
204 tristate "SDHCI OF support for the Synopsys DWC MSHC"
205 depends on MMC_SDHCI_PLTFM
206 depends on OF
207 depends on COMMON_CLK
208 help
209 This selects Synopsys DesignWare Cores Mobile Storage Controller
210 support.
211 If you have a controller with this interface, say Y or M here.
212 If unsure, say N.
213
Masahiro Yamadaff6af282016-12-08 21:50:55 +0900214config MMC_SDHCI_CADENCE
215 tristate "SDHCI support for the Cadence SD/SDIO/eMMC controller"
216 depends on MMC_SDHCI_PLTFM
217 depends on OF
218 help
219 This selects the Cadence SD/SDIO/eMMC driver.
220
221 If you have a controller with this interface, say Y or M here.
222
223 If unsure, say N.
224
Anton Vorontsov20b1597b2010-08-10 18:01:49 -0700225config MMC_SDHCI_CNS3XXX
Shawn Guo85d65092011-05-27 23:48:12 +0800226 tristate "SDHCI support on the Cavium Networks CNS3xxx SoC"
Anton Vorontsov20b1597b2010-08-10 18:01:49 -0700227 depends on ARCH_CNS3XXX
Shawn Guof0de8362011-06-02 10:57:50 +0800228 depends on MMC_SDHCI_PLTFM
Anton Vorontsov20b1597b2010-08-10 18:01:49 -0700229 help
230 This selects the SDHCI support for CNS3xxx System-on-Chip devices.
231
Shawn Guof0de8362011-06-02 10:57:50 +0800232 If you have a controller with this interface, say Y or M here.
233
Anton Vorontsov20b1597b2010-08-10 18:01:49 -0700234 If unsure, say N.
235
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200236config MMC_SDHCI_ESDHC_IMX
Shawn Guo95a24822011-09-19 17:32:21 +0800237 tristate "SDHCI support for the Freescale eSDHC/uSDHC i.MX controller"
Sascha Hauer2b795512011-08-24 08:41:08 +0200238 depends on ARCH_MXC
Shawn Guof0de8362011-06-02 10:57:50 +0800239 depends on MMC_SDHCI_PLTFM
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200240 select MMC_SDHCI_IO_ACCESSORS
BOUGH CHENbb6e3582019-01-07 10:11:39 +0000241 select MMC_CQHCI
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200242 help
Shawn Guo95a24822011-09-19 17:32:21 +0800243 This selects the Freescale eSDHC/uSDHC controller support
244 found on i.MX25, i.MX35 i.MX5x and i.MX6x.
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200245
Shawn Guof0de8362011-06-02 10:57:50 +0800246 If you have a controller with this interface, say Y or M here.
247
Wolfram Sang95f25ef2010-10-15 12:21:04 +0200248 If unsure, say N.
249
Mike Rapoport985b1aa2010-11-07 16:57:12 -0500250config MMC_SDHCI_DOVE
Shawn Guo85d65092011-05-27 23:48:12 +0800251 tristate "SDHCI support on Marvell's Dove SoC"
Sebastian Hesselbarthec4422a2014-05-19 20:02:51 +0200252 depends on ARCH_DOVE || MACH_DOVE
Shawn Guof0de8362011-06-02 10:57:50 +0800253 depends on MMC_SDHCI_PLTFM
Mike Rapoport985b1aa2010-11-07 16:57:12 -0500254 select MMC_SDHCI_IO_ACCESSORS
255 help
256 This selects the Secure Digital Host Controller Interface in
257 Marvell's Dove SoC.
258
Shawn Guof0de8362011-06-02 10:57:50 +0800259 If you have a controller with this interface, say Y or M here.
260
Mike Rapoport985b1aa2010-11-07 16:57:12 -0500261 If unsure, say N.
262
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500263config MMC_SDHCI_TEGRA
Shawn Guo85d65092011-05-27 23:48:12 +0800264 tristate "SDHCI platform support for the Tegra SD/MMC Controller"
265 depends on ARCH_TEGRA
Shawn Guof0de8362011-06-02 10:57:50 +0800266 depends on MMC_SDHCI_PLTFM
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500267 select MMC_SDHCI_IO_ACCESSORS
Sowjanya Komatineni3c4019f2019-01-23 11:30:54 -0800268 select MMC_CQHCI
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500269 help
270 This selects the Tegra SD/MMC controller. If you have a Tegra
271 platform with SD or MMC devices, say Y or M here.
272
273 If unsure, say N.
274
Ben Dooks0d1bb412009-06-14 13:52:37 +0100275config MMC_SDHCI_S3C
276 tristate "SDHCI support on Samsung S3C SoC"
Kyungmin Park930a6f72010-08-19 14:13:35 -0700277 depends on MMC_SDHCI && PLAT_SAMSUNG
Ben Dooks0d1bb412009-06-14 13:52:37 +0100278 help
279 This selects the Secure Digital Host Controller Interface (SDHCI)
280 often referrered to as the HSMMC block in some of the Samsung S3C
281 range of SoC.
282
Ben Dooks0d1bb412009-06-14 13:52:37 +0100283 If you have a controller with this interface, say Y or M here.
284
285 If unsure, say N.
286
Barry Songb3b665b2013-03-21 16:27:19 +0800287config MMC_SDHCI_SIRF
288 tristate "SDHCI support on CSR SiRFprimaII and SiRFmarco SoCs"
289 depends on ARCH_SIRF
290 depends on MMC_SDHCI_PLTFM
Weijun Yanga1b0b972015-04-27 08:15:14 +0000291 select MMC_SDHCI_IO_ACCESSORS
Barry Songb3b665b2013-03-21 16:27:19 +0800292 help
293 This selects the SDHCI support for SiRF System-on-Chip devices.
294
295 If you have a controller with this interface, say Y or M here.
296
297 If unsure, say N.
298
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800299config MMC_SDHCI_PXAV3
300 tristate "Marvell MMP2 SD Host Controller support (PXAV3)"
301 depends on CLKDEV_LOOKUP
Arnd Bergmann5d01b762014-06-05 23:14:41 +0200302 depends on MMC_SDHCI_PLTFM
Jean Delvaredaa30542015-02-23 11:30:40 +0100303 depends on ARCH_BERLIN || ARCH_MMP || ARCH_MVEBU || COMPILE_TEST
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800304 default CPU_MMP2
305 help
306 This selects the Marvell(R) PXAV3 SD Host Controller.
307 If you have a MMP2 platform with SD Host Controller
308 and a card slot, say Y or M here.
309
310 If unsure, say N.
311
Zhangfei Gao9f5d71e2011-06-08 17:41:58 +0800312config MMC_SDHCI_PXAV2
313 tristate "Marvell PXA9XX SD Host Controller support (PXAV2)"
314 depends on CLKDEV_LOOKUP
Arnd Bergmann5d01b762014-06-05 23:14:41 +0200315 depends on MMC_SDHCI_PLTFM
Jean Delvare8a8735e2015-01-26 11:23:28 +0100316 depends on ARCH_MMP || COMPILE_TEST
Zhangfei Gao9f5d71e2011-06-08 17:41:58 +0800317 default CPU_PXA910
318 help
319 This selects the Marvell(R) PXAV2 SD Host Controller.
320 If you have a PXA9XX platform with SD Host Controller
321 and a card slot, say Y or M here.
322
323 If unsure, say N.
324
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700325config MMC_SDHCI_SPEAR
326 tristate "SDHCI support on ST SPEAr platform"
327 depends on MMC_SDHCI && PLAT_SPEAR
Ulf Hanssonbbd7f0a2015-03-04 14:57:44 +0100328 depends on OF
Viresh KUMARc63b3cb2010-05-26 14:42:10 -0700329 help
330 This selects the Secure Digital Host Controller Interface (SDHCI)
331 often referrered to as the HSMMC block in some of the ST SPEAR range
332 of SoC
333
334 If you have a controller with this interface, say Y or M here.
335
336 If unsure, say N.
337
Ben Dooks0d1bb412009-06-14 13:52:37 +0100338config MMC_SDHCI_S3C_DMA
339 bool "DMA support on S3C SDHCI"
Kees Cook86147c82012-10-02 11:17:47 -0700340 depends on MMC_SDHCI_S3C
Ben Dooks0d1bb412009-06-14 13:52:37 +0100341 help
342 Enable DMA support on the Samsung S3C SDHCI glue. The DMA
343 has proved to be problematic if the controller encounters
344 certain errors, and thus should be treated with care.
345
346 YMMV.
347
Christian Daudt01ebea12013-06-20 14:26:37 -0700348config MMC_SDHCI_BCM_KONA
349 tristate "SDHCI support on Broadcom KONA platform"
Christian Daudtfc2bd2e2013-09-23 10:20:35 -0700350 depends on ARCH_BCM_MOBILE
Arnd Bergmann5d01b762014-06-05 23:14:41 +0200351 depends on MMC_SDHCI_PLTFM
Christian Daudt01ebea12013-06-20 14:26:37 -0700352 help
353 This selects the Broadcom Kona Secure Digital Host Controller
354 Interface(SDHCI) support.
355 This is used in Broadcom mobile SoCs.
356
357 If you have a controller with this interface, say Y or M here.
358
Vincent Yang87a50742015-01-20 16:05:18 +0800359config MMC_SDHCI_F_SDH30
360 tristate "SDHCI support for Fujitsu Semiconductor F_SDH30"
361 depends on MMC_SDHCI_PLTFM
Ard Biesheuvel90e1d8c2018-01-08 15:44:19 +0000362 depends on OF || ACPI
Vincent Yang87a50742015-01-20 16:05:18 +0800363 help
364 This selects the Secure Digital Host Controller Interface (SDHCI)
365 Needed by some Fujitsu SoC for MMC / SD / SDIO support.
366 If you have a controller with this interface, say Y or M here.
367
368 If unsure, say N.
369
Scott Brandenb580c522015-02-09 16:06:30 -0800370config MMC_SDHCI_IPROC
Stefan Wahren77cb7d32016-01-27 22:25:41 +0000371 tristate "SDHCI support for the BCM2835 & iProc SD/MMC Controller"
372 depends on ARCH_BCM2835 || ARCH_BCM_IPROC || COMPILE_TEST
Scott Brandenb580c522015-02-09 16:06:30 -0800373 depends on MMC_SDHCI_PLTFM
Srinath Mannam7c7ba432018-08-05 13:22:52 +0530374 depends on OF || ACPI
Scott Brandenb580c522015-02-09 16:06:30 -0800375 default ARCH_BCM_IPROC
376 select MMC_SDHCI_IO_ACCESSORS
377 help
378 This selects the iProc SD/MMC controller.
379
Stefan Wahren77cb7d32016-01-27 22:25:41 +0000380 If you have a BCM2835 or IPROC platform with SD or MMC devices,
Scott Brandenb580c522015-02-09 16:06:30 -0800381 say Y or M here.
382
383 If unsure, say N.
384
Kevin Hilman51c5d842016-10-19 11:18:24 -0700385config MMC_MESON_GX
Nan Lie79dc1b2018-04-03 18:06:51 +0800386 tristate "Amlogic S905/GX*/AXG SD/MMC Host Controller support"
Kevin Hilman51c5d842016-10-19 11:18:24 -0700387 depends on ARCH_MESON && MMC
388 help
389 This selects support for the Amlogic SD/MMC Host Controller
Nan Lie79dc1b2018-04-03 18:06:51 +0800390 found on the S905/GX*/AXG family of SoCs. This controller is
Kevin Hilman51c5d842016-10-19 11:18:24 -0700391 MMC 5.1 compliant and supports SD, eMMC and SDIO interfaces.
392
393 If you have a controller with this interface, say Y here.
394
Carlo Caioneed80a132017-10-03 13:24:17 +0200395config MMC_MESON_MX_SDIO
396 tristate "Amlogic Meson6/Meson8/Meson8b SD/MMC Host Controller support"
397 depends on ARCH_MESON || COMPILE_TEST
398 depends on COMMON_CLK
Carlo Caioneed80a132017-10-03 13:24:17 +0200399 depends on OF
400 help
401 This selects support for the SD/MMC Host Controller on
402 Amlogic Meson6, Meson8 and Meson8b SoCs.
403
404 If you have a controller with this interface, say Y or M here.
405 If unsure, say N.
406
Jonas Jensen1b66e942014-04-09 15:54:11 +0200407config MMC_MOXART
408 tristate "MOXART SD/MMC Host Controller support"
409 depends on ARCH_MOXART && MMC
410 help
411 This selects support for the MOXART SD/MMC Host Controller.
412 MOXA provides one multi-functional card reader which can
413 be found on some embedded hardware such as UC-7112-LX.
414 If you have a controller with this interface, say Y here.
415
Peter Griffinf52d9c42014-07-09 16:07:32 +0100416config MMC_SDHCI_ST
417 tristate "SDHCI support on STMicroelectronics SoC"
Ivan Mikhaylov2feada52017-06-30 14:53:30 +0300418 depends on ARCH_STI || FSP2
Peter Griffinf52d9c42014-07-09 16:07:32 +0100419 depends on MMC_SDHCI_PLTFM
420 select MMC_SDHCI_IO_ACCESSORS
421 help
422 This selects the Secure Digital Host Controller Interface in
423 STMicroelectronics SoCs.
424
425 If you have a controller with this interface, say Y or M here.
426 If unsure, say N.
427
Pierre Ossman1c6a0712007-02-11 19:57:36 +0100428config MMC_OMAP
429 tristate "TI OMAP Multimedia Card Interface support"
Jan Engelhardt790864d2007-05-08 22:30:32 +0200430 depends on ARCH_OMAP
Arnd Bergmann60a549f2014-06-05 23:14:40 +0200431 depends on TPS65010 || !MACH_OMAP_H2
Pierre Ossman1c6a0712007-02-11 19:57:36 +0100432 help
433 This selects the TI OMAP Multimedia card Interface.
434 If you have an OMAP board with a Multimedia Card slot,
435 say Y or M here.
436
437 If unsure, say N.
438
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100439config MMC_OMAP_HS
440 tristate "TI OMAP High Speed Multimedia Card Interface support"
Lokesh Vutlaa7cedab2015-10-20 16:50:06 -0500441 depends on ARCH_OMAP2PLUS || ARCH_KEYSTONE || COMPILE_TEST
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100442 help
443 This selects the TI OMAP High Speed Multimedia card Interface.
Amarinder Bindrabcf24e12013-07-10 21:36:24 +0530444 If you have an omap2plus board with a Multimedia Card slot,
445 say Y or M here.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100446
447 If unsure, say N.
448
Pierre Ossman1c6a0712007-02-11 19:57:36 +0100449config MMC_WBSD
450 tristate "Winbond W83L51xD SD/MMC Card Interface support"
Jan Engelhardt790864d2007-05-08 22:30:32 +0200451 depends on ISA_DMA_API
Pierre Ossman1c6a0712007-02-11 19:57:36 +0100452 help
453 This selects the Winbond(R) W83L51xD Secure digital and
Enrico Weigelt, metux IT consult6f5490342019-03-06 19:27:51 +0100454 Multimedia card Interface.
Pierre Ossman1c6a0712007-02-11 19:57:36 +0100455 If you have a machine with a integrated W83L518D or W83L519D
456 SD/MMC card reader, say Y or M here.
457
458 If unsure, say N.
459
Oleksij Rempelc5413ad2018-12-02 11:30:46 +0100460config MMC_ALCOR
461 tristate "Alcor Micro/Alcor Link SD/MMC controller"
462 depends on MISC_ALCOR_PCI
463 help
464 Say Y here to include driver code to support SD/MMC card interface
465 of Alcor Micro PCI-E card reader
466
Pierre Ossman1c6a0712007-02-11 19:57:36 +0100467config MMC_AU1X
468 tristate "Alchemy AU1XX0 MMC Card Interface support"
Manuel Lauss3766386032011-08-12 11:39:45 +0200469 depends on MIPS_ALCHEMY
Pierre Ossman1c6a0712007-02-11 19:57:36 +0100470 help
471 This selects the AMD Alchemy(R) Multimedia card interface.
472 If you have a Alchemy platform with a MMC slot, say Y or M here.
473
474 If unsure, say N.
475
Haavard Skinnemoen7d2be072008-06-30 18:35:03 +0200476config MMC_ATMELMCI
Ludovic Desrochesd6a20de2012-10-29 15:27:55 +0100477 tristate "Atmel SD/MMC Driver (Multimedia Card Interface)"
Andy Shevchenkoef4b1602017-05-09 20:21:17 +0300478 depends on ARCH_AT91
Haavard Skinnemoen7d2be072008-06-30 18:35:03 +0200479 help
Andy Shevchenkoef4b1602017-05-09 20:21:17 +0300480 This selects the Atmel Multimedia Card Interface driver.
481 If you have an AT91 platform with a Multimedia Card slot,
482 say Y or M here.
Haavard Skinnemoen7d2be072008-06-30 18:35:03 +0200483
484 If unsure, say N.
485
Georgi Djakov0eb0d9f2014-03-10 17:37:12 +0200486config MMC_SDHCI_MSM
487 tristate "Qualcomm SDHCI Controller Support"
Georgi Djakov6096d7a82014-07-11 20:48:13 +0300488 depends on ARCH_QCOM || (ARM && COMPILE_TEST)
Georgi Djakov0eb0d9f2014-03-10 17:37:12 +0200489 depends on MMC_SDHCI_PLTFM
Vijay Viswanath99d570d2017-09-27 11:04:42 +0530490 select MMC_SDHCI_IO_ACCESSORS
Georgi Djakov0eb0d9f2014-03-10 17:37:12 +0200491 help
492 This selects the Secure Digital Host Controller Interface (SDHCI)
493 support present in Qualcomm SOCs. The controller supports
494 SD/MMC/SDIO devices.
495
496 If you have a controller with this interface, say Y or M here.
497
498 If unsure, say N.
499
Sascha Hauerd96be872009-01-06 17:04:14 +0100500config MMC_MXC
Anatolij Gustschinc7ceab02013-04-08 23:28:06 +0200501 tristate "Freescale i.MX21/27/31 or MPC512x Multimedia Card support"
502 depends on ARCH_MXC || PPC_MPC512x
Sascha Hauerd96be872009-01-06 17:04:14 +0100503 help
Anatolij Gustschinc7ceab02013-04-08 23:28:06 +0200504 This selects the Freescale i.MX21, i.MX27, i.MX31 or MPC512x
505 Multimedia Card Interface. If you have an i.MX or MPC512x platform
506 with a Multimedia Card slot, say Y or M here.
Sascha Hauerd96be872009-01-06 17:04:14 +0100507
508 If unsure, say N.
509
Shawn Guoe4243f12011-02-21 18:35:28 +0800510config MMC_MXS
511 tristate "Freescale MXS Multimedia Card Interface support"
512 depends on ARCH_MXS && MXS_DMA
513 help
514 This selects the Freescale SSP MMC controller found on MXS based
515 platforms like mx23/28.
516
517 If unsure, say N.
518
Pierre Ossman1c6a0712007-02-11 19:57:36 +0100519config MMC_TIFM_SD
Kees Cook86147c82012-10-02 11:17:47 -0700520 tristate "TI Flash Media MMC/SD Interface support"
521 depends on PCI
Pierre Ossman1c6a0712007-02-11 19:57:36 +0100522 select TIFM_CORE
523 help
524 Say Y here if you want to be able to access MMC/SD cards with
525 the Texas Instruments(R) Flash Media card reader, found in many
526 laptops.
527 This option 'selects' (turns on, enables) 'TIFM_CORE', but you
528 probably also need appropriate card reader host adapter, such as
529 'Misc devices: TI Flash Media PCI74xx/PCI76xx host adapter support
530 (TIFM_7XX1)'.
531
Enrico Weigelt, metux IT consult6f5490342019-03-06 19:27:51 +0100532 To compile this driver as a module, choose M here: the
Pierre Ossman1c6a0712007-02-11 19:57:36 +0100533 module will be called tifm_sd.
534
Maen Suleiman236caa72009-02-14 03:07:26 -0500535config MMC_MVSDIO
536 tristate "Marvell MMC/SD/SDIO host driver"
537 depends on PLAT_ORION
Linus Walleij17da6782015-11-25 14:57:57 +0100538 depends on OF
Maen Suleiman236caa72009-02-14 03:07:26 -0500539 ---help---
540 This selects the Marvell SDIO host driver.
541 SDIO may currently be found on the Kirkwood 88F6281 and 88F6192
542 SoC controllers.
543
544 To compile this driver as a module, choose M here: the
545 module will be called mvsdio.
546
Vipin Bhandarib4cff452009-12-14 18:01:21 -0800547config MMC_DAVINCI
Enrico Weigelt, metux IT consult6f5490342019-03-06 19:27:51 +0100548 tristate "TI DAVINCI Multimedia Card Interface support"
549 depends on ARCH_DAVINCI
550 help
551 This selects the TI DAVINCI Multimedia card Interface.
552 If you have an DAVINCI board with a Multimedia Card slot,
553 say Y or M here. If unsure, say N.
Vipin Bhandarib4cff452009-12-14 18:01:21 -0800554
Mike Lockwood85c34d22013-01-21 23:43:46 +0000555config MMC_GOLDFISH
556 tristate "goldfish qemu Multimedia Card Interface support"
Luis de Bethencourt7f8a9a72015-10-10 17:08:32 +0100557 depends on GOLDFISH || COMPILE_TEST
Mike Lockwood85c34d22013-01-21 23:43:46 +0000558 help
559 This selects the Goldfish Multimedia card Interface emulation
560 found on the Goldfish Android virtual device emulation.
561
David Brownell15a05802007-08-08 09:12:54 -0700562config MMC_SPI
Pierre Ossman57105732008-09-07 13:16:58 +0200563 tristate "MMC/SD/SDIO over SPI"
Ian Moltone176c252017-07-18 13:19:15 +0100564 depends on SPI_MASTER && HAS_DMA
David Brownell15a05802007-08-08 09:12:54 -0700565 select CRC7
566 select CRC_ITU_T
567 help
Matt LaPlante692105b2009-01-26 11:12:25 +0100568 Some systems access MMC/SD/SDIO cards using a SPI controller
Pierre Ossman57105732008-09-07 13:16:58 +0200569 instead of using a "native" MMC/SD/SDIO controller. This has a
570 disadvantage of being relatively high overhead, but a compensating
571 advantage of working on many systems without dedicated MMC/SD/SDIO
572 controllers.
David Brownell15a05802007-08-08 09:12:54 -0700573
574 If unsure, or if your system has no SPI master driver, say N.
575
Thomas Kleffelbe518012008-06-30 22:40:24 +0100576config MMC_S3C
577 tristate "Samsung S3C SD/MMC Card Interface support"
Kukjin Kimb130d5c2012-02-03 14:29:23 +0900578 depends on ARCH_S3C24XX
Vasily Khoruzhickb45e4b52014-06-01 20:22:09 +0300579 depends on S3C24XX_DMAC
Thomas Kleffelbe518012008-06-30 22:40:24 +0100580 help
581 This selects a driver for the MCI interface found in
Enrico Weigelt, metux IT consult6f5490342019-03-06 19:27:51 +0100582 Samsung's S3C2410, S3C2412, S3C2440, S3C2442 CPUs.
Thomas Kleffelbe518012008-06-30 22:40:24 +0100583 If you have a board based on one of those and a MMC/SD
584 slot, say Y or M here.
585
586 If unsure, say N.
587
Ben Dooks5a2c4fe2009-10-01 15:44:20 -0700588config MMC_S3C_HW_SDIO_IRQ
Enrico Weigelt, metux IT consult6f5490342019-03-06 19:27:51 +0100589 bool "Hardware support for SDIO IRQ"
590 depends on MMC_S3C
591 help
592 Enable the hardware support for SDIO interrupts instead of using
593 the generic polling code.
Ben Dooks5a2c4fe2009-10-01 15:44:20 -0700594
Ben Dooks26f14942009-10-01 15:44:18 -0700595choice
596 prompt "Samsung S3C SD/MMC transfer code"
597 depends on MMC_S3C
598
599config MMC_S3C_PIO
600 bool "Use PIO transfers only"
601 help
602 Use PIO to transfer data between memory and the hardware.
603
604 PIO is slower than DMA as it requires CPU instructions to
605 move the data. This has been the traditional default for
606 the S3C MCI driver.
607
608config MMC_S3C_DMA
Kees Cook86147c82012-10-02 11:17:47 -0700609 bool "Use DMA transfers only"
Ben Dooks26f14942009-10-01 15:44:18 -0700610 help
611 Use DMA to transfer data between memory and the hardare.
612
613 Currently, the DMA support in this driver seems to not be
614 working properly and needs to be debugged before this
615 option is useful.
616
Ben Dooks26f14942009-10-01 15:44:18 -0700617endchoice
618
Sascha Sommer6a369132008-07-15 14:21:29 +0200619config MMC_SDRICOH_CS
Kees Cook86147c82012-10-02 11:17:47 -0700620 tristate "MMC/SD driver for Ricoh Bay1Controllers"
621 depends on PCI && PCMCIA
Sascha Sommer6a369132008-07-15 14:21:29 +0200622 help
623 Say Y here if your Notebook reports a Ricoh Bay1Controller PCMCIA
624 card whenever you insert a MMC or SD card into the card slot.
625
626 To compile this driver as a module, choose M here: the
627 module will be called sdricoh_cs.
628
Chunyan Zhangfb8bd902018-08-30 16:21:44 +0800629config MMC_SDHCI_SPRD
630 tristate "Spreadtrum SDIO host Controller"
631 depends on ARCH_SPRD
632 depends on MMC_SDHCI_PLTFM
633 select MMC_SDHCI_IO_ACCESSORS
634 help
635 This selects the SDIO Host Controller in Spreadtrum
636 SoCs, this driver supports R11(IP version: R11P0).
637
638 If you have a controller with this interface, say Y or M here.
639
640 If unsure, say N.
641
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100642config MMC_TMIO_CORE
643 tristate
644
Ian Molton4a489982008-07-15 16:02:21 +0100645config MMC_TMIO
646 tristate "Toshiba Mobile IO Controller (TMIO) MMC/SD function support"
Guennadi Liakhovetski42051e82011-03-14 09:52:33 +0100647 depends on MFD_TMIO || MFD_ASIC3
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100648 select MMC_TMIO_CORE
Ian Molton4a489982008-07-15 16:02:21 +0100649 help
650 This provides support for the SD/MMC cell found in TC6393XB,
Philipp Zabele6f2c7a2009-06-04 20:12:37 +0200651 T7L66XB and also HTC ASIC3
Michał Mirosław5f5bac82009-05-22 20:33:59 +0200652
Guennadi Liakhovetski42051e82011-03-14 09:52:33 +0100653config MMC_SDHI
Simon Hormanb5b6a5f2017-05-10 11:25:29 +0200654 tristate "Renesas SDHI SD/SDIO controller support"
Simon Horman49312c12016-02-24 11:39:33 +0900655 depends on SUPERH || ARCH_RENESAS || COMPILE_TEST
Guennadi Liakhovetski42051e82011-03-14 09:52:33 +0100656 select MMC_TMIO_CORE
657 help
658 This provides support for the SDHI SD/SDIO controller found in
Simon Hormanb5b6a5f2017-05-10 11:25:29 +0200659 Renesas SuperH, ARM and ARM64 based SoCs
Guennadi Liakhovetski42051e82011-03-14 09:52:33 +0100660
Simon Horman2a68ea72017-06-21 16:00:29 +0200661config MMC_SDHI_SYS_DMAC
662 tristate "DMA for SDHI SD/SDIO controllers using SYS-DMAC"
Geert Uytterhoeven1d6efe02018-04-17 19:49:13 +0200663 depends on MMC_SDHI
Masahiro Yamadac813e102017-11-25 01:24:36 +0900664 default MMC_SDHI if (SUPERH || ARM)
Simon Horman2a68ea72017-06-21 16:00:29 +0200665 help
666 This provides DMA support for SDHI SD/SDIO controllers
667 using SYS-DMAC via DMA Engine. This supports the controllers
668 found in SuperH and Renesas ARM based SoCs.
669
670config MMC_SDHI_INTERNAL_DMAC
671 tristate "DMA for SDHI SD/SDIO controllers using on-chip bus mastering"
Chris Brandt9706b472018-10-24 17:23:00 -0500672 depends on ARM64 || ARCH_R7S9210 || ARCH_R8A77470 || COMPILE_TEST
Geert Uytterhoeven1d6efe02018-04-17 19:49:13 +0200673 depends on MMC_SDHI
Chris Brandt9706b472018-10-24 17:23:00 -0500674 default MMC_SDHI if (ARM64 || ARCH_R7S9210 || ARCH_R8A77470)
Simon Horman2a68ea72017-06-21 16:00:29 +0200675 help
676 This provides DMA support for SDHI SD/SDIO controllers
677 using on-chip bus mastering. This supports the controllers
Chris Brandt9706b472018-10-24 17:23:00 -0500678 found in arm64 based SoCs. This controller is also found in
679 some RZ family SoCs.
Simon Horman2a68ea72017-06-21 16:00:29 +0200680
Masahiro Yamada3fd784f2018-08-23 13:44:18 +0900681config MMC_UNIPHIER
682 tristate "UniPhier SD/eMMC Host Controller support"
683 depends on ARCH_UNIPHIER || COMPILE_TEST
684 depends on OF
685 select MMC_TMIO_CORE
686 help
687 This provides support for the SD/eMMC controller found in
688 UniPhier SoCs. The eMMC variant of this controller is used
689 only for 32-bit SoCs.
690
Michał Mirosław5f5bac82009-05-22 20:33:59 +0200691config MMC_CB710
692 tristate "ENE CB710 MMC/SD Interface support"
Martin Schwidefsky0244ad02013-08-30 09:39:53 +0200693 depends on PCI
Michał Mirosław5f5bac82009-05-22 20:33:59 +0200694 select CB710_CORE
695 help
696 This option enables support for MMC/SD part of ENE CB710/720 Flash
697 memory card reader found in some laptops (ie. some versions of
698 HP Compaq nx9500).
699
700 This driver can also be built as a module. If so, the module
701 will be called cb710-mmc.
702
Harald Weltef0bf7f62009-06-17 20:22:39 +0200703config MMC_VIA_SDMMC
704 tristate "VIA SD/MMC Card Reader Driver"
705 depends on PCI
706 help
707 This selects the VIA SD/MMC Card Reader driver, say Y or M here.
708 VIA provides one multi-functional card reader which integrated into
709 some motherboards manufactured by VIA. This card reader supports
710 SD/MMC/SDHC.
711 If you have a controller with this interface, say Y or M here.
712
713 If unsure, say N.
Cliff Caieb962d52009-12-14 18:01:32 -0800714
Steven J. Hill01d95842017-04-24 13:41:57 -0500715config MMC_CAVIUM_OCTEON
716 tristate "Cavium OCTEON SD/MMC Card Interface support"
717 depends on CAVIUM_OCTEON_SOC
718 help
719 This selects Cavium OCTEON SD/MMC card Interface.
720 If you have an OCTEON board with a Multimedia Card slot,
721 say Y or M here.
722
723 If unsure, say N.
724
Jan Glauber166bac382017-03-30 17:31:25 +0200725config MMC_CAVIUM_THUNDERX
726 tristate "Cavium ThunderX SD/MMC Card Interface support"
727 depends on PCI && 64BIT && (ARM64 || COMPILE_TEST)
Jan Glauber62467bb2017-10-02 14:02:41 +0200728 depends on GPIO_THUNDERX
Jan Glauber166bac382017-03-30 17:31:25 +0200729 depends on OF_ADDRESS
730 help
731 This selects Cavium ThunderX SD/MMC Card Interface.
732 If you have an Cavium ARM64 board with a Multimedia Card slot
733 or builtin eMMC chip say Y or M here. If built as a module
734 the module will be called thunderx_mmc.ko.
735
Will Newtonf95f3852011-01-02 01:11:59 -0500736config MMC_DW
737 tristate "Synopsys DesignWare Memory Card Interface"
Alim Akhtarc34346b2014-08-29 15:54:51 +0530738 depends on ARC || ARM || ARM64 || MIPS || COMPILE_TEST
Will Newtonf95f3852011-01-02 01:11:59 -0500739 help
740 This selects support for the Synopsys DesignWare Mobile Storage IP
741 block, this provides host support for SD and MMC interfaces, in both
Shawn Lin3fc7eae2015-09-16 14:41:23 +0800742 PIO, internal DMA mode and external DMA mode.
Will Newtonf95f3852011-01-02 01:11:59 -0500743
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +0530744config MMC_DW_PLTFM
745 tristate "Synopsys Designware MCI Support as platform device"
746 depends on MMC_DW
747 default y
748 help
749 This selects the common helper functions support for Host Controller
750 Interface based platform driver. Please select this option if the IP
751 is present as a platform device. This is the common interface for the
752 Synopsys Designware IP.
753
754 If you have a controller with this interface, say Y or M here.
755
756 If unsure, say Y.
757
Liming Sun86958dc2018-05-08 14:46:48 -0400758config MMC_DW_BLUEFIELD
759 tristate "BlueField specific extensions for Synopsys DW Memory Card Interface"
760 depends on MMC_DW
761 select MMC_DW_PLTFM
762 help
763 This selects support for Mellanox BlueField SoC specific extensions to
764 the Synopsys DesignWare Memory Card Interface driver. Select this
765 option for platforms based on Mellanox BlueField SoC's.
766
Thomas Abrahamc3665002012-09-17 18:16:43 +0000767config MMC_DW_EXYNOS
Masanari Iidae41e85c2012-11-30 16:44:39 +0900768 tristate "Exynos specific extensions for Synopsys DW Memory Card Interface"
Thomas Abrahamc3665002012-09-17 18:16:43 +0000769 depends on MMC_DW
770 select MMC_DW_PLTFM
771 help
772 This selects support for Samsung Exynos SoC specific extensions to the
773 Synopsys DesignWare Memory Card Interface driver. Select this option
774 for platforms based on Exynos4 and Exynos5 SoC's.
775
tianshuliange382ab72018-03-08 09:01:34 +0800776config MMC_DW_HI3798CV200
777 tristate "Hi3798CV200 specific extensions for Synopsys DW Memory Card Interface"
778 depends on MMC_DW
779 select MMC_DW_PLTFM
780 help
781 This selects support for HiSilicon Hi3798CV200 SoC specific extensions to the
782 Synopsys DesignWare Memory Card Interface driver. Select this option
783 for platforms based on HiSilicon Hi3798CV200 SoC.
784
Zhangfei Gao036f29d2014-01-09 22:35:11 +0800785config MMC_DW_K3
786 tristate "K3 specific extensions for Synopsys DW Memory Card Interface"
787 depends on MMC_DW
788 select MMC_DW_PLTFM
Zhangfei Gao036f29d2014-01-09 22:35:11 +0800789 help
790 This selects support for Hisilicon K3 SoC specific extensions to the
791 Synopsys DesignWare Memory Card Interface driver. Select this option
792 for platforms based on Hisilicon K3 SoC's.
793
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +0530794config MMC_DW_PCI
795 tristate "Synopsys Designware MCI support on PCI bus"
796 depends on MMC_DW && PCI
797 help
798 This selects the PCI bus for the Synopsys Designware Mobile Storage IP.
799 Select this option if the IP is present on PCI platform.
800
801 If you have a controller with this interface, say Y or M here.
802
803 If unsure, say N.
804
addy ke4cdc2ec2014-08-19 12:36:14 +0800805config MMC_DW_ROCKCHIP
806 tristate "Rockchip specific extensions for Synopsys DW Memory Card Interface"
807 depends on MMC_DW && ARCH_ROCKCHIP
808 select MMC_DW_PLTFM
809 help
810 This selects support for Rockchip SoC specific extensions to the
811 Synopsys DesignWare Memory Card Interface driver. Select this option
812 for platforms based on RK3066, RK3188 and RK3288 SoC's.
813
Jun Niea8c643a2017-01-06 12:24:46 +0800814config MMC_DW_ZX
815 tristate "ZTE specific extensions for Synopsys DW Memory Card Interface"
816 depends on MMC_DW && ARCH_ZX
817 select MMC_DW_PLTFM
818 help
819 This selects support for ZTE SoC specific extensions to the
820 Synopsys DesignWare Memory Card Interface driver. Select this option
821 for platforms based on ZX296718 SoC's.
822
Yusuke Godafdc50a92010-05-26 14:41:59 -0700823config MMC_SH_MMCIF
824 tristate "SuperH Internal MMCIF support"
Simon Horman49312c12016-02-24 11:39:33 +0900825 depends on SUPERH || ARCH_RENESAS || COMPILE_TEST
Yusuke Godafdc50a92010-05-26 14:41:59 -0700826 help
Wolfram Sangba9e9152016-04-26 22:34:46 +0200827 This selects the MMC Host Interface controller (MMCIF) found in various
828 Renesas SoCs for SH and ARM architectures.
Yusuke Godafdc50a92010-05-26 14:41:59 -0700829
Lars-Peter Clausen61bfbdb2010-07-15 20:06:04 +0000830
831config MMC_JZ4740
Alex Smith6a787682018-03-28 18:00:51 -0300832 tristate "Ingenic JZ47xx SD/Multimedia Card Interface support"
Paul Cercueil685bc882018-08-21 15:03:20 +0200833 depends on MIPS
Lars-Peter Clausen61bfbdb2010-07-15 20:06:04 +0000834 help
Alex Smith6a787682018-03-28 18:00:51 -0300835 This selects support for the SD/MMC controller on Ingenic
836 JZ4740, JZ4750, JZ4770 and JZ4780 SoCs.
837
Lars-Peter Clausen61bfbdb2010-07-15 20:06:04 +0000838 If you have a board based on such a SoC and with a SD/MMC slot,
839 say Y or M here.
David Vrabel53f3a9e2010-09-02 14:15:08 +0000840
Tony Olech88095e72011-05-14 16:48:13 -0400841config MMC_VUB300
842 tristate "VUB300 USB to SDIO/SD/MMC Host Controller support"
843 depends on USB
844 help
845 This selects support for Elan Digital Systems' VUB300 chip.
846
847 The VUB300 is a USB-SDIO Host Controller Interface chip
848 that enables the host computer to use SDIO/SD/MMC cards
849 via a USB 2.0 or USB 1.1 host.
850
851 The VUB300 chip will be found in both physically separate
852 USB to SDIO/SD/MMC adapters and embedded on some motherboards.
853
854 The VUB300 chip supports SD and MMC memory cards in addition
855 to single and multifunction SDIO cards.
856
857 Some SDIO cards will need a firmware file to be loaded and
858 sent to VUB300 chip in order to achieve better data throughput.
859 Download these "Offload Pseudocode" from Elan Digital Systems'
860 web-site http://www.elandigitalsystems.com/support/downloads.php
861 and put them in /lib/firmware. Note that without these additional
862 firmware files the VUB300 chip will still function, but not at
863 the best obtainable data rate.
864
865 To compile this mmc host controller driver as a module,
866 choose M here: the module will be called vub300.
867
868 If you have a computer with an embedded VUB300 chip
869 or if you intend connecting a USB adapter based on a
870 VUB300 chip say Y or M here.
871
David Vrabel53f3a9e2010-09-02 14:15:08 +0000872config MMC_USHC
873 tristate "USB SD Host Controller (USHC) support"
874 depends on USB
875 help
876 This selects support for USB SD Host Controllers based on
877 the Cypress Astoria chip with firmware compliant with CSR's
878 USB SD Host Controller specification (CS-118793-SP).
879
880 CSR boards with this device include: USB<>SDIO (M1985v2),
881 and Ultrasira.
882
883 Note: These controllers only support SDIO cards and do not
884 support MMC or SD memory cards.
Tony Prisk3a96dff2012-11-18 15:33:06 +1300885
886config MMC_WMT
887 tristate "Wondermedia SD/MMC Host Controller support"
888 depends on ARCH_VT8500
889 default y
890 help
891 This selects support for the SD/MMC Host Controller on
892 Wondermedia WM8505/WM8650 based SoCs.
893
894 To compile this driver as a module, choose M here: the
895 module will be called wmt-sdmmc.
Linus Torvalds6a5971d2012-12-11 13:56:38 -0800896
Guennadi Liakhovetski75fa9ea2014-05-31 20:38:51 +0200897config MMC_USDHI6ROL0
898 tristate "Renesas USDHI6ROL0 SD/SDIO Host Controller support"
Geert Uytterhoeven1ef94742014-07-09 20:52:42 +0200899 depends on HAS_DMA
Guennadi Liakhovetski75fa9ea2014-05-31 20:38:51 +0200900 help
901 This selects support for the Renesas USDHI6ROL0 SD/SDIO
902 Host Controller
903
Wei WANG2c94b642012-11-09 20:53:34 +0800904config MMC_REALTEK_PCI
905 tristate "Realtek PCI-E SD/MMC Card Interface Driver"
Rui Fenge455b692017-11-29 17:08:03 +0800906 depends on MISC_RTSX_PCI
Wei WANG2c94b642012-11-09 20:53:34 +0800907 help
908 Say Y here to include driver code to support SD/MMC card interface
909 of Realtek PCI-E card reader
Roger Tsengc7f65582014-04-11 14:53:22 +0800910
911config MMC_REALTEK_USB
912 tristate "Realtek USB SD/MMC Card Interface Driver"
Rui Fenge455b692017-11-29 17:08:03 +0800913 depends on MISC_RTSX_USB
Roger Tsengc7f65582014-04-11 14:53:22 +0800914 help
915 Say Y here to include driver code to support SD/MMC card interface
916 of Realtek RTS5129/39 series card reader
David Lanzendörfer19b7f792014-05-12 14:04:48 +0200917
918config MMC_SUNXI
919 tristate "Allwinner sunxi SD/MMC Host Controller support"
920 depends on ARCH_SUNXI
921 help
922 This selects support for the SD/MMC Host Controller on
923 Allwinner sunxi SoCs.
Ondrej Zarya5eb8bb2014-11-11 17:54:55 +0100924
Venkat Gopalakrishnana4080222017-11-29 15:41:05 +0200925config MMC_CQHCI
926 tristate "Command Queue Host Controller Interface support"
927 depends on HAS_DMA
928 help
929 This selects the Command Queue Host Controller Interface (CQHCI)
930 support present in host controllers of Qualcomm Technologies, Inc
931 amongst others.
932 This controller supports eMMC devices with command queue support.
933
934 If you have a controller with this interface, say Y or M here.
935
936 If unsure, say N.
937
Ondrej Zarya5eb8bb2014-11-11 17:54:55 +0100938config MMC_TOSHIBA_PCI
939 tristate "Toshiba Type A SD/MMC Card Interface Driver"
940 depends on PCI
Chaotian Jing20848902015-06-15 19:20:48 +0800941
Eric Anholt660fc732017-03-08 10:19:03 +0100942config MMC_BCM2835
943 tristate "Broadcom BCM2835 SDHOST MMC Controller support"
944 depends on ARCH_BCM2835 || COMPILE_TEST
Eric Anholt660fc732017-03-08 10:19:03 +0100945 help
946 This selects the BCM2835 SDHOST MMC controller. If you have
947 a BCM2835 platform with SD or MMC devices, say Y or M here.
948
949 Note that the BCM2835 has two SD controllers: The Arasan
950 sdhci controller (supported by MMC_SDHCI_IPROC) and a custom
951 sdhost controller (supported by this driver).
952
953 If unsure, say N.
954
Chaotian Jing20848902015-06-15 19:20:48 +0800955config MMC_MTK
956 tristate "MediaTek SD/MMC Card Interface support"
Geert Uytterhoevenc2b22ff2015-06-26 14:09:26 +0200957 depends on HAS_DMA
NeilBrown26c2b192019-05-04 20:24:57 +1000958 select REGULATOR
Chaotian Jing20848902015-06-15 19:20:48 +0800959 help
960 This selects the MediaTek(R) Secure digital and Multimedia card Interface.
961 If you have a machine with a integrated SD/MMC card reader, say Y or M here.
962 This is needed if support for any SD/SDIO/MMC devices is required.
963 If unsure, say N.
Andrei Pistirica5d9460d2016-01-13 18:15:45 -0700964
965config MMC_SDHCI_MICROCHIP_PIC32
Enrico Weigelt, metux IT consult6f5490342019-03-06 19:27:51 +0100966 tristate "Microchip PIC32MZDA SDHCI support"
967 depends on MMC_SDHCI && PIC32MZDA && MMC_SDHCI_PLTFM
968 help
969 This selects the Secure Digital Host Controller Interface (SDHCI)
970 for PIC32MZDA platform.
Andrei Pistirica5d9460d2016-01-13 18:15:45 -0700971
Enrico Weigelt, metux IT consult6f5490342019-03-06 19:27:51 +0100972 If you have a controller with this interface, say Y or M here.
Andrei Pistirica5d9460d2016-01-13 18:15:45 -0700973
Enrico Weigelt, metux IT consult6f5490342019-03-06 19:27:51 +0100974 If unsure, say N.
975
Al Cooper476bf3d2016-06-16 12:47:16 -0400976config MMC_SDHCI_BRCMSTB
977 tristate "Broadcom SDIO/SD/MMC support"
978 depends on ARCH_BRCMSTB || BMIPS_GENERIC
979 depends on MMC_SDHCI_PLTFM
980 default y
981 help
982 This selects support for the SDIO/SD/MMC Host Controller on
983 Broadcom STB SoCs.
984
985 If unsure, say Y.
Hu Ziji3a3748d2017-03-30 17:22:59 +0200986
987config MMC_SDHCI_XENON
988 tristate "Marvell Xenon eMMC/SD/SDIO SDHCI driver"
989 depends on MMC_SDHCI_PLTFM
990 help
991 This selects Marvell Xenon eMMC/SD/SDIO SDHCI.
992 If you have a controller with this interface, say Y or M here.
993 If unsure, say N.
Kishon Vijay Abraham I7d326932017-09-06 17:15:55 +0530994
995config MMC_SDHCI_OMAP
996 tristate "TI SDHCI Controller Support"
997 depends on MMC_SDHCI_PLTFM && OF
Faiz Abbas961de0a2018-12-11 19:52:53 +0530998 select THERMAL
Faiz Abbas287b1da2019-01-09 18:13:12 +0530999 imply TI_SOC_THERMAL
Kishon Vijay Abraham I7d326932017-09-06 17:15:55 +05301000 help
1001 This selects the Secure Digital Host Controller Interface (SDHCI)
1002 support present in TI's DRA7 SOCs. The controller supports
1003 SD/MMC/SDIO devices.
1004
1005 If you have a controller with this interface, say Y or M here.
1006
1007 If unsure, say N.
Faiz Abbas41fd4ca2018-12-11 00:05:07 +05301008
1009config MMC_SDHCI_AM654
1010 tristate "Support for the SDHCI Controller in TI's AM654 SOCs"
YueHaibing59592cc2019-07-02 21:36:31 +08001011 depends on MMC_SDHCI_PLTFM && OF && REGMAP_MMIO
Faiz Abbase374e872019-04-01 18:28:04 +05301012 select MMC_SDHCI_IO_ACCESSORS
Faiz Abbas41fd4ca2018-12-11 00:05:07 +05301013 help
1014 This selects the Secure Digital Host Controller Interface (SDHCI)
1015 support present in TI's AM654 SOCs. The controller supports
1016 SD/MMC/SDIO devices.
1017
1018 If you have a controller with this interface, say Y or M here.
1019
1020 If unsure, say N.