Message ID | 20250211-msm8937-v1-4-7d27ed67f708@mainlining.org (mailing list archive) |
---|---|
State | Not Applicable, archived |
Headers | show |
Series | Initial support of MSM8937 and Xiaomi Redmi 3S | expand |
On Tue, Feb 11, 2025 at 11:38 PM Barnabás Czémán <barnabas.czeman@mainlining.org> wrote: > From: Dang Huynh <danct12@riseup.net> > > It looks like both 8917 and 8937 are the same except for one pin > "wsa_reset". > > Signed-off-by: Dang Huynh <danct12@riseup.net> > Signed-off-by: Barnabás Czémán <barnabas.czeman@mainlining.org> Is this something I can just apply to the pinctrl tree? Yours, Linus Walleij
On 2025-02-14 11:20, Linus Walleij wrote: > On Tue, Feb 11, 2025 at 11:38 PM Barnabás Czémán > <barnabas.czeman@mainlining.org> wrote: > >> From: Dang Huynh <danct12@riseup.net> >> >> It looks like both 8917 and 8937 are the same except for one pin >> "wsa_reset". >> >> Signed-off-by: Dang Huynh <danct12@riseup.net> >> Signed-off-by: Barnabás Czémán <barnabas.czeman@mainlining.org> > > Is this something I can just apply to the pinctrl tree? I think you can. > > Yours, > Linus Walleij
diff --git a/drivers/pinctrl/qcom/Kconfig.msm b/drivers/pinctrl/qcom/Kconfig.msm index 35f47660a56b1a730d7724fd5a4fb490da9c7880..a0d63a6725393496e034ca26d218265b7ba4b53f 100644 --- a/drivers/pinctrl/qcom/Kconfig.msm +++ b/drivers/pinctrl/qcom/Kconfig.msm @@ -138,10 +138,10 @@ config PINCTRL_MSM8916 Qualcomm TLMM block found on the Qualcomm 8916 platform. config PINCTRL_MSM8917 - tristate "Qualcomm 8917 pin controller driver" + tristate "Qualcomm 8917/8937 pin controller driver" help This is the pinctrl, pinmux, pinconf and gpiolib driver for the - Qualcomm TLMM block found on the Qualcomm MSM8917 platform. + Qualcomm TLMM block found on the Qualcomm MSM8917, MSM8937 platform. config PINCTRL_MSM8953 tristate "Qualcomm 8953 pin controller driver" diff --git a/drivers/pinctrl/qcom/pinctrl-msm8917.c b/drivers/pinctrl/qcom/pinctrl-msm8917.c index cff137bb3b23fbbe2b2630a7cbbf9f46e39981e7..350636807b07d9ab0e207368de63837bc5fa5502 100644 --- a/drivers/pinctrl/qcom/pinctrl-msm8917.c +++ b/drivers/pinctrl/qcom/pinctrl-msm8917.c @@ -539,6 +539,7 @@ enum msm8917_functions { msm_mux_webcam_standby, msm_mux_wsa_io, msm_mux_wsa_irq, + msm_mux_wsa_reset, msm_mux__, }; @@ -1123,6 +1124,10 @@ static const char * const wsa_io_groups[] = { "gpio94", "gpio95", }; +static const char * const wsa_reset_groups[] = { + "gpio96", +}; + static const char * const blsp_spi8_groups[] = { "gpio96", "gpio97", "gpio98", "gpio99", }; @@ -1378,6 +1383,7 @@ static const struct pinfunction msm8917_functions[] = { MSM_PIN_FUNCTION(webcam_standby), MSM_PIN_FUNCTION(wsa_io), MSM_PIN_FUNCTION(wsa_irq), + MSM_PIN_FUNCTION(wsa_reset), }; static const struct msm_pingroup msm8917_groups[] = { @@ -1616,5 +1622,5 @@ static void __exit msm8917_pinctrl_exit(void) } module_exit(msm8917_pinctrl_exit); -MODULE_DESCRIPTION("Qualcomm msm8917 pinctrl driver"); +MODULE_DESCRIPTION("Qualcomm msm8917/msm8937 pinctrl driver"); MODULE_LICENSE("GPL");