mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
148b95eea0
Add mt2701 support using mediatek common pinctrl driver. MT2701 have some special pins need an extra setting register than other ICs, so adding this support to common code. Signed-off-by: Biao Huang <biao.huang@mediatek.com> Acked-by: Yingjoe Chen <yingjoe.chen@mediatek.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
46 lines
985 B
Plaintext
46 lines
985 B
Plaintext
if ARCH_MEDIATEK || COMPILE_TEST
|
|
|
|
config PINCTRL_MTK_COMMON
|
|
bool
|
|
depends on OF
|
|
select PINMUX
|
|
select GENERIC_PINCONF
|
|
select GPIOLIB
|
|
select OF_GPIO
|
|
|
|
# For ARMv7 SoCs
|
|
config PINCTRL_MT2701
|
|
bool "Mediatek MT2701 pin control" if COMPILE_TEST && !MACH_MT2701
|
|
depends on OF
|
|
default MACH_MT2701
|
|
select PINCTRL_MTK_COMMON
|
|
|
|
config PINCTRL_MT8135
|
|
bool "Mediatek MT8135 pin control" if COMPILE_TEST && !MACH_MT8135
|
|
depends on OF
|
|
default MACH_MT8135
|
|
select PINCTRL_MTK_COMMON
|
|
|
|
config PINCTRL_MT8127
|
|
bool "Mediatek MT8127 pin control" if COMPILE_TEST && !MACH_MT8127
|
|
depends on OF
|
|
default MACH_MT8127
|
|
select PINCTRL_MTK_COMMON
|
|
|
|
# For ARMv8 SoCs
|
|
config PINCTRL_MT8173
|
|
bool "Mediatek MT8173 pin control"
|
|
depends on OF
|
|
depends on ARM64 || COMPILE_TEST
|
|
default ARM64 && ARCH_MEDIATEK
|
|
select PINCTRL_MTK_COMMON
|
|
|
|
# For PMIC
|
|
config PINCTRL_MT6397
|
|
bool "Mediatek MT6397 pin control" if COMPILE_TEST && !MFD_MT6397
|
|
depends on OF
|
|
default MFD_MT6397
|
|
select PINCTRL_MTK_COMMON
|
|
|
|
endif
|