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