diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-04-05 13:18:21 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-04-05 13:18:21 -0400 |
commit | 0a053e8c71d666daf30da2d407147b1293923d8b (patch) | |
tree | 9ba3967845db9053cb2ca045f01a9454eb5e6230 /drivers/mmc/host/Kconfig | |
parent | 601cc11d054ae4b5e9b5babec3d8e4667a2cb9b5 (diff) | |
parent | 32ab83a56fdf42f543b86c349143c2a86ead9707 (diff) |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/drzeus/mmc
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/drzeus/mmc: (42 commits)
atmel-mci: fix sdc_reg typo
tmio_mmc: add maintainer
mmc: Add OpenFirmware bindings for SDHCI driver
sdhci: Add quirk for forcing maximum block size to 2048 bytes
sdhci: Add quirk for controllers that need IRQ re-init after reset
sdhci: Add quirk for controllers that need small delays for PIO
sdhci: Add set_clock callback and a quirk for nonstandard clocks
sdhci: Add get_{max,timeout}_clock callbacks
sdhci: Add support for hosts reporting inverted write-protect state
sdhci: Add support for card-detection polling
sdhci: Enable only relevant (DMA/PIO) interrupts during transfers
sdhci: Split card-detection IRQs management from sdhci_init()
sdhci: Add support for bus-specific IO memory accessors
mmc_spi: adjust for delayed data token response
omap_hsmmc: Wait for SDBP
omap_hsmmc: Fix MMC3 dma
omap_hsmmc: Disable SDBP at suspend
omap_hsmmc: Do not prefix slot name
omap_hsmmc: Allow cover switch to cause rescan
omap_hsmmc: Add 8-bit bus width mode support
...
Diffstat (limited to 'drivers/mmc/host/Kconfig')
-rw-r--r-- | drivers/mmc/host/Kconfig | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/drivers/mmc/host/Kconfig b/drivers/mmc/host/Kconfig index 6fbb246c40bb..b4cf691f3f64 100644 --- a/drivers/mmc/host/Kconfig +++ b/drivers/mmc/host/Kconfig | |||
@@ -37,6 +37,13 @@ config MMC_SDHCI | |||
37 | 37 | ||
38 | If unsure, say N. | 38 | If unsure, say N. |
39 | 39 | ||
40 | config MMC_SDHCI_IO_ACCESSORS | ||
41 | bool | ||
42 | depends on MMC_SDHCI | ||
43 | help | ||
44 | This is silent Kconfig symbol that is selected by the drivers that | ||
45 | need to overwrite SDHCI IO memory accessors. | ||
46 | |||
40 | config MMC_SDHCI_PCI | 47 | config MMC_SDHCI_PCI |
41 | tristate "SDHCI support on PCI bus" | 48 | tristate "SDHCI support on PCI bus" |
42 | depends on MMC_SDHCI && PCI | 49 | depends on MMC_SDHCI && PCI |
@@ -65,6 +72,17 @@ config MMC_RICOH_MMC | |||
65 | 72 | ||
66 | If unsure, say Y. | 73 | If unsure, say Y. |
67 | 74 | ||
75 | config MMC_SDHCI_OF | ||
76 | tristate "SDHCI support on OpenFirmware platforms" | ||
77 | depends on MMC_SDHCI && PPC_OF | ||
78 | select MMC_SDHCI_IO_ACCESSORS | ||
79 | help | ||
80 | This selects the OF support for Secure Digital Host Controller | ||
81 | Interfaces. So far, only the Freescale eSDHC controller is known | ||
82 | to exist on OF platforms. | ||
83 | |||
84 | If unsure, say N. | ||
85 | |||
68 | config MMC_OMAP | 86 | config MMC_OMAP |
69 | tristate "TI OMAP Multimedia Card Interface support" | 87 | tristate "TI OMAP Multimedia Card Interface support" |
70 | depends on ARCH_OMAP | 88 | depends on ARCH_OMAP |
@@ -171,6 +189,17 @@ config MMC_TIFM_SD | |||
171 | To compile this driver as a module, choose M here: the | 189 | To compile this driver as a module, choose M here: the |
172 | module will be called tifm_sd. | 190 | module will be called tifm_sd. |
173 | 191 | ||
192 | config MMC_MVSDIO | ||
193 | tristate "Marvell MMC/SD/SDIO host driver" | ||
194 | depends on PLAT_ORION | ||
195 | ---help--- | ||
196 | This selects the Marvell SDIO host driver. | ||
197 | SDIO may currently be found on the Kirkwood 88F6281 and 88F6192 | ||
198 | SoC controllers. | ||
199 | |||
200 | To compile this driver as a module, choose M here: the | ||
201 | module will be called mvsdio. | ||
202 | |||
174 | config MMC_SPI | 203 | config MMC_SPI |
175 | tristate "MMC/SD/SDIO over SPI" | 204 | tristate "MMC/SD/SDIO over SPI" |
176 | depends on SPI_MASTER && !HIGHMEM && HAS_DMA | 205 | depends on SPI_MASTER && !HIGHMEM && HAS_DMA |