devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/7] arm64: dts: qcom: fix PMICs for SM8350/SM8450 platforms
@ 2022-02-26 20:50 Dmitry Baryshkov
  2022-02-26 20:50 ` [PATCH 1/7] arm64: dts: qcom: pm8350: add temp sensor and thermal zone config Dmitry Baryshkov
                   ` (6 more replies)
  0 siblings, 7 replies; 9+ messages in thread
From: Dmitry Baryshkov @ 2022-02-26 20:50 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Rob Herring; +Cc: linux-arm-msm, devicetree

- Add missing thermal sensors and thermal zones definitions
- For existing thermal zones stop depending on thermal_zones label,
  which is not widely present
- Add PM8450 include file

Dmitry Baryshkov (7):
  arm64: dts: qcom: pm8350: add temp sensor and thermal zone config
  arm64: dts: qcom: pm8350b: add temp sensor and thermal zone config
  arm64: dts: qcom: pmr735b: add temp sensor and thermal zone config
  arm64: dts: qcom: pm8350c: stop depending on thermal_zones label
  arm64: dts: qcom: pmr735a: stop depending on thermal_zones label
  dt-bindings: mfd: qcom-spmi-pmic: add pm8450 entry
  arm64: dts: qcom: add pm8450 support

 .../bindings/mfd/qcom,spmi-pmic.txt           |  1 +
 arch/arm64/boot/dts/qcom/pm8350.dtsi          | 31 ++++++++++
 arch/arm64/boot/dts/qcom/pm8350b.dtsi         | 31 ++++++++++
 arch/arm64/boot/dts/qcom/pm8350c.dtsi         | 32 +++++-----
 arch/arm64/boot/dts/qcom/pm8450.dtsi          | 59 +++++++++++++++++++
 arch/arm64/boot/dts/qcom/pmr735a.dtsi         | 32 +++++-----
 arch/arm64/boot/dts/qcom/pmr735b.dtsi         | 31 ++++++++++
 7 files changed, 187 insertions(+), 30 deletions(-)
 create mode 100644 arch/arm64/boot/dts/qcom/pm8450.dtsi

-- 
2.30.2


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

* [PATCH 1/7] arm64: dts: qcom: pm8350: add temp sensor and thermal zone config
  2022-02-26 20:50 [PATCH 0/7] arm64: dts: qcom: fix PMICs for SM8350/SM8450 platforms Dmitry Baryshkov
@ 2022-02-26 20:50 ` Dmitry Baryshkov
  2022-02-26 20:50 ` [PATCH 2/7] arm64: dts: qcom: pm8350b: " Dmitry Baryshkov
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 9+ messages in thread
From: Dmitry Baryshkov @ 2022-02-26 20:50 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Rob Herring; +Cc: linux-arm-msm, devicetree

Add temp-alarm device tree node and a default configuration for the
corresponding thermal zone for this PMIC. Temperatures are based on
downstream values.

Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
---
 arch/arm64/boot/dts/qcom/pm8350.dtsi | 31 ++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/arch/arm64/boot/dts/qcom/pm8350.dtsi b/arch/arm64/boot/dts/qcom/pm8350.dtsi
index 308f9ca7c744..b10f33afa5e3 100644
--- a/arch/arm64/boot/dts/qcom/pm8350.dtsi
+++ b/arch/arm64/boot/dts/qcom/pm8350.dtsi
@@ -6,6 +6,30 @@
 #include <dt-bindings/interrupt-controller/irq.h>
 #include <dt-bindings/spmi/spmi.h>
 
+/ {
+	thermal-zones {
+		pm8350_thermal: pm8350c-thermal {
+			polling-delay-passive = <100>;
+			polling-delay = <0>;
+			thermal-sensors = <&pm8350_temp_alarm>;
+
+			trips {
+				pm8350_trip0: trip0 {
+					temperature = <95000>;
+					hysteresis = <0>;
+					type = "passive";
+				};
+
+				pm8350_crit: pm8350c-crit {
+					temperature = <115000>;
+					hysteresis = <0>;
+					type = "critical";
+				};
+			};
+		};
+	};
+};
+
 &spmi_bus {
 	pm8350: pmic@1 {
 		compatible = "qcom,pm8350", "qcom,spmi-pmic";
@@ -13,6 +37,13 @@ pm8350: pmic@1 {
 		#address-cells = <1>;
 		#size-cells = <0>;
 
+		pm8350_temp_alarm: temp-alarm@a00 {
+			compatible = "qcom,spmi-temp-alarm";
+			reg = <0xa00>;
+			interrupts = <0x1 0xa 0x0 IRQ_TYPE_EDGE_BOTH>;
+			#thermal-sensor-cells = <0>;
+		};
+
 		pm8350_gpios: gpio@8800 {
 			compatible = "qcom,pm8350-gpio";
 			reg = <0x8800>;
-- 
2.30.2


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

* [PATCH 2/7] arm64: dts: qcom: pm8350b: add temp sensor and thermal zone config
  2022-02-26 20:50 [PATCH 0/7] arm64: dts: qcom: fix PMICs for SM8350/SM8450 platforms Dmitry Baryshkov
  2022-02-26 20:50 ` [PATCH 1/7] arm64: dts: qcom: pm8350: add temp sensor and thermal zone config Dmitry Baryshkov
@ 2022-02-26 20:50 ` Dmitry Baryshkov
  2022-02-26 20:50 ` [PATCH 3/7] arm64: dts: qcom: pmr735b: " Dmitry Baryshkov
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 9+ messages in thread
From: Dmitry Baryshkov @ 2022-02-26 20:50 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Rob Herring; +Cc: linux-arm-msm, devicetree

Add temp-alarm device tree node and a default configuration for the
corresponding thermal zone for this PMIC. Temperatures are based on
downstream values.

Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
---
 arch/arm64/boot/dts/qcom/pm8350b.dtsi | 31 +++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/arch/arm64/boot/dts/qcom/pm8350b.dtsi b/arch/arm64/boot/dts/qcom/pm8350b.dtsi
index b23bb1d49a4d..f1d1d4c8edf8 100644
--- a/arch/arm64/boot/dts/qcom/pm8350b.dtsi
+++ b/arch/arm64/boot/dts/qcom/pm8350b.dtsi
@@ -6,6 +6,30 @@
 #include <dt-bindings/interrupt-controller/irq.h>
 #include <dt-bindings/spmi/spmi.h>
 
+/ {
+	thermal-zones {
+		pm8350b_thermal: pm8350c-thermal {
+			polling-delay-passive = <100>;
+			polling-delay = <0>;
+			thermal-sensors = <&pm8350b_temp_alarm>;
+
+			trips {
+				pm8350b_trip0: trip0 {
+					temperature = <95000>;
+					hysteresis = <0>;
+					type = "passive";
+				};
+
+				pm8350b_crit: pm8350c-crit {
+					temperature = <115000>;
+					hysteresis = <0>;
+					type = "critical";
+				};
+			};
+		};
+	};
+};
+
 &spmi_bus {
 	pm8350b: pmic@3 {
 		compatible = "qcom,pm8350b", "qcom,spmi-pmic";
@@ -13,6 +37,13 @@ pm8350b: pmic@3 {
 		#address-cells = <1>;
 		#size-cells = <0>;
 
+		pm8350b_temp_alarm: temp-alarm@a00 {
+			compatible = "qcom,spmi-temp-alarm";
+			reg = <0xa00>;
+			interrupts = <0x3 0xa 0x0 IRQ_TYPE_EDGE_BOTH>;
+			#thermal-sensor-cells = <0>;
+		};
+
 		pm8350b_gpios: gpio@8800 {
 			compatible = "qcom,pm8350b-gpio";
 			reg = <0x8800>;
-- 
2.30.2


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

* [PATCH 3/7] arm64: dts: qcom: pmr735b: add temp sensor and thermal zone config
  2022-02-26 20:50 [PATCH 0/7] arm64: dts: qcom: fix PMICs for SM8350/SM8450 platforms Dmitry Baryshkov
  2022-02-26 20:50 ` [PATCH 1/7] arm64: dts: qcom: pm8350: add temp sensor and thermal zone config Dmitry Baryshkov
  2022-02-26 20:50 ` [PATCH 2/7] arm64: dts: qcom: pm8350b: " Dmitry Baryshkov
@ 2022-02-26 20:50 ` Dmitry Baryshkov
  2022-02-26 20:50 ` [PATCH 4/7] arm64: dts: qcom: pm8350c: stop depending on thermal_zones label Dmitry Baryshkov
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 9+ messages in thread
From: Dmitry Baryshkov @ 2022-02-26 20:50 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Rob Herring; +Cc: linux-arm-msm, devicetree

Add temp-alarm device tree node and a default configuration for the
corresponding thermal zone for this PMIC. Temperatures are based on
downstream values.

Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
---
 arch/arm64/boot/dts/qcom/pmr735b.dtsi | 31 +++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/arch/arm64/boot/dts/qcom/pmr735b.dtsi b/arch/arm64/boot/dts/qcom/pmr735b.dtsi
index 1144086280f5..604324188603 100644
--- a/arch/arm64/boot/dts/qcom/pmr735b.dtsi
+++ b/arch/arm64/boot/dts/qcom/pmr735b.dtsi
@@ -6,6 +6,30 @@
 #include <dt-bindings/interrupt-controller/irq.h>
 #include <dt-bindings/spmi/spmi.h>
 
+/ {
+	thermal-zones {
+		pmr735a_thermal: pmr735a-thermal {
+			polling-delay-passive = <100>;
+			polling-delay = <0>;
+			thermal-sensors = <&pmr735b_temp_alarm>;
+
+			trips {
+				pmr735b_trip0: trip0 {
+					temperature = <95000>;
+					hysteresis = <0>;
+					type = "passive";
+				};
+
+				pmr735b_crit: pmr735a-crit {
+					temperature = <115000>;
+					hysteresis = <0>;
+					type = "critical";
+				};
+			};
+		};
+	};
+};
+
 &spmi_bus {
 	pmr735b: pmic@5 {
 		compatible = "qcom,pmr735b", "qcom,spmi-pmic";
@@ -13,6 +37,13 @@ pmr735b: pmic@5 {
 		#address-cells = <1>;
 		#size-cells = <0>;
 
+		pmr735b_temp_alarm: temp-alarm@a00 {
+			compatible = "qcom,spmi-temp-alarm";
+			reg = <0xa00>;
+			interrupts = <0x5 0xa 0x0 IRQ_TYPE_EDGE_BOTH>;
+			#thermal-sensor-cells = <0>;
+		};
+
 		pmr735b_gpios: gpio@8800 {
 			compatible = "qcom,pmr735b-gpio";
 			reg = <0x8800>;
-- 
2.30.2


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

* [PATCH 4/7] arm64: dts: qcom: pm8350c: stop depending on thermal_zones label
  2022-02-26 20:50 [PATCH 0/7] arm64: dts: qcom: fix PMICs for SM8350/SM8450 platforms Dmitry Baryshkov
                   ` (2 preceding siblings ...)
  2022-02-26 20:50 ` [PATCH 3/7] arm64: dts: qcom: pmr735b: " Dmitry Baryshkov
@ 2022-02-26 20:50 ` Dmitry Baryshkov
  2022-02-26 20:50 ` [PATCH 5/7] arm64: dts: qcom: pmr735a: " Dmitry Baryshkov
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 9+ messages in thread
From: Dmitry Baryshkov @ 2022-02-26 20:50 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Rob Herring; +Cc: linux-arm-msm, devicetree

Most of SoC device trees do not provide the thermal_zones label. Thus
stop depending on it and use the full path to the thermal zones nodes.

Fixes: 3795fe7d497b ("arm64: dts: qcom: pm8350c: Add temp-alarm support")
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
---
 arch/arm64/boot/dts/qcom/pm8350c.dtsi | 32 ++++++++++++++-------------
 1 file changed, 17 insertions(+), 15 deletions(-)

diff --git a/arch/arm64/boot/dts/qcom/pm8350c.dtsi b/arch/arm64/boot/dts/qcom/pm8350c.dtsi
index e1b75ae0a823..9bc6464477bd 100644
--- a/arch/arm64/boot/dts/qcom/pm8350c.dtsi
+++ b/arch/arm64/boot/dts/qcom/pm8350c.dtsi
@@ -32,23 +32,25 @@ pm8350c_gpios: gpio@8800 {
 	};
 };
 
-&thermal_zones {
-	pm8350c_thermal: pm8350c-thermal {
-		polling-delay-passive = <100>;
-		polling-delay = <0>;
-		thermal-sensors = <&pm8350c_temp_alarm>;
+/ {
+	thermal-zones {
+		pm8350c_thermal: pm8350c-thermal {
+			polling-delay-passive = <100>;
+			polling-delay = <0>;
+			thermal-sensors = <&pm8350c_temp_alarm>;
 
-		trips {
-			pm8350c_trip0: trip0 {
-				temperature = <95000>;
-				hysteresis = <0>;
-				type = "passive";
-			};
+			trips {
+				pm8350c_trip0: trip0 {
+					temperature = <95000>;
+					hysteresis = <0>;
+					type = "passive";
+				};
 
-			pm8350c_crit: pm8350c-crit {
-				temperature = <115000>;
-				hysteresis = <0>;
-				type = "critical";
+				pm8350c_crit: pm8350c-crit {
+					temperature = <115000>;
+					hysteresis = <0>;
+					type = "critical";
+				};
 			};
 		};
 	};
-- 
2.30.2


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

* [PATCH 5/7] arm64: dts: qcom: pmr735a: stop depending on thermal_zones label
  2022-02-26 20:50 [PATCH 0/7] arm64: dts: qcom: fix PMICs for SM8350/SM8450 platforms Dmitry Baryshkov
                   ` (3 preceding siblings ...)
  2022-02-26 20:50 ` [PATCH 4/7] arm64: dts: qcom: pm8350c: stop depending on thermal_zones label Dmitry Baryshkov
@ 2022-02-26 20:50 ` Dmitry Baryshkov
  2022-02-26 20:50 ` [PATCH 6/7] dt-bindings: mfd: qcom-spmi-pmic: add pm8450 entry Dmitry Baryshkov
  2022-02-26 20:50 ` [PATCH 7/7] arm64: dts: qcom: add pm8450 support Dmitry Baryshkov
  6 siblings, 0 replies; 9+ messages in thread
From: Dmitry Baryshkov @ 2022-02-26 20:50 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Rob Herring; +Cc: linux-arm-msm, devicetree

Most of SoC device trees do not provide the thermal_zones label. Thus
stop depending on it and use the full path to the thermal zones nodes.

Fixes: 7a3544e5d4e8 ("arm64: dts: qcom: pmr735a: Add temp-alarm support")
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
---
 arch/arm64/boot/dts/qcom/pmr735a.dtsi | 32 ++++++++++++++-------------
 1 file changed, 17 insertions(+), 15 deletions(-)

diff --git a/arch/arm64/boot/dts/qcom/pmr735a.dtsi b/arch/arm64/boot/dts/qcom/pmr735a.dtsi
index b4b6ba24f845..febda50779f9 100644
--- a/arch/arm64/boot/dts/qcom/pmr735a.dtsi
+++ b/arch/arm64/boot/dts/qcom/pmr735a.dtsi
@@ -32,23 +32,25 @@ pmr735a_gpios: gpio@8800 {
 	};
 };
 
-&thermal_zones {
-	pmr735a_thermal: pmr735a-thermal {
-		polling-delay-passive = <100>;
-		polling-delay = <0>;
-		thermal-sensors = <&pmr735a_temp_alarm>;
+/ {
+	thermal-zones {
+		pmr735a_thermal: pmr735a-thermal {
+			polling-delay-passive = <100>;
+			polling-delay = <0>;
+			thermal-sensors = <&pmr735a_temp_alarm>;
 
-		trips {
-			pmr735a_trip0: trip0 {
-				temperature = <95000>;
-				hysteresis = <0>;
-				type = "passive";
-			};
+			trips {
+				pmr735a_trip0: trip0 {
+					temperature = <95000>;
+					hysteresis = <0>;
+					type = "passive";
+				};
 
-			pmr735a_crit: pmr735a-crit {
-				temperature = <115000>;
-				hysteresis = <0>;
-				type = "critical";
+				pmr735a_crit: pmr735a-crit {
+					temperature = <115000>;
+					hysteresis = <0>;
+					type = "critical";
+				};
 			};
 		};
 	};
-- 
2.30.2


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

* [PATCH 6/7] dt-bindings: mfd: qcom-spmi-pmic: add pm8450 entry
  2022-02-26 20:50 [PATCH 0/7] arm64: dts: qcom: fix PMICs for SM8350/SM8450 platforms Dmitry Baryshkov
                   ` (4 preceding siblings ...)
  2022-02-26 20:50 ` [PATCH 5/7] arm64: dts: qcom: pmr735a: " Dmitry Baryshkov
@ 2022-02-26 20:50 ` Dmitry Baryshkov
  2022-03-04 23:14   ` Rob Herring
  2022-02-26 20:50 ` [PATCH 7/7] arm64: dts: qcom: add pm8450 support Dmitry Baryshkov
  6 siblings, 1 reply; 9+ messages in thread
From: Dmitry Baryshkov @ 2022-02-26 20:50 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Rob Herring; +Cc: linux-arm-msm, devicetree

Add bindings for the PM8450 PMIC (qcom,pm8450).

Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
---
 Documentation/devicetree/bindings/mfd/qcom,spmi-pmic.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/mfd/qcom,spmi-pmic.txt b/Documentation/devicetree/bindings/mfd/qcom,spmi-pmic.txt
index a461ec2f758f..c77711614925 100644
--- a/Documentation/devicetree/bindings/mfd/qcom,spmi-pmic.txt
+++ b/Documentation/devicetree/bindings/mfd/qcom,spmi-pmic.txt
@@ -29,6 +29,7 @@ Required properties:
                    "qcom,pm8150l",
                    "qcom,pm8226",
                    "qcom,pm8350c",
+                   "qcom,pm8450",
                    "qcom,pm8841",
                    "qcom,pm8901",
                    "qcom,pm8909",
-- 
2.30.2


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

* [PATCH 7/7] arm64: dts: qcom: add pm8450 support
  2022-02-26 20:50 [PATCH 0/7] arm64: dts: qcom: fix PMICs for SM8350/SM8450 platforms Dmitry Baryshkov
                   ` (5 preceding siblings ...)
  2022-02-26 20:50 ` [PATCH 6/7] dt-bindings: mfd: qcom-spmi-pmic: add pm8450 entry Dmitry Baryshkov
@ 2022-02-26 20:50 ` Dmitry Baryshkov
  6 siblings, 0 replies; 9+ messages in thread
From: Dmitry Baryshkov @ 2022-02-26 20:50 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Rob Herring; +Cc: linux-arm-msm, devicetree

Add PM8450 PMIC device tree include file. It is going to be used by
SM8450-based devices.

Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
---
 arch/arm64/boot/dts/qcom/pm8450.dtsi | 59 ++++++++++++++++++++++++++++
 1 file changed, 59 insertions(+)
 create mode 100644 arch/arm64/boot/dts/qcom/pm8450.dtsi

diff --git a/arch/arm64/boot/dts/qcom/pm8450.dtsi b/arch/arm64/boot/dts/qcom/pm8450.dtsi
new file mode 100644
index 000000000000..ae5bce3cf46e
--- /dev/null
+++ b/arch/arm64/boot/dts/qcom/pm8450.dtsi
@@ -0,0 +1,59 @@
+// SPDX-License-Identifier: BSD-3-Clause
+/*
+ * Copyright (c) 2022, Linaro Limited
+ */
+
+#include <dt-bindings/interrupt-controller/irq.h>
+#include <dt-bindings/spmi/spmi.h>
+
+/ {
+	thermal-zones {
+		pm8450-thermal {
+			polling-delay-passive = <100>;
+			polling-delay = <0>;
+
+			thermal-sensors = <&pm8450_temp_alarm>;
+
+			trips {
+				trip0 {
+					temperature = <95000>;
+					hysteresis = <0>;
+					type = "passive";
+				};
+
+				trip1 {
+					temperature = <115000>;
+					hysteresis = <0>;
+					type = "hot";
+				};
+			};
+		};
+	};
+};
+
+
+&spmi_bus {
+	pm8450: pmic@7 {
+		compatible = "qcom,pm8450", "qcom,spmi-pmic";
+		reg = <0x7 SPMI_USID>;
+		#address-cells = <1>;
+		#size-cells = <0>;
+
+		pm8450_temp_alarm: temp-alarm@a00 {
+			compatible = "qcom,spmi-temp-alarm";
+			reg = <0xa00>;
+			interrupts = <0x7 0xa 0x0 IRQ_TYPE_EDGE_BOTH>;
+			#thermal-sensor-cells = <0>;
+		};
+
+		pm8450_gpios: gpio@8800 {
+			compatible = "qcom,pm8450-gpio", "qcom,spmi-gpio";
+			reg = <0x8800>;
+			gpio-controller;
+			gpio-ranges = <&pm8450_gpios 0 0 4>;
+			#gpio-cells = <2>;
+			interrupt-controller;
+			#interrupt-cells = <2>;
+		};
+	};
+};
-- 
2.30.2


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

* Re: [PATCH 6/7] dt-bindings: mfd: qcom-spmi-pmic: add pm8450 entry
  2022-02-26 20:50 ` [PATCH 6/7] dt-bindings: mfd: qcom-spmi-pmic: add pm8450 entry Dmitry Baryshkov
@ 2022-03-04 23:14   ` Rob Herring
  0 siblings, 0 replies; 9+ messages in thread
From: Rob Herring @ 2022-03-04 23:14 UTC (permalink / raw)
  To: Dmitry Baryshkov
  Cc: Bjorn Andersson, devicetree, Rob Herring, Andy Gross,
	linux-arm-msm

On Sat, 26 Feb 2022 23:50:34 +0300, Dmitry Baryshkov wrote:
> Add bindings for the PM8450 PMIC (qcom,pm8450).
> 
> Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
> ---
>  Documentation/devicetree/bindings/mfd/qcom,spmi-pmic.txt | 1 +
>  1 file changed, 1 insertion(+)
> 

Acked-by: Rob Herring <robh@kernel.org>

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

end of thread, other threads:[~2022-03-04 23:14 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-02-26 20:50 [PATCH 0/7] arm64: dts: qcom: fix PMICs for SM8350/SM8450 platforms Dmitry Baryshkov
2022-02-26 20:50 ` [PATCH 1/7] arm64: dts: qcom: pm8350: add temp sensor and thermal zone config Dmitry Baryshkov
2022-02-26 20:50 ` [PATCH 2/7] arm64: dts: qcom: pm8350b: " Dmitry Baryshkov
2022-02-26 20:50 ` [PATCH 3/7] arm64: dts: qcom: pmr735b: " Dmitry Baryshkov
2022-02-26 20:50 ` [PATCH 4/7] arm64: dts: qcom: pm8350c: stop depending on thermal_zones label Dmitry Baryshkov
2022-02-26 20:50 ` [PATCH 5/7] arm64: dts: qcom: pmr735a: " Dmitry Baryshkov
2022-02-26 20:50 ` [PATCH 6/7] dt-bindings: mfd: qcom-spmi-pmic: add pm8450 entry Dmitry Baryshkov
2022-03-04 23:14   ` Rob Herring
2022-02-26 20:50 ` [PATCH 7/7] arm64: dts: qcom: add pm8450 support Dmitry Baryshkov

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