mirror of
https://github.com/smaeul/u-boot.git
synced 2025-09-14 14:06:02 +01:00
Add pinctrl driver for the TLMM block found in the X1E80100 SoC. Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org> Tested-by: Caleb Connolly <caleb.connolly@linaro.org> # Yoga Slim 7x Reviewed-by: Caleb Connolly <caleb.connolly@linaro.org> Link: https://lore.kernel.org/r/20241115-topic-x1e80100-pinctrl-v1-1-35f984226e47@linaro.org Signed-off-by: Caleb Connolly <caleb.connolly@linaro.org>
96 lines
2.5 KiB
Plaintext
96 lines
2.5 KiB
Plaintext
if ARCH_SNAPDRAGON || ARCH_IPQ40XX
|
|
|
|
config PINCTRL_QCOM
|
|
depends on PINCTRL_GENERIC
|
|
def_bool n
|
|
|
|
menu "Qualcomm pinctrl drivers"
|
|
|
|
config PINCTRL_QCOM_APQ8016
|
|
bool "Qualcomm APQ8016 GCC"
|
|
select PINCTRL_QCOM
|
|
help
|
|
Say Y here to enable support for pinctrl on the MSM8916 / APQ8016
|
|
Snapdragon 410 SoC, as well as the associated GPIO driver.
|
|
|
|
config PINCTRL_QCOM_APQ8096
|
|
bool "Qualcomm APQ8096 GCC"
|
|
select PINCTRL_QCOM
|
|
help
|
|
Say Y here to enable support for pinctrl on the MSM8996 / APQ8096
|
|
Snapdragon 820 SoC, as well as the associated GPIO driver.
|
|
|
|
config PINCTRL_QCOM_IPQ4019
|
|
bool "Qualcomm IPQ4019 GCC"
|
|
select PINCTRL_QCOM
|
|
help
|
|
Say Y here to enable support for pinctrl on the IPQ4019 SoC,
|
|
as well as the associated GPIO driver.
|
|
|
|
config PINCTRL_QCOM_QCM2290
|
|
bool "Qualcomm QCM2290 GCC"
|
|
select PINCTRL_QCOM
|
|
help
|
|
Say Y here to enable support for pinctrl on the Snapdragon QCM2290 SoC,
|
|
as well as the associated GPIO driver.
|
|
|
|
config PINCTRL_QCOM_QCS404
|
|
bool "Qualcomm QCS404 GCC"
|
|
select PINCTRL_QCOM
|
|
help
|
|
Say Y here to enable support for pinctrl on the Snapdragon QCS404 SoC,
|
|
as well as the associated GPIO driver.
|
|
|
|
config PINCTRL_QCOM_SDM845
|
|
bool "Qualcomm SDM845 GCC"
|
|
select PINCTRL_QCOM
|
|
help
|
|
Say Y here to enable support for pinctrl on the Snapdragon 845 SoC,
|
|
as well as the associated GPIO driver.
|
|
|
|
config PINCTRL_QCOM_SM6115
|
|
bool "Qualcomm SM6115 GCC"
|
|
select PINCTRL_QCOM
|
|
help
|
|
Say Y here to enable support for pinctrl on the Snapdragon SM6115 SoC,
|
|
as well as the associated GPIO driver.
|
|
|
|
config PINCTRL_QCOM_SM8150
|
|
bool "Qualcomm SM8150 GCC"
|
|
select PINCTRL_QCOM
|
|
help
|
|
Say Y here to enable support for pinctrl on the Snapdragon SM8150 SoC,
|
|
as well as the associated GPIO driver.
|
|
|
|
config PINCTRL_QCOM_SM8250
|
|
bool "Qualcomm SM8250 GCC"
|
|
select PINCTRL_QCOM
|
|
help
|
|
Say Y here to enable support for pinctrl on the Snapdragon SM8250 SoC,
|
|
as well as the associated GPIO driver.
|
|
|
|
config PINCTRL_QCOM_SM8550
|
|
bool "Qualcomm SM8550 GCC"
|
|
select PINCTRL_QCOM
|
|
help
|
|
Say Y here to enable support for pinctrl on the Snapdragon SM8550 SoC,
|
|
as well as the associated GPIO driver.
|
|
|
|
config PINCTRL_QCOM_SM8650
|
|
bool "Qualcomm SM8650 GCC"
|
|
select PINCTRL_QCOM
|
|
help
|
|
Say Y here to enable support for pinctrl on the Snapdragon SM8650 SoC,
|
|
as well as the associated GPIO driver.
|
|
|
|
config PINCTRL_QCOM_X1E80100
|
|
bool "Qualcomm X1E80100 GCC"
|
|
select PINCTRL_QCOM
|
|
help
|
|
Say Y here to enable support for pinctrl on the Snapdragon X1E80100 SoC,
|
|
as well as the associated GPIO driver.
|
|
|
|
endmenu
|
|
|
|
endif
|