linux-arm-msm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ARM: dts: qcom: pm8226: Add PON node
@ 2021-11-22 23:52 Jack Matthews
  2022-09-24 14:40 ` Luca Weiss
  0 siblings, 1 reply; 2+ messages in thread
From: Jack Matthews @ 2021-11-22 23:52 UTC (permalink / raw)
  To: linux-arm-msm
  Cc: luca, bartosz.dudziak, Jack Matthews, Andy Gross,
	Bjorn Andersson, Rob Herring, devicetree, linux-kernel

Add PON node with pwrkey and resin as child nodes.
Also adds resin, and additional properties to pwrkey.

Signed-off-by: Jack Matthews <jm5112356@gmail.com>
---
 arch/arm/boot/dts/qcom-pm8226.dtsi | 27 +++++++++++++++++++++------
 1 file changed, 21 insertions(+), 6 deletions(-)

diff --git a/arch/arm/boot/dts/qcom-pm8226.dtsi b/arch/arm/boot/dts/qcom-pm8226.dtsi
index 666bc6350c50..63f3026c25bf 100644
--- a/arch/arm/boot/dts/qcom-pm8226.dtsi
+++ b/arch/arm/boot/dts/qcom-pm8226.dtsi
@@ -1,5 +1,6 @@
 // SPDX-License-Identifier: BSD-3-Clause
 #include <dt-bindings/interrupt-controller/irq.h>
+#include <dt-bindings/input/input.h>
 #include <dt-bindings/spmi/spmi.h>
 
 &spmi_bus {
@@ -9,12 +10,26 @@ pm8226_0: pm8226@0 {
 		#address-cells = <1>;
 		#size-cells = <0>;
 
-		pwrkey@800 {
-			compatible = "qcom,pm8941-pwrkey";
-			reg = <0x800>;
-			interrupts = <0x0 0x8 0 IRQ_TYPE_EDGE_BOTH>;
-			debounce = <15625>;
-			bias-pull-up;
+		pon: power-on@800 {
+			compatible = "qcom,pm8916-pon";
+			reg = <0x0800>;
+
+			pm8226_pwrkey: pwrkey {
+				compatible = "qcom,pm8941-pwrkey";
+				interrupts = <0x0 0x8 0 IRQ_TYPE_EDGE_BOTH>;
+				debounce = <15625>;
+				bias-pull-up;
+				linux,code = <KEY_POWER>;
+			};
+
+			pm8226_resin: resin {
+				compatible = "qcom,pm8941-resin";
+				interrupts = <0x0 0x8 1 IRQ_TYPE_EDGE_BOTH>;
+				debounce = <15625>;
+				bias-pull-up;
+
+				status = "disabled";
+			};
 		};
 
 		smbb: charger@1000 {
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] ARM: dts: qcom: pm8226: Add PON node
  2021-11-22 23:52 [PATCH] ARM: dts: qcom: pm8226: Add PON node Jack Matthews
@ 2022-09-24 14:40 ` Luca Weiss
  0 siblings, 0 replies; 2+ messages in thread
From: Luca Weiss @ 2022-09-24 14:40 UTC (permalink / raw)
  To: linux-arm-msm, Jack Matthews
  Cc: bartosz.dudziak, Jack Matthews, Andy Gross, Bjorn Andersson,
	Rob Herring, devicetree, linux-kernel

Hi Jack,

On Dienstag, 23. November 2021 00:52:30 CEST Jack Matthews wrote:
> Add PON node with pwrkey and resin as child nodes.
> Also adds resin, and additional properties to pwrkey.

I just saw that this patch hasn't been applied yet.
As it doesn't apply cleanly anymore can you please rebase it and send a v2? 
Hopefully Bjorn can apply it then :)

Regards
Luca

> 
> Signed-off-by: Jack Matthews <jm5112356@gmail.com>
> ---
>  arch/arm/boot/dts/qcom-pm8226.dtsi | 27 +++++++++++++++++++++------
>  1 file changed, 21 insertions(+), 6 deletions(-)
> 
> diff --git a/arch/arm/boot/dts/qcom-pm8226.dtsi
> b/arch/arm/boot/dts/qcom-pm8226.dtsi index 666bc6350c50..63f3026c25bf
> 100644
> --- a/arch/arm/boot/dts/qcom-pm8226.dtsi
> +++ b/arch/arm/boot/dts/qcom-pm8226.dtsi
> @@ -1,5 +1,6 @@
>  // SPDX-License-Identifier: BSD-3-Clause
>  #include <dt-bindings/interrupt-controller/irq.h>
> +#include <dt-bindings/input/input.h>
>  #include <dt-bindings/spmi/spmi.h>
> 
>  &spmi_bus {
> @@ -9,12 +10,26 @@ pm8226_0: pm8226@0 {
>  		#address-cells = <1>;
>  		#size-cells = <0>;
> 
> -		pwrkey@800 {
> -			compatible = "qcom,pm8941-pwrkey";
> -			reg = <0x800>;
> -			interrupts = <0x0 0x8 0 IRQ_TYPE_EDGE_BOTH>;
> -			debounce = <15625>;
> -			bias-pull-up;
> +		pon: power-on@800 {
> +			compatible = "qcom,pm8916-pon";
> +			reg = <0x0800>;
> +
> +			pm8226_pwrkey: pwrkey {
> +				compatible = "qcom,pm8941-
pwrkey";
> +				interrupts = <0x0 0x8 0 
IRQ_TYPE_EDGE_BOTH>;
> +				debounce = <15625>;
> +				bias-pull-up;
> +				linux,code = <KEY_POWER>;
> +			};
> +
> +			pm8226_resin: resin {
> +				compatible = "qcom,pm8941-resin";
> +				interrupts = <0x0 0x8 1 
IRQ_TYPE_EDGE_BOTH>;
> +				debounce = <15625>;
> +				bias-pull-up;
> +
> +				status = "disabled";
> +			};
>  		};
> 
>  		smbb: charger@1000 {





^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-09-24 14:40 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-22 23:52 [PATCH] ARM: dts: qcom: pm8226: Add PON node Jack Matthews
2022-09-24 14:40 ` Luca Weiss

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).