Commit 89c13ea3 authored by Igor Belwon's avatar Igor Belwon Committed by Linus Walleij
Browse files

pinctrl: mediatek: Add support for MT6878 pinctrl



Add driver support for the pin controller found in the MediaTek
Dimensity 7300 (MT6878) SoC.

Reviewed-by: default avatarAngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
Signed-off-by: default avatarIgor Belwon <igor.belwon@mentallysanemainliners.org>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 18349bfb
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -181,6 +181,16 @@ config PINCTRL_MT6797
	default ARM64 && ARCH_MEDIATEK
	select PINCTRL_MTK_PARIS

config PINCTRL_MT6878
	bool "MediaTek MT6878 pin control"
	depends on OF
	depends on ARM64 || COMPILE_TEST
	default ARM64 && ARCH_MEDIATEK
	select PINCTRL_MTK_PARIS
	help
	  Say yes here to support pin controller and gpio driver
	  on the MediaTek MT6878 SoC.

config PINCTRL_MT6893
	bool "MediaTek Dimensity MT6893 pin control"
	depends on OF
+1 −0
Original line number Diff line number Diff line
@@ -23,6 +23,7 @@ obj-$(CONFIG_PINCTRL_MT6765) += pinctrl-mt6765.o
obj-$(CONFIG_PINCTRL_MT6779)		+= pinctrl-mt6779.o
obj-$(CONFIG_PINCTRL_MT6795)		+= pinctrl-mt6795.o
obj-$(CONFIG_PINCTRL_MT6797)		+= pinctrl-mt6797.o
obj-$(CONFIG_PINCTRL_MT6878)		+= pinctrl-mt6878.o
obj-$(CONFIG_PINCTRL_MT6893)		+= pinctrl-mt6893.o
obj-$(CONFIG_PINCTRL_MT7622)		+= pinctrl-mt7622.o
obj-$(CONFIG_PINCTRL_MT7623)		+= pinctrl-mt7623.o
+1478 −0

File added.

Preview size limit exceeded, changes collapsed.

+2248 −0

File added.

Preview size limit exceeded, changes collapsed.