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 select MMC_SDHCI_IO_ACCESSORS 139bb5f8ea4Sludovic.desroches@atmel.com help 140bb5f8ea4Sludovic.desroches@atmel.com This selects the Atmel SDMMC driver 141bb5f8ea4Sludovic.desroches@atmel.com 142f0de8369SShawn Guoconfig MMC_SDHCI_OF_ESDHC 143f0de8369SShawn Guo tristate "SDHCI OF support for the Freescale eSDHC controller" 144f0de8369SShawn Guo depends on MMC_SDHCI_PLTFM 1452ca63524Syangbo lu depends on PPC || ARCH_MXC || ARCH_LAYERSCAPE 1462ca63524Syangbo lu select MMC_SDHCI_IO_ACCESSORS 147151ede40Syangbo lu select FSL_GUTS 1487657c3a7SAlbert Herranz help 1497657c3a7SAlbert Herranz This selects the Freescale eSDHC controller support. 1503085e9c1SAnton Vorontsov 151f0de8369SShawn Guo If you have a controller with this interface, say Y or M here. 152f0de8369SShawn Guo 1533085e9c1SAnton Vorontsov If unsure, say N. 1543085e9c1SAnton Vorontsov 1551144ab5dSAlbert Herranzconfig MMC_SDHCI_OF_HLWD 156f0de8369SShawn Guo tristate "SDHCI OF support for the Nintendo Wii SDHCI controllers" 157f0de8369SShawn Guo depends on MMC_SDHCI_PLTFM 1585f2e097cSKevin Hao depends on PPC 1591144ab5dSAlbert Herranz select MMC_SDHCI_BIG_ENDIAN_32BIT_BYTE_SWAPPER 1601144ab5dSAlbert Herranz help 1611144ab5dSAlbert Herranz This selects the Secure Digital Host Controller Interface (SDHCI) 1621144ab5dSAlbert Herranz found in the "Hollywood" chipset of the Nintendo Wii video game 1631144ab5dSAlbert Herranz console. 1641144ab5dSAlbert Herranz 165f0de8369SShawn Guo If you have a controller with this interface, say Y or M here. 166f0de8369SShawn Guo 1671144ab5dSAlbert Herranz If unsure, say N. 1681144ab5dSAlbert Herranz 16920b1597bSAnton Vorontsovconfig MMC_SDHCI_CNS3XXX 17085d6509dSShawn Guo tristate "SDHCI support on the Cavium Networks CNS3xxx SoC" 17120b1597bSAnton Vorontsov depends on ARCH_CNS3XXX 172f0de8369SShawn Guo depends on MMC_SDHCI_PLTFM 17320b1597bSAnton Vorontsov help 17420b1597bSAnton Vorontsov This selects the SDHCI support for CNS3xxx System-on-Chip devices. 17520b1597bSAnton Vorontsov 176f0de8369SShawn Guo If you have a controller with this interface, say Y or M here. 177f0de8369SShawn Guo 17820b1597bSAnton Vorontsov If unsure, say N. 17920b1597bSAnton Vorontsov 18095f25efeSWolfram Sangconfig MMC_SDHCI_ESDHC_IMX 18195a2482aSShawn Guo tristate "SDHCI support for the Freescale eSDHC/uSDHC i.MX controller" 1822b795518SSascha Hauer depends on ARCH_MXC 183f0de8369SShawn Guo depends on MMC_SDHCI_PLTFM 18495f25efeSWolfram Sang select MMC_SDHCI_IO_ACCESSORS 18595f25efeSWolfram Sang help 18695a2482aSShawn Guo This selects the Freescale eSDHC/uSDHC controller support 18795a2482aSShawn Guo found on i.MX25, i.MX35 i.MX5x and i.MX6x. 18895f25efeSWolfram Sang 189f0de8369SShawn Guo If you have a controller with this interface, say Y or M here. 190f0de8369SShawn Guo 19195f25efeSWolfram Sang If unsure, say N. 19295f25efeSWolfram Sang 193985b1aa0SMike Rapoportconfig MMC_SDHCI_DOVE 19485d6509dSShawn Guo tristate "SDHCI support on Marvell's Dove SoC" 195ec4422acSSebastian Hesselbarth depends on ARCH_DOVE || MACH_DOVE 196f0de8369SShawn Guo depends on MMC_SDHCI_PLTFM 197985b1aa0SMike Rapoport select MMC_SDHCI_IO_ACCESSORS 198985b1aa0SMike Rapoport help 199985b1aa0SMike Rapoport This selects the Secure Digital Host Controller Interface in 200985b1aa0SMike Rapoport Marvell's Dove SoC. 201985b1aa0SMike Rapoport 202f0de8369SShawn Guo If you have a controller with this interface, say Y or M here. 203f0de8369SShawn Guo 204985b1aa0SMike Rapoport If unsure, say N. 205985b1aa0SMike Rapoport 20603d2bfc8SOlof Johanssonconfig MMC_SDHCI_TEGRA 20785d6509dSShawn Guo tristate "SDHCI platform support for the Tegra SD/MMC Controller" 20885d6509dSShawn Guo depends on ARCH_TEGRA 209f0de8369SShawn Guo depends on MMC_SDHCI_PLTFM 21003d2bfc8SOlof Johansson select MMC_SDHCI_IO_ACCESSORS 21103d2bfc8SOlof Johansson help 21203d2bfc8SOlof Johansson This selects the Tegra SD/MMC controller. If you have a Tegra 21303d2bfc8SOlof Johansson platform with SD or MMC devices, say Y or M here. 21403d2bfc8SOlof Johansson 21503d2bfc8SOlof Johansson If unsure, say N. 21603d2bfc8SOlof Johansson 2170d1bb41aSBen Dooksconfig MMC_SDHCI_S3C 2180d1bb41aSBen Dooks tristate "SDHCI support on Samsung S3C SoC" 219930a6f70SKyungmin Park depends on MMC_SDHCI && PLAT_SAMSUNG 2200d1bb41aSBen Dooks help 2210d1bb41aSBen Dooks This selects the Secure Digital Host Controller Interface (SDHCI) 2220d1bb41aSBen Dooks often referrered to as the HSMMC block in some of the Samsung S3C 2230d1bb41aSBen Dooks range of SoC. 2240d1bb41aSBen Dooks 2250d1bb41aSBen Dooks If you have a controller with this interface, say Y or M here. 2260d1bb41aSBen Dooks 2270d1bb41aSBen Dooks If unsure, say N. 2280d1bb41aSBen Dooks 229b3b665b0SBarry Songconfig MMC_SDHCI_SIRF 230b3b665b0SBarry Song tristate "SDHCI support on CSR SiRFprimaII and SiRFmarco SoCs" 231b3b665b0SBarry Song depends on ARCH_SIRF 232b3b665b0SBarry Song depends on MMC_SDHCI_PLTFM 233a1b0b977SWeijun Yang select MMC_SDHCI_IO_ACCESSORS 234b3b665b0SBarry Song help 235b3b665b0SBarry Song This selects the SDHCI support for SiRF System-on-Chip devices. 236b3b665b0SBarry Song 237b3b665b0SBarry Song If you have a controller with this interface, say Y or M here. 238b3b665b0SBarry Song 239b3b665b0SBarry Song If unsure, say N. 240b3b665b0SBarry Song 241a702c8abSZhangfei Gaoconfig MMC_SDHCI_PXAV3 242a702c8abSZhangfei Gao tristate "Marvell MMP2 SD Host Controller support (PXAV3)" 243a702c8abSZhangfei Gao depends on CLKDEV_LOOKUP 2445d01b768SArnd Bergmann depends on MMC_SDHCI_PLTFM 245daa3054fSJean Delvare depends on ARCH_BERLIN || ARCH_MMP || ARCH_MVEBU || COMPILE_TEST 246a702c8abSZhangfei Gao default CPU_MMP2 247a702c8abSZhangfei Gao help 248a702c8abSZhangfei Gao This selects the Marvell(R) PXAV3 SD Host Controller. 249a702c8abSZhangfei Gao If you have a MMP2 platform with SD Host Controller 250a702c8abSZhangfei Gao and a card slot, say Y or M here. 251a702c8abSZhangfei Gao 252a702c8abSZhangfei Gao If unsure, say N. 253a702c8abSZhangfei Gao 2549f5d71e4SZhangfei Gaoconfig MMC_SDHCI_PXAV2 2559f5d71e4SZhangfei Gao tristate "Marvell PXA9XX SD Host Controller support (PXAV2)" 2569f5d71e4SZhangfei Gao depends on CLKDEV_LOOKUP 2575d01b768SArnd Bergmann depends on MMC_SDHCI_PLTFM 2588a8735ebSJean Delvare depends on ARCH_MMP || COMPILE_TEST 2599f5d71e4SZhangfei Gao default CPU_PXA910 2609f5d71e4SZhangfei Gao help 2619f5d71e4SZhangfei Gao This selects the Marvell(R) PXAV2 SD Host Controller. 2629f5d71e4SZhangfei Gao If you have a PXA9XX platform with SD Host Controller 2639f5d71e4SZhangfei Gao and a card slot, say Y or M here. 2649f5d71e4SZhangfei Gao 2659f5d71e4SZhangfei Gao If unsure, say N. 2669f5d71e4SZhangfei Gao 267c63b3cbaSViresh KUMARconfig MMC_SDHCI_SPEAR 268c63b3cbaSViresh KUMAR tristate "SDHCI support on ST SPEAr platform" 269c63b3cbaSViresh KUMAR depends on MMC_SDHCI && PLAT_SPEAR 270bbd7f0a2SUlf Hansson depends on OF 271c63b3cbaSViresh KUMAR help 272c63b3cbaSViresh KUMAR This selects the Secure Digital Host Controller Interface (SDHCI) 273c63b3cbaSViresh KUMAR often referrered to as the HSMMC block in some of the ST SPEAR range 274c63b3cbaSViresh KUMAR of SoC 275c63b3cbaSViresh KUMAR 276c63b3cbaSViresh KUMAR If you have a controller with this interface, say Y or M here. 277c63b3cbaSViresh KUMAR 278c63b3cbaSViresh KUMAR If unsure, say N. 279c63b3cbaSViresh KUMAR 2800d1bb41aSBen Dooksconfig MMC_SDHCI_S3C_DMA 2810d1bb41aSBen Dooks bool "DMA support on S3C SDHCI" 28286147c84SKees Cook depends on MMC_SDHCI_S3C 2830d1bb41aSBen Dooks help 2840d1bb41aSBen Dooks Enable DMA support on the Samsung S3C SDHCI glue. The DMA 2850d1bb41aSBen Dooks has proved to be problematic if the controller encounters 2860d1bb41aSBen Dooks certain errors, and thus should be treated with care. 2870d1bb41aSBen Dooks 2880d1bb41aSBen Dooks YMMV. 2890d1bb41aSBen Dooks 29001ebea1bSChristian Daudtconfig MMC_SDHCI_BCM_KONA 29101ebea1bSChristian Daudt tristate "SDHCI support on Broadcom KONA platform" 292fc2bd2e4SChristian Daudt depends on ARCH_BCM_MOBILE 2935d01b768SArnd Bergmann depends on MMC_SDHCI_PLTFM 29401ebea1bSChristian Daudt help 29501ebea1bSChristian Daudt This selects the Broadcom Kona Secure Digital Host Controller 29601ebea1bSChristian Daudt Interface(SDHCI) support. 29701ebea1bSChristian Daudt This is used in Broadcom mobile SoCs. 29801ebea1bSChristian Daudt 29901ebea1bSChristian Daudt If you have a controller with this interface, say Y or M here. 30001ebea1bSChristian Daudt 30187a50745SVincent Yangconfig MMC_SDHCI_F_SDH30 30287a50745SVincent Yang tristate "SDHCI support for Fujitsu Semiconductor F_SDH30" 30387a50745SVincent Yang depends on MMC_SDHCI_PLTFM 30487a50745SVincent Yang depends on OF 30587a50745SVincent Yang help 30687a50745SVincent Yang This selects the Secure Digital Host Controller Interface (SDHCI) 30787a50745SVincent Yang Needed by some Fujitsu SoC for MMC / SD / SDIO support. 30887a50745SVincent Yang If you have a controller with this interface, say Y or M here. 30987a50745SVincent Yang 31087a50745SVincent Yang If unsure, say N. 31187a50745SVincent Yang 312b580c52dSScott Brandenconfig MMC_SDHCI_IPROC 31377cb7d3aSStefan Wahren tristate "SDHCI support for the BCM2835 & iProc SD/MMC Controller" 31477cb7d3aSStefan Wahren depends on ARCH_BCM2835 || ARCH_BCM_IPROC || COMPILE_TEST 315b580c52dSScott Branden depends on MMC_SDHCI_PLTFM 316b580c52dSScott Branden default ARCH_BCM_IPROC 317b580c52dSScott Branden select MMC_SDHCI_IO_ACCESSORS 318b580c52dSScott Branden help 319b580c52dSScott Branden This selects the iProc SD/MMC controller. 320b580c52dSScott Branden 32177cb7d3aSStefan Wahren If you have a BCM2835 or IPROC platform with SD or MMC devices, 322b580c52dSScott Branden say Y or M here. 323b580c52dSScott Branden 324b580c52dSScott Branden If unsure, say N. 325b580c52dSScott Branden 32651c5d844SKevin Hilmanconfig MMC_MESON_GX 32751c5d844SKevin Hilman tristate "Amlogic S905/GX* SD/MMC Host Controller support" 32851c5d844SKevin Hilman depends on ARCH_MESON && MMC 32951c5d844SKevin Hilman help 33051c5d844SKevin Hilman This selects support for the Amlogic SD/MMC Host Controller 33151c5d844SKevin Hilman found on the S905/GX* family of SoCs. This controller is 33251c5d844SKevin Hilman MMC 5.1 compliant and supports SD, eMMC and SDIO interfaces. 33351c5d844SKevin Hilman 33451c5d844SKevin Hilman If you have a controller with this interface, say Y here. 33551c5d844SKevin Hilman 3361b66e94eSJonas Jensenconfig MMC_MOXART 3371b66e94eSJonas Jensen tristate "MOXART SD/MMC Host Controller support" 3381b66e94eSJonas Jensen depends on ARCH_MOXART && MMC 3391b66e94eSJonas Jensen help 3401b66e94eSJonas Jensen This selects support for the MOXART SD/MMC Host Controller. 3411b66e94eSJonas Jensen MOXA provides one multi-functional card reader which can 3421b66e94eSJonas Jensen be found on some embedded hardware such as UC-7112-LX. 3431b66e94eSJonas Jensen If you have a controller with this interface, say Y here. 3441b66e94eSJonas Jensen 345f52d9c4fSPeter Griffinconfig MMC_SDHCI_ST 346f52d9c4fSPeter Griffin tristate "SDHCI support on STMicroelectronics SoC" 347f52d9c4fSPeter Griffin depends on ARCH_STI 348f52d9c4fSPeter Griffin depends on MMC_SDHCI_PLTFM 349f52d9c4fSPeter Griffin select MMC_SDHCI_IO_ACCESSORS 350f52d9c4fSPeter Griffin help 351f52d9c4fSPeter Griffin This selects the Secure Digital Host Controller Interface in 352f52d9c4fSPeter Griffin STMicroelectronics SoCs. 353f52d9c4fSPeter Griffin 354f52d9c4fSPeter Griffin If you have a controller with this interface, say Y or M here. 355f52d9c4fSPeter Griffin If unsure, say N. 356f52d9c4fSPeter Griffin 3571c6a0718SPierre Ossmanconfig MMC_OMAP 3581c6a0718SPierre Ossman tristate "TI OMAP Multimedia Card Interface support" 359790864dcSJan Engelhardt depends on ARCH_OMAP 36060a549fcSArnd Bergmann depends on TPS65010 || !MACH_OMAP_H2 3611c6a0718SPierre Ossman help 3621c6a0718SPierre Ossman This selects the TI OMAP Multimedia card Interface. 3631c6a0718SPierre Ossman If you have an OMAP board with a Multimedia Card slot, 3641c6a0718SPierre Ossman say Y or M here. 3651c6a0718SPierre Ossman 3661c6a0718SPierre Ossman If unsure, say N. 3671c6a0718SPierre Ossman 368a45c6cb8SMadhusudhan Chikkatureconfig MMC_OMAP_HS 369a45c6cb8SMadhusudhan Chikkature tristate "TI OMAP High Speed Multimedia Card Interface support" 370c00c594dSGeert Uytterhoeven depends on HAS_DMA 371a7cedab6SLokesh Vutla depends on ARCH_OMAP2PLUS || ARCH_KEYSTONE || COMPILE_TEST 372a45c6cb8SMadhusudhan Chikkature help 373a45c6cb8SMadhusudhan Chikkature This selects the TI OMAP High Speed Multimedia card Interface. 374bcf24e1dSAmarinder Bindra If you have an omap2plus board with a Multimedia Card slot, 375bcf24e1dSAmarinder Bindra say Y or M here. 376a45c6cb8SMadhusudhan Chikkature 377a45c6cb8SMadhusudhan Chikkature If unsure, say N. 378a45c6cb8SMadhusudhan Chikkature 3791c6a0718SPierre Ossmanconfig MMC_WBSD 3801c6a0718SPierre Ossman tristate "Winbond W83L51xD SD/MMC Card Interface support" 381790864dcSJan Engelhardt depends on ISA_DMA_API 3821c6a0718SPierre Ossman help 3831c6a0718SPierre Ossman This selects the Winbond(R) W83L51xD Secure digital and 3841c6a0718SPierre Ossman Multimedia card Interface. 3851c6a0718SPierre Ossman If you have a machine with a integrated W83L518D or W83L519D 3861c6a0718SPierre Ossman SD/MMC card reader, say Y or M here. 3871c6a0718SPierre Ossman 3881c6a0718SPierre Ossman If unsure, say N. 3891c6a0718SPierre Ossman 3901c6a0718SPierre Ossmanconfig MMC_AU1X 3911c6a0718SPierre Ossman tristate "Alchemy AU1XX0 MMC Card Interface support" 39237663860SManuel Lauss depends on MIPS_ALCHEMY 3931c6a0718SPierre Ossman help 3941c6a0718SPierre Ossman This selects the AMD Alchemy(R) Multimedia card interface. 3951c6a0718SPierre Ossman If you have a Alchemy platform with a MMC slot, say Y or M here. 3961c6a0718SPierre Ossman 3971c6a0718SPierre Ossman If unsure, say N. 3981c6a0718SPierre Ossman 3997d2be074SHaavard Skinnemoenconfig MMC_ATMELMCI 400d6a20debSLudovic Desroches tristate "Atmel SD/MMC Driver (Multimedia Card Interface)" 40104d699c3SRob Emanuele depends on AVR32 || ARCH_AT91 4027d2be074SHaavard Skinnemoen help 4037d2be074SHaavard Skinnemoen This selects the Atmel Multimedia Card Interface driver. If 40404d699c3SRob Emanuele you have an AT32 (AVR32) or AT91 platform with a Multimedia 40504d699c3SRob Emanuele Card slot, say Y or M here. 4067d2be074SHaavard Skinnemoen 4077d2be074SHaavard Skinnemoen If unsure, say N. 4087d2be074SHaavard Skinnemoen 4090eb0d9f4SGeorgi Djakovconfig MMC_SDHCI_MSM 4100eb0d9f4SGeorgi Djakov tristate "Qualcomm SDHCI Controller Support" 4116096d7a8SGeorgi Djakov depends on ARCH_QCOM || (ARM && COMPILE_TEST) 4120eb0d9f4SGeorgi Djakov depends on MMC_SDHCI_PLTFM 4130eb0d9f4SGeorgi Djakov help 4140eb0d9f4SGeorgi Djakov This selects the Secure Digital Host Controller Interface (SDHCI) 4150eb0d9f4SGeorgi Djakov support present in Qualcomm SOCs. The controller supports 4160eb0d9f4SGeorgi Djakov SD/MMC/SDIO devices. 4170eb0d9f4SGeorgi Djakov 4180eb0d9f4SGeorgi Djakov If you have a controller with this interface, say Y or M here. 4190eb0d9f4SGeorgi Djakov 4200eb0d9f4SGeorgi Djakov If unsure, say N. 4210eb0d9f4SGeorgi Djakov 422d96be879SSascha Hauerconfig MMC_MXC 423c7ceab02SAnatolij Gustschin tristate "Freescale i.MX21/27/31 or MPC512x Multimedia Card support" 424c7ceab02SAnatolij Gustschin depends on ARCH_MXC || PPC_MPC512x 425d96be879SSascha Hauer help 426c7ceab02SAnatolij Gustschin This selects the Freescale i.MX21, i.MX27, i.MX31 or MPC512x 427c7ceab02SAnatolij Gustschin Multimedia Card Interface. If you have an i.MX or MPC512x platform 428c7ceab02SAnatolij Gustschin with a Multimedia Card slot, say Y or M here. 429d96be879SSascha Hauer 430d96be879SSascha Hauer If unsure, say N. 431d96be879SSascha Hauer 432e4243f13SShawn Guoconfig MMC_MXS 433e4243f13SShawn Guo tristate "Freescale MXS Multimedia Card Interface support" 434e4243f13SShawn Guo depends on ARCH_MXS && MXS_DMA 435e4243f13SShawn Guo help 436e4243f13SShawn Guo This selects the Freescale SSP MMC controller found on MXS based 437e4243f13SShawn Guo platforms like mx23/28. 438e4243f13SShawn Guo 439e4243f13SShawn Guo If unsure, say N. 440e4243f13SShawn Guo 4411c6a0718SPierre Ossmanconfig MMC_TIFM_SD 44286147c84SKees Cook tristate "TI Flash Media MMC/SD Interface support" 44386147c84SKees Cook depends on PCI 4441c6a0718SPierre Ossman select TIFM_CORE 4451c6a0718SPierre Ossman help 4461c6a0718SPierre Ossman Say Y here if you want to be able to access MMC/SD cards with 4471c6a0718SPierre Ossman the Texas Instruments(R) Flash Media card reader, found in many 4481c6a0718SPierre Ossman laptops. 4491c6a0718SPierre Ossman This option 'selects' (turns on, enables) 'TIFM_CORE', but you 4501c6a0718SPierre Ossman probably also need appropriate card reader host adapter, such as 4511c6a0718SPierre Ossman 'Misc devices: TI Flash Media PCI74xx/PCI76xx host adapter support 4521c6a0718SPierre Ossman (TIFM_7XX1)'. 4531c6a0718SPierre Ossman 4541c6a0718SPierre Ossman To compile this driver as a module, choose M here: the 4551c6a0718SPierre Ossman module will be called tifm_sd. 4561c6a0718SPierre Ossman 457236caa7cSMaen Suleimanconfig MMC_MVSDIO 458236caa7cSMaen Suleiman tristate "Marvell MMC/SD/SDIO host driver" 459236caa7cSMaen Suleiman depends on PLAT_ORION 46017da6783SLinus Walleij depends on OF 461236caa7cSMaen Suleiman ---help--- 462236caa7cSMaen Suleiman This selects the Marvell SDIO host driver. 463236caa7cSMaen Suleiman SDIO may currently be found on the Kirkwood 88F6281 and 88F6192 464236caa7cSMaen Suleiman SoC controllers. 465236caa7cSMaen Suleiman 466236caa7cSMaen Suleiman To compile this driver as a module, choose M here: the 467236caa7cSMaen Suleiman module will be called mvsdio. 468236caa7cSMaen Suleiman 469b4cff454SVipin Bhandariconfig MMC_DAVINCI 470b4cff454SVipin Bhandari tristate "TI DAVINCI Multimedia Card Interface support" 471b4cff454SVipin Bhandari depends on ARCH_DAVINCI 472b4cff454SVipin Bhandari help 473b4cff454SVipin Bhandari This selects the TI DAVINCI Multimedia card Interface. 474b4cff454SVipin Bhandari If you have an DAVINCI board with a Multimedia Card slot, 475b4cff454SVipin Bhandari say Y or M here. If unsure, say N. 476b4cff454SVipin Bhandari 47785c34d2eSMike Lockwoodconfig MMC_GOLDFISH 47885c34d2eSMike Lockwood tristate "goldfish qemu Multimedia Card Interface support" 4793d358772SGeert Uytterhoeven depends on HAS_DMA 4807f8a9a7eSLuis de Bethencourt depends on GOLDFISH || COMPILE_TEST 48185c34d2eSMike Lockwood help 48285c34d2eSMike Lockwood This selects the Goldfish Multimedia card Interface emulation 48385c34d2eSMike Lockwood found on the Goldfish Android virtual device emulation. 48485c34d2eSMike Lockwood 48515a0580cSDavid Brownellconfig MMC_SPI 48657105737SPierre Ossman tristate "MMC/SD/SDIO over SPI" 4871ea4f444SPierre Ossman depends on SPI_MASTER && !HIGHMEM && HAS_DMA 48815a0580cSDavid Brownell select CRC7 48915a0580cSDavid Brownell select CRC_ITU_T 49015a0580cSDavid Brownell help 491692105b8SMatt LaPlante Some systems access MMC/SD/SDIO cards using a SPI controller 49257105737SPierre Ossman instead of using a "native" MMC/SD/SDIO controller. This has a 49357105737SPierre Ossman disadvantage of being relatively high overhead, but a compensating 49457105737SPierre Ossman advantage of working on many systems without dedicated MMC/SD/SDIO 49557105737SPierre Ossman controllers. 49615a0580cSDavid Brownell 49715a0580cSDavid Brownell If unsure, or if your system has no SPI master driver, say N. 49815a0580cSDavid Brownell 499be518018SThomas Kleffelconfig MMC_S3C 500be518018SThomas Kleffel tristate "Samsung S3C SD/MMC Card Interface support" 501b130d5c2SKukjin Kim depends on ARCH_S3C24XX 502b45e4b50SVasily Khoruzhick depends on S3C24XX_DMAC 503be518018SThomas Kleffel help 504be518018SThomas Kleffel This selects a driver for the MCI interface found in 505be518018SThomas Kleffel Samsung's S3C2410, S3C2412, S3C2440, S3C2442 CPUs. 506be518018SThomas Kleffel If you have a board based on one of those and a MMC/SD 507be518018SThomas Kleffel slot, say Y or M here. 508be518018SThomas Kleffel 509be518018SThomas Kleffel If unsure, say N. 510be518018SThomas Kleffel 5115a2c4fe0SBen Dooksconfig MMC_S3C_HW_SDIO_IRQ 5125a2c4fe0SBen Dooks bool "Hardware support for SDIO IRQ" 5135a2c4fe0SBen Dooks depends on MMC_S3C 5145a2c4fe0SBen Dooks help 5155a2c4fe0SBen Dooks Enable the hardware support for SDIO interrupts instead of using 5165a2c4fe0SBen Dooks the generic polling code. 5175a2c4fe0SBen Dooks 51826f14947SBen Dookschoice 51926f14947SBen Dooks prompt "Samsung S3C SD/MMC transfer code" 52026f14947SBen Dooks depends on MMC_S3C 52126f14947SBen Dooks 52226f14947SBen Dooksconfig MMC_S3C_PIO 52326f14947SBen Dooks bool "Use PIO transfers only" 52426f14947SBen Dooks help 52526f14947SBen Dooks Use PIO to transfer data between memory and the hardware. 52626f14947SBen Dooks 52726f14947SBen Dooks PIO is slower than DMA as it requires CPU instructions to 52826f14947SBen Dooks move the data. This has been the traditional default for 52926f14947SBen Dooks the S3C MCI driver. 53026f14947SBen Dooks 53126f14947SBen Dooksconfig MMC_S3C_DMA 53286147c84SKees Cook bool "Use DMA transfers only" 53326f14947SBen Dooks help 53426f14947SBen Dooks Use DMA to transfer data between memory and the hardare. 53526f14947SBen Dooks 53626f14947SBen Dooks Currently, the DMA support in this driver seems to not be 53726f14947SBen Dooks working properly and needs to be debugged before this 53826f14947SBen Dooks option is useful. 53926f14947SBen Dooks 54026f14947SBen Dooksendchoice 54126f14947SBen Dooks 5426a36913aSSascha Sommerconfig MMC_SDRICOH_CS 54386147c84SKees Cook tristate "MMC/SD driver for Ricoh Bay1Controllers" 54486147c84SKees Cook depends on PCI && PCMCIA 5456a36913aSSascha Sommer help 5466a36913aSSascha Sommer Say Y here if your Notebook reports a Ricoh Bay1Controller PCMCIA 5476a36913aSSascha Sommer card whenever you insert a MMC or SD card into the card slot. 5486a36913aSSascha Sommer 5496a36913aSSascha Sommer To compile this driver as a module, choose M here: the 5506a36913aSSascha Sommer module will be called sdricoh_cs. 5516a36913aSSascha Sommer 552b6147490SGuennadi Liakhovetskiconfig MMC_TMIO_CORE 553b6147490SGuennadi Liakhovetski tristate 554b6147490SGuennadi Liakhovetski 5554a48998fSIan Moltonconfig MMC_TMIO 5564a48998fSIan Molton tristate "Toshiba Mobile IO Controller (TMIO) MMC/SD function support" 55742051e8aSGuennadi Liakhovetski depends on MFD_TMIO || MFD_ASIC3 558b6147490SGuennadi Liakhovetski select MMC_TMIO_CORE 5594a48998fSIan Molton help 5604a48998fSIan Molton This provides support for the SD/MMC cell found in TC6393XB, 561e6f2c7adSPhilipp Zabel T7L66XB and also HTC ASIC3 5625f5bac82SMichał Mirosław 56342051e8aSGuennadi Liakhovetskiconfig MMC_SDHI 56442051e8aSGuennadi Liakhovetski tristate "SH-Mobile SDHI SD/SDIO controller support" 565a72e8b17SWolfram Sang depends on SUPERH || ARM || ARM64 56649312c1fSSimon Horman depends on SUPERH || ARCH_RENESAS || COMPILE_TEST 56742051e8aSGuennadi Liakhovetski select MMC_TMIO_CORE 56842051e8aSGuennadi Liakhovetski help 56942051e8aSGuennadi Liakhovetski This provides support for the SDHI SD/SDIO controller found in 57042051e8aSGuennadi Liakhovetski SuperH and ARM SH-Mobile SoCs 57142051e8aSGuennadi Liakhovetski 5725f5bac82SMichał Mirosławconfig MMC_CB710 5735f5bac82SMichał Mirosław tristate "ENE CB710 MMC/SD Interface support" 5740244ad00SMartin Schwidefsky depends on PCI 5755f5bac82SMichał Mirosław select CB710_CORE 5765f5bac82SMichał Mirosław help 5775f5bac82SMichał Mirosław This option enables support for MMC/SD part of ENE CB710/720 Flash 5785f5bac82SMichał Mirosław memory card reader found in some laptops (ie. some versions of 5795f5bac82SMichał Mirosław HP Compaq nx9500). 5805f5bac82SMichał Mirosław 5815f5bac82SMichał Mirosław This driver can also be built as a module. If so, the module 5825f5bac82SMichał Mirosław will be called cb710-mmc. 5835f5bac82SMichał Mirosław 584f0bf7f61SHarald Welteconfig MMC_VIA_SDMMC 585f0bf7f61SHarald Welte tristate "VIA SD/MMC Card Reader Driver" 586f0bf7f61SHarald Welte depends on PCI 587f0bf7f61SHarald Welte help 588f0bf7f61SHarald Welte This selects the VIA SD/MMC Card Reader driver, say Y or M here. 589f0bf7f61SHarald Welte VIA provides one multi-functional card reader which integrated into 590f0bf7f61SHarald Welte some motherboards manufactured by VIA. This card reader supports 591f0bf7f61SHarald Welte SD/MMC/SDHC. 592f0bf7f61SHarald Welte If you have a controller with this interface, say Y or M here. 593f0bf7f61SHarald Welte 594f0bf7f61SHarald Welte If unsure, say N. 595eb962d5bSCliff Cai 596eb962d5bSCliff Caiconfig SDH_BFIN 597eb962d5bSCliff Cai tristate "Blackfin Secure Digital Host support" 59805dabcc4SMike Frysinger depends on (BF54x && !BF544) || (BF51x && !BF512) 599eb962d5bSCliff Cai help 600eb962d5bSCliff Cai If you say yes here you will get support for the Blackfin on-chip 601eb962d5bSCliff Cai Secure Digital Host interface. This includes support for MMC and 602eb962d5bSCliff Cai SD cards. 603eb962d5bSCliff Cai 604eb962d5bSCliff Cai To compile this driver as a module, choose M here: the 605eb962d5bSCliff Cai module will be called bfin_sdh. 606eb962d5bSCliff Cai 607eb962d5bSCliff Cai If unsure, say N. 608eb962d5bSCliff Cai 609eb962d5bSCliff Caiconfig SDH_BFIN_MISSING_CMD_PULLUP_WORKAROUND 610eb962d5bSCliff Cai bool "Blackfin EZkit Missing SDH_CMD Pull Up Resistor Workaround" 611eb962d5bSCliff Cai depends on SDH_BFIN 612eb962d5bSCliff Cai help 613eb962d5bSCliff Cai If you say yes here SD-Cards may work on the EZkit. 614fdc50a94SYusuke Goda 615f95f3850SWill Newtonconfig MMC_DW 616f95f3850SWill Newton tristate "Synopsys DesignWare Memory Card Interface" 6170857c691SAndrew Bresticker depends on HAS_DMA 618c34346b2SAlim Akhtar depends on ARC || ARM || ARM64 || MIPS || COMPILE_TEST 619f95f3850SWill Newton help 620f95f3850SWill Newton This selects support for the Synopsys DesignWare Mobile Storage IP 621f95f3850SWill Newton block, this provides host support for SD and MMC interfaces, in both 6223fc7eaefSShawn Lin PIO, internal DMA mode and external DMA mode. 623f95f3850SWill Newton 62462ca8034SShashidhar Hiremathconfig MMC_DW_PLTFM 62562ca8034SShashidhar Hiremath tristate "Synopsys Designware MCI Support as platform device" 62662ca8034SShashidhar Hiremath depends on MMC_DW 62762ca8034SShashidhar Hiremath default y 62862ca8034SShashidhar Hiremath help 62962ca8034SShashidhar Hiremath This selects the common helper functions support for Host Controller 63062ca8034SShashidhar Hiremath Interface based platform driver. Please select this option if the IP 63162ca8034SShashidhar Hiremath is present as a platform device. This is the common interface for the 63262ca8034SShashidhar Hiremath Synopsys Designware IP. 63362ca8034SShashidhar Hiremath 63462ca8034SShashidhar Hiremath If you have a controller with this interface, say Y or M here. 63562ca8034SShashidhar Hiremath 63662ca8034SShashidhar Hiremath If unsure, say Y. 63762ca8034SShashidhar Hiremath 638c3665006SThomas Abrahamconfig MMC_DW_EXYNOS 639e41e85ccSMasanari Iida tristate "Exynos specific extensions for Synopsys DW Memory Card Interface" 640c3665006SThomas Abraham depends on MMC_DW 641c3665006SThomas Abraham select MMC_DW_PLTFM 642c3665006SThomas Abraham help 643c3665006SThomas Abraham This selects support for Samsung Exynos SoC specific extensions to the 644c3665006SThomas Abraham Synopsys DesignWare Memory Card Interface driver. Select this option 645c3665006SThomas Abraham for platforms based on Exynos4 and Exynos5 SoC's. 646c3665006SThomas Abraham 647036f29d5SZhangfei Gaoconfig MMC_DW_K3 648036f29d5SZhangfei Gao tristate "K3 specific extensions for Synopsys DW Memory Card Interface" 649036f29d5SZhangfei Gao depends on MMC_DW 650036f29d5SZhangfei Gao select MMC_DW_PLTFM 651036f29d5SZhangfei Gao help 652036f29d5SZhangfei Gao This selects support for Hisilicon K3 SoC specific extensions to the 653036f29d5SZhangfei Gao Synopsys DesignWare Memory Card Interface driver. Select this option 654036f29d5SZhangfei Gao for platforms based on Hisilicon K3 SoC's. 655036f29d5SZhangfei Gao 65662ca8034SShashidhar Hiremathconfig MMC_DW_PCI 65762ca8034SShashidhar Hiremath tristate "Synopsys Designware MCI support on PCI bus" 65862ca8034SShashidhar Hiremath depends on MMC_DW && PCI 65962ca8034SShashidhar Hiremath help 66062ca8034SShashidhar Hiremath This selects the PCI bus for the Synopsys Designware Mobile Storage IP. 66162ca8034SShashidhar Hiremath Select this option if the IP is present on PCI platform. 66262ca8034SShashidhar Hiremath 66362ca8034SShashidhar Hiremath If you have a controller with this interface, say Y or M here. 66462ca8034SShashidhar Hiremath 66562ca8034SShashidhar Hiremath If unsure, say N. 66662ca8034SShashidhar Hiremath 6674cdc2ec1Saddy keconfig MMC_DW_ROCKCHIP 6684cdc2ec1Saddy ke tristate "Rockchip specific extensions for Synopsys DW Memory Card Interface" 6694cdc2ec1Saddy ke depends on MMC_DW && ARCH_ROCKCHIP 6704cdc2ec1Saddy ke select MMC_DW_PLTFM 6714cdc2ec1Saddy ke help 6724cdc2ec1Saddy ke This selects support for Rockchip SoC specific extensions to the 6734cdc2ec1Saddy ke Synopsys DesignWare Memory Card Interface driver. Select this option 6744cdc2ec1Saddy ke for platforms based on RK3066, RK3188 and RK3288 SoC's. 6754cdc2ec1Saddy ke 676fdc50a94SYusuke Godaconfig MMC_SH_MMCIF 677fdc50a94SYusuke Goda tristate "SuperH Internal MMCIF support" 678963b14ffSWolfram Sang depends on HAS_DMA 67949312c1fSSimon Horman depends on SUPERH || ARCH_RENESAS || COMPILE_TEST 680fdc50a94SYusuke Goda help 681ba9e9157SWolfram Sang This selects the MMC Host Interface controller (MMCIF) found in various 682ba9e9157SWolfram Sang Renesas SoCs for SH and ARM architectures. 683fdc50a94SYusuke Goda 68461bfbdb8SLars-Peter Clausen 68561bfbdb8SLars-Peter Clausenconfig MMC_JZ4740 68661bfbdb8SLars-Peter Clausen tristate "JZ4740 SD/Multimedia Card Interface support" 68761bfbdb8SLars-Peter Clausen depends on MACH_JZ4740 68861bfbdb8SLars-Peter Clausen help 68961bfbdb8SLars-Peter Clausen This selects support for the SD/MMC controller on Ingenic JZ4740 69061bfbdb8SLars-Peter Clausen SoCs. 69161bfbdb8SLars-Peter Clausen If you have a board based on such a SoC and with a SD/MMC slot, 69261bfbdb8SLars-Peter Clausen say Y or M here. 69353f3a9e2SDavid Vrabel 69488095e7bSTony Olechconfig MMC_VUB300 69588095e7bSTony Olech tristate "VUB300 USB to SDIO/SD/MMC Host Controller support" 69688095e7bSTony Olech depends on USB 69788095e7bSTony Olech help 69888095e7bSTony Olech This selects support for Elan Digital Systems' VUB300 chip. 69988095e7bSTony Olech 70088095e7bSTony Olech The VUB300 is a USB-SDIO Host Controller Interface chip 70188095e7bSTony Olech that enables the host computer to use SDIO/SD/MMC cards 70288095e7bSTony Olech via a USB 2.0 or USB 1.1 host. 70388095e7bSTony Olech 70488095e7bSTony Olech The VUB300 chip will be found in both physically separate 70588095e7bSTony Olech USB to SDIO/SD/MMC adapters and embedded on some motherboards. 70688095e7bSTony Olech 70788095e7bSTony Olech The VUB300 chip supports SD and MMC memory cards in addition 70888095e7bSTony Olech to single and multifunction SDIO cards. 70988095e7bSTony Olech 71088095e7bSTony Olech Some SDIO cards will need a firmware file to be loaded and 71188095e7bSTony Olech sent to VUB300 chip in order to achieve better data throughput. 71288095e7bSTony Olech Download these "Offload Pseudocode" from Elan Digital Systems' 71388095e7bSTony Olech web-site http://www.elandigitalsystems.com/support/downloads.php 71488095e7bSTony Olech and put them in /lib/firmware. Note that without these additional 71588095e7bSTony Olech firmware files the VUB300 chip will still function, but not at 71688095e7bSTony Olech the best obtainable data rate. 71788095e7bSTony Olech 71888095e7bSTony Olech To compile this mmc host controller driver as a module, 71988095e7bSTony Olech choose M here: the module will be called vub300. 72088095e7bSTony Olech 72188095e7bSTony Olech If you have a computer with an embedded VUB300 chip 72288095e7bSTony Olech or if you intend connecting a USB adapter based on a 72388095e7bSTony Olech VUB300 chip say Y or M here. 72488095e7bSTony Olech 72553f3a9e2SDavid Vrabelconfig MMC_USHC 72653f3a9e2SDavid Vrabel tristate "USB SD Host Controller (USHC) support" 72753f3a9e2SDavid Vrabel depends on USB 72853f3a9e2SDavid Vrabel help 72953f3a9e2SDavid Vrabel This selects support for USB SD Host Controllers based on 73053f3a9e2SDavid Vrabel the Cypress Astoria chip with firmware compliant with CSR's 73153f3a9e2SDavid Vrabel USB SD Host Controller specification (CS-118793-SP). 73253f3a9e2SDavid Vrabel 73353f3a9e2SDavid Vrabel CSR boards with this device include: USB<>SDIO (M1985v2), 73453f3a9e2SDavid Vrabel and Ultrasira. 73553f3a9e2SDavid Vrabel 73653f3a9e2SDavid Vrabel Note: These controllers only support SDIO cards and do not 73753f3a9e2SDavid Vrabel support MMC or SD memory cards. 7383a96dff0STony Prisk 7393a96dff0STony Priskconfig MMC_WMT 7403a96dff0STony Prisk tristate "Wondermedia SD/MMC Host Controller support" 7413a96dff0STony Prisk depends on ARCH_VT8500 7423a96dff0STony Prisk default y 7433a96dff0STony Prisk help 7443a96dff0STony Prisk This selects support for the SD/MMC Host Controller on 7453a96dff0STony Prisk Wondermedia WM8505/WM8650 based SoCs. 7463a96dff0STony Prisk 7473a96dff0STony Prisk To compile this driver as a module, choose M here: the 7483a96dff0STony Prisk module will be called wmt-sdmmc. 7496a5971d8SLinus Torvalds 75075fa9ea6SGuennadi Liakhovetskiconfig MMC_USDHI6ROL0 75175fa9ea6SGuennadi Liakhovetski tristate "Renesas USDHI6ROL0 SD/SDIO Host Controller support" 7521ef94740SGeert Uytterhoeven depends on HAS_DMA 75375fa9ea6SGuennadi Liakhovetski help 75475fa9ea6SGuennadi Liakhovetski This selects support for the Renesas USDHI6ROL0 SD/SDIO 75575fa9ea6SGuennadi Liakhovetski Host Controller 75675fa9ea6SGuennadi Liakhovetski 7572c94b645SWei WANGconfig MMC_REALTEK_PCI 7582c94b645SWei WANG tristate "Realtek PCI-E SD/MMC Card Interface Driver" 7592c94b645SWei WANG depends on MFD_RTSX_PCI 7602c94b645SWei WANG help 7612c94b645SWei WANG Say Y here to include driver code to support SD/MMC card interface 7622c94b645SWei WANG of Realtek PCI-E card reader 763c7f6558dSRoger Tseng 764c7f6558dSRoger Tsengconfig MMC_REALTEK_USB 765c7f6558dSRoger Tseng tristate "Realtek USB SD/MMC Card Interface Driver" 766c7f6558dSRoger Tseng depends on MFD_RTSX_USB 767c7f6558dSRoger Tseng help 768c7f6558dSRoger Tseng Say Y here to include driver code to support SD/MMC card interface 769c7f6558dSRoger Tseng of Realtek RTS5129/39 series card reader 77019b7f796SDavid Lanzendörfer 77119b7f796SDavid Lanzendörferconfig MMC_SUNXI 77219b7f796SDavid Lanzendörfer tristate "Allwinner sunxi SD/MMC Host Controller support" 77319b7f796SDavid Lanzendörfer depends on ARCH_SUNXI 77419b7f796SDavid Lanzendörfer help 77519b7f796SDavid Lanzendörfer This selects support for the SD/MMC Host Controller on 77619b7f796SDavid Lanzendörfer Allwinner sunxi SoCs. 777a5eb8bbdSOndrej Zary 778a5eb8bbdSOndrej Zaryconfig MMC_TOSHIBA_PCI 779a5eb8bbdSOndrej Zary tristate "Toshiba Type A SD/MMC Card Interface Driver" 780a5eb8bbdSOndrej Zary depends on PCI 781a5eb8bbdSOndrej Zary help 78220848903SChaotian Jing 78320848903SChaotian Jingconfig MMC_MTK 78420848903SChaotian Jing tristate "MediaTek SD/MMC Card Interface support" 785c2b22fffSGeert Uytterhoeven depends on HAS_DMA 78620848903SChaotian Jing help 78720848903SChaotian Jing This selects the MediaTek(R) Secure digital and Multimedia card Interface. 78820848903SChaotian Jing If you have a machine with a integrated SD/MMC card reader, say Y or M here. 78920848903SChaotian Jing This is needed if support for any SD/SDIO/MMC devices is required. 79020848903SChaotian Jing If unsure, say N. 7915d9460d7SAndrei Pistirica 7925d9460d7SAndrei Pistiricaconfig MMC_SDHCI_MICROCHIP_PIC32 7935d9460d7SAndrei Pistirica tristate "Microchip PIC32MZDA SDHCI support" 7945d9460d7SAndrei Pistirica depends on MMC_SDHCI && PIC32MZDA && MMC_SDHCI_PLTFM 7955d9460d7SAndrei Pistirica help 7965d9460d7SAndrei Pistirica This selects the Secure Digital Host Controller Interface (SDHCI) 7975d9460d7SAndrei Pistirica for PIC32MZDA platform. 7985d9460d7SAndrei Pistirica 7995d9460d7SAndrei Pistirica If you have a controller with this interface, say Y or M here. 8005d9460d7SAndrei Pistirica 8015d9460d7SAndrei Pistirica If unsure, say N. 802476bf3d6SAl Cooperconfig MMC_SDHCI_BRCMSTB 803476bf3d6SAl Cooper tristate "Broadcom SDIO/SD/MMC support" 804476bf3d6SAl Cooper depends on ARCH_BRCMSTB || BMIPS_GENERIC 805476bf3d6SAl Cooper depends on MMC_SDHCI_PLTFM 806476bf3d6SAl Cooper default y 807476bf3d6SAl Cooper help 808476bf3d6SAl Cooper This selects support for the SDIO/SD/MMC Host Controller on 809476bf3d6SAl Cooper Broadcom STB SoCs. 810476bf3d6SAl Cooper 811476bf3d6SAl Cooper If unsure, say Y. 812