59fb0fb50fb9f3e066843dbe27ee86579e0be069
[platform/kernel/u-boot.git] / drivers / mmc / Kconfig
1 menu "MMC Host controller Support"
2
3 config MMC
4         bool "MMC/SD/SDIO card support"
5         default ARM || PPC || SANDBOX
6         select DM_MMC if DM
7         help
8           This selects MultiMediaCard, Secure Digital and Secure
9           Digital I/O support.
10
11           If you want MMC/SD/SDIO support, you should say Y here and
12           also to your specific host controller driver.
13
14 config MMC_WRITE
15         bool "support for MMC/SD write operations"
16         depends on MMC
17         default y
18         help
19           Enable write access to MMC and SD Cards
20
21 config MMC_PWRSEQ
22         bool "HW reset support for eMMC"
23         depends on PWRSEQ
24         help
25           Ths select Hardware reset support aka pwrseq-emmc for eMMC
26           devices.
27
28 config MMC_BROKEN_CD
29         bool "Poll for broken card detection case"
30         help
31           If card  detection feature is broken, just poll to detect.
32
33 config DM_MMC
34         bool "Enable MMC controllers using Driver Model"
35         depends on DM
36         select BLK
37         help
38           This enables the MultiMediaCard (MMC) uclass which supports MMC and
39           Secure Digital I/O (SDIO) cards. Both removable (SD, micro-SD, etc.)
40           and non-removable (e.g. eMMC chip) devices are supported. These
41           appear as block devices in U-Boot and can support filesystems such
42           as EXT4 and FAT.
43
44 config SPL_DM_MMC
45         bool "Enable MMC controllers using Driver Model in SPL"
46         depends on SPL_DM && DM_MMC
47         default n if ARCH_MVEBU && !MVEBU_SPL_BOOT_DEVICE_MMC
48         default y
49         help
50           This enables the MultiMediaCard (MMC) uclass which supports MMC and
51           Secure Digital I/O (SDIO) cards. Both removable (SD, micro-SD, etc.)
52           and non-removable (e.g. eMMC chip) devices are supported. These
53           appear as block devices in U-Boot and can support filesystems such
54           as EXT4 and FAT.
55
56 if MMC
57
58 config MMC_SDHCI_ADMA_HELPERS
59         bool
60
61 config MMC_SPI
62         bool "Support for SPI-based MMC controller"
63         depends on DM_MMC && DM_SPI
64         help
65           This selects SPI-based MMC controllers.
66           If you have an MMC controller on a SPI bus, say Y here.
67
68           If unsure, say N.
69
70 config MMC_SPI_CRC_ON
71         bool "Support CRC for SPI-based MMC controller"
72         depends on MMC_SPI
73         default y
74         help
75           This enables CRC for SPI-based MMC controllers.
76
77           If unsure, say N.
78
79 config ARM_PL180_MMCI
80         bool "ARM AMBA Multimedia Card Interface and compatible support"
81         help
82           This selects the ARM(R) AMBA(R) PrimeCell Multimedia Card
83           Interface (PL180, PL181 and compatible) support.
84           If you have an ARM(R) platform with a Multimedia Card slot,
85           say Y or M here.
86
87 config MMC_QUIRKS
88         bool "Enable quirks"
89         default y
90         help
91           Some cards and hosts may sometimes behave unexpectedly (quirks).
92           This option enable workarounds to handle those quirks. Some of them
93           are enabled by default, other may require additional flags or are
94           enabled by the host driver.
95
96 config SYS_MMC_MAX_BLK_COUNT
97         int "Block count limit"
98         default 65535
99         help
100           The block count limit on MMC based devices. We default to 65535 due
101           to a 16bit register limit on some hardware.
102
103 config MMC_HW_PARTITIONING
104         bool "Support for HW partitioning command(eMMC)"
105         default y
106         help
107           This adds a command and an API to do hardware partitioning on eMMC
108           devices.
109
110 config SUPPORT_EMMC_RPMB
111         bool "Support eMMC replay protected memory block (RPMB)"
112         imply CMD_MMC_RPMB
113         help
114           Enable support for reading, writing and programming the
115           key for the Replay Protection Memory Block partition in eMMC.
116
117 config SUPPORT_EMMC_BOOT
118         bool "Support some additional features of the eMMC boot partitions"
119         help
120           Enable support for eMMC boot partitions. This also enables
121           extensions within the mmc command.
122
123 config MMC_IO_VOLTAGE
124         bool "Support IO voltage configuration"
125         help
126           IO voltage configuration allows selecting the voltage level of the IO
127           lines (not the level of main supply). This is required for UHS
128           support. For eMMC this not mandatory, but not enabling this option may
129           prevent the driver of using the faster modes.
130
131 config SPL_MMC_IO_VOLTAGE
132         bool "Support IO voltage configuration in SPL"
133         depends on SPL_MMC
134         help
135           IO voltage configuration allows selecting the voltage level of the IO
136           lines (not the level of main supply). This is required for UHS
137           support. For eMMC this not mandatory, but not enabling this option may
138           prevent the driver of using the faster modes.
139
140 config MMC_UHS_SUPPORT
141         bool "enable UHS support"
142         depends on MMC_IO_VOLTAGE
143         help
144           The Ultra High Speed (UHS) bus is available on some SDHC and SDXC
145           cards. The IO voltage must be switchable from 3.3v to 1.8v. The bus
146           frequency can go up to 208MHz (SDR104)
147
148 config SPL_MMC_UHS_SUPPORT
149         bool "enable UHS support in SPL"
150         depends on SPL_MMC_IO_VOLTAGE
151         help
152           The Ultra High Speed (UHS) bus is available on some SDHC and SDXC
153           cards. The IO voltage must be switchable from 3.3v to 1.8v. The bus
154           frequency can go up to 208MHz (SDR104)
155
156 config MMC_HS400_ES_SUPPORT
157         bool "enable HS400 Enhanced Strobe support"
158         help
159           The HS400 Enhanced Strobe mode is support by some eMMC. The bus
160           frequency is up to 200MHz. This mode does not tune the IO.
161
162 config SPL_MMC_HS400_ES_SUPPORT
163         bool "enable HS400 Enhanced Strobe support in SPL"
164         depends on SPL_MMC
165         help
166           The HS400 Enhanced Strobe mode is support by some eMMC. The bus
167           frequency is up to 200MHz. This mode does not tune the IO.
168
169 config MMC_HS400_SUPPORT
170         bool "enable HS400 support"
171         select MMC_HS200_SUPPORT
172         help
173           The HS400 mode is support by some eMMC. The bus frequency is up to
174           200MHz. This mode requires tuning the IO.
175
176 config SPL_MMC_HS400_SUPPORT
177         bool "enable HS400 support in SPL"
178         depends on SPL_MMC
179         select SPL_MMC_HS200_SUPPORT
180         help
181           The HS400 mode is support by some eMMC. The bus frequency is up to
182           200MHz. This mode requires tuning the IO.
183
184 config MMC_HS200_SUPPORT
185         bool "enable HS200 support"
186         help
187           The HS200 mode is support by some eMMC. The bus frequency is up to
188           200MHz. This mode requires tuning the IO.
189
190 config SPL_MMC_HS200_SUPPORT
191         bool "enable HS200 support in SPL"
192         depends on SPL_MMC
193         help
194           The HS200 mode is support by some eMMC. The bus frequency is up to
195           200MHz. This mode requires tuning the IO.
196
197 config MMC_VERBOSE
198         bool "Output more information about the MMC"
199         default y
200         help
201           Enable the output of more information about the card such as the
202           operating mode.
203
204 config MMC_TRACE
205         bool "MMC debugging"
206         help
207           This is an option for use by developer. Enable MMC core debugging.
208
209           If you need to see the MMC core message, say Y.
210
211 config MMC_DAVINCI
212         bool "TI DAVINCI Multimedia Card Interface support"
213         depends on ARCH_DAVINCI
214         default y
215         help
216           This selects the TI DAVINCI Multimedia card Interface.
217           If you have an DAVINCI board with a Multimedia Card slot,
218           say Y here.  If unsure, say N.
219
220 config MMC_DW
221         bool "Synopsys DesignWare Memory Card Interface"
222         select BOUNCE_BUFFER
223         help
224           This selects support for the Synopsys DesignWare Mobile Storage IP
225           block, this provides host support for SD and MMC interfaces, in both
226           PIO, internal DMA mode and external DMA mode.
227
228 config MMC_DW_CORTINA
229         bool "Cortina specific extensions for Synopsys DW Memory Card Interface"
230         depends on DM_MMC
231         depends on MMC_DW
232         depends on BLK
233         help
234           This selects support for Cortina SoC specific extensions to the
235           Synopsys DesignWare Memory Card Interface driver. Select this option
236           for platforms based on Cortina CAxxxx Soc's.
237
238 config MMC_DW_EXYNOS
239         bool "Exynos specific extensions for Synopsys DW Memory Card Interface"
240         depends on ARCH_EXYNOS
241         depends on MMC_DW
242         default y
243         help
244           This selects support for Samsung Exynos SoC specific extensions to the
245           Synopsys DesignWare Memory Card Interface driver. Select this option
246           for platforms based on Exynos4 and Exynos5 SoC's.
247
248 config MMC_DW_K3
249         bool "K3 specific extensions for Synopsys DW Memory Card Interface"
250         depends on MMC_DW
251         help
252           This selects support for Hisilicon K3 SoC specific extensions to the
253           Synopsys DesignWare Memory Card Interface driver. Select this option
254           for platforms based on Hisilicon K3 SoC's.
255
256 config MMC_DW_ROCKCHIP
257         bool "Rockchip SD/MMC controller support"
258         depends on DM_MMC && OF_CONTROL
259         depends on MMC_DW
260         help
261           This enables support for the Rockchip SD/MMM controller, which is
262           based on Designware IP. The device is compatible with at least
263           SD 3.0, SDIO 3.0 and MMC 4.5 and supports common eMMC chips as well
264           as removeable SD and micro-SD cards.
265
266 config MMC_DW_SOCFPGA
267         bool "SOCFPGA specific extensions for Synopsys DW Memory Card Interface"
268         depends on ARCH_SOCFPGA
269         depends on MMC_DW
270         default y
271         help
272           This selects support for Altera SOCFPGA specific extensions to the
273           Synopsys DesignWare Memory Card Interface driver. Select this option
274           for platforms based on Altera SOCFPGA.
275
276 config MMC_DW_SNPS
277         bool "Extensions for DW Memory Card Interface used in Synopsys ARC devboards"
278         depends on MMC_DW
279         depends on DM_MMC
280         depends on OF_CONTROL
281         depends on CLK
282         help
283           This selects support for Synopsys DesignWare Memory Card Interface driver
284           extensions used in various Synopsys ARC devboards.
285
286 config NEXELL_DWMMC
287         bool "Nexell SD/MMC controller support"
288         depends on ARCH_NEXELL
289         depends on MMC_DW
290         depends on DM_MMC
291         depends on PINCTRL_NEXELL
292         default y
293
294 config MMC_MESON_GX
295         bool "Meson GX EMMC controller support"
296         depends on DM_MMC && BLK && ARCH_MESON
297         help
298          Support for EMMC host controller on Meson GX ARM SoCs platform (S905)
299
300 config MMC_MXC
301         bool "Freescale i.MX21/27/31 or MPC512x Multimedia Card support"
302         help
303           This selects the Freescale i.MX21, i.MX27, i.MX31 or MPC512x
304           Multimedia Card Interface. If you have an i.MX or MPC512x platform
305           with a Multimedia Card slot, say Y here.
306
307           If unsure, say N.
308
309 config MMC_OWL
310         bool "Actions OWL Multimedia Card Interface support"
311         depends on ARCH_OWL && DM_MMC && BLK
312         help
313           This selects the OWL SD/MMC host controller found on board
314           based on Actions S700/S900 SoC.
315
316 config MMC_MXS
317         bool "Freescale MXS Multimedia Card Interface support"
318         depends on MX23 || MX28 || MX6 || MX7
319         select BOUNCE_BUFFER
320         select APBH_DMA
321         select APBH_DMA_BURST if ARCH_MX6 || ARCH_MX7
322         select APBH_DMA_BURST8 if ARCH_MX6 || ARCH_MX7
323         help
324           This selects the Freescale SSP MMC controller found on MXS based
325           platforms like mx23/28.
326
327           If unsure, say N.
328
329 config MMC_PCI
330         bool "Support for MMC controllers on PCI"
331         depends on MMC_SDHCI
332         help
333           This selects PCI-based MMC controllers.
334           If you have an MMC controller on a PCI bus, say Y here.
335
336 config MMC_OCTEONTX
337         bool "Marvell Octeon Multimedia Card Interface support"
338         depends on (ARCH_OCTEON || ARCH_OCTEONTX || ARCH_OCTEONTX2)
339         depends on DM_MMC
340         help
341           This selects the Octeon Multimedia card Interface.
342           If you have an OcteonTX/TX2 or MIPS Octeon board with a
343           Multimedia Card slot, say Y here.
344
345           If unsure, say N.
346
347 config MVEBU_MMC
348         bool "Kirkwood MMC controller support"
349         depends on DM_MMC && BLK && ARCH_KIRKWOOD
350         help
351           Support for MMC host controller on Kirkwood SoCs.
352           If you are on a Kirkwood architecture, say Y here.
353
354           If unsure, say N.
355
356 config MMC_OMAP_HS
357         bool "TI OMAP High Speed Multimedia Card Interface support"
358         select DM_REGULATOR_PBIAS if DM_MMC && DM_REGULATOR
359         select DM_REGULATOR_PBIAS if DM_MMC && DM_REGULATOR
360         help
361           This selects the TI OMAP High Speed Multimedia card Interface.
362           If you have an omap2plus board with a Multimedia Card slot,
363           say Y here.
364
365           If unsure, say N.
366
367 config MMC_OMAP_HS_ADMA
368         bool "ADMA support for OMAP HS MMC"
369         depends on MMC_OMAP_HS && !OMAP34XX
370         default y if !AM33XX
371         help
372           This enables support for the ADMA2 controller (SDA3.00 Part A2 DMA
373           controller). If supported by the hardware, selecting this option will
374           increase performances.
375
376 config MMC_OMAP36XX_PINS
377         bool "Enable MMC1 on OMAP36xx/37xx"
378         depends on OMAP34XX && MMC_OMAP_HS
379         help
380           This enables extended-drain in the MMC/SD/SDIO1I/O and
381           GPIO-associated I/O cells (gpio_126, gpio_127, and gpio_129)
382           specific to the OMAP36xx/37xx using MMC1
383
384           If you have a controller with this interface, say Y here.
385
386           If unsure, say N.
387
388 config HSMMC2_8BIT
389         bool "Enable 8-bit interface for eMMC (interface #2)"
390         depends on MMC_OMAP_HS && (OMAP44XX || OMAP54XX || DRA7XX || AM33XX || \
391                 AM43XX || ARCH_KEYSTONE)
392
393 config SH_SDHI
394         bool "SuperH/Renesas ARM SoCs on-chip SDHI host controller support"
395         depends on ARCH_RMOBILE
396         help
397           Support for the on-chip SDHI host controller on SuperH/Renesas ARM SoCs platform
398
399 config SH_MMCIF
400         bool "SuperH/Renesas ARM SoCs on-chip MMCIF host controller support"
401         depends on ARCH_RMOBILE || SH
402         help
403           Support for the on-chip MMCIF host controller on SuperH/Renesas ARM SoCs platform
404
405 config MMC_UNIPHIER
406         bool "UniPhier SD/MMC Host Controller support"
407         depends on ARCH_UNIPHIER
408         depends on BLK && DM_MMC
409         depends on OF_CONTROL
410         help
411           This selects support for the Matsushita SD/MMC Host Controller on
412           SocioNext UniPhier SoCs.
413
414 config RENESAS_SDHI
415         bool "Renesas R-Car SD/MMC Host Controller support"
416         depends on ARCH_RMOBILE
417         depends on BLK && DM_MMC
418         depends on OF_CONTROL
419         select BOUNCE_BUFFER
420         help
421           This selects support for the Matsushita SD/MMC Host Controller on
422           Renesas R-Car SoCs.
423
424 config MMC_BCM2835
425         bool "BCM2835 family custom SD/MMC Host Controller support"
426         depends on ARCH_BCM283X
427         depends on BLK && DM_MMC
428         depends on OF_CONTROL
429         default y
430         help
431           This selects support for the custom SD host controller in the BCM2835
432           family of devices.
433
434           If you have a BCM2835 platform with SD or MMC devices, say Y here.
435
436           If unsure, say N.
437
438 config JZ47XX_MMC
439         bool "Ingenic JZ47xx SD/MMC Host Controller support"
440         depends on ARCH_JZ47XX
441         help
442           This selects support for the SD Card Controller on Ingenic JZ47xx SoCs.
443
444 config MMC_SANDBOX
445         bool "Sandbox MMC support"
446         depends on SANDBOX
447         depends on BLK && DM_MMC && OF_CONTROL
448         help
449           This select a dummy sandbox MMC driver. At present this does nothing
450           other than allow sandbox to be build with MMC support. This
451           improves build coverage for sandbox and makes it easier to detect
452           MMC build errors with sandbox.
453
454 config MMC_SDHCI
455         bool "Secure Digital Host Controller Interface support"
456         help
457           This selects the generic Secure Digital Host Controller Interface.
458           It is used by manufacturers such as Texas Instruments(R), Ricoh(R)
459           and Toshiba(R). Most controllers found in laptops are of this type.
460
461           If you have a controller with this interface, say Y here.
462
463           If unsure, say N.
464
465 config MMC_SDHCI_IO_ACCESSORS
466         bool
467         depends on MMC_SDHCI
468         help
469           This is silent Kconfig symbol that is selected by the drivers that
470           need to overwrite SDHCI IO memory accessors.
471
472 config MMC_SDHCI_SDMA
473         bool "Support SDHCI SDMA"
474         depends on MMC_SDHCI
475         help
476           This enables support for the SDMA (Single Operation DMA) defined
477           in the SD Host Controller Standard Specification Version 1.00 .
478
479 config MMC_SDHCI_ADMA
480         bool "Support SDHCI ADMA2"
481         depends on MMC_SDHCI
482         select MMC_SDHCI_ADMA_HELPERS
483         help
484           This enables support for the ADMA (Advanced DMA) defined
485           in the SD Host Controller Standard Specification Version 3.00
486
487 config SPL_MMC_SDHCI_ADMA
488         bool "Support SDHCI ADMA2 in SPL"
489         depends on SPL_MMC && MMC_SDHCI
490         select MMC_SDHCI_ADMA_HELPERS
491         help
492           This enables support for the ADMA (Advanced DMA) defined
493           in the SD Host Controller Standard Specification Version 3.00 in SPL.
494
495 config FIXED_SDHCI_ALIGNED_BUFFER
496         hex "SDRAM address for fixed buffer"
497         depends on SPL && MVEBU_SPL_BOOT_DEVICE_MMC
498         default 0x00180000
499         help
500           On the Marvell Armada 38x when the SPL runs it located in internal
501           SRAM which is the L2 cache locked to memory. When the MMC buffers
502           are located on the stack (or bss), the SDIO controller (SDHCI) can't
503           write into this L2 cache memory.
504
505           This specifies the address of a fixed buffer located in SDRAM that
506           will be used for all SDHCI transfers in the SPL.
507
508 config MMC_SDHCI_ASPEED
509         bool "Aspeed SDHCI controller"
510         depends on ARCH_ASPEED
511         depends on DM_MMC
512         depends on MMC_SDHCI
513         select MISC
514         help
515           Enables support for the Aspeed SDHCI 2.0 controller present on Aspeed
516           SoCs. This device is compatible with SD 3.0 and/or MMC 4.3
517           specifications. On the AST2600, the device is also compatible with
518           MMC 5.1 and eMMC 3.0.
519
520 config MMC_SDHCI_ATMEL
521         bool "Atmel SDHCI controller support"
522         depends on ARCH_AT91
523         depends on DM_MMC && BLK && ARCH_AT91
524         depends on MMC_SDHCI
525         help
526           This enables support for the Atmel SDHCI controller, which supports
527           the embedded MultiMedia Card (e.MMC) Specification V4.51, the SD
528           Memory Card Specification V3.0, and the SDIO V3.0 specification.
529           It is compliant with the SD Host Controller Standard V3.0
530           specification.
531
532 config MMC_SDHCI_BCM2835
533         tristate "SDHCI support for the BCM2835 SD/MMC Controller"
534         depends on ARCH_BCM283X
535         depends on MMC_SDHCI
536         select MMC_SDHCI_IO_ACCESSORS
537         help
538           This selects the BCM2835 SD/MMC controller.
539
540           If you have a BCM2835 platform with SD or MMC devices,
541           say Y here.
542
543           If unsure, say N.
544
545 config MMC_SDHCI_BCMSTB
546         tristate "SDHCI support for the BCMSTB SD/MMC Controller"
547         depends on MMC_SDHCI
548         help
549           This selects the Broadcom set-top box SD/MMC controller.
550
551           If you have a BCMSTB platform with SD or MMC devices,
552           say Y here.
553
554           If unsure, say N.
555
556 config MMC_SDHCI_CADENCE
557         bool "SDHCI support for the Cadence SD/SDIO/eMMC controller"
558         depends on BLK && DM_MMC
559         depends on MMC_SDHCI
560         depends on OF_CONTROL
561         help
562           This selects the Cadence SD/SDIO/eMMC driver.
563
564           If you have a controller with this interface, say Y here.
565
566           If unsure, say N.
567
568 config MMC_SDHCI_AM654
569         bool "SDHCI Controller on TI's Am654 devices"
570         depends on ARCH_K3
571         depends on MMC_SDHCI
572         depends on DM_MMC && OF_CONTROL && BLK
573         depends on REGMAP
574         select MMC_SDHCI_IO_ACCESSORS
575         help
576           Support for Secure Digital Host Controller Interface (SDHCI)
577           controllers present on TI's AM654 SOCs.
578
579 config MMC_SDHCI_IPROC
580         bool "SDHCI support for the iProc SD/MMC Controller"
581         depends on MMC_SDHCI
582         help
583           This selects the iProc SD/MMC controller.
584
585           If you have a Broadcom IPROC platform with SD or MMC devices,
586           say Y or M here.
587
588           If unsure, say N.
589
590 config MMC_SDHCI_F_SDH30
591         bool "SDHCI support for Fujitsu Semiconductor/Socionext F_SDH30"
592         depends on BLK && DM_MMC
593         depends on MMC_SDHCI
594         help
595           This selects the Secure Digital Host Controller Interface (SDHCI)
596           Needed by some Fujitsu/Socionext SoC for MMC / SD / SDIO support.
597           If you have a controller with this interface, say Y or M here.
598           If unsure, say N.
599
600 config MMC_SDHCI_KONA
601         bool "SDHCI support on Broadcom KONA platform"
602         depends on MMC_SDHCI
603         help
604           This selects the Broadcom Kona Secure Digital Host Controller
605           Interface(SDHCI) support.
606           This is used in Broadcom mobile SoCs.
607
608           If you have a controller with this interface, say Y here.
609
610 config MMC_SDHCI_MSM
611         bool "Qualcomm SDHCI controller"
612         depends on BLK && DM_MMC
613         depends on MMC_SDHCI
614         help
615           Enables support for SDHCI 2.0 controller present on some Qualcomm
616           Snapdragon devices. This device is compatible with eMMC v4.5 and
617           SD 3.0 specifications. Both SD and eMMC devices are supported.
618           Card-detect gpios are not supported.
619
620 config MMC_SDHCI_MV
621         bool "SDHCI support on Marvell platform"
622         depends on ARCH_MVEBU
623         depends on MMC_SDHCI
624         depends on DM_MMC
625         help
626           This selects the Secure Digital Host Controller Interface on
627           Marvell platform.
628
629           If you have a controller with this interface, say Y here.
630
631           If unsure, say N.
632
633 config MMC_SDHCI_NPCM
634         bool "SDHCI support on Nuvoton NPCM device"
635         depends on MMC_SDHCI
636         depends on DM_MMC
637         help
638           This selects the Secure Digital Host Controller Interface (SDHCI)
639           on Nuvoton NPCM device.
640
641           If you have a controller with this interface, say Y here.
642
643           If unsure, say N.
644
645 config MMC_SDHCI_PIC32
646         bool "Microchip PIC32 on-chip SDHCI support"
647         depends on DM_MMC && MACH_PIC32
648         depends on MMC_SDHCI
649         help
650           Support for Microchip PIC32 SDHCI controller.
651
652 config MMC_SDHCI_ROCKCHIP
653         bool "Arasan SDHCI controller for Rockchip support"
654         depends on ARCH_ROCKCHIP
655         depends on DM_MMC && BLK
656         depends on MMC_SDHCI
657         help
658           Support for Arasan SDHCI host controller on Rockchip ARM SoCs platform
659
660 config MMC_SDHCI_S5P
661         bool "SDHCI support on Samsung S5P SoC"
662         depends on MMC_SDHCI
663         help
664           This selects the Secure Digital Host Controller Interface (SDHCI)
665           on Samsung S5P SoCs.
666
667           If you have a controller with this interface, say Y here.
668
669           If unsure, say N.
670
671 config MMC_SDHCI_STI
672         bool "SDHCI support for STMicroelectronics SoC"
673         depends on MMC_SDHCI && OF_CONTROL
674         help
675           This selects the Secure Digital Host Controller Interface (SDHCI)
676           on STMicroelectronics STiH410 SoC.
677
678 config MMC_SDHCI_XENON
679         bool "SDHCI support for the Xenon SDHCI controller"
680         depends on MMC_SDHCI && DM_MMC && OF_CONTROL
681         help
682           Support for Xenon SDHCI host controller on Marvell Armada 3700
683           7k/8k ARM SoCs platforms
684
685           If you have a controller with this interface, say Y here.
686
687           If unsure, say N.
688
689 config MMC_SDHCI_TANGIER
690         bool "Tangier SDHCI controller support"
691         depends on DM_MMC && BLK
692         depends on MMC_SDHCI
693         help
694           This selects support for SDHCI controller on Tanginer
695           SoC. Note that this controller does not sit on PCI bus and,
696           hence, cannot be enumerated by standard PCI means.
697
698           If you're using an Intel Tangier SoC (available on Intel
699           Edison board), say Y here.
700
701           If unsure, say N.
702
703 config MMC_SDHCI_TEGRA
704         bool "SDHCI platform support for the Tegra SD/MMC Controller"
705         depends on ARCH_TEGRA
706         select BOUNCE_BUFFER
707         default y
708         help
709           This selects the Tegra SD/MMC controller. If you have a Tegra
710           platform with SD or MMC devices, say Y here.
711
712           If unsure, say N.
713
714 config TEGRA124_MMC_DISABLE_EXT_LOOPBACK
715         bool "Disable external clock loopback"
716         depends on MMC_SDHCI_TEGRA && TEGRA124
717         help
718           Disable the external clock loopback and use the internal one on SDMMC3
719           as per the SDMMC_VENDOR_MISC_CNTRL_0 register's SDMMC_SPARE1 bits
720           being set to 0xfffd according to the TRM.
721
722           TODO(marcel.ziswiler@toradex.com): Move to device tree controlled
723           approach once proper kernel integration made it mainline.
724
725 config MMC_SDHCI_ZYNQ
726         bool "Arasan SDHCI controller support"
727         depends on DM_MMC && OF_CONTROL && BLK
728         depends on MMC_SDHCI
729         help
730           Support for Arasan SDHCI host controller on Zynq/ZynqMP ARM SoCs platform
731
732 config ZYNQ_SDHCI_MAX_FREQ
733         int "Set the maximum frequency of the controller"
734         depends on MMC_SDHCI_ZYNQ
735         help
736           Set the maximum frequency of the controller.
737
738 config ZYNQ_SDHCI_MIN_FREQ
739         int "Set the minimum frequency of the controller"
740         depends on MMC_SDHCI_ZYNQ
741         default 0
742         help
743           Set the minimum frequency of the controller.
744
745 config ZYNQ_HISPD_BROKEN
746         bool "High speed broken for Zynq SDHCI controller"
747         depends on MMC_SDHCI_ZYNQ
748         help
749           Set if high speed mode is broken.
750
751 config MMC_SUNXI
752         bool "Allwinner sunxi SD/MMC Host Controller support"
753         depends on ARCH_SUNXI
754         default y
755         help
756           This selects support for the SD/MMC Host Controller on
757           Allwinner sunxi SoCs.
758
759 config MMC_SUNXI_HAS_NEW_MODE
760         bool
761         depends on MMC_SUNXI
762
763 config MMC_SUNXI_HAS_MODE_SWITCH
764         bool
765         depends on MMC_SUNXI
766
767 config MMC_PITON
768         bool "MMC support for OpenPiton SoC"
769         depends on DM_MMC && BLK
770         help
771           This selects support for the SD host controller on OpenPiton SoC.
772           Note that this SD controller directly exposes the contents of the
773           SD card as memory mapped, so there is no manual configuration
774           required
775
776 config GENERIC_ATMEL_MCI
777         bool "Atmel Multimedia Card Interface support"
778         depends on DM_MMC && BLK && ARCH_AT91
779         help
780           This enables support for Atmel High Speed Multimedia Card Interface
781           (HSMCI), which supports the MultiMedia Card (MMC) Specification V4.3,
782           the SD Memory Card Specification V2.0, the SDIO V2.0 specification
783           and CE-ATA V1.1.
784
785 config STM32_SDMMC2
786         bool "STMicroelectronics STM32H7 SD/MMC Host Controller support"
787         depends on DM_MMC && BLK && OF_CONTROL
788         help
789           This selects support for the SD/MMC controller on STM32H7 SoCs.
790           If you have a board based on such a SoC and with a SD/MMC slot,
791           say Y or M here.
792
793 config FTSDC010
794         bool "Ftsdc010 SD/MMC controller Support"
795         help
796           This SD/MMC controller is present in Andestech SoCs which is based on Faraday IP.
797
798 config FTSDC010_SDIO
799         bool "Support ftsdc010 sdio"
800         depends on FTSDC010
801         help
802                 This can enable ftsdc010 sdio function.
803
804 config MMC_MTK
805         bool "MediaTek SD/MMC Card Interface support"
806         depends on ARCH_MEDIATEK || ARCH_MTMIPS
807         depends on BLK && DM_MMC
808         depends on OF_CONTROL
809         help
810           This selects the MediaTek(R) Secure digital and Multimedia card Interface.
811           If you have a machine with a integrated SD/MMC card reader, say Y or M here.
812           This is needed if support for any SD/SDIO/MMC devices is required.
813           If unsure, say N.
814
815 endif
816
817 config FSL_SDHC_V2_3
818         bool
819
820 config FSL_ESDHC
821         bool "Freescale/NXP eSDHC controller support"
822         select FSL_SDHC_V2_3 if ARCH_P1010 || ARCH_BSC9131 || ARCH_BSC9132 \
823                 || ARCH_C29X
824         help
825           This selects support for the eSDHC (Enhanced Secure Digital Host
826           Controller) found on numerous Freescale/NXP SoCs.
827
828 config FSL_ESDHC_SUPPORT_ADMA2
829         bool "enable ADMA2 support"
830         depends on FSL_ESDHC
831         select MMC_SDHCI_ADMA_HELPERS
832         help
833           This enables support for the ADMA2 transfer mode. If supported by the
834           eSDHC it will allow 64bit DMA addresses.
835
836 config FSL_ESDHC_33V_IO_RELIABILITY_WORKAROUND
837         bool "enable eSDHC workaround for 3.3v IO reliability issue"
838         depends on FSL_ESDHC && DM_MMC
839         help
840           When eSDHC operates at 3.3v, damage can accumulate in an internal
841           level shifter at a higher than expected rate. The faster the interface
842           runs, the more damage accumulates. This issue now is found on LX2160A
843           eSDHC1 for only SD card. The hardware workaround is recommended to use
844           an on-board level shifter that is 1.8v on SoC side and 3.3v on SD card
845           side. For boards without hardware workaround, this option could be
846           enabled, ensuring 1.8v IO voltage and disabling eSDHC if no card.
847           This option assumes no hotplug, and u-boot has to make all the way to
848           to linux to use 1.8v UHS-I speed mode if has card.
849
850 config FSL_ESDHC_VS33_NOT_SUPPORT
851         bool "3.3V power supply not supported"
852         depends on FSL_ESDHC
853         help
854           For eSDHC, power supply is through peripheral circuit. 3.3V support is
855           common. Select this if 3.3V power supply not supported.
856
857 config SYS_FSL_ESDHC_DEFAULT_BUS_WIDTH
858         int
859         depends on FSL_ESDHC
860         default 1
861
862 config ESDHC_DETECT_QUIRK
863         bool "QIXIS-based eSDHC quirk detection"
864         depends on FSL_ESDHC && FSL_QIXIS
865
866 config FSL_ESDHC_IMX
867         bool "Freescale/NXP i.MX eSDHC controller support"
868         help
869           This selects support for the i.MX eSDHC (Enhanced Secure Digital Host
870           Controller) found on numerous Freescale/NXP SoCs.
871
872 config SYS_FSL_ESDHC_HAS_DDR_MODE
873         bool "i.MX eSDHC controller supports DDR mode"
874         depends on FSL_ESDHC_IMX
875
876 config FSL_USDHC
877         bool "Freescale/NXP i.MX uSDHC controller support"
878         depends on MX6 || MX7 ||ARCH_MX7ULP || IMX8 || IMX8M || IMX8ULP || IMX9 || IMXRT
879         select FSL_ESDHC_IMX
880         help
881           This enables the Ultra Secured Digital Host Controller enhancements
882
883 config FSL_ESDHC_PIN_MUX
884         bool "Perform esdhc device-tree fixup"
885         depends on (FSL_ESDHC || FSL_ESDHC_IMX) && OF_LIBFDT
886
887 endmenu
888
889 config SYS_FSL_ERRATUM_ESDHC111
890         bool
891
892 config SYS_FSL_ERRATUM_ESDHC13
893         bool
894
895 config SYS_FSL_ERRATUM_ESDHC135
896         bool
897
898 config SYS_FSL_ERRATUM_ESDHC_A001
899         bool
900
901 config SYS_FSL_ERRATUM_A011334
902         bool
903
904 config SYS_FSL_ESDHC_UNRELIABLE_PULSE_DETECTION_WORKAROUND
905         bool