public inbox for linux-pm@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3] arm64: dts: qcom: ipq6018: support thermal sensors
@ 2024-01-25  9:04 Mantas Pucka
  2024-01-25  9:04 ` [PATCH 1/3] dt-bindings: thermal: qcom-tsens: add IPQ6018 compatible Mantas Pucka
  2024-02-07  4:46 ` (subset) [PATCH 0/3] arm64: dts: qcom: ipq6018: support thermal sensors Bjorn Andersson
  0 siblings, 2 replies; 4+ messages in thread
From: Mantas Pucka @ 2024-01-25  9:04 UTC (permalink / raw)
  To: Amit Kucheria, Thara Gopinath, Bjorn Andersson, Konrad Dybcio,
	Rafael J. Wysocki, Daniel Lezcano, Zhang Rui, Lukasz Luba,
	Rob Herring, Krzysztof Kozlowski, Conor Dooley
  Cc: Mantas Pucka, linux-arm-msm, linux-pm, devicetree, linux-kernel

IPQ6018 have a thermal sensor HW that's compatible with existing
qcom-tsens driver, so add dt-binding and enable it in devicei-tree.

Mantas Pucka (3):
  dt-bindings: thermal: qcom-tsens: add IPQ6018 compatible
  arm64: dts: qcom: ipq6018: add tsens node
  arm64: dts: qcom: ipq6018: add thermal zones

 .../devicetree/bindings/thermal/qcom-tsens.yaml    |   1 +
 arch/arm64/boot/dts/qcom/ipq6018.dtsi              | 131 +++++++++++++++++++++
 2 files changed, 132 insertions(+)

-- 
2.7.4


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

* [PATCH 1/3] dt-bindings: thermal: qcom-tsens: add IPQ6018 compatible
  2024-01-25  9:04 [PATCH 0/3] arm64: dts: qcom: ipq6018: support thermal sensors Mantas Pucka
@ 2024-01-25  9:04 ` Mantas Pucka
  2024-01-25 17:17   ` Conor Dooley
  2024-02-07  4:46 ` (subset) [PATCH 0/3] arm64: dts: qcom: ipq6018: support thermal sensors Bjorn Andersson
  1 sibling, 1 reply; 4+ messages in thread
From: Mantas Pucka @ 2024-01-25  9:04 UTC (permalink / raw)
  To: Bjorn Andersson, Konrad Dybcio, Amit Kucheria, Thara Gopinath,
	Rafael J. Wysocki, Daniel Lezcano, Zhang Rui, Lukasz Luba,
	Rob Herring, Krzysztof Kozlowski, Conor Dooley
  Cc: Mantas Pucka, linux-pm, linux-arm-msm, devicetree, linux-kernel

IPQ6018 has tsens HW block compatible with IPQ8074.

Signed-off-by: Mantas Pucka <mantas@8devices.com>
---
 Documentation/devicetree/bindings/thermal/qcom-tsens.yaml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/thermal/qcom-tsens.yaml b/Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
index 99d9c526c0b6..d6f333a7bcd1 100644
--- a/Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
+++ b/Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
@@ -76,6 +76,7 @@ properties:
       - description: v2 of TSENS with combined interrupt
         items:
           - enum:
+              - qcom,ipq6018-tsens
               - qcom,ipq9574-tsens
           - const: qcom,ipq8074-tsens
 
-- 
2.7.4


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

* Re: [PATCH 1/3] dt-bindings: thermal: qcom-tsens: add IPQ6018 compatible
  2024-01-25  9:04 ` [PATCH 1/3] dt-bindings: thermal: qcom-tsens: add IPQ6018 compatible Mantas Pucka
@ 2024-01-25 17:17   ` Conor Dooley
  0 siblings, 0 replies; 4+ messages in thread
From: Conor Dooley @ 2024-01-25 17:17 UTC (permalink / raw)
  To: Mantas Pucka
  Cc: Bjorn Andersson, Konrad Dybcio, Amit Kucheria, Thara Gopinath,
	Rafael J. Wysocki, Daniel Lezcano, Zhang Rui, Lukasz Luba,
	Rob Herring, Krzysztof Kozlowski, Conor Dooley, linux-pm,
	linux-arm-msm, devicetree, linux-kernel

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

On Thu, Jan 25, 2024 at 11:04:10AM +0200, Mantas Pucka wrote:
> IPQ6018 has tsens HW block compatible with IPQ8074.
> 
> Signed-off-by: Mantas Pucka <mantas@8devices.com>

Acked-by: Conor Dooley <conor.dooley@microchip.com>

Cheers,
Conor.

> ---
>  Documentation/devicetree/bindings/thermal/qcom-tsens.yaml | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/Documentation/devicetree/bindings/thermal/qcom-tsens.yaml b/Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
> index 99d9c526c0b6..d6f333a7bcd1 100644
> --- a/Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
> +++ b/Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
> @@ -76,6 +76,7 @@ properties:
>        - description: v2 of TSENS with combined interrupt
>          items:
>            - enum:
> +              - qcom,ipq6018-tsens
>                - qcom,ipq9574-tsens
>            - const: qcom,ipq8074-tsens
>  
> -- 
> 2.7.4
> 

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

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

* Re: (subset) [PATCH 0/3] arm64: dts: qcom: ipq6018: support thermal sensors
  2024-01-25  9:04 [PATCH 0/3] arm64: dts: qcom: ipq6018: support thermal sensors Mantas Pucka
  2024-01-25  9:04 ` [PATCH 1/3] dt-bindings: thermal: qcom-tsens: add IPQ6018 compatible Mantas Pucka
@ 2024-02-07  4:46 ` Bjorn Andersson
  1 sibling, 0 replies; 4+ messages in thread
From: Bjorn Andersson @ 2024-02-07  4:46 UTC (permalink / raw)
  To: Amit Kucheria, Thara Gopinath, Konrad Dybcio, Rafael J. Wysocki,
	Daniel Lezcano, Zhang Rui, Lukasz Luba, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley, Mantas Pucka
  Cc: linux-arm-msm, linux-pm, devicetree, linux-kernel


On Thu, 25 Jan 2024 11:04:09 +0200, Mantas Pucka wrote:
> IPQ6018 have a thermal sensor HW that's compatible with existing
> qcom-tsens driver, so add dt-binding and enable it in devicei-tree.
> 
> Mantas Pucka (3):
>   dt-bindings: thermal: qcom-tsens: add IPQ6018 compatible
>   arm64: dts: qcom: ipq6018: add tsens node
>   arm64: dts: qcom: ipq6018: add thermal zones
> 
> [...]

Applied, thanks!

[2/3] arm64: dts: qcom: ipq6018: add tsens node
      commit: 0b17197055b528da22e9385200e61b847b499d48
[3/3] arm64: dts: qcom: ipq6018: add thermal zones
      commit: 8f053e5616352943e16966f195f5a7a161e6fe7d

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

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

end of thread, other threads:[~2024-02-07  4:47 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-25  9:04 [PATCH 0/3] arm64: dts: qcom: ipq6018: support thermal sensors Mantas Pucka
2024-01-25  9:04 ` [PATCH 1/3] dt-bindings: thermal: qcom-tsens: add IPQ6018 compatible Mantas Pucka
2024-01-25 17:17   ` Conor Dooley
2024-02-07  4:46 ` (subset) [PATCH 0/3] arm64: dts: qcom: ipq6018: support thermal sensors Bjorn Andersson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox