2021-05-12 11:15:01

by Satya Priya

[permalink] [raw]
Subject: [PATCH V3 0/3] Add GPIO support for PM7325

satya priya (3):
pinctrl: qcom: spmi-gpio: Add support for pm7325
dt-bindings: pinctrl: qcom-pmic-gpio: Add pm7325 support
dt-bindings: pinctrl: qcom-pmic-gpio: Convert qcom pmic gpio bindings
to YAML

.../devicetree/bindings/pinctrl/qcom,pmic-gpio.txt | 286 ---------------------
.../bindings/pinctrl/qcom,pmic-gpio.yaml | 245 ++++++++++++++++++
drivers/pinctrl/qcom/pinctrl-spmi-gpio.c | 1 +
3 files changed, 246 insertions(+), 286 deletions(-)
delete mode 100644 Documentation/devicetree/bindings/pinctrl/qcom,pmic-gpio.txt
create mode 100644 Documentation/devicetree/bindings/pinctrl/qcom,pmic-gpio.yaml

--
QUALCOMM INDIA, on behalf of Qualcomm Innovation Center, Inc. is a member
of Code Aurora Forum, hosted by The Linux Foundation


2021-05-12 11:16:15

by Satya Priya

[permalink] [raw]
Subject: [PATCH V3 1/3] pinctrl: qcom: spmi-gpio: Add support for pm7325

Add compatible string for PM7325 pmic GPIO support to the
Qualcomm PMIC GPIO driver.

Signed-off-by: satya priya <[email protected]>
Acked-by: Bjorn Andersson <[email protected]>
---
Changes in V2:
- No change.

Changes in V3:
- Rebased the patch and added only pm7325 as others are already present.
updated the commit text accordingly.

drivers/pinctrl/qcom/pinctrl-spmi-gpio.c | 1 +
1 file changed, 1 insertion(+)

diff --git a/drivers/pinctrl/qcom/pinctrl-spmi-gpio.c b/drivers/pinctrl/qcom/pinctrl-spmi-gpio.c
index 00870da..a89d24a 100644
--- a/drivers/pinctrl/qcom/pinctrl-spmi-gpio.c
+++ b/drivers/pinctrl/qcom/pinctrl-spmi-gpio.c
@@ -1131,6 +1131,7 @@ static const struct of_device_id pmic_gpio_of_match[] = {
{ .compatible = "qcom,pm8350b-gpio", .data = (void *) 8 },
{ .compatible = "qcom,pm8350c-gpio", .data = (void *) 9 },
{ .compatible = "qcom,pmk8350-gpio", .data = (void *) 4 },
+ { .compatible = "qcom,pm7325-gpio", .data = (void *) 10 },
{ .compatible = "qcom,pmr735a-gpio", .data = (void *) 4 },
{ .compatible = "qcom,pmr735b-gpio", .data = (void *) 4 },
{ .compatible = "qcom,pm6150-gpio", .data = (void *) 10 },
--
QUALCOMM INDIA, on behalf of Qualcomm Innovation Center, Inc. is a member
of Code Aurora Forum, hosted by The Linux Foundation

2021-05-19 23:46:44

by Linus Walleij

[permalink] [raw]
Subject: Re: [PATCH V3 0/3] Add GPIO support for PM7325

On Wed, May 12, 2021 at 1:13 PM satya priya <[email protected]> wrote:

> satya priya (3):
> pinctrl: qcom: spmi-gpio: Add support for pm7325
> dt-bindings: pinctrl: qcom-pmic-gpio: Add pm7325 support

These two patches applied!

> dt-bindings: pinctrl: qcom-pmic-gpio: Convert qcom pmic gpio bindings
> to YAML

Now you only need to iterate this patch.

Yours,
Linus Walleij