Re: [PATCH RESEND RESEND] thermal/of: support thermal zones w/o trips subnode

From: Chen-Yu Tsai
Date: Mon Jul 24 2023 - 00:25:14 EST


On Sun, Jul 23, 2023 at 12:12:49PM +0200, Daniel Lezcano wrote:
>
> Hi Mark,
>
> On 22/07/2023 22:11, Mark Brown wrote:
> > On Sat, Jul 22, 2023 at 08:25:34PM +0800, Icenowy Zheng wrote:
> > > From: Icenowy Zheng <uwu@xxxxxxxxxx>
> > >
> > > Although the current device tree binding of thermal zones require the
> > > trips subnode, the binding in kernel v5.15 does not require it, and many
> > > device trees shipped with the kernel, for example,
> > > allwinner/sun50i-a64.dtsi and mediatek/mt8183-kukui.dtsi in ARM64, still
> > > comply to the old binding and contain no trips subnode.
> > >
> > > Allow the code to successfully register thermal zones w/o trips subnode
> > > for DT binding compatibility now.
> > >
> > > Furtherly, the inconsistency between DTs and bindings should be resolved
> > > by either adding empty trips subnode or dropping the trips subnode
> > > requirement.
> >
> > This makes sense to me - it allows people to see the reported
> > temperature even if there's no trips defined which seems more
> > helpful than refusing to register.
>
> The binding describes the trip points as required and that since the
> beginning.

Not really. It was made optional in the v5.15 kernel release by commit

22fc857538c3 dt-bindings: thermal: Make trips node optional

> What changed is now the code reflects the required property while before it
> was permissive, that was an oversight.
>
> Just a reminder about the thermal framework goals:
>
> 1. It protects the silicon (thus critical and hot trip points)
>
> 2. It mitigates the temperature (thus cooling device bound to trip points)
>
> 3. It notifies the userspace when a trip point is crossed
>
> So if the thermal zone is described but without any of this goal above, it
> is pointless.
>
> If the goal is to report the temperature only, then hwmon should be used
> instead.

What about thermal sensors with multiple channels? Some of the channels
are indeed tied to important hardware blocks like the CPU cores and
should be tied into the thermal tripping. However other channels might
only be used for temperature read-out and have no such requirement.

Should we be mixing thermal and hwmon APIs in the driver?

> If the goal is to mitigate by userspace, then the trip point *must* be used
> to prevent the userspace polling the temperature. With the trip point the
> sensor will be set to fire an interrupt at the given trip temperature.
>
> IOW, trip points are not optional

for measurement points that are used for thermal throttling /
mitigation.

ChenYu