On Mon 28 Jun 19:38 CDT 2021, Bjorn Andersson wrote: > The SC8180x platform comes with PMC8180 and PMC8180c, add support for > the GPIO controller in these PMICs. > Linus, would you be willing to pick this up? Got some dts patches that uses these compatibles. Regards, Bjorn > Signed-off-by: Bjorn Andersson <bjorn.andersson@xxxxxxxxxx> > --- > Documentation/devicetree/bindings/pinctrl/qcom,pmic-gpio.txt | 4 ++++ > drivers/pinctrl/qcom/pinctrl-spmi-gpio.c | 2 ++ > 2 files changed, 6 insertions(+) > > diff --git a/Documentation/devicetree/bindings/pinctrl/qcom,pmic-gpio.txt b/Documentation/devicetree/bindings/pinctrl/qcom,pmic-gpio.txt > index 161216daf463..412613c80e9e 100644 > --- a/Documentation/devicetree/bindings/pinctrl/qcom,pmic-gpio.txt > +++ b/Documentation/devicetree/bindings/pinctrl/qcom,pmic-gpio.txt > @@ -30,6 +30,8 @@ PMIC's from Qualcomm. > "qcom,pm8350-gpio" > "qcom,pm8350b-gpio" > "qcom,pm8350c-gpio" > + "qcom,pmc8180-gpio" > + "qcom,pmc8180c-gpio" > "qcom,pmk8350-gpio" > "qcom,pm7325-gpio" > "qcom,pmr735a-gpio" > @@ -120,6 +122,8 @@ to specify in a pin configuration subnode: > gpio1-gpio10 for pm8350 > gpio1-gpio8 for pm8350b > gpio1-gpio9 for pm8350c > + gpio1-gpio10 for pmc8180 > + gpio1-gpio12 for pmc8180c > gpio1-gpio4 for pmk8350 > gpio1-gpio10 for pm7325 > gpio1-gpio4 for pmr735a > diff --git a/drivers/pinctrl/qcom/pinctrl-spmi-gpio.c b/drivers/pinctrl/qcom/pinctrl-spmi-gpio.c > index a89d24a040af..9251fb5153e7 100644 > --- a/drivers/pinctrl/qcom/pinctrl-spmi-gpio.c > +++ b/drivers/pinctrl/qcom/pinctrl-spmi-gpio.c > @@ -1123,10 +1123,12 @@ static const struct of_device_id pmic_gpio_of_match[] = { > { .compatible = "qcom,pm660l-gpio", .data = (void *) 12 }, > /* pm8150 has 10 GPIOs with holes on 2, 5, 7 and 8 */ > { .compatible = "qcom,pm8150-gpio", .data = (void *) 10 }, > + { .compatible = "qcom,pmc8180-gpio", .data = (void *) 10 }, > /* pm8150b has 12 GPIOs with holes on 3, r and 7 */ > { .compatible = "qcom,pm8150b-gpio", .data = (void *) 12 }, > /* pm8150l has 12 GPIOs with holes on 7 */ > { .compatible = "qcom,pm8150l-gpio", .data = (void *) 12 }, > + { .compatible = "qcom,pmc8180c-gpio", .data = (void *) 12 }, > { .compatible = "qcom,pm8350-gpio", .data = (void *) 10 }, > { .compatible = "qcom,pm8350b-gpio", .data = (void *) 8 }, > { .compatible = "qcom,pm8350c-gpio", .data = (void *) 9 }, > -- > 2.29.2 >