Kconfig 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755
  1. #
  2. # MMC/SD host controller drivers
  3. #
  4. comment "MMC/SD/SDIO 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_QCOM_DML
  14. tristate "Qualcomm Data Mover for SD Card Controller"
  15. depends on MMC_ARMMMCI && QCOM_BAM_DMA
  16. default y
  17. help
  18. This selects the Qualcomm Data Mover lite/local on SD Card controller.
  19. This option will enable the dma to work correctly, if you are using
  20. Qcom SOCs and MMC, you would probably need this option to get DMA working.
  21. if unsure, say N.
  22. config MMC_PXA
  23. tristate "Intel PXA25x/26x/27x Multimedia Card Interface support"
  24. depends on ARCH_PXA
  25. help
  26. This selects the Intel(R) PXA(R) Multimedia card Interface.
  27. If you have a PXA(R) platform with a Multimedia Card slot,
  28. say Y or M here.
  29. If unsure, say N.
  30. config MMC_SDHCI
  31. tristate "Secure Digital Host Controller Interface support"
  32. depends on HAS_DMA
  33. help
  34. This selects the generic Secure Digital Host Controller Interface.
  35. It is used by manufacturers such as Texas Instruments(R), Ricoh(R)
  36. and Toshiba(R). Most controllers found in laptops are of this type.
  37. If you have a controller with this interface, say Y or M here. You
  38. also need to enable an appropriate bus interface.
  39. If unsure, say N.
  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. config MMC_SDHCI_BIG_ENDIAN_32BIT_BYTE_SWAPPER
  47. bool
  48. select MMC_SDHCI_IO_ACCESSORS
  49. help
  50. This option is selected by drivers running on big endian hosts
  51. and performing I/O to a SDHCI controller through a bus that
  52. implements a hardware byte swapper using a 32-bit datum.
  53. This endian mapping mode is called "data invariance" and
  54. has the effect of scrambling the addresses and formats of data
  55. accessed in sizes other than the datum size.
  56. This is the case for the Freescale eSDHC and Nintendo Wii SDHCI.
  57. config MMC_SDHCI_PCI
  58. tristate "SDHCI support on PCI bus"
  59. depends on MMC_SDHCI && PCI
  60. help
  61. This selects the PCI Secure Digital Host Controller Interface.
  62. Most controllers found today are PCI devices.
  63. If you have a controller with this interface, say Y or M here.
  64. If unsure, say N.
  65. config MMC_RICOH_MMC
  66. bool "Ricoh MMC Controller Disabler"
  67. depends on MMC_SDHCI_PCI
  68. help
  69. This adds a pci quirk to disable Ricoh MMC Controller. This
  70. proprietary controller is unnecessary because the SDHCI driver
  71. supports MMC cards on the SD controller, but if it is not
  72. disabled, it will steal the MMC cards away - rendering them
  73. useless. It is safe to select this even if you don't
  74. have a Ricoh based card reader.
  75. If unsure, say Y.
  76. config MMC_SDHCI_ACPI
  77. tristate "SDHCI support for ACPI enumerated SDHCI controllers"
  78. depends on MMC_SDHCI && ACPI
  79. help
  80. This selects support for ACPI enumerated SDHCI controllers,
  81. identified by ACPI Compatibility ID PNP0D40 or specific
  82. ACPI Hardware IDs.
  83. If you have a controller with this interface, say Y or M here.
  84. If unsure, say N.
  85. config MMC_SDHCI_PLTFM
  86. tristate "SDHCI platform and OF driver helper"
  87. depends on MMC_SDHCI
  88. help
  89. This selects the common helper functions support for Secure Digital
  90. Host Controller Interface based platform and OF drivers.
  91. If you have a controller with this interface, say Y or M here.
  92. If unsure, say N.
  93. config MMC_SDHCI_OF_ARASAN
  94. tristate "SDHCI OF support for the Arasan SDHCI controllers"
  95. depends on MMC_SDHCI_PLTFM
  96. depends on OF
  97. help
  98. This selects the Arasan Secure Digital Host Controller Interface
  99. (SDHCI). This hardware is found e.g. in Xilinx' Zynq SoC.
  100. If you have a controller with this interface, say Y or M here.
  101. If unsure, say N.
  102. config MMC_SDHCI_OF_ESDHC
  103. tristate "SDHCI OF support for the Freescale eSDHC controller"
  104. depends on MMC_SDHCI_PLTFM
  105. depends on PPC_OF
  106. select MMC_SDHCI_BIG_ENDIAN_32BIT_BYTE_SWAPPER
  107. help
  108. This selects the Freescale eSDHC controller support.
  109. If you have a controller with this interface, say Y or M here.
  110. If unsure, say N.
  111. config MMC_SDHCI_OF_HLWD
  112. tristate "SDHCI OF support for the Nintendo Wii SDHCI controllers"
  113. depends on MMC_SDHCI_PLTFM
  114. depends on PPC_OF
  115. select MMC_SDHCI_BIG_ENDIAN_32BIT_BYTE_SWAPPER
  116. help
  117. This selects the Secure Digital Host Controller Interface (SDHCI)
  118. found in the "Hollywood" chipset of the Nintendo Wii video game
  119. console.
  120. If you have a controller with this interface, say Y or M here.
  121. If unsure, say N.
  122. config MMC_SDHCI_CNS3XXX
  123. tristate "SDHCI support on the Cavium Networks CNS3xxx SoC"
  124. depends on ARCH_CNS3XXX
  125. depends on MMC_SDHCI_PLTFM
  126. help
  127. This selects the SDHCI support for CNS3xxx System-on-Chip devices.
  128. If you have a controller with this interface, say Y or M here.
  129. If unsure, say N.
  130. config MMC_SDHCI_ESDHC_IMX
  131. tristate "SDHCI support for the Freescale eSDHC/uSDHC i.MX controller"
  132. depends on ARCH_MXC
  133. depends on MMC_SDHCI_PLTFM
  134. select MMC_SDHCI_IO_ACCESSORS
  135. help
  136. This selects the Freescale eSDHC/uSDHC controller support
  137. found on i.MX25, i.MX35 i.MX5x and i.MX6x.
  138. If you have a controller with this interface, say Y or M here.
  139. If unsure, say N.
  140. config MMC_SDHCI_DOVE
  141. tristate "SDHCI support on Marvell's Dove SoC"
  142. depends on ARCH_DOVE || MACH_DOVE
  143. depends on MMC_SDHCI_PLTFM
  144. select MMC_SDHCI_IO_ACCESSORS
  145. help
  146. This selects the Secure Digital Host Controller Interface in
  147. Marvell's Dove SoC.
  148. If you have a controller with this interface, say Y or M here.
  149. If unsure, say N.
  150. config MMC_SDHCI_TEGRA
  151. tristate "SDHCI platform support for the Tegra SD/MMC Controller"
  152. depends on ARCH_TEGRA
  153. depends on MMC_SDHCI_PLTFM
  154. select MMC_SDHCI_IO_ACCESSORS
  155. help
  156. This selects the Tegra SD/MMC controller. If you have a Tegra
  157. platform with SD or MMC devices, say Y or M here.
  158. If unsure, say N.
  159. config MMC_SDHCI_S3C
  160. tristate "SDHCI support on Samsung S3C SoC"
  161. depends on MMC_SDHCI && PLAT_SAMSUNG
  162. help
  163. This selects the Secure Digital Host Controller Interface (SDHCI)
  164. often referrered to as the HSMMC block in some of the Samsung S3C
  165. range of SoC.
  166. If you have a controller with this interface, say Y or M here.
  167. If unsure, say N.
  168. config MMC_SDHCI_SIRF
  169. tristate "SDHCI support on CSR SiRFprimaII and SiRFmarco SoCs"
  170. depends on ARCH_SIRF
  171. depends on MMC_SDHCI_PLTFM
  172. help
  173. This selects the SDHCI support for SiRF System-on-Chip devices.
  174. If you have a controller with this interface, say Y or M here.
  175. If unsure, say N.
  176. config MMC_SDHCI_PXAV3
  177. tristate "Marvell MMP2 SD Host Controller support (PXAV3)"
  178. depends on CLKDEV_LOOKUP
  179. depends on MMC_SDHCI_PLTFM
  180. default CPU_MMP2
  181. help
  182. This selects the Marvell(R) PXAV3 SD Host Controller.
  183. If you have a MMP2 platform with SD Host Controller
  184. and a card slot, say Y or M here.
  185. If unsure, say N.
  186. config MMC_SDHCI_PXAV2
  187. tristate "Marvell PXA9XX SD Host Controller support (PXAV2)"
  188. depends on CLKDEV_LOOKUP
  189. depends on MMC_SDHCI_PLTFM
  190. default CPU_PXA910
  191. help
  192. This selects the Marvell(R) PXAV2 SD Host Controller.
  193. If you have a PXA9XX platform with SD Host Controller
  194. and a card slot, say Y or M here.
  195. If unsure, say N.
  196. config MMC_SDHCI_SPEAR
  197. tristate "SDHCI support on ST SPEAr platform"
  198. depends on MMC_SDHCI && PLAT_SPEAR
  199. help
  200. This selects the Secure Digital Host Controller Interface (SDHCI)
  201. often referrered to as the HSMMC block in some of the ST SPEAR range
  202. of SoC
  203. If you have a controller with this interface, say Y or M here.
  204. If unsure, say N.
  205. config MMC_SDHCI_S3C_DMA
  206. bool "DMA support on S3C SDHCI"
  207. depends on MMC_SDHCI_S3C
  208. help
  209. Enable DMA support on the Samsung S3C SDHCI glue. The DMA
  210. has proved to be problematic if the controller encounters
  211. certain errors, and thus should be treated with care.
  212. YMMV.
  213. config MMC_SDHCI_BCM_KONA
  214. tristate "SDHCI support on Broadcom KONA platform"
  215. depends on ARCH_BCM_MOBILE
  216. depends on MMC_SDHCI_PLTFM
  217. help
  218. This selects the Broadcom Kona Secure Digital Host Controller
  219. Interface(SDHCI) support.
  220. This is used in Broadcom mobile SoCs.
  221. If you have a controller with this interface, say Y or M here.
  222. config MMC_SDHCI_BCM2835
  223. tristate "SDHCI platform support for the BCM2835 SD/MMC Controller"
  224. depends on ARCH_BCM2835
  225. depends on MMC_SDHCI_PLTFM
  226. select MMC_SDHCI_IO_ACCESSORS
  227. help
  228. This selects the BCM2835 SD/MMC controller. If you have a BCM2835
  229. platform with SD or MMC devices, say Y or M here.
  230. If unsure, say N.
  231. config MMC_MOXART
  232. tristate "MOXART SD/MMC Host Controller support"
  233. depends on ARCH_MOXART && MMC
  234. help
  235. This selects support for the MOXART SD/MMC Host Controller.
  236. MOXA provides one multi-functional card reader which can
  237. be found on some embedded hardware such as UC-7112-LX.
  238. If you have a controller with this interface, say Y here.
  239. config MMC_SDHCI_ST
  240. tristate "SDHCI support on STMicroelectronics SoC"
  241. depends on ARCH_STI
  242. depends on MMC_SDHCI_PLTFM
  243. select MMC_SDHCI_IO_ACCESSORS
  244. help
  245. This selects the Secure Digital Host Controller Interface in
  246. STMicroelectronics SoCs.
  247. If you have a controller with this interface, say Y or M here.
  248. If unsure, say N.
  249. config MMC_OMAP
  250. tristate "TI OMAP Multimedia Card Interface support"
  251. depends on ARCH_OMAP
  252. depends on TPS65010 || !MACH_OMAP_H2
  253. help
  254. This selects the TI OMAP Multimedia card Interface.
  255. If you have an OMAP board with a Multimedia Card slot,
  256. say Y or M here.
  257. If unsure, say N.
  258. config MMC_OMAP_HS
  259. tristate "TI OMAP High Speed Multimedia Card Interface support"
  260. depends on HAS_DMA
  261. depends on ARCH_OMAP2PLUS || COMPILE_TEST
  262. help
  263. This selects the TI OMAP High Speed Multimedia card Interface.
  264. If you have an omap2plus board with a Multimedia Card slot,
  265. say Y or M here.
  266. If unsure, say N.
  267. config MMC_WBSD
  268. tristate "Winbond W83L51xD SD/MMC Card Interface support"
  269. depends on ISA_DMA_API
  270. help
  271. This selects the Winbond(R) W83L51xD Secure digital and
  272. Multimedia card Interface.
  273. If you have a machine with a integrated W83L518D or W83L519D
  274. SD/MMC card reader, say Y or M here.
  275. If unsure, say N.
  276. config MMC_AU1X
  277. tristate "Alchemy AU1XX0 MMC Card Interface support"
  278. depends on MIPS_ALCHEMY
  279. help
  280. This selects the AMD Alchemy(R) Multimedia card interface.
  281. If you have a Alchemy platform with a MMC slot, say Y or M here.
  282. If unsure, say N.
  283. config MMC_ATMELMCI
  284. tristate "Atmel SD/MMC Driver (Multimedia Card Interface)"
  285. depends on AVR32 || ARCH_AT91
  286. help
  287. This selects the Atmel Multimedia Card Interface driver. If
  288. you have an AT32 (AVR32) or AT91 platform with a Multimedia
  289. Card slot, say Y or M here.
  290. If unsure, say N.
  291. config MMC_SDHCI_MSM
  292. tristate "Qualcomm SDHCI Controller Support"
  293. depends on ARCH_QCOM || (ARM && COMPILE_TEST)
  294. depends on MMC_SDHCI_PLTFM
  295. help
  296. This selects the Secure Digital Host Controller Interface (SDHCI)
  297. support present in Qualcomm SOCs. The controller supports
  298. SD/MMC/SDIO devices.
  299. If you have a controller with this interface, say Y or M here.
  300. If unsure, say N.
  301. config MMC_MSM
  302. tristate "Qualcomm SDCC Controller Support"
  303. depends on MMC && (ARCH_MSM7X00A || ARCH_MSM7X30 || ARCH_QSD8X50)
  304. help
  305. This provides support for the SD/MMC cell found in the
  306. MSM and QSD SOCs from Qualcomm. The controller also has
  307. support for SDIO devices.
  308. config MMC_MXC
  309. tristate "Freescale i.MX21/27/31 or MPC512x Multimedia Card support"
  310. depends on ARCH_MXC || PPC_MPC512x
  311. help
  312. This selects the Freescale i.MX21, i.MX27, i.MX31 or MPC512x
  313. Multimedia Card Interface. If you have an i.MX or MPC512x platform
  314. with a Multimedia Card slot, say Y or M here.
  315. If unsure, say N.
  316. config MMC_MXS
  317. tristate "Freescale MXS Multimedia Card Interface support"
  318. depends on ARCH_MXS && MXS_DMA
  319. help
  320. This selects the Freescale SSP MMC controller found on MXS based
  321. platforms like mx23/28.
  322. If unsure, say N.
  323. config MMC_TIFM_SD
  324. tristate "TI Flash Media MMC/SD Interface support"
  325. depends on PCI
  326. select TIFM_CORE
  327. help
  328. Say Y here if you want to be able to access MMC/SD cards with
  329. the Texas Instruments(R) Flash Media card reader, found in many
  330. laptops.
  331. This option 'selects' (turns on, enables) 'TIFM_CORE', but you
  332. probably also need appropriate card reader host adapter, such as
  333. 'Misc devices: TI Flash Media PCI74xx/PCI76xx host adapter support
  334. (TIFM_7XX1)'.
  335. To compile this driver as a module, choose M here: the
  336. module will be called tifm_sd.
  337. config MMC_MVSDIO
  338. tristate "Marvell MMC/SD/SDIO host driver"
  339. depends on PLAT_ORION
  340. ---help---
  341. This selects the Marvell SDIO host driver.
  342. SDIO may currently be found on the Kirkwood 88F6281 and 88F6192
  343. SoC controllers.
  344. To compile this driver as a module, choose M here: the
  345. module will be called mvsdio.
  346. config MMC_DAVINCI
  347. tristate "TI DAVINCI Multimedia Card Interface support"
  348. depends on ARCH_DAVINCI
  349. help
  350. This selects the TI DAVINCI Multimedia card Interface.
  351. If you have an DAVINCI board with a Multimedia Card slot,
  352. say Y or M here. If unsure, say N.
  353. config MMC_GOLDFISH
  354. tristate "goldfish qemu Multimedia Card Interface support"
  355. depends on GOLDFISH
  356. help
  357. This selects the Goldfish Multimedia card Interface emulation
  358. found on the Goldfish Android virtual device emulation.
  359. config MMC_SPI
  360. tristate "MMC/SD/SDIO over SPI"
  361. depends on SPI_MASTER && !HIGHMEM && HAS_DMA
  362. select CRC7
  363. select CRC_ITU_T
  364. help
  365. Some systems access MMC/SD/SDIO cards using a SPI controller
  366. instead of using a "native" MMC/SD/SDIO controller. This has a
  367. disadvantage of being relatively high overhead, but a compensating
  368. advantage of working on many systems without dedicated MMC/SD/SDIO
  369. controllers.
  370. If unsure, or if your system has no SPI master driver, say N.
  371. config MMC_S3C
  372. tristate "Samsung S3C SD/MMC Card Interface support"
  373. depends on ARCH_S3C24XX
  374. depends on S3C24XX_DMAC
  375. help
  376. This selects a driver for the MCI interface found in
  377. Samsung's S3C2410, S3C2412, S3C2440, S3C2442 CPUs.
  378. If you have a board based on one of those and a MMC/SD
  379. slot, say Y or M here.
  380. If unsure, say N.
  381. config MMC_S3C_HW_SDIO_IRQ
  382. bool "Hardware support for SDIO IRQ"
  383. depends on MMC_S3C
  384. help
  385. Enable the hardware support for SDIO interrupts instead of using
  386. the generic polling code.
  387. choice
  388. prompt "Samsung S3C SD/MMC transfer code"
  389. depends on MMC_S3C
  390. config MMC_S3C_PIO
  391. bool "Use PIO transfers only"
  392. help
  393. Use PIO to transfer data between memory and the hardware.
  394. PIO is slower than DMA as it requires CPU instructions to
  395. move the data. This has been the traditional default for
  396. the S3C MCI driver.
  397. config MMC_S3C_DMA
  398. bool "Use DMA transfers only"
  399. help
  400. Use DMA to transfer data between memory and the hardare.
  401. Currently, the DMA support in this driver seems to not be
  402. working properly and needs to be debugged before this
  403. option is useful.
  404. endchoice
  405. config MMC_SDRICOH_CS
  406. tristate "MMC/SD driver for Ricoh Bay1Controllers"
  407. depends on PCI && PCMCIA
  408. help
  409. Say Y here if your Notebook reports a Ricoh Bay1Controller PCMCIA
  410. card whenever you insert a MMC or SD card into the card slot.
  411. To compile this driver as a module, choose M here: the
  412. module will be called sdricoh_cs.
  413. config MMC_TMIO_CORE
  414. tristate
  415. config MMC_TMIO
  416. tristate "Toshiba Mobile IO Controller (TMIO) MMC/SD function support"
  417. depends on MFD_TMIO || MFD_ASIC3
  418. select MMC_TMIO_CORE
  419. help
  420. This provides support for the SD/MMC cell found in TC6393XB,
  421. T7L66XB and also HTC ASIC3
  422. config MMC_SDHI
  423. tristate "SH-Mobile SDHI SD/SDIO controller support"
  424. depends on SUPERH || ARM
  425. depends on SUPERH || ARCH_SHMOBILE || COMPILE_TEST
  426. select MMC_TMIO_CORE
  427. help
  428. This provides support for the SDHI SD/SDIO controller found in
  429. SuperH and ARM SH-Mobile SoCs
  430. config MMC_CB710
  431. tristate "ENE CB710 MMC/SD Interface support"
  432. depends on PCI
  433. select CB710_CORE
  434. help
  435. This option enables support for MMC/SD part of ENE CB710/720 Flash
  436. memory card reader found in some laptops (ie. some versions of
  437. HP Compaq nx9500).
  438. This driver can also be built as a module. If so, the module
  439. will be called cb710-mmc.
  440. config MMC_VIA_SDMMC
  441. tristate "VIA SD/MMC Card Reader Driver"
  442. depends on PCI
  443. help
  444. This selects the VIA SD/MMC Card Reader driver, say Y or M here.
  445. VIA provides one multi-functional card reader which integrated into
  446. some motherboards manufactured by VIA. This card reader supports
  447. SD/MMC/SDHC.
  448. If you have a controller with this interface, say Y or M here.
  449. If unsure, say N.
  450. config SDH_BFIN
  451. tristate "Blackfin Secure Digital Host support"
  452. depends on (BF54x && !BF544) || (BF51x && !BF512)
  453. help
  454. If you say yes here you will get support for the Blackfin on-chip
  455. Secure Digital Host interface. This includes support for MMC and
  456. SD cards.
  457. To compile this driver as a module, choose M here: the
  458. module will be called bfin_sdh.
  459. If unsure, say N.
  460. config SDH_BFIN_MISSING_CMD_PULLUP_WORKAROUND
  461. bool "Blackfin EZkit Missing SDH_CMD Pull Up Resistor Workaround"
  462. depends on SDH_BFIN
  463. help
  464. If you say yes here SD-Cards may work on the EZkit.
  465. config MMC_DW
  466. tristate "Synopsys DesignWare Memory Card Interface"
  467. depends on HAS_DMA
  468. depends on ARC || ARM || ARM64 || MIPS || COMPILE_TEST
  469. help
  470. This selects support for the Synopsys DesignWare Mobile Storage IP
  471. block, this provides host support for SD and MMC interfaces, in both
  472. PIO and external DMA modes.
  473. config MMC_DW_IDMAC
  474. bool "Internal DMAC interface"
  475. depends on MMC_DW
  476. help
  477. This selects support for the internal DMAC block within the Synopsys
  478. Designware Mobile Storage IP block. This disables the external DMA
  479. interface.
  480. config MMC_DW_PLTFM
  481. tristate "Synopsys Designware MCI Support as platform device"
  482. depends on MMC_DW
  483. default y
  484. help
  485. This selects the common helper functions support for Host Controller
  486. Interface based platform driver. Please select this option if the IP
  487. is present as a platform device. This is the common interface for the
  488. Synopsys Designware IP.
  489. If you have a controller with this interface, say Y or M here.
  490. If unsure, say Y.
  491. config MMC_DW_EXYNOS
  492. tristate "Exynos specific extensions for Synopsys DW Memory Card Interface"
  493. depends on MMC_DW
  494. select MMC_DW_PLTFM
  495. help
  496. This selects support for Samsung Exynos SoC specific extensions to the
  497. Synopsys DesignWare Memory Card Interface driver. Select this option
  498. for platforms based on Exynos4 and Exynos5 SoC's.
  499. config MMC_DW_K3
  500. tristate "K3 specific extensions for Synopsys DW Memory Card Interface"
  501. depends on MMC_DW
  502. select MMC_DW_PLTFM
  503. select MMC_DW_IDMAC
  504. help
  505. This selects support for Hisilicon K3 SoC specific extensions to the
  506. Synopsys DesignWare Memory Card Interface driver. Select this option
  507. for platforms based on Hisilicon K3 SoC's.
  508. config MMC_DW_PCI
  509. tristate "Synopsys Designware MCI support on PCI bus"
  510. depends on MMC_DW && PCI
  511. help
  512. This selects the PCI bus for the Synopsys Designware Mobile Storage IP.
  513. Select this option if the IP is present on PCI platform.
  514. If you have a controller with this interface, say Y or M here.
  515. If unsure, say N.
  516. config MMC_DW_ROCKCHIP
  517. tristate "Rockchip specific extensions for Synopsys DW Memory Card Interface"
  518. depends on MMC_DW && ARCH_ROCKCHIP
  519. select MMC_DW_PLTFM
  520. help
  521. This selects support for Rockchip SoC specific extensions to the
  522. Synopsys DesignWare Memory Card Interface driver. Select this option
  523. for platforms based on RK3066, RK3188 and RK3288 SoC's.
  524. config MMC_SH_MMCIF
  525. tristate "SuperH Internal MMCIF support"
  526. depends on MMC_BLOCK && HAS_DMA
  527. depends on SUPERH || ARCH_SHMOBILE || COMPILE_TEST
  528. help
  529. This selects the MMC Host Interface controller (MMCIF).
  530. This driver supports MMCIF in sh7724/sh7757/sh7372.
  531. config MMC_JZ4740
  532. tristate "JZ4740 SD/Multimedia Card Interface support"
  533. depends on MACH_JZ4740
  534. help
  535. This selects support for the SD/MMC controller on Ingenic JZ4740
  536. SoCs.
  537. If you have a board based on such a SoC and with a SD/MMC slot,
  538. say Y or M here.
  539. config MMC_VUB300
  540. tristate "VUB300 USB to SDIO/SD/MMC Host Controller support"
  541. depends on USB
  542. help
  543. This selects support for Elan Digital Systems' VUB300 chip.
  544. The VUB300 is a USB-SDIO Host Controller Interface chip
  545. that enables the host computer to use SDIO/SD/MMC cards
  546. via a USB 2.0 or USB 1.1 host.
  547. The VUB300 chip will be found in both physically separate
  548. USB to SDIO/SD/MMC adapters and embedded on some motherboards.
  549. The VUB300 chip supports SD and MMC memory cards in addition
  550. to single and multifunction SDIO cards.
  551. Some SDIO cards will need a firmware file to be loaded and
  552. sent to VUB300 chip in order to achieve better data throughput.
  553. Download these "Offload Pseudocode" from Elan Digital Systems'
  554. web-site http://www.elandigitalsystems.com/support/downloads.php
  555. and put them in /lib/firmware. Note that without these additional
  556. firmware files the VUB300 chip will still function, but not at
  557. the best obtainable data rate.
  558. To compile this mmc host controller driver as a module,
  559. choose M here: the module will be called vub300.
  560. If you have a computer with an embedded VUB300 chip
  561. or if you intend connecting a USB adapter based on a
  562. VUB300 chip say Y or M here.
  563. config MMC_USHC
  564. tristate "USB SD Host Controller (USHC) support"
  565. depends on USB
  566. help
  567. This selects support for USB SD Host Controllers based on
  568. the Cypress Astoria chip with firmware compliant with CSR's
  569. USB SD Host Controller specification (CS-118793-SP).
  570. CSR boards with this device include: USB<>SDIO (M1985v2),
  571. and Ultrasira.
  572. Note: These controllers only support SDIO cards and do not
  573. support MMC or SD memory cards.
  574. config MMC_WMT
  575. tristate "Wondermedia SD/MMC Host Controller support"
  576. depends on ARCH_VT8500
  577. default y
  578. help
  579. This selects support for the SD/MMC Host Controller on
  580. Wondermedia WM8505/WM8650 based SoCs.
  581. To compile this driver as a module, choose M here: the
  582. module will be called wmt-sdmmc.
  583. config MMC_USDHI6ROL0
  584. tristate "Renesas USDHI6ROL0 SD/SDIO Host Controller support"
  585. depends on HAS_DMA
  586. help
  587. This selects support for the Renesas USDHI6ROL0 SD/SDIO
  588. Host Controller
  589. config MMC_REALTEK_PCI
  590. tristate "Realtek PCI-E SD/MMC Card Interface Driver"
  591. depends on MFD_RTSX_PCI
  592. help
  593. Say Y here to include driver code to support SD/MMC card interface
  594. of Realtek PCI-E card reader
  595. config MMC_REALTEK_USB
  596. tristate "Realtek USB SD/MMC Card Interface Driver"
  597. depends on MFD_RTSX_USB
  598. help
  599. Say Y here to include driver code to support SD/MMC card interface
  600. of Realtek RTS5129/39 series card reader
  601. config MMC_SUNXI
  602. tristate "Allwinner sunxi SD/MMC Host Controller support"
  603. depends on ARCH_SUNXI
  604. help
  605. This selects support for the SD/MMC Host Controller on
  606. Allwinner sunxi SoCs.
  607. config MMC_TOSHIBA_PCI
  608. tristate "Toshiba Type A SD/MMC Card Interface Driver"
  609. depends on PCI
  610. help