From: Eduardo Valentin <edubezval@gmail.com>
To: Javi Merino <javi@e104805.cambridge.arm.com>
Cc: "linux-pm@vger.kernel.org" <linux-pm@vger.kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
Punit Agrawal <Punit.Agrawal@arm.com>,
Zhang Rui <rui.zhang@intel.com>,
Eduardo Valentin <eduardo.valentin@ti.com>
Subject: Re: [PATCH] thermal: document struct thermal_zone_device and thermal_governor
Date: Fri, 23 May 2014 09:44:51 -0400 [thread overview]
Message-ID: <20140523134451.GA3399@developer> (raw)
In-Reply-To: <20140523093552.GB4723@e104805>
Hello Javi,
On Fri, May 23, 2014 at 10:35:52AM +0100, Javi Merino wrote:
> On Thu, May 22, 2014 at 04:27:30PM +0100, Eduardo Valentin wrote:
> > Hello Javi,
> >
> > On Fri, May 16, 2014 at 12:16:08PM +0100, Javi Merino wrote:
> >
> > > Document struct struct thermal_zone_device and struct thermal_governor
> > > fields and their use by the thermal framework code.
> > >
> > > Cc: Zhang Rui <rui.zhang@intel.com>
> > > Cc: Eduardo Valentin <eduardo.valentin@ti.com>
> > > Signed-off-by: Javi Merino <javi.merino@arm.com>
> > >
> > > ---
> > >
> > > Hi linux-pm,
> > >
> > > I have some patches that add new fields to these structures but I
> > > don't have a good place to describe those fields as these structs are
> > > mostly undocumented so I thought I'd document them.
> > >
> > > I'm unsure about some of the descriptions, specially for passive and
> > > forced_passive so please review them.
> > >
> > > include/linux/thermal.h | 44 ++++++++++++++++++++++++++++++++++++++++++--
> > > 1 file changed, 42 insertions(+), 2 deletions(-)
> > >
> > > diff --git a/include/linux/thermal.h b/include/linux/thermal.h
> > > index f7e11c7ea7d9..af928c667dba 100644
> > > --- a/include/linux/thermal.h
> > > +++ b/include/linux/thermal.h
> > > @@ -158,6 +158,40 @@ struct thermal_attr {
> > > char name[THERMAL_NAME_LENGTH];
> > > };
> > >
> > > +/**
> > > + * struct thermal_zone_device - structure for a thermal zone
> > > + * @id: unique id number for each thermal zone
> > > + * @type: the thermal zone device type
> > > + * @device: struct device for this thermal zone
> > > + * @trip_temp_attrs: attributes for trip points for sysfs: trip temperature
> > > + * @trip_type_attrs: attributes for trip points for sysfs: trip type
> > > + * @trip_hyst_attrs: attributes for trip points for sysfs: trip hysteresis
> > > + * @devdata: private pointer for device private data
> > > + * @trips: number of trip points the thermal zone supports
> > > + * @passive_delay: number of milliseconds to wait between polls when
> > > + * performing passive cooling. Only used by the step-wise
> >
> > I don't think this parameter is specific to step-wise.
>
> It's only used by step-wise, all the other governors always poll at
> polling_delay.
Agreed, but the fact we have only one governor using it, it does not
imply it is a specific concept for that governor. The concept can and
should be reused by other governors. Idea is simple, you have different
temporal / thermal evolution when idle, when monitoring passive cooling actions. And this fact won't change, no matter the policy you apply.
>
> While we are at it, can we change the name so that it's more generic and
> can be reused by other governors? Something like idle_poll and
> active_poll? I'm open to suggestions for a better name.
>
active_poll means when cooling devices are active? which kind of cooling
devices?
> > > + * governor
> > > + * @polling_delay: number of milliseconds to wait between polls when
> > > + * checking whether trip points have been crossed (0 for
> > > + * interrupt driven systems)
> > > + * @temperature: current temperature. This is only for core code,
> > > + * drivers should use thermal_zone_get_temp() to get the
> > > + * current temperature
> > > + * @last_temperature: previous temperature read
> > > + * @emul_temperature: emulated temperature when using CONFIG_THERMAL_EMULATION
> > > + * @passive: step-wise specific parameter. 1 if you've crossed a passive
> > > + * trip point, 0 otherwise
> >
> > ditto.
>
> ditto, no other governor changes passive and it can't be changed from
> sysfs.
>
> > > + * @forced_passive: step-wise specific parameter. If > 0, temperature at
> > > + * which to switch on all cpufreq cooling devices.
> >
> > ditto.
>
> Again, this is step-wise specific. You can change it from sysfs, but
> the other governors (userspace and fair-share) will happily ignore
> you.
>
> > Also, governors are not aware of specific cooling devices.
>
> I didn't say that governors are aware of specific cooling devices. I
> said that if forced_passive is greater than 0, then only cpufreq
> cooling devices are switched on. It's wrong, it's not cpufreq cooling
> devices, it's ACPI Processor cooling devices.
>
I mean, we don't have only cpufreq cooling devices.
> Cheers,
> Javi
next prev parent reply other threads:[~2014-05-23 14:21 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-05-16 11:16 [PATCH] thermal: document struct thermal_zone_device and thermal_governor Javi Merino
2014-05-22 15:27 ` Eduardo Valentin
[not found] ` <20140523093552.GB4723@e104805>
2014-05-23 13:44 ` Eduardo Valentin [this message]
2014-05-23 16:20 ` Javi Merino
-- strict thread matches above, loose matches on Subject: below --
2014-06-02 17:25 Javi Merino
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20140523134451.GA3399@developer \
--to=edubezval@gmail.com \
--cc=Punit.Agrawal@arm.com \
--cc=eduardo.valentin@ti.com \
--cc=javi@e104805.cambridge.arm.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=rui.zhang@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox