From: Matthias Kaehlcke <mka@chromium.org>
To: Brian Norris <briannorris@chromium.org>
Cc: MyungJoo Ham <myungjoo.ham@samsung.com>,
Kyungmin Park <kyungmin.park@samsung.com>,
Chanwoo Choi <cw00.choi@samsung.com>,
Arnd Bergmann <arnd@arndb.de>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
Rob Herring <robh+dt@kernel.org>,
Mark Rutland <mark.rutland@arm.com>,
linux-pm@vger.kernel.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org,
Douglas Anderson <dianders@chromium.org>,
Enric Balletbo i Serra <enric.balletbo@collabora.com>,
"Rafael J . Wysocki" <rjw@rjwysocki.net>,
Viresh Kumar <viresh.kumar@linaro.org>,
Lee Jones <lee.jones@linaro.org>,
Benson Leung <bleung@chromium.org>,
Olof Johansson <olof@lixom.net>
Subject: Re: [PATCH v4 10/12] misc: throttler: Add core support for non-thermal throttling
Date: Fri, 22 Jun 2018 18:31:43 -0700 [thread overview]
Message-ID: <20180623013143.GC129942@google.com> (raw)
In-Reply-To: <20180622020332.GA180395@ban.mtv.corp.google.com>
On Thu, Jun 21, 2018 at 07:04:33PM -0700, Brian Norris wrote:
> Hi,
>
> A few more things I noticed; probably my last thoughts on this
> particular patch; and I think I reviewed the rest:
>
> On Wed, Jun 20, 2018 at 06:52:35PM -0700, Matthias Kaehlcke wrote:
> > The purpose of the throttler is to provide support for non-thermal
> > throttling. Throttling is triggered by external event, e.g. the
> > detection of a high battery discharge current, close to the OCP limit
> > of the battery. The throttler is only in charge of the throttling, not
> > the monitoring, which is done by another (possibly platform specific)
> > driver.
> >
> > Signed-off-by: Matthias Kaehlcke <mka@chromium.org>
> > ---
> > Changes in v4:
> > - removed OOM logs
> > - "does have no" => "has no" in log message
> > - changed 'level' to unsigned int
> > - hold mutex in throttler_set_level() when checking if level has changed
> > - removed debugfs dir in throttler_teardown()
> > - consolidated update of all devfreq devices in thr_update_devfreq()
> > - added field 'shutting_down' to struct throttler
> > - refactored teardown to avoid deadlocks
> > - minor change in introductory comment
> >
> > Changes in v3:
> > - Kconfig: don't select CPU_FREQ and PM_DEVFREQ
> > - added CONFIG_THROTTLER_DEBUG option
> > - changed 'level' sysfs attribute to debugfs
> > - introduced thr_<level> macros for logging
> > - added debug logs
> > - added field clamp_freq to struct cpufreq_thrdev and devfreq_thrdev
> > to keep track of the current frequency limits and avoid spammy logs
> >
> > Changes in v2:
> > - completely reworked the driver to support configuration through OPPs, which
> > requires a more dynamic handling
> > - added sysfs attribute to set the level for debugging and testing
> > - Makefile: depend on Kconfig option to traverse throttler directory
> > - Kconfig: removed 'default n'
> > - added SPDX line instead of license boiler-plate
> > - added entry to MAINTAINERS file
> > ---
> > MAINTAINERS | 7 +
> > drivers/misc/Kconfig | 1 +
> > drivers/misc/Makefile | 1 +
> > drivers/misc/throttler/Kconfig | 23 ++
> > drivers/misc/throttler/Makefile | 1 +
> > drivers/misc/throttler/core.c | 705 ++++++++++++++++++++++++++++++++
> > include/linux/throttler.h | 21 +
> > 7 files changed, 759 insertions(+)
> > create mode 100644 drivers/misc/throttler/Kconfig
> > create mode 100644 drivers/misc/throttler/Makefile
> > create mode 100644 drivers/misc/throttler/core.c
> > create mode 100644 include/linux/throttler.h
> >
>
> ...
>
> > diff --git a/drivers/misc/throttler/core.c b/drivers/misc/throttler/core.c
> > new file mode 100644
> > index 000000000000..305964cfb0b7
> > --- /dev/null
> > +++ b/drivers/misc/throttler/core.c
> > @@ -0,0 +1,705 @@
> > +// SPDX-License-Identifier: GPL-2.0
>
> ...
>
> > +
> > +static int thr_handle_devfreq_event(struct notifier_block *nb,
> > + unsigned long event, void *data);
> > +
> > +static unsigned long thr_get_throttling_freq(struct thr_freq_table *ft,
> > + unsigned int level)
> > +{
> > + if (level == 0) {
> > + WARN(true, "level == 0");
>
> It's possible to get here, if the level gets changed while you're
> handling a devfreq event. I'd think you can drop the WARN() entirely and
> just make sure to handle this case properly.
Right, I didn't take into account here that level could change. Will
adapt.
> > + return ULONG_MAX;
> > + }
> > +
> > + if (level <= ft->n_entries)
> > + return ft->freqs[level - 1];
> > + else
> > + return ft->freqs[ft->n_entries - 1];
> > +}
> > +
>
> ...
>
> > +static int thr_handle_cpufreq_event(struct notifier_block *nb,
> > + unsigned long event, void *data)
> > +{
> > + struct throttler *thr =
> > + container_of(nb, struct throttler, cpufreq.nb);
> > + struct cpufreq_policy *policy = data;
> > + struct cpufreq_thrdev *cftd;
> > +
> > + if ((event != CPUFREQ_ADJUST) || thr->shutting_down)
> > + return 0;
> > +
> > + mutex_lock(&thr->lock);
> > +
> > + if (cpumask_test_cpu(policy->cpu, &thr->cpufreq.cm_ignore))
> > + goto out;
> > +
> > + if (!cpumask_test_cpu(policy->cpu, &thr->cpufreq.cm_initialized)) {
> > + thr_cpufreq_init(thr, policy->cpu);
> > +
> > + if (cpumask_test_cpu(policy->cpu, &thr->cpufreq.cm_ignore))
> > + goto out;
> > +
> > + thr_dbg(thr, "CPU%d is used for throttling\n", policy->cpu);
> > + }
> > +
> > + /*
> > + * Can't do this check earlier, otherwise we might miss CPU policies
> > + * that are added after setup().
> > + */
> > + if (thr->level == 0) {
> > + list_for_each_entry(cftd, &thr->cpufreq.list, node) {
> > + if (cftd->cpu != policy->cpu)
> > + continue;
> > +
> > + if (cftd->clamp_freq != 0) {
> > + thr_dbg(thr, "unthrottling CPU%d\n", cftd->cpu);
> > + cftd->clamp_freq = 0;
> > + }
>
> Take it or leave it, but this entire 'level == 0' loop looks like it
> could be easily merged into the next (very similar) loop, and avoid the
> 'goto'.
Merging the two loops sounds good.
> > + }
> > +
> > + goto out;
> > + }
> > +
> > + list_for_each_entry(cftd, &thr->cpufreq.list, node) {
> > + unsigned long clamp_freq;
> > +
> > + if (cftd->cpu != policy->cpu)
> > + continue;
> > +
> > + clamp_freq = thr_get_throttling_freq(&cftd->freq_table,
> > + thr->level) / 1000;
> > + if (cftd->clamp_freq != clamp_freq) {
> > + thr_dbg(thr, "throttling CPU%d to %lu MHz\n", cftd->cpu,
> > + clamp_freq / 1000);
> > + cftd->clamp_freq = clamp_freq;
> > + }
> > +
> > + if (clamp_freq < policy->max)
> > + cpufreq_verify_within_limits(policy, 0, clamp_freq);
> > + }
> > +
> > +out:
> > + mutex_unlock(&thr->lock);
> > +
> > + return NOTIFY_DONE;
> > +}
> > +
> > +/*
> > + * Notifier called by devfreq. Can't acquire thr->lock since it might
> > + * already be held by throttler_set_level(). It isn't necessary to
> > + * acquire the lock for the following reasons:
> > + *
> > + * Only the devfreq_thrdev and thr->level are accessed in this function.
> > + * The devfreq device won't go away (or change) during the execution of
> > + * this function, since we are called from the devfreq core. Theoretically
> > + * thr->level could change and we'd apply an outdated setting, however in
> > + * this case the function would run again shortly after and apply the
> > + * correct value.
> > + */
> > +static int thr_handle_devfreq_event(struct notifier_block *nb,
> > + unsigned long event, void *data)
> > +{
> > + struct devfreq_thrdev *dftd =
> > + container_of(nb, struct devfreq_thrdev, nb);
> > + struct throttler *thr = dftd->thr;
> > + struct devfreq_policy *policy = data;
> > + unsigned long clamp_freq;
> > +
> > + if ((event != DEVFREQ_ADJUST) || thr->shutting_down)
> > + return NOTIFY_DONE;
> > +
> > + if (thr->level == 0) {
> > + if (dftd->clamp_freq != 0) {
> > + thr_dbg(thr, "unthrottling '%s'\n",
> > + dev_name(&dftd->devfreq->dev));
> > + dftd->clamp_freq = 0;
> > + }
> > +
> > + return NOTIFY_DONE;
> > + }
> > +
>
> Given that the level can change in between the last reading (thr->level
> == 0) and here...it seems like it would be better to really only read
> the level once, and ensure that the same logic can handle both zero and
> non-zero levels. e.g, you could try READ_ONCE(thr->level) and stash the
> value in a local?
Ack
> And you could probably eliminate the entire 'if'
> above, and just have a special case for 'clamp_freq == UINT_MAX'
> following here.
It might end up being a line shorter or so, but I'm not convinced it
would improve readability. I'd prefer to keep it as is.
Thanks
Matthias
next prev parent reply other threads:[~2018-06-23 1:31 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-06-21 1:52 [PATCH v4 00/12] Add throttler driver for non-thermal throttling Matthias Kaehlcke
2018-06-21 1:52 ` [PATCH v4 01/12] PM / devfreq: Init user limits from OPP limits, not viceversa Matthias Kaehlcke
2018-06-21 1:52 ` [PATCH v4 02/12] PM / devfreq: Fix handling of min/max_freq == 0 Matthias Kaehlcke
2018-06-21 1:52 ` [PATCH v4 03/12] PM / devfreq: Don't adjust to user limits in governors Matthias Kaehlcke
2018-06-21 1:52 ` [PATCH v4 04/12] PM / devfreq: Add struct devfreq_policy Matthias Kaehlcke
2018-06-21 1:52 ` [PATCH v4 05/12] PM / devfreq: Add support for policy notifiers Matthias Kaehlcke
2018-06-21 1:52 ` [PATCH v4 06/12] PM / devfreq: Make update_devfreq() public Matthias Kaehlcke
2018-06-21 1:52 ` [PATCH v4 07/12] PM / devfreq: export devfreq_class Matthias Kaehlcke
2018-06-21 1:52 ` [PATCH v4 08/12] cpufreq: Add stub for cpufreq_update_policy() Matthias Kaehlcke
2018-06-21 1:52 ` [PATCH v4 09/12] dt-bindings: PM / OPP: add opp-throttlers property Matthias Kaehlcke
2018-06-25 15:33 ` Rob Herring
2018-06-25 18:50 ` Matthias Kaehlcke
2018-06-25 20:03 ` Matthias Kaehlcke
2018-06-26 15:49 ` Rob Herring
2018-06-26 18:11 ` Matthias Kaehlcke
2018-06-21 1:52 ` [PATCH v4 10/12] misc: throttler: Add core support for non-thermal throttling Matthias Kaehlcke
2018-06-22 2:04 ` Brian Norris
2018-06-23 1:31 ` Matthias Kaehlcke [this message]
2018-06-21 1:52 ` [PATCH v4 11/12] misc: throttler: Add Chrome OS EC throttler Matthias Kaehlcke
2018-06-21 1:52 ` [PATCH v4 12/12] mfd: cros_ec: Add throttler sub-device Matthias Kaehlcke
2018-06-22 2:06 ` Brian Norris
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=20180623013143.GC129942@google.com \
--to=mka@chromium.org \
--cc=arnd@arndb.de \
--cc=bleung@chromium.org \
--cc=briannorris@chromium.org \
--cc=cw00.choi@samsung.com \
--cc=devicetree@vger.kernel.org \
--cc=dianders@chromium.org \
--cc=enric.balletbo@collabora.com \
--cc=gregkh@linuxfoundation.org \
--cc=kyungmin.park@samsung.com \
--cc=lee.jones@linaro.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=mark.rutland@arm.com \
--cc=myungjoo.ham@samsung.com \
--cc=olof@lixom.net \
--cc=rjw@rjwysocki.net \
--cc=robh+dt@kernel.org \
--cc=viresh.kumar@linaro.org \
/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;
as well as URLs for NNTP newsgroup(s).