From: Cristian Marussi <cristian.marussi@arm.com>
To: Sudeep Holla <sudeep.holla@arm.com>
Cc: linux-arm-kernel@lists.infradead.org,
Pierre Gondois <Pierre.Gondois@arm.com>
Subject: Re: [PATCH v2] firmware: arm_scmi: Warn if domain frequency multiplier is 0 or rounded off
Date: Fri, 19 Jan 2024 15:26:33 +0000 [thread overview]
Message-ID: <ZaqUqe1r_lYW4fRJ@pluto> (raw)
In-Reply-To: <20240119152338.3047620-1-sudeep.holla@arm.com>
On Fri, Jan 19, 2024 at 03:23:37PM +0000, Sudeep Holla wrote:
> When (sustained_freq_khz * 1000) is less than sustained_perf_level, the
> multiplier will be less than 1 and hence rounded down as 0. Similarly if
> it is not multiple of sustained_perf_level the dom_info->mult_factor will
> contain rounded down value and will end up impacting all the frequency
> calculations done using it.
>
> Add warning if and when the domain frequency multiplier is 0 or rounded
> down so that it gives a clue to get the firmware tables fixed.
>
> Suggested-by: Pierre Gondois <Pierre.Gondois@arm.com>
> Reviewed-by: Pierre Gondois <pierre.gondois@arm.com>
> Reviewed-by: Cristian Marussi <cristian.marussi@arm.com>
> Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>
> ---
LGTM.
Thanks,
Cristian
> drivers/firmware/arm_scmi/perf.c | 19 +++++++++++++++++--
> 1 file changed, 17 insertions(+), 2 deletions(-)
>
> v1->v2:
> - Added comment regarding the requirements on sustained_freq_khz
> and sustained_perf_level obtained from the SCMI firmware
> - Changed pr_warn to dev_warn
>
> diff --git a/drivers/firmware/arm_scmi/perf.c b/drivers/firmware/arm_scmi/perf.c
> index 8ea2a7b3d35d..9fe123e1f3c7 100644
> --- a/drivers/firmware/arm_scmi/perf.c
> +++ b/drivers/firmware/arm_scmi/perf.c
> @@ -270,15 +270,30 @@ scmi_perf_domain_attributes_get(const struct scmi_protocol_handle *ph,
> le32_to_cpu(attr->sustained_freq_khz);
> dom_info->sustained_perf_level =
> le32_to_cpu(attr->sustained_perf_level);
> + /*
> + * sustained_freq_khz = mult_factor * sustained_perf_level
> + * mult_factor must be non zero positive integer(not fraction)
> + */
> if (!dom_info->sustained_freq_khz ||
> !dom_info->sustained_perf_level ||
> - dom_info->level_indexing_mode)
> + dom_info->level_indexing_mode) {
> /* CPUFreq converts to kHz, hence default 1000 */
> dom_info->mult_factor = 1000;
> - else
> + } else {
> dom_info->mult_factor =
> (dom_info->sustained_freq_khz * 1000UL)
> / dom_info->sustained_perf_level;
> + if ((dom_info->sustained_freq_khz * 1000UL) %
> + dom_info->sustained_perf_level)
> + dev_warn(ph->dev,
> + "multiplier for domain %d rounded\n",
> + dom_info->id);
> + }
> + if (!dom_info->mult_factor)
> + dev_warn(ph->dev,
> + "Wrong sustained perf/frequency(domain %d)\n",
> + dom_info->id);
> +
> strscpy(dom_info->info.name, attr->name,
> SCMI_SHORT_NAME_MAX_SIZE);
> }
> --
> 2.43.0
>
_______________________________________________
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:[~2024-01-19 15:27 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-01-19 11:10 [PATCH] firmware: arm_scmi: Warn if domain frequency multiplier is 0 or rounded off Sudeep Holla
2024-01-19 14:05 ` Pierre Gondois
2024-01-19 14:43 ` Sudeep Holla
2024-01-19 14:06 ` Cristian Marussi
2024-01-19 14:45 ` Sudeep Holla
2024-01-19 15:23 ` [PATCH v2] " Sudeep Holla
2024-01-19 15:26 ` Cristian Marussi [this message]
2024-02-22 7:50 ` Sudeep Holla
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=ZaqUqe1r_lYW4fRJ@pluto \
--to=cristian.marussi@arm.com \
--cc=Pierre.Gondois@arm.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=sudeep.holla@arm.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 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.