forked from Minki/linux
e78d57b2f8
Add a generic driver pinctrl-moore.c for MT762x SoC and any other SoC that would like to use generic dt-binding. The patch is furtherly refactored from pinctrl-mt7622.c that totally uses the functions back by the generic pinctrl core such as GENERIC_PINCONF, GENERIC_PINCTRL_GROUPS, and GENERIC_PINMUX_FUNCTIONS and its binding also completely follows up pinctrl-bindings.txt in Documentation/devicetree/bindings/pinctrl/ to implement. Signed-off-by: Ryder.Lee <ryder.lee@mediatek.com> Signed-off-by: Sean Wang <sean.wang@mediatek.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
15 lines
563 B
Makefile
15 lines
563 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
|
|
|
|
# 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_MT8173) += pinctrl-mt8173.o
|
|
obj-$(CONFIG_PINCTRL_MT6397) += pinctrl-mt6397.o
|