Nobuhiro Iwamatsu | 72d42ba | 2014-12-17 08:03:00 +0900 | [diff] [blame] | 1 | menu "MMC Host controller Support" |
| 2 | |
Maxime Ripard | 7a777f6 | 2015-10-15 22:04:05 +0200 | [diff] [blame] | 3 | config MMC |
Masahiro Yamada | c272699 | 2016-12-07 22:10:26 +0900 | [diff] [blame] | 4 | bool "MMC/SD/SDIO card support" |
| 5 | default ARM || PPC || SANDBOX |
Maxime Ripard | 7a777f6 | 2015-10-15 22:04:05 +0200 | [diff] [blame] | 6 | help |
Masahiro Yamada | c272699 | 2016-12-07 22:10:26 +0900 | [diff] [blame] | 7 | This selects MultiMediaCard, Secure Digital and Secure |
| 8 | Digital I/O support. |
| 9 | |
| 10 | If you want MMC/SD/SDIO support, you should say Y here and |
| 11 | also to your specific host controller driver. |
Maxime Ripard | 7a777f6 | 2015-10-15 22:04:05 +0200 | [diff] [blame] | 12 | |
Simon Glass | e7ecf7c | 2015-06-23 15:38:48 -0600 | [diff] [blame] | 13 | config DM_MMC |
| 14 | bool "Enable MMC controllers using Driver Model" |
| 15 | depends on DM |
| 16 | help |
Robert P. J. Day | 62a3b7d | 2016-07-15 13:44:45 -0400 | [diff] [blame] | 17 | This enables the MultiMediaCard (MMC) uclass which supports MMC and |
Simon Glass | e7ecf7c | 2015-06-23 15:38:48 -0600 | [diff] [blame] | 18 | Secure Digital I/O (SDIO) cards. Both removable (SD, micro-SD, etc.) |
| 19 | and non-removable (e.g. eMMC chip) devices are supported. These |
| 20 | appear as block devices in U-Boot and can support filesystems such |
| 21 | as EXT4 and FAT. |
| 22 | |
Simon Glass | 8ca51e5 | 2016-06-12 23:30:22 -0600 | [diff] [blame] | 23 | config DM_MMC_OPS |
| 24 | bool "Support MMC controller operations using Driver Model" |
| 25 | depends on DM_MMC |
Simon Glass | 252788b | 2016-10-01 14:43:19 -0600 | [diff] [blame] | 26 | default y if DM_MMC |
Simon Glass | 8ca51e5 | 2016-06-12 23:30:22 -0600 | [diff] [blame] | 27 | help |
| 28 | Driver model provides a means of supporting device operations. This |
| 29 | option moves MMC operations under the control of driver model. The |
| 30 | option will be removed as soon as all DM_MMC drivers use it, as it |
| 31 | will the only supported behaviour. |
| 32 | |
Masahiro Yamada | e298c46 | 2016-12-07 22:10:27 +0900 | [diff] [blame^] | 33 | if MMC |
| 34 | |
Marek Vasut | b5b838f | 2016-12-01 02:06:33 +0100 | [diff] [blame] | 35 | config SPL_MMC_TINY |
| 36 | bool "Tiny MMC framework in SPL" |
| 37 | help |
| 38 | Enable MMC framework tinification support. This option is useful if |
| 39 | if your SPL is extremely size constrained. Heed the warning, enable |
| 40 | this option if and only if you know exactly what you are doing, if |
| 41 | you are reading this help text, you most likely have no idea :-) |
| 42 | |
| 43 | The MMC framework is reduced to bare minimum to be useful. No malloc |
| 44 | support is needed for the MMC framework operation with this option |
| 45 | enabled. The framework supports exactly one MMC device and exactly |
| 46 | one MMC driver. The MMC driver can be adjusted to avoid any malloc |
| 47 | operations too, which can remove the need for malloc support in SPL |
| 48 | and thus further reduce footprint. |
| 49 | |
Mateusz Kulikowski | 9d11d12 | 2016-03-31 23:12:16 +0200 | [diff] [blame] | 50 | config MSM_SDHCI |
| 51 | bool "Qualcomm SDHCI controller" |
Simon Glass | 4b00bdb | 2016-06-12 23:30:31 -0600 | [diff] [blame] | 52 | depends on DM_MMC && BLK && DM_MMC_OPS |
Mateusz Kulikowski | 9d11d12 | 2016-03-31 23:12:16 +0200 | [diff] [blame] | 53 | help |
| 54 | Enables support for SDHCI 2.0 controller present on some Qualcomm |
| 55 | Snapdragon devices. This device is compatible with eMMC v4.5 and |
| 56 | SD 3.0 specifications. Both SD and eMMC devices are supported. |
| 57 | Card-detect gpios are not supported. |
| 58 | |
Wenyou Yang | a0d0d86 | 2016-08-10 10:51:05 +0800 | [diff] [blame] | 59 | config ATMEL_SDHCI |
| 60 | bool "Atmel SDHCI controller support" |
| 61 | depends on DM_MMC && BLK && DM_MMC_OPS && ARCH_AT91 |
| 62 | help |
| 63 | This enables support for the Atmel SDHCI controller, which supports |
| 64 | the embedded MultiMedia Card (e.MMC) Specification V4.51, the SD |
| 65 | Memory Card Specification V3.0, and the SDIO V3.0 specification. |
| 66 | It is compliant with the SD Host Controller Standard V3.0 |
| 67 | specification. |
| 68 | |
Simon Glass | a8cb4fb | 2015-08-30 16:55:37 -0600 | [diff] [blame] | 69 | config ROCKCHIP_DWMMC |
| 70 | bool "Rockchip SD/MMC controller support" |
| 71 | depends on DM_MMC && OF_CONTROL |
| 72 | help |
| 73 | This enables support for the Rockchip SD/MMM controller, which is |
| 74 | based on Designware IP. The device is compatible with at least |
| 75 | SD 3.0, SDIO 3.0 and MMC 4.5 and supports common eMMC chips as well |
| 76 | as removeable SD and micro-SD cards. |
| 77 | |
Nobuhiro Iwamatsu | 72d42ba | 2014-12-17 08:03:00 +0900 | [diff] [blame] | 78 | config SH_SDHI |
| 79 | bool "SuperH/Renesas ARM SoCs on-chip SDHI host controller support" |
| 80 | depends on RMOBILE |
| 81 | help |
| 82 | Support for the on-chip SDHI host controller on SuperH/Renesas ARM SoCs platform |
| 83 | |
Andrei Pistirica | 102142c | 2016-01-28 15:30:18 +0530 | [diff] [blame] | 84 | config PIC32_SDHCI |
| 85 | bool "Microchip PIC32 on-chip SDHCI support" |
| 86 | depends on DM_MMC && MACH_PIC32 |
| 87 | help |
| 88 | Support for Microchip PIC32 SDHCI controller. |
| 89 | |
Michal Simek | ce0335f | 2016-02-04 11:43:40 +0100 | [diff] [blame] | 90 | config ZYNQ_SDHCI |
| 91 | bool "Arasan SDHCI controller support" |
Michal Simek | 9c4132b | 2016-12-15 11:15:49 +0100 | [diff] [blame] | 92 | depends on DM_MMC && OF_CONTROL && BLK && DM_MMC_OPS |
Michal Simek | ce0335f | 2016-02-04 11:43:40 +0100 | [diff] [blame] | 93 | help |
| 94 | Support for Arasan SDHCI host controller on Zynq/ZynqMP ARM SoCs platform |
| 95 | |
Kever Yang | 79c8306 | 2016-07-18 17:00:58 +0800 | [diff] [blame] | 96 | config ROCKCHIP_SDHCI |
| 97 | bool "Arasan SDHCI controller for Rockchip support" |
| 98 | depends on DM_MMC && BLK && DM_MMC_OPS |
| 99 | help |
| 100 | Support for Arasan SDHCI host controller on Rockchip ARM SoCs platform |
| 101 | |
Masahiro Yamada | a111bfb | 2016-02-18 19:52:48 +0900 | [diff] [blame] | 102 | config MMC_UNIPHIER |
| 103 | bool "UniPhier SD/MMC Host Controller support" |
| 104 | depends on ARCH_UNIPHIER |
Masahiro Yamada | 14f4723 | 2016-09-14 01:06:03 +0900 | [diff] [blame] | 105 | depends on BLK |
Masahiro Yamada | 3937404 | 2016-08-25 14:52:35 +0900 | [diff] [blame] | 106 | select DM_MMC_OPS |
Masahiro Yamada | a111bfb | 2016-02-18 19:52:48 +0900 | [diff] [blame] | 107 | help |
| 108 | This selects support for the SD/MMC Host Controller on UniPhier SoCs. |
| 109 | |
Simon Glass | f376a3c | 2016-05-01 13:52:42 -0600 | [diff] [blame] | 110 | config SANDBOX_MMC |
| 111 | bool "Sandbox MMC support" |
| 112 | depends on MMC && SANDBOX |
| 113 | help |
| 114 | This select a dummy sandbox MMC driver. At present this does nothing |
| 115 | other than allow sandbox to be build with MMC support. This |
| 116 | improves build coverage for sandbox and makes it easier to detect |
| 117 | MMC build errors with sandbox. |
| 118 | |
Masahiro Yamada | e298c46 | 2016-12-07 22:10:27 +0900 | [diff] [blame^] | 119 | endif |
| 120 | |
Nobuhiro Iwamatsu | 72d42ba | 2014-12-17 08:03:00 +0900 | [diff] [blame] | 121 | endmenu |