devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v6 0/3] Add D1/T113s thermal sensor controller support
@ 2023-12-17 21:06 Maksim Kiselev
  2023-12-17 21:06 ` [PATCH v6 1/3] dt-bindings: thermal: sun8i: Add binding for D1/T113s THS controller Maksim Kiselev
                   ` (3 more replies)
  0 siblings, 4 replies; 10+ messages in thread
From: Maksim Kiselev @ 2023-12-17 21:06 UTC (permalink / raw)
  Cc: Andre Przywara, Maksim Kiselev, Vasily Khoruzhick, Yangtao Li,
	Rafael J. Wysocki, Daniel Lezcano, Zhang Rui, Lukasz Luba,
	Rob Herring, Krzysztof Kozlowski, Conor Dooley, Chen-Yu Tsai,
	Jernej Skrabec, Samuel Holland, Paul Walmsley, Palmer Dabbelt,
	Albert Ou, Marc Kleine-Budde, John Watts, Cristian Ciocaltea,
	linux-pm, devicetree, linux-arm-kernel, linux-sunxi, linux-kernel,
	linux-riscv

This series adds support for Allwinner D1/T113s thermal sensor controller.
THIS controller is similar to the one on H6, but with only one sensor and
uses a different scale and offset values.

v6:
- Rebased onto 6.7.0-rc5

v5:
- Dropeed 'thermal-zones' node from sunxi-d1s-t113.dtsi

v4:
- Dropeed DT bindings example

v3:
- Fixed SoB tag again

v2:
- Fixed SoB tag
- Moved binding patch before driver changes

v1:
- Initial version

Maxim Kiselev (3):
  dt-bindings: thermal: sun8i: Add binding for D1/T113s THS controller
  thermal: sun8i: Add D1/T113s THS controller support
  riscv: dts: allwinner: d1: Add thermal sensor

 .../thermal/allwinner,sun8i-a83t-ths.yaml       |  7 ++++++-
 .../boot/dts/allwinner/sunxi-d1s-t113.dtsi      | 17 +++++++++++++++++
 drivers/thermal/sun8i_thermal.c                 | 13 +++++++++++++
 3 files changed, 36 insertions(+), 1 deletion(-)

-- 
2.40.1


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

* [PATCH v6 1/3] dt-bindings: thermal: sun8i: Add binding for D1/T113s THS controller
  2023-12-17 21:06 [PATCH v6 0/3] Add D1/T113s thermal sensor controller support Maksim Kiselev
@ 2023-12-17 21:06 ` Maksim Kiselev
  2023-12-17 21:06 ` [PATCH v6 2/3] thermal: sun8i: Add D1/T113s THS controller support Maksim Kiselev
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 10+ messages in thread
From: Maksim Kiselev @ 2023-12-17 21:06 UTC (permalink / raw)
  Cc: Andre Przywara, Maxim Kiselev, Conor Dooley, Vasily Khoruzhick,
	Yangtao Li, Rafael J. Wysocki, Daniel Lezcano, Zhang Rui,
	Lukasz Luba, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
	Chen-Yu Tsai, Jernej Skrabec, Samuel Holland, Paul Walmsley,
	Palmer Dabbelt, Albert Ou, John Watts, Cristian Ciocaltea,
	Marc Kleine-Budde, linux-pm, devicetree, linux-arm-kernel,
	linux-sunxi, linux-kernel, linux-riscv

From: Maxim Kiselev <bigunclemax@gmail.com>

Add a binding for D1/T113s thermal sensor controller.

Signed-off-by: Maxim Kiselev <bigunclemax@gmail.com>
Reviewed-by: Conor Dooley <conor.dooley@microchip.com>
---
 .../bindings/thermal/allwinner,sun8i-a83t-ths.yaml         | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml b/Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
index fbd4212285e2..9b2272a9ec15 100644
--- a/Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
+++ b/Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
@@ -16,6 +16,7 @@ properties:
       - allwinner,sun8i-a83t-ths
       - allwinner,sun8i-h3-ths
       - allwinner,sun8i-r40-ths
+      - allwinner,sun20i-d1-ths
       - allwinner,sun50i-a64-ths
       - allwinner,sun50i-a100-ths
       - allwinner,sun50i-h5-ths
@@ -61,6 +62,7 @@ allOf:
         compatible:
           contains:
             enum:
+              - allwinner,sun20i-d1-ths
               - allwinner,sun50i-a100-ths
               - allwinner,sun50i-h6-ths
 
@@ -84,7 +86,9 @@ allOf:
       properties:
         compatible:
           contains:
-            const: allwinner,sun8i-h3-ths
+            enum:
+              - allwinner,sun8i-h3-ths
+              - allwinner,sun20i-d1-ths
 
     then:
       properties:
@@ -103,6 +107,7 @@ allOf:
             enum:
               - allwinner,sun8i-h3-ths
               - allwinner,sun8i-r40-ths
+              - allwinner,sun20i-d1-ths
               - allwinner,sun50i-a64-ths
               - allwinner,sun50i-a100-ths
               - allwinner,sun50i-h5-ths
-- 
2.40.1


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

* [PATCH v6 2/3] thermal: sun8i: Add D1/T113s THS controller support
  2023-12-17 21:06 [PATCH v6 0/3] Add D1/T113s thermal sensor controller support Maksim Kiselev
  2023-12-17 21:06 ` [PATCH v6 1/3] dt-bindings: thermal: sun8i: Add binding for D1/T113s THS controller Maksim Kiselev
@ 2023-12-17 21:06 ` Maksim Kiselev
  2023-12-18  0:57   ` Andre Przywara
  2023-12-19 17:14   ` Jernej Škrabec
  2023-12-17 21:06 ` [PATCH v6 3/3] riscv: dts: allwinner: d1: Add thermal sensor Maksim Kiselev
  2023-12-19 17:42 ` [PATCH v6 0/3] Add D1/T113s thermal sensor controller support Daniel Lezcano
  3 siblings, 2 replies; 10+ messages in thread
From: Maksim Kiselev @ 2023-12-17 21:06 UTC (permalink / raw)
  Cc: Andre Przywara, Maxim Kiselev, Vasily Khoruzhick, Yangtao Li,
	Rafael J. Wysocki, Daniel Lezcano, Zhang Rui, Lukasz Luba,
	Rob Herring, Krzysztof Kozlowski, Conor Dooley, Chen-Yu Tsai,
	Jernej Skrabec, Samuel Holland, Paul Walmsley, Palmer Dabbelt,
	Albert Ou, John Watts, Cristian Ciocaltea, Marc Kleine-Budde,
	linux-pm, devicetree, linux-arm-kernel, linux-sunxi, linux-kernel,
	linux-riscv

From: Maxim Kiselev <bigunclemax@gmail.com>

This patch adds a thermal sensor controller support for the D1/T113s,
which is similar to the one on H6, but with only one sensor and
different scale and offset values.

Signed-off-by: Maxim Kiselev <bigunclemax@gmail.com>
---
 drivers/thermal/sun8i_thermal.c | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/drivers/thermal/sun8i_thermal.c b/drivers/thermal/sun8i_thermal.c
index f989b55a8aa8..6a8e386dbc8d 100644
--- a/drivers/thermal/sun8i_thermal.c
+++ b/drivers/thermal/sun8i_thermal.c
@@ -606,6 +606,18 @@ static const struct ths_thermal_chip sun50i_h6_ths = {
 	.calc_temp = sun8i_ths_calc_temp,
 };
 
+static const struct ths_thermal_chip sun20i_d1_ths = {
+	.sensor_num = 1,
+	.has_bus_clk_reset = true,
+	.offset = 188552,
+	.scale = 673,
+	.temp_data_base = SUN50I_H6_THS_TEMP_DATA,
+	.calibrate = sun50i_h6_ths_calibrate,
+	.init = sun50i_h6_thermal_init,
+	.irq_ack = sun50i_h6_irq_ack,
+	.calc_temp = sun8i_ths_calc_temp,
+};
+
 static const struct of_device_id of_ths_match[] = {
 	{ .compatible = "allwinner,sun8i-a83t-ths", .data = &sun8i_a83t_ths },
 	{ .compatible = "allwinner,sun8i-h3-ths", .data = &sun8i_h3_ths },
@@ -614,6 +626,7 @@ static const struct of_device_id of_ths_match[] = {
 	{ .compatible = "allwinner,sun50i-a100-ths", .data = &sun50i_a100_ths },
 	{ .compatible = "allwinner,sun50i-h5-ths", .data = &sun50i_h5_ths },
 	{ .compatible = "allwinner,sun50i-h6-ths", .data = &sun50i_h6_ths },
+	{ .compatible = "allwinner,sun20i-d1-ths", .data = &sun20i_d1_ths },
 	{ /* sentinel */ },
 };
 MODULE_DEVICE_TABLE(of, of_ths_match);
-- 
2.40.1


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

* [PATCH v6 3/3] riscv: dts: allwinner: d1: Add thermal sensor
  2023-12-17 21:06 [PATCH v6 0/3] Add D1/T113s thermal sensor controller support Maksim Kiselev
  2023-12-17 21:06 ` [PATCH v6 1/3] dt-bindings: thermal: sun8i: Add binding for D1/T113s THS controller Maksim Kiselev
  2023-12-17 21:06 ` [PATCH v6 2/3] thermal: sun8i: Add D1/T113s THS controller support Maksim Kiselev
@ 2023-12-17 21:06 ` Maksim Kiselev
  2023-12-18  1:09   ` Andre Przywara
  2024-09-09 17:16   ` Sam Edwards
  2023-12-19 17:42 ` [PATCH v6 0/3] Add D1/T113s thermal sensor controller support Daniel Lezcano
  3 siblings, 2 replies; 10+ messages in thread
From: Maksim Kiselev @ 2023-12-17 21:06 UTC (permalink / raw)
  Cc: Andre Przywara, Maxim Kiselev, Vasily Khoruzhick, Yangtao Li,
	Rafael J. Wysocki, Daniel Lezcano, Zhang Rui, Lukasz Luba,
	Rob Herring, Krzysztof Kozlowski, Conor Dooley, Chen-Yu Tsai,
	Jernej Skrabec, Samuel Holland, Paul Walmsley, Palmer Dabbelt,
	Albert Ou, Marc Kleine-Budde, John Watts, Cristian Ciocaltea,
	linux-pm, devicetree, linux-arm-kernel, linux-sunxi, linux-kernel,
	linux-riscv

From: Maxim Kiselev <bigunclemax@gmail.com>

This patch adds a thermal sensor controller node for the D1/T113s.
Also it adds a THS calibration data cell to efuse node.

Signed-off-by: Maxim Kiselev <bigunclemax@gmail.com>
---
 .../boot/dts/allwinner/sunxi-d1s-t113.dtsi      | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

diff --git a/arch/riscv/boot/dts/allwinner/sunxi-d1s-t113.dtsi b/arch/riscv/boot/dts/allwinner/sunxi-d1s-t113.dtsi
index 5a9d7f5a75b4..6f5427d9cfbf 100644
--- a/arch/riscv/boot/dts/allwinner/sunxi-d1s-t113.dtsi
+++ b/arch/riscv/boot/dts/allwinner/sunxi-d1s-t113.dtsi
@@ -166,6 +166,19 @@ gpadc: adc@2009000 {
 			#io-channel-cells = <1>;
 		};
 
+		ths: thermal-sensor@2009400 {
+			compatible = "allwinner,sun20i-d1-ths";
+			reg = <0x02009400 0x400>;
+			interrupts = <SOC_PERIPHERAL_IRQ(58) IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&ccu CLK_BUS_THS>;
+			clock-names = "bus";
+			resets = <&ccu RST_BUS_THS>;
+			nvmem-cells = <&ths_calibration>;
+			nvmem-cell-names = "calibration";
+			status = "disabled";
+			#thermal-sensor-cells = <0>;
+		};
+
 		dmic: dmic@2031000 {
 			compatible = "allwinner,sun20i-d1-dmic",
 				     "allwinner,sun50i-h6-dmic";
@@ -415,6 +428,10 @@ sid: efuse@3006000 {
 			reg = <0x3006000 0x1000>;
 			#address-cells = <1>;
 			#size-cells = <1>;
+
+			ths_calibration: thermal-sensor-calibration@14 {
+				reg = <0x14 0x4>;
+			};
 		};
 
 		crypto: crypto@3040000 {
-- 
2.40.1


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

* Re: [PATCH v6 2/3] thermal: sun8i: Add D1/T113s THS controller support
  2023-12-17 21:06 ` [PATCH v6 2/3] thermal: sun8i: Add D1/T113s THS controller support Maksim Kiselev
@ 2023-12-18  0:57   ` Andre Przywara
  2023-12-19 17:14   ` Jernej Škrabec
  1 sibling, 0 replies; 10+ messages in thread
From: Andre Przywara @ 2023-12-18  0:57 UTC (permalink / raw)
  To: Maksim Kiselev
  Cc: Vasily Khoruzhick, Yangtao Li, Rafael J. Wysocki, Daniel Lezcano,
	Zhang Rui, Lukasz Luba, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley, Chen-Yu Tsai, Jernej Skrabec, Samuel Holland,
	Paul Walmsley, Palmer Dabbelt, Albert Ou, John Watts,
	Cristian Ciocaltea, Marc Kleine-Budde, linux-pm, devicetree,
	linux-arm-kernel, linux-sunxi, linux-kernel, linux-riscv

On Mon, 18 Dec 2023 00:06:23 +0300
Maksim Kiselev <bigunclemax@gmail.com> wrote:

Hi Maksim,

> From: Maxim Kiselev <bigunclemax@gmail.com>
> 
> This patch adds a thermal sensor controller support for the D1/T113s,
> which is similar to the one on H6, but with only one sensor and
> different scale and offset values.

That looks alright to me, the offset and scale values match the
converted values in the manual, and the rest looks indeed the same as
used on the H6.

> Signed-off-by: Maxim Kiselev <bigunclemax@gmail.com>

Reviewed-by: Andre Przywara <andre.przywara@arm.com>

Thanks,
Andre

> ---
>  drivers/thermal/sun8i_thermal.c | 13 +++++++++++++
>  1 file changed, 13 insertions(+)
> 
> diff --git a/drivers/thermal/sun8i_thermal.c b/drivers/thermal/sun8i_thermal.c
> index f989b55a8aa8..6a8e386dbc8d 100644
> --- a/drivers/thermal/sun8i_thermal.c
> +++ b/drivers/thermal/sun8i_thermal.c
> @@ -606,6 +606,18 @@ static const struct ths_thermal_chip sun50i_h6_ths = {
>  	.calc_temp = sun8i_ths_calc_temp,
>  };
>  
> +static const struct ths_thermal_chip sun20i_d1_ths = {
> +	.sensor_num = 1,
> +	.has_bus_clk_reset = true,
> +	.offset = 188552,
> +	.scale = 673,
> +	.temp_data_base = SUN50I_H6_THS_TEMP_DATA,
> +	.calibrate = sun50i_h6_ths_calibrate,
> +	.init = sun50i_h6_thermal_init,
> +	.irq_ack = sun50i_h6_irq_ack,
> +	.calc_temp = sun8i_ths_calc_temp,
> +};
> +
>  static const struct of_device_id of_ths_match[] = {
>  	{ .compatible = "allwinner,sun8i-a83t-ths", .data = &sun8i_a83t_ths },
>  	{ .compatible = "allwinner,sun8i-h3-ths", .data = &sun8i_h3_ths },
> @@ -614,6 +626,7 @@ static const struct of_device_id of_ths_match[] = {
>  	{ .compatible = "allwinner,sun50i-a100-ths", .data = &sun50i_a100_ths },
>  	{ .compatible = "allwinner,sun50i-h5-ths", .data = &sun50i_h5_ths },
>  	{ .compatible = "allwinner,sun50i-h6-ths", .data = &sun50i_h6_ths },
> +	{ .compatible = "allwinner,sun20i-d1-ths", .data = &sun20i_d1_ths },
>  	{ /* sentinel */ },
>  };
>  MODULE_DEVICE_TABLE(of, of_ths_match);


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

* Re: [PATCH v6 3/3] riscv: dts: allwinner: d1: Add thermal sensor
  2023-12-17 21:06 ` [PATCH v6 3/3] riscv: dts: allwinner: d1: Add thermal sensor Maksim Kiselev
@ 2023-12-18  1:09   ` Andre Przywara
  2024-09-09 17:16   ` Sam Edwards
  1 sibling, 0 replies; 10+ messages in thread
From: Andre Przywara @ 2023-12-18  1:09 UTC (permalink / raw)
  To: Maksim Kiselev
  Cc: Vasily Khoruzhick, Yangtao Li, Rafael J. Wysocki, Daniel Lezcano,
	Zhang Rui, Lukasz Luba, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley, Chen-Yu Tsai, Jernej Skrabec, Samuel Holland,
	Paul Walmsley, Palmer Dabbelt, Albert Ou, Marc Kleine-Budde,
	John Watts, Cristian Ciocaltea, linux-pm, devicetree,
	linux-arm-kernel, linux-sunxi, linux-kernel, linux-riscv

On Mon, 18 Dec 2023 00:06:24 +0300
Maksim Kiselev <bigunclemax@gmail.com> wrote:

Hi,

> From: Maxim Kiselev <bigunclemax@gmail.com>
> 
> This patch adds a thermal sensor controller node for the D1/T113s.
> Also it adds a THS calibration data cell to efuse node.
> 
> Signed-off-by: Maxim Kiselev <bigunclemax@gmail.com>
> ---
>  .../boot/dts/allwinner/sunxi-d1s-t113.dtsi      | 17 +++++++++++++++++
>  1 file changed, 17 insertions(+)
> 
> diff --git a/arch/riscv/boot/dts/allwinner/sunxi-d1s-t113.dtsi b/arch/riscv/boot/dts/allwinner/sunxi-d1s-t113.dtsi
> index 5a9d7f5a75b4..6f5427d9cfbf 100644
> --- a/arch/riscv/boot/dts/allwinner/sunxi-d1s-t113.dtsi
> +++ b/arch/riscv/boot/dts/allwinner/sunxi-d1s-t113.dtsi
> @@ -166,6 +166,19 @@ gpadc: adc@2009000 {
>  			#io-channel-cells = <1>;
>  		};
>  
> +		ths: thermal-sensor@2009400 {
> +			compatible = "allwinner,sun20i-d1-ths";
> +			reg = <0x02009400 0x400>;
> +			interrupts = <SOC_PERIPHERAL_IRQ(58) IRQ_TYPE_LEVEL_HIGH>;
> +			clocks = <&ccu CLK_BUS_THS>;
> +			clock-names = "bus";
> +			resets = <&ccu RST_BUS_THS>;
> +			nvmem-cells = <&ths_calibration>;
> +			nvmem-cell-names = "calibration";
> +			status = "disabled";

Any reason this is disabled? We typically don't disable those internal
devices in the SoC .dtsi, the THS is one example (check the instances
in other SoCs' .dtsi files).

The rest looks alright, compared to the manual, so with this line
removed:

Reviewed-by: Andre Przywara <andre.przywara@arm.com>

Cheers,
Andre

> +			#thermal-sensor-cells = <0>;
> +		};
> +
>  		dmic: dmic@2031000 {
>  			compatible = "allwinner,sun20i-d1-dmic",
>  				     "allwinner,sun50i-h6-dmic";
> @@ -415,6 +428,10 @@ sid: efuse@3006000 {
>  			reg = <0x3006000 0x1000>;
>  			#address-cells = <1>;
>  			#size-cells = <1>;
> +
> +			ths_calibration: thermal-sensor-calibration@14 {
> +				reg = <0x14 0x4>;
> +			};
>  		};
>  
>  		crypto: crypto@3040000 {


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

* Re: [PATCH v6 2/3] thermal: sun8i: Add D1/T113s THS controller support
  2023-12-17 21:06 ` [PATCH v6 2/3] thermal: sun8i: Add D1/T113s THS controller support Maksim Kiselev
  2023-12-18  0:57   ` Andre Przywara
@ 2023-12-19 17:14   ` Jernej Škrabec
  1 sibling, 0 replies; 10+ messages in thread
From: Jernej Škrabec @ 2023-12-19 17:14 UTC (permalink / raw)
  To: Maksim Kiselev
  Cc: Andre Przywara, Maxim Kiselev, Vasily Khoruzhick, Yangtao Li,
	Rafael J. Wysocki, Daniel Lezcano, Zhang Rui, Lukasz Luba,
	Rob Herring, Krzysztof Kozlowski, Conor Dooley, Chen-Yu Tsai,
	Samuel Holland, Paul Walmsley, Palmer Dabbelt, Albert Ou,
	John Watts, Cristian Ciocaltea, Marc Kleine-Budde, linux-pm,
	devicetree, linux-arm-kernel, linux-sunxi, linux-kernel,
	linux-riscv

Dne nedelja, 17. december 2023 ob 22:06:23 CET je Maksim Kiselev napisal(a):
> From: Maxim Kiselev <bigunclemax@gmail.com>
> 
> This patch adds a thermal sensor controller support for the D1/T113s,
> which is similar to the one on H6, but with only one sensor and
> different scale and offset values.
> 
> Signed-off-by: Maxim Kiselev <bigunclemax@gmail.com>

Acked-by: Jernej Skrabec <jernej.skrabec@gmail.com>

Best regards,
Jernej



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

* Re: [PATCH v6 0/3] Add D1/T113s thermal sensor controller support
  2023-12-17 21:06 [PATCH v6 0/3] Add D1/T113s thermal sensor controller support Maksim Kiselev
                   ` (2 preceding siblings ...)
  2023-12-17 21:06 ` [PATCH v6 3/3] riscv: dts: allwinner: d1: Add thermal sensor Maksim Kiselev
@ 2023-12-19 17:42 ` Daniel Lezcano
  3 siblings, 0 replies; 10+ messages in thread
From: Daniel Lezcano @ 2023-12-19 17:42 UTC (permalink / raw)
  To: Maksim Kiselev
  Cc: Andre Przywara, Vasily Khoruzhick, Yangtao Li, Rafael J. Wysocki,
	Zhang Rui, Lukasz Luba, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley, Chen-Yu Tsai, Jernej Skrabec, Samuel Holland,
	Paul Walmsley, Palmer Dabbelt, Albert Ou, Marc Kleine-Budde,
	John Watts, Cristian Ciocaltea, linux-pm, devicetree,
	linux-arm-kernel, linux-sunxi, linux-kernel, linux-riscv

On 17/12/2023 22:06, Maksim Kiselev wrote:
> This series adds support for Allwinner D1/T113s thermal sensor controller.
> THIS controller is similar to the one on H6, but with only one sensor and
> uses a different scale and offset values.
> 
> v6:
> - Rebased onto 6.7.0-rc5

Applied, patch 1 & 2

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] 10+ messages in thread

* Re: [PATCH v6 3/3] riscv: dts: allwinner: d1: Add thermal sensor
  2023-12-17 21:06 ` [PATCH v6 3/3] riscv: dts: allwinner: d1: Add thermal sensor Maksim Kiselev
  2023-12-18  1:09   ` Andre Przywara
@ 2024-09-09 17:16   ` Sam Edwards
  2024-09-09 19:23     ` Andre Przywara
  1 sibling, 1 reply; 10+ messages in thread
From: Sam Edwards @ 2024-09-09 17:16 UTC (permalink / raw)
  To: bigunclemax
  Cc: anarsoul, andre.przywara, aou, conor+dt, contact,
	cristian.ciocaltea, daniel.lezcano, devicetree, jernej.skrabec,
	krzysztof.kozlowski+dt, linux-arm-kernel, linux-kernel, linux-pm,
	linux-riscv, linux-sunxi, lukasz.luba, mkl, palmer, paul.walmsley,
	rafael, robh+dt, rui.zhang, samuel, tiny.windzz, wens

Hi Maksim,

Apologies if I have failed to find a v7 of this patch in my searching, 
but I'm seeing that patch #3 here was never applied, so Linux still does 
not enable the thermal sensor in these chips. I just thought I'd give 
you a heads-up in case you weren't aware. :)

Thanks for all your hard work,
Sam

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

* Re: [PATCH v6 3/3] riscv: dts: allwinner: d1: Add thermal sensor
  2024-09-09 17:16   ` Sam Edwards
@ 2024-09-09 19:23     ` Andre Przywara
  0 siblings, 0 replies; 10+ messages in thread
From: Andre Przywara @ 2024-09-09 19:23 UTC (permalink / raw)
  To: Sam Edwards
  Cc: bigunclemax, anarsoul, aou, conor+dt, contact, cristian.ciocaltea,
	daniel.lezcano, devicetree, jernej.skrabec,
	krzysztof.kozlowski+dt, linux-arm-kernel, linux-kernel, linux-pm,
	linux-riscv, linux-sunxi, lukasz.luba, mkl, palmer, paul.walmsley,
	rafael, robh+dt, rui.zhang, samuel, tiny.windzz, wens

On Mon, 9 Sep 2024 10:16:56 -0700
Sam Edwards <cfsworks@gmail.com> wrote:

Hi,

> Hi Maksim,
> 
> Apologies if I have failed to find a v7 of this patch in my searching, 
> but I'm seeing that patch #3 here was never applied, so Linux still does 
> not enable the thermal sensor in these chips. I just thought I'd give 
> you a heads-up in case you weren't aware. :)

There is an unaddressed comment on this patch: to remove the "disabled"
status line. Sam, feel free to fix this and send the patch again,
unless Maksim beats you to it.

Cheers,
Andre

> 
> Thanks for all your hard work,
> Sam
> 


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

end of thread, other threads:[~2024-09-09 19:23 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-12-17 21:06 [PATCH v6 0/3] Add D1/T113s thermal sensor controller support Maksim Kiselev
2023-12-17 21:06 ` [PATCH v6 1/3] dt-bindings: thermal: sun8i: Add binding for D1/T113s THS controller Maksim Kiselev
2023-12-17 21:06 ` [PATCH v6 2/3] thermal: sun8i: Add D1/T113s THS controller support Maksim Kiselev
2023-12-18  0:57   ` Andre Przywara
2023-12-19 17:14   ` Jernej Škrabec
2023-12-17 21:06 ` [PATCH v6 3/3] riscv: dts: allwinner: d1: Add thermal sensor Maksim Kiselev
2023-12-18  1:09   ` Andre Przywara
2024-09-09 17:16   ` Sam Edwards
2024-09-09 19:23     ` Andre Przywara
2023-12-19 17:42 ` [PATCH v6 0/3] Add D1/T113s thermal sensor controller support Daniel Lezcano

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