11c6a0718SPierre Ossman# 21c6a0718SPierre Ossman# MMC/SD host controller drivers 31c6a0718SPierre Ossman# 41c6a0718SPierre Ossman 557105737SPierre Ossmancomment "MMC/SD/SDIO Host Controller Drivers" 61c6a0718SPierre Ossman 71c6a0718SPierre Ossmanconfig MMC_ARMMMCI 81c6a0718SPierre Ossman tristate "ARM AMBA Multimedia Card Interface support" 9790864dcSJan Engelhardt depends on ARM_AMBA 101c6a0718SPierre Ossman help 111c6a0718SPierre Ossman This selects the ARM(R) AMBA(R) PrimeCell Multimedia Card 121c6a0718SPierre Ossman Interface (PL180 and PL181) support. If you have an ARM(R) 131c6a0718SPierre Ossman platform with a Multimedia Card slot, say Y or M here. 141c6a0718SPierre Ossman 151c6a0718SPierre Ossman If unsure, say N. 161c6a0718SPierre Ossman 179cb15142SSrinivas Kandagatlaconfig MMC_QCOM_DML 189cb15142SSrinivas Kandagatla tristate "Qualcomm Data Mover for SD Card Controller" 199cb15142SSrinivas Kandagatla depends on MMC_ARMMMCI && QCOM_BAM_DMA 209cb15142SSrinivas Kandagatla default y 219cb15142SSrinivas Kandagatla help 229cb15142SSrinivas Kandagatla This selects the Qualcomm Data Mover lite/local on SD Card controller. 239cb15142SSrinivas Kandagatla This option will enable the dma to work correctly, if you are using 249cb15142SSrinivas Kandagatla Qcom SOCs and MMC, you would probably need this option to get DMA working. 259cb15142SSrinivas Kandagatla 269cb15142SSrinivas Kandagatla if unsure, say N. 279cb15142SSrinivas Kandagatla 281c6a0718SPierre Ossmanconfig MMC_PXA 291c6a0718SPierre Ossman tristate "Intel PXA25x/26x/27x Multimedia Card Interface support" 30790864dcSJan Engelhardt depends on ARCH_PXA 311c6a0718SPierre Ossman help 321c6a0718SPierre Ossman This selects the Intel(R) PXA(R) Multimedia card Interface. 331c6a0718SPierre Ossman If you have a PXA(R) platform with a Multimedia Card slot, 341c6a0718SPierre Ossman say Y or M here. 351c6a0718SPierre Ossman 361c6a0718SPierre Ossman If unsure, say N. 371c6a0718SPierre Ossman 381c6a0718SPierre Ossmanconfig MMC_SDHCI 3934671dc2SPierre Ossman tristate "Secure Digital Host Controller Interface support" 40b8c86fc5SPierre Ossman depends on HAS_DMA 411c6a0718SPierre Ossman help 42b8c86fc5SPierre Ossman This selects the generic Secure Digital Host Controller Interface. 431c6a0718SPierre Ossman It is used by manufacturers such as Texas Instruments(R), Ricoh(R) 441c6a0718SPierre Ossman and Toshiba(R). Most controllers found in laptops are of this type. 45b8c86fc5SPierre Ossman 46b8c86fc5SPierre Ossman If you have a controller with this interface, say Y or M here. You 47b8c86fc5SPierre Ossman also need to enable an appropriate bus interface. 48b8c86fc5SPierre Ossman 49b8c86fc5SPierre Ossman If unsure, say N. 50b8c86fc5SPierre Ossman 514e4141a5SAnton Vorontsovconfig MMC_SDHCI_IO_ACCESSORS 524e4141a5SAnton Vorontsov bool 534e4141a5SAnton Vorontsov depends on MMC_SDHCI 544e4141a5SAnton Vorontsov help 554e4141a5SAnton Vorontsov This is silent Kconfig symbol that is selected by the drivers that 564e4141a5SAnton Vorontsov need to overwrite SDHCI IO memory accessors. 574e4141a5SAnton Vorontsov 587657c3a7SAlbert Herranzconfig MMC_SDHCI_BIG_ENDIAN_32BIT_BYTE_SWAPPER 597657c3a7SAlbert Herranz bool 6082813b71SJean Delvare depends on MMC_SDHCI 617657c3a7SAlbert Herranz select MMC_SDHCI_IO_ACCESSORS 627657c3a7SAlbert Herranz help 637657c3a7SAlbert Herranz This option is selected by drivers running on big endian hosts 647657c3a7SAlbert Herranz and performing I/O to a SDHCI controller through a bus that 657657c3a7SAlbert Herranz implements a hardware byte swapper using a 32-bit datum. 667657c3a7SAlbert Herranz This endian mapping mode is called "data invariance" and 677657c3a7SAlbert Herranz has the effect of scrambling the addresses and formats of data 687657c3a7SAlbert Herranz accessed in sizes other than the datum size. 697657c3a7SAlbert Herranz 702ca63524Syangbo lu This is the case for the Nintendo Wii SDHCI. 717657c3a7SAlbert Herranz 72b8c86fc5SPierre Ossmanconfig MMC_SDHCI_PCI 73b8c86fc5SPierre Ossman tristate "SDHCI support on PCI bus" 74b8c86fc5SPierre Ossman depends on MMC_SDHCI && PCI 75b8c86fc5SPierre Ossman help 76b8c86fc5SPierre Ossman This selects the PCI Secure Digital Host Controller Interface. 77b8c86fc5SPierre Ossman Most controllers found today are PCI devices. 78b8c86fc5SPierre Ossman 791c6a0718SPierre Ossman If you have a controller with this interface, say Y or M here. 801c6a0718SPierre Ossman 811c6a0718SPierre Ossman If unsure, say N. 821c6a0718SPierre Ossman 835ae70296SPhilip Langdaleconfig MMC_RICOH_MMC 8486147c84SKees Cook bool "Ricoh MMC Controller Disabler" 85b8c86fc5SPierre Ossman depends on MMC_SDHCI_PCI 86ba2f7325SJean Delvare default y 875ae70296SPhilip Langdale help 8803cd8f7eSMaxim Levitsky This adds a pci quirk to disable Ricoh MMC Controller. This 895ae70296SPhilip Langdale proprietary controller is unnecessary because the SDHCI driver 905ae70296SPhilip Langdale supports MMC cards on the SD controller, but if it is not 915ae70296SPhilip Langdale disabled, it will steal the MMC cards away - rendering them 9203cd8f7eSMaxim Levitsky useless. It is safe to select this even if you don't 935ae70296SPhilip Langdale have a Ricoh based card reader. 945ae70296SPhilip Langdale 955ae70296SPhilip Langdale If unsure, say Y. 965ae70296SPhilip Langdale 97c4e05037SAdrian Hunterconfig MMC_SDHCI_ACPI 98c4e05037SAdrian Hunter tristate "SDHCI support for ACPI enumerated SDHCI controllers" 99c4e05037SAdrian Hunter depends on MMC_SDHCI && ACPI 1006e1c7d61SAdrian Hunter select IOSF_MBI if X86 101c4e05037SAdrian Hunter help 102c4e05037SAdrian Hunter This selects support for ACPI enumerated SDHCI controllers, 103c4e05037SAdrian Hunter identified by ACPI Compatibility ID PNP0D40 or specific 104c4e05037SAdrian Hunter ACPI Hardware IDs. 105c4e05037SAdrian Hunter 106c4e05037SAdrian Hunter If you have a controller with this interface, say Y or M here. 107c4e05037SAdrian Hunter 108c4e05037SAdrian Hunter If unsure, say N. 109c4e05037SAdrian Hunter 110f0de8369SShawn Guoconfig MMC_SDHCI_PLTFM 111f0de8369SShawn Guo tristate "SDHCI platform and OF driver helper" 11238576af1SShawn Guo depends on MMC_SDHCI 113f0de8369SShawn Guo help 114f0de8369SShawn Guo This selects the common helper functions support for Secure Digital 115f0de8369SShawn Guo Host Controller Interface based platform and OF drivers. 116f0de8369SShawn Guo 117f0de8369SShawn Guo If you have a controller with this interface, say Y or M here. 118f0de8369SShawn Guo 119f0de8369SShawn Guo If unsure, say N. 120f0de8369SShawn Guo 121e3ec3a3dSSoren Brinkmannconfig MMC_SDHCI_OF_ARASAN 122e3ec3a3dSSoren Brinkmann tristate "SDHCI OF support for the Arasan SDHCI controllers" 123e3ec3a3dSSoren Brinkmann depends on MMC_SDHCI_PLTFM 124e3ec3a3dSSoren Brinkmann depends on OF 125c390f211SDouglas Anderson depends on COMMON_CLK 126e3ec3a3dSSoren Brinkmann help 127e3ec3a3dSSoren Brinkmann This selects the Arasan Secure Digital Host Controller Interface 128e3ec3a3dSSoren Brinkmann (SDHCI). This hardware is found e.g. in Xilinx' Zynq SoC. 129e3ec3a3dSSoren Brinkmann 130e3ec3a3dSSoren Brinkmann If you have a controller with this interface, say Y or M here. 131e3ec3a3dSSoren Brinkmann 132e3ec3a3dSSoren Brinkmann If unsure, say N. 133e3ec3a3dSSoren Brinkmann 134bb5f8ea4Sludovic.desroches@atmel.comconfig MMC_SDHCI_OF_AT91 135bb5f8ea4Sludovic.desroches@atmel.com tristate "SDHCI OF support for the Atmel SDMMC controller" 136bb5f8ea4Sludovic.desroches@atmel.com depends on MMC_SDHCI_PLTFM 137bb5f8ea4Sludovic.desroches@atmel.com depends on OF 138bb5f8ea4Sludovic.desroches@atmel.com help 139bb5f8ea4Sludovic.desroches@atmel.com This selects the Atmel SDMMC driver 140bb5f8ea4Sludovic.desroches@atmel.com 141f0de8369SShawn Guoconfig MMC_SDHCI_OF_ESDHC 142f0de8369SShawn Guo tristate "SDHCI OF support for the Freescale eSDHC controller" 143f0de8369SShawn Guo depends on MMC_SDHCI_PLTFM 1442ca63524Syangbo lu depends on PPC || ARCH_MXC || ARCH_LAYERSCAPE 1452ca63524Syangbo lu select MMC_SDHCI_IO_ACCESSORS 146151ede40Syangbo lu select FSL_GUTS 1477657c3a7SAlbert Herranz help 1487657c3a7SAlbert Herranz This selects the Freescale eSDHC controller support. 1493085e9c1SAnton Vorontsov 150f0de8369SShawn Guo If you have a controller with this interface, say Y or M here. 151f0de8369SShawn Guo 1523085e9c1SAnton Vorontsov If unsure, say N. 1533085e9c1SAnton Vorontsov 1541144ab5dSAlbert Herranzconfig MMC_SDHCI_OF_HLWD 155f0de8369SShawn Guo tristate "SDHCI OF support for the Nintendo Wii SDHCI controllers" 156f0de8369SShawn Guo depends on MMC_SDHCI_PLTFM 1575f2e097cSKevin Hao depends on PPC 1581144ab5dSAlbert Herranz select MMC_SDHCI_BIG_ENDIAN_32BIT_BYTE_SWAPPER 1591144ab5dSAlbert Herranz help 1601144ab5dSAlbert Herranz This selects the Secure Digital Host Controller Interface (SDHCI) 1611144ab5dSAlbert Herranz found in the "Hollywood" chipset of the Nintendo Wii video game 1621144ab5dSAlbert Herranz console. 1631144ab5dSAlbert Herranz 164f0de8369SShawn Guo If you have a controller with this interface, say Y or M here. 165f0de8369SShawn Guo 1661144ab5dSAlbert Herranz If unsure, say N. 1671144ab5dSAlbert Herranz 168ff6af28fSMasahiro Yamadaconfig MMC_SDHCI_CADENCE 169ff6af28fSMasahiro Yamada tristate "SDHCI support for the Cadence SD/SDIO/eMMC controller" 170ff6af28fSMasahiro Yamada depends on MMC_SDHCI_PLTFM 171ff6af28fSMasahiro Yamada depends on OF 172ff6af28fSMasahiro Yamada help 173ff6af28fSMasahiro Yamada This selects the Cadence SD/SDIO/eMMC driver. 174ff6af28fSMasahiro Yamada 175ff6af28fSMasahiro Yamada If you have a controller with this interface, say Y or M here. 176ff6af28fSMasahiro Yamada 177ff6af28fSMasahiro Yamada If unsure, say N. 178ff6af28fSMasahiro Yamada 17920b1597bSAnton Vorontsovconfig MMC_SDHCI_CNS3XXX 18085d6509dSShawn Guo tristate "SDHCI support on the Cavium Networks CNS3xxx SoC" 18120b1597bSAnton Vorontsov depends on ARCH_CNS3XXX 182f0de8369SShawn Guo depends on MMC_SDHCI_PLTFM 18320b1597bSAnton Vorontsov help 18420b1597bSAnton Vorontsov This selects the SDHCI support for CNS3xxx System-on-Chip devices. 18520b1597bSAnton Vorontsov 186f0de8369SShawn Guo If you have a controller with this interface, say Y or M here. 187f0de8369SShawn Guo 18820b1597bSAnton Vorontsov If unsure, say N. 18920b1597bSAnton Vorontsov 19095f25efeSWolfram Sangconfig MMC_SDHCI_ESDHC_IMX 19195a2482aSShawn Guo tristate "SDHCI support for the Freescale eSDHC/uSDHC i.MX controller" 1922b795518SSascha Hauer depends on ARCH_MXC 193f0de8369SShawn Guo depends on MMC_SDHCI_PLTFM 19495f25efeSWolfram Sang select MMC_SDHCI_IO_ACCESSORS 19595f25efeSWolfram Sang help 19695a2482aSShawn Guo This selects the Freescale eSDHC/uSDHC controller support 19795a2482aSShawn Guo found on i.MX25, i.MX35 i.MX5x and i.MX6x. 19895f25efeSWolfram Sang 199f0de8369SShawn Guo If you have a controller with this interface, say Y or M here. 200f0de8369SShawn Guo 20195f25efeSWolfram Sang If unsure, say N. 20295f25efeSWolfram Sang 203985b1aa0SMike Rapoportconfig MMC_SDHCI_DOVE 20485d6509dSShawn Guo tristate "SDHCI support on Marvell's Dove SoC" 205ec4422acSSebastian Hesselbarth depends on ARCH_DOVE || MACH_DOVE 206f0de8369SShawn Guo depends on MMC_SDHCI_PLTFM 207985b1aa0SMike Rapoport select MMC_SDHCI_IO_ACCESSORS 208985b1aa0SMike Rapoport help 209985b1aa0SMike Rapoport This selects the Secure Digital Host Controller Interface in 210985b1aa0SMike Rapoport Marvell's Dove SoC. 211985b1aa0SMike Rapoport 212f0de8369SShawn Guo If you have a controller with this interface, say Y or M here. 213f0de8369SShawn Guo 214985b1aa0SMike Rapoport If unsure, say N. 215985b1aa0SMike Rapoport 21603d2bfc8SOlof Johanssonconfig MMC_SDHCI_TEGRA 21785d6509dSShawn Guo tristate "SDHCI platform support for the Tegra SD/MMC Controller" 21885d6509dSShawn Guo depends on ARCH_TEGRA 219f0de8369SShawn Guo depends on MMC_SDHCI_PLTFM 22003d2bfc8SOlof Johansson select MMC_SDHCI_IO_ACCESSORS 22103d2bfc8SOlof Johansson help 22203d2bfc8SOlof Johansson This selects the Tegra SD/MMC controller. If you have a Tegra 22303d2bfc8SOlof Johansson platform with SD or MMC devices, say Y or M here. 22403d2bfc8SOlof Johansson 22503d2bfc8SOlof Johansson If unsure, say N. 22603d2bfc8SOlof Johansson 2270d1bb41aSBen Dooksconfig MMC_SDHCI_S3C 2280d1bb41aSBen Dooks tristate "SDHCI support on Samsung S3C SoC" 229930a6f70SKyungmin Park depends on MMC_SDHCI && PLAT_SAMSUNG 2300d1bb41aSBen Dooks help 2310d1bb41aSBen Dooks This selects the Secure Digital Host Controller Interface (SDHCI) 2320d1bb41aSBen Dooks often referrered to as the HSMMC block in some of the Samsung S3C 2330d1bb41aSBen Dooks range of SoC. 2340d1bb41aSBen Dooks 2350d1bb41aSBen Dooks If you have a controller with this interface, say Y or M here. 2360d1bb41aSBen Dooks 2370d1bb41aSBen Dooks If unsure, say N. 2380d1bb41aSBen Dooks 239b3b665b0SBarry Songconfig MMC_SDHCI_SIRF 240b3b665b0SBarry Song tristate "SDHCI support on CSR SiRFprimaII and SiRFmarco SoCs" 241b3b665b0SBarry Song depends on ARCH_SIRF 242b3b665b0SBarry Song depends on MMC_SDHCI_PLTFM 243a1b0b977SWeijun Yang select MMC_SDHCI_IO_ACCESSORS 244b3b665b0SBarry Song help 245b3b665b0SBarry Song This selects the SDHCI support for SiRF System-on-Chip devices. 246b3b665b0SBarry Song 247b3b665b0SBarry Song If you have a controller with this interface, say Y or M here. 248b3b665b0SBarry Song 249b3b665b0SBarry Song If unsure, say N. 250b3b665b0SBarry Song 251a702c8abSZhangfei Gaoconfig MMC_SDHCI_PXAV3 252a702c8abSZhangfei Gao tristate "Marvell MMP2 SD Host Controller support (PXAV3)" 253a702c8abSZhangfei Gao depends on CLKDEV_LOOKUP 2545d01b768SArnd Bergmann depends on MMC_SDHCI_PLTFM 255daa3054fSJean Delvare depends on ARCH_BERLIN || ARCH_MMP || ARCH_MVEBU || COMPILE_TEST 256a702c8abSZhangfei Gao default CPU_MMP2 257a702c8abSZhangfei Gao help 258a702c8abSZhangfei Gao This selects the Marvell(R) PXAV3 SD Host Controller. 259a702c8abSZhangfei Gao If you have a MMP2 platform with SD Host Controller 260a702c8abSZhangfei Gao and a card slot, say Y or M here. 261a702c8abSZhangfei Gao 262a702c8abSZhangfei Gao If unsure, say N. 263a702c8abSZhangfei Gao 2649f5d71e4SZhangfei Gaoconfig MMC_SDHCI_PXAV2 2659f5d71e4SZhangfei Gao tristate "Marvell PXA9XX SD Host Controller support (PXAV2)" 2669f5d71e4SZhangfei Gao depends on CLKDEV_LOOKUP 2675d01b768SArnd Bergmann depends on MMC_SDHCI_PLTFM 2688a8735ebSJean Delvare depends on ARCH_MMP || COMPILE_TEST 2699f5d71e4SZhangfei Gao default CPU_PXA910 2709f5d71e4SZhangfei Gao help 2719f5d71e4SZhangfei Gao This selects the Marvell(R) PXAV2 SD Host Controller. 2729f5d71e4SZhangfei Gao If you have a PXA9XX platform with SD Host Controller 2739f5d71e4SZhangfei Gao and a card slot, say Y or M here. 2749f5d71e4SZhangfei Gao 2759f5d71e4SZhangfei Gao If unsure, say N. 2769f5d71e4SZhangfei Gao 277c63b3cbaSViresh KUMARconfig MMC_SDHCI_SPEAR 278c63b3cbaSViresh KUMAR tristate "SDHCI support on ST SPEAr platform" 279c63b3cbaSViresh KUMAR depends on MMC_SDHCI && PLAT_SPEAR 280bbd7f0a2SUlf Hansson depends on OF 281c63b3cbaSViresh KUMAR help 282c63b3cbaSViresh KUMAR This selects the Secure Digital Host Controller Interface (SDHCI) 283c63b3cbaSViresh KUMAR often referrered to as the HSMMC block in some of the ST SPEAR range 284c63b3cbaSViresh KUMAR of SoC 285c63b3cbaSViresh KUMAR 286c63b3cbaSViresh KUMAR If you have a controller with this interface, say Y or M here. 287c63b3cbaSViresh KUMAR 288c63b3cbaSViresh KUMAR If unsure, say N. 289c63b3cbaSViresh KUMAR 2900d1bb41aSBen Dooksconfig MMC_SDHCI_S3C_DMA 2910d1bb41aSBen Dooks bool "DMA support on S3C SDHCI" 29286147c84SKees Cook depends on MMC_SDHCI_S3C 2930d1bb41aSBen Dooks help 2940d1bb41aSBen Dooks Enable DMA support on the Samsung S3C SDHCI glue. The DMA 2950d1bb41aSBen Dooks has proved to be problematic if the controller encounters 2960d1bb41aSBen Dooks certain errors, and thus should be treated with care. 2970d1bb41aSBen Dooks 2980d1bb41aSBen Dooks YMMV. 2990d1bb41aSBen Dooks 30001ebea1bSChristian Daudtconfig MMC_SDHCI_BCM_KONA 30101ebea1bSChristian Daudt tristate "SDHCI support on Broadcom KONA platform" 302fc2bd2e4SChristian Daudt depends on ARCH_BCM_MOBILE 3035d01b768SArnd Bergmann depends on MMC_SDHCI_PLTFM 30401ebea1bSChristian Daudt help 30501ebea1bSChristian Daudt This selects the Broadcom Kona Secure Digital Host Controller 30601ebea1bSChristian Daudt Interface(SDHCI) support. 30701ebea1bSChristian Daudt This is used in Broadcom mobile SoCs. 30801ebea1bSChristian Daudt 30901ebea1bSChristian Daudt If you have a controller with this interface, say Y or M here. 31001ebea1bSChristian Daudt 31187a50745SVincent Yangconfig MMC_SDHCI_F_SDH30 31287a50745SVincent Yang tristate "SDHCI support for Fujitsu Semiconductor F_SDH30" 31387a50745SVincent Yang depends on MMC_SDHCI_PLTFM 31487a50745SVincent Yang depends on OF 31587a50745SVincent Yang help 31687a50745SVincent Yang This selects the Secure Digital Host Controller Interface (SDHCI) 31787a50745SVincent Yang Needed by some Fujitsu SoC for MMC / SD / SDIO support. 31887a50745SVincent Yang If you have a controller with this interface, say Y or M here. 31987a50745SVincent Yang 32087a50745SVincent Yang If unsure, say N. 32187a50745SVincent Yang 322b580c52dSScott Brandenconfig MMC_SDHCI_IPROC 32377cb7d3aSStefan Wahren tristate "SDHCI support for the BCM2835 & iProc SD/MMC Controller" 32477cb7d3aSStefan Wahren depends on ARCH_BCM2835 || ARCH_BCM_IPROC || COMPILE_TEST 325b580c52dSScott Branden depends on MMC_SDHCI_PLTFM 326b580c52dSScott Branden default ARCH_BCM_IPROC 327b580c52dSScott Branden select MMC_SDHCI_IO_ACCESSORS 328b580c52dSScott Branden help 329b580c52dSScott Branden This selects the iProc SD/MMC controller. 330b580c52dSScott Branden 33177cb7d3aSStefan Wahren If you have a BCM2835 or IPROC platform with SD or MMC devices, 332b580c52dSScott Branden say Y or M here. 333b580c52dSScott Branden 334b580c52dSScott Branden If unsure, say N. 335b580c52dSScott Branden 33651c5d844SKevin Hilmanconfig MMC_MESON_GX 33751c5d844SKevin Hilman tristate "Amlogic S905/GX* SD/MMC Host Controller support" 33851c5d844SKevin Hilman depends on ARCH_MESON && MMC 33951c5d844SKevin Hilman help 34051c5d844SKevin Hilman This selects support for the Amlogic SD/MMC Host Controller 34151c5d844SKevin Hilman found on the S905/GX* family of SoCs. This controller is 34251c5d844SKevin Hilman MMC 5.1 compliant and supports SD, eMMC and SDIO interfaces. 34351c5d844SKevin Hilman 34451c5d844SKevin Hilman If you have a controller with this interface, say Y here. 34551c5d844SKevin Hilman 3461b66e94eSJonas Jensenconfig MMC_MOXART 3471b66e94eSJonas Jensen tristate "MOXART SD/MMC Host Controller support" 3481b66e94eSJonas Jensen depends on ARCH_MOXART && MMC 3491b66e94eSJonas Jensen help 3501b66e94eSJonas Jensen This selects support for the MOXART SD/MMC Host Controller. 3511b66e94eSJonas Jensen MOXA provides one multi-functional card reader which can 3521b66e94eSJonas Jensen be found on some embedded hardware such as UC-7112-LX. 3531b66e94eSJonas Jensen If you have a controller with this interface, say Y here. 3541b66e94eSJonas Jensen 355f52d9c4fSPeter Griffinconfig MMC_SDHCI_ST 356f52d9c4fSPeter Griffin tristate "SDHCI support on STMicroelectronics SoC" 357f52d9c4fSPeter Griffin depends on ARCH_STI 358f52d9c4fSPeter Griffin depends on MMC_SDHCI_PLTFM 359f52d9c4fSPeter Griffin select MMC_SDHCI_IO_ACCESSORS 360f52d9c4fSPeter Griffin help 361f52d9c4fSPeter Griffin This selects the Secure Digital Host Controller Interface in 362f52d9c4fSPeter Griffin STMicroelectronics SoCs. 363f52d9c4fSPeter Griffin 364f52d9c4fSPeter Griffin If you have a controller with this interface, say Y or M here. 365f52d9c4fSPeter Griffin If unsure, say N. 366f52d9c4fSPeter Griffin 3671c6a0718SPierre Ossmanconfig MMC_OMAP 3681c6a0718SPierre Ossman tristate "TI OMAP Multimedia Card Interface support" 369790864dcSJan Engelhardt depends on ARCH_OMAP 37060a549fcSArnd Bergmann depends on TPS65010 || !MACH_OMAP_H2 3711c6a0718SPierre Ossman help 3721c6a0718SPierre Ossman This selects the TI OMAP Multimedia card Interface. 3731c6a0718SPierre Ossman If you have an OMAP board with a Multimedia Card slot, 3741c6a0718SPierre Ossman say Y or M here. 3751c6a0718SPierre Ossman 3761c6a0718SPierre Ossman If unsure, say N. 3771c6a0718SPierre Ossman 378a45c6cb8SMadhusudhan Chikkatureconfig MMC_OMAP_HS 379a45c6cb8SMadhusudhan Chikkature tristate "TI OMAP High Speed Multimedia Card Interface support" 380c00c594dSGeert Uytterhoeven depends on HAS_DMA 381a7cedab6SLokesh Vutla depends on ARCH_OMAP2PLUS || ARCH_KEYSTONE || COMPILE_TEST 382a45c6cb8SMadhusudhan Chikkature help 383a45c6cb8SMadhusudhan Chikkature This selects the TI OMAP High Speed Multimedia card Interface. 384bcf24e1dSAmarinder Bindra If you have an omap2plus board with a Multimedia Card slot, 385bcf24e1dSAmarinder Bindra say Y or M here. 386a45c6cb8SMadhusudhan Chikkature 387a45c6cb8SMadhusudhan Chikkature If unsure, say N. 388a45c6cb8SMadhusudhan Chikkature 3891c6a0718SPierre Ossmanconfig MMC_WBSD 3901c6a0718SPierre Ossman tristate "Winbond W83L51xD SD/MMC Card Interface support" 391790864dcSJan Engelhardt depends on ISA_DMA_API 3921c6a0718SPierre Ossman help 3931c6a0718SPierre Ossman This selects the Winbond(R) W83L51xD Secure digital and 3941c6a0718SPierre Ossman Multimedia card Interface. 3951c6a0718SPierre Ossman If you have a machine with a integrated W83L518D or W83L519D 3961c6a0718SPierre Ossman SD/MMC card reader, say Y or M here. 3971c6a0718SPierre Ossman 3981c6a0718SPierre Ossman If unsure, say N. 3991c6a0718SPierre Ossman 4001c6a0718SPierre Ossmanconfig MMC_AU1X 4011c6a0718SPierre Ossman tristate "Alchemy AU1XX0 MMC Card Interface support" 40237663860SManuel Lauss depends on MIPS_ALCHEMY 4031c6a0718SPierre Ossman help 4041c6a0718SPierre Ossman This selects the AMD Alchemy(R) Multimedia card interface. 4051c6a0718SPierre Ossman If you have a Alchemy platform with a MMC slot, say Y or M here. 4061c6a0718SPierre Ossman 4071c6a0718SPierre Ossman If unsure, say N. 4081c6a0718SPierre Ossman 4097d2be074SHaavard Skinnemoenconfig MMC_ATMELMCI 410d6a20debSLudovic Desroches tristate "Atmel SD/MMC Driver (Multimedia Card Interface)" 41104d699c3SRob Emanuele depends on AVR32 || ARCH_AT91 4127d2be074SHaavard Skinnemoen help 4137d2be074SHaavard Skinnemoen This selects the Atmel Multimedia Card Interface driver. If 41404d699c3SRob Emanuele you have an AT32 (AVR32) or AT91 platform with a Multimedia 41504d699c3SRob Emanuele Card slot, say Y or M here. 4167d2be074SHaavard Skinnemoen 4177d2be074SHaavard Skinnemoen If unsure, say N. 4187d2be074SHaavard Skinnemoen 4190eb0d9f4SGeorgi Djakovconfig MMC_SDHCI_MSM 4200eb0d9f4SGeorgi Djakov tristate "Qualcomm SDHCI Controller Support" 4216096d7a8SGeorgi Djakov depends on ARCH_QCOM || (ARM && COMPILE_TEST) 4220eb0d9f4SGeorgi Djakov depends on MMC_SDHCI_PLTFM 4230eb0d9f4SGeorgi Djakov help 4240eb0d9f4SGeorgi Djakov This selects the Secure Digital Host Controller Interface (SDHCI) 4250eb0d9f4SGeorgi Djakov support present in Qualcomm SOCs. The controller supports 4260eb0d9f4SGeorgi Djakov SD/MMC/SDIO devices. 4270eb0d9f4SGeorgi Djakov 4280eb0d9f4SGeorgi Djakov If you have a controller with this interface, say Y or M here. 4290eb0d9f4SGeorgi Djakov 4300eb0d9f4SGeorgi Djakov If unsure, say N. 4310eb0d9f4SGeorgi Djakov 432d96be879SSascha Hauerconfig MMC_MXC 433c7ceab02SAnatolij Gustschin tristate "Freescale i.MX21/27/31 or MPC512x Multimedia Card support" 434c7ceab02SAnatolij Gustschin depends on ARCH_MXC || PPC_MPC512x 435d96be879SSascha Hauer help 436c7ceab02SAnatolij Gustschin This selects the Freescale i.MX21, i.MX27, i.MX31 or MPC512x 437c7ceab02SAnatolij Gustschin Multimedia Card Interface. If you have an i.MX or MPC512x platform 438c7ceab02SAnatolij Gustschin with a Multimedia Card slot, say Y or M here. 439d96be879SSascha Hauer 440d96be879SSascha Hauer If unsure, say N. 441d96be879SSascha Hauer 442e4243f13SShawn Guoconfig MMC_MXS 443e4243f13SShawn Guo tristate "Freescale MXS Multimedia Card Interface support" 444e4243f13SShawn Guo depends on ARCH_MXS && MXS_DMA 445e4243f13SShawn Guo help 446e4243f13SShawn Guo This selects the Freescale SSP MMC controller found on MXS based 447e4243f13SShawn Guo platforms like mx23/28. 448e4243f13SShawn Guo 449e4243f13SShawn Guo If unsure, say N. 450e4243f13SShawn Guo 4511c6a0718SPierre Ossmanconfig MMC_TIFM_SD 45286147c84SKees Cook tristate "TI Flash Media MMC/SD Interface support" 45386147c84SKees Cook depends on PCI 4541c6a0718SPierre Ossman select TIFM_CORE 4551c6a0718SPierre Ossman help 4561c6a0718SPierre Ossman Say Y here if you want to be able to access MMC/SD cards with 4571c6a0718SPierre Ossman the Texas Instruments(R) Flash Media card reader, found in many 4581c6a0718SPierre Ossman laptops. 4591c6a0718SPierre Ossman This option 'selects' (turns on, enables) 'TIFM_CORE', but you 4601c6a0718SPierre Ossman probably also need appropriate card reader host adapter, such as 4611c6a0718SPierre Ossman 'Misc devices: TI Flash Media PCI74xx/PCI76xx host adapter support 4621c6a0718SPierre Ossman (TIFM_7XX1)'. 4631c6a0718SPierre Ossman 4641c6a0718SPierre Ossman To compile this driver as a module, choose M here: the 4651c6a0718SPierre Ossman module will be called tifm_sd. 4661c6a0718SPierre Ossman 467236caa7cSMaen Suleimanconfig MMC_MVSDIO 468236caa7cSMaen Suleiman tristate "Marvell MMC/SD/SDIO host driver" 469236caa7cSMaen Suleiman depends on PLAT_ORION 47017da6783SLinus Walleij depends on OF 471236caa7cSMaen Suleiman ---help--- 472236caa7cSMaen Suleiman This selects the Marvell SDIO host driver. 473236caa7cSMaen Suleiman SDIO may currently be found on the Kirkwood 88F6281 and 88F6192 474236caa7cSMaen Suleiman SoC controllers. 475236caa7cSMaen Suleiman 476236caa7cSMaen Suleiman To compile this driver as a module, choose M here: the 477236caa7cSMaen Suleiman module will be called mvsdio. 478236caa7cSMaen Suleiman 479b4cff454SVipin Bhandariconfig MMC_DAVINCI 480b4cff454SVipin Bhandari tristate "TI DAVINCI Multimedia Card Interface support" 481b4cff454SVipin Bhandari depends on ARCH_DAVINCI 482b4cff454SVipin Bhandari help 483b4cff454SVipin Bhandari This selects the TI DAVINCI Multimedia card Interface. 484b4cff454SVipin Bhandari If you have an DAVINCI board with a Multimedia Card slot, 485b4cff454SVipin Bhandari say Y or M here. If unsure, say N. 486b4cff454SVipin Bhandari 48785c34d2eSMike Lockwoodconfig MMC_GOLDFISH 48885c34d2eSMike Lockwood tristate "goldfish qemu Multimedia Card Interface support" 4893d358772SGeert Uytterhoeven depends on HAS_DMA 4907f8a9a7eSLuis de Bethencourt depends on GOLDFISH || COMPILE_TEST 49185c34d2eSMike Lockwood help 49285c34d2eSMike Lockwood This selects the Goldfish Multimedia card Interface emulation 49385c34d2eSMike Lockwood found on the Goldfish Android virtual device emulation. 49485c34d2eSMike Lockwood 49515a0580cSDavid Brownellconfig MMC_SPI 49657105737SPierre Ossman tristate "MMC/SD/SDIO over SPI" 4971ea4f444SPierre Ossman depends on SPI_MASTER && !HIGHMEM && HAS_DMA 49815a0580cSDavid Brownell select CRC7 49915a0580cSDavid Brownell select CRC_ITU_T 50015a0580cSDavid Brownell help 501692105b8SMatt LaPlante Some systems access MMC/SD/SDIO cards using a SPI controller 50257105737SPierre Ossman instead of using a "native" MMC/SD/SDIO controller. This has a 50357105737SPierre Ossman disadvantage of being relatively high overhead, but a compensating 50457105737SPierre Ossman advantage of working on many systems without dedicated MMC/SD/SDIO 50557105737SPierre Ossman controllers. 50615a0580cSDavid Brownell 50715a0580cSDavid Brownell If unsure, or if your system has no SPI master driver, say N. 50815a0580cSDavid Brownell 509be518018SThomas Kleffelconfig MMC_S3C 510be518018SThomas Kleffel tristate "Samsung S3C SD/MMC Card Interface support" 511b130d5c2SKukjin Kim depends on ARCH_S3C24XX 512b45e4b50SVasily Khoruzhick depends on S3C24XX_DMAC 513be518018SThomas Kleffel help 514be518018SThomas Kleffel This selects a driver for the MCI interface found in 515be518018SThomas Kleffel Samsung's S3C2410, S3C2412, S3C2440, S3C2442 CPUs. 516be518018SThomas Kleffel If you have a board based on one of those and a MMC/SD 517be518018SThomas Kleffel slot, say Y or M here. 518be518018SThomas Kleffel 519be518018SThomas Kleffel If unsure, say N. 520be518018SThomas Kleffel 5215a2c4fe0SBen Dooksconfig MMC_S3C_HW_SDIO_IRQ 5225a2c4fe0SBen Dooks bool "Hardware support for SDIO IRQ" 5235a2c4fe0SBen Dooks depends on MMC_S3C 5245a2c4fe0SBen Dooks help 5255a2c4fe0SBen Dooks Enable the hardware support for SDIO interrupts instead of using 5265a2c4fe0SBen Dooks the generic polling code. 5275a2c4fe0SBen Dooks 52826f14947SBen Dookschoice 52926f14947SBen Dooks prompt "Samsung S3C SD/MMC transfer code" 53026f14947SBen Dooks depends on MMC_S3C 53126f14947SBen Dooks 53226f14947SBen Dooksconfig MMC_S3C_PIO 53326f14947SBen Dooks bool "Use PIO transfers only" 53426f14947SBen Dooks help 53526f14947SBen Dooks Use PIO to transfer data between memory and the hardware. 53626f14947SBen Dooks 53726f14947SBen Dooks PIO is slower than DMA as it requires CPU instructions to 53826f14947SBen Dooks move the data. This has been the traditional default for 53926f14947SBen Dooks the S3C MCI driver. 54026f14947SBen Dooks 54126f14947SBen Dooksconfig MMC_S3C_DMA 54286147c84SKees Cook bool "Use DMA transfers only" 54326f14947SBen Dooks help 54426f14947SBen Dooks Use DMA to transfer data between memory and the hardare. 54526f14947SBen Dooks 54626f14947SBen Dooks Currently, the DMA support in this driver seems to not be 54726f14947SBen Dooks working properly and needs to be debugged before this 54826f14947SBen Dooks option is useful. 54926f14947SBen Dooks 55026f14947SBen Dooksendchoice 55126f14947SBen Dooks 5526a36913aSSascha Sommerconfig MMC_SDRICOH_CS 55386147c84SKees Cook tristate "MMC/SD driver for Ricoh Bay1Controllers" 55486147c84SKees Cook depends on PCI && PCMCIA 5556a36913aSSascha Sommer help 5566a36913aSSascha Sommer Say Y here if your Notebook reports a Ricoh Bay1Controller PCMCIA 5576a36913aSSascha Sommer card whenever you insert a MMC or SD card into the card slot. 5586a36913aSSascha Sommer 5596a36913aSSascha Sommer To compile this driver as a module, choose M here: the 5606a36913aSSascha Sommer module will be called sdricoh_cs. 5616a36913aSSascha Sommer 562b6147490SGuennadi Liakhovetskiconfig MMC_TMIO_CORE 563b6147490SGuennadi Liakhovetski tristate 564b6147490SGuennadi Liakhovetski 5654a48998fSIan Moltonconfig MMC_TMIO 5664a48998fSIan Molton tristate "Toshiba Mobile IO Controller (TMIO) MMC/SD function support" 56742051e8aSGuennadi Liakhovetski depends on MFD_TMIO || MFD_ASIC3 568b6147490SGuennadi Liakhovetski select MMC_TMIO_CORE 5694a48998fSIan Molton help 5704a48998fSIan Molton This provides support for the SD/MMC cell found in TC6393XB, 571e6f2c7adSPhilipp Zabel T7L66XB and also HTC ASIC3 5725f5bac82SMichał Mirosław 57342051e8aSGuennadi Liakhovetskiconfig MMC_SDHI 57442051e8aSGuennadi Liakhovetski tristate "SH-Mobile SDHI SD/SDIO controller support" 575a72e8b17SWolfram Sang depends on SUPERH || ARM || ARM64 57649312c1fSSimon Horman depends on SUPERH || ARCH_RENESAS || COMPILE_TEST 57742051e8aSGuennadi Liakhovetski select MMC_TMIO_CORE 57842051e8aSGuennadi Liakhovetski help 57942051e8aSGuennadi Liakhovetski This provides support for the SDHI SD/SDIO controller found in 58042051e8aSGuennadi Liakhovetski SuperH and ARM SH-Mobile SoCs 58142051e8aSGuennadi Liakhovetski 5825f5bac82SMichał Mirosławconfig MMC_CB710 5835f5bac82SMichał Mirosław tristate "ENE CB710 MMC/SD Interface support" 5840244ad00SMartin Schwidefsky depends on PCI 5855f5bac82SMichał Mirosław select CB710_CORE 5865f5bac82SMichał Mirosław help 5875f5bac82SMichał Mirosław This option enables support for MMC/SD part of ENE CB710/720 Flash 5885f5bac82SMichał Mirosław memory card reader found in some laptops (ie. some versions of 5895f5bac82SMichał Mirosław HP Compaq nx9500). 5905f5bac82SMichał Mirosław 5915f5bac82SMichał Mirosław This driver can also be built as a module. If so, the module 5925f5bac82SMichał Mirosław will be called cb710-mmc. 5935f5bac82SMichał Mirosław 594f0bf7f61SHarald Welteconfig MMC_VIA_SDMMC 595f0bf7f61SHarald Welte tristate "VIA SD/MMC Card Reader Driver" 596f0bf7f61SHarald Welte depends on PCI 597f0bf7f61SHarald Welte help 598f0bf7f61SHarald Welte This selects the VIA SD/MMC Card Reader driver, say Y or M here. 599f0bf7f61SHarald Welte VIA provides one multi-functional card reader which integrated into 600f0bf7f61SHarald Welte some motherboards manufactured by VIA. This card reader supports 601f0bf7f61SHarald Welte SD/MMC/SDHC. 602f0bf7f61SHarald Welte If you have a controller with this interface, say Y or M here. 603f0bf7f61SHarald Welte 604f0bf7f61SHarald Welte If unsure, say N. 605eb962d5bSCliff Cai 606eb962d5bSCliff Caiconfig SDH_BFIN 607eb962d5bSCliff Cai tristate "Blackfin Secure Digital Host support" 60805dabcc4SMike Frysinger depends on (BF54x && !BF544) || (BF51x && !BF512) 609eb962d5bSCliff Cai help 610eb962d5bSCliff Cai If you say yes here you will get support for the Blackfin on-chip 611eb962d5bSCliff Cai Secure Digital Host interface. This includes support for MMC and 612eb962d5bSCliff Cai SD cards. 613eb962d5bSCliff Cai 614eb962d5bSCliff Cai To compile this driver as a module, choose M here: the 615eb962d5bSCliff Cai module will be called bfin_sdh. 616eb962d5bSCliff Cai 617eb962d5bSCliff Cai If unsure, say N. 618eb962d5bSCliff Cai 619eb962d5bSCliff Caiconfig SDH_BFIN_MISSING_CMD_PULLUP_WORKAROUND 620eb962d5bSCliff Cai bool "Blackfin EZkit Missing SDH_CMD Pull Up Resistor Workaround" 621eb962d5bSCliff Cai depends on SDH_BFIN 622eb962d5bSCliff Cai help 623eb962d5bSCliff Cai If you say yes here SD-Cards may work on the EZkit. 624fdc50a94SYusuke Goda 625166bac38SJan Glauberconfig MMC_CAVIUM_THUNDERX 626166bac38SJan Glauber tristate "Cavium ThunderX SD/MMC Card Interface support" 627166bac38SJan Glauber depends on PCI && 64BIT && (ARM64 || COMPILE_TEST) 628166bac38SJan Glauber depends on GPIOLIB 629166bac38SJan Glauber depends on OF_ADDRESS 630166bac38SJan Glauber help 631166bac38SJan Glauber This selects Cavium ThunderX SD/MMC Card Interface. 632166bac38SJan Glauber If you have an Cavium ARM64 board with a Multimedia Card slot 633166bac38SJan Glauber or builtin eMMC chip say Y or M here. If built as a module 634166bac38SJan Glauber the module will be called thunderx_mmc.ko. 635166bac38SJan Glauber 636f95f3850SWill Newtonconfig MMC_DW 637f95f3850SWill Newton tristate "Synopsys DesignWare Memory Card Interface" 6380857c691SAndrew Bresticker depends on HAS_DMA 639c34346b2SAlim Akhtar depends on ARC || ARM || ARM64 || MIPS || COMPILE_TEST 640f95f3850SWill Newton help 641f95f3850SWill Newton This selects support for the Synopsys DesignWare Mobile Storage IP 642f95f3850SWill Newton block, this provides host support for SD and MMC interfaces, in both 6433fc7eaefSShawn Lin PIO, internal DMA mode and external DMA mode. 644f95f3850SWill Newton 64562ca8034SShashidhar Hiremathconfig MMC_DW_PLTFM 64662ca8034SShashidhar Hiremath tristate "Synopsys Designware MCI Support as platform device" 64762ca8034SShashidhar Hiremath depends on MMC_DW 64862ca8034SShashidhar Hiremath default y 64962ca8034SShashidhar Hiremath help 65062ca8034SShashidhar Hiremath This selects the common helper functions support for Host Controller 65162ca8034SShashidhar Hiremath Interface based platform driver. Please select this option if the IP 65262ca8034SShashidhar Hiremath is present as a platform device. This is the common interface for the 65362ca8034SShashidhar Hiremath Synopsys Designware IP. 65462ca8034SShashidhar Hiremath 65562ca8034SShashidhar Hiremath If you have a controller with this interface, say Y or M here. 65662ca8034SShashidhar Hiremath 65762ca8034SShashidhar Hiremath If unsure, say Y. 65862ca8034SShashidhar Hiremath 659c3665006SThomas Abrahamconfig MMC_DW_EXYNOS 660e41e85ccSMasanari Iida tristate "Exynos specific extensions for Synopsys DW Memory Card Interface" 661c3665006SThomas Abraham depends on MMC_DW 662c3665006SThomas Abraham select MMC_DW_PLTFM 663c3665006SThomas Abraham help 664c3665006SThomas Abraham This selects support for Samsung Exynos SoC specific extensions to the 665c3665006SThomas Abraham Synopsys DesignWare Memory Card Interface driver. Select this option 666c3665006SThomas Abraham for platforms based on Exynos4 and Exynos5 SoC's. 667c3665006SThomas Abraham 668036f29d5SZhangfei Gaoconfig MMC_DW_K3 669036f29d5SZhangfei Gao tristate "K3 specific extensions for Synopsys DW Memory Card Interface" 670036f29d5SZhangfei Gao depends on MMC_DW 671036f29d5SZhangfei Gao select MMC_DW_PLTFM 672036f29d5SZhangfei Gao help 673036f29d5SZhangfei Gao This selects support for Hisilicon K3 SoC specific extensions to the 674036f29d5SZhangfei Gao Synopsys DesignWare Memory Card Interface driver. Select this option 675036f29d5SZhangfei Gao for platforms based on Hisilicon K3 SoC's. 676036f29d5SZhangfei Gao 67762ca8034SShashidhar Hiremathconfig MMC_DW_PCI 67862ca8034SShashidhar Hiremath tristate "Synopsys Designware MCI support on PCI bus" 67962ca8034SShashidhar Hiremath depends on MMC_DW && PCI 68062ca8034SShashidhar Hiremath help 68162ca8034SShashidhar Hiremath This selects the PCI bus for the Synopsys Designware Mobile Storage IP. 68262ca8034SShashidhar Hiremath Select this option if the IP is present on PCI platform. 68362ca8034SShashidhar Hiremath 68462ca8034SShashidhar Hiremath If you have a controller with this interface, say Y or M here. 68562ca8034SShashidhar Hiremath 68662ca8034SShashidhar Hiremath If unsure, say N. 68762ca8034SShashidhar Hiremath 6884cdc2ec1Saddy keconfig MMC_DW_ROCKCHIP 6894cdc2ec1Saddy ke tristate "Rockchip specific extensions for Synopsys DW Memory Card Interface" 6904cdc2ec1Saddy ke depends on MMC_DW && ARCH_ROCKCHIP 6914cdc2ec1Saddy ke select MMC_DW_PLTFM 6924cdc2ec1Saddy ke help 6934cdc2ec1Saddy ke This selects support for Rockchip SoC specific extensions to the 6944cdc2ec1Saddy ke Synopsys DesignWare Memory Card Interface driver. Select this option 6954cdc2ec1Saddy ke for platforms based on RK3066, RK3188 and RK3288 SoC's. 6964cdc2ec1Saddy ke 697a8c643adSJun Nieconfig MMC_DW_ZX 698a8c643adSJun Nie tristate "ZTE specific extensions for Synopsys DW Memory Card Interface" 699a8c643adSJun Nie depends on MMC_DW && ARCH_ZX 700a8c643adSJun Nie select MMC_DW_PLTFM 701a8c643adSJun Nie help 702a8c643adSJun Nie This selects support for ZTE SoC specific extensions to the 703a8c643adSJun Nie Synopsys DesignWare Memory Card Interface driver. Select this option 704a8c643adSJun Nie for platforms based on ZX296718 SoC's. 705a8c643adSJun Nie 706fdc50a94SYusuke Godaconfig MMC_SH_MMCIF 707fdc50a94SYusuke Goda tristate "SuperH Internal MMCIF support" 708963b14ffSWolfram Sang depends on HAS_DMA 70949312c1fSSimon Horman depends on SUPERH || ARCH_RENESAS || COMPILE_TEST 710fdc50a94SYusuke Goda help 711ba9e9157SWolfram Sang This selects the MMC Host Interface controller (MMCIF) found in various 712ba9e9157SWolfram Sang Renesas SoCs for SH and ARM architectures. 713fdc50a94SYusuke Goda 71461bfbdb8SLars-Peter Clausen 71561bfbdb8SLars-Peter Clausenconfig MMC_JZ4740 71661bfbdb8SLars-Peter Clausen tristate "JZ4740 SD/Multimedia Card Interface support" 71761bfbdb8SLars-Peter Clausen depends on MACH_JZ4740 71861bfbdb8SLars-Peter Clausen help 71961bfbdb8SLars-Peter Clausen This selects support for the SD/MMC controller on Ingenic JZ4740 72061bfbdb8SLars-Peter Clausen SoCs. 72161bfbdb8SLars-Peter Clausen If you have a board based on such a SoC and with a SD/MMC slot, 72261bfbdb8SLars-Peter Clausen say Y or M here. 72353f3a9e2SDavid Vrabel 72488095e7bSTony Olechconfig MMC_VUB300 72588095e7bSTony Olech tristate "VUB300 USB to SDIO/SD/MMC Host Controller support" 72688095e7bSTony Olech depends on USB 72788095e7bSTony Olech help 72888095e7bSTony Olech This selects support for Elan Digital Systems' VUB300 chip. 72988095e7bSTony Olech 73088095e7bSTony Olech The VUB300 is a USB-SDIO Host Controller Interface chip 73188095e7bSTony Olech that enables the host computer to use SDIO/SD/MMC cards 73288095e7bSTony Olech via a USB 2.0 or USB 1.1 host. 73388095e7bSTony Olech 73488095e7bSTony Olech The VUB300 chip will be found in both physically separate 73588095e7bSTony Olech USB to SDIO/SD/MMC adapters and embedded on some motherboards. 73688095e7bSTony Olech 73788095e7bSTony Olech The VUB300 chip supports SD and MMC memory cards in addition 73888095e7bSTony Olech to single and multifunction SDIO cards. 73988095e7bSTony Olech 74088095e7bSTony Olech Some SDIO cards will need a firmware file to be loaded and 74188095e7bSTony Olech sent to VUB300 chip in order to achieve better data throughput. 74288095e7bSTony Olech Download these "Offload Pseudocode" from Elan Digital Systems' 74388095e7bSTony Olech web-site http://www.elandigitalsystems.com/support/downloads.php 74488095e7bSTony Olech and put them in /lib/firmware. Note that without these additional 74588095e7bSTony Olech firmware files the VUB300 chip will still function, but not at 74688095e7bSTony Olech the best obtainable data rate. 74788095e7bSTony Olech 74888095e7bSTony Olech To compile this mmc host controller driver as a module, 74988095e7bSTony Olech choose M here: the module will be called vub300. 75088095e7bSTony Olech 75188095e7bSTony Olech If you have a computer with an embedded VUB300 chip 75288095e7bSTony Olech or if you intend connecting a USB adapter based on a 75388095e7bSTony Olech VUB300 chip say Y or M here. 75488095e7bSTony Olech 75553f3a9e2SDavid Vrabelconfig MMC_USHC 75653f3a9e2SDavid Vrabel tristate "USB SD Host Controller (USHC) support" 75753f3a9e2SDavid Vrabel depends on USB 75853f3a9e2SDavid Vrabel help 75953f3a9e2SDavid Vrabel This selects support for USB SD Host Controllers based on 76053f3a9e2SDavid Vrabel the Cypress Astoria chip with firmware compliant with CSR's 76153f3a9e2SDavid Vrabel USB SD Host Controller specification (CS-118793-SP). 76253f3a9e2SDavid Vrabel 76353f3a9e2SDavid Vrabel CSR boards with this device include: USB<>SDIO (M1985v2), 76453f3a9e2SDavid Vrabel and Ultrasira. 76553f3a9e2SDavid Vrabel 76653f3a9e2SDavid Vrabel Note: These controllers only support SDIO cards and do not 76753f3a9e2SDavid Vrabel support MMC or SD memory cards. 7683a96dff0STony Prisk 7693a96dff0STony Priskconfig MMC_WMT 7703a96dff0STony Prisk tristate "Wondermedia SD/MMC Host Controller support" 7713a96dff0STony Prisk depends on ARCH_VT8500 7723a96dff0STony Prisk default y 7733a96dff0STony Prisk help 7743a96dff0STony Prisk This selects support for the SD/MMC Host Controller on 7753a96dff0STony Prisk Wondermedia WM8505/WM8650 based SoCs. 7763a96dff0STony Prisk 7773a96dff0STony Prisk To compile this driver as a module, choose M here: the 7783a96dff0STony Prisk module will be called wmt-sdmmc. 7796a5971d8SLinus Torvalds 78075fa9ea6SGuennadi Liakhovetskiconfig MMC_USDHI6ROL0 78175fa9ea6SGuennadi Liakhovetski tristate "Renesas USDHI6ROL0 SD/SDIO Host Controller support" 7821ef94740SGeert Uytterhoeven depends on HAS_DMA 78375fa9ea6SGuennadi Liakhovetski help 78475fa9ea6SGuennadi Liakhovetski This selects support for the Renesas USDHI6ROL0 SD/SDIO 78575fa9ea6SGuennadi Liakhovetski Host Controller 78675fa9ea6SGuennadi Liakhovetski 7872c94b645SWei WANGconfig MMC_REALTEK_PCI 7882c94b645SWei WANG tristate "Realtek PCI-E SD/MMC Card Interface Driver" 7892c94b645SWei WANG depends on MFD_RTSX_PCI 7902c94b645SWei WANG help 7912c94b645SWei WANG Say Y here to include driver code to support SD/MMC card interface 7922c94b645SWei WANG of Realtek PCI-E card reader 793c7f6558dSRoger Tseng 794c7f6558dSRoger Tsengconfig MMC_REALTEK_USB 795c7f6558dSRoger Tseng tristate "Realtek USB SD/MMC Card Interface Driver" 796c7f6558dSRoger Tseng depends on MFD_RTSX_USB 797c7f6558dSRoger Tseng help 798c7f6558dSRoger Tseng Say Y here to include driver code to support SD/MMC card interface 799c7f6558dSRoger Tseng of Realtek RTS5129/39 series card reader 80019b7f796SDavid Lanzendörfer 80119b7f796SDavid Lanzendörferconfig MMC_SUNXI 80219b7f796SDavid Lanzendörfer tristate "Allwinner sunxi SD/MMC Host Controller support" 80319b7f796SDavid Lanzendörfer depends on ARCH_SUNXI 80419b7f796SDavid Lanzendörfer help 80519b7f796SDavid Lanzendörfer This selects support for the SD/MMC Host Controller on 80619b7f796SDavid Lanzendörfer Allwinner sunxi SoCs. 807a5eb8bbdSOndrej Zary 808a5eb8bbdSOndrej Zaryconfig MMC_TOSHIBA_PCI 809a5eb8bbdSOndrej Zary tristate "Toshiba Type A SD/MMC Card Interface Driver" 810a5eb8bbdSOndrej Zary depends on PCI 811a5eb8bbdSOndrej Zary help 81220848903SChaotian Jing 813660fc733SEric Anholtconfig MMC_BCM2835 814660fc733SEric Anholt tristate "Broadcom BCM2835 SDHOST MMC Controller support" 815660fc733SEric Anholt depends on ARCH_BCM2835 || COMPILE_TEST 816660fc733SEric Anholt depends on HAS_DMA 817660fc733SEric Anholt help 818660fc733SEric Anholt This selects the BCM2835 SDHOST MMC controller. If you have 819660fc733SEric Anholt a BCM2835 platform with SD or MMC devices, say Y or M here. 820660fc733SEric Anholt 821660fc733SEric Anholt Note that the BCM2835 has two SD controllers: The Arasan 822660fc733SEric Anholt sdhci controller (supported by MMC_SDHCI_IPROC) and a custom 823660fc733SEric Anholt sdhost controller (supported by this driver). 824660fc733SEric Anholt 825660fc733SEric Anholt If unsure, say N. 826660fc733SEric Anholt 82720848903SChaotian Jingconfig MMC_MTK 82820848903SChaotian Jing tristate "MediaTek SD/MMC Card Interface support" 829c2b22fffSGeert Uytterhoeven depends on HAS_DMA 83020848903SChaotian Jing help 83120848903SChaotian Jing This selects the MediaTek(R) Secure digital and Multimedia card Interface. 83220848903SChaotian Jing If you have a machine with a integrated SD/MMC card reader, say Y or M here. 83320848903SChaotian Jing This is needed if support for any SD/SDIO/MMC devices is required. 83420848903SChaotian Jing If unsure, say N. 8355d9460d7SAndrei Pistirica 8365d9460d7SAndrei Pistiricaconfig MMC_SDHCI_MICROCHIP_PIC32 8375d9460d7SAndrei Pistirica tristate "Microchip PIC32MZDA SDHCI support" 8385d9460d7SAndrei Pistirica depends on MMC_SDHCI && PIC32MZDA && MMC_SDHCI_PLTFM 8395d9460d7SAndrei Pistirica help 8405d9460d7SAndrei Pistirica This selects the Secure Digital Host Controller Interface (SDHCI) 8415d9460d7SAndrei Pistirica for PIC32MZDA platform. 8425d9460d7SAndrei Pistirica 8435d9460d7SAndrei Pistirica If you have a controller with this interface, say Y or M here. 8445d9460d7SAndrei Pistirica 8455d9460d7SAndrei Pistirica If unsure, say N. 846476bf3d6SAl Cooperconfig MMC_SDHCI_BRCMSTB 847476bf3d6SAl Cooper tristate "Broadcom SDIO/SD/MMC support" 848476bf3d6SAl Cooper depends on ARCH_BRCMSTB || BMIPS_GENERIC 849476bf3d6SAl Cooper depends on MMC_SDHCI_PLTFM 850476bf3d6SAl Cooper default y 851476bf3d6SAl Cooper help 852476bf3d6SAl Cooper This selects support for the SDIO/SD/MMC Host Controller on 853476bf3d6SAl Cooper Broadcom STB SoCs. 854476bf3d6SAl Cooper 855476bf3d6SAl Cooper If unsure, say Y. 856*3a3748dbSHu Ziji 857*3a3748dbSHu Zijiconfig MMC_SDHCI_XENON 858*3a3748dbSHu Ziji tristate "Marvell Xenon eMMC/SD/SDIO SDHCI driver" 859*3a3748dbSHu Ziji depends on MMC_SDHCI_PLTFM 860*3a3748dbSHu Ziji help 861*3a3748dbSHu Ziji This selects Marvell Xenon eMMC/SD/SDIO SDHCI. 862*3a3748dbSHu Ziji If you have a controller with this interface, say Y or M here. 863*3a3748dbSHu Ziji If unsure, say N. 864