mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-29 15:43:59 +08:00
71a9d395aa
Removing the linux/gpio.h include means we no longer have a declaration
of gpiochip_lock_as_irq() when CONFIG_GPIOLIB is disabled:
drivers/pinctrl/mediatek/mtk-eint.c: In function 'mtk_eint_irq_request_resources':
drivers/pinctrl/mediatek/mtk-eint.c:247:8: error: implicit declaration of function 'gpiochip_lock_as_irq'; did you mean 'spin_lock_irq'? [-Werror=implicit-function-declaration]
drivers/pinctrl/mediatek/mtk-eint.c: In function 'mtk_eint_irq_release_resources':
drivers/pinctrl/mediatek/mtk-eint.c:272:2: error: implicit declaration of function 'gpiochip_unlock_as_irq'; did you mean 'spin_unlock_irq'? [-Werror=implicit-function-declaration]
Select it explictly instead.
Fixes: 1c5fb66afa
("pinctrl: Include <linux/gpio/driver.h> nothing else")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
109 lines
2.3 KiB
Plaintext
109 lines
2.3 KiB
Plaintext
menu "MediaTek pinctrl drivers"
|
|
depends on ARCH_MEDIATEK || COMPILE_TEST
|
|
|
|
config EINT_MTK
|
|
bool "MediaTek External Interrupt Support"
|
|
depends on PINCTRL_MTK || PINCTRL_MTK_MOORE || COMPILE_TEST
|
|
select GPIOLIB
|
|
select IRQ_DOMAIN
|
|
|
|
config PINCTRL_MTK
|
|
bool
|
|
depends on OF
|
|
select PINMUX
|
|
select GENERIC_PINCONF
|
|
select GPIOLIB
|
|
select EINT_MTK
|
|
select OF_GPIO
|
|
|
|
config PINCTRL_MTK_MOORE
|
|
bool "MediaTek Moore Core that implements generic binding"
|
|
depends on OF
|
|
select GENERIC_PINCONF
|
|
select GENERIC_PINCTRL_GROUPS
|
|
select GENERIC_PINMUX_FUNCTIONS
|
|
select GPIOLIB
|
|
select OF_GPIO
|
|
|
|
config PINCTRL_MTK_PARIS
|
|
bool "MediaTek Paris Core that implements vendor binding"
|
|
depends on OF
|
|
select PINMUX
|
|
select GENERIC_PINCONF
|
|
select GPIOLIB
|
|
select EINT_MTK
|
|
select OF_GPIO
|
|
|
|
# For ARMv7 SoCs
|
|
config PINCTRL_MT2701
|
|
bool "Mediatek MT2701 pin control"
|
|
depends on MACH_MT7623 || MACH_MT2701 || COMPILE_TEST
|
|
depends on OF
|
|
default MACH_MT2701
|
|
select PINCTRL_MTK
|
|
|
|
config PINCTRL_MT7623
|
|
bool "Mediatek MT7623 pin control with generic binding"
|
|
depends on MACH_MT7623 || COMPILE_TEST
|
|
depends on PINCTRL_MTK_MOORE
|
|
default y
|
|
|
|
config PINCTRL_MT8135
|
|
bool "Mediatek MT8135 pin control"
|
|
depends on MACH_MT8135 || COMPILE_TEST
|
|
depends on OF
|
|
default MACH_MT8135
|
|
select PINCTRL_MTK
|
|
|
|
config PINCTRL_MT8127
|
|
bool "Mediatek MT8127 pin control"
|
|
depends on MACH_MT8127 || COMPILE_TEST
|
|
depends on OF
|
|
default MACH_MT8127
|
|
select PINCTRL_MTK
|
|
|
|
# For ARMv8 SoCs
|
|
config PINCTRL_MT2712
|
|
bool "MediaTek MT2712 pin control"
|
|
depends on OF
|
|
depends on ARM64 || COMPILE_TEST
|
|
default ARM64 && ARCH_MEDIATEK
|
|
select PINCTRL_MTK
|
|
|
|
config PINCTRL_MT6765
|
|
bool "Mediatek MT6765 pin control"
|
|
depends on OF
|
|
depends on ARM64 || COMPILE_TEST
|
|
default ARM64 && ARCH_MEDIATEK
|
|
select PINCTRL_MTK_PARIS
|
|
|
|
config PINCTRL_MT7622
|
|
bool "MediaTek MT7622 pin control"
|
|
depends on ARM64 || COMPILE_TEST
|
|
depends on PINCTRL_MTK_MOORE
|
|
default y
|
|
|
|
config PINCTRL_MT8173
|
|
bool "Mediatek MT8173 pin control"
|
|
depends on OF
|
|
depends on ARM64 || COMPILE_TEST
|
|
default ARM64 && ARCH_MEDIATEK
|
|
select PINCTRL_MTK
|
|
|
|
config PINCTRL_MT8183
|
|
bool "Mediatek MT8183 pin control"
|
|
depends on OF
|
|
depends on ARM64 || COMPILE_TEST
|
|
default ARM64 && ARCH_MEDIATEK
|
|
select PINCTRL_MTK_PARIS
|
|
|
|
# For PMIC
|
|
config PINCTRL_MT6397
|
|
bool "Mediatek MT6397 pin control"
|
|
depends on MFD_MT6397 || COMPILE_TEST
|
|
depends on OF
|
|
default MFD_MT6397
|
|
select PINCTRL_MTK
|
|
|
|
endmenu
|