linux-pm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Xiongfeng Wang <wangxiongfeng2@huawei.com>
To: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Cc: <viresh.kumar@linaro.org>, <Souvik.Chakravarty@arm.com>,
	<Thanu.Rangarajan@arm.com>, <Sudeep.Holla@arm.com>,
	<guohanjun@huawei.com>, <john.garry@huawei.com>,
	<jonathan.cameron@huawei.com>, <linux-pm@vger.kernel.org>,
	<linux-kernel@vger.kernel.org>
Subject: Re: [RFC PATCH 2/3] cpufreq: Add SW BOOST support for drivers without frequency table
Date: Fri, 15 May 2020 09:49:02 +0800	[thread overview]
Message-ID: <7325b64c-85f7-21fe-3860-faa10ab1cf21@huawei.com> (raw)
In-Reply-To: <5858421.kfVlu25t0p@kreacher>



On 2020/5/14 22:16, Rafael J. Wysocki wrote:
> On Friday, May 8, 2020 11:11:03 AM CEST Xiongfeng Wang wrote:
>> Software-managed BOOST get the boost frequency by check the flag
>> CPUFREQ_BOOST_FREQ at driver's frequency table. But some cpufreq driver
>> don't have frequency table and use other methods to get the frequency
>> range, such CPPC cpufreq driver.
>>
>> To add SW BOOST support for drivers without frequency table, we add
>> members in 'cpufreq_policy.cpufreq_cpuinfo' to record the max frequency
>> of boost mode and non-boost mode. The cpufreq driver initialize these two
>> members when probing.
>>
>> Signed-off-by: Xiongfeng Wang <wangxiongfeng2@huawei.com>
>> ---
>>  drivers/cpufreq/cpufreq.c | 23 +++++++++++++++--------
>>  include/linux/cpufreq.h   |  2 ++
>>  2 files changed, 17 insertions(+), 8 deletions(-)
>>
>> diff --git a/drivers/cpufreq/cpufreq.c b/drivers/cpufreq/cpufreq.c
>> index 475fb1b..a299426 100644
>> --- a/drivers/cpufreq/cpufreq.c
>> +++ b/drivers/cpufreq/cpufreq.c
>> @@ -2508,15 +2508,22 @@ static int cpufreq_boost_set_sw(int state)
>>  	int ret = -EINVAL;
>>  
>>  	for_each_active_policy(policy) {
>> -		if (!policy->freq_table)
>> -			continue;
>> -
>> -		ret = cpufreq_frequency_table_cpuinfo(policy,
>> +		if (policy->freq_table) {
>> +			ret = cpufreq_frequency_table_cpuinfo(policy,
>>  						      policy->freq_table);
>> -		if (ret) {
>> -			pr_err("%s: Policy frequency update failed\n",
>> -			       __func__);
>> -			break;
>> +			if (ret) {
>> +				pr_err("%s: Policy frequency update failed\n",
>> +				       __func__);
>> +				break;
>> +			}
>> +		} else if (policy->cpuinfo.boost_max_freq) {
>> +			if (state)
>> +				policy->max = policy->cpuinfo.boost_max_freq;
>> +			else
>> +				policy->max = policy->cpuinfo.nonboost_max_freq;
>> +			policy->cpuinfo.max_freq = policy->max;
>> +		} else {
>> +			continue;
>>  		}
> 
> Why do you need to update this function?

My original thought is to reuse the current SW BOOST code as possible, but this
seems to change the cpufreq core too much.

> 
> The driver should be able to provide its own ->set_boost callback just fine,
> shouldn't it?

Thanks for your advice. This is better. I will provide a '->set_boost' callback
for CPPC driver. But I will need to export 'cpufreq_policy_list' and make the
macro 'for_each_active_policy' public.

Thanks,
Xiongfeng

> 
>>  
>>  		ret = freq_qos_update_request(policy->max_freq_req, policy->max);
>> diff --git a/include/linux/cpufreq.h b/include/linux/cpufreq.h
>> index 018dce8..c3449e6 100644
>> --- a/include/linux/cpufreq.h
>> +++ b/include/linux/cpufreq.h
>> @@ -43,6 +43,8 @@ enum cpufreq_table_sorting {
>>  struct cpufreq_cpuinfo {
>>  	unsigned int		max_freq;
>>  	unsigned int		min_freq;
>> +	unsigned int		boost_max_freq;
>> +	unsigned int		nonboost_max_freq;
>>  
>>  	/* in 10^(-9) s = nanoseconds */
>>  	unsigned int		transition_latency;
>>
> 
> 
> 
> 
> 
> .
> 


  reply	other threads:[~2020-05-15  1:49 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-05-08  9:11 [RFC PATCH 0/3] add SW BOOST support for CPPC Xiongfeng Wang
2020-05-08  9:11 ` [RFC PATCH 1/3] cpufreq: fix the return value in 'cpufreq_boost_set_sw()' Xiongfeng Wang
2020-05-14 13:54   ` Rafael J. Wysocki
2020-05-15  1:28     ` Xiongfeng Wang
2020-05-08  9:11 ` [RFC PATCH 2/3] cpufreq: Add SW BOOST support for drivers without frequency table Xiongfeng Wang
2020-05-14 14:16   ` Rafael J. Wysocki
2020-05-15  1:49     ` Xiongfeng Wang [this message]
2020-05-18  7:53       ` Viresh Kumar
2020-05-19  1:04         ` Xiongfeng Wang
2020-05-08  9:11 ` [RFC PATCH 3/3] CPPC: add support for SW BOOST Xiongfeng Wang

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=7325b64c-85f7-21fe-3860-faa10ab1cf21@huawei.com \
    --to=wangxiongfeng2@huawei.com \
    --cc=Souvik.Chakravarty@arm.com \
    --cc=Sudeep.Holla@arm.com \
    --cc=Thanu.Rangarajan@arm.com \
    --cc=guohanjun@huawei.com \
    --cc=john.garry@huawei.com \
    --cc=jonathan.cameron@huawei.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pm@vger.kernel.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).