linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/7] SDX55 devicetree updates - Part 2
@ 2021-01-18  5:09 Manivannan Sadhasivam
  2021-01-18  5:09 ` [PATCH 1/7] dt-bindings: usb: qcom,dwc3: Add binding for SDX55 Manivannan Sadhasivam
                   ` (6 more replies)
  0 siblings, 7 replies; 10+ messages in thread
From: Manivannan Sadhasivam @ 2021-01-18  5:09 UTC (permalink / raw)
  To: agross, bjorn.andersson
  Cc: linux-arm-msm, linux-kernel, Manivannan Sadhasivam

Hello Bjorn,

Here is the part 2 of the SDX55 devicetree updates series. This series adds
USB, watchdog and pshold support along with the relevant bindings. Also, there
is one cleanup patch which fixes the "dtbs_check" warnings for thermal zones.

The binding patches are expected to go through relevant subsystem trees. If they
are not merged with this series, I'll submit them separately.

Please consider merging the DT patches!

Thanks,
Mani

Manivannan Sadhasivam (7):
  dt-bindings: usb: qcom,dwc3: Add binding for SDX55
  ARM: dts: qcom: sdx55: Add USB3 and PHY support
  ARM: dts: qcom: sdx55-mtp: Enable USB3 and PHY support
  dt-bindings: watchdog: Add binding for Qcom SDX55
  ARM: dts: qcom: sdx55: Add Watchdog support
  ARM: dts: qcom: sdx55: Add pshold support
  arm64: dts: qcom: Add missing "-thermal" suffix for thermal zones

 .../devicetree/bindings/usb/qcom,dwc3.yaml    |  1 +
 .../bindings/watchdog/qcom-wdt.yaml           |  1 +
 arch/arm/boot/dts/qcom-sdx55-mtp.dts          | 29 +++++-
 arch/arm/boot/dts/qcom-sdx55.dtsi             | 96 +++++++++++++++++++
 arch/arm64/boot/dts/qcom/pm8150.dtsi          |  2 +-
 arch/arm64/boot/dts/qcom/pm8150b.dtsi         |  2 +-
 arch/arm64/boot/dts/qcom/pm8150l.dtsi         |  2 +-
 arch/arm64/boot/dts/qcom/pm8994.dtsi          |  2 +-
 arch/arm64/boot/dts/qcom/pm8998.dtsi          |  2 +-
 arch/arm64/boot/dts/qcom/pms405.dtsi          |  2 +-
 10 files changed, 129 insertions(+), 10 deletions(-)

-- 
2.25.1


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

* [PATCH 1/7] dt-bindings: usb: qcom,dwc3: Add binding for SDX55
  2021-01-18  5:09 [PATCH 0/7] SDX55 devicetree updates - Part 2 Manivannan Sadhasivam
@ 2021-01-18  5:09 ` Manivannan Sadhasivam
  2021-01-18 11:37   ` Felipe Balbi
  2021-01-18  5:10 ` [PATCH 2/7] ARM: dts: qcom: sdx55: Add USB3 and PHY support Manivannan Sadhasivam
                   ` (5 subsequent siblings)
  6 siblings, 1 reply; 10+ messages in thread
From: Manivannan Sadhasivam @ 2021-01-18  5:09 UTC (permalink / raw)
  To: agross, bjorn.andersson
  Cc: linux-arm-msm, linux-kernel, Manivannan Sadhasivam, Rob Herring,
	devicetree, linux-usb

Add devicetree binding for SDX55 USB controller based on Qcom designware
IP.

Cc: Rob Herring <robh+dt@kernel.org>
Cc: devicetree@vger.kernel.org
Cc: linux-usb@vger.kernel.org
Signed-off-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
---
 Documentation/devicetree/bindings/usb/qcom,dwc3.yaml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/usb/qcom,dwc3.yaml b/Documentation/devicetree/bindings/usb/qcom,dwc3.yaml
index 2cf525d21e05..fd93b941f07a 100644
--- a/Documentation/devicetree/bindings/usb/qcom,dwc3.yaml
+++ b/Documentation/devicetree/bindings/usb/qcom,dwc3.yaml
@@ -17,6 +17,7 @@ properties:
           - qcom,msm8998-dwc3
           - qcom,sc7180-dwc3
           - qcom,sdm845-dwc3
+          - qcom,sdx55-dwc3
       - const: qcom,dwc3
 
   reg:
-- 
2.25.1


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

* [PATCH 2/7] ARM: dts: qcom: sdx55: Add USB3 and PHY support
  2021-01-18  5:09 [PATCH 0/7] SDX55 devicetree updates - Part 2 Manivannan Sadhasivam
  2021-01-18  5:09 ` [PATCH 1/7] dt-bindings: usb: qcom,dwc3: Add binding for SDX55 Manivannan Sadhasivam
@ 2021-01-18  5:10 ` Manivannan Sadhasivam
  2021-01-18  5:10 ` [PATCH 3/7] ARM: dts: qcom: sdx55-mtp: Enable " Manivannan Sadhasivam
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 10+ messages in thread
From: Manivannan Sadhasivam @ 2021-01-18  5:10 UTC (permalink / raw)
  To: agross, bjorn.andersson
  Cc: linux-arm-msm, linux-kernel, Manivannan Sadhasivam

Add devicetree nodes for enabling USB3 controller, Qcom QMP PHY and
SNPS HS PHY on SDX55.

Signed-off-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
---
 arch/arm/boot/dts/qcom-sdx55.dtsi | 85 +++++++++++++++++++++++++++++++
 1 file changed, 85 insertions(+)

diff --git a/arch/arm/boot/dts/qcom-sdx55.dtsi b/arch/arm/boot/dts/qcom-sdx55.dtsi
index 6ec7cf1a2367..98945900baa9 100644
--- a/arch/arm/boot/dts/qcom-sdx55.dtsi
+++ b/arch/arm/boot/dts/qcom-sdx55.dtsi
@@ -146,6 +146,48 @@ blsp1_uart3: serial@831000 {
 			status = "disabled";
 		};
 
+		usb_hsphy: phy@ff4000 {
+			compatible = "qcom,usb-snps-hs-7nm-phy";
+			reg = <0x00ff4000 0x114>;
+			status = "disabled";
+			#phy-cells = <0>;
+
+			clocks = <&rpmhcc RPMH_CXO_CLK>;
+			clock-names = "ref";
+
+			resets = <&gcc GCC_QUSB2PHY_BCR>;
+		};
+
+		usb_qmpphy: phy@ff6000 {
+			compatible = "qcom,sdx55-qmp-usb3-uni-phy";
+			reg = <0x00ff6000 0x1c0>;
+			status = "disabled";
+			#clock-cells = <1>;
+			#address-cells = <1>;
+			#size-cells = <1>;
+			ranges;
+
+			clocks = <&gcc GCC_USB3_PHY_AUX_CLK>,
+				 <&gcc GCC_USB_PHY_CFG_AHB2PHY_CLK>,
+				 <&gcc GCC_USB3_PRIM_CLKREF_CLK>;
+			clock-names = "aux", "cfg_ahb", "ref";
+
+			resets = <&gcc GCC_USB3PHY_PHY_BCR>,
+				 <&gcc GCC_USB3_PHY_BCR>;
+			reset-names = "phy", "common";
+
+			usb_ssphy: phy@ff6200 {
+				reg = <0x00ff6200 0x170>,
+				      <0x00ff6400 0x200>,
+				      <0x00ff6800 0x800>;
+				#phy-cells = <0>;
+				#clock-cells = <0>;
+				clocks = <&gcc GCC_USB3_PHY_PIPE_CLK>;
+				clock-names = "pipe0";
+				clock-output-names = "usb3_uni_phy_pipe_clk_src";
+			};
+		};
+
 		qpic_bam: dma-controller@1b04000 {
 			compatible = "qcom,bam-v1.7.0";
 			reg = <0x01b04000 0x1c000>;
@@ -198,6 +240,49 @@ smem {
 			hwlocks = <&tcsr_mutex 3>;
 		};
 
+		usb: usb@a6f8800 {
+			compatible = "qcom,sdx55-dwc3", "qcom,dwc3";
+			reg = <0x0a6f8800 0x400>;
+			status = "disabled";
+			#address-cells = <1>;
+			#size-cells = <1>;
+			ranges;
+
+			clocks = <&gcc GCC_USB30_SLV_AHB_CLK>,
+				 <&gcc GCC_USB30_MASTER_CLK>,
+				 <&gcc GCC_USB30_MSTR_AXI_CLK>,
+				 <&gcc GCC_USB30_MOCK_UTMI_CLK>,
+				 <&gcc GCC_USB30_SLEEP_CLK>;
+			clock-names = "cfg_noc", "core", "iface", "mock_utmi",
+				      "sleep";
+
+			assigned-clocks = <&gcc GCC_USB30_MOCK_UTMI_CLK>,
+					  <&gcc GCC_USB30_MASTER_CLK>;
+			assigned-clock-rates = <19200000>, <200000000>;
+
+			interrupts = <GIC_SPI 131 IRQ_TYPE_LEVEL_HIGH>,
+				     <GIC_SPI 198 IRQ_TYPE_LEVEL_HIGH>,
+				     <GIC_SPI 158 IRQ_TYPE_LEVEL_HIGH>,
+				     <GIC_SPI 157 IRQ_TYPE_LEVEL_HIGH>;
+			interrupt-names = "hs_phy_irq", "ss_phy_irq",
+					  "dm_hs_phy_irq", "dp_hs_phy_irq";
+
+			power-domains = <&gcc USB30_GDSC>;
+
+			resets = <&gcc GCC_USB30_BCR>;
+
+			usb_dwc3: dwc3@a600000 {
+				compatible = "snps,dwc3";
+				reg = <0x0a600000 0xcd00>;
+				interrupts = <GIC_SPI 133 IRQ_TYPE_LEVEL_HIGH>;
+				iommus = <&apps_smmu 0x1a0 0x0>;
+				snps,dis_u2_susphy_quirk;
+				snps,dis_enblslpm_quirk;
+				phys = <&usb_hsphy>, <&usb_ssphy>;
+				phy-names = "usb2-phy", "usb3-phy";
+			};
+		};
+
 		pdc: interrupt-controller@b210000 {
 			compatible = "qcom,sdx55-pdc", "qcom,pdc";
 			reg = <0x0b210000 0x30000>;
-- 
2.25.1


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

* [PATCH 3/7] ARM: dts: qcom: sdx55-mtp: Enable USB3 and PHY support
  2021-01-18  5:09 [PATCH 0/7] SDX55 devicetree updates - Part 2 Manivannan Sadhasivam
  2021-01-18  5:09 ` [PATCH 1/7] dt-bindings: usb: qcom,dwc3: Add binding for SDX55 Manivannan Sadhasivam
  2021-01-18  5:10 ` [PATCH 2/7] ARM: dts: qcom: sdx55: Add USB3 and PHY support Manivannan Sadhasivam
@ 2021-01-18  5:10 ` Manivannan Sadhasivam
  2021-01-18  5:10 ` [PATCH 4/7] dt-bindings: watchdog: Add binding for Qcom SDX55 Manivannan Sadhasivam
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 10+ messages in thread
From: Manivannan Sadhasivam @ 2021-01-18  5:10 UTC (permalink / raw)
  To: agross, bjorn.andersson
  Cc: linux-arm-msm, linux-kernel, Manivannan Sadhasivam

Enable the support for USB3 controller, QMP PHY and HS PHY on SDX55 MTP.

Signed-off-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
---
 arch/arm/boot/dts/qcom-sdx55-mtp.dts | 29 ++++++++++++++++++++++++----
 1 file changed, 25 insertions(+), 4 deletions(-)

diff --git a/arch/arm/boot/dts/qcom-sdx55-mtp.dts b/arch/arm/boot/dts/qcom-sdx55-mtp.dts
index 96b6a295f813..7fec5e7a2724 100644
--- a/arch/arm/boot/dts/qcom-sdx55-mtp.dts
+++ b/arch/arm/boot/dts/qcom-sdx55-mtp.dts
@@ -111,7 +111,7 @@ vreg_s4e_1p904: smps4 {
 			regulator-max-microvolt = <1960000>;
 		};
 
-		ldo1 {
+		vreg_l1e_bb_1p2: ldo1 {
 			regulator-min-microvolt = <1200000>;
 			regulator-max-microvolt = <1200000>;
 			regulator-initial-mode = <RPMH_REGULATOR_MODE_LPM>;
@@ -129,13 +129,13 @@ ldo3 {
 			regulator-initial-mode = <RPMH_REGULATOR_MODE_LPM>;
 		};
 
-		ldo4 {
+		vreg_l4e_bb_0p875: ldo4 {
 			regulator-min-microvolt = <872000>;
 			regulator-max-microvolt = <872000>;
 			regulator-initial-mode = <RPMH_REGULATOR_MODE_LPM>;
 		};
 
-		ldo5 {
+		vreg_l5e_bb_1p7: ldo5 {
 			regulator-min-microvolt = <1704000>;
 			regulator-max-microvolt = <1900000>;
 			regulator-initial-mode = <RPMH_REGULATOR_MODE_LPM>;
@@ -165,7 +165,7 @@ ldo9 {
 			regulator-initial-mode = <RPMH_REGULATOR_MODE_LPM>;
 		};
 
-		ldo10 {
+		vreg_l10e_3p1: ldo10 {
 			regulator-min-microvolt = <3088000>;
 			regulator-max-microvolt = <3088000>;
 			regulator-initial-mode = <RPMH_REGULATOR_MODE_LPM>;
@@ -228,3 +228,24 @@ nand@0 {
 		nand-bus-width = <8>;
 	};
 };
+
+&usb {
+	status = "okay";
+};
+
+&usb_dwc3 {
+	dr_mode = "peripheral";
+};
+
+&usb_hsphy {
+	status = "okay";
+	vdda-pll-supply = <&vreg_l4e_bb_0p875>;
+	vdda33-supply = <&vreg_l10e_3p1>;
+	vdda18-supply = <&vreg_l5e_bb_1p7>;
+};
+
+&usb_qmpphy {
+	status = "okay";
+	vdda-phy-supply = <&vreg_l4e_bb_0p875>;
+	vdda-pll-supply = <&vreg_l1e_bb_1p2>;
+};
-- 
2.25.1


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

* [PATCH 4/7] dt-bindings: watchdog: Add binding for Qcom SDX55
  2021-01-18  5:09 [PATCH 0/7] SDX55 devicetree updates - Part 2 Manivannan Sadhasivam
                   ` (2 preceding siblings ...)
  2021-01-18  5:10 ` [PATCH 3/7] ARM: dts: qcom: sdx55-mtp: Enable " Manivannan Sadhasivam
@ 2021-01-18  5:10 ` Manivannan Sadhasivam
  2021-01-23 18:36   ` Guenter Roeck
  2021-01-18  5:10 ` [PATCH 5/7] ARM: dts: qcom: sdx55: Add Watchdog support Manivannan Sadhasivam
                   ` (2 subsequent siblings)
  6 siblings, 1 reply; 10+ messages in thread
From: Manivannan Sadhasivam @ 2021-01-18  5:10 UTC (permalink / raw)
  To: agross, bjorn.andersson
  Cc: linux-arm-msm, linux-kernel, Manivannan Sadhasivam,
	Wim Van Sebroeck, Guenter Roeck, Rob Herring, linux-watchdog,
	devicetree

Add devicetree binding for watchdog present in Qcom SDX55 platform.

Cc: Wim Van Sebroeck <wim@linux-watchdog.org>
Cc: Guenter Roeck <linux@roeck-us.net>
Cc: Rob Herring <robh+dt@kernel.org>
Cc: linux-watchdog@vger.kernel.org
Cc: devicetree@vger.kernel.org
Signed-off-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
---
 Documentation/devicetree/bindings/watchdog/qcom-wdt.yaml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/watchdog/qcom-wdt.yaml b/Documentation/devicetree/bindings/watchdog/qcom-wdt.yaml
index 8e3760a3822b..b8e4118945a0 100644
--- a/Documentation/devicetree/bindings/watchdog/qcom-wdt.yaml
+++ b/Documentation/devicetree/bindings/watchdog/qcom-wdt.yaml
@@ -18,6 +18,7 @@ properties:
       - qcom,apss-wdt-qcs404
       - qcom,apss-wdt-sc7180
       - qcom,apss-wdt-sdm845
+      - qcom,apss-wdt-sdx55
       - qcom,apss-wdt-sm8150
       - qcom,kpss-timer
       - qcom,kpss-wdt
-- 
2.25.1


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

* [PATCH 5/7] ARM: dts: qcom: sdx55: Add Watchdog support
  2021-01-18  5:09 [PATCH 0/7] SDX55 devicetree updates - Part 2 Manivannan Sadhasivam
                   ` (3 preceding siblings ...)
  2021-01-18  5:10 ` [PATCH 4/7] dt-bindings: watchdog: Add binding for Qcom SDX55 Manivannan Sadhasivam
@ 2021-01-18  5:10 ` Manivannan Sadhasivam
  2021-01-18  5:10 ` [PATCH 6/7] ARM: dts: qcom: sdx55: Add pshold support Manivannan Sadhasivam
  2021-01-18  5:10 ` [PATCH 7/7] arm64: dts: qcom: Add missing "-thermal" suffix for thermal zones Manivannan Sadhasivam
  6 siblings, 0 replies; 10+ messages in thread
From: Manivannan Sadhasivam @ 2021-01-18  5:10 UTC (permalink / raw)
  To: agross, bjorn.andersson
  Cc: linux-arm-msm, linux-kernel, Manivannan Sadhasivam

Enable Watchdog support for Application Processor Subsystem (APSS) block
on SDX55 platform.

Signed-off-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
---
 arch/arm/boot/dts/qcom-sdx55.dtsi | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/arch/arm/boot/dts/qcom-sdx55.dtsi b/arch/arm/boot/dts/qcom-sdx55.dtsi
index 98945900baa9..606244fbb91c 100644
--- a/arch/arm/boot/dts/qcom-sdx55.dtsi
+++ b/arch/arm/boot/dts/qcom-sdx55.dtsi
@@ -354,6 +354,12 @@ intc: interrupt-controller@17800000 {
 			      <0x17802000 0x1000>;
 		};
 
+		watchdog@17817000 {
+			compatible = "qcom,apss-wdt-sdx55", "qcom,kpss-wdt";
+			reg = <0x17817000 0x1000>;
+			clocks = <&sleep_clk>;
+		};
+
 		timer@17820000 {
 			#address-cells = <1>;
 			#size-cells = <1>;
-- 
2.25.1


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

* [PATCH 6/7] ARM: dts: qcom: sdx55: Add pshold support
  2021-01-18  5:09 [PATCH 0/7] SDX55 devicetree updates - Part 2 Manivannan Sadhasivam
                   ` (4 preceding siblings ...)
  2021-01-18  5:10 ` [PATCH 5/7] ARM: dts: qcom: sdx55: Add Watchdog support Manivannan Sadhasivam
@ 2021-01-18  5:10 ` Manivannan Sadhasivam
  2021-01-18  5:10 ` [PATCH 7/7] arm64: dts: qcom: Add missing "-thermal" suffix for thermal zones Manivannan Sadhasivam
  6 siblings, 0 replies; 10+ messages in thread
From: Manivannan Sadhasivam @ 2021-01-18  5:10 UTC (permalink / raw)
  To: agross, bjorn.andersson
  Cc: linux-arm-msm, linux-kernel, Manivannan Sadhasivam

Add support for pshold block to drive pshold towards the PMIC, which is
used to trigger a configurable event such as reboot or poweroff of the
SDX55 platform.

Signed-off-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
---
 arch/arm/boot/dts/qcom-sdx55.dtsi | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/arch/arm/boot/dts/qcom-sdx55.dtsi b/arch/arm/boot/dts/qcom-sdx55.dtsi
index 606244fbb91c..342149abea5e 100644
--- a/arch/arm/boot/dts/qcom-sdx55.dtsi
+++ b/arch/arm/boot/dts/qcom-sdx55.dtsi
@@ -292,6 +292,11 @@ pdc: interrupt-controller@b210000 {
 			interrupt-controller;
 		};
 
+		restart@c264000 {
+			compatible = "qcom,pshold";
+			reg = <0x0c264000 0x1000>;
+		};
+
 		spmi_bus: qcom,spmi@c440000 {
 			compatible = "qcom,spmi-pmic-arb";
 			reg = <0x0c440000 0x0000d00>,
-- 
2.25.1


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

* [PATCH 7/7] arm64: dts: qcom: Add missing "-thermal" suffix for thermal zones
  2021-01-18  5:09 [PATCH 0/7] SDX55 devicetree updates - Part 2 Manivannan Sadhasivam
                   ` (5 preceding siblings ...)
  2021-01-18  5:10 ` [PATCH 6/7] ARM: dts: qcom: sdx55: Add pshold support Manivannan Sadhasivam
@ 2021-01-18  5:10 ` Manivannan Sadhasivam
  6 siblings, 0 replies; 10+ messages in thread
From: Manivannan Sadhasivam @ 2021-01-18  5:10 UTC (permalink / raw)
  To: agross, bjorn.andersson
  Cc: linux-arm-msm, linux-kernel, Manivannan Sadhasivam

The thermal devicetree binding requires the "-thermal" suffix for all
thermal zones. Hence, add the missing suffix for PMIC based thermal
zones.

Signed-off-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
---
 arch/arm64/boot/dts/qcom/pm8150.dtsi  | 2 +-
 arch/arm64/boot/dts/qcom/pm8150b.dtsi | 2 +-
 arch/arm64/boot/dts/qcom/pm8150l.dtsi | 2 +-
 arch/arm64/boot/dts/qcom/pm8994.dtsi  | 2 +-
 arch/arm64/boot/dts/qcom/pm8998.dtsi  | 2 +-
 arch/arm64/boot/dts/qcom/pms405.dtsi  | 2 +-
 6 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/arch/arm64/boot/dts/qcom/pm8150.dtsi b/arch/arm64/boot/dts/qcom/pm8150.dtsi
index a53eccf2b695..f5874223082e 100644
--- a/arch/arm64/boot/dts/qcom/pm8150.dtsi
+++ b/arch/arm64/boot/dts/qcom/pm8150.dtsi
@@ -11,7 +11,7 @@
 
 / {
 	thermal-zones {
-		pm8150 {
+		pm8150-thermal {
 			polling-delay-passive = <100>;
 			polling-delay = <0>;
 
diff --git a/arch/arm64/boot/dts/qcom/pm8150b.dtsi b/arch/arm64/boot/dts/qcom/pm8150b.dtsi
index e112e8876db6..ba85b2151ee9 100644
--- a/arch/arm64/boot/dts/qcom/pm8150b.dtsi
+++ b/arch/arm64/boot/dts/qcom/pm8150b.dtsi
@@ -10,7 +10,7 @@
 
 / {
 	thermal-zones {
-		pm8150b {
+		pm8150b-thermal {
 			polling-delay-passive = <100>;
 			polling-delay = <0>;
 
diff --git a/arch/arm64/boot/dts/qcom/pm8150l.dtsi b/arch/arm64/boot/dts/qcom/pm8150l.dtsi
index 62139538b7d9..0ab9c364e7f1 100644
--- a/arch/arm64/boot/dts/qcom/pm8150l.dtsi
+++ b/arch/arm64/boot/dts/qcom/pm8150l.dtsi
@@ -10,7 +10,7 @@
 
 / {
 	thermal-zones {
-		pm8150l {
+		pm8150l-thermal {
 			polling-delay-passive = <100>;
 			polling-delay = <0>;
 
diff --git a/arch/arm64/boot/dts/qcom/pm8994.dtsi b/arch/arm64/boot/dts/qcom/pm8994.dtsi
index 5ffdf37d8e31..91fff1f209e0 100644
--- a/arch/arm64/boot/dts/qcom/pm8994.dtsi
+++ b/arch/arm64/boot/dts/qcom/pm8994.dtsi
@@ -6,7 +6,7 @@
 
 / {
 	thermal-zones {
-		pm8994 {
+		pm8994-thermal {
 			polling-delay-passive = <250>;
 			polling-delay = <1000>;
 
diff --git a/arch/arm64/boot/dts/qcom/pm8998.dtsi b/arch/arm64/boot/dts/qcom/pm8998.dtsi
index 67283d60e2ac..6f5bb6b37ec2 100644
--- a/arch/arm64/boot/dts/qcom/pm8998.dtsi
+++ b/arch/arm64/boot/dts/qcom/pm8998.dtsi
@@ -9,7 +9,7 @@
 
 / {
 	thermal-zones {
-		pm8998 {
+		pm8998-thermal {
 			polling-delay-passive = <250>;
 			polling-delay = <1000>;
 
diff --git a/arch/arm64/boot/dts/qcom/pms405.dtsi b/arch/arm64/boot/dts/qcom/pms405.dtsi
index ff4005186895..172be177fc8f 100644
--- a/arch/arm64/boot/dts/qcom/pms405.dtsi
+++ b/arch/arm64/boot/dts/qcom/pms405.dtsi
@@ -8,7 +8,7 @@
 
 / {
 	thermal-zones {
-		pms405 {
+		pms405-thermal {
 			polling-delay-passive = <250>;
 			polling-delay = <1000>;
 
-- 
2.25.1


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

* Re: [PATCH 1/7] dt-bindings: usb: qcom,dwc3: Add binding for SDX55
  2021-01-18  5:09 ` [PATCH 1/7] dt-bindings: usb: qcom,dwc3: Add binding for SDX55 Manivannan Sadhasivam
@ 2021-01-18 11:37   ` Felipe Balbi
  0 siblings, 0 replies; 10+ messages in thread
From: Felipe Balbi @ 2021-01-18 11:37 UTC (permalink / raw)
  To: Manivannan Sadhasivam, agross, bjorn.andersson
  Cc: linux-arm-msm, linux-kernel, Manivannan Sadhasivam, Rob Herring,
	devicetree, linux-usb

[-- Attachment #1: Type: text/plain, Size: 400 bytes --]

Hi,

Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org> writes:
> Add devicetree binding for SDX55 USB controller based on Qcom designware
> IP.
>
> Cc: Rob Herring <robh+dt@kernel.org>
> Cc: devicetree@vger.kernel.org
> Cc: linux-usb@vger.kernel.org
> Signed-off-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>

Acked-by: Felipe Balbi <balbi@kernel.org>

-- 
balbi

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 857 bytes --]

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

* Re: [PATCH 4/7] dt-bindings: watchdog: Add binding for Qcom SDX55
  2021-01-18  5:10 ` [PATCH 4/7] dt-bindings: watchdog: Add binding for Qcom SDX55 Manivannan Sadhasivam
@ 2021-01-23 18:36   ` Guenter Roeck
  0 siblings, 0 replies; 10+ messages in thread
From: Guenter Roeck @ 2021-01-23 18:36 UTC (permalink / raw)
  To: Manivannan Sadhasivam
  Cc: agross, bjorn.andersson, linux-arm-msm, linux-kernel,
	Wim Van Sebroeck, Rob Herring, linux-watchdog, devicetree

On Mon, Jan 18, 2021 at 10:40:02AM +0530, Manivannan Sadhasivam wrote:
> Add devicetree binding for watchdog present in Qcom SDX55 platform.
> 
> Cc: Wim Van Sebroeck <wim@linux-watchdog.org>
> Cc: Guenter Roeck <linux@roeck-us.net>
> Cc: Rob Herring <robh+dt@kernel.org>
> Cc: linux-watchdog@vger.kernel.org
> Cc: devicetree@vger.kernel.org
> Signed-off-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>

Reviewed-by: Guenter Roeck <linux@roeck-us.net>

> ---
>  Documentation/devicetree/bindings/watchdog/qcom-wdt.yaml | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/Documentation/devicetree/bindings/watchdog/qcom-wdt.yaml b/Documentation/devicetree/bindings/watchdog/qcom-wdt.yaml
> index 8e3760a3822b..b8e4118945a0 100644
> --- a/Documentation/devicetree/bindings/watchdog/qcom-wdt.yaml
> +++ b/Documentation/devicetree/bindings/watchdog/qcom-wdt.yaml
> @@ -18,6 +18,7 @@ properties:
>        - qcom,apss-wdt-qcs404
>        - qcom,apss-wdt-sc7180
>        - qcom,apss-wdt-sdm845
> +      - qcom,apss-wdt-sdx55
>        - qcom,apss-wdt-sm8150
>        - qcom,kpss-timer
>        - qcom,kpss-wdt

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

end of thread, other threads:[~2021-01-23 18:37 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-18  5:09 [PATCH 0/7] SDX55 devicetree updates - Part 2 Manivannan Sadhasivam
2021-01-18  5:09 ` [PATCH 1/7] dt-bindings: usb: qcom,dwc3: Add binding for SDX55 Manivannan Sadhasivam
2021-01-18 11:37   ` Felipe Balbi
2021-01-18  5:10 ` [PATCH 2/7] ARM: dts: qcom: sdx55: Add USB3 and PHY support Manivannan Sadhasivam
2021-01-18  5:10 ` [PATCH 3/7] ARM: dts: qcom: sdx55-mtp: Enable " Manivannan Sadhasivam
2021-01-18  5:10 ` [PATCH 4/7] dt-bindings: watchdog: Add binding for Qcom SDX55 Manivannan Sadhasivam
2021-01-23 18:36   ` Guenter Roeck
2021-01-18  5:10 ` [PATCH 5/7] ARM: dts: qcom: sdx55: Add Watchdog support Manivannan Sadhasivam
2021-01-18  5:10 ` [PATCH 6/7] ARM: dts: qcom: sdx55: Add pshold support Manivannan Sadhasivam
2021-01-18  5:10 ` [PATCH 7/7] arm64: dts: qcom: Add missing "-thermal" suffix for thermal zones Manivannan Sadhasivam

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