2015-11-18 00:53:28

by Stephen Boyd

[permalink] [raw]
Subject: [PATCH 0/2] Add pm8994 gpio and mpp support

This adds the support for pm8994 gpio and mpp modules. Given that there's
nothing besides a compatible string update, I'm going to send a separate
patch to add generic compatible strings for these sorts of things.

Stephen Boyd (2):
pinctrl: qcom: spmi-gpio: Add pm8994 gpio support
pinctrl: qcom: spmi-mpp: Add pm8994 mpp support

Cc: <[email protected]>
Cc: "Ivan T. Ivanov" <[email protected]>
Cc: Bjorn Andersson <[email protected]>

Documentation/devicetree/bindings/pinctrl/qcom,pmic-gpio.txt | 2 ++
Documentation/devicetree/bindings/pinctrl/qcom,pmic-mpp.txt | 1 +
drivers/pinctrl/qcom/pinctrl-spmi-gpio.c | 1 +
drivers/pinctrl/qcom/pinctrl-spmi-mpp.c | 1 +
4 files changed, 5 insertions(+)

--
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project


2015-11-18 00:52:39

by Stephen Boyd

[permalink] [raw]
Subject: [PATCH 1/2] pinctrl: qcom: spmi-gpio: Add pm8994 gpio support

Update the binding and driver for pm8994-gpio devices.

Cc: <[email protected]>
Cc: "Ivan T. Ivanov" <[email protected]>
Cc: Bjorn Andersson <[email protected]>
Signed-off-by: Stephen Boyd <[email protected]>
---
Documentation/devicetree/bindings/pinctrl/qcom,pmic-gpio.txt | 2 ++
drivers/pinctrl/qcom/pinctrl-spmi-gpio.c | 1 +
2 files changed, 3 insertions(+)

diff --git a/Documentation/devicetree/bindings/pinctrl/qcom,pmic-gpio.txt b/Documentation/devicetree/bindings/pinctrl/qcom,pmic-gpio.txt
index 1ae63c0acd40..a90c812ad642 100644
--- a/Documentation/devicetree/bindings/pinctrl/qcom,pmic-gpio.txt
+++ b/Documentation/devicetree/bindings/pinctrl/qcom,pmic-gpio.txt
@@ -14,6 +14,7 @@ PMIC's from Qualcomm.
"qcom,pm8917-gpio"
"qcom,pm8921-gpio"
"qcom,pm8941-gpio"
+ "qcom,pm8994-gpio"
"qcom,pma8084-gpio"

- reg:
@@ -79,6 +80,7 @@ to specify in a pin configuration subnode:
gpio1-gpio38 for pm8917
gpio1-gpio44 for pm8921
gpio1-gpio36 for pm8941
+ gpio1-gpio22 for pm8994
gpio1-gpio22 for pma8084

- function:
diff --git a/drivers/pinctrl/qcom/pinctrl-spmi-gpio.c b/drivers/pinctrl/qcom/pinctrl-spmi-gpio.c
index 6c42ca14d2fd..df4413023e21 100644
--- a/drivers/pinctrl/qcom/pinctrl-spmi-gpio.c
+++ b/drivers/pinctrl/qcom/pinctrl-spmi-gpio.c
@@ -804,6 +804,7 @@ static int pmic_gpio_remove(struct platform_device *pdev)
static const struct of_device_id pmic_gpio_of_match[] = {
{ .compatible = "qcom,pm8916-gpio" }, /* 4 GPIO's */
{ .compatible = "qcom,pm8941-gpio" }, /* 36 GPIO's */
+ { .compatible = "qcom,pm8994-gpio" }, /* 22 GPIO's */
{ .compatible = "qcom,pma8084-gpio" }, /* 22 GPIO's */
{ },
};
--
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project

2015-11-18 00:52:40

by Stephen Boyd

[permalink] [raw]
Subject: [PATCH 2/2] pinctrl: qcom: spmi-mpp: Add pm8994 mpp support

Update the driver and binding for pm8994-mpp devices.

Cc: <[email protected]>
Cc: "Ivan T. Ivanov" <[email protected]>
Cc: Bjorn Andersson <[email protected]>
Signed-off-by: Stephen Boyd <[email protected]>
---
Documentation/devicetree/bindings/pinctrl/qcom,pmic-mpp.txt | 1 +
drivers/pinctrl/qcom/pinctrl-spmi-mpp.c | 1 +
2 files changed, 2 insertions(+)

diff --git a/Documentation/devicetree/bindings/pinctrl/qcom,pmic-mpp.txt b/Documentation/devicetree/bindings/pinctrl/qcom,pmic-mpp.txt
index d7803a2a94e9..d74e631e10da 100644
--- a/Documentation/devicetree/bindings/pinctrl/qcom,pmic-mpp.txt
+++ b/Documentation/devicetree/bindings/pinctrl/qcom,pmic-mpp.txt
@@ -15,6 +15,7 @@ of PMIC's from Qualcomm.
"qcom,pm8917-mpp",
"qcom,pm8921-mpp",
"qcom,pm8941-mpp",
+ "qcom,pm8994-mpp",
"qcom,pma8084-mpp",

- reg:
diff --git a/drivers/pinctrl/qcom/pinctrl-spmi-mpp.c b/drivers/pinctrl/qcom/pinctrl-spmi-mpp.c
index 9ce0e30e33e8..7b4136a22c5b 100644
--- a/drivers/pinctrl/qcom/pinctrl-spmi-mpp.c
+++ b/drivers/pinctrl/qcom/pinctrl-spmi-mpp.c
@@ -907,6 +907,7 @@ static const struct of_device_id pmic_mpp_of_match[] = {
{ .compatible = "qcom,pm8841-mpp" }, /* 4 MPP's */
{ .compatible = "qcom,pm8916-mpp" }, /* 4 MPP's */
{ .compatible = "qcom,pm8941-mpp" }, /* 8 MPP's */
+ { .compatible = "qcom,pm8994-mpp" }, /* 8 MPP's */
{ .compatible = "qcom,pma8084-mpp" }, /* 8 MPP's */
{ },
};
--
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project

2015-11-19 14:46:35

by Rob Herring (Arm)

[permalink] [raw]
Subject: Re: [PATCH 1/2] pinctrl: qcom: spmi-gpio: Add pm8994 gpio support

On Tue, Nov 17, 2015 at 04:52:32PM -0800, Stephen Boyd wrote:
> Update the binding and driver for pm8994-gpio devices.
>
> Cc: <[email protected]>
> Cc: "Ivan T. Ivanov" <[email protected]>
> Cc: Bjorn Andersson <[email protected]>
> Signed-off-by: Stephen Boyd <[email protected]>

Acked-by: Rob Herring <[email protected]>

> ---
> Documentation/devicetree/bindings/pinctrl/qcom,pmic-gpio.txt | 2 ++
> drivers/pinctrl/qcom/pinctrl-spmi-gpio.c | 1 +
> 2 files changed, 3 insertions(+)
>
> diff --git a/Documentation/devicetree/bindings/pinctrl/qcom,pmic-gpio.txt b/Documentation/devicetree/bindings/pinctrl/qcom,pmic-gpio.txt
> index 1ae63c0acd40..a90c812ad642 100644
> --- a/Documentation/devicetree/bindings/pinctrl/qcom,pmic-gpio.txt
> +++ b/Documentation/devicetree/bindings/pinctrl/qcom,pmic-gpio.txt
> @@ -14,6 +14,7 @@ PMIC's from Qualcomm.
> "qcom,pm8917-gpio"
> "qcom,pm8921-gpio"
> "qcom,pm8941-gpio"
> + "qcom,pm8994-gpio"
> "qcom,pma8084-gpio"
>
> - reg:
> @@ -79,6 +80,7 @@ to specify in a pin configuration subnode:
> gpio1-gpio38 for pm8917
> gpio1-gpio44 for pm8921
> gpio1-gpio36 for pm8941
> + gpio1-gpio22 for pm8994
> gpio1-gpio22 for pma8084
>
> - function:
> diff --git a/drivers/pinctrl/qcom/pinctrl-spmi-gpio.c b/drivers/pinctrl/qcom/pinctrl-spmi-gpio.c
> index 6c42ca14d2fd..df4413023e21 100644
> --- a/drivers/pinctrl/qcom/pinctrl-spmi-gpio.c
> +++ b/drivers/pinctrl/qcom/pinctrl-spmi-gpio.c
> @@ -804,6 +804,7 @@ static int pmic_gpio_remove(struct platform_device *pdev)
> static const struct of_device_id pmic_gpio_of_match[] = {
> { .compatible = "qcom,pm8916-gpio" }, /* 4 GPIO's */
> { .compatible = "qcom,pm8941-gpio" }, /* 36 GPIO's */
> + { .compatible = "qcom,pm8994-gpio" }, /* 22 GPIO's */
> { .compatible = "qcom,pma8084-gpio" }, /* 22 GPIO's */
> { },
> };
> --
> The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
> a Linux Foundation Collaborative Project
>
> --
> To unsubscribe from this list: send the line "unsubscribe devicetree" in
> the body of a message to [email protected]
> More majordomo info at http://vger.kernel.org/majordomo-info.html

2015-11-19 14:47:30

by Rob Herring (Arm)

[permalink] [raw]
Subject: Re: [PATCH 2/2] pinctrl: qcom: spmi-mpp: Add pm8994 mpp support

On Tue, Nov 17, 2015 at 04:52:33PM -0800, Stephen Boyd wrote:
> Update the driver and binding for pm8994-mpp devices.
>
> Cc: <[email protected]>
> Cc: "Ivan T. Ivanov" <[email protected]>
> Cc: Bjorn Andersson <[email protected]>
> Signed-off-by: Stephen Boyd <[email protected]>

Acked-by: Rob Herring <[email protected]>

> ---
> Documentation/devicetree/bindings/pinctrl/qcom,pmic-mpp.txt | 1 +
> drivers/pinctrl/qcom/pinctrl-spmi-mpp.c | 1 +
> 2 files changed, 2 insertions(+)
>
> diff --git a/Documentation/devicetree/bindings/pinctrl/qcom,pmic-mpp.txt b/Documentation/devicetree/bindings/pinctrl/qcom,pmic-mpp.txt
> index d7803a2a94e9..d74e631e10da 100644
> --- a/Documentation/devicetree/bindings/pinctrl/qcom,pmic-mpp.txt
> +++ b/Documentation/devicetree/bindings/pinctrl/qcom,pmic-mpp.txt
> @@ -15,6 +15,7 @@ of PMIC's from Qualcomm.
> "qcom,pm8917-mpp",
> "qcom,pm8921-mpp",
> "qcom,pm8941-mpp",
> + "qcom,pm8994-mpp",
> "qcom,pma8084-mpp",
>
> - reg:
> diff --git a/drivers/pinctrl/qcom/pinctrl-spmi-mpp.c b/drivers/pinctrl/qcom/pinctrl-spmi-mpp.c
> index 9ce0e30e33e8..7b4136a22c5b 100644
> --- a/drivers/pinctrl/qcom/pinctrl-spmi-mpp.c
> +++ b/drivers/pinctrl/qcom/pinctrl-spmi-mpp.c
> @@ -907,6 +907,7 @@ static const struct of_device_id pmic_mpp_of_match[] = {
> { .compatible = "qcom,pm8841-mpp" }, /* 4 MPP's */
> { .compatible = "qcom,pm8916-mpp" }, /* 4 MPP's */
> { .compatible = "qcom,pm8941-mpp" }, /* 8 MPP's */
> + { .compatible = "qcom,pm8994-mpp" }, /* 8 MPP's */
> { .compatible = "qcom,pma8084-mpp" }, /* 8 MPP's */
> { },
> };
> --
> The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
> a Linux Foundation Collaborative Project
>
> --
> To unsubscribe from this list: send the line "unsubscribe devicetree" in
> the body of a message to [email protected]
> More majordomo info at http://vger.kernel.org/majordomo-info.html

2015-11-23 18:29:33

by Bjorn Andersson

[permalink] [raw]
Subject: Re: [PATCH 1/2] pinctrl: qcom: spmi-gpio: Add pm8994 gpio support

On Tue 17 Nov 16:52 PST 2015, Stephen Boyd wrote:

> Update the binding and driver for pm8994-gpio devices.
>
> Cc: <[email protected]>
> Cc: "Ivan T. Ivanov" <[email protected]>
> Cc: Bjorn Andersson <[email protected]>
> Signed-off-by: Stephen Boyd <[email protected]>

Acked-by: Bjorn Andersson <[email protected]>

Regards,
Bjorn

2015-11-23 18:29:58

by Bjorn Andersson

[permalink] [raw]
Subject: Re: [PATCH 2/2] pinctrl: qcom: spmi-mpp: Add pm8994 mpp support

On Tue 17 Nov 16:52 PST 2015, Stephen Boyd wrote:

> Update the driver and binding for pm8994-mpp devices.
>
> Cc: <[email protected]>
> Cc: "Ivan T. Ivanov" <[email protected]>
> Cc: Bjorn Andersson <[email protected]>
> Signed-off-by: Stephen Boyd <[email protected]>
> ---

Acked-by: Bjorn Andersson <[email protected]>

Regards,
Bjorn

2015-12-01 09:34:19

by Linus Walleij

[permalink] [raw]
Subject: Re: [PATCH 1/2] pinctrl: qcom: spmi-gpio: Add pm8994 gpio support

On Wed, Nov 18, 2015 at 1:52 AM, Stephen Boyd <[email protected]> wrote:

> Update the binding and driver for pm8994-gpio devices.
>
> Cc: <[email protected]>
> Cc: "Ivan T. Ivanov" <[email protected]>
> Cc: Bjorn Andersson <[email protected]>
> Signed-off-by: Stephen Boyd <[email protected]>

Patch applied with the ACKs.

Yours,
Linus Walleij

2015-12-01 09:34:59

by Linus Walleij

[permalink] [raw]
Subject: Re: [PATCH 2/2] pinctrl: qcom: spmi-mpp: Add pm8994 mpp support

On Wed, Nov 18, 2015 at 1:52 AM, Stephen Boyd <[email protected]> wrote:

> Update the driver and binding for pm8994-mpp devices.
>
> Cc: <[email protected]>
> Cc: "Ivan T. Ivanov" <[email protected]>
> Cc: Bjorn Andersson <[email protected]>
> Signed-off-by: Stephen Boyd <[email protected]>

Patch applied with the ACKs!

Yours,
Linus Walleij