From: Shilpasri G Bhat <shilpa.bhat@linux.vnet.ibm.com>
To: Viresh Kumar <viresh.kumar@linaro.org>
Cc: "linuxppc-dev@ozlabs.org" <linuxppc-dev@ozlabs.org>,
"Rafael J. Wysocki" <rjw@rjwysocki.net>,
Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
"linux-pm@vger.kernel.org" <linux-pm@vger.kernel.org>
Subject: Re: [PATCH 2/2] cpufreq: powernv: Register for OCC related opal_message notification
Date: Tue, 28 Apr 2015 11:06:17 +0530 [thread overview]
Message-ID: <553F1C51.4060901@linux.vnet.ibm.com> (raw)
In-Reply-To: <CAKohpo=8m=PAof-AF2AQ+rMu-0bF8CvGywb-YaN=u3sJXjLvnw@mail.gmail.com>
Hi Viresh,
On 04/27/2015 10:02 AM, Viresh Kumar wrote:
> On 22 April 2015 at 22:34, Shilpasri G Bhat
> <shilpa.bhat@linux.vnet.ibm.com> wrote:
>> diff --git a/drivers/cpufreq/powernv-cpufreq.c b/drivers/cpufreq/powernv-cpufreq.c
>
>> +static char throttle_reason[6][50] = { "No throttling",
>
> Don't need to mention 6 here.
>
> And the max length you need right now is 27, so maybe s/50/30 ?
>
> Also, start 'No Throttling' in a new line, like below.
Will do.
>
>> + "Power Cap",
>> + "Processor Over Temperature",
>> + "Power Supply Failure",
>> + "OverCurrent",
>
> s/OverCurrent/Over Current/ ?
Okay.
>
>> + "OCC Reset"
>> + };
>> +
>> +static int powernv_cpufreq_occ_msg(struct notifier_block *nb,
>> + unsigned long msg_type, void *msg)
>> +{
>> + struct opal_msg *occ_msg = msg;
>> + uint64_t token;
>> + uint64_t chip_id, reason;
>> +
>> + if (msg_type != OPAL_MSG_OCC)
>> + return 0;
>
> Blank line here.
Okay
>
>> + token = be64_to_cpu(occ_msg->params[0]);
>
> Here as well..
>
>> + switch (token) {
>> + case 0:
>> + occ_reset = true;
>> + /*
>> + * powernv_cpufreq_throttle_check() is called in
>> + * target() callback which can detect the throttle state
>> + * for governors like ondemand.
>> + * But static governors will not call target() often thus
>> + * report throttling here.
>> + */
>
> Now, do I understand correctly that this notifier will be called as
> soon as we switch throttling state ?
>
> If yes, then do we still need the throttle_check() routine you added
> earlier ? Maybe not.
We cannot remove throttle_check() routine for the following reasons:
1) To report old firmware bugs which do not restore frequency control to host
after an OCC reset.
2) In BMC based boxes if OCC crashes currently firmware will not send 'reset'
and 'load' messages, in such cases throttle_check() will be sufficient to
monitor a throttled state caused by 'reset'.
3) Throttle reporting in old firmwares which do not have this notification.
>
>> + if (!throttled) {
>> + throttled = true;
>> + pr_crit("CPU Frequency is throttled\n");
>> + }
>> + pr_info("OCC in Reset\n");
>> + break;
>> + case 1:
>> + pr_info("OCC is Loaded\n");
>> + break;
>> + case 2:
>> + chip_id = be64_to_cpu(occ_msg->params[1]);
>> + reason = be64_to_cpu(occ_msg->params[2]);
>
> Blank line here.
Okay
>
>> + if (occ_reset) {
>> + occ_reset = false;
>> + throttled = false;
>> + pr_info("OCC is Active\n");
>> + /* Sanity check for static governors */
>> + powernv_cpufreq_throttle_check(smp_processor_id());
>> + } else if (reason) {
>> + throttled = true;
>> + pr_info("Pmax reduced due to %s on chip %x\n",
>> + throttle_reason[reason], (int)chip_id);
>> + } else {
>> + throttled = false;
>> + pr_info("%s on chip %x\n",
>> + throttle_reason[reason], (int)chip_id);
>> + }
>
> Run checkpatch with --strict option, and you will see some warnings.
Okay will do.
Thanks and Regards,
Shilpa
next prev parent reply other threads:[~2015-04-28 5:37 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-04-22 17:04 [PATCH 1/2] powerpc/powernv: Add definition of OPAL_MSG_OCC message type Shilpasri G Bhat
2015-04-22 17:04 ` [PATCH 2/2] cpufreq: powernv: Register for OCC related opal_message notification Shilpasri G Bhat
2015-04-23 11:58 ` Preeti U Murthy
2015-04-28 5:40 ` Shilpasri G Bhat
2015-04-27 4:32 ` Viresh Kumar
2015-04-28 5:36 ` Shilpasri G Bhat [this message]
2015-04-23 11:24 ` [PATCH 1/2] powerpc/powernv: Add definition of OPAL_MSG_OCC message type Preeti U Murthy
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=553F1C51.4060901@linux.vnet.ibm.com \
--to=shilpa.bhat@linux.vnet.ibm.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=linuxppc-dev@ozlabs.org \
--cc=rjw@rjwysocki.net \
--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).