Kconfig 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. #
  2. # MMC subsystem configuration
  3. #
  4. menu "MMC/SD Card support"
  5. config MMC
  6. tristate "MMC support"
  7. help
  8. MMC is the "multi-media card" bus protocol.
  9. If you want MMC support, you should say Y here and also
  10. to the specific driver for your MMC interface.
  11. config MMC_DEBUG
  12. bool "MMC debugging"
  13. depends on MMC != n
  14. help
  15. This is an option for use by developers; most people should
  16. say N here. This enables MMC core and driver debugging.
  17. config MMC_BLOCK
  18. tristate "MMC block device driver"
  19. depends on MMC && BLOCK
  20. default y
  21. help
  22. Say Y here to enable the MMC block device driver support.
  23. This provides a block device driver, which you can use to
  24. mount the filesystem. Almost everyone wishing MMC support
  25. should say Y or M here.
  26. config MMC_ARMMMCI
  27. tristate "ARM AMBA Multimedia Card Interface support"
  28. depends on ARM_AMBA && MMC
  29. help
  30. This selects the ARM(R) AMBA(R) PrimeCell Multimedia Card
  31. Interface (PL180 and PL181) support. If you have an ARM(R)
  32. platform with a Multimedia Card slot, say Y or M here.
  33. If unsure, say N.
  34. config MMC_PXA
  35. tristate "Intel PXA255 Multimedia Card Interface support"
  36. depends on ARCH_PXA && MMC
  37. help
  38. This selects the Intel(R) PXA(R) Multimedia card Interface.
  39. If you have a PXA(R) platform with a Multimedia Card slot,
  40. say Y or M here.
  41. If unsure, say N.
  42. config MMC_SDHCI
  43. tristate "Secure Digital Host Controller Interface support (EXPERIMENTAL)"
  44. depends on PCI && MMC && EXPERIMENTAL
  45. help
  46. This select the generic Secure Digital Host Controller Interface.
  47. It is used by manufacturers such as Texas Instruments(R), Ricoh(R)
  48. and Toshiba(R). Most controllers found in laptops are of this type.
  49. If you have a controller with this interface, say Y or M here.
  50. If unsure, say N.
  51. config MMC_OMAP
  52. tristate "TI OMAP Multimedia Card Interface support"
  53. depends on ARCH_OMAP && MMC
  54. select TPS65010 if MACH_OMAP_H2
  55. help
  56. This selects the TI OMAP Multimedia card Interface.
  57. If you have an OMAP board with a Multimedia Card slot,
  58. say Y or M here.
  59. If unsure, say N.
  60. config MMC_WBSD
  61. tristate "Winbond W83L51xD SD/MMC Card Interface support"
  62. depends on MMC && ISA_DMA_API
  63. help
  64. This selects the Winbond(R) W83L51xD Secure digital and
  65. Multimedia card Interface.
  66. If you have a machine with a integrated W83L518D or W83L519D
  67. SD/MMC card reader, say Y or M here.
  68. If unsure, say N.
  69. config MMC_AU1X
  70. tristate "Alchemy AU1XX0 MMC Card Interface support"
  71. depends on MMC && SOC_AU1200
  72. help
  73. This selects the AMD Alchemy(R) Multimedia card interface.
  74. If you have a Alchemy platform with a MMC slot, say Y or M here.
  75. If unsure, say N.
  76. config MMC_AT91RM9200
  77. tristate "AT91RM9200 SD/MMC Card Interface support"
  78. depends on ARCH_AT91RM9200 && MMC
  79. help
  80. This selects the AT91RM9200 MCI controller.
  81. If unsure, say N.
  82. config MMC_IMX
  83. tristate "Motorola i.MX Multimedia Card Interface support"
  84. depends on ARCH_IMX && MMC
  85. help
  86. This selects the Motorola i.MX Multimedia card Interface.
  87. If you have a i.MX platform with a Multimedia Card slot,
  88. say Y or M here.
  89. If unsure, say N.
  90. config MMC_TIFM_SD
  91. tristate "TI Flash Media MMC/SD Interface support (EXPERIMENTAL)"
  92. depends on MMC && EXPERIMENTAL
  93. select TIFM_CORE
  94. help
  95. Say Y here if you want to be able to access MMC/SD cards with
  96. the Texas Instruments(R) Flash Media card reader, found in many
  97. laptops.
  98. This option 'selects' (turns on, enables) 'TIFM_CORE', but you
  99. probably also need appropriate card reader host adapter, such as
  100. 'Misc devices: TI Flash Media PCI74xx/PCI76xx host adapter support
  101. (TIFM_7XX1)'.
  102. To compile this driver as a module, choose M here: the
  103. module will be called tifm_sd.
  104. endmenu