All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] thermal/drivers/qcom/lmh: Add sc8180x compatible
@ 2022-05-02 16:45 Bjorn Andersson
  2022-05-02 16:45 ` [PATCH 2/2] dt-bindings: thermal: lmh: Add Qualcomm " Bjorn Andersson
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Bjorn Andersson @ 2022-05-02 16:45 UTC (permalink / raw)
  To: Amit Kucheria, Thara Gopinath, Daniel Lezcano
  Cc: Rafael J. Wysocki, Zhang Rui, Rob Herring, Krzysztof Kozlowski,
	linux-arm-msm, linux-pm, linux-kernel

The LMh instances in the Qualcomm SC8180X platform looks to behave
similar to those in SM8150, add additional compatibles to allow
platform specific behavior to be added if needed.

Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
---
 drivers/thermal/qcom/lmh.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/thermal/qcom/lmh.c b/drivers/thermal/qcom/lmh.c
index c7f91cbdccc7..d3d9b9fa49e8 100644
--- a/drivers/thermal/qcom/lmh.c
+++ b/drivers/thermal/qcom/lmh.c
@@ -220,6 +220,7 @@ static int lmh_probe(struct platform_device *pdev)
 }
 
 static const struct of_device_id lmh_table[] = {
+	{ .compatible = "qcom,sc8180x-lmh", },
 	{ .compatible = "qcom,sdm845-lmh", .data = (void *)LMH_ENABLE_ALGOS},
 	{ .compatible = "qcom,sm8150-lmh", },
 	{}
-- 
2.35.1


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

* [PATCH 2/2] dt-bindings: thermal: lmh: Add Qualcomm sc8180x compatible
  2022-05-02 16:45 [PATCH 1/2] thermal/drivers/qcom/lmh: Add sc8180x compatible Bjorn Andersson
@ 2022-05-02 16:45 ` Bjorn Andersson
  2022-05-03 12:16   ` Krzysztof Kozlowski
  2022-05-19 12:44   ` [thermal: thermal/next] " thermal-bot for Bjorn Andersson
  2022-05-09 10:02 ` [PATCH 1/2] thermal/drivers/qcom/lmh: Add " Daniel Lezcano
  2022-05-19 12:44 ` [thermal: thermal/next] " thermal-bot for Bjorn Andersson
  2 siblings, 2 replies; 6+ messages in thread
From: Bjorn Andersson @ 2022-05-02 16:45 UTC (permalink / raw)
  To: Amit Kucheria, Thara Gopinath, Daniel Lezcano, Rob Herring,
	Krzysztof Kozlowski
  Cc: Rafael J. Wysocki, Zhang Rui, linux-arm-msm, linux-pm, linux-kernel

Add compatible for the LMh blocks found in the Qualcomm sc8180x
platform.

Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
---
 Documentation/devicetree/bindings/thermal/qcom-lmh.yaml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/thermal/qcom-lmh.yaml b/Documentation/devicetree/bindings/thermal/qcom-lmh.yaml
index a9b7388ca9ac..e1587ddf7de3 100644
--- a/Documentation/devicetree/bindings/thermal/qcom-lmh.yaml
+++ b/Documentation/devicetree/bindings/thermal/qcom-lmh.yaml
@@ -18,6 +18,7 @@ description:
 properties:
   compatible:
     enum:
+      - qcom,sc8180x-lmh
       - qcom,sdm845-lmh
       - qcom,sm8150-lmh
 
-- 
2.35.1


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

* Re: [PATCH 2/2] dt-bindings: thermal: lmh: Add Qualcomm sc8180x compatible
  2022-05-02 16:45 ` [PATCH 2/2] dt-bindings: thermal: lmh: Add Qualcomm " Bjorn Andersson
@ 2022-05-03 12:16   ` Krzysztof Kozlowski
  2022-05-19 12:44   ` [thermal: thermal/next] " thermal-bot for Bjorn Andersson
  1 sibling, 0 replies; 6+ messages in thread
From: Krzysztof Kozlowski @ 2022-05-03 12:16 UTC (permalink / raw)
  To: Bjorn Andersson, Amit Kucheria, Thara Gopinath, Daniel Lezcano,
	Rob Herring, Krzysztof Kozlowski
  Cc: Rafael J. Wysocki, Zhang Rui, linux-arm-msm, linux-pm, linux-kernel

On 02/05/2022 18:45, Bjorn Andersson wrote:
> Add compatible for the LMh blocks found in the Qualcomm sc8180x
> platform.
> 
> Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
> ---
>  Documentation/devicetree/bindings/thermal/qcom-lmh.yaml | 1 +
>  1 file changed, 1 insertion(+)

Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>


Best regards,
Krzysztof

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

* Re: [PATCH 1/2] thermal/drivers/qcom/lmh: Add sc8180x compatible
  2022-05-02 16:45 [PATCH 1/2] thermal/drivers/qcom/lmh: Add sc8180x compatible Bjorn Andersson
  2022-05-02 16:45 ` [PATCH 2/2] dt-bindings: thermal: lmh: Add Qualcomm " Bjorn Andersson
@ 2022-05-09 10:02 ` Daniel Lezcano
  2022-05-19 12:44 ` [thermal: thermal/next] " thermal-bot for Bjorn Andersson
  2 siblings, 0 replies; 6+ messages in thread
From: Daniel Lezcano @ 2022-05-09 10:02 UTC (permalink / raw)
  To: Bjorn Andersson, Amit Kucheria, Thara Gopinath
  Cc: Rafael J. Wysocki, Zhang Rui, Rob Herring, Krzysztof Kozlowski,
	linux-arm-msm, linux-pm, linux-kernel

On 02/05/2022 18:45, Bjorn Andersson wrote:
> The LMh instances in the Qualcomm SC8180X platform looks to behave
> similar to those in SM8150, add additional compatibles to allow
> platform specific behavior to be added if needed.
> 
> Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
> ---

Applied, thanks

-- 
<http://www.linaro.org/> Linaro.org │ Open source software for ARM SoCs

Follow Linaro:  <http://www.facebook.com/pages/Linaro> Facebook |
<http://twitter.com/#!/linaroorg> Twitter |
<http://www.linaro.org/linaro-blog/> Blog

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

* [thermal: thermal/next] dt-bindings: thermal: lmh: Add Qualcomm sc8180x compatible
  2022-05-02 16:45 ` [PATCH 2/2] dt-bindings: thermal: lmh: Add Qualcomm " Bjorn Andersson
  2022-05-03 12:16   ` Krzysztof Kozlowski
@ 2022-05-19 12:44   ` thermal-bot for Bjorn Andersson
  1 sibling, 0 replies; 6+ messages in thread
From: thermal-bot for Bjorn Andersson @ 2022-05-19 12:44 UTC (permalink / raw)
  To: linux-pm
  Cc: Bjorn Andersson, Krzysztof Kozlowski, Daniel Lezcano, rui.zhang, amitk

The following commit has been merged into the thermal/next branch of thermal:

Commit-ID:     b54d4dafc9fd97f1739eb06dd5a397ce69bbe00c
Gitweb:        https://git.kernel.org/pub/scm/linux/kernel/git/thermal/linux.git//b54d4dafc9fd97f1739eb06dd5a397ce69bbe00c
Author:        Bjorn Andersson <bjorn.andersson@linaro.org>
AuthorDate:    Mon, 02 May 2022 09:45:04 -07:00
Committer:     Daniel Lezcano <daniel.lezcano@linaro.org>
CommitterDate: Thu, 19 May 2022 12:11:52 +02:00

dt-bindings: thermal: lmh: Add Qualcomm sc8180x compatible

Add compatible for the LMh blocks found in the Qualcomm sc8180x
platform.

Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Link: https://lore.kernel.org/r/20220502164504.3972938-2-bjorn.andersson@linaro.org
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
---
 Documentation/devicetree/bindings/thermal/qcom-lmh.yaml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/thermal/qcom-lmh.yaml b/Documentation/devicetree/bindings/thermal/qcom-lmh.yaml
index a9b7388..e1587dd 100644
--- a/Documentation/devicetree/bindings/thermal/qcom-lmh.yaml
+++ b/Documentation/devicetree/bindings/thermal/qcom-lmh.yaml
@@ -18,6 +18,7 @@ description:
 properties:
   compatible:
     enum:
+      - qcom,sc8180x-lmh
       - qcom,sdm845-lmh
       - qcom,sm8150-lmh
 

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

* [thermal: thermal/next] thermal/drivers/qcom/lmh: Add sc8180x compatible
  2022-05-02 16:45 [PATCH 1/2] thermal/drivers/qcom/lmh: Add sc8180x compatible Bjorn Andersson
  2022-05-02 16:45 ` [PATCH 2/2] dt-bindings: thermal: lmh: Add Qualcomm " Bjorn Andersson
  2022-05-09 10:02 ` [PATCH 1/2] thermal/drivers/qcom/lmh: Add " Daniel Lezcano
@ 2022-05-19 12:44 ` thermal-bot for Bjorn Andersson
  2 siblings, 0 replies; 6+ messages in thread
From: thermal-bot for Bjorn Andersson @ 2022-05-19 12:44 UTC (permalink / raw)
  To: linux-pm; +Cc: Bjorn Andersson, Daniel Lezcano, rui.zhang, amitk

The following commit has been merged into the thermal/next branch of thermal:

Commit-ID:     ef6673e8363a61ef941bae05c7913a32a104e20b
Gitweb:        https://git.kernel.org/pub/scm/linux/kernel/git/thermal/linux.git//ef6673e8363a61ef941bae05c7913a32a104e20b
Author:        Bjorn Andersson <bjorn.andersson@linaro.org>
AuthorDate:    Mon, 02 May 2022 09:45:03 -07:00
Committer:     Daniel Lezcano <daniel.lezcano@linaro.org>
CommitterDate: Thu, 19 May 2022 12:11:52 +02:00

thermal/drivers/qcom/lmh: Add sc8180x compatible

The LMh instances in the Qualcomm SC8180X platform looks to behave
similar to those in SM8150, add additional compatibles to allow
platform specific behavior to be added if needed.

Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Link: https://lore.kernel.org/r/20220502164504.3972938-1-bjorn.andersson@linaro.org
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
---
 drivers/thermal/qcom/lmh.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/thermal/qcom/lmh.c b/drivers/thermal/qcom/lmh.c
index c7f91cb..d3d9b9f 100644
--- a/drivers/thermal/qcom/lmh.c
+++ b/drivers/thermal/qcom/lmh.c
@@ -220,6 +220,7 @@ static int lmh_probe(struct platform_device *pdev)
 }
 
 static const struct of_device_id lmh_table[] = {
+	{ .compatible = "qcom,sc8180x-lmh", },
 	{ .compatible = "qcom,sdm845-lmh", .data = (void *)LMH_ENABLE_ALGOS},
 	{ .compatible = "qcom,sm8150-lmh", },
 	{}

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

end of thread, other threads:[~2022-05-19 12:44 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-02 16:45 [PATCH 1/2] thermal/drivers/qcom/lmh: Add sc8180x compatible Bjorn Andersson
2022-05-02 16:45 ` [PATCH 2/2] dt-bindings: thermal: lmh: Add Qualcomm " Bjorn Andersson
2022-05-03 12:16   ` Krzysztof Kozlowski
2022-05-19 12:44   ` [thermal: thermal/next] " thermal-bot for Bjorn Andersson
2022-05-09 10:02 ` [PATCH 1/2] thermal/drivers/qcom/lmh: Add " Daniel Lezcano
2022-05-19 12:44 ` [thermal: thermal/next] " thermal-bot for Bjorn Andersson

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.