mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 21:24:29 +00:00
a9a3a3aafc
This patch adds pinctrl support for MediaTek MT7620 SoC. The MT7620 SoC supports only pinmux. Reviewed-by: Stefan Roese <sr@denx.de> Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
22 lines
681 B
Text
22 lines
681 B
Text
|
|
config PINCTRL_MTMIPS
|
|
depends on ARCH_MTMIPS
|
|
bool
|
|
|
|
config PINCTRL_MT7620
|
|
bool "MediaTek MT7620 pin control driver"
|
|
select PINCTRL_MTMIPS
|
|
depends on SOC_MT7620 && PINCTRL_GENERIC
|
|
help
|
|
Support pin multiplexing control on MediaTek MT7620.
|
|
The driver is controlled by a device tree node which contains
|
|
the pin mux functions for each available pin groups.
|
|
|
|
config PINCTRL_MT7628
|
|
bool "MediaTek MT7628 pin control driver"
|
|
select PINCTRL_MTMIPS
|
|
depends on SOC_MT7628 && PINCTRL_GENERIC
|
|
help
|
|
Support pin multiplexing control on MediaTek MT7628.
|
|
The driver is controlled by a device tree node which contains
|
|
the pin mux functions for each available pin groups.
|