diff options
Diffstat (limited to 'drivers/mmc/host/Kconfig')
-rw-r--r-- | drivers/mmc/host/Kconfig | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/drivers/mmc/host/Kconfig b/drivers/mmc/host/Kconfig index e23082fe88d0..5fef6783c716 100644 --- a/drivers/mmc/host/Kconfig +++ b/drivers/mmc/host/Kconfig | |||
@@ -35,6 +35,23 @@ config MMC_SDHCI | |||
35 | 35 | ||
36 | If unsure, say N. | 36 | If unsure, say N. |
37 | 37 | ||
38 | config MMC_RICOH_MMC | ||
39 | tristate "Ricoh MMC Controller Disabler (EXPERIMENTAL)" | ||
40 | depends on PCI && EXPERIMENTAL && MMC_SDHCI | ||
41 | help | ||
42 | This selects the disabler for the Ricoh MMC Controller. This | ||
43 | proprietary controller is unnecessary because the SDHCI driver | ||
44 | supports MMC cards on the SD controller, but if it is not | ||
45 | disabled, it will steal the MMC cards away - rendering them | ||
46 | useless. It is safe to select this driver even if you don't | ||
47 | have a Ricoh based card reader. | ||
48 | |||
49 | |||
50 | To compile this driver as a module, choose M here: | ||
51 | the module will be called ricoh_mmc. | ||
52 | |||
53 | If unsure, say Y. | ||
54 | |||
38 | config MMC_OMAP | 55 | config MMC_OMAP |
39 | tristate "TI OMAP Multimedia Card Interface support" | 56 | tristate "TI OMAP Multimedia Card Interface support" |
40 | depends on ARCH_OMAP | 57 | depends on ARCH_OMAP |
@@ -100,3 +117,16 @@ config MMC_TIFM_SD | |||
100 | To compile this driver as a module, choose M here: the | 117 | To compile this driver as a module, choose M here: the |
101 | module will be called tifm_sd. | 118 | module will be called tifm_sd. |
102 | 119 | ||
120 | config MMC_SPI | ||
121 | tristate "MMC/SD over SPI (EXPERIMENTAL)" | ||
122 | depends on MMC && SPI_MASTER && !HIGHMEM && EXPERIMENTAL | ||
123 | select CRC7 | ||
124 | select CRC_ITU_T | ||
125 | help | ||
126 | Some systems accss MMC/SD cards using a SPI controller instead of | ||
127 | using a "native" MMC/SD controller. This has a disadvantage of | ||
128 | being relatively high overhead, but a compensating advantage of | ||
129 | working on many systems without dedicated MMC/SD controllers. | ||
130 | |||
131 | If unsure, or if your system has no SPI master driver, say N. | ||
132 | |||