Commit 80045071 authored by AngeloGioacchino Del Regno's avatar AngeloGioacchino Del Regno Committed by Linus Walleij
Browse files

pinctrl: mediatek: Add pinctrl driver for MT6893 Dimensity 1200



Add support for the MediaTek Dimensity 1200 (MT6893) SoC's
GPIO/pinmux controller.

Signed-off-by: default avatarAngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
Link: https://lore.kernel.org/20250410144044.476060-3-angelogioacchino.delregno@collabora.com


Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 7acdd10e
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_MT6893
	bool "MediaTek Dimensity MT6893 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 Dimensity 1200 MT6893 Smartphone SoC.

config PINCTRL_MT7622
	bool "MediaTek MT7622 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_MT6893)		+= pinctrl-mt6893.o
obj-$(CONFIG_PINCTRL_MT7622)		+= pinctrl-mt7622.o
obj-$(CONFIG_PINCTRL_MT7623)		+= pinctrl-mt7623.o
obj-$(CONFIG_PINCTRL_MT7629)		+= pinctrl-mt7629.o
+879 −0

File added.

Preview size limit exceeded, changes collapsed.

+2283 −0

File added.

Preview size limit exceeded, changes collapsed.