Kconfig 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. #
  2. # MMC/SD host controller drivers
  3. #
  4. comment "MMC/SD Host Controller Drivers"
  5. config MMC_ARMMMCI
  6. tristate "ARM AMBA Multimedia Card Interface support"
  7. depends on ARM_AMBA
  8. help
  9. This selects the ARM(R) AMBA(R) PrimeCell Multimedia Card
  10. Interface (PL180 and PL181) support. If you have an ARM(R)
  11. platform with a Multimedia Card slot, say Y or M here.
  12. If unsure, say N.
  13. config MMC_PXA
  14. tristate "Intel PXA25x/26x/27x Multimedia Card Interface support"
  15. depends on ARCH_PXA
  16. help
  17. This selects the Intel(R) PXA(R) Multimedia card Interface.
  18. If you have a PXA(R) platform with a Multimedia Card slot,
  19. say Y or M here.
  20. If unsure, say N.
  21. config MMC_SDHCI
  22. tristate "Secure Digital Host Controller Interface support (EXPERIMENTAL)"
  23. depends on PCI && EXPERIMENTAL
  24. help
  25. This select the generic Secure Digital Host Controller Interface.
  26. It is used by manufacturers such as Texas Instruments(R), Ricoh(R)
  27. and Toshiba(R). Most controllers found in laptops are of this type.
  28. If you have a controller with this interface, say Y or M here.
  29. If unsure, say N.
  30. config MMC_RICOH_MMC
  31. tristate "Ricoh MMC Controller Disabler (EXPERIMENTAL)"
  32. depends on PCI && EXPERIMENTAL && MMC_SDHCI
  33. help
  34. This selects the disabler for the Ricoh MMC Controller. This
  35. proprietary controller is unnecessary because the SDHCI driver
  36. supports MMC cards on the SD controller, but if it is not
  37. disabled, it will steal the MMC cards away - rendering them
  38. useless. It is safe to select this driver even if you don't
  39. have a Ricoh based card reader.
  40. To compile this driver as a module, choose M here:
  41. the module will be called ricoh_mmc.
  42. If unsure, say Y.
  43. config MMC_OMAP
  44. tristate "TI OMAP Multimedia Card Interface support"
  45. depends on ARCH_OMAP
  46. select TPS65010 if MACH_OMAP_H2
  47. help
  48. This selects the TI OMAP Multimedia card Interface.
  49. If you have an OMAP board with a Multimedia Card slot,
  50. say Y or M here.
  51. If unsure, say N.
  52. config MMC_WBSD
  53. tristate "Winbond W83L51xD SD/MMC Card Interface support"
  54. depends on ISA_DMA_API
  55. help
  56. This selects the Winbond(R) W83L51xD Secure digital and
  57. Multimedia card Interface.
  58. If you have a machine with a integrated W83L518D or W83L519D
  59. SD/MMC card reader, say Y or M here.
  60. If unsure, say N.
  61. config MMC_AU1X
  62. tristate "Alchemy AU1XX0 MMC Card Interface support"
  63. depends on SOC_AU1200
  64. help
  65. This selects the AMD Alchemy(R) Multimedia card interface.
  66. If you have a Alchemy platform with a MMC slot, say Y or M here.
  67. If unsure, say N.
  68. config MMC_AT91
  69. tristate "AT91 SD/MMC Card Interface support"
  70. depends on ARCH_AT91
  71. help
  72. This selects the AT91 MCI controller.
  73. If unsure, say N.
  74. config MMC_IMX
  75. tristate "Motorola i.MX Multimedia Card Interface support"
  76. depends on ARCH_IMX
  77. help
  78. This selects the Motorola i.MX Multimedia card Interface.
  79. If you have a i.MX platform with a Multimedia Card slot,
  80. say Y or M here.
  81. If unsure, say N.
  82. config MMC_TIFM_SD
  83. tristate "TI Flash Media MMC/SD Interface support (EXPERIMENTAL)"
  84. depends on EXPERIMENTAL && PCI
  85. select TIFM_CORE
  86. help
  87. Say Y here if you want to be able to access MMC/SD cards with
  88. the Texas Instruments(R) Flash Media card reader, found in many
  89. laptops.
  90. This option 'selects' (turns on, enables) 'TIFM_CORE', but you
  91. probably also need appropriate card reader host adapter, such as
  92. 'Misc devices: TI Flash Media PCI74xx/PCI76xx host adapter support
  93. (TIFM_7XX1)'.
  94. To compile this driver as a module, choose M here: the
  95. module will be called tifm_sd.
  96. config MMC_SPI
  97. tristate "MMC/SD over SPI (EXPERIMENTAL)"
  98. depends on MMC && SPI_MASTER && !HIGHMEM && EXPERIMENTAL
  99. select CRC7
  100. select CRC_ITU_T
  101. help
  102. Some systems accss MMC/SD cards using a SPI controller instead of
  103. using a "native" MMC/SD controller. This has a disadvantage of
  104. being relatively high overhead, but a compensating advantage of
  105. working on many systems without dedicated MMC/SD controllers.
  106. If unsure, or if your system has no SPI master driver, say N.