Kconfig 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947
  1. #
  2. # MMC/SD host controller drivers
  3. #
  4. comment "MMC/SD/SDIO Host Controller Drivers"
  5. config MMC_DEBUG
  6. bool "MMC host drivers debugging"
  7. depends on MMC != n
  8. help
  9. This is an option for use by developers; most people should
  10. say N here. This enables MMC host driver debugging. And further
  11. added host drivers please don't invent their private macro for
  12. debugging.
  13. config MMC_ARMMMCI
  14. tristate "ARM AMBA Multimedia Card Interface support"
  15. depends on ARM_AMBA
  16. help
  17. This selects the ARM(R) AMBA(R) PrimeCell Multimedia Card
  18. Interface (PL180 and PL181) support. If you have an ARM(R)
  19. platform with a Multimedia Card slot, say Y or M here.
  20. If unsure, say N.
  21. config MMC_QCOM_DML
  22. bool "Qualcomm Data Mover for SD Card Controller"
  23. depends on MMC_ARMMMCI && QCOM_BAM_DMA
  24. default y
  25. help
  26. This selects the Qualcomm Data Mover lite/local on SD Card controller.
  27. This option will enable the dma to work correctly, if you are using
  28. Qcom SOCs and MMC, you would probably need this option to get DMA working.
  29. if unsure, say N.
  30. config MMC_PXA
  31. tristate "Intel PXA25x/26x/27x Multimedia Card Interface support"
  32. depends on ARCH_PXA
  33. help
  34. This selects the Intel(R) PXA(R) Multimedia card Interface.
  35. If you have a PXA(R) platform with a Multimedia Card slot,
  36. say Y or M here.
  37. If unsure, say N.
  38. config MMC_SDHCI
  39. tristate "Secure Digital Host Controller Interface support"
  40. depends on HAS_DMA
  41. help
  42. This selects the generic Secure Digital Host Controller Interface.
  43. It is used by manufacturers such as Texas Instruments(R), Ricoh(R)
  44. and Toshiba(R). Most controllers found in laptops are of this type.
  45. If you have a controller with this interface, say Y or M here. You
  46. also need to enable an appropriate bus interface.
  47. If unsure, say N.
  48. config MMC_SDHCI_IO_ACCESSORS
  49. bool
  50. depends on MMC_SDHCI
  51. help
  52. This is silent Kconfig symbol that is selected by the drivers that
  53. need to overwrite SDHCI IO memory accessors.
  54. config MMC_SDHCI_BIG_ENDIAN_32BIT_BYTE_SWAPPER
  55. bool
  56. depends on MMC_SDHCI
  57. select MMC_SDHCI_IO_ACCESSORS
  58. help
  59. This option is selected by drivers running on big endian hosts
  60. and performing I/O to a SDHCI controller through a bus that
  61. implements a hardware byte swapper using a 32-bit datum.
  62. This endian mapping mode is called "data invariance" and
  63. has the effect of scrambling the addresses and formats of data
  64. accessed in sizes other than the datum size.
  65. This is the case for the Nintendo Wii SDHCI.
  66. config MMC_SDHCI_PCI
  67. tristate "SDHCI support on PCI bus"
  68. depends on MMC_SDHCI && PCI
  69. select MMC_CQHCI
  70. help
  71. This selects the PCI Secure Digital Host Controller Interface.
  72. Most controllers found today are PCI devices.
  73. If you have a controller with this interface, say Y or M here.
  74. If unsure, say N.
  75. config MMC_RICOH_MMC
  76. bool "Ricoh MMC Controller Disabler"
  77. depends on MMC_SDHCI_PCI
  78. default y
  79. help
  80. This adds a pci quirk to disable Ricoh MMC Controller. This
  81. proprietary controller is unnecessary because the SDHCI driver
  82. supports MMC cards on the SD controller, but if it is not
  83. disabled, it will steal the MMC cards away - rendering them
  84. useless. It is safe to select this even if you don't
  85. have a Ricoh based card reader.
  86. If unsure, say Y.
  87. config MMC_SDHCI_ACPI
  88. tristate "SDHCI support for ACPI enumerated SDHCI controllers"
  89. depends on MMC_SDHCI && ACPI
  90. select IOSF_MBI if X86
  91. help
  92. This selects support for ACPI enumerated SDHCI controllers,
  93. identified by ACPI Compatibility ID PNP0D40 or specific
  94. ACPI Hardware IDs.
  95. If you have a controller with this interface, say Y or M here.
  96. If unsure, say N.
  97. config MMC_SDHCI_PLTFM
  98. tristate "SDHCI platform and OF driver helper"
  99. depends on MMC_SDHCI
  100. help
  101. This selects the common helper functions support for Secure Digital
  102. Host Controller Interface based platform and OF drivers.
  103. If you have a controller with this interface, say Y or M here.
  104. If unsure, say N.
  105. config MMC_SDHCI_OF_ARASAN
  106. tristate "SDHCI OF support for the Arasan SDHCI controllers"
  107. depends on MMC_SDHCI_PLTFM
  108. depends on OF
  109. depends on COMMON_CLK
  110. select MMC_CQHCI
  111. help
  112. This selects the Arasan Secure Digital Host Controller Interface
  113. (SDHCI). This hardware is found e.g. in Xilinx' Zynq SoC.
  114. If you have a controller with this interface, say Y or M here.
  115. If unsure, say N.
  116. config MMC_SDHCI_OF_AT91
  117. tristate "SDHCI OF support for the Atmel SDMMC controller"
  118. depends on MMC_SDHCI_PLTFM
  119. depends on OF
  120. help
  121. This selects the Atmel SDMMC driver
  122. config MMC_SDHCI_OF_ESDHC
  123. tristate "SDHCI OF support for the Freescale eSDHC controller"
  124. depends on MMC_SDHCI_PLTFM
  125. depends on PPC || ARCH_MXC || ARCH_LAYERSCAPE
  126. select MMC_SDHCI_IO_ACCESSORS
  127. select FSL_GUTS
  128. help
  129. This selects the Freescale eSDHC controller support.
  130. If you have a controller with this interface, say Y or M here.
  131. If unsure, say N.
  132. config MMC_SDHCI_OF_HLWD
  133. tristate "SDHCI OF support for the Nintendo Wii SDHCI controllers"
  134. depends on MMC_SDHCI_PLTFM
  135. depends on PPC
  136. select MMC_SDHCI_BIG_ENDIAN_32BIT_BYTE_SWAPPER
  137. help
  138. This selects the Secure Digital Host Controller Interface (SDHCI)
  139. found in the "Hollywood" chipset of the Nintendo Wii video game
  140. console.
  141. If you have a controller with this interface, say Y or M here.
  142. If unsure, say N.
  143. config MMC_SDHCI_OF_DWCMSHC
  144. tristate "SDHCI OF support for the Synopsys DWC MSHC"
  145. depends on MMC_SDHCI_PLTFM
  146. depends on OF
  147. depends on COMMON_CLK
  148. help
  149. This selects Synopsys DesignWare Cores Mobile Storage Controller
  150. support.
  151. If you have a controller with this interface, say Y or M here.
  152. If unsure, say N.
  153. config MMC_SDHCI_CADENCE
  154. tristate "SDHCI support for the Cadence SD/SDIO/eMMC controller"
  155. depends on MMC_SDHCI_PLTFM
  156. depends on OF
  157. help
  158. This selects the Cadence SD/SDIO/eMMC driver.
  159. If you have a controller with this interface, say Y or M here.
  160. If unsure, say N.
  161. config MMC_SDHCI_CNS3XXX
  162. tristate "SDHCI support on the Cavium Networks CNS3xxx SoC"
  163. depends on ARCH_CNS3XXX
  164. depends on MMC_SDHCI_PLTFM
  165. help
  166. This selects the SDHCI support for CNS3xxx System-on-Chip devices.
  167. If you have a controller with this interface, say Y or M here.
  168. If unsure, say N.
  169. config MMC_SDHCI_ESDHC_IMX
  170. tristate "SDHCI support for the Freescale eSDHC/uSDHC i.MX controller"
  171. depends on ARCH_MXC
  172. depends on MMC_SDHCI_PLTFM
  173. select MMC_SDHCI_IO_ACCESSORS
  174. help
  175. This selects the Freescale eSDHC/uSDHC controller support
  176. found on i.MX25, i.MX35 i.MX5x and i.MX6x.
  177. If you have a controller with this interface, say Y or M here.
  178. If unsure, say N.
  179. config MMC_SDHCI_DOVE
  180. tristate "SDHCI support on Marvell's Dove SoC"
  181. depends on ARCH_DOVE || MACH_DOVE
  182. depends on MMC_SDHCI_PLTFM
  183. select MMC_SDHCI_IO_ACCESSORS
  184. help
  185. This selects the Secure Digital Host Controller Interface in
  186. Marvell's Dove SoC.
  187. If you have a controller with this interface, say Y or M here.
  188. If unsure, say N.
  189. config MMC_SDHCI_TEGRA
  190. tristate "SDHCI platform support for the Tegra SD/MMC Controller"
  191. depends on ARCH_TEGRA
  192. depends on MMC_SDHCI_PLTFM
  193. select MMC_SDHCI_IO_ACCESSORS
  194. help
  195. This selects the Tegra SD/MMC controller. If you have a Tegra
  196. platform with SD or MMC devices, say Y or M here.
  197. If unsure, say N.
  198. config MMC_SDHCI_S3C
  199. tristate "SDHCI support on Samsung S3C SoC"
  200. depends on MMC_SDHCI && PLAT_SAMSUNG
  201. help
  202. This selects the Secure Digital Host Controller Interface (SDHCI)
  203. often referrered to as the HSMMC block in some of the Samsung S3C
  204. range of SoC.
  205. If you have a controller with this interface, say Y or M here.
  206. If unsure, say N.
  207. config MMC_SDHCI_SIRF
  208. tristate "SDHCI support on CSR SiRFprimaII and SiRFmarco SoCs"
  209. depends on ARCH_SIRF
  210. depends on MMC_SDHCI_PLTFM
  211. select MMC_SDHCI_IO_ACCESSORS
  212. help
  213. This selects the SDHCI support for SiRF System-on-Chip devices.
  214. If you have a controller with this interface, say Y or M here.
  215. If unsure, say N.
  216. config MMC_SDHCI_PXAV3
  217. tristate "Marvell MMP2 SD Host Controller support (PXAV3)"
  218. depends on CLKDEV_LOOKUP
  219. depends on MMC_SDHCI_PLTFM
  220. depends on ARCH_BERLIN || ARCH_MMP || ARCH_MVEBU || COMPILE_TEST
  221. default CPU_MMP2
  222. help
  223. This selects the Marvell(R) PXAV3 SD Host Controller.
  224. If you have a MMP2 platform with SD Host Controller
  225. and a card slot, say Y or M here.
  226. If unsure, say N.
  227. config MMC_SDHCI_PXAV2
  228. tristate "Marvell PXA9XX SD Host Controller support (PXAV2)"
  229. depends on CLKDEV_LOOKUP
  230. depends on MMC_SDHCI_PLTFM
  231. depends on ARCH_MMP || COMPILE_TEST
  232. default CPU_PXA910
  233. help
  234. This selects the Marvell(R) PXAV2 SD Host Controller.
  235. If you have a PXA9XX platform with SD Host Controller
  236. and a card slot, say Y or M here.
  237. If unsure, say N.
  238. config MMC_SDHCI_SPEAR
  239. tristate "SDHCI support on ST SPEAr platform"
  240. depends on MMC_SDHCI && PLAT_SPEAR
  241. depends on OF
  242. help
  243. This selects the Secure Digital Host Controller Interface (SDHCI)
  244. often referrered to as the HSMMC block in some of the ST SPEAR range
  245. of SoC
  246. If you have a controller with this interface, say Y or M here.
  247. If unsure, say N.
  248. config MMC_SDHCI_S3C_DMA
  249. bool "DMA support on S3C SDHCI"
  250. depends on MMC_SDHCI_S3C
  251. help
  252. Enable DMA support on the Samsung S3C SDHCI glue. The DMA
  253. has proved to be problematic if the controller encounters
  254. certain errors, and thus should be treated with care.
  255. YMMV.
  256. config MMC_SDHCI_BCM_KONA
  257. tristate "SDHCI support on Broadcom KONA platform"
  258. depends on ARCH_BCM_MOBILE
  259. depends on MMC_SDHCI_PLTFM
  260. help
  261. This selects the Broadcom Kona Secure Digital Host Controller
  262. Interface(SDHCI) support.
  263. This is used in Broadcom mobile SoCs.
  264. If you have a controller with this interface, say Y or M here.
  265. config MMC_SDHCI_F_SDH30
  266. tristate "SDHCI support for Fujitsu Semiconductor F_SDH30"
  267. depends on MMC_SDHCI_PLTFM
  268. depends on OF || ACPI
  269. help
  270. This selects the Secure Digital Host Controller Interface (SDHCI)
  271. Needed by some Fujitsu SoC for MMC / SD / SDIO support.
  272. If you have a controller with this interface, say Y or M here.
  273. If unsure, say N.
  274. config MMC_SDHCI_IPROC
  275. tristate "SDHCI support for the BCM2835 & iProc SD/MMC Controller"
  276. depends on ARCH_BCM2835 || ARCH_BCM_IPROC || COMPILE_TEST
  277. depends on MMC_SDHCI_PLTFM
  278. default ARCH_BCM_IPROC
  279. select MMC_SDHCI_IO_ACCESSORS
  280. help
  281. This selects the iProc SD/MMC controller.
  282. If you have a BCM2835 or IPROC platform with SD or MMC devices,
  283. say Y or M here.
  284. If unsure, say N.
  285. config MMC_MESON_GX
  286. tristate "Amlogic S905/GX*/AXG SD/MMC Host Controller support"
  287. depends on ARCH_MESON && MMC
  288. help
  289. This selects support for the Amlogic SD/MMC Host Controller
  290. found on the S905/GX*/AXG family of SoCs. This controller is
  291. MMC 5.1 compliant and supports SD, eMMC and SDIO interfaces.
  292. If you have a controller with this interface, say Y here.
  293. config MMC_MESON_MX_SDIO
  294. tristate "Amlogic Meson6/Meson8/Meson8b SD/MMC Host Controller support"
  295. depends on ARCH_MESON || COMPILE_TEST
  296. depends on COMMON_CLK
  297. depends on OF
  298. help
  299. This selects support for the SD/MMC Host Controller on
  300. Amlogic Meson6, Meson8 and Meson8b SoCs.
  301. If you have a controller with this interface, say Y or M here.
  302. If unsure, say N.
  303. config MMC_MOXART
  304. tristate "MOXART SD/MMC Host Controller support"
  305. depends on ARCH_MOXART && MMC
  306. help
  307. This selects support for the MOXART SD/MMC Host Controller.
  308. MOXA provides one multi-functional card reader which can
  309. be found on some embedded hardware such as UC-7112-LX.
  310. If you have a controller with this interface, say Y here.
  311. config MMC_SDHCI_ST
  312. tristate "SDHCI support on STMicroelectronics SoC"
  313. depends on ARCH_STI || FSP2
  314. depends on MMC_SDHCI_PLTFM
  315. select MMC_SDHCI_IO_ACCESSORS
  316. help
  317. This selects the Secure Digital Host Controller Interface in
  318. STMicroelectronics SoCs.
  319. If you have a controller with this interface, say Y or M here.
  320. If unsure, say N.
  321. config MMC_OMAP
  322. tristate "TI OMAP Multimedia Card Interface support"
  323. depends on ARCH_OMAP
  324. depends on TPS65010 || !MACH_OMAP_H2
  325. help
  326. This selects the TI OMAP Multimedia card Interface.
  327. If you have an OMAP board with a Multimedia Card slot,
  328. say Y or M here.
  329. If unsure, say N.
  330. config MMC_OMAP_HS
  331. tristate "TI OMAP High Speed Multimedia Card Interface support"
  332. depends on ARCH_OMAP2PLUS || ARCH_KEYSTONE || COMPILE_TEST
  333. help
  334. This selects the TI OMAP High Speed Multimedia card Interface.
  335. If you have an omap2plus board with a Multimedia Card slot,
  336. say Y or M here.
  337. If unsure, say N.
  338. config MMC_WBSD
  339. tristate "Winbond W83L51xD SD/MMC Card Interface support"
  340. depends on ISA_DMA_API
  341. help
  342. This selects the Winbond(R) W83L51xD Secure digital and
  343. Multimedia card Interface.
  344. If you have a machine with a integrated W83L518D or W83L519D
  345. SD/MMC card reader, say Y or M here.
  346. If unsure, say N.
  347. config MMC_AU1X
  348. tristate "Alchemy AU1XX0 MMC Card Interface support"
  349. depends on MIPS_ALCHEMY
  350. help
  351. This selects the AMD Alchemy(R) Multimedia card interface.
  352. If you have a Alchemy platform with a MMC slot, say Y or M here.
  353. If unsure, say N.
  354. config MMC_ATMELMCI
  355. tristate "Atmel SD/MMC Driver (Multimedia Card Interface)"
  356. depends on ARCH_AT91
  357. help
  358. This selects the Atmel Multimedia Card Interface driver.
  359. If you have an AT91 platform with a Multimedia Card slot,
  360. say Y or M here.
  361. If unsure, say N.
  362. config MMC_SDHCI_MSM
  363. tristate "Qualcomm SDHCI Controller Support"
  364. depends on ARCH_QCOM || (ARM && COMPILE_TEST)
  365. depends on MMC_SDHCI_PLTFM
  366. select MMC_SDHCI_IO_ACCESSORS
  367. help
  368. This selects the Secure Digital Host Controller Interface (SDHCI)
  369. support present in Qualcomm SOCs. The controller supports
  370. SD/MMC/SDIO devices.
  371. If you have a controller with this interface, say Y or M here.
  372. If unsure, say N.
  373. config MMC_MXC
  374. tristate "Freescale i.MX21/27/31 or MPC512x Multimedia Card support"
  375. depends on ARCH_MXC || PPC_MPC512x
  376. help
  377. This selects the Freescale i.MX21, i.MX27, i.MX31 or MPC512x
  378. Multimedia Card Interface. If you have an i.MX or MPC512x platform
  379. with a Multimedia Card slot, say Y or M here.
  380. If unsure, say N.
  381. config MMC_MXS
  382. tristate "Freescale MXS Multimedia Card Interface support"
  383. depends on ARCH_MXS && MXS_DMA
  384. help
  385. This selects the Freescale SSP MMC controller found on MXS based
  386. platforms like mx23/28.
  387. If unsure, say N.
  388. config MMC_TIFM_SD
  389. tristate "TI Flash Media MMC/SD Interface support"
  390. depends on PCI
  391. select TIFM_CORE
  392. help
  393. Say Y here if you want to be able to access MMC/SD cards with
  394. the Texas Instruments(R) Flash Media card reader, found in many
  395. laptops.
  396. This option 'selects' (turns on, enables) 'TIFM_CORE', but you
  397. probably also need appropriate card reader host adapter, such as
  398. 'Misc devices: TI Flash Media PCI74xx/PCI76xx host adapter support
  399. (TIFM_7XX1)'.
  400. To compile this driver as a module, choose M here: the
  401. module will be called tifm_sd.
  402. config MMC_MVSDIO
  403. tristate "Marvell MMC/SD/SDIO host driver"
  404. depends on PLAT_ORION
  405. depends on OF
  406. ---help---
  407. This selects the Marvell SDIO host driver.
  408. SDIO may currently be found on the Kirkwood 88F6281 and 88F6192
  409. SoC controllers.
  410. To compile this driver as a module, choose M here: the
  411. module will be called mvsdio.
  412. config MMC_DAVINCI
  413. tristate "TI DAVINCI Multimedia Card Interface support"
  414. depends on ARCH_DAVINCI
  415. help
  416. This selects the TI DAVINCI Multimedia card Interface.
  417. If you have an DAVINCI board with a Multimedia Card slot,
  418. say Y or M here. If unsure, say N.
  419. config MMC_GOLDFISH
  420. tristate "goldfish qemu Multimedia Card Interface support"
  421. depends on GOLDFISH || COMPILE_TEST
  422. help
  423. This selects the Goldfish Multimedia card Interface emulation
  424. found on the Goldfish Android virtual device emulation.
  425. config MMC_SPI
  426. tristate "MMC/SD/SDIO over SPI"
  427. depends on SPI_MASTER && HAS_DMA
  428. select CRC7
  429. select CRC_ITU_T
  430. help
  431. Some systems access MMC/SD/SDIO cards using a SPI controller
  432. instead of using a "native" MMC/SD/SDIO controller. This has a
  433. disadvantage of being relatively high overhead, but a compensating
  434. advantage of working on many systems without dedicated MMC/SD/SDIO
  435. controllers.
  436. If unsure, or if your system has no SPI master driver, say N.
  437. config MMC_S3C
  438. tristate "Samsung S3C SD/MMC Card Interface support"
  439. depends on ARCH_S3C24XX
  440. depends on S3C24XX_DMAC
  441. help
  442. This selects a driver for the MCI interface found in
  443. Samsung's S3C2410, S3C2412, S3C2440, S3C2442 CPUs.
  444. If you have a board based on one of those and a MMC/SD
  445. slot, say Y or M here.
  446. If unsure, say N.
  447. config MMC_S3C_HW_SDIO_IRQ
  448. bool "Hardware support for SDIO IRQ"
  449. depends on MMC_S3C
  450. help
  451. Enable the hardware support for SDIO interrupts instead of using
  452. the generic polling code.
  453. choice
  454. prompt "Samsung S3C SD/MMC transfer code"
  455. depends on MMC_S3C
  456. config MMC_S3C_PIO
  457. bool "Use PIO transfers only"
  458. help
  459. Use PIO to transfer data between memory and the hardware.
  460. PIO is slower than DMA as it requires CPU instructions to
  461. move the data. This has been the traditional default for
  462. the S3C MCI driver.
  463. config MMC_S3C_DMA
  464. bool "Use DMA transfers only"
  465. help
  466. Use DMA to transfer data between memory and the hardare.
  467. Currently, the DMA support in this driver seems to not be
  468. working properly and needs to be debugged before this
  469. option is useful.
  470. endchoice
  471. config MMC_SDRICOH_CS
  472. tristate "MMC/SD driver for Ricoh Bay1Controllers"
  473. depends on PCI && PCMCIA
  474. help
  475. Say Y here if your Notebook reports a Ricoh Bay1Controller PCMCIA
  476. card whenever you insert a MMC or SD card into the card slot.
  477. To compile this driver as a module, choose M here: the
  478. module will be called sdricoh_cs.
  479. config MMC_TMIO_CORE
  480. tristate
  481. config MMC_TMIO
  482. tristate "Toshiba Mobile IO Controller (TMIO) MMC/SD function support"
  483. depends on MFD_TMIO || MFD_ASIC3
  484. select MMC_TMIO_CORE
  485. help
  486. This provides support for the SD/MMC cell found in TC6393XB,
  487. T7L66XB and also HTC ASIC3
  488. config MMC_SDHI
  489. tristate "Renesas SDHI SD/SDIO controller support"
  490. depends on SUPERH || ARCH_RENESAS || COMPILE_TEST
  491. select MMC_TMIO_CORE
  492. help
  493. This provides support for the SDHI SD/SDIO controller found in
  494. Renesas SuperH, ARM and ARM64 based SoCs
  495. config MMC_SDHI_SYS_DMAC
  496. tristate "DMA for SDHI SD/SDIO controllers using SYS-DMAC"
  497. depends on MMC_SDHI
  498. default MMC_SDHI if (SUPERH || ARM)
  499. help
  500. This provides DMA support for SDHI SD/SDIO controllers
  501. using SYS-DMAC via DMA Engine. This supports the controllers
  502. found in SuperH and Renesas ARM based SoCs.
  503. config MMC_SDHI_INTERNAL_DMAC
  504. tristate "DMA for SDHI SD/SDIO controllers using on-chip bus mastering"
  505. depends on ARM64 || COMPILE_TEST
  506. depends on MMC_SDHI
  507. default MMC_SDHI if ARM64
  508. help
  509. This provides DMA support for SDHI SD/SDIO controllers
  510. using on-chip bus mastering. This supports the controllers
  511. found in arm64 based SoCs.
  512. config MMC_CB710
  513. tristate "ENE CB710 MMC/SD Interface support"
  514. depends on PCI
  515. select CB710_CORE
  516. help
  517. This option enables support for MMC/SD part of ENE CB710/720 Flash
  518. memory card reader found in some laptops (ie. some versions of
  519. HP Compaq nx9500).
  520. This driver can also be built as a module. If so, the module
  521. will be called cb710-mmc.
  522. config MMC_VIA_SDMMC
  523. tristate "VIA SD/MMC Card Reader Driver"
  524. depends on PCI
  525. help
  526. This selects the VIA SD/MMC Card Reader driver, say Y or M here.
  527. VIA provides one multi-functional card reader which integrated into
  528. some motherboards manufactured by VIA. This card reader supports
  529. SD/MMC/SDHC.
  530. If you have a controller with this interface, say Y or M here.
  531. If unsure, say N.
  532. config MMC_CAVIUM_OCTEON
  533. tristate "Cavium OCTEON SD/MMC Card Interface support"
  534. depends on CAVIUM_OCTEON_SOC
  535. help
  536. This selects Cavium OCTEON SD/MMC card Interface.
  537. If you have an OCTEON board with a Multimedia Card slot,
  538. say Y or M here.
  539. If unsure, say N.
  540. config MMC_CAVIUM_THUNDERX
  541. tristate "Cavium ThunderX SD/MMC Card Interface support"
  542. depends on PCI && 64BIT && (ARM64 || COMPILE_TEST)
  543. depends on GPIO_THUNDERX
  544. depends on OF_ADDRESS
  545. help
  546. This selects Cavium ThunderX SD/MMC Card Interface.
  547. If you have an Cavium ARM64 board with a Multimedia Card slot
  548. or builtin eMMC chip say Y or M here. If built as a module
  549. the module will be called thunderx_mmc.ko.
  550. config MMC_DW
  551. tristate "Synopsys DesignWare Memory Card Interface"
  552. depends on ARC || ARM || ARM64 || MIPS || COMPILE_TEST
  553. help
  554. This selects support for the Synopsys DesignWare Mobile Storage IP
  555. block, this provides host support for SD and MMC interfaces, in both
  556. PIO, internal DMA mode and external DMA mode.
  557. config MMC_DW_PLTFM
  558. tristate "Synopsys Designware MCI Support as platform device"
  559. depends on MMC_DW
  560. default y
  561. help
  562. This selects the common helper functions support for Host Controller
  563. Interface based platform driver. Please select this option if the IP
  564. is present as a platform device. This is the common interface for the
  565. Synopsys Designware IP.
  566. If you have a controller with this interface, say Y or M here.
  567. If unsure, say Y.
  568. config MMC_DW_BLUEFIELD
  569. tristate "BlueField specific extensions for Synopsys DW Memory Card Interface"
  570. depends on MMC_DW
  571. select MMC_DW_PLTFM
  572. help
  573. This selects support for Mellanox BlueField SoC specific extensions to
  574. the Synopsys DesignWare Memory Card Interface driver. Select this
  575. option for platforms based on Mellanox BlueField SoC's.
  576. config MMC_DW_EXYNOS
  577. tristate "Exynos specific extensions for Synopsys DW Memory Card Interface"
  578. depends on MMC_DW
  579. select MMC_DW_PLTFM
  580. help
  581. This selects support for Samsung Exynos SoC specific extensions to the
  582. Synopsys DesignWare Memory Card Interface driver. Select this option
  583. for platforms based on Exynos4 and Exynos5 SoC's.
  584. config MMC_DW_HI3798CV200
  585. tristate "Hi3798CV200 specific extensions for Synopsys DW Memory Card Interface"
  586. depends on MMC_DW
  587. select MMC_DW_PLTFM
  588. help
  589. This selects support for HiSilicon Hi3798CV200 SoC specific extensions to the
  590. Synopsys DesignWare Memory Card Interface driver. Select this option
  591. for platforms based on HiSilicon Hi3798CV200 SoC.
  592. config MMC_DW_K3
  593. tristate "K3 specific extensions for Synopsys DW Memory Card Interface"
  594. depends on MMC_DW
  595. select MMC_DW_PLTFM
  596. help
  597. This selects support for Hisilicon K3 SoC specific extensions to the
  598. Synopsys DesignWare Memory Card Interface driver. Select this option
  599. for platforms based on Hisilicon K3 SoC's.
  600. config MMC_DW_PCI
  601. tristate "Synopsys Designware MCI support on PCI bus"
  602. depends on MMC_DW && PCI
  603. help
  604. This selects the PCI bus for the Synopsys Designware Mobile Storage IP.
  605. Select this option if the IP is present on PCI platform.
  606. If you have a controller with this interface, say Y or M here.
  607. If unsure, say N.
  608. config MMC_DW_ROCKCHIP
  609. tristate "Rockchip specific extensions for Synopsys DW Memory Card Interface"
  610. depends on MMC_DW && ARCH_ROCKCHIP
  611. select MMC_DW_PLTFM
  612. help
  613. This selects support for Rockchip SoC specific extensions to the
  614. Synopsys DesignWare Memory Card Interface driver. Select this option
  615. for platforms based on RK3066, RK3188 and RK3288 SoC's.
  616. config MMC_DW_ZX
  617. tristate "ZTE specific extensions for Synopsys DW Memory Card Interface"
  618. depends on MMC_DW && ARCH_ZX
  619. select MMC_DW_PLTFM
  620. help
  621. This selects support for ZTE SoC specific extensions to the
  622. Synopsys DesignWare Memory Card Interface driver. Select this option
  623. for platforms based on ZX296718 SoC's.
  624. config MMC_SH_MMCIF
  625. tristate "SuperH Internal MMCIF support"
  626. depends on SUPERH || ARCH_RENESAS || COMPILE_TEST
  627. help
  628. This selects the MMC Host Interface controller (MMCIF) found in various
  629. Renesas SoCs for SH and ARM architectures.
  630. config MMC_JZ4740
  631. tristate "Ingenic JZ47xx SD/Multimedia Card Interface support"
  632. depends on MACH_JZ4740 || MACH_JZ4780
  633. help
  634. This selects support for the SD/MMC controller on Ingenic
  635. JZ4740, JZ4750, JZ4770 and JZ4780 SoCs.
  636. If you have a board based on such a SoC and with a SD/MMC slot,
  637. say Y or M here.
  638. config MMC_VUB300
  639. tristate "VUB300 USB to SDIO/SD/MMC Host Controller support"
  640. depends on USB
  641. help
  642. This selects support for Elan Digital Systems' VUB300 chip.
  643. The VUB300 is a USB-SDIO Host Controller Interface chip
  644. that enables the host computer to use SDIO/SD/MMC cards
  645. via a USB 2.0 or USB 1.1 host.
  646. The VUB300 chip will be found in both physically separate
  647. USB to SDIO/SD/MMC adapters and embedded on some motherboards.
  648. The VUB300 chip supports SD and MMC memory cards in addition
  649. to single and multifunction SDIO cards.
  650. Some SDIO cards will need a firmware file to be loaded and
  651. sent to VUB300 chip in order to achieve better data throughput.
  652. Download these "Offload Pseudocode" from Elan Digital Systems'
  653. web-site http://www.elandigitalsystems.com/support/downloads.php
  654. and put them in /lib/firmware. Note that without these additional
  655. firmware files the VUB300 chip will still function, but not at
  656. the best obtainable data rate.
  657. To compile this mmc host controller driver as a module,
  658. choose M here: the module will be called vub300.
  659. If you have a computer with an embedded VUB300 chip
  660. or if you intend connecting a USB adapter based on a
  661. VUB300 chip say Y or M here.
  662. config MMC_USHC
  663. tristate "USB SD Host Controller (USHC) support"
  664. depends on USB
  665. help
  666. This selects support for USB SD Host Controllers based on
  667. the Cypress Astoria chip with firmware compliant with CSR's
  668. USB SD Host Controller specification (CS-118793-SP).
  669. CSR boards with this device include: USB<>SDIO (M1985v2),
  670. and Ultrasira.
  671. Note: These controllers only support SDIO cards and do not
  672. support MMC or SD memory cards.
  673. config MMC_WMT
  674. tristate "Wondermedia SD/MMC Host Controller support"
  675. depends on ARCH_VT8500
  676. default y
  677. help
  678. This selects support for the SD/MMC Host Controller on
  679. Wondermedia WM8505/WM8650 based SoCs.
  680. To compile this driver as a module, choose M here: the
  681. module will be called wmt-sdmmc.
  682. config MMC_USDHI6ROL0
  683. tristate "Renesas USDHI6ROL0 SD/SDIO Host Controller support"
  684. depends on HAS_DMA
  685. help
  686. This selects support for the Renesas USDHI6ROL0 SD/SDIO
  687. Host Controller
  688. config MMC_REALTEK_PCI
  689. tristate "Realtek PCI-E SD/MMC Card Interface Driver"
  690. depends on MISC_RTSX_PCI
  691. help
  692. Say Y here to include driver code to support SD/MMC card interface
  693. of Realtek PCI-E card reader
  694. config MMC_REALTEK_USB
  695. tristate "Realtek USB SD/MMC Card Interface Driver"
  696. depends on MISC_RTSX_USB
  697. help
  698. Say Y here to include driver code to support SD/MMC card interface
  699. of Realtek RTS5129/39 series card reader
  700. config MMC_SUNXI
  701. tristate "Allwinner sunxi SD/MMC Host Controller support"
  702. depends on ARCH_SUNXI
  703. help
  704. This selects support for the SD/MMC Host Controller on
  705. Allwinner sunxi SoCs.
  706. config MMC_CQHCI
  707. tristate "Command Queue Host Controller Interface support"
  708. depends on HAS_DMA
  709. help
  710. This selects the Command Queue Host Controller Interface (CQHCI)
  711. support present in host controllers of Qualcomm Technologies, Inc
  712. amongst others.
  713. This controller supports eMMC devices with command queue support.
  714. If you have a controller with this interface, say Y or M here.
  715. If unsure, say N.
  716. config MMC_TOSHIBA_PCI
  717. tristate "Toshiba Type A SD/MMC Card Interface Driver"
  718. depends on PCI
  719. config MMC_BCM2835
  720. tristate "Broadcom BCM2835 SDHOST MMC Controller support"
  721. depends on ARCH_BCM2835 || COMPILE_TEST
  722. help
  723. This selects the BCM2835 SDHOST MMC controller. If you have
  724. a BCM2835 platform with SD or MMC devices, say Y or M here.
  725. Note that the BCM2835 has two SD controllers: The Arasan
  726. sdhci controller (supported by MMC_SDHCI_IPROC) and a custom
  727. sdhost controller (supported by this driver).
  728. If unsure, say N.
  729. config MMC_MTK
  730. tristate "MediaTek SD/MMC Card Interface support"
  731. depends on HAS_DMA
  732. help
  733. This selects the MediaTek(R) Secure digital and Multimedia card Interface.
  734. If you have a machine with a integrated SD/MMC card reader, say Y or M here.
  735. This is needed if support for any SD/SDIO/MMC devices is required.
  736. If unsure, say N.
  737. config MMC_SDHCI_MICROCHIP_PIC32
  738. tristate "Microchip PIC32MZDA SDHCI support"
  739. depends on MMC_SDHCI && PIC32MZDA && MMC_SDHCI_PLTFM
  740. help
  741. This selects the Secure Digital Host Controller Interface (SDHCI)
  742. for PIC32MZDA platform.
  743. If you have a controller with this interface, say Y or M here.
  744. If unsure, say N.
  745. config MMC_SDHCI_BRCMSTB
  746. tristate "Broadcom SDIO/SD/MMC support"
  747. depends on ARCH_BRCMSTB || BMIPS_GENERIC
  748. depends on MMC_SDHCI_PLTFM
  749. default y
  750. help
  751. This selects support for the SDIO/SD/MMC Host Controller on
  752. Broadcom STB SoCs.
  753. If unsure, say Y.
  754. config MMC_SDHCI_XENON
  755. tristate "Marvell Xenon eMMC/SD/SDIO SDHCI driver"
  756. depends on MMC_SDHCI_PLTFM
  757. help
  758. This selects Marvell Xenon eMMC/SD/SDIO SDHCI.
  759. If you have a controller with this interface, say Y or M here.
  760. If unsure, say N.
  761. config MMC_SDHCI_OMAP
  762. tristate "TI SDHCI Controller Support"
  763. depends on MMC_SDHCI_PLTFM && OF
  764. select THERMAL
  765. imply TI_SOC_THERMAL
  766. help
  767. This selects the Secure Digital Host Controller Interface (SDHCI)
  768. support present in TI's DRA7 SOCs. The controller supports
  769. SD/MMC/SDIO devices.
  770. If you have a controller with this interface, say Y or M here.
  771. If unsure, say N.