mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-17 10:18:38 +00:00
8587839f19
This adds support for the Amlogic AXG SoC pinctrl and GPIO controller using a specific set of pinctrl functions which differs from the GX SoCs. Signed-off-by: Jerome Brunet <jbrunet@baylibre.com> Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
27 lines
491 B
Text
27 lines
491 B
Text
if ARCH_MESON
|
|
|
|
config PINCTRL_MESON
|
|
select PINCTRL_GENERIC
|
|
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
|