blob: 549634891a36d9a3a56bf916efb283cdf91284d1 [file] [log] [blame]
Nobuhiro Iwamatsu3ec5f862014-12-17 08:03:00 +09001menu "MMC Host controller Support"
2
Maxime Ripard4f780742015-10-15 22:04:05 +02003config MMC
Masahiro Yamadaa5ed4be2016-12-07 22:10:26 +09004 bool "MMC/SD/SDIO card support"
5 default ARM || PPC || SANDBOX
Tom Rini9b384002021-04-21 15:32:27 -04006 select DM_MMC if DM
Maxime Ripard4f780742015-10-15 22:04:05 +02007 help
Masahiro Yamadaa5ed4be2016-12-07 22:10:26 +09008 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.
Maxime Ripard4f780742015-10-15 22:04:05 +020013
Jean-Jacques Hiblotd0531672018-01-04 15:23:32 +010014config 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
Jaehoon Chung48ad8272021-02-16 10:16:52 +090021config MMC_PWRSEQ
22 bool "HW reset support for eMMC"
Jonas Karlmanf2ceb752024-01-27 17:12:35 +000023 depends on PWRSEQ && DM_GPIO
Jaehoon Chung48ad8272021-02-16 10:16:52 +090024 help
Jonas Karlmanf2ceb752024-01-27 17:12:35 +000025 This select Hardware reset support aka pwrseq-emmc for eMMC
Jaehoon Chung48ad8272021-02-16 10:16:52 +090026 devices.
27
Jonas Karlmanf2ceb752024-01-27 17:12:35 +000028config SPL_MMC_PWRSEQ
29 bool "HW reset support for eMMC in SPL"
30 depends on SPL_PWRSEQ && SPL_DM_GPIO
31 default y if MMC_PWRSEQ
32 help
33 This select Hardware reset support aka pwrseq-emmc for eMMC
34 devices in SPL.
35
Jun Nieb4f4f6e2018-01-02 12:25:57 +080036config MMC_BROKEN_CD
37 bool "Poll for broken card detection case"
38 help
39 If card detection feature is broken, just poll to detect.
40
Simon Glass1e8eb1b2015-06-23 15:38:48 -060041config DM_MMC
42 bool "Enable MMC controllers using Driver Model"
43 depends on DM
Tom Rini9b384002021-04-21 15:32:27 -040044 select BLK
Simon Glass1e8eb1b2015-06-23 15:38:48 -060045 help
Robert P. J. Day8d56db92016-07-15 13:44:45 -040046 This enables the MultiMediaCard (MMC) uclass which supports MMC and
Simon Glass1e8eb1b2015-06-23 15:38:48 -060047 Secure Digital I/O (SDIO) cards. Both removable (SD, micro-SD, etc.)
48 and non-removable (e.g. eMMC chip) devices are supported. These
49 appear as block devices in U-Boot and can support filesystems such
50 as EXT4 and FAT.
51
Simon Glass5f4bd8c2017-07-04 13:31:19 -060052config SPL_DM_MMC
53 bool "Enable MMC controllers using Driver Model in SPL"
54 depends on SPL_DM && DM_MMC
Pali Rohár3c5ce032022-05-24 10:58:42 +020055 default n if ARCH_MVEBU && !MVEBU_SPL_BOOT_DEVICE_MMC
Simon Glass5f4bd8c2017-07-04 13:31:19 -060056 default y
Oleksandr Suvorov5c59a672023-08-23 18:45:45 +030057 select SPL_BLK
Simon Glass5f4bd8c2017-07-04 13:31:19 -060058 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
Masahiro Yamadae8b99722016-12-07 22:10:27 +090065if MMC
66
Michael Walle02016c62020-09-23 12:42:51 +020067config MMC_SDHCI_ADMA_HELPERS
68 bool
69
Bhargav Shaha1afe252019-07-08 04:10:48 +000070config MMC_SPI
71 bool "Support for SPI-based MMC controller"
72 depends on DM_MMC && DM_SPI
73 help
74 This selects SPI-based MMC controllers.
75 If you have an MMC controller on a SPI bus, say Y here.
76
77 If unsure, say N.
78
79config MMC_SPI_CRC_ON
80 bool "Support CRC for SPI-based MMC controller"
81 depends on MMC_SPI
82 default y
83 help
84 This enables CRC for SPI-based MMC controllers.
85
86 If unsure, say N.
87
Patrice Chotardfcce4202017-10-23 10:57:31 +020088config ARM_PL180_MMCI
89 bool "ARM AMBA Multimedia Card Interface and compatible support"
Linus Walleije64c9b42024-02-08 10:33:43 +010090 depends on DM_MMC
Patrice Chotardfcce4202017-10-23 10:57:31 +020091 help
92 This selects the ARM(R) AMBA(R) PrimeCell Multimedia Card
93 Interface (PL180, PL181 and compatible) support.
94 If you have an ARM(R) platform with a Multimedia Card slot,
Heinrich Schuchardtb8bcdeb2024-01-23 17:18:16 +010095 say Y here.
Patrice Chotardfcce4202017-10-23 10:57:31 +020096
Kishon Vijay Abraham I07baaa62017-09-21 16:30:10 +020097config MMC_QUIRKS
98 bool "Enable quirks"
99 default y
100 help
101 Some cards and hosts may sometimes behave unexpectedly (quirks).
102 This option enable workarounds to handle those quirks. Some of them
Joel Johnson9cbee2c2020-01-11 09:08:15 -0700103 are enabled by default, other may require additional flags or are
Kishon Vijay Abraham I07baaa62017-09-21 16:30:10 +0200104 enabled by the host driver.
105
Tom Rini91735482022-10-28 20:27:05 -0400106config SYS_MMC_MAX_BLK_COUNT
107 int "Block count limit"
108 default 65535
109 help
110 The block count limit on MMC based devices. We default to 65535 due
111 to a 16bit register limit on some hardware.
112
Jean-Jacques Hiblot1d7769a2017-11-30 17:44:02 +0100113config MMC_HW_PARTITIONING
114 bool "Support for HW partitioning command(eMMC)"
115 default y
116 help
117 This adds a command and an API to do hardware partitioning on eMMC
118 devices.
119
Alex Kiernan60e0f612018-05-08 04:43:31 +0000120config SUPPORT_EMMC_RPMB
121 bool "Support eMMC replay protected memory block (RPMB)"
122 imply CMD_MMC_RPMB
123 help
124 Enable support for reading, writing and programming the
125 key for the Replay Protection Memory Block partition in eMMC.
126
Alex Kiernan00848772019-05-01 07:58:27 +0000127config SUPPORT_EMMC_BOOT
128 bool "Support some additional features of the eMMC boot partitions"
129 help
130 Enable support for eMMC boot partitions. This also enables
131 extensions within the mmc command.
132
Jean-Jacques Hiblot6051e782017-11-30 17:44:01 +0100133config MMC_IO_VOLTAGE
134 bool "Support IO voltage configuration"
135 help
136 IO voltage configuration allows selecting the voltage level of the IO
137 lines (not the level of main supply). This is required for UHS
138 support. For eMMC this not mandatory, but not enabling this option may
139 prevent the driver of using the faster modes.
140
141config SPL_MMC_IO_VOLTAGE
142 bool "Support IO voltage configuration in SPL"
Tom Rini0a83cc22022-06-10 23:03:09 -0400143 depends on SPL_MMC
Jean-Jacques Hiblot6051e782017-11-30 17:44:01 +0100144 help
145 IO voltage configuration allows selecting the voltage level of the IO
146 lines (not the level of main supply). This is required for UHS
147 support. For eMMC this not mandatory, but not enabling this option may
148 prevent the driver of using the faster modes.
149
150config MMC_UHS_SUPPORT
151 bool "enable UHS support"
152 depends on MMC_IO_VOLTAGE
153 help
154 The Ultra High Speed (UHS) bus is available on some SDHC and SDXC
155 cards. The IO voltage must be switchable from 3.3v to 1.8v. The bus
156 frequency can go up to 208MHz (SDR104)
157
158config SPL_MMC_UHS_SUPPORT
159 bool "enable UHS support in SPL"
160 depends on SPL_MMC_IO_VOLTAGE
161 help
162 The Ultra High Speed (UHS) bus is available on some SDHC and SDXC
163 cards. The IO voltage must be switchable from 3.3v to 1.8v. The bus
164 frequency can go up to 208MHz (SDR104)
165
Peng Faneede83b2019-07-10 14:43:07 +0800166config MMC_HS400_ES_SUPPORT
167 bool "enable HS400 Enhanced Strobe support"
168 help
169 The HS400 Enhanced Strobe mode is support by some eMMC. The bus
170 frequency is up to 200MHz. This mode does not tune the IO.
171
172config SPL_MMC_HS400_ES_SUPPORT
173 bool "enable HS400 Enhanced Strobe support in SPL"
Tom Rini0a83cc22022-06-10 23:03:09 -0400174 depends on SPL_MMC
Peng Faneede83b2019-07-10 14:43:07 +0800175 help
176 The HS400 Enhanced Strobe mode is support by some eMMC. The bus
177 frequency is up to 200MHz. This mode does not tune the IO.
178
Peng Fan46801252018-08-10 14:07:54 +0800179config MMC_HS400_SUPPORT
180 bool "enable HS400 support"
181 select MMC_HS200_SUPPORT
182 help
183 The HS400 mode is support by some eMMC. The bus frequency is up to
184 200MHz. This mode requires tuning the IO.
185
186config SPL_MMC_HS400_SUPPORT
187 bool "enable HS400 support in SPL"
Tom Rini0a83cc22022-06-10 23:03:09 -0400188 depends on SPL_MMC
Faiz Abbas373954e2019-08-01 16:33:36 +0530189 select SPL_MMC_HS200_SUPPORT
Peng Fan46801252018-08-10 14:07:54 +0800190 help
191 The HS400 mode is support by some eMMC. The bus frequency is up to
192 200MHz. This mode requires tuning the IO.
193
Jean-Jacques Hiblot6051e782017-11-30 17:44:01 +0100194config MMC_HS200_SUPPORT
195 bool "enable HS200 support"
196 help
197 The HS200 mode is support by some eMMC. The bus frequency is up to
198 200MHz. This mode requires tuning the IO.
199
Jean-Jacques Hiblot6051e782017-11-30 17:44:01 +0100200config SPL_MMC_HS200_SUPPORT
201 bool "enable HS200 support in SPL"
Tom Rini0a83cc22022-06-10 23:03:09 -0400202 depends on SPL_MMC
Jean-Jacques Hiblot6051e782017-11-30 17:44:01 +0100203 help
204 The HS200 mode is support by some eMMC. The bus frequency is up to
205 200MHz. This mode requires tuning the IO.
206
Jean-Jacques Hiblota94fb412017-09-21 16:29:53 +0200207config MMC_VERBOSE
208 bool "Output more information about the MMC"
209 default y
210 help
211 Enable the output of more information about the card such as the
212 operating mode.
213
Jaehoon Chunge2bf5802018-01-26 19:25:31 +0900214config MMC_TRACE
215 bool "MMC debugging"
Jaehoon Chunge2bf5802018-01-26 19:25:31 +0900216 help
217 This is an option for use by developer. Enable MMC core debugging.
218
219 If you need to see the MMC core message, say Y.
220
Masahiro Yamadab2c88682017-01-10 13:32:07 +0900221config MMC_DAVINCI
222 bool "TI DAVINCI Multimedia Card Interface support"
223 depends on ARCH_DAVINCI
224 default y
225 help
226 This selects the TI DAVINCI Multimedia card Interface.
227 If you have an DAVINCI board with a Multimedia Card slot,
228 say Y here. If unsure, say N.
229
Masahiro Yamada7942e912017-01-10 13:32:04 +0900230config MMC_DW
231 bool "Synopsys DesignWare Memory Card Interface"
Philipp Tomsichb3027472018-11-30 22:13:25 +0100232 select BOUNCE_BUFFER
Masahiro Yamada7942e912017-01-10 13:32:04 +0900233 help
234 This selects support for the Synopsys DesignWare Mobile Storage IP
235 block, this provides host support for SD and MMC interfaces, in both
236 PIO, internal DMA mode and external DMA mode.
237
Arthur Li055e18e2020-02-20 18:19:35 -0800238config MMC_DW_CORTINA
239 bool "Cortina specific extensions for Synopsys DW Memory Card Interface"
240 depends on DM_MMC
241 depends on MMC_DW
242 depends on BLK
Arthur Li055e18e2020-02-20 18:19:35 -0800243 help
244 This selects support for Cortina SoC specific extensions to the
245 Synopsys DesignWare Memory Card Interface driver. Select this option
246 for platforms based on Cortina CAxxxx Soc's.
247
Masahiro Yamadaf1ad7282017-01-10 13:32:05 +0900248config MMC_DW_EXYNOS
249 bool "Exynos specific extensions for Synopsys DW Memory Card Interface"
250 depends on ARCH_EXYNOS
251 depends on MMC_DW
252 default y
253 help
254 This selects support for Samsung Exynos SoC specific extensions to the
255 Synopsys DesignWare Memory Card Interface driver. Select this option
256 for platforms based on Exynos4 and Exynos5 SoC's.
257
258config MMC_DW_K3
259 bool "K3 specific extensions for Synopsys DW Memory Card Interface"
260 depends on MMC_DW
261 help
262 This selects support for Hisilicon K3 SoC specific extensions to the
263 Synopsys DesignWare Memory Card Interface driver. Select this option
264 for platforms based on Hisilicon K3 SoC's.
265
Masahiro Yamadadc607f82017-01-10 13:32:03 +0900266config MMC_DW_ROCKCHIP
Simon Glass4ecaa6d2015-08-30 16:55:37 -0600267 bool "Rockchip SD/MMC controller support"
268 depends on DM_MMC && OF_CONTROL
Masahiro Yamada7942e912017-01-10 13:32:04 +0900269 depends on MMC_DW
Simon Glass4ecaa6d2015-08-30 16:55:37 -0600270 help
271 This enables support for the Rockchip SD/MMM controller, which is
272 based on Designware IP. The device is compatible with at least
273 SD 3.0, SDIO 3.0 and MMC 4.5 and supports common eMMC chips as well
274 as removeable SD and micro-SD cards.
275
Masahiro Yamadaf1ad7282017-01-10 13:32:05 +0900276config MMC_DW_SOCFPGA
277 bool "SOCFPGA specific extensions for Synopsys DW Memory Card Interface"
278 depends on ARCH_SOCFPGA
279 depends on MMC_DW
280 default y
281 help
282 This selects support for Altera SOCFPGA specific extensions to the
283 Synopsys DesignWare Memory Card Interface driver. Select this option
284 for platforms based on Altera SOCFPGA.
285
Eugeniy Paltsevb050c2c2019-02-25 18:35:28 +0300286config MMC_DW_SNPS
287 bool "Extensions for DW Memory Card Interface used in Synopsys ARC devboards"
288 depends on MMC_DW
289 depends on DM_MMC
290 depends on OF_CONTROL
291 depends on CLK
292 help
293 This selects support for Synopsys DesignWare Memory Card Interface driver
294 extensions used in various Synopsys ARC devboards.
295
Stefan Bosch22c12f72020-07-10 19:07:29 +0200296config NEXELL_DWMMC
297 bool "Nexell SD/MMC controller support"
298 depends on ARCH_NEXELL
299 depends on MMC_DW
300 depends on DM_MMC
301 depends on PINCTRL_NEXELL
302 default y
303
Carlo Caione20cab782017-04-12 20:30:42 +0200304config MMC_MESON_GX
305 bool "Meson GX EMMC controller support"
Simon Glasseba48f92017-07-29 11:35:31 -0600306 depends on DM_MMC && BLK && ARCH_MESON
Carlo Caione20cab782017-04-12 20:30:42 +0200307 help
308 Support for EMMC host controller on Meson GX ARM SoCs platform (S905)
309
Masahiro Yamadab2c88682017-01-10 13:32:07 +0900310config MMC_MXC
311 bool "Freescale i.MX21/27/31 or MPC512x Multimedia Card support"
312 help
313 This selects the Freescale i.MX21, i.MX27, i.MX31 or MPC512x
314 Multimedia Card Interface. If you have an i.MX or MPC512x platform
315 with a Multimedia Card slot, say Y here.
316
317 If unsure, say N.
318
Amit Singh Tomar347494c2021-11-28 17:02:24 +0530319config MMC_OWL
320 bool "Actions OWL Multimedia Card Interface support"
321 depends on ARCH_OWL && DM_MMC && BLK
322 help
323 This selects the OWL SD/MMC host controller found on board
324 based on Actions S700/S900 SoC.
325
Masahiro Yamadab2c88682017-01-10 13:32:07 +0900326config MMC_MXS
327 bool "Freescale MXS Multimedia Card Interface support"
Adam Forda456d562018-02-06 08:34:45 -0600328 depends on MX23 || MX28 || MX6 || MX7
Philipp Tomsichb3027472018-11-30 22:13:25 +0100329 select BOUNCE_BUFFER
Adam Forda456d562018-02-06 08:34:45 -0600330 select APBH_DMA
331 select APBH_DMA_BURST if ARCH_MX6 || ARCH_MX7
332 select APBH_DMA_BURST8 if ARCH_MX6 || ARCH_MX7
Masahiro Yamadab2c88682017-01-10 13:32:07 +0900333 help
334 This selects the Freescale SSP MMC controller found on MXS based
335 platforms like mx23/28.
336
337 If unsure, say N.
338
Felipe Balbiecf7dfd2017-02-20 14:24:13 +0300339config MMC_PCI
340 bool "Support for MMC controllers on PCI"
Bin Meng3d81f022021-02-15 20:01:44 +0800341 depends on MMC_SDHCI
Felipe Balbiecf7dfd2017-02-20 14:24:13 +0300342 help
343 This selects PCI-based MMC controllers.
344 If you have an MMC controller on a PCI bus, say Y here.
345
Suneel Garapati40e61332019-10-19 18:03:01 -0700346config MMC_OCTEONTX
Stefan Roesee06f5522021-03-12 09:48:25 +0100347 bool "Marvell Octeon Multimedia Card Interface support"
348 depends on (ARCH_OCTEON || ARCH_OCTEONTX || ARCH_OCTEONTX2)
Suneel Garapati40e61332019-10-19 18:03:01 -0700349 depends on DM_MMC
350 help
Stefan Roesee06f5522021-03-12 09:48:25 +0100351 This selects the Octeon Multimedia card Interface.
352 If you have an OcteonTX/TX2 or MIPS Octeon board with a
353 Multimedia Card slot, say Y here.
Suneel Garapati40e61332019-10-19 18:03:01 -0700354
Felipe Balbiecf7dfd2017-02-20 14:24:13 +0300355 If unsure, say N.
356
Harm Berntsen7b9e5af2021-03-30 10:19:41 +0200357config MVEBU_MMC
358 bool "Kirkwood MMC controller support"
359 depends on DM_MMC && BLK && ARCH_KIRKWOOD
360 help
361 Support for MMC host controller on Kirkwood SoCs.
362 If you are on a Kirkwood architecture, say Y here.
363
364 If unsure, say N.
365
Masahiro Yamadab2c88682017-01-10 13:32:07 +0900366config MMC_OMAP_HS
367 bool "TI OMAP High Speed Multimedia Card Interface support"
Simon Glasseba48f92017-07-29 11:35:31 -0600368 select DM_REGULATOR_PBIAS if DM_MMC && DM_REGULATOR
Jean-Jacques Hiblot4612bdd2017-09-21 17:03:10 +0200369 select DM_REGULATOR_PBIAS if DM_MMC && DM_REGULATOR
Masahiro Yamadab2c88682017-01-10 13:32:07 +0900370 help
371 This selects the TI OMAP High Speed Multimedia card Interface.
372 If you have an omap2plus board with a Multimedia Card slot,
373 say Y here.
374
375 If unsure, say N.
376
Jean-Jacques Hiblotcebf0592018-02-23 10:40:18 +0100377config MMC_OMAP_HS_ADMA
378 bool "ADMA support for OMAP HS MMC"
379 depends on MMC_OMAP_HS && !OMAP34XX
380 default y if !AM33XX
381 help
382 This enables support for the ADMA2 controller (SDA3.00 Part A2 DMA
383 controller). If supported by the hardware, selecting this option will
384 increase performances.
385
Adam Fordef354962017-02-06 11:31:43 -0600386config MMC_OMAP36XX_PINS
387 bool "Enable MMC1 on OMAP36xx/37xx"
388 depends on OMAP34XX && MMC_OMAP_HS
389 help
390 This enables extended-drain in the MMC/SD/SDIO1I/O and
391 GPIO-associated I/O cells (gpio_126, gpio_127, and gpio_129)
392 specific to the OMAP36xx/37xx using MMC1
393
394 If you have a controller with this interface, say Y here.
395
396 If unsure, say N.
397
Tom Riniaf816552022-12-02 16:42:16 -0500398config HSMMC2_8BIT
399 bool "Enable 8-bit interface for eMMC (interface #2)"
400 depends on MMC_OMAP_HS && (OMAP44XX || OMAP54XX || DRA7XX || AM33XX || \
401 AM43XX || ARCH_KEYSTONE)
402
Marek Vasuta8624ac2018-04-21 17:40:20 +0200403config SH_MMCIF
404 bool "SuperH/Renesas ARM SoCs on-chip MMCIF host controller support"
Marek Vasut6468c4c2024-02-27 17:05:55 +0100405 depends on ARCH_RENESAS || SH
Marek Vasuta8624ac2018-04-21 17:40:20 +0200406 help
407 Support for the on-chip MMCIF host controller on SuperH/Renesas ARM SoCs platform
408
Masahiro Yamadaa0cfcc02016-02-18 19:52:48 +0900409config MMC_UNIPHIER
Marek Vasut2883f742017-09-23 13:30:30 +0200410 bool "UniPhier SD/MMC Host Controller support"
411 depends on ARCH_UNIPHIER
Simon Glasseba48f92017-07-29 11:35:31 -0600412 depends on BLK && DM_MMC
Masahiro Yamadac2326532016-12-30 23:20:14 +0900413 depends on OF_CONTROL
Masahiro Yamadaa0cfcc02016-02-18 19:52:48 +0900414 help
Marek Vasut847ee0c2017-07-21 23:24:36 +0200415 This selects support for the Matsushita SD/MMC Host Controller on
Marek Vasut2883f742017-09-23 13:30:30 +0200416 SocioNext UniPhier SoCs.
417
418config RENESAS_SDHI
419 bool "Renesas R-Car SD/MMC Host Controller support"
Marek Vasut6468c4c2024-02-27 17:05:55 +0100420 depends on ARCH_RENESAS
Marek Vasut2883f742017-09-23 13:30:30 +0200421 depends on BLK && DM_MMC
422 depends on OF_CONTROL
Marek Vasut9f7baeb2020-04-04 12:45:04 +0200423 select BOUNCE_BUFFER
Marek Vasut2883f742017-09-23 13:30:30 +0200424 help
425 This selects support for the Matsushita SD/MMC Host Controller on
426 Renesas R-Car SoCs.
Masahiro Yamadaa0cfcc02016-02-18 19:52:48 +0900427
Alexander Graf044725f2018-01-23 18:05:22 +0100428config MMC_BCM2835
429 bool "BCM2835 family custom SD/MMC Host Controller support"
430 depends on ARCH_BCM283X
431 depends on BLK && DM_MMC
432 depends on OF_CONTROL
433 default y
434 help
435 This selects support for the custom SD host controller in the BCM2835
436 family of devices.
437
438 If you have a BCM2835 platform with SD or MMC devices, say Y here.
439
440 If unsure, say N.
441
Paul Burton8e142842018-12-16 19:25:20 -0300442config JZ47XX_MMC
443 bool "Ingenic JZ47xx SD/MMC Host Controller support"
444 depends on ARCH_JZ47XX
445 help
446 This selects support for the SD Card Controller on Ingenic JZ47xx SoCs.
447
Masahiro Yamada54f7cfc2017-01-30 19:46:50 +0900448config MMC_SANDBOX
Simon Glassf9eebac2016-05-01 13:52:42 -0600449 bool "Sandbox MMC support"
Masahiro Yamada54f7cfc2017-01-30 19:46:50 +0900450 depends on SANDBOX
Simon Glasseba48f92017-07-29 11:35:31 -0600451 depends on BLK && DM_MMC && OF_CONTROL
Simon Glassf9eebac2016-05-01 13:52:42 -0600452 help
453 This select a dummy sandbox MMC driver. At present this does nothing
454 other than allow sandbox to be build with MMC support. This
455 improves build coverage for sandbox and makes it easier to detect
456 MMC build errors with sandbox.
457
Masahiro Yamada7db8c172016-12-07 22:10:28 +0900458config MMC_SDHCI
459 bool "Secure Digital Host Controller Interface support"
460 help
461 This selects the generic Secure Digital Host Controller Interface.
462 It is used by manufacturers such as Texas Instruments(R), Ricoh(R)
463 and Toshiba(R). Most controllers found in laptops are of this type.
464
465 If you have a controller with this interface, say Y here.
466
467 If unsure, say N.
468
Masahiro Yamadabfd110f2016-12-07 22:10:30 +0900469config MMC_SDHCI_IO_ACCESSORS
470 bool
471 depends on MMC_SDHCI
472 help
473 This is silent Kconfig symbol that is selected by the drivers that
474 need to overwrite SDHCI IO memory accessors.
475
Masahiro Yamada124f6ce2016-12-07 22:10:29 +0900476config MMC_SDHCI_SDMA
477 bool "Support SDHCI SDMA"
478 depends on MMC_SDHCI
479 help
480 This enables support for the SDMA (Single Operation DMA) defined
481 in the SD Host Controller Standard Specification Version 1.00 .
482
Peter Geis4561ada2023-04-18 16:46:44 +0000483config SPL_MMC_SDHCI_SDMA
484 bool "Support SDHCI SDMA in SPL"
485 depends on SPL_MMC && MMC_SDHCI
486 default y if MMC_SDHCI_SDMA
487 help
488 This enables support for the SDMA (Single Operation DMA) defined
489 in the SD Host Controller Standard Specification Version 1.00 in SPL.
490
Faiz Abbas4c082a62019-04-16 23:06:58 +0530491config MMC_SDHCI_ADMA
492 bool "Support SDHCI ADMA2"
493 depends on MMC_SDHCI
Michael Walle02016c62020-09-23 12:42:51 +0200494 select MMC_SDHCI_ADMA_HELPERS
Faiz Abbas4c082a62019-04-16 23:06:58 +0530495 help
496 This enables support for the ADMA (Advanced DMA) defined
497 in the SD Host Controller Standard Specification Version 3.00
498
499config SPL_MMC_SDHCI_ADMA
500 bool "Support SDHCI ADMA2 in SPL"
Tom Rini0a83cc22022-06-10 23:03:09 -0400501 depends on SPL_MMC && MMC_SDHCI
Michael Walle02016c62020-09-23 12:42:51 +0200502 select MMC_SDHCI_ADMA_HELPERS
Faiz Abbas4c082a62019-04-16 23:06:58 +0530503 help
504 This enables support for the ADMA (Advanced DMA) defined
505 in the SD Host Controller Standard Specification Version 3.00 in SPL.
506
Greg Malysaeb92ef12024-03-25 22:28:08 -0400507config MMC_SDHCI_ADMA_FORCE_32BIT
508 bool "Force 32 bit mode for ADMA on 64 bit platforms"
509 help
510 This forces SDHCI ADMA to be built for 32 bit descriptors, even
511 on a 64 bit platform where they would otherwise be assumed to
512 be 64 bits. This is necessary for certain hardware platforms
513 that are 64-bit but include only 32-bit support within the selected
514 SD host controller IP.
515
516config MMC_SDHCI_ADMA_64BIT
517 bool "Use SHDCI ADMA with 64 bit descriptors"
518 depends on !MMC_SDHCI_ADMA_FORCE_32BIT
519 default y if DMA_ADDR_T_64BIT
520 help
521 This selects 64 bit descriptors for SDHCI ADMA. It is enabled by
522 default on 64 bit systems, but can be disabled if one of these
523 systems includes 32-bit ADMA.
524
Chris Packham7d5d5912022-05-29 11:13:17 +1200525config FIXED_SDHCI_ALIGNED_BUFFER
526 hex "SDRAM address for fixed buffer"
527 depends on SPL && MVEBU_SPL_BOOT_DEVICE_MMC
528 default 0x00180000
529 help
530 On the Marvell Armada 38x when the SPL runs it located in internal
531 SRAM which is the L2 cache locked to memory. When the MMC buffers
532 are located on the stack (or bss), the SDIO controller (SDHCI) can't
533 write into this L2 cache memory.
534
535 This specifies the address of a fixed buffer located in SDRAM that
536 will be used for all SDHCI transfers in the SPL.
537
Eddie Jamesc8a65812019-08-27 09:48:03 -0500538config MMC_SDHCI_ASPEED
539 bool "Aspeed SDHCI controller"
540 depends on ARCH_ASPEED
541 depends on DM_MMC
542 depends on MMC_SDHCI
Joel Stanley818a6b52022-06-23 18:35:34 +0930543 select MISC
Eddie Jamesc8a65812019-08-27 09:48:03 -0500544 help
545 Enables support for the Aspeed SDHCI 2.0 controller present on Aspeed
546 SoCs. This device is compatible with SD 3.0 and/or MMC 4.3
547 specifications. On the AST2600, the device is also compatible with
548 MMC 5.1 and eMMC 3.0.
549
Masahiro Yamada8c1a1322017-01-30 19:46:55 +0900550config MMC_SDHCI_ATMEL
551 bool "Atmel SDHCI controller support"
552 depends on ARCH_AT91
Simon Glasseba48f92017-07-29 11:35:31 -0600553 depends on DM_MMC && BLK && ARCH_AT91
Masahiro Yamada8c1a1322017-01-30 19:46:55 +0900554 depends on MMC_SDHCI
555 help
556 This enables support for the Atmel SDHCI controller, which supports
557 the embedded MultiMedia Card (e.MMC) Specification V4.51, the SD
558 Memory Card Specification V3.0, and the SDIO V3.0 specification.
559 It is compliant with the SD Host Controller Standard V3.0
560 specification.
561
Masahiro Yamada124f6ce2016-12-07 22:10:29 +0900562config MMC_SDHCI_BCM2835
563 tristate "SDHCI support for the BCM2835 SD/MMC Controller"
564 depends on ARCH_BCM283X
565 depends on MMC_SDHCI
Masahiro Yamadabfd110f2016-12-07 22:10:30 +0900566 select MMC_SDHCI_IO_ACCESSORS
Masahiro Yamada124f6ce2016-12-07 22:10:29 +0900567 help
568 This selects the BCM2835 SD/MMC controller.
569
570 If you have a BCM2835 platform with SD or MMC devices,
571 say Y here.
572
573 If unsure, say N.
574
Thomas Fitzsimmons919646d2018-06-08 17:59:45 -0400575config MMC_SDHCI_BCMSTB
576 tristate "SDHCI support for the BCMSTB SD/MMC Controller"
577 depends on MMC_SDHCI
578 help
579 This selects the Broadcom set-top box SD/MMC controller.
580
581 If you have a BCMSTB platform with SD or MMC devices,
582 say Y here.
583
584 If unsure, say N.
585
Masahiro Yamadadcbc4432016-12-30 22:41:46 +0900586config MMC_SDHCI_CADENCE
587 bool "SDHCI support for the Cadence SD/SDIO/eMMC controller"
Simon Glasseba48f92017-07-29 11:35:31 -0600588 depends on BLK && DM_MMC
Masahiro Yamadadcbc4432016-12-30 22:41:46 +0900589 depends on MMC_SDHCI
590 depends on OF_CONTROL
591 help
592 This selects the Cadence SD/SDIO/eMMC driver.
593
594 If you have a controller with this interface, say Y here.
595
596 If unsure, say N.
597
Kongyang Liu331ee412024-03-10 01:51:55 +0800598config MMC_SDHCI_CV1800B
599 bool "SDHCI support for the CV1800B SD/SDIO/eMMC controller"
600 depends on BLK && DM_MMC
601 depends on MMC_SDHCI
602 depends on OF_CONTROL
603 help
604 This selects the CV1800B SD/SDIO/eMMC driver.
605
606 If you have a controller with this interface,
607 say Y here.
608
609 If unsure, say N.
610
Faiz Abbasd8fb3092019-06-11 00:43:31 +0530611config MMC_SDHCI_AM654
612 bool "SDHCI Controller on TI's Am654 devices"
Lokesh Vutlabc9979f2018-08-27 15:57:54 +0530613 depends on ARCH_K3
614 depends on MMC_SDHCI
615 depends on DM_MMC && OF_CONTROL && BLK
Faiz Abbase9aed582019-06-11 00:43:38 +0530616 depends on REGMAP
Faiz Abbas36c8c5c2021-02-04 15:10:54 +0530617 select MMC_SDHCI_IO_ACCESSORS
Lokesh Vutlabc9979f2018-08-27 15:57:54 +0530618 help
Faiz Abbasd8fb3092019-06-11 00:43:31 +0530619 Support for Secure Digital Host Controller Interface (SDHCI)
620 controllers present on TI's AM654 SOCs.
Lokesh Vutlabc9979f2018-08-27 15:57:54 +0530621
Arun Parameswaran2f4f34a2019-09-12 11:06:08 -0700622config MMC_SDHCI_IPROC
623 bool "SDHCI support for the iProc SD/MMC Controller"
624 depends on MMC_SDHCI
625 help
626 This selects the iProc SD/MMC controller.
627
628 If you have a Broadcom IPROC platform with SD or MMC devices,
Heinrich Schuchardtb8bcdeb2024-01-23 17:18:16 +0100629 say Y here.
Arun Parameswaran2f4f34a2019-09-12 11:06:08 -0700630
631 If unsure, say N.
632
Jassi Brar8188bda2021-06-04 18:44:16 +0900633config MMC_SDHCI_F_SDH30
Kunihiko Hayashi2cd5da62022-09-09 16:23:33 +0900634 bool "SDHCI support for Fujitsu Semiconductor/Socionext F_SDH30"
Jassi Brar8188bda2021-06-04 18:44:16 +0900635 depends on BLK && DM_MMC
636 depends on MMC_SDHCI
637 help
638 This selects the Secure Digital Host Controller Interface (SDHCI)
Kunihiko Hayashi2cd5da62022-09-09 16:23:33 +0900639 Needed by some Fujitsu/Socionext SoC for MMC / SD / SDIO support.
Heinrich Schuchardtb8bcdeb2024-01-23 17:18:16 +0100640 If you have a controller with this interface, say Y here.
Jassi Brar8188bda2021-06-04 18:44:16 +0900641 If unsure, say N.
642
Masahiro Yamada124f6ce2016-12-07 22:10:29 +0900643config MMC_SDHCI_KONA
644 bool "SDHCI support on Broadcom KONA platform"
645 depends on MMC_SDHCI
646 help
647 This selects the Broadcom Kona Secure Digital Host Controller
648 Interface(SDHCI) support.
649 This is used in Broadcom mobile SoCs.
650
651 If you have a controller with this interface, say Y here.
652
Masahiro Yamadaa1262eb2017-01-30 19:46:53 +0900653config MMC_SDHCI_MSM
654 bool "Qualcomm SDHCI controller"
Simon Glasseba48f92017-07-29 11:35:31 -0600655 depends on BLK && DM_MMC
Masahiro Yamadaa1262eb2017-01-30 19:46:53 +0900656 depends on MMC_SDHCI
657 help
658 Enables support for SDHCI 2.0 controller present on some Qualcomm
659 Snapdragon devices. This device is compatible with eMMC v4.5 and
660 SD 3.0 specifications. Both SD and eMMC devices are supported.
661 Card-detect gpios are not supported.
662
Masahiro Yamada124f6ce2016-12-07 22:10:29 +0900663config MMC_SDHCI_MV
664 bool "SDHCI support on Marvell platform"
665 depends on ARCH_MVEBU
666 depends on MMC_SDHCI
Stefan Roesefb0720b2023-02-10 13:23:52 +0100667 depends on DM_MMC
Masahiro Yamada124f6ce2016-12-07 22:10:29 +0900668 help
669 This selects the Secure Digital Host Controller Interface on
670 Marvell platform.
671
672 If you have a controller with this interface, say Y here.
673
674 If unsure, say N.
675
Jim Liu29cf22c2022-05-24 16:55:33 +0800676config MMC_SDHCI_NPCM
677 bool "SDHCI support on Nuvoton NPCM device"
678 depends on MMC_SDHCI
679 depends on DM_MMC
680 help
681 This selects the Secure Digital Host Controller Interface (SDHCI)
682 on Nuvoton NPCM device.
683
684 If you have a controller with this interface, say Y here.
685
686 If unsure, say N.
687
Masahiro Yamadaf79df032017-01-30 19:46:54 +0900688config MMC_SDHCI_PIC32
689 bool "Microchip PIC32 on-chip SDHCI support"
690 depends on DM_MMC && MACH_PIC32
691 depends on MMC_SDHCI
692 help
693 Support for Microchip PIC32 SDHCI controller.
694
Masahiro Yamadababe0262017-01-30 19:46:52 +0900695config MMC_SDHCI_ROCKCHIP
696 bool "Arasan SDHCI controller for Rockchip support"
697 depends on ARCH_ROCKCHIP
Simon Glasseba48f92017-07-29 11:35:31 -0600698 depends on DM_MMC && BLK
Masahiro Yamadababe0262017-01-30 19:46:52 +0900699 depends on MMC_SDHCI
700 help
701 Support for Arasan SDHCI host controller on Rockchip ARM SoCs platform
702
Masahiro Yamada124f6ce2016-12-07 22:10:29 +0900703config MMC_SDHCI_S5P
704 bool "SDHCI support on Samsung S5P SoC"
705 depends on MMC_SDHCI
706 help
707 This selects the Secure Digital Host Controller Interface (SDHCI)
708 on Samsung S5P SoCs.
709
710 If you have a controller with this interface, say Y here.
711
712 If unsure, say N.
713
Patrice Chotard2eea7d82017-02-21 13:37:09 +0100714config MMC_SDHCI_STI
715 bool "SDHCI support for STMicroelectronics SoC"
Patrice Chotardcdf6b572017-02-21 13:37:11 +0100716 depends on MMC_SDHCI && OF_CONTROL
Patrice Chotard2eea7d82017-02-21 13:37:09 +0100717 help
718 This selects the Secure Digital Host Controller Interface (SDHCI)
719 on STMicroelectronics STiH410 SoC.
720
Stefan Roese121fc562016-12-09 15:03:28 +0100721config MMC_SDHCI_XENON
722 bool "SDHCI support for the Xenon SDHCI controller"
723 depends on MMC_SDHCI && DM_MMC && OF_CONTROL
724 help
725 Support for Xenon SDHCI host controller on Marvell Armada 3700
726 7k/8k ARM SoCs platforms
727
728 If you have a controller with this interface, say Y here.
729
730 If unsure, say N.
731
Felipe Balbib7567602017-02-20 14:24:14 +0300732config MMC_SDHCI_TANGIER
733 bool "Tangier SDHCI controller support"
734 depends on DM_MMC && BLK
735 depends on MMC_SDHCI
736 help
737 This selects support for SDHCI controller on Tanginer
738 SoC. Note that this controller does not sit on PCI bus and,
739 hence, cannot be enumerated by standard PCI means.
740
741 If you're using an Intel Tangier SoC (available on Intel
742 Edison board), say Y here.
743
744 If unsure, say N.
745
Masahiro Yamadab2c88682017-01-10 13:32:07 +0900746config MMC_SDHCI_TEGRA
747 bool "SDHCI platform support for the Tegra SD/MMC Controller"
Trevor Woerner513f6402020-05-06 08:02:41 -0400748 depends on ARCH_TEGRA
Philipp Tomsichb3027472018-11-30 22:13:25 +0100749 select BOUNCE_BUFFER
Masahiro Yamadab2c88682017-01-10 13:32:07 +0900750 default y
751 help
752 This selects the Tegra SD/MMC controller. If you have a Tegra
753 platform with SD or MMC devices, say Y here.
754
755 If unsure, say N.
756
Trent Piepho1bf56c32019-04-01 23:05:49 +0000757config TEGRA124_MMC_DISABLE_EXT_LOOPBACK
758 bool "Disable external clock loopback"
759 depends on MMC_SDHCI_TEGRA && TEGRA124
760 help
761 Disable the external clock loopback and use the internal one on SDMMC3
762 as per the SDMMC_VENDOR_MISC_CNTRL_0 register's SDMMC_SPARE1 bits
763 being set to 0xfffd according to the TRM.
764
765 TODO(marcel.ziswiler@toradex.com): Move to device tree controlled
766 approach once proper kernel integration made it mainline.
767
Masahiro Yamada168c57d2017-01-30 19:46:51 +0900768config MMC_SDHCI_ZYNQ
769 bool "Arasan SDHCI controller support"
Simon Glasseba48f92017-07-29 11:35:31 -0600770 depends on DM_MMC && OF_CONTROL && BLK
Masahiro Yamada168c57d2017-01-30 19:46:51 +0900771 depends on MMC_SDHCI
772 help
773 Support for Arasan SDHCI host controller on Zynq/ZynqMP ARM SoCs platform
774
Vipul Kumar62548002018-02-28 15:53:28 +0530775config ZYNQ_SDHCI_MAX_FREQ
776 int "Set the maximum frequency of the controller"
777 depends on MMC_SDHCI_ZYNQ
778 help
779 Set the maximum frequency of the controller.
780
Vipul Kumardcc14e32018-02-28 15:53:29 +0530781config ZYNQ_SDHCI_MIN_FREQ
782 int "Set the minimum frequency of the controller"
783 depends on MMC_SDHCI_ZYNQ
784 default 0
785 help
786 Set the minimum frequency of the controller.
787
Siva Durga Prasad Paladugua9a3d002019-05-27 14:33:14 +0530788config ZYNQ_HISPD_BROKEN
789 bool "High speed broken for Zynq SDHCI controller"
790 depends on MMC_SDHCI_ZYNQ
791 help
792 Set if high speed mode is broken.
793
Masahiro Yamadab2c88682017-01-10 13:32:07 +0900794config MMC_SUNXI
795 bool "Allwinner sunxi SD/MMC Host Controller support"
Samuel Holland6b0d0bc2022-04-10 00:13:34 -0500796 depends on ARCH_SUNXI
Masahiro Yamadab2c88682017-01-10 13:32:07 +0900797 default y
798 help
799 This selects support for the SD/MMC Host Controller on
800 Allwinner sunxi SoCs.
801
Maxime Ripard95e34702017-08-23 12:03:41 +0200802config MMC_SUNXI_HAS_NEW_MODE
803 bool
804 depends on MMC_SUNXI
805
Vasily Khoruzhickb198e2c2018-11-09 20:41:44 -0800806config MMC_SUNXI_HAS_MODE_SWITCH
807 bool
808 depends on MMC_SUNXI
809
Tianrui Wei8cfc7c52021-07-01 12:54:20 +0800810config MMC_PITON
811 bool "MMC support for OpenPiton SoC"
812 depends on DM_MMC && BLK
813 help
814 This selects support for the SD host controller on OpenPiton SoC.
815 Note that this SD controller directly exposes the contents of the
816 SD card as memory mapped, so there is no manual configuration
817 required
818
Wenyou Yang7a7a64c2017-04-13 10:29:22 +0800819config GENERIC_ATMEL_MCI
820 bool "Atmel Multimedia Card Interface support"
Simon Glasseba48f92017-07-29 11:35:31 -0600821 depends on DM_MMC && BLK && ARCH_AT91
Wenyou Yang7a7a64c2017-04-13 10:29:22 +0800822 help
823 This enables support for Atmel High Speed Multimedia Card Interface
824 (HSMCI), which supports the MultiMedia Card (MMC) Specification V4.3,
825 the SD Memory Card Specification V2.0, the SDIO V2.0 specification
826 and CE-ATA V1.1.
827
Patrice Chotardae19b812017-09-04 17:56:22 +0200828config STM32_SDMMC2
829 bool "STMicroelectronics STM32H7 SD/MMC Host Controller support"
Patrice Chotard4cb0ac92017-10-03 15:54:58 +0200830 depends on DM_MMC && BLK && OF_CONTROL
Patrice Chotardae19b812017-09-04 17:56:22 +0200831 help
832 This selects support for the SD/MMC controller on STM32H7 SoCs.
833 If you have a board based on such a SoC and with a SD/MMC slot,
Heinrich Schuchardtb8bcdeb2024-01-23 17:18:16 +0100834 say Y here.
Patrice Chotardae19b812017-09-04 17:56:22 +0200835
Rick Chencbb52972017-11-14 14:47:09 +0800836config FTSDC010
837 bool "Ftsdc010 SD/MMC controller Support"
838 help
839 This SD/MMC controller is present in Andestech SoCs which is based on Faraday IP.
840
Rick Chenc59a6fb2018-03-20 15:10:49 +0800841config FTSDC010_SDIO
842 bool "Support ftsdc010 sdio"
Rick Chenc59a6fb2018-03-20 15:10:49 +0800843 depends on FTSDC010
844 help
845 This can enable ftsdc010 sdio function.
846
developerdc5a9aa2018-11-15 10:08:04 +0800847config MMC_MTK
848 bool "MediaTek SD/MMC Card Interface support"
developer607faf72019-09-25 17:45:37 +0800849 depends on ARCH_MEDIATEK || ARCH_MTMIPS
developerdc5a9aa2018-11-15 10:08:04 +0800850 depends on BLK && DM_MMC
851 depends on OF_CONTROL
852 help
853 This selects the MediaTek(R) Secure digital and Multimedia card Interface.
Heinrich Schuchardtb8bcdeb2024-01-23 17:18:16 +0100854 If you have a machine with a integrated SD/MMC card reader, say Y here.
developerdc5a9aa2018-11-15 10:08:04 +0800855 This is needed if support for any SD/SDIO/MMC devices is required.
856 If unsure, say N.
857
Masahiro Yamadae8b99722016-12-07 22:10:27 +0900858endif
859
Tom Rini6fb86c12022-12-02 16:42:21 -0500860config FSL_SDHC_V2_3
861 bool
862
Mario Six41d7d972018-03-28 14:38:19 +0200863config FSL_ESDHC
864 bool "Freescale/NXP eSDHC controller support"
Tom Rini6fb86c12022-12-02 16:42:21 -0500865 select FSL_SDHC_V2_3 if ARCH_P1010 || ARCH_BSC9131 || ARCH_BSC9132 \
866 || ARCH_C29X
Mario Six41d7d972018-03-28 14:38:19 +0200867 help
Yangbo Lu982f4252019-06-21 11:42:27 +0800868 This selects support for the eSDHC (Enhanced Secure Digital Host
869 Controller) found on numerous Freescale/NXP SoCs.
870
Michael Walle081d4012020-10-12 10:07:14 +0200871config FSL_ESDHC_SUPPORT_ADMA2
872 bool "enable ADMA2 support"
873 depends on FSL_ESDHC
874 select MMC_SDHCI_ADMA_HELPERS
875 help
876 This enables support for the ADMA2 transfer mode. If supported by the
877 eSDHC it will allow 64bit DMA addresses.
878
Yangbo Luce884022020-05-19 11:06:44 +0800879config FSL_ESDHC_33V_IO_RELIABILITY_WORKAROUND
880 bool "enable eSDHC workaround for 3.3v IO reliability issue"
881 depends on FSL_ESDHC && DM_MMC
Yangbo Luce884022020-05-19 11:06:44 +0800882 help
883 When eSDHC operates at 3.3v, damage can accumulate in an internal
884 level shifter at a higher than expected rate. The faster the interface
885 runs, the more damage accumulates. This issue now is found on LX2160A
886 eSDHC1 for only SD card. The hardware workaround is recommended to use
887 an on-board level shifter that is 1.8v on SoC side and 3.3v on SD card
888 side. For boards without hardware workaround, this option could be
889 enabled, ensuring 1.8v IO voltage and disabling eSDHC if no card.
890 This option assumes no hotplug, and u-boot has to make all the way to
891 to linux to use 1.8v UHS-I speed mode if has card.
892
Yangbo Lue087cd62021-06-03 10:51:17 +0800893config FSL_ESDHC_VS33_NOT_SUPPORT
894 bool "3.3V power supply not supported"
895 depends on FSL_ESDHC
896 help
897 For eSDHC, power supply is through peripheral circuit. 3.3V support is
898 common. Select this if 3.3V power supply not supported.
899
Pali Rohár3a672d62022-05-11 20:27:13 +0200900config SYS_FSL_ESDHC_DEFAULT_BUS_WIDTH
901 int
902 depends on FSL_ESDHC
903 default 1
904
Tom Rinibdd47f32022-06-16 14:04:38 -0400905config ESDHC_DETECT_QUIRK
906 bool "QIXIS-based eSDHC quirk detection"
907 depends on FSL_ESDHC && FSL_QIXIS
908
Yangbo Lu982f4252019-06-21 11:42:27 +0800909config FSL_ESDHC_IMX
910 bool "Freescale/NXP i.MX eSDHC controller support"
911 help
912 This selects support for the i.MX eSDHC (Enhanced Secure Digital Host
913 Controller) found on numerous Freescale/NXP SoCs.
Mario Six41d7d972018-03-28 14:38:19 +0200914
Tom Rinidad332b2022-07-31 21:08:25 -0400915config SYS_FSL_ESDHC_HAS_DDR_MODE
916 bool "i.MX eSDHC controller supports DDR mode"
917 depends on FSL_ESDHC_IMX
918
Adam Ford01836582019-08-14 07:23:43 -0500919config FSL_USDHC
920 bool "Freescale/NXP i.MX uSDHC controller support"
Peng Fan29b31a52022-07-26 16:40:44 +0800921 depends on MX6 || MX7 ||ARCH_MX7ULP || IMX8 || IMX8M || IMX8ULP || IMX9 || IMXRT
Adam Ford01836582019-08-14 07:23:43 -0500922 select FSL_ESDHC_IMX
923 help
924 This enables the Ultra Secured Digital Host Controller enhancements
925
Tom Rinif8967f82022-12-02 16:42:22 -0500926config FSL_ESDHC_PIN_MUX
927 bool "Perform esdhc device-tree fixup"
928 depends on (FSL_ESDHC || FSL_ESDHC_IMX) && OF_LIBFDT
929
Nobuhiro Iwamatsu3ec5f862014-12-17 08:03:00 +0900930endmenu
York Sun097e3602016-12-28 08:43:42 -0800931
932config SYS_FSL_ERRATUM_ESDHC111
933 bool
934
935config SYS_FSL_ERRATUM_ESDHC13
936 bool
937
938config SYS_FSL_ERRATUM_ESDHC135
939 bool
940
941config SYS_FSL_ERRATUM_ESDHC_A001
942 bool
Michael Walle148dc612021-03-17 15:01:36 +0100943
944config SYS_FSL_ERRATUM_A011334
945 bool
Michael Walle7259dc52021-03-17 15:01:37 +0100946
947config SYS_FSL_ESDHC_UNRELIABLE_PULSE_DETECTION_WORKAROUND
948 bool