mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 21:24:29 +00:00
c4c726c26b
Adding pinconf support is necessary to enable boot from SPI without breaking the eMMC. When booting from SPI, the ROM code leave pull downs on the eMMC pad. We need to set pinconf provided in DT to solve this Signed-off-by: Jerome Brunet <jbrunet@baylibre.com> Signed-off-by: Neil Armstrong <narmstrong@baylibre.com> [narmstrong: added missing comma in pinctrl-meson-axg-pmx.c]
28 lines
507 B
Text
28 lines
507 B
Text
if ARCH_MESON
|
|
|
|
config PINCTRL_MESON
|
|
select PINCTRL_GENERIC
|
|
select PINCONF
|
|
bool
|
|
|
|
config PINCTRL_MESON_GX_PMX
|
|
select PINCTRL_MESON
|
|
bool
|
|
|
|
config PINCTRL_MESON_AXG_PMX
|
|
select PINCTRL_MESON
|
|
bool
|
|
|
|
config PINCTRL_MESON_GXBB
|
|
bool "Amlogic Meson GXBB SoC pinctrl driver"
|
|
select PINCTRL_MESON_GX_PMX
|
|
|
|
config PINCTRL_MESON_GXL
|
|
bool "Amlogic Meson GXL SoC pinctrl driver"
|
|
select PINCTRL_MESON_GX_PMX
|
|
|
|
config PINCTRL_MESON_AXG
|
|
bool "Amlogic Meson AXG SoC pinctrl driver"
|
|
select PINCTRL_MESON_AXG_PMX
|
|
|
|
endif
|