From: Lukasz Luba <lukasz.luba@arm.com>
To: Hongyan Xia <hongyan.xia2@arm.com>
Cc: dietmar.eggemann@arm.com, linux-pm@vger.kernel.org,
linux-kernel@vger.kernel.org,
linux-arm-kernel@lists.infradead.org, sudeep.holla@arm.com,
cristian.marussi@arm.com, linux-samsung-soc@vger.kernel.org,
rafael@kernel.org, viresh.kumar@linaro.org,
quic_sibis@quicinc.com
Subject: Re: [PATCH 1/2] PM: EM: Add min/max available performance state limits
Date: Mon, 22 Apr 2024 08:24:31 +0100 [thread overview]
Message-ID: <ff527b90-416c-4fc0-8b03-b1e2968e71dd@arm.com> (raw)
In-Reply-To: <08bff6ab-dcdc-42b6-b8ad-5938f0119385@arm.com>
On 4/9/24 15:47, Hongyan Xia wrote:
> On 03/04/2024 17:23, Lukasz Luba wrote:
>> [...]
>>
>> diff --git a/kernel/power/energy_model.c b/kernel/power/energy_model.c
>> index 927cc55ba0b3d..1a8b394251cb2 100644
>> --- a/kernel/power/energy_model.c
>> +++ b/kernel/power/energy_model.c
>> @@ -628,6 +628,8 @@ int em_dev_register_perf_domain(struct device
>> *dev, unsigned int nr_states,
>> goto unlock;
>> dev->em_pd->flags |= flags;
>> + dev->em_pd->min_ps = 0;
>> + dev->em_pd->max_ps = nr_states - 1;
>> em_cpufreq_update_efficiencies(dev, dev->em_pd->em_table->state);
>> @@ -856,3 +858,49 @@ int em_dev_update_chip_binning(struct device *dev)
>> return em_recalc_and_update(dev, pd, em_table);
>> }
>> EXPORT_SYMBOL_GPL(em_dev_update_chip_binning);
>> +
>> +
>> +/**
>> + * em_update_performance_limits() - Update Energy Model with performance
>> + * limits information.
>> + * @pd : Performance Domain with EM that has to be updated.
>> + * @freq_min_khz : New minimum allowed frequency for this device.
>> + * @freq_max_khz : New maximum allowed frequency for this device.
>> + *
>> + * This function allows to update the EM with information about
>> available
>> + * performance levels. It takes the minimum and maximum frequency in kHz
>> + * and does internal translation to performance levels.
>> + * Returns 0 on success or -EINVAL when failed.
>> + */
>> +int em_update_performance_limits(struct em_perf_domain *pd,
>> + unsigned long freq_min_khz, unsigned long freq_max_khz)
>> +{
>> + struct em_perf_state *table;
>> + int min_ps = -1;
>> + int max_ps = -1;
>> + int i;
>> +
>> + if (!pd)
>> + return -EINVAL;
>> +
>> + rcu_read_lock();
>> + table = em_perf_state_from_pd(pd);
>> +
>> + for (i = 0; i < pd->nr_perf_states; i++) {
>> + if (freq_min_khz == table[i].frequency)
>> + min_ps = i;
>> + if (freq_max_khz == table[i].frequency)
>> + max_ps = i;
>> + }
>> + rcu_read_unlock();
>> +
>> + /* Only update when both are found and sane */
>> + if (min_ps < 0 || max_ps < 0 || max_ps < min_ps)
>> + return -EINVAL;
>> +
>> + pd->min_ps = min_ps;
>> + pd->max_ps = max_ps;
>
> Are we sure we are protected against multiple simultaneous updates? Or
> is this a concern for the caller?
>
> The rest of the patch LGTM.
>
I've tried to make it running fast for only one caller. Although,
if someone would like to use it from many places then locking should be
handled under in function (and I will use the existing mutex for it).
I'll change it. Thanks for the review.
next prev parent reply other threads:[~2024-04-22 7:24 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-04-03 16:23 [PATCH 0/2] Update Energy Model with perfromance limits Lukasz Luba
2024-04-03 16:23 ` [PATCH 1/2] PM: EM: Add min/max available performance state limits Lukasz Luba
2024-04-09 14:47 ` Hongyan Xia
2024-04-22 7:24 ` Lukasz Luba [this message]
2024-04-22 7:46 ` Dietmar Eggemann
2024-04-03 16:23 ` [PATCH 2/2] cpufreq: scmi: Update Energy Model with allowed performance limits Lukasz Luba
2024-04-22 13:11 ` Dietmar Eggemann
2024-04-22 13:55 ` Lukasz Luba
2024-05-01 9:26 ` Cristian Marussi
2024-04-05 9:56 ` [PATCH 0/2] Update Energy Model with perfromance limits Jonathan Cameron
2024-04-05 10:11 ` Lukasz Luba
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=ff527b90-416c-4fc0-8b03-b1e2968e71dd@arm.com \
--to=lukasz.luba@arm.com \
--cc=cristian.marussi@arm.com \
--cc=dietmar.eggemann@arm.com \
--cc=hongyan.xia2@arm.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=linux-samsung-soc@vger.kernel.org \
--cc=quic_sibis@quicinc.com \
--cc=rafael@kernel.org \
--cc=sudeep.holla@arm.com \
--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
all inboxes | Powered by JetHome®