Kconfig 24 KB

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