* [PATCH 0/2] Update st,stih407-thermal device
@ 2024-02-26 7:48 Raphael Gallais-Pou
2024-02-26 7:48 ` [PATCH 1/2] dt-bindings: thermal: convert st,stih407-thermal to DT schema Raphael Gallais-Pou
2024-02-26 7:48 ` [PATCH 2/2] ARM: dts: st: add thermal property on stih410.dtsi and stih418.dtsi Raphael Gallais-Pou
0 siblings, 2 replies; 5+ messages in thread
From: Raphael Gallais-Pou @ 2024-02-26 7:48 UTC (permalink / raw)
To: Rafael J. Wysocki, Daniel Lezcano, Zhang Rui, Lukasz Luba,
Rob Herring, Krzysztof Kozlowski, Conor Dooley, Patrice Chotard,
Lee Jones
Cc: linux-pm, devicetree, linux-kernel, linux-arm-kernel
Those two patches update the thermal device by converting the deprecated
txt documentation file to DT schema, and adding a required property in
the device tree where it is needed.
Signed-off-by: Raphael Gallais-Pou <rgallaispou@gmail.com>
---
Raphael Gallais-Pou (2):
dt-bindings: thermal: convert st,stih407-thermal to DT schema
ARM: dts: st: add thermal property on stih410.dtsi and stih418.dtsi
.../bindings/thermal/st,stih407-thermal.yaml | 61 ++++++++++++++++++++++
.../devicetree/bindings/thermal/st-thermal.txt | 32 ------------
arch/arm/boot/dts/st/stih410.dtsi | 1 +
arch/arm/boot/dts/st/stih418.dtsi | 1 +
4 files changed, 63 insertions(+), 32 deletions(-)
---
base-commit: b6d69282db550689ab5980e06eedd23b64584a73
change-id: 20240225-thermal-8cd0ba7f452b
Best regards,
--
Raphael Gallais-Pou <rgallaispou@gmail.com>
^ permalink raw reply [flat|nested] 5+ messages in thread* [PATCH 1/2] dt-bindings: thermal: convert st,stih407-thermal to DT schema 2024-02-26 7:48 [PATCH 0/2] Update st,stih407-thermal device Raphael Gallais-Pou @ 2024-02-26 7:48 ` Raphael Gallais-Pou 2024-02-29 19:15 ` Krzysztof Kozlowski 2024-02-26 7:48 ` [PATCH 2/2] ARM: dts: st: add thermal property on stih410.dtsi and stih418.dtsi Raphael Gallais-Pou 1 sibling, 1 reply; 5+ messages in thread From: Raphael Gallais-Pou @ 2024-02-26 7:48 UTC (permalink / raw) To: Rafael J. Wysocki, Daniel Lezcano, Zhang Rui, Lukasz Luba, Rob Herring, Krzysztof Kozlowski, Conor Dooley, Patrice Chotard, Lee Jones Cc: linux-pm, devicetree, linux-kernel, linux-arm-kernel Converts st,stih407-thermal binding to DT schema format and cleans unused property "st,passive_cooling_temp" which does not appear in the device-tree. Signed-off-by: Raphael Gallais-Pou <rgallaispou@gmail.com> --- .../bindings/thermal/st,stih407-thermal.yaml | 61 ++++++++++++++++++++++ .../devicetree/bindings/thermal/st-thermal.txt | 32 ------------ 2 files changed, 61 insertions(+), 32 deletions(-) diff --git a/Documentation/devicetree/bindings/thermal/st,stih407-thermal.yaml b/Documentation/devicetree/bindings/thermal/st,stih407-thermal.yaml new file mode 100644 index 000000000000..807f8d77edf5 --- /dev/null +++ b/Documentation/devicetree/bindings/thermal/st,stih407-thermal.yaml @@ -0,0 +1,61 @@ +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) +%YAML 1.2 +--- +$id: http://devicetree.org/schemas/thermal/st,stih407-thermal.yaml# +$schema: http://devicetree.org/meta-schemas/core.yaml# + +title: STMicroelectronics STi digital thermal sensor (DTS) + +maintainers: + - Patrice Chotard <patrice.chotard@foss.st.com> + - Lee Jones <lee@kernel.org> + +description: + Binding for Thermal Sensor device for STMicroelectronics STi SoCs series. + +allOf: + - $ref: thermal-sensor.yaml + +properties: + compatible: + const: st,stih407-thermal + + clocks: + maxItems: 1 + description: Phandle of the clock used by the thermal sensor. + + clock-names: + items: + - const: thermal + + reg: + description: + For non-sysconf based sensors, this should be the physical base + address and length of the sensor's registers. + + interrupts: + description: | + Standard way to define interrupt number. + For thermal sensor's for which no interrupt has been + defined, a polling delay of 1000ms will be used to read the + temperature from device. + +required: + - compatible + - clocks + - clock-names + +unevaluatedProperties: false + +examples: + - | + #include <dt-bindings/interrupt-controller/arm-gic.h> + temp0@91a0000 { + compatible = "st,stih407-thermal"; + reg = <0x91a0000 0x28>; + clock-names = "thermal"; + clocks = <&CLK_SYSIN>; + interrupts = <GIC_SPI 205 IRQ_TYPE_EDGE_RISING>; + #thermal-sensor-cells = <0>; + }; +... diff --git a/Documentation/devicetree/bindings/thermal/st-thermal.txt b/Documentation/devicetree/bindings/thermal/st-thermal.txt deleted file mode 100644 index a2f939137e35..000000000000 --- a/Documentation/devicetree/bindings/thermal/st-thermal.txt +++ /dev/null @@ -1,32 +0,0 @@ -Binding for Thermal Sensor driver for STMicroelectronics STi series of SoCs. - -Required parameters: -------------------- - -compatible : Should be "st,stih407-thermal" - -clock-names : Should be "thermal". - See: Documentation/devicetree/bindings/resource-names.txt -clocks : Phandle of the clock used by the thermal sensor. - See: Documentation/devicetree/bindings/clock/clock-bindings.txt - -Optional parameters: -------------------- - -reg : For non-sysconf based sensors, this should be the physical base - address and length of the sensor's registers. -interrupts : Standard way to define interrupt number. - NB: For thermal sensor's for which no interrupt has been - defined, a polling delay of 1000ms will be used to read the - temperature from device. - -Example: - - temp0@91a0000 { - compatible = "st,stih407-thermal"; - reg = <0x91a0000 0x28>; - clock-names = "thermal"; - clocks = <&CLK_SYSIN>; - interrupts = <GIC_SPI 205 IRQ_TYPE_EDGE_RISING>; - st,passive_cooling_temp = <110>; - }; -- 2.43.2 ^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH 1/2] dt-bindings: thermal: convert st,stih407-thermal to DT schema 2024-02-26 7:48 ` [PATCH 1/2] dt-bindings: thermal: convert st,stih407-thermal to DT schema Raphael Gallais-Pou @ 2024-02-29 19:15 ` Krzysztof Kozlowski 2024-03-01 16:55 ` Raphaël Gallais-Pou 0 siblings, 1 reply; 5+ messages in thread From: Krzysztof Kozlowski @ 2024-02-29 19:15 UTC (permalink / raw) To: Raphael Gallais-Pou, Rafael J. Wysocki, Daniel Lezcano, Zhang Rui, Lukasz Luba, Rob Herring, Krzysztof Kozlowski, Conor Dooley, Patrice Chotard, Lee Jones Cc: linux-pm, devicetree, linux-kernel, linux-arm-kernel On 26/02/2024 08:48, Raphael Gallais-Pou wrote: > Converts st,stih407-thermal binding to DT schema format and cleans Please use imperative for your future patches. https://elixir.bootlin.com/linux/v5.17.1/source/Documentation/process/submitting-patches.rst#L95 > unused property "st,passive_cooling_temp" which does not appear in the > device-tree. > > Signed-off-by: Raphael Gallais-Pou <rgallaispou@gmail.com> > --- > .../bindings/thermal/st,stih407-thermal.yaml | 61 ++++++++++++++++++++++ > .../devicetree/bindings/thermal/st-thermal.txt | 32 ------------ > 2 files changed, 61 insertions(+), 32 deletions(-) > > diff --git a/Documentation/devicetree/bindings/thermal/st,stih407-thermal.yaml b/Documentation/devicetree/bindings/thermal/st,stih407-thermal.yaml > new file mode 100644 > index 000000000000..807f8d77edf5 > --- /dev/null > +++ b/Documentation/devicetree/bindings/thermal/st,stih407-thermal.yaml > @@ -0,0 +1,61 @@ > +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) > +%YAML 1.2 > +--- > +$id: http://devicetree.org/schemas/thermal/st,stih407-thermal.yaml# > +$schema: http://devicetree.org/meta-schemas/core.yaml# > + > +title: STMicroelectronics STi digital thermal sensor (DTS) > + > +maintainers: > + - Patrice Chotard <patrice.chotard@foss.st.com> > + - Lee Jones <lee@kernel.org> > + > +description: > + Binding for Thermal Sensor device for STMicroelectronics STi SoCs series. Drop "Binding for" and describe the hardware. If you repeat the title, then the description is not really needed. > + > +allOf: > + - $ref: thermal-sensor.yaml > + > +properties: > + compatible: > + const: st,stih407-thermal > + > + clocks: > + maxItems: 1 > + description: Phandle of the clock used by the thermal sensor. Drop description, it's obvious. > + > + clock-names: > + items: > + - const: thermal > + > + reg: > + description: > + For non-sysconf based sensors, this should be the physical base > + address and length of the sensor's registers. That's odd, probably old binding was incomplete. You have only one device described here, so I expect this to be always present (thus description is obvious). > + > + interrupts: > + description: | Do not need '|' unless you need to preserve formatting. > + Standard way to define interrupt number. ??? > + For thermal sensor's for which no interrupt has been > + defined, a polling delay of 1000ms will be used to read the > + temperature from device. Missing thermal-sensor-cells. > + > +required: > + - compatible > + - clocks > + - clock-names Missing reg and please mention the change from pure conversion in commit msg. > + > +unevaluatedProperties: false > + > +examples: > + - | > + #include <dt-bindings/interrupt-controller/arm-gic.h> > + temp0@91a0000 { Node names should be generic. See also an explanation and list of examples (not exhaustive) in DT specification: https://devicetree-specification.readthedocs.io/en/latest/chapter2-devicetree-basics.html#generic-names-recommendation > + compatible = "st,stih407-thermal"; > + reg = <0x91a0000 0x28>; > + clock-names = "thermal"; > + clocks = <&CLK_SYSIN>; > + interrupts = <GIC_SPI 205 IRQ_TYPE_EDGE_RISING>; > + #thermal-sensor-cells = <0>; > + }; Best regards, Krzysztof ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 1/2] dt-bindings: thermal: convert st,stih407-thermal to DT schema 2024-02-29 19:15 ` Krzysztof Kozlowski @ 2024-03-01 16:55 ` Raphaël Gallais-Pou 0 siblings, 0 replies; 5+ messages in thread From: Raphaël Gallais-Pou @ 2024-03-01 16:55 UTC (permalink / raw) To: Krzysztof Kozlowski, Rafael J. Wysocki, Daniel Lezcano, Zhang Rui, Lukasz Luba, Rob Herring, Krzysztof Kozlowski, Conor Dooley, Patrice Chotard, Lee Jones Cc: linux-pm, devicetree, linux-kernel, linux-arm-kernel Hi Krzysztof, Le 29/02/2024 à 20:15, Krzysztof Kozlowski a écrit : > On 26/02/2024 08:48, Raphael Gallais-Pou wrote: >> Converts st,stih407-thermal binding to DT schema format and cleans > > Please use imperative for your future patches. > https://elixir.bootlin.com/linux/v5.17.1/source/Documentation/process/submitting-patches.rst#L95 > >> unused property "st,passive_cooling_temp" which does not appear in the >> device-tree. >> >> Signed-off-by: Raphael Gallais-Pou <rgallaispou@gmail.com> >> --- >> .../bindings/thermal/st,stih407-thermal.yaml | 61 ++++++++++++++++++++++ >> .../devicetree/bindings/thermal/st-thermal.txt | 32 ------------ >> 2 files changed, 61 insertions(+), 32 deletions(-) >> >> diff --git a/Documentation/devicetree/bindings/thermal/st,stih407-thermal.yaml b/Documentation/devicetree/bindings/thermal/st,stih407-thermal.yaml >> new file mode 100644 >> index 000000000000..807f8d77edf5 >> --- /dev/null >> +++ b/Documentation/devicetree/bindings/thermal/st,stih407-thermal.yaml >> @@ -0,0 +1,61 @@ >> +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) >> +%YAML 1.2 >> +--- >> +$id: http://devicetree.org/schemas/thermal/st,stih407-thermal.yaml# >> +$schema: http://devicetree.org/meta-schemas/core.yaml# >> + >> +title: STMicroelectronics STi digital thermal sensor (DTS) >> + >> +maintainers: >> + - Patrice Chotard <patrice.chotard@foss.st.com> >> + - Lee Jones <lee@kernel.org> >> + >> +description: >> + Binding for Thermal Sensor device for STMicroelectronics STi SoCs series. > > Drop "Binding for" and describe the hardware. If you repeat the title, > then the description is not really needed. > >> + >> +allOf: >> + - $ref: thermal-sensor.yaml >> + >> +properties: >> + compatible: >> + const: st,stih407-thermal >> + >> + clocks: >> + maxItems: 1 >> + description: Phandle of the clock used by the thermal sensor. > > Drop description, it's obvious. > >> + >> + clock-names: >> + items: >> + - const: thermal >> + >> + reg: >> + description: >> + For non-sysconf based sensors, this should be the physical base >> + address and length of the sensor's registers. > > That's odd, probably old binding was incomplete. You have only one > device described here, so I expect this to be always present (thus > description is obvious). It is indeed missing in the old file. > >> + >> + interrupts: >> + description: | > > Do not need '|' unless you need to preserve formatting. > >> + Standard way to define interrupt number. > > ??? > >> + For thermal sensor's for which no interrupt has been >> + defined, a polling delay of 1000ms will be used to read the >> + temperature from device. > > Missing thermal-sensor-cells. > >> + >> +required: >> + - compatible >> + - clocks >> + - clock-names > > Missing reg and please mention the change from pure conversion in commit > msg. > >> + >> +unevaluatedProperties: false >> + >> +examples: >> + - | >> + #include <dt-bindings/interrupt-controller/arm-gic.h> >> + temp0@91a0000 { > > Node names should be generic. See also an explanation and list of > examples (not exhaustive) in DT specification: > https://devicetree-specification.readthedocs.io/en/latest/chapter2-devicetree-basics.html#generic-names-recommendation > > >> + compatible = "st,stih407-thermal"; >> + reg = <0x91a0000 0x28>; >> + clock-names = "thermal"; >> + clocks = <&CLK_SYSIN>; >> + interrupts = <GIC_SPI 205 IRQ_TYPE_EDGE_RISING>; >> + #thermal-sensor-cells = <0>; >> + }; > > > Thanks for your review. I will send a v2 with the changes your mentioned above. Regards, Raphaël > Best regards, > Krzysztof > ^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 2/2] ARM: dts: st: add thermal property on stih410.dtsi and stih418.dtsi 2024-02-26 7:48 [PATCH 0/2] Update st,stih407-thermal device Raphael Gallais-Pou 2024-02-26 7:48 ` [PATCH 1/2] dt-bindings: thermal: convert st,stih407-thermal to DT schema Raphael Gallais-Pou @ 2024-02-26 7:48 ` Raphael Gallais-Pou 1 sibling, 0 replies; 5+ messages in thread From: Raphael Gallais-Pou @ 2024-02-26 7:48 UTC (permalink / raw) To: Rafael J. Wysocki, Daniel Lezcano, Zhang Rui, Lukasz Luba, Rob Herring, Krzysztof Kozlowski, Conor Dooley, Patrice Chotard, Lee Jones Cc: linux-pm, devicetree, linux-kernel, linux-arm-kernel "#thermal-sensor-cells" is required and missing in thermal nodes. Add it. Signed-off-by: Raphael Gallais-Pou <rgallaispou@gmail.com> --- arch/arm/boot/dts/st/stih410.dtsi | 1 + arch/arm/boot/dts/st/stih418.dtsi | 1 + 2 files changed, 2 insertions(+) diff --git a/arch/arm/boot/dts/st/stih410.dtsi b/arch/arm/boot/dts/st/stih410.dtsi index 29e95e9d3229..a69231854f78 100644 --- a/arch/arm/boot/dts/st/stih410.dtsi +++ b/arch/arm/boot/dts/st/stih410.dtsi @@ -270,6 +270,7 @@ thermal@91a0000 { clock-names = "thermal"; clocks = <&clk_sysin>; interrupts = <GIC_SPI 205 IRQ_TYPE_EDGE_RISING>; + #thermal-sensor-cells = <0>; }; cec@94a087c { diff --git a/arch/arm/boot/dts/st/stih418.dtsi b/arch/arm/boot/dts/st/stih418.dtsi index b35b9b7a7ccc..0f0db988a907 100644 --- a/arch/arm/boot/dts/st/stih418.dtsi +++ b/arch/arm/boot/dts/st/stih418.dtsi @@ -113,6 +113,7 @@ thermal@91a0000 { clock-names = "thermal"; clocks = <&clk_sysin>; interrupts = <GIC_SPI 205 IRQ_TYPE_EDGE_RISING>; + #thermal-sensor-cells = <0>; }; }; }; -- 2.43.2 ^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-03-01 16:56 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-02-26 7:48 [PATCH 0/2] Update st,stih407-thermal device Raphael Gallais-Pou 2024-02-26 7:48 ` [PATCH 1/2] dt-bindings: thermal: convert st,stih407-thermal to DT schema Raphael Gallais-Pou 2024-02-29 19:15 ` Krzysztof Kozlowski 2024-03-01 16:55 ` Raphaël Gallais-Pou 2024-02-26 7:48 ` [PATCH 2/2] ARM: dts: st: add thermal property on stih410.dtsi and stih418.dtsi Raphael Gallais-Pou
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).