Kconfig 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. menu "MMC Host controller Support"
  2. config MMC
  3. bool "MMC/SD/SDIO card support"
  4. default ARM || PPC || SANDBOX
  5. help
  6. This selects MultiMediaCard, Secure Digital and Secure
  7. Digital I/O support.
  8. If you want MMC/SD/SDIO support, you should say Y here and
  9. also to your specific host controller driver.
  10. config DM_MMC
  11. bool "Enable MMC controllers using Driver Model"
  12. depends on DM
  13. help
  14. This enables the MultiMediaCard (MMC) uclass which supports MMC and
  15. Secure Digital I/O (SDIO) cards. Both removable (SD, micro-SD, etc.)
  16. and non-removable (e.g. eMMC chip) devices are supported. These
  17. appear as block devices in U-Boot and can support filesystems such
  18. as EXT4 and FAT.
  19. config DM_MMC_OPS
  20. bool "Support MMC controller operations using Driver Model"
  21. depends on DM_MMC
  22. default y if DM_MMC
  23. help
  24. Driver model provides a means of supporting device operations. This
  25. option moves MMC operations under the control of driver model. The
  26. option will be removed as soon as all DM_MMC drivers use it, as it
  27. will the only supported behaviour.
  28. if MMC
  29. config SPL_MMC_TINY
  30. bool "Tiny MMC framework in SPL"
  31. help
  32. Enable MMC framework tinification support. This option is useful if
  33. if your SPL is extremely size constrained. Heed the warning, enable
  34. this option if and only if you know exactly what you are doing, if
  35. you are reading this help text, you most likely have no idea :-)
  36. The MMC framework is reduced to bare minimum to be useful. No malloc
  37. support is needed for the MMC framework operation with this option
  38. enabled. The framework supports exactly one MMC device and exactly
  39. one MMC driver. The MMC driver can be adjusted to avoid any malloc
  40. operations too, which can remove the need for malloc support in SPL
  41. and thus further reduce footprint.
  42. config MSM_SDHCI
  43. bool "Qualcomm SDHCI controller"
  44. depends on DM_MMC && BLK && DM_MMC_OPS
  45. depends on MMC_SDHCI
  46. help
  47. Enables support for SDHCI 2.0 controller present on some Qualcomm
  48. Snapdragon devices. This device is compatible with eMMC v4.5 and
  49. SD 3.0 specifications. Both SD and eMMC devices are supported.
  50. Card-detect gpios are not supported.
  51. config ATMEL_SDHCI
  52. bool "Atmel SDHCI controller support"
  53. depends on DM_MMC && BLK && DM_MMC_OPS && ARCH_AT91
  54. depends on MMC_SDHCI
  55. help
  56. This enables support for the Atmel SDHCI controller, which supports
  57. the embedded MultiMedia Card (e.MMC) Specification V4.51, the SD
  58. Memory Card Specification V3.0, and the SDIO V3.0 specification.
  59. It is compliant with the SD Host Controller Standard V3.0
  60. specification.
  61. config ROCKCHIP_DWMMC
  62. bool "Rockchip SD/MMC controller support"
  63. depends on DM_MMC && OF_CONTROL
  64. help
  65. This enables support for the Rockchip SD/MMM controller, which is
  66. based on Designware IP. The device is compatible with at least
  67. SD 3.0, SDIO 3.0 and MMC 4.5 and supports common eMMC chips as well
  68. as removeable SD and micro-SD cards.
  69. config SH_SDHI
  70. bool "SuperH/Renesas ARM SoCs on-chip SDHI host controller support"
  71. depends on RMOBILE
  72. help
  73. Support for the on-chip SDHI host controller on SuperH/Renesas ARM SoCs platform
  74. config PIC32_SDHCI
  75. bool "Microchip PIC32 on-chip SDHCI support"
  76. depends on DM_MMC && MACH_PIC32
  77. depends on MMC_SDHCI
  78. help
  79. Support for Microchip PIC32 SDHCI controller.
  80. config ZYNQ_SDHCI
  81. bool "Arasan SDHCI controller support"
  82. depends on DM_MMC && OF_CONTROL && BLK && DM_MMC_OPS
  83. depends on MMC_SDHCI
  84. help
  85. Support for Arasan SDHCI host controller on Zynq/ZynqMP ARM SoCs platform
  86. config ROCKCHIP_SDHCI
  87. bool "Arasan SDHCI controller for Rockchip support"
  88. depends on DM_MMC && BLK && DM_MMC_OPS
  89. depends on MMC_SDHCI
  90. help
  91. Support for Arasan SDHCI host controller on Rockchip ARM SoCs platform
  92. config MMC_UNIPHIER
  93. bool "UniPhier SD/MMC Host Controller support"
  94. depends on ARCH_UNIPHIER
  95. depends on BLK
  96. select DM_MMC_OPS
  97. help
  98. This selects support for the SD/MMC Host Controller on UniPhier SoCs.
  99. config SANDBOX_MMC
  100. bool "Sandbox MMC support"
  101. depends on MMC && SANDBOX
  102. help
  103. This select a dummy sandbox MMC driver. At present this does nothing
  104. other than allow sandbox to be build with MMC support. This
  105. improves build coverage for sandbox and makes it easier to detect
  106. MMC build errors with sandbox.
  107. config MMC_SDHCI
  108. bool "Secure Digital Host Controller Interface support"
  109. help
  110. This selects the generic Secure Digital Host Controller Interface.
  111. It is used by manufacturers such as Texas Instruments(R), Ricoh(R)
  112. and Toshiba(R). Most controllers found in laptops are of this type.
  113. If you have a controller with this interface, say Y here.
  114. If unsure, say N.
  115. config MMC_SDHCI_IO_ACCESSORS
  116. bool
  117. depends on MMC_SDHCI
  118. help
  119. This is silent Kconfig symbol that is selected by the drivers that
  120. need to overwrite SDHCI IO memory accessors.
  121. config MMC_SDHCI_SDMA
  122. bool "Support SDHCI SDMA"
  123. depends on MMC_SDHCI
  124. help
  125. This enables support for the SDMA (Single Operation DMA) defined
  126. in the SD Host Controller Standard Specification Version 1.00 .
  127. config MMC_SDHCI_BCM2835
  128. tristate "SDHCI support for the BCM2835 SD/MMC Controller"
  129. depends on ARCH_BCM283X
  130. depends on MMC_SDHCI
  131. select MMC_SDHCI_IO_ACCESSORS
  132. help
  133. This selects the BCM2835 SD/MMC controller.
  134. If you have a BCM2835 platform with SD or MMC devices,
  135. say Y here.
  136. If unsure, say N.
  137. config MMC_SDHCI_KONA
  138. bool "SDHCI support on Broadcom KONA platform"
  139. depends on MMC_SDHCI
  140. help
  141. This selects the Broadcom Kona Secure Digital Host Controller
  142. Interface(SDHCI) support.
  143. This is used in Broadcom mobile SoCs.
  144. If you have a controller with this interface, say Y here.
  145. config MMC_SDHCI_MV
  146. bool "SDHCI support on Marvell platform"
  147. depends on ARCH_MVEBU
  148. depends on MMC_SDHCI
  149. help
  150. This selects the Secure Digital Host Controller Interface on
  151. Marvell platform.
  152. If you have a controller with this interface, say Y here.
  153. If unsure, say N.
  154. config MMC_SDHCI_S5P
  155. bool "SDHCI support on Samsung S5P SoC"
  156. depends on MMC_SDHCI
  157. help
  158. This selects the Secure Digital Host Controller Interface (SDHCI)
  159. on Samsung S5P SoCs.
  160. If you have a controller with this interface, say Y here.
  161. If unsure, say N.
  162. config MMC_SDHCI_SPEAR
  163. bool "SDHCI support on ST SPEAr platform"
  164. depends on MMC_SDHCI
  165. help
  166. This selects the Secure Digital Host Controller Interface (SDHCI)
  167. often referrered to as the HSMMC block in some of the ST SPEAR range
  168. of SoC
  169. If you have a controller with this interface, say Y here.
  170. If unsure, say N.
  171. endif
  172. endmenu
  173. config SYS_FSL_ERRATUM_ESDHC111
  174. bool
  175. config SYS_FSL_ERRATUM_ESDHC13
  176. bool
  177. config SYS_FSL_ERRATUM_ESDHC135
  178. bool
  179. config SYS_FSL_ERRATUM_ESDHC_A001
  180. bool