mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-19 07:27:50 +00:00
4a8ade1f6b
ARM64 maintainer doesn't want to add MACH_* for each SoC. Adjust mt8173 pinctrl kconfig entry so user can manually select it. Also make PINCTRL_MT8135 selectable when COMPILE_TEST is enabled. Signed-off-by: Yingjoe Chen <yingjoe.chen@mediatek.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
24 lines
469 B
Plaintext
24 lines
469 B
Plaintext
if ARCH_MEDIATEK || COMPILE_TEST
|
|
|
|
config PINCTRL_MTK_COMMON
|
|
bool
|
|
select PINMUX
|
|
select GENERIC_PINCONF
|
|
select GPIOLIB
|
|
select OF_GPIO
|
|
|
|
# For ARMv7 SoCs
|
|
config PINCTRL_MT8135
|
|
bool "Mediatek MT8135 pin control" if COMPILE_TEST && !MACH_MT8135
|
|
default MACH_MT8135
|
|
select PINCTRL_MTK_COMMON
|
|
|
|
# For ARMv8 SoCs
|
|
config PINCTRL_MT8173
|
|
bool "Mediatek MT8173 pin control"
|
|
depends on ARM64 || COMPILE_TEST
|
|
default ARM64 && ARCH_MEDIATEK
|
|
select PINCTRL_MTK_COMMON
|
|
|
|
endif
|