From: Matthias Kaehlcke <mka@chromium.org>
To: Doug Anderson <dianders@chromium.org>
Cc: Heiko Stuebner <heiko@sntech.de>,
Rob Herring <robh+dt@kernel.org>,
Mark Rutland <mark.rutland@arm.com>,
Linux ARM <linux-arm-kernel@lists.infradead.org>,
"open list:ARM/Rockchip SoC..."
<linux-rockchip@lists.infradead.org>,
devicetree@vger.kernel.org, LKML <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH 2/2] ARM: dts: rockchip: Configure the GPU thermal zone for mickey
Date: Mon, 20 May 2019 14:21:02 -0700 [thread overview]
Message-ID: <20190520212102.GH40515@google.com> (raw)
In-Reply-To: <CAD=FV=Vr2thgHYTH_khqka27_SdGcSEShpSRp+u2E=O5eyxLMQ@mail.gmail.com>
On Mon, May 20, 2019 at 01:21:33PM -0700, Doug Anderson wrote:
> Hi,
>
> On Mon, May 20, 2019 at 10:01 AM Matthias Kaehlcke <mka@chromium.org> wrote:
> >
> > mickey crams a lot of hardware into a tiny package, which requires
> > more aggressive thermal throttling than for devices with a larger
> > footprint. Configure the GPU thermal zone to throttle the GPU
> > progressively at temperatures >= 60°C. Heat dissipated by the
> > CPUs also affects the GPU temperature, hence we cap the CPU
> > frequency to 1.4 GHz for temperatures above 65°C. Further throttling
> > of the CPUs may be performed by the CPU thermal zone.
> >
> > The configuration matches that of the downstram Chrome OS 3.14
>
> s/downstram/downstream
ack
>
> > + cooling-maps {
> > + /* After 1st level throttle the GPU down to as low as 400 MHz */
> > + gpu_warmish_limit_gpu {
> > + trip = <&gpu_alert_warmish>;
> > + cooling-device = <&gpu THERMAL_NO_LIMIT 1>;
>
> As per my comment in patch #1, you are probably ending up throttling
> to 500 MHz, not 400 MHz. Below will all have similar problems unless
> we actually delete the 500 MHz operating point.
Thanks for pointing that out. As per disussion on patch #1 we'll
disable the 500 MHz OPP to stay in sync with downstream and avoid
problems in case someone decides to re-purpose NPLL.
> > + };
> > +
> > + /*
> > + * Slightly after we throttle the GPU, we'll also make sure that
> > + * the CPU can't go faster than 1.4 GHz. Note that we won't
> > + * throttle the CPU lower than 1.4 GHz due to GPU heat--we'll
> > + * let the CPU do the rest itself.
> > + */
> > + gpu_warm_limit_cpu {
> > + trip = <&gpu_alert_warm>;
> > + cooling-device = <&cpu0 4 4>;
>
> Shouldn't you list cpu1, cpu2, and cpu3 too? That'd match what
> upstream did elsewhere in this file?
ack, should have noticed, I 'yelled' at others before for not doing this ...
WARNING: multiple messages have this Message-ID (diff)
From: Matthias Kaehlcke <mka@chromium.org>
To: Doug Anderson <dianders@chromium.org>
Cc: Mark Rutland <mark.rutland@arm.com>,
devicetree@vger.kernel.org, Heiko Stuebner <heiko@sntech.de>,
LKML <linux-kernel@vger.kernel.org>,
"open list:ARM/Rockchip SoC..."
<linux-rockchip@lists.infradead.org>,
Rob Herring <robh+dt@kernel.org>,
Linux ARM <linux-arm-kernel@lists.infradead.org>
Subject: Re: [PATCH 2/2] ARM: dts: rockchip: Configure the GPU thermal zone for mickey
Date: Mon, 20 May 2019 14:21:02 -0700 [thread overview]
Message-ID: <20190520212102.GH40515@google.com> (raw)
In-Reply-To: <CAD=FV=Vr2thgHYTH_khqka27_SdGcSEShpSRp+u2E=O5eyxLMQ@mail.gmail.com>
On Mon, May 20, 2019 at 01:21:33PM -0700, Doug Anderson wrote:
> Hi,
>
> On Mon, May 20, 2019 at 10:01 AM Matthias Kaehlcke <mka@chromium.org> wrote:
> >
> > mickey crams a lot of hardware into a tiny package, which requires
> > more aggressive thermal throttling than for devices with a larger
> > footprint. Configure the GPU thermal zone to throttle the GPU
> > progressively at temperatures >= 60°C. Heat dissipated by the
> > CPUs also affects the GPU temperature, hence we cap the CPU
> > frequency to 1.4 GHz for temperatures above 65°C. Further throttling
> > of the CPUs may be performed by the CPU thermal zone.
> >
> > The configuration matches that of the downstram Chrome OS 3.14
>
> s/downstram/downstream
ack
>
> > + cooling-maps {
> > + /* After 1st level throttle the GPU down to as low as 400 MHz */
> > + gpu_warmish_limit_gpu {
> > + trip = <&gpu_alert_warmish>;
> > + cooling-device = <&gpu THERMAL_NO_LIMIT 1>;
>
> As per my comment in patch #1, you are probably ending up throttling
> to 500 MHz, not 400 MHz. Below will all have similar problems unless
> we actually delete the 500 MHz operating point.
Thanks for pointing that out. As per disussion on patch #1 we'll
disable the 500 MHz OPP to stay in sync with downstream and avoid
problems in case someone decides to re-purpose NPLL.
> > + };
> > +
> > + /*
> > + * Slightly after we throttle the GPU, we'll also make sure that
> > + * the CPU can't go faster than 1.4 GHz. Note that we won't
> > + * throttle the CPU lower than 1.4 GHz due to GPU heat--we'll
> > + * let the CPU do the rest itself.
> > + */
> > + gpu_warm_limit_cpu {
> > + trip = <&gpu_alert_warm>;
> > + cooling-device = <&cpu0 4 4>;
>
> Shouldn't you list cpu1, cpu2, and cpu3 too? That'd match what
> upstream did elsewhere in this file?
ack, should have noticed, I 'yelled' at others before for not doing this ...
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
next prev parent reply other threads:[~2019-05-20 21:21 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-05-20 17:01 [PATCH 1/2] ARM: dts: rockchip: Limit GPU frequency on veyron mickey to 300 MHz when the CPU gets very hot Matthias Kaehlcke
2019-05-20 17:01 ` Matthias Kaehlcke
2019-05-20 17:01 ` [PATCH 2/2] ARM: dts: rockchip: Configure the GPU thermal zone for mickey Matthias Kaehlcke
2019-05-20 17:01 ` Matthias Kaehlcke
2019-05-20 20:21 ` Doug Anderson
2019-05-20 20:21 ` Doug Anderson
2019-05-20 21:21 ` Matthias Kaehlcke [this message]
2019-05-20 21:21 ` Matthias Kaehlcke
2019-05-20 20:16 ` [PATCH 1/2] ARM: dts: rockchip: Limit GPU frequency on veyron mickey to 300 MHz when the CPU gets very hot Doug Anderson
2019-05-20 20:16 ` Doug Anderson
2019-05-20 20:28 ` Heiko Stübner
2019-05-20 20:28 ` Heiko Stübner
2019-05-20 21:12 ` Matthias Kaehlcke
2019-05-20 21:12 ` Matthias Kaehlcke
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=20190520212102.GH40515@google.com \
--to=mka@chromium.org \
--cc=devicetree@vger.kernel.org \
--cc=dianders@chromium.org \
--cc=heiko@sntech.de \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-rockchip@lists.infradead.org \
--cc=mark.rutland@arm.com \
--cc=robh+dt@kernel.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.