Re: [PATCH RFC RESEND 0/8] thermal: core: Allow setting the parent device of thermal zone/cooling devices
From: Armin Wolf
Date: Sat Nov 29 2025 - 06:36:32 EST
Am 28.11.25 um 12:40 schrieb Rafael J. Wysocki:
On Fri, Nov 28, 2025 at 12:50 AM Armin Wolf <W_Armin@xxxxxx> wrote:
Am 27.11.25 um 22:46 schrieb Rafael J. Wysocki:No, we are not going to use dev_pm_ops for thermal zone suspend. That
On Thu, Nov 27, 2025 at 9:06 PM Armin Wolf <W_Armin@xxxxxx> wrote:thermal_pm_suspended is only used for initializing the state of thermal zone devices registered
Am 27.11.25 um 18:41 schrieb Rafael J. Wysocki:Of course it is not the case.
On Sat, Nov 22, 2025 at 3:18 PM Armin Wolf <W_Armin@xxxxxx> wrote:AFAIK this is only possible by using dev_pm_ops,
Am 21.11.25 um 21:35 schrieb Rafael J. Wysocki:This can be addressed by doing thermal zone suspend after freezing
On Thu, Nov 20, 2025 at 4:41 AM Armin Wolf <W_Armin@xxxxxx> wrote:Correct, that is why i said "potentially".
Drivers registering thermal zone/cooling devices are currently unableThis is one potential class of problems that may arise, but I would
to tell the thermal core what parent device the new thermal zone/
cooling device should have, potentially causing issues with suspend
ordering
like to see a real example of this.
As it stands today, thermal_class has no PM callbacks, so there are no
callback execution ordering issues with devices in that class and what
other suspend/resume ordering issues are there?
Also, the suspend and resume of thermal zones is handled via PMThe problem with PM notifiers is that thermal zones stop working even before
notifiers. Is there a problem with this?
user space is frozen. Freezing user space might take a lot of time, so having
no thermal management during this period is less than ideal.
tasks and before starting to suspend devices. Accordingly, thermal
zones could be resumed after resuming devices and before thawing
tasks. That should not be an overly complex change to make.
For example, thermal_pm_notify_prepare() could be called directly from
dpm_prepare() and thermal_pm_notify_complete() could be called
directly from dpm_complete() (which would require switching over
thermal to a non-freezable workqueue).
the PM notifier is triggered before tasks are frozen during suspend and after they are thawed during resume.I know that.
Using dev_pm_ops would also ensure that thermal zone devices are resumed after theirNot really. thermal_pm_suspended needs to be set and cleared from somewhere.
parent devices, so no additional changes inside the pm core would be needed.
during a suspend transition. This is currently needed because user space tasks are still operational
when the PM notifier callback is called, so we have to be prepared for new thermal zone devices
being registered in the middle of a suspend transition.
When using dev_pm_ops, new thermal zone devices cannot appear in the middle of a suspend transition,
as this would violate the restraints of the device core regarding device registrations. Because of
this thermal_pm_suspended can be removed once we use dev_pm_ops.
would be adding complexity just for the sake of it IMV.
OK, fine. I will forget about using dev_pm_ops for the thermal subsystem.
Which callbacks in particular do you mean? That would need to beAFAIK this is not completely true, once TZ_STATE_FLAG_SUSPENDED is set,Changing the zone state to anything different from TZ_STATE_READYCorrect, thermal zone devices are virtual devices representing thermal managementThis problem would not occur when using dev_pm_ops, as thermal zones would beHonestly, I don't see much benefit from using dev_pm_ops for thermal
suspended after user space has been frozen successfully. Additionally, when using
dev_pm_ops we can get rid of thermal_pm_suspended, as the device core already mandates
that no new devices (including thermal zones and cooling devices) be registered during
a suspend/resume cycle.
Replacing the PM notifiers with dev_pm_ops would of course be a optimization with
its own patch series.
zone devices and cooling devices. Moreover, I actually think that
they could be "no PM" devices that are not even put on the
suspend-resume device list. Technically, they are just interfaces on
top of some other devices allowing the user space to interact with the
latter and combining different pieces described by the platform
firmware. They by themselves have no PM capabilities.
aspects of the underlying parent device. This however does not mean that thermal zone
devices have no PM capabilities, because they contain state. Some part of this state
(namely TZ_STATE_FLAG_SUSPENDED and TZ_STATE_FLAG_RESUMING) is affected by power management,
so we should tell the device core about this by using dev_pm_ops instead of the PM notifier.
causes __thermal_zone_device_update() to do nothing and this is the
whole "suspend". It does not need to be done from a PM callback and I
see no reason why doing it from a PM callback would be desirable.
Sorry.
Apart from the above, TZ_STATE_FLAG_SUSPENDED and
TZ_STATE_FLAG_RESUMING are only used for coordination between
thermal_zone_pm_prepare(), thermal_zone_device_resume() and
thermal_zone_pm_complete(), so this is not a state anything other then
the specific thermal zone in question cares about.
__thermal_zone_device_update() will stop polling said device (as you said).
This is not only important for the thermal zone device itself, but also for
the underlying device driver as he has to make sure that the thermal zone
callbacks do not access an already suspended hardware device.
something that is not called from either
__thermal_zone_device_update() because it is going to bail out early
or user space because it is frozen. So what is left?
Seriously, if the only problem with the existing thermal zone suspend
and resume is that they are done from a PM notifier, I don't think
addressing this requires involving dev_pm_ops and it will be very hard
to convince me otherwise.
I was referring to the callbacks inside struct thermal_zone_device_ops, but
those are indeed already covered by the current approach using the PM notifier.
Since you are happy with the current approach, i say that we forget about the
suggestion with the dev_pm_ops for now.
But then it would be synchronous, wouldn't it? Or if you want toMoreover, resuming a thermal zone before resuming any cooling devicesWe could simply resume the thermal zones inside the .complete callback.
bound to it would almost certainly break things and I'm not sure how
you would make that work with dev_pm_ops. BTW, using device links for
this is not an option as far as I'm concerned.
The cooling devices will already be operational when said complete callback
is being called by the PM core, due to the resume phase having been completed
already.
start async handling from a .complete callback then I don't see a
point.
So you are postulating that the parent of a thermal zone should be theI think there is a misunderstanding here, describing the devices affected by a given thermal zoneWell, exactly.The device exposing a given thermal zone device is not always a member of the thermal zone itself.But the "belong" part is not quite well defined here. I think thatLets say that we have two thermal zones registered by two instances of theand making it impossible for user space applications toWhy does user space need to know the parent of a given cooling device
associate a given thermal zone device with its parent device.
or thermal zone?
Intel Wifi driver. User space is currently unable to find out which thermal zone
belongs to which Wifi adapter, as both thermal zones have the (nearly) same type string ("iwlwifi[0-X]").
what user space needs to know is what devices are located in a given
thermal zone, isn't it? Knowing the parent doesn't necessarily
address this.
In case of the Intel Wifi adapters, the individual Wifi adapters are indeed members of the thermal zone
associated with their thermal zone device. But thermal zones created thru a system management controller
for example might only cover devices like the CPUs and GPUs, not the system management controller device itself.
The parent device of a child device is the upstream device of the child device. The connection between parentBut this needs to be consistent.
and child can be physical (SMBus controller (parent) -> i2c device (child)) or purely logical
(PCI device (parent) -> thermal zone device (child)). There exists a parent-child dependency between a parent
and a child device (the child device cannot function without its parent being operational), and user space
might want to be able to discover such dependencies.
If the parent of one thermal zone represents the device affected by it
and the parent of another thermal zone represents something else, user
space will need platform-specific knowledge to figure this out, which
is the case today. Without consistency, this is just not useful.
has nothing to do with the parent-child dependency between a thermal zone device and its parent device.
This parent-child dependency only states that:
"This thermal zone device is descended from this parent device. It might thus depend on
said parent device to be operational."
device providing the thermal sensor or otherwise a mechanism allowing
temperature to be read. That is precise enough as far as I'm
concerned.
Correct.
If you refer to Section 11.1.5, this is based on _TC1 and _TC2 and hasThat is correct.No. I thought that you were referring to the ACPI ThermalZone itself.In the context of a ACPI ThermalZone, the parent device of the thermal cooling device would currentlyThis problem would be solved once we populate the parent device pointer inside the thermal zoneI'm not convinced about this.
device, as user space can simply look at the "device" symlink to determine the parent device behind
a given thermal zone device.
Additionally, being able to access the acpi_handle of the parent device will be necessary for theI guess by the "parent" you mean the device represented in the ACPI
ACPI thermal zone driver to support cooling devices other than ACPI fans and ACPI processors.
namespace by a ThermalZone object, right? But this is not the same as
the "parent" in the Wifi driver context, is it?
be the ACPI device bound to the "thermal" ACPI driver. In the context of the Intel Wifi card, the parent
device would be PCI device bound to the corresponding Intel Wifi driver.
I think you misunderstood what kind of parent device i was referring to. You likely though that i was referring
to the parent device of the ACPI ThermalZone, right?
Or rather, a platform device associated with the ACPI ThermalZone
(that is, the device the ACPI ThermalZone in the ACPI_COMPAION() of).
Well, ACPI specifies how passive cooling should be done using percentage values between 0% and 100%,That however is not the case , with "parent device" i wasSo I was not confused.
referring to the device responsible for creating a given struct thermal_zone_device instance.
But it doesn't actually say how those "device performance states" areUsing _TZD to figure out the location of a given thermal zone is another usageI see, thanks.I tested:This patch series aims to fix this issue by extending the functionsWhat exactly did you do to test it?
used to register thermal zone/cooling devices to also accept a parent
device pointer. The first six patches convert all functions used for
registering cooling devices, while the functions used for registering
thermal zone devices are converted by the remaining two patches.
I tested this series on various devices containing (among others):
- ACPI thermal zones
- ACPI processor devices
- PCIe cooling devices
- Intel Wifi card
- Intel powerclamp
- Intel TCC cooling
- the thermal zone temperature readout
- correctness of the new sysfs links
- suspend/resume
I also verified that ACPI thermal zones still bind with the ACPI fans.
No, it is not for cooling devices if my reading of the specificationYou are right, however i originally meant to CC the mellanox maintainers asI also compile-tested the remaining affected drivers, however i wouldI think that the above paragraph is not relevant any more?
still be happy if the relevant maintainers (especially those of the
mellanox ethernet switch driver) could take a quick glance at the
code and verify that i am using the correct device as the parent
device.
i was a bit unsure about the changes i made to their driver. I will rework
this section in the next revision and CC the mellanox maintainers.
_TZD allows the ACPI thermal zone to bind to cooling devices other than ACPI fansThis work is also necessary for extending the ACPI thermal zone driverI'm still unsure why _TZD support requires the ability to set a
to support the _TZD ACPI object in the future.
thermal zone parent device.
and ACPI processors, like ACPI batteries.
is correct. It says:
"_TZD (Thermal Zone Devices)
This optional object evaluates to a package of device names. Each name
corresponds to a device in the ACPI namespace that is associated with
the thermal zone. The temperature reported by the thermal zone is
roughly correspondent to that of each of the devices."
And then
"The list of devices returned by the control method need not be a
complete and absolute list of devices affected by the thermal zone.
However, the package should at least contain the devices that would
uniquely identify where this thermal zone is located in the machine.
For example, a thermal zone in a docking station should include a
device in the docking station, a thermal zone for the CD-ROM bay,
should include the CD-ROM."
So IIUC this is a list of devices allowing the location of the thermal
zone to be figured out. There's nothing about cooling in this
definition.
of this ACPI control method, but lets take a look at section 11.6:
- If _PSV is defined then either the _PSL or _TZD objects must exist. The _PSL and _TZD objects may both exist.
- If _PSV is defined and _PSL is not defined then at least one device in thermal zone, as indicated by either the
_TZD device list or devices’ _TZM objects, must support device performance states.
So according to my understanding, _TZD can also be used to discover additional cooling devices used for passive cooling.
supposed to be used for cooling, does it?
so this part is actually specified.
limitations. So you are saying that Section 11.1.5 should be extended
to _TZD devices. Is this also there in the MSFT document?
Looking at https://learn.microsoft.com/en-us/windows-hardware/design/device-experiences/design-guide
section "Thermal policy control" paragraph "Thermal manager in kernel", it seems that the NT kernel
uses the passive cooling algorithm defined by the ACPI specification for all passive cooling devices.
So when using Windows, _TZD is indeed treated like an extension for _PSL.
Sure, but it looks reasonable to me.Devices in _TZD that have no cooling capability will simply never register any cooling devices. This means thatThis makes sense as _PSL is defined to only contain processor objects (see section 11.4.10), so _TZD can act like anBut not everything in _TZD needs to be a potential "cooling device"
extension of _PSL for things like ACPI control method batteries (see 10.2.2.12).
and how you'll decide which one is?
the .should_bind callback of the ACPI thermal zone will never see those devices. Only devices in _TZD that also
have the ability for (passive) cooling will register a cooling device, so only those devices will end up with
the .should_bind callback of the ACPI thermal zone.
The ACPI thermal zone treats _TZD as a list of ACPI handles. If some of those handles are unused, then this is
totally fine.
My primary goal is to improve the Linux thermal subsystem to be as powerful asMicrosoft also follows this approach (see https://learn.microsoft.com/en-us/windows-hardware/design/device-experiences/design-guideInteresting.
section "Thermally managed devices" paragraph "Processor aggregator").
I agree that it would make sense to follow them because there will be
platform dependencies on that, if there aren't already.
the Windows thermal subsystem. This means that we must stop viewing _PSL, _ALx and _TZD
as something that only works with a predefined set of devices. Instead we must view
_PSL, _ALx and _TZD as something similar to the cooling-maps used for connecting
thermal zones and cooling devices on OF-based systems.
My idea was something like this:Yes, and these particular drivers decide to store a pointer to structAFAIK devdata is meant to be used by the thermal zone device callbacks to access the stateThis however will currently not work asI'm not sure I understand the above.
the ACPI thermal zone driver uses the private drvdata of the cooling device to
determine if said cooling device should bind. This only works for ACPI fans and
processors due to the fact that those drivers store a ACPI device pointer inside
drvdata, something the ACPI thermal zone expects.
There is a list of ACPI device handles per trip point, as returned by
either _PSL or _ALx. Devices whose handles are in that list will be
bound to the thermal zone, so long as there are struct acpi_device
objects representing them which is verified with the help of the
devdata field in struct thermal_cooling_device.
container struct of the associated device driver instance. Assuming that a given device driver
will populate devdata with a pointer to is ACPI companion device is an implementation-specific
detail that does not apply to all cooling device implementations. It just so happens that the
ACPI processor and fan driver do this, likely because they where designed specifically to work
with the ACPI thermal zone driver.
The documentation of thermal_cooling_device_register() even describes devdata as "device private data", so any meaning of devdata purely depends on the
given device driver.
acpi_device in it.
But this is not super important, they might as well set the
ACPI_COMPANION() of the cooling device to the corresponding struct
acpi_device and the ACPI thermal driver might use that information.
I'm not opposed to using parents for this purpose, but it doesn't
change the big picture that the ACPI thermal driver will need to know
the ACPI handle corresponding to each cooling device.
If you want to use _TZD instead of or in addition to _PSL for this, it
doesn't change much here, it's just another list of ACPI handles, so
saying that parents are needed for supporting this is not exactly
accurate IMV.
/* Cooling devices without a parent device cannot be referenced using ACPI */
if (!cdev->device.parent)
return false;
/* Not all devices are described inside the ACPI tables */
acpi_handle cdev_handle = ACPI_HANDLE(cdev->device.parent);
if (!cdev_handle)
return false;
for (i = 0; i < acpi_trip->devices.count; i++) {
acpi_handle handle = acpi_trip->devices.handles[i];
if (handle == cdev_handle)
return true;
}
This only works if the parent device pointer of the cooling device is populated.
ACPI_HANDLE() is a wrapper around ACPI_COMPANION() so your codeOK.Right.IOW, cooling device drivers that create struct thermal_cooling_deviceCorrect, i merely change the way the ACPI thermal zone driver retrieves the
objects representing them are expected to set devdata in those objects
to point to struct acpi_device objects corresponding to their ACPI
handles, but in principle acpi_thermal_should_bind_cdev() might as
well just use the handles themselves. It just needs to know that
there is a cooling driver on the other side of the ACPI handle.
The point is that a cooling device to be bound to an ACPI thermal zone
needs an ACPI handle in the first place to be listed in _PSL or _ALx.
ACPI handle associated with a given cooling device.
I'm not sure about this ATM and see below.I can of course extend thermal_cooling_device_register() to accept a fwnode_handle thatAs we cannot require all cooling devices to store an ACPI device pointer insideCooling devices don't store ACPI device pointers in struct
their drvdata field in order to support ACPI,
thermal_cooling_device objects, ACPI cooling drivers do, and there are
two reasons to do that: (1) to associate a given struct
thermal_cooling_device with an ACPI handle and (2) to let
acpi_thermal_should_bind_cdev() know that the cooling device is
present and functional.
This can be changed to store an ACPI handle in struct
thermal_cooling_device and acpi_thermal_should_bind_cdev() may just
verify that the device is there by itself.
can be used for both ACPI and OF based cooling device identification, if this is what you
prefer.
This patch series would then turn into a cleanup series, focusing on properly addingI'd prefer to do one thing at a time though.
thermal zone devices and cooling devices into the global device hierarchy.
If you want cooling devices to get parents, fine. I'm not
fundamentally opposed to that idea, but let's have clear rules for
device drivers on how to set those parents for the sake of
consistency.
As for the ACPI case, one rule that I want to be followed (as already
stated multiple times) is that a struct acpi_device can only be a
parent of another struct acpi_device. This means that the parent of a
cooling device needs to be a platform device or similar representing
the actual device that will be used for implementing the cooling.
A separate question is how acpi_thermal_should_bind_cdev() will matchSee the example code i pasted above, the whole matching is done using ACPI handles,
cooling devices with the ACPI handles coming from _PSL, _ALx, _TZD
etc. and the rule can be that it will look at the ACPI_COMPANION() of
the parent of the given cooling device.
so we can completely leave ACPI_COMPANION() out of this.
effectively does what I said above.
True, i forgot about that.
OK. When sending the next revision of this patch series, should i also keepOne advantage of using parents is that it will help user space toSorry for the messy discussion, i intended to have two separate patch series. This one was meant toThis is related to the discussion below.See my above explanations for details, drvdata is defined to hold device private data,we must use a more generic approach.I'm not sure what use case you are talking about.
Surely, devices with no representation in the ACPI namespace cannot be
bound to ACPI thermal zones. For devices that have a representation
in the ACPI namespace, storing an ACPI handle in devdata should not be
a problem.
nothing more.
So you want to have generic drivers that may work on ACPI platformsYes, but this would require explicit support for ACPI in every driver that registers cooling devices.I was thinking about using the acpi_handle of the parent device instead of messingIt can be arranged this way, but what's the practical difference?
with the drvdata field, but this only works if the parent device pointer of the
cooling device is populated.
(Cooling devices without a parent device would then be ignored by the ACPI thermal
zone driver, as such cooling devices cannot be linked to ACPI).
Anyone who creates a struct thermal_cooling_device and can set its
parent pointer to a device with an ACPI companion, may as well set its
devdata to point to that companion directly - or to its ACPI handle if
that's preferred.
and on DT platforms to be able to create cooling devices for use with
ACPI thermal zones. Well, had you started the whole discussion with
this statement, it would have been much easier to understand your
point.
simply be a preparation, with the important changes inside the ACPI thermal zone driver being implemented
with the second patch series.
That was also the reason why i send this series as an RFC.
True, i did not think of that. In this case extending thermal_of_cooling_device_register() and friends to acceptUsing the parent device to retrieve the acpi_handle or allowing all drivers to just submit a fwnode_handleIf you go the parents route, this is an important consideration for
of their choice when creating a cooling device will fix this.
the rules on how to set those parents. Namely, they would need to be
set so that the fwnode_handle of the parent could be used for binding
the cooling device to a thermal zone either on ACPI or on DT systems.
Of course, there are also cooling devices whose parents will not have
an fwnode_handle and they would still need to work in this brave new
world.
a generic fwnode_handle instead of a OF-specific device_node would make more sense. Most drivers can simply
pass the result of dev_fwnode() instead of dev->of_node, only those that support multiple cooling device child
nodes would need additional work to also support ACPI.
Basically, thermal_of_get_cooling_spec() could handle the fwnode_handle in the following manner:
if (cooling_spec.np->fwnode != cdev->fwnode)
return false;
And the ACPI thermal zone driver could then simply use ACPI_HANDLE_FWNODE() to retrieve the ACPI handle from
the fwnode_handle (together with a NULL check of course).
If you are OK with this approach, i will forget about the whole parent device stuff for now and focus on extending
(devm_)thermal_of_cooling_device_register(). There are some additional changes needed for reliably associating
cooling devices to ACPI trip points using fwnode handles, but those are not that intrusive.
What do you think?
figure out connections between the abstract cooling devices and the
associated hardware or firmware entities. I think that this is an
important one.
It also doesn't prevent fwnode_handle from being used because the
fwnode_handle may just be stored in the parent. I like this more than
associating fwnode_handles directly with abstract cooling devices.
If the cooling device parent (that is, the provider of the cooling
mechanism used by it) does not have an fwnode_handle, then either it
needs to be driven directly from user space, or the driver creating a
thermal zone device needs to provide a specific .should_bind()
callback that will know what to look for.
the patches for the thermal zone device or should i only keep the patches
concerning the cooling devices?
Thanks,
Armin Wolf