Merge "pinctrl: qcom: Add support for Cliffs SoC in pin control"

This commit is contained in:
qctecmdr 2023-04-06 18:36:54 -07:00 committed by Gerrit - the friendly Code Review server
commit d309025643
3 changed files with 2241 additions and 0 deletions

View File

@ -23,6 +23,17 @@ config PINCTRL_PINEAPPLE
Say Y here to compile statically, or M here to compile it as a
module. If unsure, say N.
config PINCTRL_CLIFFS
tristate "Qualcomm Technologies, Inc. CLIFFS pin controller driver"
depends on GPIOLIB && OF
select PINCTRL_MSM
help
This is the pinctrl, pinmux, pinconf and gpiolib driver for the
Qualcomm Technologies Inc Top Level Mode Multiplexer block (TLMM)
block found on the Qualcomm Technologies Inc CLIFFS platform.
Say Y here to compile statically, or M here to compile it as a
module. If unsure, say N.
config PINCTRL_KALAMA
tristate "Qualcomm Technologies Inc KALAMA pin controller driver"
depends on GPIOLIB && OF

View File

@ -2,6 +2,7 @@
# Qualcomm pin control drivers
obj-$(CONFIG_PINCTRL_MSM) += pinctrl-msm.o
obj-$(CONFIG_PINCTRL_PINEAPPLE) += pinctrl-pineapple.o
obj-$(CONFIG_PINCTRL_CLIFFS) += pinctrl-cliffs.o
obj-$(CONFIG_PINCTRL_KALAMA) += pinctrl-kalama.o
obj-$(CONFIG_PINCTRL_APQ8064) += pinctrl-apq8064.o
obj-$(CONFIG_PINCTRL_APQ8084) += pinctrl-apq8084.o

File diff suppressed because it is too large Load Diff