devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/4] arm64: dts: qcom: sc8180x-pmics: add missing qcom,spmi-gpio fallbacks
@ 2023-07-20  8:34 Krzysztof Kozlowski
  2023-07-20  8:34 ` [PATCH 2/4] arm64: dts: qcom: sc8180x-pmics: add missing gpio-ranges Krzysztof Kozlowski
                   ` (5 more replies)
  0 siblings, 6 replies; 13+ messages in thread
From: Krzysztof Kozlowski @ 2023-07-20  8:34 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley, Vinod Koul, linux-arm-msm,
	devicetree, linux-kernel
  Cc: Krzysztof Kozlowski

The GPIO children of PMICs should use qcom,spmi-gpio fallback:

  sc8180x-primus.dtb: pmic@0: gpio@c000:compatible: ['qcom,pmc8180-gpio'] is too short

Fixes: d3302290f59e ("arm64: dts: qcom: sc8180x: Add pmics")
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 arch/arm64/boot/dts/qcom/sc8180x-pmics.dtsi | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm64/boot/dts/qcom/sc8180x-pmics.dtsi b/arch/arm64/boot/dts/qcom/sc8180x-pmics.dtsi
index 4556af6cd103..ef2f8b732833 100644
--- a/arch/arm64/boot/dts/qcom/sc8180x-pmics.dtsi
+++ b/arch/arm64/boot/dts/qcom/sc8180x-pmics.dtsi
@@ -142,7 +142,7 @@ rtc@6000 {
 		};
 
 		pmc8180_gpios: gpio@c000 {
-			compatible = "qcom,pmc8180-gpio";
+			compatible = "qcom,pmc8180-gpio", "qcom,spmi-gpio";
 			reg = <0xc000>;
 			gpio-controller;
 			#gpio-cells = <2>;
@@ -300,7 +300,7 @@ pmc8180c_adc_tm: adc-tm@3500 {
 		};
 
 		pmc8180c_gpios: gpio@c000 {
-			compatible = "qcom,pmc8180c-gpio";
+			compatible = "qcom,pmc8180c-gpio", "qcom,spmi-gpio";
 			reg = <0xc000>;
 			gpio-controller;
 			#gpio-cells = <2>;
-- 
2.34.1


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

* [PATCH 2/4] arm64: dts: qcom: sc8180x-pmics: add missing gpio-ranges
  2023-07-20  8:34 [PATCH 1/4] arm64: dts: qcom: sc8180x-pmics: add missing qcom,spmi-gpio fallbacks Krzysztof Kozlowski
@ 2023-07-20  8:34 ` Krzysztof Kozlowski
  2023-07-20  8:37   ` Konrad Dybcio
  2023-07-20 15:24   ` Vinod Koul
  2023-07-20  8:34 ` [PATCH 3/4] arm64: dts: qcom: sc8180x-pmics: align SPMI PMIC Power-on node name with dtschema Krzysztof Kozlowski
                   ` (4 subsequent siblings)
  5 siblings, 2 replies; 13+ messages in thread
From: Krzysztof Kozlowski @ 2023-07-20  8:34 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley, Vinod Koul, linux-arm-msm,
	devicetree, linux-kernel
  Cc: Krzysztof Kozlowski

The GPIO children of PMICs should use gpio-ranges:

  sc8180x-primus.dtb: pmic@0: gpio@c000: 'gpio-ranges' is a required property

Fixes: d3302290f59e ("arm64: dts: qcom: sc8180x: Add pmics")
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 arch/arm64/boot/dts/qcom/sc8180x-pmics.dtsi | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/arch/arm64/boot/dts/qcom/sc8180x-pmics.dtsi b/arch/arm64/boot/dts/qcom/sc8180x-pmics.dtsi
index ef2f8b732833..53b283e29407 100644
--- a/arch/arm64/boot/dts/qcom/sc8180x-pmics.dtsi
+++ b/arch/arm64/boot/dts/qcom/sc8180x-pmics.dtsi
@@ -145,6 +145,7 @@ pmc8180_gpios: gpio@c000 {
 			compatible = "qcom,pmc8180-gpio", "qcom,spmi-gpio";
 			reg = <0xc000>;
 			gpio-controller;
+			gpio-ranges = <&pmc8180_gpios 0 0 10>;
 			#gpio-cells = <2>;
 			interrupt-controller;
 			#interrupt-cells = <2>;
@@ -303,6 +304,7 @@ pmc8180c_gpios: gpio@c000 {
 			compatible = "qcom,pmc8180c-gpio", "qcom,spmi-gpio";
 			reg = <0xc000>;
 			gpio-controller;
+			gpio-ranges = <&pmc8180c_gpios 0 0 12>;
 			#gpio-cells = <2>;
 			interrupt-controller;
 			#interrupt-cells = <2>;
-- 
2.34.1


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

* [PATCH 3/4] arm64: dts: qcom: sc8180x-pmics: align SPMI PMIC Power-on node name with dtschema
  2023-07-20  8:34 [PATCH 1/4] arm64: dts: qcom: sc8180x-pmics: add missing qcom,spmi-gpio fallbacks Krzysztof Kozlowski
  2023-07-20  8:34 ` [PATCH 2/4] arm64: dts: qcom: sc8180x-pmics: add missing gpio-ranges Krzysztof Kozlowski
@ 2023-07-20  8:34 ` Krzysztof Kozlowski
  2023-07-20  8:38   ` Konrad Dybcio
  2023-07-20 15:24   ` Vinod Koul
  2023-07-20  8:35 ` [PATCH 4/4] arm64: dts: qcom: sc8180x-pmics: align LPG " Krzysztof Kozlowski
                   ` (3 subsequent siblings)
  5 siblings, 2 replies; 13+ messages in thread
From: Krzysztof Kozlowski @ 2023-07-20  8:34 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley, Vinod Koul, linux-arm-msm,
	devicetree, linux-kernel
  Cc: Krzysztof Kozlowski

Bindings expect the Power-on node name to be "pon":

  sc8180x-lenovo-flex-5g.dtb: pmic@0: 'power-on@800' does not match any of the regexes:

Fixes: d3302290f59e ("arm64: dts: qcom: sc8180x: Add pmics")
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 arch/arm64/boot/dts/qcom/sc8180x-pmics.dtsi | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm64/boot/dts/qcom/sc8180x-pmics.dtsi b/arch/arm64/boot/dts/qcom/sc8180x-pmics.dtsi
index 53b283e29407..bc17d22dbefc 100644
--- a/arch/arm64/boot/dts/qcom/sc8180x-pmics.dtsi
+++ b/arch/arm64/boot/dts/qcom/sc8180x-pmics.dtsi
@@ -74,7 +74,7 @@ pmc8180_0: pmic@0 {
 		#address-cells = <1>;
 		#size-cells = <0>;
 
-		pon: power-on@800 {
+		pon: pon@800 {
 			compatible = "qcom,pm8916-pon";
 			reg = <0x0800>;
 			pwrkey {
@@ -247,7 +247,7 @@ pmic@4 {
 		#address-cells = <1>;
 		#size-cells = <0>;
 
-		power-on@800 {
+		pon@800 {
 			compatible = "qcom,pm8916-pon";
 			reg = <0x0800>;
 
-- 
2.34.1


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

* [PATCH 4/4] arm64: dts: qcom: sc8180x-pmics: align LPG node name with dtschema
  2023-07-20  8:34 [PATCH 1/4] arm64: dts: qcom: sc8180x-pmics: add missing qcom,spmi-gpio fallbacks Krzysztof Kozlowski
  2023-07-20  8:34 ` [PATCH 2/4] arm64: dts: qcom: sc8180x-pmics: add missing gpio-ranges Krzysztof Kozlowski
  2023-07-20  8:34 ` [PATCH 3/4] arm64: dts: qcom: sc8180x-pmics: align SPMI PMIC Power-on node name with dtschema Krzysztof Kozlowski
@ 2023-07-20  8:35 ` Krzysztof Kozlowski
  2023-07-20  8:38   ` Konrad Dybcio
  2023-07-20 15:24   ` Vinod Koul
  2023-07-20  8:36 ` [PATCH 1/4] arm64: dts: qcom: sc8180x-pmics: add missing qcom,spmi-gpio fallbacks Konrad Dybcio
                   ` (2 subsequent siblings)
  5 siblings, 2 replies; 13+ messages in thread
From: Krzysztof Kozlowski @ 2023-07-20  8:35 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley, Vinod Koul, linux-arm-msm,
	devicetree, linux-kernel
  Cc: Krzysztof Kozlowski

Bindings expect the LPG node name to be "pwm":

  sc8180x-lenovo-flex-5g.dtb: pmic@5: 'lpg' does not match any of the regexes:

Fixes: d3302290f59e ("arm64: dts: qcom: sc8180x: Add pmics")
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 arch/arm64/boot/dts/qcom/sc8180x-pmics.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm64/boot/dts/qcom/sc8180x-pmics.dtsi b/arch/arm64/boot/dts/qcom/sc8180x-pmics.dtsi
index bc17d22dbefc..ddc84282f142 100644
--- a/arch/arm64/boot/dts/qcom/sc8180x-pmics.dtsi
+++ b/arch/arm64/boot/dts/qcom/sc8180x-pmics.dtsi
@@ -315,7 +315,7 @@ pmic@5 {
 		compatible = "qcom,pmc8180c", "qcom,spmi-pmic";
 		reg = <0x5 SPMI_USID>;
 
-		pmc8180c_lpg: lpg {
+		pmc8180c_lpg: pwm {
 			compatible = "qcom,pmc8180c-lpg";
 
 			#address-cells = <1>;
-- 
2.34.1


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

* Re: [PATCH 1/4] arm64: dts: qcom: sc8180x-pmics: add missing qcom,spmi-gpio fallbacks
  2023-07-20  8:34 [PATCH 1/4] arm64: dts: qcom: sc8180x-pmics: add missing qcom,spmi-gpio fallbacks Krzysztof Kozlowski
                   ` (2 preceding siblings ...)
  2023-07-20  8:35 ` [PATCH 4/4] arm64: dts: qcom: sc8180x-pmics: align LPG " Krzysztof Kozlowski
@ 2023-07-20  8:36 ` Konrad Dybcio
  2023-07-20 15:23 ` Vinod Koul
  2023-07-22  5:17 ` (subset) " Bjorn Andersson
  5 siblings, 0 replies; 13+ messages in thread
From: Konrad Dybcio @ 2023-07-20  8:36 UTC (permalink / raw)
  To: Krzysztof Kozlowski, Andy Gross, Bjorn Andersson, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley, Vinod Koul, linux-arm-msm,
	devicetree, linux-kernel

On 20.07.2023 10:34, Krzysztof Kozlowski wrote:
> The GPIO children of PMICs should use qcom,spmi-gpio fallback:
> 
>   sc8180x-primus.dtb: pmic@0: gpio@c000:compatible: ['qcom,pmc8180-gpio'] is too short
> 
> Fixes: d3302290f59e ("arm64: dts: qcom: sc8180x: Add pmics")
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
Reviewed-by: Konrad Dybcio <konrad.dybcio@linaro.org>

Konrad

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

* Re: [PATCH 2/4] arm64: dts: qcom: sc8180x-pmics: add missing gpio-ranges
  2023-07-20  8:34 ` [PATCH 2/4] arm64: dts: qcom: sc8180x-pmics: add missing gpio-ranges Krzysztof Kozlowski
@ 2023-07-20  8:37   ` Konrad Dybcio
  2023-07-20 15:24   ` Vinod Koul
  1 sibling, 0 replies; 13+ messages in thread
From: Konrad Dybcio @ 2023-07-20  8:37 UTC (permalink / raw)
  To: Krzysztof Kozlowski, Andy Gross, Bjorn Andersson, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley, Vinod Koul, linux-arm-msm,
	devicetree, linux-kernel

On 20.07.2023 10:34, Krzysztof Kozlowski wrote:
> The GPIO children of PMICs should use gpio-ranges:
> 
>   sc8180x-primus.dtb: pmic@0: gpio@c000: 'gpio-ranges' is a required property
> 
> Fixes: d3302290f59e ("arm64: dts: qcom: sc8180x: Add pmics")
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
Reviewed-by: Konrad Dybcio <konrad.dybcio@linaro.org>

Konrad

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

* Re: [PATCH 3/4] arm64: dts: qcom: sc8180x-pmics: align SPMI PMIC Power-on node name with dtschema
  2023-07-20  8:34 ` [PATCH 3/4] arm64: dts: qcom: sc8180x-pmics: align SPMI PMIC Power-on node name with dtschema Krzysztof Kozlowski
@ 2023-07-20  8:38   ` Konrad Dybcio
  2023-07-20 15:24   ` Vinod Koul
  1 sibling, 0 replies; 13+ messages in thread
From: Konrad Dybcio @ 2023-07-20  8:38 UTC (permalink / raw)
  To: Krzysztof Kozlowski, Andy Gross, Bjorn Andersson, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley, Vinod Koul, linux-arm-msm,
	devicetree, linux-kernel

On 20.07.2023 10:34, Krzysztof Kozlowski wrote:
> Bindings expect the Power-on node name to be "pon":
> 
>   sc8180x-lenovo-flex-5g.dtb: pmic@0: 'power-on@800' does not match any of the regexes:
> 
> Fixes: d3302290f59e ("arm64: dts: qcom: sc8180x: Add pmics")
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
Reviewed-by: Konrad Dybcio <konrad.dybcio@linaro.org>

Konrad

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

* Re: [PATCH 4/4] arm64: dts: qcom: sc8180x-pmics: align LPG node name with dtschema
  2023-07-20  8:35 ` [PATCH 4/4] arm64: dts: qcom: sc8180x-pmics: align LPG " Krzysztof Kozlowski
@ 2023-07-20  8:38   ` Konrad Dybcio
  2023-07-20 15:24   ` Vinod Koul
  1 sibling, 0 replies; 13+ messages in thread
From: Konrad Dybcio @ 2023-07-20  8:38 UTC (permalink / raw)
  To: Krzysztof Kozlowski, Andy Gross, Bjorn Andersson, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley, Vinod Koul, linux-arm-msm,
	devicetree, linux-kernel

On 20.07.2023 10:35, Krzysztof Kozlowski wrote:
> Bindings expect the LPG node name to be "pwm":
> 
>   sc8180x-lenovo-flex-5g.dtb: pmic@5: 'lpg' does not match any of the regexes:
> 
> Fixes: d3302290f59e ("arm64: dts: qcom: sc8180x: Add pmics")
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
Reviewed-by: Konrad Dybcio <konrad.dybcio@linaro.org>

Konrad

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

* Re: [PATCH 1/4] arm64: dts: qcom: sc8180x-pmics: add missing qcom,spmi-gpio fallbacks
  2023-07-20  8:34 [PATCH 1/4] arm64: dts: qcom: sc8180x-pmics: add missing qcom,spmi-gpio fallbacks Krzysztof Kozlowski
                   ` (3 preceding siblings ...)
  2023-07-20  8:36 ` [PATCH 1/4] arm64: dts: qcom: sc8180x-pmics: add missing qcom,spmi-gpio fallbacks Konrad Dybcio
@ 2023-07-20 15:23 ` Vinod Koul
  2023-07-22  5:17 ` (subset) " Bjorn Andersson
  5 siblings, 0 replies; 13+ messages in thread
From: Vinod Koul @ 2023-07-20 15:23 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Andy Gross, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley, linux-arm-msm, devicetree,
	linux-kernel

On 20-07-23, 10:34, Krzysztof Kozlowski wrote:
> The GPIO children of PMICs should use qcom,spmi-gpio fallback:
> 
>   sc8180x-primus.dtb: pmic@0: gpio@c000:compatible: ['qcom,pmc8180-gpio'] is too short

Reviewed-by: Vinod Koul <vkoul@kernel.org>

-- 
~Vinod

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

* Re: [PATCH 2/4] arm64: dts: qcom: sc8180x-pmics: add missing gpio-ranges
  2023-07-20  8:34 ` [PATCH 2/4] arm64: dts: qcom: sc8180x-pmics: add missing gpio-ranges Krzysztof Kozlowski
  2023-07-20  8:37   ` Konrad Dybcio
@ 2023-07-20 15:24   ` Vinod Koul
  1 sibling, 0 replies; 13+ messages in thread
From: Vinod Koul @ 2023-07-20 15:24 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Andy Gross, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley, linux-arm-msm, devicetree,
	linux-kernel

On 20-07-23, 10:34, Krzysztof Kozlowski wrote:
> The GPIO children of PMICs should use gpio-ranges:
> 
>   sc8180x-primus.dtb: pmic@0: gpio@c000: 'gpio-ranges' is a required property

Reviewed-by: Vinod Koul <vkoul@kernel.org>

-- 
~Vinod

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

* Re: [PATCH 3/4] arm64: dts: qcom: sc8180x-pmics: align SPMI PMIC Power-on node name with dtschema
  2023-07-20  8:34 ` [PATCH 3/4] arm64: dts: qcom: sc8180x-pmics: align SPMI PMIC Power-on node name with dtschema Krzysztof Kozlowski
  2023-07-20  8:38   ` Konrad Dybcio
@ 2023-07-20 15:24   ` Vinod Koul
  1 sibling, 0 replies; 13+ messages in thread
From: Vinod Koul @ 2023-07-20 15:24 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Andy Gross, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley, linux-arm-msm, devicetree,
	linux-kernel

On 20-07-23, 10:34, Krzysztof Kozlowski wrote:
> Bindings expect the Power-on node name to be "pon":
> 
>   sc8180x-lenovo-flex-5g.dtb: pmic@0: 'power-on@800' does not match any of the regexes:

Reviewed-by: Vinod Koul <vkoul@kernel.org>

-- 
~Vinod

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

* Re: [PATCH 4/4] arm64: dts: qcom: sc8180x-pmics: align LPG node name with dtschema
  2023-07-20  8:35 ` [PATCH 4/4] arm64: dts: qcom: sc8180x-pmics: align LPG " Krzysztof Kozlowski
  2023-07-20  8:38   ` Konrad Dybcio
@ 2023-07-20 15:24   ` Vinod Koul
  1 sibling, 0 replies; 13+ messages in thread
From: Vinod Koul @ 2023-07-20 15:24 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Andy Gross, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley, linux-arm-msm, devicetree,
	linux-kernel

On 20-07-23, 10:35, Krzysztof Kozlowski wrote:
> Bindings expect the LPG node name to be "pwm":
> 
>   sc8180x-lenovo-flex-5g.dtb: pmic@5: 'lpg' does not match any of the regexes:

Reviewed-by: Vinod Koul <vkoul@kernel.org>

-- 
~Vinod

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

* Re: (subset) [PATCH 1/4] arm64: dts: qcom: sc8180x-pmics: add missing qcom,spmi-gpio fallbacks
  2023-07-20  8:34 [PATCH 1/4] arm64: dts: qcom: sc8180x-pmics: add missing qcom,spmi-gpio fallbacks Krzysztof Kozlowski
                   ` (4 preceding siblings ...)
  2023-07-20 15:23 ` Vinod Koul
@ 2023-07-22  5:17 ` Bjorn Andersson
  5 siblings, 0 replies; 13+ messages in thread
From: Bjorn Andersson @ 2023-07-22  5:17 UTC (permalink / raw)
  To: Andy Gross, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley, Vinod Koul, linux-arm-msm, devicetree, linux-kernel,
	Krzysztof Kozlowski


On Thu, 20 Jul 2023 10:34:57 +0200, Krzysztof Kozlowski wrote:
> The GPIO children of PMICs should use qcom,spmi-gpio fallback:
> 
>   sc8180x-primus.dtb: pmic@0: gpio@c000:compatible: ['qcom,pmc8180-gpio'] is too short
> 
> 

Applied, thanks!

[1/4] arm64: dts: qcom: sc8180x-pmics: add missing qcom,spmi-gpio fallbacks
      commit: 0304fc1de3d930db83749cca6ccb3a4f89918fc4
[2/4] arm64: dts: qcom: sc8180x-pmics: add missing gpio-ranges
      commit: 565951b1202e1984154abaae4567f16f8073fca3
[3/4] arm64: dts: qcom: sc8180x-pmics: align SPMI PMIC Power-on node name with dtschema
      commit: bf520227bd32381c587fa36271475e035daab3d7
[4/4] arm64: dts: qcom: sc8180x-pmics: align LPG node name with dtschema
      commit: 4af302a7e29e70bd930e80ab8f967da48a99a31a

Best regards,
-- 
Bjorn Andersson <andersson@kernel.org>

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

end of thread, other threads:[~2023-07-22  5:14 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-07-20  8:34 [PATCH 1/4] arm64: dts: qcom: sc8180x-pmics: add missing qcom,spmi-gpio fallbacks Krzysztof Kozlowski
2023-07-20  8:34 ` [PATCH 2/4] arm64: dts: qcom: sc8180x-pmics: add missing gpio-ranges Krzysztof Kozlowski
2023-07-20  8:37   ` Konrad Dybcio
2023-07-20 15:24   ` Vinod Koul
2023-07-20  8:34 ` [PATCH 3/4] arm64: dts: qcom: sc8180x-pmics: align SPMI PMIC Power-on node name with dtschema Krzysztof Kozlowski
2023-07-20  8:38   ` Konrad Dybcio
2023-07-20 15:24   ` Vinod Koul
2023-07-20  8:35 ` [PATCH 4/4] arm64: dts: qcom: sc8180x-pmics: align LPG " Krzysztof Kozlowski
2023-07-20  8:38   ` Konrad Dybcio
2023-07-20 15:24   ` Vinod Koul
2023-07-20  8:36 ` [PATCH 1/4] arm64: dts: qcom: sc8180x-pmics: add missing qcom,spmi-gpio fallbacks Konrad Dybcio
2023-07-20 15:23 ` Vinod Koul
2023-07-22  5:17 ` (subset) " Bjorn Andersson

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).