blob: d0944793c92d3fd7d3be063ab754d6fb3ec3b232 [file] [log] [blame]
Nobuhiro Iwamatsu72d42ba2014-12-17 08:03:00 +09001menu "MMC Host controller Support"
2
Maxime Ripard7a777f62015-10-15 22:04:05 +02003config MMC
Masahiro Yamadac2726992016-12-07 22:10:26 +09004 bool "MMC/SD/SDIO card support"
5 default ARM || PPC || SANDBOX
Tom Rinif7173fc2021-04-21 15:32:27 -04006 select DM_MMC if DM
Maxime Ripard7a777f62015-10-15 22:04:05 +02007 help
Masahiro Yamadac2726992016-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 Ripard7a777f62015-10-15 22:04:05 +020013
Jean-Jacques Hiblotd6400c32018-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 Chungcaee38a2021-02-16 10:16:52 +090021config MMC_PWRSEQ
22 bool "HW reset support for eMMC"
Jonas Karlmand06e4892024-01-27 17:12:35 +000023 depends on PWRSEQ && DM_GPIO
Jaehoon Chungcaee38a2021-02-16 10:16:52 +090024 help
Jonas Karlmand06e4892024-01-27 17:12:35 +000025 This select Hardware reset support aka pwrseq-emmc for eMMC
Jaehoon Chungcaee38a2021-02-16 10:16:52 +090026 devices.
27
Jonas Karlmand06e4892024-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 Nie2f516e42018-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 Glasse7ecf7c2015-06-23 15:38:48 -060041config DM_MMC
42 bool "Enable MMC controllers using Driver Model"
43 depends on DM
Tom Rinif7173fc2021-04-21 15:32:27 -040044 select BLK
Simon Glasse7ecf7c2015-06-23 15:38:48 -060045 help
Robert P. J. Day62a3b7d2016-07-15 13:44:45 -040046 This enables the MultiMediaCard (MMC) uclass which supports MMC and
Simon Glasse7ecf7c2015-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 Glassc4d660d2017-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ár35ed1762022-05-24 10:58:42 +020055 default n if ARCH_MVEBU && !MVEBU_SPL_BOOT_DEVICE_MMC
Simon Glassc4d660d2017-07-04 13:31:19 -060056 default y
Oleksandr Suvorov9b8ebd32023-08-23 18:45:45 +030057 select SPL_BLK
Simon Glassc4d660d2017-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 Yamadae298c462016-12-07 22:10:27 +090065if MMC
66
Michael Walle4d6a7732020-09-23 12:42:51 +020067config MMC_SDHCI_ADMA_HELPERS
68 bool
69
Bhargav Shah05e35d42019-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 Chotard3c0dbed2017-10-23 10:57:31 +020088config ARM_PL180_MMCI
89 bool "ARM AMBA Multimedia Card Interface and compatible support"
Linus Walleijee6cee12024-02-08 10:33:43 +010090 depends on DM_MMC
Patrice Chotard3c0dbed2017-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 Schuchardt4c9307b2024-01-23 17:18:16 +010095 say Y here.
Patrice Chotard3c0dbed2017-10-23 10:57:31 +020096
Kishon Vijay Abraham I83dc4222017-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 Johnson26632b72020-01-11 09:08:15 -0700103 are enabled by default, other may require additional flags or are
Kishon Vijay Abraham I83dc4222017-09-21 16:30:10 +0200104 enabled by the host driver.
105
Tom Rini75fc79e2022-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 Hiblotcf177892017-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 Kiernan5a7b11e2018-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 Kiernan623de3f2019-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 Hiblotf99c2ef2017-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 Rinib3401992022-06-10 23:03:09 -0400143 depends on SPL_MMC
Jean-Jacques Hiblotf99c2ef2017-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
Tom Rini03de3052024-05-20 13:35:03 -0600150config MMC_SUPPORTS_TUNING
151 bool
152
153config SPL_MMC_SUPPORTS_TUNING
154 bool
155
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +0100156config MMC_UHS_SUPPORT
157 bool "enable UHS support"
158 depends on MMC_IO_VOLTAGE
Tom Rini03de3052024-05-20 13:35:03 -0600159 select MMC_SUPPORTS_TUNING
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +0100160 help
161 The Ultra High Speed (UHS) bus is available on some SDHC and SDXC
162 cards. The IO voltage must be switchable from 3.3v to 1.8v. The bus
163 frequency can go up to 208MHz (SDR104)
164
165config SPL_MMC_UHS_SUPPORT
166 bool "enable UHS support in SPL"
167 depends on SPL_MMC_IO_VOLTAGE
Tom Rini03de3052024-05-20 13:35:03 -0600168 select SPL_MMC_SUPPORTS_TUNING
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +0100169 help
170 The Ultra High Speed (UHS) bus is available on some SDHC and SDXC
171 cards. The IO voltage must be switchable from 3.3v to 1.8v. The bus
172 frequency can go up to 208MHz (SDR104)
173
Peng Fan44acd492019-07-10 14:43:07 +0800174config MMC_HS400_ES_SUPPORT
175 bool "enable HS400 Enhanced Strobe support"
176 help
177 The HS400 Enhanced Strobe mode is support by some eMMC. The bus
178 frequency is up to 200MHz. This mode does not tune the IO.
179
180config SPL_MMC_HS400_ES_SUPPORT
181 bool "enable HS400 Enhanced Strobe support in SPL"
Tom Rinib3401992022-06-10 23:03:09 -0400182 depends on SPL_MMC
Peng Fan44acd492019-07-10 14:43:07 +0800183 help
184 The HS400 Enhanced Strobe mode is support by some eMMC. The bus
185 frequency is up to 200MHz. This mode does not tune the IO.
186
Peng Fan3dd26262018-08-10 14:07:54 +0800187config MMC_HS400_SUPPORT
188 bool "enable HS400 support"
189 select MMC_HS200_SUPPORT
190 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
194config SPL_MMC_HS400_SUPPORT
195 bool "enable HS400 support in SPL"
Tom Rinib3401992022-06-10 23:03:09 -0400196 depends on SPL_MMC
Faiz Abbas68b3e8b2019-08-01 16:33:36 +0530197 select SPL_MMC_HS200_SUPPORT
Peng Fan3dd26262018-08-10 14:07:54 +0800198 help
199 The HS400 mode is support by some eMMC. The bus frequency is up to
200 200MHz. This mode requires tuning the IO.
201
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +0100202config MMC_HS200_SUPPORT
203 bool "enable HS200 support"
Tom Rini03de3052024-05-20 13:35:03 -0600204 select MMC_SUPPORTS_TUNING
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +0100205 help
206 The HS200 mode is support by some eMMC. The bus frequency is up to
207 200MHz. This mode requires tuning the IO.
208
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +0100209config SPL_MMC_HS200_SUPPORT
210 bool "enable HS200 support in SPL"
Tom Rinib3401992022-06-10 23:03:09 -0400211 depends on SPL_MMC
Tom Rini03de3052024-05-20 13:35:03 -0600212 select SPL_MMC_SUPPORTS_TUNING
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +0100213 help
214 The HS200 mode is support by some eMMC. The bus frequency is up to
215 200MHz. This mode requires tuning the IO.
216
Jean-Jacques Hiblot35f9e192017-09-21 16:29:53 +0200217config MMC_VERBOSE
218 bool "Output more information about the MMC"
219 default y
220 help
221 Enable the output of more information about the card such as the
222 operating mode.
223
Jaehoon Chung72b5a032018-01-26 19:25:31 +0900224config MMC_TRACE
225 bool "MMC debugging"
Jaehoon Chung72b5a032018-01-26 19:25:31 +0900226 help
227 This is an option for use by developer. Enable MMC core debugging.
228
229 If you need to see the MMC core message, say Y.
230
Masahiro Yamada1d2c0502017-01-10 13:32:07 +0900231config MMC_DAVINCI
232 bool "TI DAVINCI Multimedia Card Interface support"
233 depends on ARCH_DAVINCI
234 default y
235 help
236 This selects the TI DAVINCI Multimedia card Interface.
237 If you have an DAVINCI board with a Multimedia Card slot,
238 say Y here. If unsure, say N.
239
Masahiro Yamada55ed3b42017-01-10 13:32:04 +0900240config MMC_DW
241 bool "Synopsys DesignWare Memory Card Interface"
Philipp Tomsich2acc24f2018-11-30 22:13:25 +0100242 select BOUNCE_BUFFER
Masahiro Yamada55ed3b42017-01-10 13:32:04 +0900243 help
244 This selects support for the Synopsys DesignWare Mobile Storage IP
245 block, this provides host support for SD and MMC interfaces, in both
246 PIO, internal DMA mode and external DMA mode.
247
Arthur Lid55e4e72020-02-20 18:19:35 -0800248config MMC_DW_CORTINA
249 bool "Cortina specific extensions for Synopsys DW Memory Card Interface"
250 depends on DM_MMC
251 depends on MMC_DW
252 depends on BLK
Arthur Lid55e4e72020-02-20 18:19:35 -0800253 help
254 This selects support for Cortina SoC specific extensions to the
255 Synopsys DesignWare Memory Card Interface driver. Select this option
256 for platforms based on Cortina CAxxxx Soc's.
257
Masahiro Yamadaae4c81e2017-01-10 13:32:05 +0900258config MMC_DW_EXYNOS
259 bool "Exynos specific extensions for Synopsys DW Memory Card Interface"
260 depends on ARCH_EXYNOS
261 depends on MMC_DW
262 default y
263 help
264 This selects support for Samsung Exynos SoC specific extensions to the
265 Synopsys DesignWare Memory Card Interface driver. Select this option
266 for platforms based on Exynos4 and Exynos5 SoC's.
267
268config MMC_DW_K3
269 bool "K3 specific extensions for Synopsys DW Memory Card Interface"
270 depends on MMC_DW
271 help
272 This selects support for Hisilicon K3 SoC specific extensions to the
273 Synopsys DesignWare Memory Card Interface driver. Select this option
274 for platforms based on Hisilicon K3 SoC's.
275
Masahiro Yamadafed44082017-01-10 13:32:03 +0900276config MMC_DW_ROCKCHIP
Simon Glassa8cb4fb2015-08-30 16:55:37 -0600277 bool "Rockchip SD/MMC controller support"
278 depends on DM_MMC && OF_CONTROL
Masahiro Yamada55ed3b42017-01-10 13:32:04 +0900279 depends on MMC_DW
Simon Glassa8cb4fb2015-08-30 16:55:37 -0600280 help
281 This enables support for the Rockchip SD/MMM controller, which is
282 based on Designware IP. The device is compatible with at least
283 SD 3.0, SDIO 3.0 and MMC 4.5 and supports common eMMC chips as well
284 as removeable SD and micro-SD cards.
285
Masahiro Yamadaae4c81e2017-01-10 13:32:05 +0900286config MMC_DW_SOCFPGA
287 bool "SOCFPGA specific extensions for Synopsys DW Memory Card Interface"
288 depends on ARCH_SOCFPGA
289 depends on MMC_DW
290 default y
291 help
292 This selects support for Altera SOCFPGA specific extensions to the
293 Synopsys DesignWare Memory Card Interface driver. Select this option
294 for platforms based on Altera SOCFPGA.
295
Eugeniy Paltsev15736e22019-02-25 18:35:28 +0300296config MMC_DW_SNPS
297 bool "Extensions for DW Memory Card Interface used in Synopsys ARC devboards"
298 depends on MMC_DW
299 depends on DM_MMC
300 depends on OF_CONTROL
301 depends on CLK
302 help
303 This selects support for Synopsys DesignWare Memory Card Interface driver
304 extensions used in various Synopsys ARC devboards.
305
Stefan Bosch84083182020-07-10 19:07:29 +0200306config NEXELL_DWMMC
307 bool "Nexell SD/MMC controller support"
308 depends on ARCH_NEXELL
309 depends on MMC_DW
310 depends on DM_MMC
311 depends on PINCTRL_NEXELL
312 default y
313
Carlo Caione93738622017-04-12 20:30:42 +0200314config MMC_MESON_GX
315 bool "Meson GX EMMC controller support"
Simon Glasse7881d82017-07-29 11:35:31 -0600316 depends on DM_MMC && BLK && ARCH_MESON
Carlo Caione93738622017-04-12 20:30:42 +0200317 help
318 Support for EMMC host controller on Meson GX ARM SoCs platform (S905)
319
Masahiro Yamada1d2c0502017-01-10 13:32:07 +0900320config MMC_MXC
321 bool "Freescale i.MX21/27/31 or MPC512x Multimedia Card support"
322 help
323 This selects the Freescale i.MX21, i.MX27, i.MX31 or MPC512x
324 Multimedia Card Interface. If you have an i.MX or MPC512x platform
325 with a Multimedia Card slot, say Y here.
326
327 If unsure, say N.
328
Amit Singh Tomar57a91c32021-11-28 17:02:24 +0530329config MMC_OWL
330 bool "Actions OWL Multimedia Card Interface support"
331 depends on ARCH_OWL && DM_MMC && BLK
332 help
333 This selects the OWL SD/MMC host controller found on board
334 based on Actions S700/S900 SoC.
335
Masahiro Yamada1d2c0502017-01-10 13:32:07 +0900336config MMC_MXS
337 bool "Freescale MXS Multimedia Card Interface support"
Adam Ford99bec1a2018-02-06 08:34:45 -0600338 depends on MX23 || MX28 || MX6 || MX7
Philipp Tomsich2acc24f2018-11-30 22:13:25 +0100339 select BOUNCE_BUFFER
Adam Ford99bec1a2018-02-06 08:34:45 -0600340 select APBH_DMA
341 select APBH_DMA_BURST if ARCH_MX6 || ARCH_MX7
342 select APBH_DMA_BURST8 if ARCH_MX6 || ARCH_MX7
Masahiro Yamada1d2c0502017-01-10 13:32:07 +0900343 help
344 This selects the Freescale SSP MMC controller found on MXS based
345 platforms like mx23/28.
346
347 If unsure, say N.
348
Felipe Balbib706b1c2017-02-20 14:24:13 +0300349config MMC_PCI
350 bool "Support for MMC controllers on PCI"
Bin Meng511dcc32021-02-15 20:01:44 +0800351 depends on MMC_SDHCI
Felipe Balbib706b1c2017-02-20 14:24:13 +0300352 help
353 This selects PCI-based MMC controllers.
354 If you have an MMC controller on a PCI bus, say Y here.
355
Suneel Garapati70859892019-10-19 18:03:01 -0700356config MMC_OCTEONTX
Stefan Roesef9bb0ba2021-03-12 09:48:25 +0100357 bool "Marvell Octeon Multimedia Card Interface support"
358 depends on (ARCH_OCTEON || ARCH_OCTEONTX || ARCH_OCTEONTX2)
Suneel Garapati70859892019-10-19 18:03:01 -0700359 depends on DM_MMC
Tom Rini03de3052024-05-20 13:35:03 -0600360 select MMC_SUPPORTS_TUNING if ARCH_OCTEONTX2
Suneel Garapati70859892019-10-19 18:03:01 -0700361 help
Stefan Roesef9bb0ba2021-03-12 09:48:25 +0100362 This selects the Octeon Multimedia card Interface.
363 If you have an OcteonTX/TX2 or MIPS Octeon board with a
364 Multimedia Card slot, say Y here.
Suneel Garapati70859892019-10-19 18:03:01 -0700365
Felipe Balbib706b1c2017-02-20 14:24:13 +0300366 If unsure, say N.
367
Harm Berntsenc689ae02021-03-30 10:19:41 +0200368config MVEBU_MMC
369 bool "Kirkwood MMC controller support"
370 depends on DM_MMC && BLK && ARCH_KIRKWOOD
371 help
372 Support for MMC host controller on Kirkwood SoCs.
373 If you are on a Kirkwood architecture, say Y here.
374
375 If unsure, say N.
376
Masahiro Yamada1d2c0502017-01-10 13:32:07 +0900377config MMC_OMAP_HS
378 bool "TI OMAP High Speed Multimedia Card Interface support"
Simon Glasse7881d82017-07-29 11:35:31 -0600379 select DM_REGULATOR_PBIAS if DM_MMC && DM_REGULATOR
Jean-Jacques Hiblot8ff77632017-09-21 17:03:10 +0200380 select DM_REGULATOR_PBIAS if DM_MMC && DM_REGULATOR
Masahiro Yamada1d2c0502017-01-10 13:32:07 +0900381 help
382 This selects the TI OMAP High Speed Multimedia card Interface.
383 If you have an omap2plus board with a Multimedia Card slot,
384 say Y here.
385
386 If unsure, say N.
387
Jean-Jacques Hiblot27a4b3b2018-02-23 10:40:18 +0100388config MMC_OMAP_HS_ADMA
389 bool "ADMA support for OMAP HS MMC"
390 depends on MMC_OMAP_HS && !OMAP34XX
391 default y if !AM33XX
392 help
393 This enables support for the ADMA2 controller (SDA3.00 Part A2 DMA
394 controller). If supported by the hardware, selecting this option will
395 increase performances.
396
Adam Ford6aca17c2017-02-06 11:31:43 -0600397config MMC_OMAP36XX_PINS
398 bool "Enable MMC1 on OMAP36xx/37xx"
399 depends on OMAP34XX && MMC_OMAP_HS
400 help
401 This enables extended-drain in the MMC/SD/SDIO1I/O and
402 GPIO-associated I/O cells (gpio_126, gpio_127, and gpio_129)
403 specific to the OMAP36xx/37xx using MMC1
404
405 If you have a controller with this interface, say Y here.
406
407 If unsure, say N.
408
Tom Rini2440b5b2022-12-02 16:42:16 -0500409config HSMMC2_8BIT
410 bool "Enable 8-bit interface for eMMC (interface #2)"
411 depends on MMC_OMAP_HS && (OMAP44XX || OMAP54XX || DRA7XX || AM33XX || \
412 AM43XX || ARCH_KEYSTONE)
413
Marek Vasutf3dca4a2018-04-21 17:40:20 +0200414config SH_MMCIF
415 bool "SuperH/Renesas ARM SoCs on-chip MMCIF host controller support"
Marek Vasutf9aabd42024-02-27 17:05:55 +0100416 depends on ARCH_RENESAS || SH
Marek Vasutf3dca4a2018-04-21 17:40:20 +0200417 help
418 Support for the on-chip MMCIF host controller on SuperH/Renesas ARM SoCs platform
419
Masahiro Yamadaa111bfb2016-02-18 19:52:48 +0900420config MMC_UNIPHIER
Marek Vasut7dfddc02017-09-23 13:30:30 +0200421 bool "UniPhier SD/MMC Host Controller support"
422 depends on ARCH_UNIPHIER
Simon Glasse7881d82017-07-29 11:35:31 -0600423 depends on BLK && DM_MMC
Masahiro Yamada9c720c82016-12-30 23:20:14 +0900424 depends on OF_CONTROL
Masahiro Yamadaa111bfb2016-02-18 19:52:48 +0900425 help
Marek Vasutb24633d2017-07-21 23:24:36 +0200426 This selects support for the Matsushita SD/MMC Host Controller on
Marek Vasut7dfddc02017-09-23 13:30:30 +0200427 SocioNext UniPhier SoCs.
428
429config RENESAS_SDHI
430 bool "Renesas R-Car SD/MMC Host Controller support"
Marek Vasutf9aabd42024-02-27 17:05:55 +0100431 depends on ARCH_RENESAS
Marek Vasut7dfddc02017-09-23 13:30:30 +0200432 depends on BLK && DM_MMC
433 depends on OF_CONTROL
Marek Vasutd2661d82020-04-04 12:45:04 +0200434 select BOUNCE_BUFFER
Marek Vasut7dfddc02017-09-23 13:30:30 +0200435 help
436 This selects support for the Matsushita SD/MMC Host Controller on
437 Renesas R-Car SoCs.
Masahiro Yamadaa111bfb2016-02-18 19:52:48 +0900438
Alexander Grafc8a73a22018-01-23 18:05:22 +0100439config MMC_BCM2835
440 bool "BCM2835 family custom SD/MMC Host Controller support"
441 depends on ARCH_BCM283X
442 depends on BLK && DM_MMC
443 depends on OF_CONTROL
444 default y
445 help
446 This selects support for the custom SD host controller in the BCM2835
447 family of devices.
448
449 If you have a BCM2835 platform with SD or MMC devices, say Y here.
450
451 If unsure, say N.
452
Paul Burtond7727132018-12-16 19:25:20 -0300453config JZ47XX_MMC
454 bool "Ingenic JZ47xx SD/MMC Host Controller support"
455 depends on ARCH_JZ47XX
456 help
457 This selects support for the SD Card Controller on Ingenic JZ47xx SoCs.
458
Masahiro Yamadaa5995a52017-01-30 19:46:50 +0900459config MMC_SANDBOX
Simon Glassf376a3c2016-05-01 13:52:42 -0600460 bool "Sandbox MMC support"
Masahiro Yamadaa5995a52017-01-30 19:46:50 +0900461 depends on SANDBOX
Simon Glasse7881d82017-07-29 11:35:31 -0600462 depends on BLK && DM_MMC && OF_CONTROL
Simon Glassf376a3c2016-05-01 13:52:42 -0600463 help
464 This select a dummy sandbox MMC driver. At present this does nothing
465 other than allow sandbox to be build with MMC support. This
466 improves build coverage for sandbox and makes it easier to detect
467 MMC build errors with sandbox.
468
Masahiro Yamadae1ce61f2016-12-07 22:10:28 +0900469config MMC_SDHCI
470 bool "Secure Digital Host Controller Interface support"
471 help
472 This selects the generic Secure Digital Host Controller Interface.
473 It is used by manufacturers such as Texas Instruments(R), Ricoh(R)
474 and Toshiba(R). Most controllers found in laptops are of this type.
475
476 If you have a controller with this interface, say Y here.
477
478 If unsure, say N.
479
Masahiro Yamada3d3a74c2016-12-07 22:10:30 +0900480config MMC_SDHCI_IO_ACCESSORS
481 bool
482 depends on MMC_SDHCI
483 help
484 This is silent Kconfig symbol that is selected by the drivers that
485 need to overwrite SDHCI IO memory accessors.
486
Masahiro Yamada45a68fe2016-12-07 22:10:29 +0900487config MMC_SDHCI_SDMA
488 bool "Support SDHCI SDMA"
489 depends on MMC_SDHCI
490 help
491 This enables support for the SDMA (Single Operation DMA) defined
492 in the SD Host Controller Standard Specification Version 1.00 .
493
Peter Geis3cd664d2023-04-18 16:46:44 +0000494config SPL_MMC_SDHCI_SDMA
495 bool "Support SDHCI SDMA in SPL"
496 depends on SPL_MMC && MMC_SDHCI
497 default y if MMC_SDHCI_SDMA
498 help
499 This enables support for the SDMA (Single Operation DMA) defined
500 in the SD Host Controller Standard Specification Version 1.00 in SPL.
501
Faiz Abbas37cb6262019-04-16 23:06:58 +0530502config MMC_SDHCI_ADMA
503 bool "Support SDHCI ADMA2"
504 depends on MMC_SDHCI
Michael Walle4d6a7732020-09-23 12:42:51 +0200505 select MMC_SDHCI_ADMA_HELPERS
Faiz Abbas37cb6262019-04-16 23:06:58 +0530506 help
507 This enables support for the ADMA (Advanced DMA) defined
508 in the SD Host Controller Standard Specification Version 3.00
509
510config SPL_MMC_SDHCI_ADMA
511 bool "Support SDHCI ADMA2 in SPL"
Tom Rinib3401992022-06-10 23:03:09 -0400512 depends on SPL_MMC && MMC_SDHCI
Michael Walle4d6a7732020-09-23 12:42:51 +0200513 select MMC_SDHCI_ADMA_HELPERS
Faiz Abbas37cb6262019-04-16 23:06:58 +0530514 help
515 This enables support for the ADMA (Advanced DMA) defined
516 in the SD Host Controller Standard Specification Version 3.00 in SPL.
517
Greg Malysa5359cd12024-03-25 22:28:08 -0400518config MMC_SDHCI_ADMA_FORCE_32BIT
519 bool "Force 32 bit mode for ADMA on 64 bit platforms"
520 help
521 This forces SDHCI ADMA to be built for 32 bit descriptors, even
522 on a 64 bit platform where they would otherwise be assumed to
523 be 64 bits. This is necessary for certain hardware platforms
524 that are 64-bit but include only 32-bit support within the selected
525 SD host controller IP.
526
527config MMC_SDHCI_ADMA_64BIT
528 bool "Use SHDCI ADMA with 64 bit descriptors"
529 depends on !MMC_SDHCI_ADMA_FORCE_32BIT
530 default y if DMA_ADDR_T_64BIT
531 help
532 This selects 64 bit descriptors for SDHCI ADMA. It is enabled by
533 default on 64 bit systems, but can be disabled if one of these
534 systems includes 32-bit ADMA.
535
Chris Packhamb19512f2022-05-29 11:13:17 +1200536config FIXED_SDHCI_ALIGNED_BUFFER
537 hex "SDRAM address for fixed buffer"
538 depends on SPL && MVEBU_SPL_BOOT_DEVICE_MMC
539 default 0x00180000
540 help
541 On the Marvell Armada 38x when the SPL runs it located in internal
542 SRAM which is the L2 cache locked to memory. When the MMC buffers
543 are located on the stack (or bss), the SDIO controller (SDHCI) can't
544 write into this L2 cache memory.
545
546 This specifies the address of a fixed buffer located in SDRAM that
547 will be used for all SDHCI transfers in the SPL.
548
Eddie James7764ee22019-08-27 09:48:03 -0500549config MMC_SDHCI_ASPEED
550 bool "Aspeed SDHCI controller"
551 depends on ARCH_ASPEED
552 depends on DM_MMC
553 depends on MMC_SDHCI
Joel Stanley66900bc2022-06-23 18:35:34 +0930554 select MISC
Eddie James7764ee22019-08-27 09:48:03 -0500555 help
556 Enables support for the Aspeed SDHCI 2.0 controller present on Aspeed
557 SoCs. This device is compatible with SD 3.0 and/or MMC 4.3
558 specifications. On the AST2600, the device is also compatible with
559 MMC 5.1 and eMMC 3.0.
560
Masahiro Yamadadd3b64e2017-01-30 19:46:55 +0900561config MMC_SDHCI_ATMEL
562 bool "Atmel SDHCI controller support"
563 depends on ARCH_AT91
Simon Glasse7881d82017-07-29 11:35:31 -0600564 depends on DM_MMC && BLK && ARCH_AT91
Masahiro Yamadadd3b64e2017-01-30 19:46:55 +0900565 depends on MMC_SDHCI
566 help
567 This enables support for the Atmel SDHCI controller, which supports
568 the embedded MultiMedia Card (e.MMC) Specification V4.51, the SD
569 Memory Card Specification V3.0, and the SDIO V3.0 specification.
570 It is compliant with the SD Host Controller Standard V3.0
571 specification.
572
Masahiro Yamada45a68fe2016-12-07 22:10:29 +0900573config MMC_SDHCI_BCM2835
574 tristate "SDHCI support for the BCM2835 SD/MMC Controller"
575 depends on ARCH_BCM283X
576 depends on MMC_SDHCI
Masahiro Yamada3d3a74c2016-12-07 22:10:30 +0900577 select MMC_SDHCI_IO_ACCESSORS
Masahiro Yamada45a68fe2016-12-07 22:10:29 +0900578 help
579 This selects the BCM2835 SD/MMC controller.
580
581 If you have a BCM2835 platform with SD or MMC devices,
582 say Y here.
583
584 If unsure, say N.
585
Thomas Fitzsimmons894c3ad2018-06-08 17:59:45 -0400586config MMC_SDHCI_BCMSTB
587 tristate "SDHCI support for the BCMSTB SD/MMC Controller"
588 depends on MMC_SDHCI
589 help
590 This selects the Broadcom set-top box SD/MMC controller.
591
592 If you have a BCMSTB platform with SD or MMC devices,
593 say Y here.
594
595 If unsure, say N.
596
Masahiro Yamadae5e7a7c2016-12-30 22:41:46 +0900597config MMC_SDHCI_CADENCE
598 bool "SDHCI support for the Cadence SD/SDIO/eMMC controller"
Simon Glasse7881d82017-07-29 11:35:31 -0600599 depends on BLK && DM_MMC
Masahiro Yamadae5e7a7c2016-12-30 22:41:46 +0900600 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
Kongyang Liueb36f282024-03-10 01:51:55 +0800609config MMC_SDHCI_CV1800B
610 bool "SDHCI support for the CV1800B SD/SDIO/eMMC controller"
611 depends on BLK && DM_MMC
612 depends on MMC_SDHCI
613 depends on OF_CONTROL
614 help
615 This selects the CV1800B SD/SDIO/eMMC driver.
616
617 If you have a controller with this interface,
618 say Y here.
619
620 If unsure, say N.
621
Faiz Abbas3a1a0df2019-06-11 00:43:31 +0530622config MMC_SDHCI_AM654
623 bool "SDHCI Controller on TI's Am654 devices"
Lokesh Vutlaaaa449f2018-08-27 15:57:54 +0530624 depends on ARCH_K3
625 depends on MMC_SDHCI
626 depends on DM_MMC && OF_CONTROL && BLK
Faiz Abbasce142ff2019-06-11 00:43:38 +0530627 depends on REGMAP
Faiz Abbas27a87c82021-02-04 15:10:54 +0530628 select MMC_SDHCI_IO_ACCESSORS
Lokesh Vutlaaaa449f2018-08-27 15:57:54 +0530629 help
Faiz Abbas3a1a0df2019-06-11 00:43:31 +0530630 Support for Secure Digital Host Controller Interface (SDHCI)
631 controllers present on TI's AM654 SOCs.
Lokesh Vutlaaaa449f2018-08-27 15:57:54 +0530632
Arun Parameswaran36645f42019-09-12 11:06:08 -0700633config MMC_SDHCI_IPROC
634 bool "SDHCI support for the iProc SD/MMC Controller"
635 depends on MMC_SDHCI
636 help
637 This selects the iProc SD/MMC controller.
638
639 If you have a Broadcom IPROC platform with SD or MMC devices,
Heinrich Schuchardt4c9307b2024-01-23 17:18:16 +0100640 say Y here.
Arun Parameswaran36645f42019-09-12 11:06:08 -0700641
642 If unsure, say N.
643
Jassi Brardadd43c2021-06-04 18:44:16 +0900644config MMC_SDHCI_F_SDH30
Kunihiko Hayashi12fc8ef2022-09-09 16:23:33 +0900645 bool "SDHCI support for Fujitsu Semiconductor/Socionext F_SDH30"
Jassi Brardadd43c2021-06-04 18:44:16 +0900646 depends on BLK && DM_MMC
647 depends on MMC_SDHCI
648 help
649 This selects the Secure Digital Host Controller Interface (SDHCI)
Kunihiko Hayashi12fc8ef2022-09-09 16:23:33 +0900650 Needed by some Fujitsu/Socionext SoC for MMC / SD / SDIO support.
Heinrich Schuchardt4c9307b2024-01-23 17:18:16 +0100651 If you have a controller with this interface, say Y here.
Jassi Brardadd43c2021-06-04 18:44:16 +0900652 If unsure, say N.
653
Masahiro Yamada45a68fe2016-12-07 22:10:29 +0900654config MMC_SDHCI_KONA
655 bool "SDHCI support on Broadcom KONA platform"
656 depends on MMC_SDHCI
657 help
658 This selects the Broadcom Kona Secure Digital Host Controller
659 Interface(SDHCI) support.
660 This is used in Broadcom mobile SoCs.
661
662 If you have a controller with this interface, say Y here.
663
Masahiro Yamada360c67d2017-01-30 19:46:53 +0900664config MMC_SDHCI_MSM
665 bool "Qualcomm SDHCI controller"
Simon Glasse7881d82017-07-29 11:35:31 -0600666 depends on BLK && DM_MMC
Masahiro Yamada360c67d2017-01-30 19:46:53 +0900667 depends on MMC_SDHCI
668 help
669 Enables support for SDHCI 2.0 controller present on some Qualcomm
670 Snapdragon devices. This device is compatible with eMMC v4.5 and
671 SD 3.0 specifications. Both SD and eMMC devices are supported.
672 Card-detect gpios are not supported.
673
Masahiro Yamada45a68fe2016-12-07 22:10:29 +0900674config MMC_SDHCI_MV
675 bool "SDHCI support on Marvell platform"
676 depends on ARCH_MVEBU
677 depends on MMC_SDHCI
Stefan Roese8af21b02023-02-10 13:23:52 +0100678 depends on DM_MMC
Masahiro Yamada45a68fe2016-12-07 22:10:29 +0900679 help
680 This selects the Secure Digital Host Controller Interface on
681 Marvell platform.
682
683 If you have a controller with this interface, say Y here.
684
685 If unsure, say N.
686
Jim Liu3363a732022-05-24 16:55:33 +0800687config MMC_SDHCI_NPCM
688 bool "SDHCI support on Nuvoton NPCM device"
689 depends on MMC_SDHCI
690 depends on DM_MMC
691 help
692 This selects the Secure Digital Host Controller Interface (SDHCI)
693 on Nuvoton NPCM device.
694
695 If you have a controller with this interface, say Y here.
696
697 If unsure, say N.
698
Masahiro Yamada1b858772017-01-30 19:46:54 +0900699config MMC_SDHCI_PIC32
700 bool "Microchip PIC32 on-chip SDHCI support"
701 depends on DM_MMC && MACH_PIC32
702 depends on MMC_SDHCI
703 help
704 Support for Microchip PIC32 SDHCI controller.
705
Masahiro Yamadafacc8052017-01-30 19:46:52 +0900706config MMC_SDHCI_ROCKCHIP
707 bool "Arasan SDHCI controller for Rockchip support"
708 depends on ARCH_ROCKCHIP
Simon Glasse7881d82017-07-29 11:35:31 -0600709 depends on DM_MMC && BLK
Masahiro Yamadafacc8052017-01-30 19:46:52 +0900710 depends on MMC_SDHCI
711 help
712 Support for Arasan SDHCI host controller on Rockchip ARM SoCs platform
713
Masahiro Yamada45a68fe2016-12-07 22:10:29 +0900714config MMC_SDHCI_S5P
715 bool "SDHCI support on Samsung S5P SoC"
716 depends on MMC_SDHCI
717 help
718 This selects the Secure Digital Host Controller Interface (SDHCI)
719 on Samsung S5P SoCs.
720
721 If you have a controller with this interface, say Y here.
722
723 If unsure, say N.
724
Patrice Chotardeee20f82017-02-21 13:37:09 +0100725config MMC_SDHCI_STI
726 bool "SDHCI support for STMicroelectronics SoC"
Patrice Chotard51cb23d2017-02-21 13:37:11 +0100727 depends on MMC_SDHCI && OF_CONTROL
Patrice Chotardeee20f82017-02-21 13:37:09 +0100728 help
729 This selects the Secure Digital Host Controller Interface (SDHCI)
730 on STMicroelectronics STiH410 SoC.
731
Stefan Roeseb6acb5f2016-12-09 15:03:28 +0100732config MMC_SDHCI_XENON
733 bool "SDHCI support for the Xenon SDHCI controller"
734 depends on MMC_SDHCI && DM_MMC && OF_CONTROL
735 help
736 Support for Xenon SDHCI host controller on Marvell Armada 3700
737 7k/8k ARM SoCs platforms
738
739 If you have a controller with this interface, say Y here.
740
741 If unsure, say N.
742
Felipe Balbi83b32482017-02-20 14:24:14 +0300743config MMC_SDHCI_TANGIER
744 bool "Tangier SDHCI controller support"
745 depends on DM_MMC && BLK
746 depends on MMC_SDHCI
747 help
748 This selects support for SDHCI controller on Tanginer
749 SoC. Note that this controller does not sit on PCI bus and,
750 hence, cannot be enumerated by standard PCI means.
751
752 If you're using an Intel Tangier SoC (available on Intel
753 Edison board), say Y here.
754
755 If unsure, say N.
756
Masahiro Yamada1d2c0502017-01-10 13:32:07 +0900757config MMC_SDHCI_TEGRA
758 bool "SDHCI platform support for the Tegra SD/MMC Controller"
Trevor Woerner18138ab2020-05-06 08:02:41 -0400759 depends on ARCH_TEGRA
Philipp Tomsich2acc24f2018-11-30 22:13:25 +0100760 select BOUNCE_BUFFER
Masahiro Yamada1d2c0502017-01-10 13:32:07 +0900761 default y
762 help
763 This selects the Tegra SD/MMC controller. If you have a Tegra
764 platform with SD or MMC devices, say Y here.
765
766 If unsure, say N.
767
Trent Piephob78d97e2019-04-01 23:05:49 +0000768config TEGRA124_MMC_DISABLE_EXT_LOOPBACK
769 bool "Disable external clock loopback"
770 depends on MMC_SDHCI_TEGRA && TEGRA124
771 help
772 Disable the external clock loopback and use the internal one on SDMMC3
773 as per the SDMMC_VENDOR_MISC_CNTRL_0 register's SDMMC_SPARE1 bits
774 being set to 0xfffd according to the TRM.
775
776 TODO(marcel.ziswiler@toradex.com): Move to device tree controlled
777 approach once proper kernel integration made it mainline.
778
Masahiro Yamada08aa0332017-01-30 19:46:51 +0900779config MMC_SDHCI_ZYNQ
780 bool "Arasan SDHCI controller support"
Simon Glasse7881d82017-07-29 11:35:31 -0600781 depends on DM_MMC && OF_CONTROL && BLK
Masahiro Yamada08aa0332017-01-30 19:46:51 +0900782 depends on MMC_SDHCI
783 help
784 Support for Arasan SDHCI host controller on Zynq/ZynqMP ARM SoCs platform
785
Vipul Kumar5dc5a532018-02-28 15:53:28 +0530786config ZYNQ_SDHCI_MAX_FREQ
787 int "Set the maximum frequency of the controller"
788 depends on MMC_SDHCI_ZYNQ
789 help
790 Set the maximum frequency of the controller.
791
Vipul Kumar3ccc2072018-02-28 15:53:29 +0530792config ZYNQ_SDHCI_MIN_FREQ
793 int "Set the minimum frequency of the controller"
794 depends on MMC_SDHCI_ZYNQ
795 default 0
796 help
797 Set the minimum frequency of the controller.
798
Siva Durga Prasad Paladugud882f082019-05-27 14:33:14 +0530799config ZYNQ_HISPD_BROKEN
800 bool "High speed broken for Zynq SDHCI controller"
801 depends on MMC_SDHCI_ZYNQ
802 help
803 Set if high speed mode is broken.
804
Masahiro Yamada1d2c0502017-01-10 13:32:07 +0900805config MMC_SUNXI
806 bool "Allwinner sunxi SD/MMC Host Controller support"
Samuel Holland818e1632022-04-10 00:13:34 -0500807 depends on ARCH_SUNXI
Masahiro Yamada1d2c0502017-01-10 13:32:07 +0900808 default y
809 help
810 This selects support for the SD/MMC Host Controller on
811 Allwinner sunxi SoCs.
812
Maxime Ripardde9b1772017-08-23 12:03:41 +0200813config MMC_SUNXI_HAS_NEW_MODE
814 bool
815 depends on MMC_SUNXI
816
Vasily Khoruzhick2a8882e2018-11-09 20:41:44 -0800817config MMC_SUNXI_HAS_MODE_SWITCH
818 bool
819 depends on MMC_SUNXI
820
Tianrui Weid6b156e2021-07-01 12:54:20 +0800821config MMC_PITON
822 bool "MMC support for OpenPiton SoC"
823 depends on DM_MMC && BLK
824 help
825 This selects support for the SD host controller on OpenPiton SoC.
826 Note that this SD controller directly exposes the contents of the
827 SD card as memory mapped, so there is no manual configuration
828 required
829
Wenyou Yangc86c0152017-04-13 10:29:22 +0800830config GENERIC_ATMEL_MCI
831 bool "Atmel Multimedia Card Interface support"
Simon Glasse7881d82017-07-29 11:35:31 -0600832 depends on DM_MMC && BLK && ARCH_AT91
Wenyou Yangc86c0152017-04-13 10:29:22 +0800833 help
834 This enables support for Atmel High Speed Multimedia Card Interface
835 (HSMCI), which supports the MultiMedia Card (MMC) Specification V4.3,
836 the SD Memory Card Specification V2.0, the SDIO V2.0 specification
837 and CE-ATA V1.1.
838
Patrice Chotardb312c592017-09-04 17:56:22 +0200839config STM32_SDMMC2
840 bool "STMicroelectronics STM32H7 SD/MMC Host Controller support"
Patrice Chotard53c656a2017-10-03 15:54:58 +0200841 depends on DM_MMC && BLK && OF_CONTROL
Patrice Chotardb312c592017-09-04 17:56:22 +0200842 help
843 This selects support for the SD/MMC controller on STM32H7 SoCs.
844 If you have a board based on such a SoC and with a SD/MMC slot,
Heinrich Schuchardt4c9307b2024-01-23 17:18:16 +0100845 say Y here.
Patrice Chotardb312c592017-09-04 17:56:22 +0200846
Rick Chen9f678ab2017-11-14 14:47:09 +0800847config FTSDC010
848 bool "Ftsdc010 SD/MMC controller Support"
849 help
850 This SD/MMC controller is present in Andestech SoCs which is based on Faraday IP.
851
Rick Chen095c9f32018-03-20 15:10:49 +0800852config FTSDC010_SDIO
853 bool "Support ftsdc010 sdio"
Rick Chen095c9f32018-03-20 15:10:49 +0800854 depends on FTSDC010
855 help
856 This can enable ftsdc010 sdio function.
857
Weijie Gaod24b6932018-11-15 10:08:04 +0800858config MMC_MTK
859 bool "MediaTek SD/MMC Card Interface support"
Weijie Gao3c92a952019-09-25 17:45:37 +0800860 depends on ARCH_MEDIATEK || ARCH_MTMIPS
Weijie Gaod24b6932018-11-15 10:08:04 +0800861 depends on BLK && DM_MMC
862 depends on OF_CONTROL
863 help
864 This selects the MediaTek(R) Secure digital and Multimedia card Interface.
Heinrich Schuchardt4c9307b2024-01-23 17:18:16 +0100865 If you have a machine with a integrated SD/MMC card reader, say Y here.
Weijie Gaod24b6932018-11-15 10:08:04 +0800866 This is needed if support for any SD/SDIO/MMC devices is required.
867 If unsure, say N.
868
Masahiro Yamadae298c462016-12-07 22:10:27 +0900869endif
870
Tom Rini3a581af2022-12-02 16:42:21 -0500871config FSL_SDHC_V2_3
872 bool
873
Mario Six07dea2e2018-03-28 14:38:19 +0200874config FSL_ESDHC
875 bool "Freescale/NXP eSDHC controller support"
Tom Rini3a581af2022-12-02 16:42:21 -0500876 select FSL_SDHC_V2_3 if ARCH_P1010 || ARCH_BSC9131 || ARCH_BSC9132 \
877 || ARCH_C29X
Mario Six07dea2e2018-03-28 14:38:19 +0200878 help
Yangbo Lufa33d202019-06-21 11:42:27 +0800879 This selects support for the eSDHC (Enhanced Secure Digital Host
880 Controller) found on numerous Freescale/NXP SoCs.
881
Michael Walle361a4222020-10-12 10:07:14 +0200882config FSL_ESDHC_SUPPORT_ADMA2
883 bool "enable ADMA2 support"
884 depends on FSL_ESDHC
885 select MMC_SDHCI_ADMA_HELPERS
886 help
887 This enables support for the ADMA2 transfer mode. If supported by the
888 eSDHC it will allow 64bit DMA addresses.
889
Yangbo Luc927d652020-05-19 11:06:44 +0800890config FSL_ESDHC_33V_IO_RELIABILITY_WORKAROUND
891 bool "enable eSDHC workaround for 3.3v IO reliability issue"
892 depends on FSL_ESDHC && DM_MMC
Yangbo Luc927d652020-05-19 11:06:44 +0800893 help
894 When eSDHC operates at 3.3v, damage can accumulate in an internal
895 level shifter at a higher than expected rate. The faster the interface
896 runs, the more damage accumulates. This issue now is found on LX2160A
897 eSDHC1 for only SD card. The hardware workaround is recommended to use
898 an on-board level shifter that is 1.8v on SoC side and 3.3v on SD card
899 side. For boards without hardware workaround, this option could be
900 enabled, ensuring 1.8v IO voltage and disabling eSDHC if no card.
901 This option assumes no hotplug, and u-boot has to make all the way to
902 to linux to use 1.8v UHS-I speed mode if has card.
903
Yangbo Luae7020b2021-06-03 10:51:17 +0800904config FSL_ESDHC_VS33_NOT_SUPPORT
905 bool "3.3V power supply not supported"
906 depends on FSL_ESDHC
907 help
908 For eSDHC, power supply is through peripheral circuit. 3.3V support is
909 common. Select this if 3.3V power supply not supported.
910
Pali Rohár8f3f8ba2022-05-11 20:27:13 +0200911config SYS_FSL_ESDHC_DEFAULT_BUS_WIDTH
912 int
913 depends on FSL_ESDHC
914 default 1
915
Tom Rini7e7d04a2022-06-16 14:04:38 -0400916config ESDHC_DETECT_QUIRK
917 bool "QIXIS-based eSDHC quirk detection"
918 depends on FSL_ESDHC && FSL_QIXIS
919
Yangbo Lufa33d202019-06-21 11:42:27 +0800920config FSL_ESDHC_IMX
921 bool "Freescale/NXP i.MX eSDHC controller support"
922 help
923 This selects support for the i.MX eSDHC (Enhanced Secure Digital Host
924 Controller) found on numerous Freescale/NXP SoCs.
Mario Six07dea2e2018-03-28 14:38:19 +0200925
Tom Rini7ae1e6a2022-07-31 21:08:25 -0400926config SYS_FSL_ESDHC_HAS_DDR_MODE
927 bool "i.MX eSDHC controller supports DDR mode"
928 depends on FSL_ESDHC_IMX
929
Adam Ford3f70bef2019-08-14 07:23:43 -0500930config FSL_USDHC
931 bool "Freescale/NXP i.MX uSDHC controller support"
Peng Fanc8671d22022-07-26 16:40:44 +0800932 depends on MX6 || MX7 ||ARCH_MX7ULP || IMX8 || IMX8M || IMX8ULP || IMX9 || IMXRT
Adam Ford3f70bef2019-08-14 07:23:43 -0500933 select FSL_ESDHC_IMX
934 help
935 This enables the Ultra Secured Digital Host Controller enhancements
936
Tom Rini5388aa22022-12-02 16:42:22 -0500937config FSL_ESDHC_PIN_MUX
938 bool "Perform esdhc device-tree fixup"
939 depends on (FSL_ESDHC || FSL_ESDHC_IMX) && OF_LIBFDT
940
Nobuhiro Iwamatsu72d42ba2014-12-17 08:03:00 +0900941endmenu
York Sunc01e4a12016-12-28 08:43:42 -0800942
943config SYS_FSL_ERRATUM_ESDHC111
944 bool
945
946config SYS_FSL_ERRATUM_ESDHC13
947 bool
948
949config SYS_FSL_ERRATUM_ESDHC135
950 bool
951
952config SYS_FSL_ERRATUM_ESDHC_A001
953 bool
Michael Wallebd7b8502021-03-17 15:01:36 +0100954
955config SYS_FSL_ERRATUM_A011334
956 bool
Michael Walled3b745f2021-03-17 15:01:37 +0100957
958config SYS_FSL_ESDHC_UNRELIABLE_PULSE_DETECTION_WORKAROUND
959 bool