mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
805250982b
Add pinctrl-paris core that implements vendor dt-binding which MediaTek tablet, box and smartphone-based SoCs such as MT81xx, MT27xx, and MT67xx SoCs really want to depend on. The driver is just completely rewritten according to pinctrl-mtk-common.c but uses the new logic from pinctrl-mtk-common-v2.c to have an elegant way to support new SoCs in the future. Signed-off-by: Zhiyong Tao <zhiyong.tao@mediatek.com> Signed-off-by: Sean Wang <sean.wang@mediatek.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
17 lines
687 B
Makefile
17 lines
687 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Core
|
|
obj-$(CONFIG_EINT_MTK) += mtk-eint.o
|
|
obj-$(CONFIG_PINCTRL_MTK) += pinctrl-mtk-common.o
|
|
obj-$(CONFIG_PINCTRL_MTK_MOORE) += pinctrl-moore.o pinctrl-mtk-common-v2.o
|
|
obj-$(CONFIG_PINCTRL_MTK_PARIS) += pinctrl-paris.o pinctrl-mtk-common-v2.o
|
|
|
|
# SoC Drivers
|
|
obj-$(CONFIG_PINCTRL_MT2701) += pinctrl-mt2701.o
|
|
obj-$(CONFIG_PINCTRL_MT2712) += pinctrl-mt2712.o
|
|
obj-$(CONFIG_PINCTRL_MT8135) += pinctrl-mt8135.o
|
|
obj-$(CONFIG_PINCTRL_MT8127) += pinctrl-mt8127.o
|
|
obj-$(CONFIG_PINCTRL_MT7622) += pinctrl-mt7622.o
|
|
obj-$(CONFIG_PINCTRL_MT7623) += pinctrl-mt7623.o
|
|
obj-$(CONFIG_PINCTRL_MT8173) += pinctrl-mt8173.o
|
|
obj-$(CONFIG_PINCTRL_MT6397) += pinctrl-mt6397.o
|