mirror of
https://github.com/u-boot/u-boot.git
synced 2024-11-23 12:14:32 +08:00
4d30111cea
This patch adds pinctrl support for MediaTek MT7621 SoC. The MT7621 SoC supports pinconf, but it is not the same as mt7628. Reviewed-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com> Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
32 lines
995 B
Plaintext
32 lines
995 B
Plaintext
|
|
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_MT7621
|
|
bool "MediaTek MT7621 pin control driver"
|
|
select PINCTRL_MTMIPS
|
|
depends on SOC_MT7621 && PINCTRL_GENERIC
|
|
help
|
|
Support pin multiplexing control on MediaTek MT7621.
|
|
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.
|