xref: /openbmc/linux/drivers/mmc/host/Kconfig (revision f3d56144)
11c6a0718SPierre Ossman#
21c6a0718SPierre Ossman# MMC/SD host controller drivers
31c6a0718SPierre Ossman#
41c6a0718SPierre Ossman
557105737SPierre Ossmancomment "MMC/SD/SDIO Host Controller Drivers"
61c6a0718SPierre Ossman
71c6a0718SPierre Ossmanconfig MMC_ARMMMCI
81c6a0718SPierre Ossman	tristate "ARM AMBA Multimedia Card Interface support"
9790864dcSJan Engelhardt	depends on ARM_AMBA
101c6a0718SPierre Ossman	help
111c6a0718SPierre Ossman	  This selects the ARM(R) AMBA(R) PrimeCell Multimedia Card
121c6a0718SPierre Ossman	  Interface (PL180 and PL181) support.  If you have an ARM(R)
131c6a0718SPierre Ossman	  platform with a Multimedia Card slot, say Y or M here.
141c6a0718SPierre Ossman
151c6a0718SPierre Ossman	  If unsure, say N.
161c6a0718SPierre Ossman
171c6a0718SPierre Ossmanconfig MMC_PXA
181c6a0718SPierre Ossman	tristate "Intel PXA25x/26x/27x Multimedia Card Interface support"
19790864dcSJan Engelhardt	depends on ARCH_PXA
201c6a0718SPierre Ossman	help
211c6a0718SPierre Ossman	  This selects the Intel(R) PXA(R) Multimedia card Interface.
221c6a0718SPierre Ossman	  If you have a PXA(R) platform with a Multimedia Card slot,
231c6a0718SPierre Ossman	  say Y or M here.
241c6a0718SPierre Ossman
251c6a0718SPierre Ossman	  If unsure, say N.
261c6a0718SPierre Ossman
271c6a0718SPierre Ossmanconfig MMC_SDHCI
2834671dc2SPierre Ossman	tristate "Secure Digital Host Controller Interface support"
29b8c86fc5SPierre Ossman	depends on HAS_DMA
301c6a0718SPierre Ossman	help
31b8c86fc5SPierre Ossman	  This selects the generic Secure Digital Host Controller Interface.
321c6a0718SPierre Ossman	  It is used by manufacturers such as Texas Instruments(R), Ricoh(R)
331c6a0718SPierre Ossman	  and Toshiba(R). Most controllers found in laptops are of this type.
34b8c86fc5SPierre Ossman
35b8c86fc5SPierre Ossman	  If you have a controller with this interface, say Y or M here. You
36b8c86fc5SPierre Ossman	  also need to enable an appropriate bus interface.
37b8c86fc5SPierre Ossman
38b8c86fc5SPierre Ossman	  If unsure, say N.
39b8c86fc5SPierre Ossman
404e4141a5SAnton Vorontsovconfig MMC_SDHCI_IO_ACCESSORS
414e4141a5SAnton Vorontsov	bool
424e4141a5SAnton Vorontsov	depends on MMC_SDHCI
434e4141a5SAnton Vorontsov	help
444e4141a5SAnton Vorontsov	  This is silent Kconfig symbol that is selected by the drivers that
454e4141a5SAnton Vorontsov	  need to overwrite SDHCI IO memory accessors.
464e4141a5SAnton Vorontsov
477657c3a7SAlbert Herranzconfig MMC_SDHCI_BIG_ENDIAN_32BIT_BYTE_SWAPPER
487657c3a7SAlbert Herranz	bool
497657c3a7SAlbert Herranz	select MMC_SDHCI_IO_ACCESSORS
507657c3a7SAlbert Herranz	help
517657c3a7SAlbert Herranz	  This option is selected by drivers running on big endian hosts
527657c3a7SAlbert Herranz	  and performing I/O to a SDHCI controller through a bus that
537657c3a7SAlbert Herranz	  implements a hardware byte swapper using a 32-bit datum.
547657c3a7SAlbert Herranz	  This endian mapping mode is called "data invariance" and
557657c3a7SAlbert Herranz	  has the effect of scrambling the addresses and formats of data
567657c3a7SAlbert Herranz	  accessed in sizes other than the datum size.
577657c3a7SAlbert Herranz
581144ab5dSAlbert Herranz	  This is the case for the Freescale eSDHC and Nintendo Wii SDHCI.
597657c3a7SAlbert Herranz
60b8c86fc5SPierre Ossmanconfig MMC_SDHCI_PCI
61b8c86fc5SPierre Ossman	tristate "SDHCI support on PCI bus"
62b8c86fc5SPierre Ossman	depends on MMC_SDHCI && PCI
63b8c86fc5SPierre Ossman	help
64b8c86fc5SPierre Ossman	  This selects the PCI Secure Digital Host Controller Interface.
65b8c86fc5SPierre Ossman	  Most controllers found today are PCI devices.
66b8c86fc5SPierre Ossman
671c6a0718SPierre Ossman	  If you have a controller with this interface, say Y or M here.
681c6a0718SPierre Ossman
691c6a0718SPierre Ossman	  If unsure, say N.
701c6a0718SPierre Ossman
715ae70296SPhilip Langdaleconfig MMC_RICOH_MMC
7203cd8f7eSMaxim Levitsky	bool "Ricoh MMC Controller Disabler  (EXPERIMENTAL)"
73b8c86fc5SPierre Ossman	depends on MMC_SDHCI_PCI
745ae70296SPhilip Langdale	help
7503cd8f7eSMaxim Levitsky	  This adds a pci quirk to disable Ricoh MMC Controller. This
765ae70296SPhilip Langdale	  proprietary controller is unnecessary because the SDHCI driver
775ae70296SPhilip Langdale	  supports MMC cards on the SD controller, but if it is not
785ae70296SPhilip Langdale	  disabled, it will steal the MMC cards away - rendering them
7903cd8f7eSMaxim Levitsky	  useless. It is safe to select this even if you don't
805ae70296SPhilip Langdale	  have a Ricoh based card reader.
815ae70296SPhilip Langdale
825ae70296SPhilip Langdale	  If unsure, say Y.
835ae70296SPhilip Langdale
843085e9c1SAnton Vorontsovconfig MMC_SDHCI_OF
853085e9c1SAnton Vorontsov	tristate "SDHCI support on OpenFirmware platforms"
863085e9c1SAnton Vorontsov	depends on MMC_SDHCI && PPC_OF
873085e9c1SAnton Vorontsov	help
883085e9c1SAnton Vorontsov	  This selects the OF support for Secure Digital Host Controller
897657c3a7SAlbert Herranz	  Interfaces.
907657c3a7SAlbert Herranz
917657c3a7SAlbert Herranz	  If unsure, say N.
927657c3a7SAlbert Herranz
937657c3a7SAlbert Herranzconfig MMC_SDHCI_OF_ESDHC
947657c3a7SAlbert Herranz	bool "SDHCI OF support for the Freescale eSDHC controller"
957657c3a7SAlbert Herranz	depends on MMC_SDHCI_OF
967657c3a7SAlbert Herranz	select MMC_SDHCI_BIG_ENDIAN_32BIT_BYTE_SWAPPER
977657c3a7SAlbert Herranz	help
987657c3a7SAlbert Herranz	  This selects the Freescale eSDHC controller support.
993085e9c1SAnton Vorontsov
1003085e9c1SAnton Vorontsov	  If unsure, say N.
1013085e9c1SAnton Vorontsov
1021144ab5dSAlbert Herranzconfig MMC_SDHCI_OF_HLWD
1031144ab5dSAlbert Herranz	bool "SDHCI OF support for the Nintendo Wii SDHCI controllers"
1041144ab5dSAlbert Herranz	depends on MMC_SDHCI_OF
1051144ab5dSAlbert Herranz	select MMC_SDHCI_BIG_ENDIAN_32BIT_BYTE_SWAPPER
1061144ab5dSAlbert Herranz	help
1071144ab5dSAlbert Herranz	  This selects the Secure Digital Host Controller Interface (SDHCI)
1081144ab5dSAlbert Herranz	  found in the "Hollywood" chipset of the Nintendo Wii video game
1091144ab5dSAlbert Herranz	  console.
1101144ab5dSAlbert Herranz
1111144ab5dSAlbert Herranz	  If unsure, say N.
1121144ab5dSAlbert Herranz
113a3456a2dSRichard Röjforsconfig MMC_SDHCI_PLTFM
114a3456a2dSRichard Röjfors	tristate "SDHCI support on the platform specific bus"
115a3456a2dSRichard Röjfors	depends on MMC_SDHCI
116a3456a2dSRichard Röjfors	help
117a3456a2dSRichard Röjfors	  This selects the platform specific bus support for Secure Digital Host
118a3456a2dSRichard Röjfors	  Controller Interface.
119a3456a2dSRichard Röjfors
120a3456a2dSRichard Röjfors	  If you have a controller with this interface, say Y or M here.
121a3456a2dSRichard Röjfors
122a3456a2dSRichard Röjfors	  If unsure, say N.
123a3456a2dSRichard Röjfors
1240d1bb41aSBen Dooksconfig MMC_SDHCI_S3C
1250d1bb41aSBen Dooks	tristate "SDHCI support on Samsung S3C SoC"
1260d1bb41aSBen Dooks	depends on MMC_SDHCI && (PLAT_S3C24XX || PLAT_S3C64XX)
1270d1bb41aSBen Dooks	help
1280d1bb41aSBen Dooks	  This selects the Secure Digital Host Controller Interface (SDHCI)
1290d1bb41aSBen Dooks	  often referrered to as the HSMMC block in some of the Samsung S3C
1300d1bb41aSBen Dooks	  range of SoC.
1310d1bb41aSBen Dooks
1320d1bb41aSBen Dooks	  Note, due to the problems with DMA, the DMA support is only
1330d1bb41aSBen Dooks	  available with CONFIG_EXPERIMENTAL is selected.
1340d1bb41aSBen Dooks
1350d1bb41aSBen Dooks	  If you have a controller with this interface, say Y or M here.
1360d1bb41aSBen Dooks
1370d1bb41aSBen Dooks	  If unsure, say N.
1380d1bb41aSBen Dooks
139c63b3cbaSViresh KUMARconfig MMC_SDHCI_SPEAR
140c63b3cbaSViresh KUMAR	tristate "SDHCI support on ST SPEAr platform"
141c63b3cbaSViresh KUMAR	depends on MMC_SDHCI && PLAT_SPEAR
142c63b3cbaSViresh KUMAR	help
143c63b3cbaSViresh KUMAR	  This selects the Secure Digital Host Controller Interface (SDHCI)
144c63b3cbaSViresh KUMAR	  often referrered to as the HSMMC block in some of the ST SPEAR range
145c63b3cbaSViresh KUMAR	  of SoC
146c63b3cbaSViresh KUMAR
147c63b3cbaSViresh KUMAR	  If you have a controller with this interface, say Y or M here.
148c63b3cbaSViresh KUMAR
149c63b3cbaSViresh KUMAR	  If unsure, say N.
150c63b3cbaSViresh KUMAR
1510d1bb41aSBen Dooksconfig MMC_SDHCI_S3C_DMA
1520d1bb41aSBen Dooks	bool "DMA support on S3C SDHCI"
1530d1bb41aSBen Dooks	depends on MMC_SDHCI_S3C && EXPERIMENTAL
1540d1bb41aSBen Dooks	help
1550d1bb41aSBen Dooks	  Enable DMA support on the Samsung S3C SDHCI glue. The DMA
1560d1bb41aSBen Dooks	  has proved to be problematic if the controller encounters
1570d1bb41aSBen Dooks	  certain errors, and thus should be treated with care.
1580d1bb41aSBen Dooks
1590d1bb41aSBen Dooks	  YMMV.
1600d1bb41aSBen Dooks
1611c6a0718SPierre Ossmanconfig MMC_OMAP
1621c6a0718SPierre Ossman	tristate "TI OMAP Multimedia Card Interface support"
163790864dcSJan Engelhardt	depends on ARCH_OMAP
1641c6a0718SPierre Ossman	select TPS65010 if MACH_OMAP_H2
1651c6a0718SPierre Ossman	help
1661c6a0718SPierre Ossman	  This selects the TI OMAP Multimedia card Interface.
1671c6a0718SPierre Ossman	  If you have an OMAP board with a Multimedia Card slot,
1681c6a0718SPierre Ossman	  say Y or M here.
1691c6a0718SPierre Ossman
1701c6a0718SPierre Ossman	  If unsure, say N.
1711c6a0718SPierre Ossman
172a45c6cb8SMadhusudhan Chikkatureconfig MMC_OMAP_HS
173a45c6cb8SMadhusudhan Chikkature	tristate "TI OMAP High Speed Multimedia Card Interface support"
17482cf818dSkishore kadiyala	depends on ARCH_OMAP2430 || ARCH_OMAP3 || ARCH_OMAP4
175a45c6cb8SMadhusudhan Chikkature	help
176a45c6cb8SMadhusudhan Chikkature	  This selects the TI OMAP High Speed Multimedia card Interface.
17782cf818dSkishore kadiyala	  If you have an OMAP2430 or OMAP3 board or OMAP4 board with a
17882cf818dSkishore kadiyala	  Multimedia Card slot, say Y or M here.
179a45c6cb8SMadhusudhan Chikkature
180a45c6cb8SMadhusudhan Chikkature	  If unsure, say N.
181a45c6cb8SMadhusudhan Chikkature
1821c6a0718SPierre Ossmanconfig MMC_WBSD
1831c6a0718SPierre Ossman	tristate "Winbond W83L51xD SD/MMC Card Interface support"
184790864dcSJan Engelhardt	depends on ISA_DMA_API
1851c6a0718SPierre Ossman	help
1861c6a0718SPierre Ossman	  This selects the Winbond(R) W83L51xD Secure digital and
1871c6a0718SPierre Ossman          Multimedia card Interface.
1881c6a0718SPierre Ossman	  If you have a machine with a integrated W83L518D or W83L519D
1891c6a0718SPierre Ossman	  SD/MMC card reader, say Y or M here.
1901c6a0718SPierre Ossman
1911c6a0718SPierre Ossman	  If unsure, say N.
1921c6a0718SPierre Ossman
1931c6a0718SPierre Ossmanconfig MMC_AU1X
1941c6a0718SPierre Ossman	tristate "Alchemy AU1XX0 MMC Card Interface support"
195790864dcSJan Engelhardt	depends on SOC_AU1200
1961c6a0718SPierre Ossman	help
1971c6a0718SPierre Ossman	  This selects the AMD Alchemy(R) Multimedia card interface.
1981c6a0718SPierre Ossman	  If you have a Alchemy platform with a MMC slot, say Y or M here.
1991c6a0718SPierre Ossman
2001c6a0718SPierre Ossman	  If unsure, say N.
2011c6a0718SPierre Ossman
20204d699c3SRob Emanuelechoice
20304d699c3SRob Emanuele	prompt "Atmel SD/MMC Driver"
20409591dd3SNicolas Ferre	depends on AVR32 || ARCH_AT91
20504d699c3SRob Emanuele	default MMC_ATMELMCI if AVR32
20604d699c3SRob Emanuele	help
20704d699c3SRob Emanuele	  Choose which driver to use for the Atmel MCI Silicon
20804d699c3SRob Emanuele
2091c6a0718SPierre Ossmanconfig MMC_AT91
2101c6a0718SPierre Ossman	tristate "AT91 SD/MMC Card Interface support"
211790864dcSJan Engelhardt	depends on ARCH_AT91
2121c6a0718SPierre Ossman	help
2131c6a0718SPierre Ossman	  This selects the AT91 MCI controller.
2141c6a0718SPierre Ossman
2151c6a0718SPierre Ossman	  If unsure, say N.
2161c6a0718SPierre Ossman
2177d2be074SHaavard Skinnemoenconfig MMC_ATMELMCI
2187d2be074SHaavard Skinnemoen	tristate "Atmel Multimedia Card Interface support"
21904d699c3SRob Emanuele	depends on AVR32 || ARCH_AT91
2207d2be074SHaavard Skinnemoen	help
2217d2be074SHaavard Skinnemoen	  This selects the Atmel Multimedia Card Interface driver. If
22204d699c3SRob Emanuele	  you have an AT32 (AVR32) or AT91 platform with a Multimedia
22304d699c3SRob Emanuele	  Card slot, say Y or M here.
2247d2be074SHaavard Skinnemoen
2257d2be074SHaavard Skinnemoen	  If unsure, say N.
2267d2be074SHaavard Skinnemoen
22704d699c3SRob Emanueleendchoice
22804d699c3SRob Emanuele
22965e8b083SHaavard Skinnemoenconfig MMC_ATMELMCI_DMA
23065e8b083SHaavard Skinnemoen	bool "Atmel MCI DMA support (EXPERIMENTAL)"
23104d699c3SRob Emanuele	depends on MMC_ATMELMCI && AVR32 && DMA_ENGINE && EXPERIMENTAL
23265e8b083SHaavard Skinnemoen	help
23365e8b083SHaavard Skinnemoen	  Say Y here to have the Atmel MCI driver use a DMA engine to
23465e8b083SHaavard Skinnemoen	  do data transfers and thus increase the throughput and
23565e8b083SHaavard Skinnemoen	  reduce the CPU utilization. Note that this is highly
23665e8b083SHaavard Skinnemoen	  experimental and may cause the driver to lock up.
23765e8b083SHaavard Skinnemoen
23865e8b083SHaavard Skinnemoen	  If unsure, say N.
23965e8b083SHaavard Skinnemoen
2401c6a0718SPierre Ossmanconfig MMC_IMX
2411c6a0718SPierre Ossman	tristate "Motorola i.MX Multimedia Card Interface support"
2428c8fdbc9SSascha Hauer	depends on ARCH_MX1
2431c6a0718SPierre Ossman	help
2441c6a0718SPierre Ossman	  This selects the Motorola i.MX Multimedia card Interface.
2451c6a0718SPierre Ossman	  If you have a i.MX platform with a Multimedia Card slot,
2461c6a0718SPierre Ossman	  say Y or M here.
2471c6a0718SPierre Ossman
2481c6a0718SPierre Ossman	  If unsure, say N.
2491c6a0718SPierre Ossman
2509d2bd738SSan Mehatconfig MMC_MSM7X00A
2519d2bd738SSan Mehat	tristate "Qualcomm MSM 7X00A SDCC Controller Support"
252f3d56144SDaniel Walker	depends on MMC && ARCH_MSM && !ARCH_MSM7X30
2539d2bd738SSan Mehat	help
2549d2bd738SSan Mehat	  This provides support for the SD/MMC cell found in the
2559d2bd738SSan Mehat          MSM 7X00A controllers from Qualcomm.
2569d2bd738SSan Mehat
257d96be879SSascha Hauerconfig MMC_MXC
258d96be879SSascha Hauer	tristate "Freescale i.MX2/3 Multimedia Card Interface support"
259d96be879SSascha Hauer	depends on ARCH_MXC
260d96be879SSascha Hauer	help
261d96be879SSascha Hauer	  This selects the Freescale i.MX2/3 Multimedia card Interface.
262d96be879SSascha Hauer	  If you have a i.MX platform with a Multimedia Card slot,
263d96be879SSascha Hauer	  say Y or M here.
264d96be879SSascha Hauer
265d96be879SSascha Hauer	  If unsure, say N.
266d96be879SSascha Hauer
2671c6a0718SPierre Ossmanconfig MMC_TIFM_SD
2681c6a0718SPierre Ossman	tristate "TI Flash Media MMC/SD Interface support  (EXPERIMENTAL)"
269790864dcSJan Engelhardt	depends on EXPERIMENTAL && PCI
2701c6a0718SPierre Ossman	select TIFM_CORE
2711c6a0718SPierre Ossman	help
2721c6a0718SPierre Ossman	  Say Y here if you want to be able to access MMC/SD cards with
2731c6a0718SPierre Ossman	  the Texas Instruments(R) Flash Media card reader, found in many
2741c6a0718SPierre Ossman	  laptops.
2751c6a0718SPierre Ossman	  This option 'selects' (turns on, enables) 'TIFM_CORE', but you
2761c6a0718SPierre Ossman	  probably also need appropriate card reader host adapter, such as
2771c6a0718SPierre Ossman	  'Misc devices: TI Flash Media PCI74xx/PCI76xx host adapter support
2781c6a0718SPierre Ossman	  (TIFM_7XX1)'.
2791c6a0718SPierre Ossman
2801c6a0718SPierre Ossman          To compile this driver as a module, choose M here: the
2811c6a0718SPierre Ossman	  module will be called tifm_sd.
2821c6a0718SPierre Ossman
283236caa7cSMaen Suleimanconfig MMC_MVSDIO
284236caa7cSMaen Suleiman	tristate "Marvell MMC/SD/SDIO host driver"
285236caa7cSMaen Suleiman	depends on PLAT_ORION
286236caa7cSMaen Suleiman	---help---
287236caa7cSMaen Suleiman	  This selects the Marvell SDIO host driver.
288236caa7cSMaen Suleiman	  SDIO may currently be found on the Kirkwood 88F6281 and 88F6192
289236caa7cSMaen Suleiman	  SoC controllers.
290236caa7cSMaen Suleiman
291236caa7cSMaen Suleiman	  To compile this driver as a module, choose M here: the
292236caa7cSMaen Suleiman	  module will be called mvsdio.
293236caa7cSMaen Suleiman
294b4cff454SVipin Bhandariconfig MMC_DAVINCI
295b4cff454SVipin Bhandari        tristate "TI DAVINCI Multimedia Card Interface support"
296b4cff454SVipin Bhandari        depends on ARCH_DAVINCI
297b4cff454SVipin Bhandari        help
298b4cff454SVipin Bhandari          This selects the TI DAVINCI Multimedia card Interface.
299b4cff454SVipin Bhandari          If you have an DAVINCI board with a Multimedia Card slot,
300b4cff454SVipin Bhandari          say Y or M here.  If unsure, say N.
301b4cff454SVipin Bhandari
30215a0580cSDavid Brownellconfig MMC_SPI
30357105737SPierre Ossman	tristate "MMC/SD/SDIO over SPI"
3041ea4f444SPierre Ossman	depends on SPI_MASTER && !HIGHMEM && HAS_DMA
30515a0580cSDavid Brownell	select CRC7
30615a0580cSDavid Brownell	select CRC_ITU_T
30715a0580cSDavid Brownell	help
308692105b8SMatt LaPlante	  Some systems access MMC/SD/SDIO cards using a SPI controller
30957105737SPierre Ossman	  instead of using a "native" MMC/SD/SDIO controller.  This has a
31057105737SPierre Ossman	  disadvantage of being relatively high overhead, but a compensating
31157105737SPierre Ossman	  advantage of working on many systems without dedicated MMC/SD/SDIO
31257105737SPierre Ossman	  controllers.
31315a0580cSDavid Brownell
31415a0580cSDavid Brownell	  If unsure, or if your system has no SPI master driver, say N.
31515a0580cSDavid Brownell
316be518018SThomas Kleffelconfig MMC_S3C
317be518018SThomas Kleffel	tristate "Samsung S3C SD/MMC Card Interface support"
3181ea4f444SPierre Ossman	depends on ARCH_S3C2410
319be518018SThomas Kleffel	help
320be518018SThomas Kleffel	  This selects a driver for the MCI interface found in
321be518018SThomas Kleffel          Samsung's S3C2410, S3C2412, S3C2440, S3C2442 CPUs.
322be518018SThomas Kleffel	  If you have a board based on one of those and a MMC/SD
323be518018SThomas Kleffel	  slot, say Y or M here.
324be518018SThomas Kleffel
325be518018SThomas Kleffel	  If unsure, say N.
326be518018SThomas Kleffel
3275a2c4fe0SBen Dooksconfig MMC_S3C_HW_SDIO_IRQ
3285a2c4fe0SBen Dooks       bool "Hardware support for SDIO IRQ"
3295a2c4fe0SBen Dooks       depends on MMC_S3C
3305a2c4fe0SBen Dooks       help
3315a2c4fe0SBen Dooks         Enable the hardware support for SDIO interrupts instead of using
3325a2c4fe0SBen Dooks	 the generic polling code.
3335a2c4fe0SBen Dooks
33426f14947SBen Dookschoice
33526f14947SBen Dooks	prompt "Samsung S3C SD/MMC transfer code"
33626f14947SBen Dooks	depends on MMC_S3C
33726f14947SBen Dooks
33826f14947SBen Dooksconfig MMC_S3C_PIO
33926f14947SBen Dooks	bool "Use PIO transfers only"
34026f14947SBen Dooks	help
34126f14947SBen Dooks	  Use PIO to transfer data between memory and the hardware.
34226f14947SBen Dooks
34326f14947SBen Dooks	  PIO is slower than DMA as it requires CPU instructions to
34426f14947SBen Dooks	  move the data. This has been the traditional default for
34526f14947SBen Dooks	  the S3C MCI driver.
34626f14947SBen Dooks
34726f14947SBen Dooksconfig MMC_S3C_DMA
34826f14947SBen Dooks	bool "Use DMA transfers only (EXPERIMENTAL)"
34926f14947SBen Dooks	depends on EXPERIMENTAL
35026f14947SBen Dooks	help
35126f14947SBen Dooks	  Use DMA to transfer data between memory and the hardare.
35226f14947SBen Dooks
35326f14947SBen Dooks	  Currently, the DMA support in this driver seems to not be
35426f14947SBen Dooks	  working properly and needs to be debugged before this
35526f14947SBen Dooks	  option is useful.
35626f14947SBen Dooks
35726f14947SBen Dooksconfig MMC_S3C_PIODMA
35826f14947SBen Dooks	bool "Support for both PIO and DMA (EXPERIMENTAL)"
35926f14947SBen Dooks	help
36026f14947SBen Dooks	  Compile both the PIO and DMA transfer routines into the
36126f14947SBen Dooks	  driver and let the platform select at run-time which one
36226f14947SBen Dooks	  is best.
36326f14947SBen Dooks
36426f14947SBen Dooks	  See notes for the DMA option.
36526f14947SBen Dooks
36626f14947SBen Dooksendchoice
36726f14947SBen Dooks
3686a36913aSSascha Sommerconfig MMC_SDRICOH_CS
3696a36913aSSascha Sommer	tristate "MMC/SD driver for Ricoh Bay1Controllers (EXPERIMENTAL)"
3701ea4f444SPierre Ossman	depends on EXPERIMENTAL && PCI && PCMCIA
3716a36913aSSascha Sommer	help
3726a36913aSSascha Sommer	  Say Y here if your Notebook reports a Ricoh Bay1Controller PCMCIA
3736a36913aSSascha Sommer	  card whenever you insert a MMC or SD card into the card slot.
3746a36913aSSascha Sommer
3756a36913aSSascha Sommer	  To compile this driver as a module, choose M here: the
3766a36913aSSascha Sommer	  module will be called sdricoh_cs.
3776a36913aSSascha Sommer
3784a48998fSIan Moltonconfig MMC_TMIO
3794a48998fSIan Molton	tristate "Toshiba Mobile IO Controller (TMIO) MMC/SD function support"
3803d8ca8c0SMagnus Damm	depends on MFD_TMIO || MFD_ASIC3 || MFD_SH_MOBILE_SDHI
3814a48998fSIan Molton	help
3824a48998fSIan Molton	  This provides support for the SD/MMC cell found in TC6393XB,
383e6f2c7adSPhilipp Zabel	  T7L66XB and also HTC ASIC3
3845f5bac82SMichał Mirosław
3855f5bac82SMichał Mirosławconfig MMC_CB710
3865f5bac82SMichał Mirosław	tristate "ENE CB710 MMC/SD Interface support"
3875f5bac82SMichał Mirosław	depends on PCI
3885f5bac82SMichał Mirosław	select CB710_CORE
3895f5bac82SMichał Mirosław	help
3905f5bac82SMichał Mirosław	  This option enables support for MMC/SD part of ENE CB710/720 Flash
3915f5bac82SMichał Mirosław	  memory card reader found in some laptops (ie. some versions of
3925f5bac82SMichał Mirosław	  HP Compaq nx9500).
3935f5bac82SMichał Mirosław
3945f5bac82SMichał Mirosław	  This driver can also be built as a module. If so, the module
3955f5bac82SMichał Mirosław	  will be called cb710-mmc.
3965f5bac82SMichał Mirosław
397f0bf7f61SHarald Welteconfig MMC_VIA_SDMMC
398f0bf7f61SHarald Welte	tristate "VIA SD/MMC Card Reader Driver"
399f0bf7f61SHarald Welte	depends on PCI
400f0bf7f61SHarald Welte	help
401f0bf7f61SHarald Welte	  This selects the VIA SD/MMC Card Reader driver, say Y or M here.
402f0bf7f61SHarald Welte	  VIA provides one multi-functional card reader which integrated into
403f0bf7f61SHarald Welte	  some motherboards manufactured by VIA. This card reader supports
404f0bf7f61SHarald Welte	  SD/MMC/SDHC.
405f0bf7f61SHarald Welte	  If you have a controller with this interface, say Y or M here.
406f0bf7f61SHarald Welte
407f0bf7f61SHarald Welte	  If unsure, say N.
408eb962d5bSCliff Cai
409eb962d5bSCliff Caiconfig SDH_BFIN
410eb962d5bSCliff Cai	tristate "Blackfin Secure Digital Host support"
41105dabcc4SMike Frysinger	depends on (BF54x && !BF544) || (BF51x && !BF512)
412eb962d5bSCliff Cai	help
413eb962d5bSCliff Cai	  If you say yes here you will get support for the Blackfin on-chip
414eb962d5bSCliff Cai	  Secure Digital Host interface.  This includes support for MMC and
415eb962d5bSCliff Cai	  SD cards.
416eb962d5bSCliff Cai
417eb962d5bSCliff Cai	  To compile this driver as a module, choose M here: the
418eb962d5bSCliff Cai	  module will be called bfin_sdh.
419eb962d5bSCliff Cai
420eb962d5bSCliff Cai	  If unsure, say N.
421eb962d5bSCliff Cai
422eb962d5bSCliff Caiconfig SDH_BFIN_MISSING_CMD_PULLUP_WORKAROUND
423eb962d5bSCliff Cai	bool "Blackfin EZkit Missing SDH_CMD Pull Up Resistor Workaround"
424eb962d5bSCliff Cai	depends on SDH_BFIN
425eb962d5bSCliff Cai	help
426eb962d5bSCliff Cai	  If you say yes here SD-Cards may work on the EZkit.
427fdc50a94SYusuke Goda
428fdc50a94SYusuke Godaconfig MMC_SH_MMCIF
429fdc50a94SYusuke Goda	tristate "SuperH Internal MMCIF support"
430fdc50a94SYusuke Goda	depends on MMC_BLOCK && (SUPERH || ARCH_SHMOBILE)
431fdc50a94SYusuke Goda	help
432fdc50a94SYusuke Goda	  This selects the MMC Host Interface controler (MMCIF).
433fdc50a94SYusuke Goda
434fdc50a94SYusuke Goda	  This driver supports MMCIF in sh7724/sh7757/sh7372.
435