mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 22:20:55 +07:00
ee086577ab
This commit adds a new pinctrl driver for the Marvell Armada 39x family of processors, which hooks into the existing infrastructure to support pin-muxing on Marvell EBU processors. Two variants of the Armada 39x are supported: 88F6920 (Armada 390) and 88F6928 (Armada 398), which have a few differences in the available functions for certain pins. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
10 lines
477 B
Makefile
10 lines
477 B
Makefile
obj-$(CONFIG_PINCTRL_MVEBU) += pinctrl-mvebu.o
|
|
obj-$(CONFIG_PINCTRL_DOVE) += pinctrl-dove.o
|
|
obj-$(CONFIG_PINCTRL_KIRKWOOD) += pinctrl-kirkwood.o
|
|
obj-$(CONFIG_PINCTRL_ARMADA_370) += pinctrl-armada-370.o
|
|
obj-$(CONFIG_PINCTRL_ARMADA_375) += pinctrl-armada-375.o
|
|
obj-$(CONFIG_PINCTRL_ARMADA_38X) += pinctrl-armada-38x.o
|
|
obj-$(CONFIG_PINCTRL_ARMADA_39X) += pinctrl-armada-39x.o
|
|
obj-$(CONFIG_PINCTRL_ARMADA_XP) += pinctrl-armada-xp.o
|
|
obj-$(CONFIG_PINCTRL_ORION) += pinctrl-orion.o
|