diff mbox series

[V3,2/2] thermal: cpufreq_cooling: Reuse sched_cpu_util() for SMP platforms

Message ID 1fa9994395764ba19cfe6240d8b3c1ce390e8f82.1605770951.git.viresh.kumar@linaro.org
State Superseded
Headers show
Series cpufreq_cooling: Get effective CPU utilization from scheduler | expand

Commit Message

Viresh Kumar Nov. 19, 2020, 7:38 a.m. UTC
Several parts of the kernel are already using the effective CPU
utilization (as seen by the scheduler) to get the current load on the
CPU, do the same here instead of depending on the idle time of the CPU,
which isn't that accurate comparatively.

This is also the right thing to do as it makes the cpufreq governor
(schedutil) align better with the cpufreq_cooling driver, as the power
requested by cpufreq_cooling governor will exactly match the next
frequency requested by the schedutil governor since they are both using
the same metric to calculate load.

Note that, this (and CPU frequency scaling in general) doesn't work that
well with idle injection as that is done from rt threads and is counted
as load while it tries to do quite the opposite. That should be solved
separately though.

This was tested on ARM Hikey6220 platform with hackbench, sysbench and
schbench. None of them showed any regression or significant
improvements. Schbench is the most important ones out of these as it
creates the scenario where the utilization numbers provide a better
estimate of the future.

Scenario 1: The CPUs were mostly idle in the previous polling window of
the IPA governor as the tasks were sleeping and here are the details
from traces (load is in %):

 Old: thermal_power_cpu_get_power: cpus=00000000,000000ff freq=1200000 total_load=203 load={{0x35,0x1,0x0,0x31,0x0,0x0,0x64,0x0}} dynamic_power=1339
 New: thermal_power_cpu_get_power: cpus=00000000,000000ff freq=1200000 total_load=600 load={{0x60,0x46,0x45,0x45,0x48,0x3b,0x61,0x44}} dynamic_power=3960

Here, the "Old" line gives the load and requested_power (dynamic_power
here) numbers calculated using the idle time based implementation, while
"New" is based on the CPU utilization from scheduler.

As can be clearly seen, the load and requested_power numbers are simply
incorrect in the idle time based approach and the numbers collected from
CPU's utilization are much closer to the reality.

Scenario 2: The CPUs were busy in the previous polling window of the IPA
governor:

 Old: thermal_power_cpu_get_power: cpus=00000000,000000ff freq=1200000 total_load=800 load={{0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64}} dynamic_power=5280
 New: thermal_power_cpu_get_power: cpus=00000000,000000ff freq=1200000 total_load=708 load={{0x4d,0x5c,0x5c,0x5b,0x5c,0x5c,0x51,0x5b}} dynamic_power=4672

As can be seen, the idle time based load is 100% for all the CPUs as it
took only the last window into account, but in reality the CPUs aren't
that loaded as shown by the utilization numbers.

Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>

---
 drivers/thermal/cpufreq_cooling.c | 68 ++++++++++++++++++++++++-------
 1 file changed, 54 insertions(+), 14 deletions(-)

-- 
2.25.0.rc1.19.g042ed3e048af

Comments

Lukasz Luba Nov. 20, 2020, 2:51 p.m. UTC | #1
Hi Viresh,

On 11/19/20 7:38 AM, Viresh Kumar wrote:
> Several parts of the kernel are already using the effective CPU

> utilization (as seen by the scheduler) to get the current load on the

> CPU, do the same here instead of depending on the idle time of the CPU,

> which isn't that accurate comparatively.

> 

> This is also the right thing to do as it makes the cpufreq governor

> (schedutil) align better with the cpufreq_cooling driver, as the power

> requested by cpufreq_cooling governor will exactly match the next

> frequency requested by the schedutil governor since they are both using

> the same metric to calculate load.

> 

> Note that, this (and CPU frequency scaling in general) doesn't work that

> well with idle injection as that is done from rt threads and is counted

> as load while it tries to do quite the opposite. That should be solved

> separately though.


I think cpuidle cooling is not used with IPA, but Daniel might correct
me here.

> 

> This was tested on ARM Hikey6220 platform with hackbench, sysbench and

> schbench. None of them showed any regression or significant

> improvements. Schbench is the most important ones out of these as it

> creates the scenario where the utilization numbers provide a better

> estimate of the future.

> 

> Scenario 1: The CPUs were mostly idle in the previous polling window of

> the IPA governor as the tasks were sleeping and here are the details

> from traces (load is in %):

> 

>   Old: thermal_power_cpu_get_power: cpus=00000000,000000ff freq=1200000 total_load=203 load={{0x35,0x1,0x0,0x31,0x0,0x0,0x64,0x0}} dynamic_power=1339

>   New: thermal_power_cpu_get_power: cpus=00000000,000000ff freq=1200000 total_load=600 load={{0x60,0x46,0x45,0x45,0x48,0x3b,0x61,0x44}} dynamic_power=3960

> 

> Here, the "Old" line gives the load and requested_power (dynamic_power

> here) numbers calculated using the idle time based implementation, while

> "New" is based on the CPU utilization from scheduler.

> 

> As can be clearly seen, the load and requested_power numbers are simply

> incorrect in the idle time based approach and the numbers collected from

> CPU's utilization are much closer to the reality.


It is contradicting to what you have put in 'Scenario 1' description,
isn't it?
Frequency at 1.2GHz, 75% total_load, power 4W... I'd say if CPUs were
mostly idle than 1.3W would better reflect that state.

What was the IPA period in your setup?

It depends on your platform IPA period (e.g. 100ms) and your current
runqueues state (at that sampling point in time). The PELT decay/rise
period is different. I am not sure if you observe the system avg load
for last e.g. 100ms looking at these signals. Maybe IPA period is too
short/long and couldn't catch up with PELT signals?
But we won't too short averaging, since 16ms is a display tick.

IMHO based on this result it looks like the util could lost older
information from the past or didn't converge yet to this low load yet.

> 

> Scenario 2: The CPUs were busy in the previous polling window of the IPA

> governor:

> 

>   Old: thermal_power_cpu_get_power: cpus=00000000,000000ff freq=1200000 total_load=800 load={{0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64}} dynamic_power=5280

>   New: thermal_power_cpu_get_power: cpus=00000000,000000ff freq=1200000 total_load=708 load={{0x4d,0x5c,0x5c,0x5b,0x5c,0x5c,0x51,0x5b}} dynamic_power=4672

> 

> As can be seen, the idle time based load is 100% for all the CPUs as it

> took only the last window into account, but in reality the CPUs aren't

> that loaded as shown by the utilization numbers.


This is also odd. The ~88% of total_load, looks like started decaying or
didn't converge yet to 100% or some task vanished?

Regards,
Lukasz
Viresh Kumar Nov. 23, 2020, 10:41 a.m. UTC | #2
On 20-11-20, 14:51, Lukasz Luba wrote:
> On 11/19/20 7:38 AM, Viresh Kumar wrote:

> > Scenario 1: The CPUs were mostly idle in the previous polling window of

> > the IPA governor as the tasks were sleeping and here are the details

> > from traces (load is in %):

> > 

> >   Old: thermal_power_cpu_get_power: cpus=00000000,000000ff freq=1200000 total_load=203 load={{0x35,0x1,0x0,0x31,0x0,0x0,0x64,0x0}} dynamic_power=1339

> >   New: thermal_power_cpu_get_power: cpus=00000000,000000ff freq=1200000 total_load=600 load={{0x60,0x46,0x45,0x45,0x48,0x3b,0x61,0x44}} dynamic_power=3960

> > 

> > Here, the "Old" line gives the load and requested_power (dynamic_power

> > here) numbers calculated using the idle time based implementation, while

> > "New" is based on the CPU utilization from scheduler.

> > 

> > As can be clearly seen, the load and requested_power numbers are simply

> > incorrect in the idle time based approach and the numbers collected from

> > CPU's utilization are much closer to the reality.

> 

> It is contradicting to what you have put in 'Scenario 1' description,

> isn't it?


At least I didn't think so when I wrote this and am still not sure :)

> Frequency at 1.2GHz, 75% total_load, power 4W... I'd say if CPUs were

> mostly idle than 1.3W would better reflect that state.


The CPUs were idle because the tasks were sleeping, but once the tasks
resume to work, we need a frequency that matches the real load of the
tasks. This is exactly what schedutil would ask for as well as it uses
the same metric and so we should be looking to ask for the same power
budget..

> What was the IPA period in your setup?


It is 100 ms by default, though I remember that I tried with 10 ms as
well.

> It depends on your platform IPA period (e.g. 100ms) and your current

> runqueues state (at that sampling point in time). The PELT decay/rise

> period is different. I am not sure if you observe the system avg load

> for last e.g. 100ms looking at these signals. Maybe IPA period is too

> short/long and couldn't catch up with PELT signals?

> But we won't too short averaging, since 16ms is a display tick.

> 

> IMHO based on this result it looks like the util could lost older

> information from the past or didn't converge yet to this low load yet.

> 

> > 

> > Scenario 2: The CPUs were busy in the previous polling window of the IPA

> > governor:

> > 

> >   Old: thermal_power_cpu_get_power: cpus=00000000,000000ff freq=1200000 total_load=800 load={{0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64}} dynamic_power=5280

> >   New: thermal_power_cpu_get_power: cpus=00000000,000000ff freq=1200000 total_load=708 load={{0x4d,0x5c,0x5c,0x5b,0x5c,0x5c,0x51,0x5b}} dynamic_power=4672

> > 

> > As can be seen, the idle time based load is 100% for all the CPUs as it

> > took only the last window into account, but in reality the CPUs aren't

> > that loaded as shown by the utilization numbers.

> 

> This is also odd. The ~88% of total_load, looks like started decaying or

> didn't converge yet to 100% or some task vanished?


They must have decayed a bit because of the idle period, so looks okay
that way.

-- 
viresh
Lukasz Luba Nov. 23, 2020, 11:34 a.m. UTC | #3
On 11/23/20 10:41 AM, Viresh Kumar wrote:
> On 20-11-20, 14:51, Lukasz Luba wrote:

>> On 11/19/20 7:38 AM, Viresh Kumar wrote:

>>> Scenario 1: The CPUs were mostly idle in the previous polling window of

>>> the IPA governor as the tasks were sleeping and here are the details

>>> from traces (load is in %):

>>>

>>>    Old: thermal_power_cpu_get_power: cpus=00000000,000000ff freq=1200000 total_load=203 load={{0x35,0x1,0x0,0x31,0x0,0x0,0x64,0x0}} dynamic_power=1339

>>>    New: thermal_power_cpu_get_power: cpus=00000000,000000ff freq=1200000 total_load=600 load={{0x60,0x46,0x45,0x45,0x48,0x3b,0x61,0x44}} dynamic_power=3960

>>>

>>> Here, the "Old" line gives the load and requested_power (dynamic_power

>>> here) numbers calculated using the idle time based implementation, while

>>> "New" is based on the CPU utilization from scheduler.

>>>

>>> As can be clearly seen, the load and requested_power numbers are simply

>>> incorrect in the idle time based approach and the numbers collected from

>>> CPU's utilization are much closer to the reality.

>>

>> It is contradicting to what you have put in 'Scenario 1' description,

>> isn't it?

> 

> At least I didn't think so when I wrote this and am still not sure :)

> 

>> Frequency at 1.2GHz, 75% total_load, power 4W... I'd say if CPUs were

>> mostly idle than 1.3W would better reflect that state.

> 

> The CPUs were idle because the tasks were sleeping, but once the tasks

> resume to work, we need a frequency that matches the real load of the

> tasks. This is exactly what schedutil would ask for as well as it uses

> the same metric and so we should be looking to ask for the same power

> budget..


Yes, agree.

> 

>> What was the IPA period in your setup?

> 

> It is 100 ms by default, though I remember that I tried with 10 ms as

> well.

> 

>> It depends on your platform IPA period (e.g. 100ms) and your current

>> runqueues state (at that sampling point in time). The PELT decay/rise

>> period is different. I am not sure if you observe the system avg load

>> for last e.g. 100ms looking at these signals. Maybe IPA period is too

>> short/long and couldn't catch up with PELT signals?

>> But we won't too short averaging, since 16ms is a display tick.

>>

>> IMHO based on this result it looks like the util could lost older

>> information from the past or didn't converge yet to this low load yet.

>>

>>>

>>> Scenario 2: The CPUs were busy in the previous polling window of the IPA

>>> governor:

>>>

>>>    Old: thermal_power_cpu_get_power: cpus=00000000,000000ff freq=1200000 total_load=800 load={{0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64}} dynamic_power=5280

>>>    New: thermal_power_cpu_get_power: cpus=00000000,000000ff freq=1200000 total_load=708 load={{0x4d,0x5c,0x5c,0x5b,0x5c,0x5c,0x51,0x5b}} dynamic_power=4672

>>>

>>> As can be seen, the idle time based load is 100% for all the CPUs as it

>>> took only the last window into account, but in reality the CPUs aren't

>>> that loaded as shown by the utilization numbers.

>>

>> This is also odd. The ~88% of total_load, looks like started decaying or

>> didn't converge yet to 100% or some task vanished?

> 

> They must have decayed a bit because of the idle period, so looks okay

> that way.

> 


I have experimented with this new estimation and compared with real
power meter and other models. It looks good, better than current
mainline. I will continue experiments, but this patch LGTM and
I will add my reviewed-by today (after finishing it).

It would make more sense to adjust IPA period to util signal then the
opposite. I have to play with this a bit...

Regards,
Lukasz
Lukasz Luba Nov. 23, 2020, 3:32 p.m. UTC | #4
On 11/19/20 7:38 AM, Viresh Kumar wrote:
> Several parts of the kernel are already using the effective CPU

> utilization (as seen by the scheduler) to get the current load on the

> CPU, do the same here instead of depending on the idle time of the CPU,

> which isn't that accurate comparatively.

> 

> This is also the right thing to do as it makes the cpufreq governor

> (schedutil) align better with the cpufreq_cooling driver, as the power

> requested by cpufreq_cooling governor will exactly match the next

> frequency requested by the schedutil governor since they are both using

> the same metric to calculate load.

> 

> Note that, this (and CPU frequency scaling in general) doesn't work that

> well with idle injection as that is done from rt threads and is counted

> as load while it tries to do quite the opposite. That should be solved

> separately though.

> 

> This was tested on ARM Hikey6220 platform with hackbench, sysbench and

> schbench. None of them showed any regression or significant

> improvements. Schbench is the most important ones out of these as it

> creates the scenario where the utilization numbers provide a better

> estimate of the future.

> 

> Scenario 1: The CPUs were mostly idle in the previous polling window of

> the IPA governor as the tasks were sleeping and here are the details

> from traces (load is in %):

> 

>   Old: thermal_power_cpu_get_power: cpus=00000000,000000ff freq=1200000 total_load=203 load={{0x35,0x1,0x0,0x31,0x0,0x0,0x64,0x0}} dynamic_power=1339

>   New: thermal_power_cpu_get_power: cpus=00000000,000000ff freq=1200000 total_load=600 load={{0x60,0x46,0x45,0x45,0x48,0x3b,0x61,0x44}} dynamic_power=3960

> 

> Here, the "Old" line gives the load and requested_power (dynamic_power

> here) numbers calculated using the idle time based implementation, while

> "New" is based on the CPU utilization from scheduler.

> 

> As can be clearly seen, the load and requested_power numbers are simply

> incorrect in the idle time based approach and the numbers collected from

> CPU's utilization are much closer to the reality.

> 

> Scenario 2: The CPUs were busy in the previous polling window of the IPA

> governor:

> 

>   Old: thermal_power_cpu_get_power: cpus=00000000,000000ff freq=1200000 total_load=800 load={{0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64}} dynamic_power=5280

>   New: thermal_power_cpu_get_power: cpus=00000000,000000ff freq=1200000 total_load=708 load={{0x4d,0x5c,0x5c,0x5b,0x5c,0x5c,0x51,0x5b}} dynamic_power=4672

> 

> As can be seen, the idle time based load is 100% for all the CPUs as it

> took only the last window into account, but in reality the CPUs aren't

> that loaded as shown by the utilization numbers.

> 

> Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>

> ---

>   drivers/thermal/cpufreq_cooling.c | 68 ++++++++++++++++++++++++-------

>   1 file changed, 54 insertions(+), 14 deletions(-)

> 

> diff --git a/drivers/thermal/cpufreq_cooling.c b/drivers/thermal/cpufreq_cooling.c

> index cc2959f22f01..a364a2fd84b1 100644

> --- a/drivers/thermal/cpufreq_cooling.c

> +++ b/drivers/thermal/cpufreq_cooling.c

> @@ -76,7 +76,9 @@ struct cpufreq_cooling_device {

>   	struct em_perf_domain *em;

>   	struct cpufreq_policy *policy;

>   	struct list_head node;

> +#ifndef CONFIG_SMP

>   	struct time_in_idle *idle_time;

> +#endif

>   	struct freq_qos_request qos_req;

>   };

>   

> @@ -132,14 +134,35 @@ static u32 cpu_power_to_freq(struct cpufreq_cooling_device *cpufreq_cdev,

>   }

>   

>   /**

> - * get_load() - get load for a cpu since last updated

> - * @cpufreq_cdev:	&struct cpufreq_cooling_device for this cpu

> - * @cpu:	cpu number

> - * @cpu_idx:	index of the cpu in time_in_idle*

> + * get_load() - get load for a cpu

> + * @cpufreq_cdev: struct cpufreq_cooling_device for the cpu

> + * @cpu: cpu number

> + * @cpu_idx: index of the cpu in time_in_idle array

>    *

>    * Return: The average load of cpu @cpu in percentage since this

>    * function was last called.

>    */

> +#ifdef CONFIG_SMP

> +static u32 get_load(struct cpufreq_cooling_device *cpufreq_cdev, int cpu,

> +		    int cpu_idx)

> +{

> +	unsigned long max = arch_scale_cpu_capacity(cpu);

> +	unsigned long util;

> +

> +	util = sched_cpu_util(cpu, ENERGY_UTIL, max);

> +	return (util * 100) / max;

> +}

> +

> +static inline int allocate_idle_time(struct cpufreq_cooling_device *cpufreq_cdev)

> +{

> +	return 0;

> +}

> +

> +static inline void free_idle_time(struct cpufreq_cooling_device *cpufreq_cdev)

> +{

> +}

> +

> +#else /* !CONFIG_SMP */

>   static u32 get_load(struct cpufreq_cooling_device *cpufreq_cdev, int cpu,

>   		    int cpu_idx)

>   {

> @@ -162,6 +185,26 @@ static u32 get_load(struct cpufreq_cooling_device *cpufreq_cdev, int cpu,

>   	return load;

>   }

>   

> +static int allocate_idle_time(struct cpufreq_cooling_device *cpufreq_cdev)

> +{

> +	unsigned int num_cpus = cpumask_weight(cpufreq_cdev->policy->related_cpus);

> +

> +	cpufreq_cdev->idle_time = kcalloc(num_cpus,

> +					 sizeof(*cpufreq_cdev->idle_time),

> +					 GFP_KERNEL);

> +	if (!cpufreq_cdev->idle_time)

> +		return -ENOMEM;

> +

> +	return 0;

> +}

> +

> +static void free_idle_time(struct cpufreq_cooling_device *cpufreq_cdev)

> +{

> +	kfree(cpufreq_cdev->idle_time);

> +	cpufreq_cdev->idle_time = NULL;

> +}

> +#endif /* CONFIG_SMP */

> +

>   /**

>    * get_dynamic_power() - calculate the dynamic power

>    * @cpufreq_cdev:	&cpufreq_cooling_device for this cdev

> @@ -487,7 +530,7 @@ __cpufreq_cooling_register(struct device_node *np,

>   	struct thermal_cooling_device *cdev;

>   	struct cpufreq_cooling_device *cpufreq_cdev;

>   	char dev_name[THERMAL_NAME_LENGTH];

> -	unsigned int i, num_cpus;

> +	unsigned int i;

>   	struct device *dev;

>   	int ret;

>   	struct thermal_cooling_device_ops *cooling_ops;

> @@ -498,7 +541,6 @@ __cpufreq_cooling_register(struct device_node *np,

>   		return ERR_PTR(-ENODEV);

>   	}

>   

> -

>   	if (IS_ERR_OR_NULL(policy)) {

>   		pr_err("%s: cpufreq policy isn't valid: %p\n", __func__, policy);

>   		return ERR_PTR(-EINVAL);

> @@ -516,12 +558,10 @@ __cpufreq_cooling_register(struct device_node *np,

>   		return ERR_PTR(-ENOMEM);

>   

>   	cpufreq_cdev->policy = policy;

> -	num_cpus = cpumask_weight(policy->related_cpus);

> -	cpufreq_cdev->idle_time = kcalloc(num_cpus,

> -					 sizeof(*cpufreq_cdev->idle_time),

> -					 GFP_KERNEL);

> -	if (!cpufreq_cdev->idle_time) {

> -		cdev = ERR_PTR(-ENOMEM);

> +

> +	ret = allocate_idle_time(cpufreq_cdev);

> +	if (ret) {

> +		cdev = ERR_PTR(ret);

>   		goto free_cdev;

>   	}

>   

> @@ -581,7 +621,7 @@ __cpufreq_cooling_register(struct device_node *np,

>   remove_ida:

>   	ida_simple_remove(&cpufreq_ida, cpufreq_cdev->id);

>   free_idle_time:

> -	kfree(cpufreq_cdev->idle_time);

> +	free_idle_time(cpufreq_cdev);

>   free_cdev:

>   	kfree(cpufreq_cdev);

>   	return cdev;

> @@ -674,7 +714,7 @@ void cpufreq_cooling_unregister(struct thermal_cooling_device *cdev)

>   	thermal_cooling_device_unregister(cdev);

>   	freq_qos_remove_request(&cpufreq_cdev->qos_req);

>   	ida_simple_remove(&cpufreq_ida, cpufreq_cdev->id);

> -	kfree(cpufreq_cdev->idle_time);

> +	free_idle_time(cpufreq_cdev);

>   	kfree(cpufreq_cdev);

>   }

>   EXPORT_SYMBOL_GPL(cpufreq_cooling_unregister);

> 



LGTM. It has potential. We will see how far we can improve IPA with this
model.

Reviewed-by: Lukasz Luba <lukasz.luba@arm.com>


Regards,
Lukasz
Viresh Kumar Nov. 24, 2020, 4:56 a.m. UTC | #5
On 23-11-20, 15:32, Lukasz Luba wrote:
> LGTM. It has potential. We will see how far we can improve IPA with this

> model.

> 

> Reviewed-by: Lukasz Luba <lukasz.luba@arm.com>


Thanks Lukasz for your review :)

-- 
viresh
Valentin Schneider Dec. 1, 2020, 5:25 p.m. UTC | #6
Hi Viresh,

On 19/11/20 07:38, Viresh Kumar wrote:
> As can be clearly seen, the load and requested_power numbers are simply

> incorrect in the idle time based approach and the numbers collected from

> CPU's utilization are much closer to the reality.

>


PELT time-scaling can make the util signals behave strangely from an
external PoV. For instance, on a big.LITTLE system, the rq util of a LITTLE
CPU may suddenly drop if it was stuck on a too-low OPP for some time and
eventually reached the "right" OPP (i.e. got idle time). 

Also, as Peter pointed out in [1], task migrations can easily confuse an
external observer that considers util to be "an image of the recent past".

This will need testing on asymmetric CPU capacity systems, IMO.

[1]: https://lore.kernel.org/r/20201120075527.GB2414@hirez.programming.kicks-ass.net
Viresh Kumar Dec. 7, 2020, 9:13 a.m. UTC | #7
Hi Valentin,

On 01-12-20, 17:25, Valentin Schneider wrote:
> PELT time-scaling can make the util signals behave strangely from an

> external PoV. For instance, on a big.LITTLE system, the rq util of a LITTLE

> CPU may suddenly drop if it was stuck on a too-low OPP for some time and

> eventually reached the "right" OPP (i.e. got idle time). 

> 

> Also, as Peter pointed out in [1], task migrations can easily confuse an

> external observer that considers util to be "an image of the recent past".


I agree with what you wrote and such issues may happen here as they
can in case of schedutil as well. The idea behind this patchset was to
get the allocator (IPA) and consumer (schedutil) in sync with respect
to frequency and power. It is better to allocate the power that
schedutil is going to request, then to allocate something based on
different metrics. If there is a problem with PELT signal then I will
let both the entities suffer with that.

-- 
viresh
diff mbox series

Patch

diff --git a/drivers/thermal/cpufreq_cooling.c b/drivers/thermal/cpufreq_cooling.c
index cc2959f22f01..a364a2fd84b1 100644
--- a/drivers/thermal/cpufreq_cooling.c
+++ b/drivers/thermal/cpufreq_cooling.c
@@ -76,7 +76,9 @@  struct cpufreq_cooling_device {
 	struct em_perf_domain *em;
 	struct cpufreq_policy *policy;
 	struct list_head node;
+#ifndef CONFIG_SMP
 	struct time_in_idle *idle_time;
+#endif
 	struct freq_qos_request qos_req;
 };
 
@@ -132,14 +134,35 @@  static u32 cpu_power_to_freq(struct cpufreq_cooling_device *cpufreq_cdev,
 }
 
 /**
- * get_load() - get load for a cpu since last updated
- * @cpufreq_cdev:	&struct cpufreq_cooling_device for this cpu
- * @cpu:	cpu number
- * @cpu_idx:	index of the cpu in time_in_idle*
+ * get_load() - get load for a cpu
+ * @cpufreq_cdev: struct cpufreq_cooling_device for the cpu
+ * @cpu: cpu number
+ * @cpu_idx: index of the cpu in time_in_idle array
  *
  * Return: The average load of cpu @cpu in percentage since this
  * function was last called.
  */
+#ifdef CONFIG_SMP
+static u32 get_load(struct cpufreq_cooling_device *cpufreq_cdev, int cpu,
+		    int cpu_idx)
+{
+	unsigned long max = arch_scale_cpu_capacity(cpu);
+	unsigned long util;
+
+	util = sched_cpu_util(cpu, ENERGY_UTIL, max);
+	return (util * 100) / max;
+}
+
+static inline int allocate_idle_time(struct cpufreq_cooling_device *cpufreq_cdev)
+{
+	return 0;
+}
+
+static inline void free_idle_time(struct cpufreq_cooling_device *cpufreq_cdev)
+{
+}
+
+#else /* !CONFIG_SMP */
 static u32 get_load(struct cpufreq_cooling_device *cpufreq_cdev, int cpu,
 		    int cpu_idx)
 {
@@ -162,6 +185,26 @@  static u32 get_load(struct cpufreq_cooling_device *cpufreq_cdev, int cpu,
 	return load;
 }
 
+static int allocate_idle_time(struct cpufreq_cooling_device *cpufreq_cdev)
+{
+	unsigned int num_cpus = cpumask_weight(cpufreq_cdev->policy->related_cpus);
+
+	cpufreq_cdev->idle_time = kcalloc(num_cpus,
+					 sizeof(*cpufreq_cdev->idle_time),
+					 GFP_KERNEL);
+	if (!cpufreq_cdev->idle_time)
+		return -ENOMEM;
+
+	return 0;
+}
+
+static void free_idle_time(struct cpufreq_cooling_device *cpufreq_cdev)
+{
+	kfree(cpufreq_cdev->idle_time);
+	cpufreq_cdev->idle_time = NULL;
+}
+#endif /* CONFIG_SMP */
+
 /**
  * get_dynamic_power() - calculate the dynamic power
  * @cpufreq_cdev:	&cpufreq_cooling_device for this cdev
@@ -487,7 +530,7 @@  __cpufreq_cooling_register(struct device_node *np,
 	struct thermal_cooling_device *cdev;
 	struct cpufreq_cooling_device *cpufreq_cdev;
 	char dev_name[THERMAL_NAME_LENGTH];
-	unsigned int i, num_cpus;
+	unsigned int i;
 	struct device *dev;
 	int ret;
 	struct thermal_cooling_device_ops *cooling_ops;
@@ -498,7 +541,6 @@  __cpufreq_cooling_register(struct device_node *np,
 		return ERR_PTR(-ENODEV);
 	}
 
-
 	if (IS_ERR_OR_NULL(policy)) {
 		pr_err("%s: cpufreq policy isn't valid: %p\n", __func__, policy);
 		return ERR_PTR(-EINVAL);
@@ -516,12 +558,10 @@  __cpufreq_cooling_register(struct device_node *np,
 		return ERR_PTR(-ENOMEM);
 
 	cpufreq_cdev->policy = policy;
-	num_cpus = cpumask_weight(policy->related_cpus);
-	cpufreq_cdev->idle_time = kcalloc(num_cpus,
-					 sizeof(*cpufreq_cdev->idle_time),
-					 GFP_KERNEL);
-	if (!cpufreq_cdev->idle_time) {
-		cdev = ERR_PTR(-ENOMEM);
+
+	ret = allocate_idle_time(cpufreq_cdev);
+	if (ret) {
+		cdev = ERR_PTR(ret);
 		goto free_cdev;
 	}
 
@@ -581,7 +621,7 @@  __cpufreq_cooling_register(struct device_node *np,
 remove_ida:
 	ida_simple_remove(&cpufreq_ida, cpufreq_cdev->id);
 free_idle_time:
-	kfree(cpufreq_cdev->idle_time);
+	free_idle_time(cpufreq_cdev);
 free_cdev:
 	kfree(cpufreq_cdev);
 	return cdev;
@@ -674,7 +714,7 @@  void cpufreq_cooling_unregister(struct thermal_cooling_device *cdev)
 	thermal_cooling_device_unregister(cdev);
 	freq_qos_remove_request(&cpufreq_cdev->qos_req);
 	ida_simple_remove(&cpufreq_ida, cpufreq_cdev->id);
-	kfree(cpufreq_cdev->idle_time);
+	free_idle_time(cpufreq_cdev);
 	kfree(cpufreq_cdev);
 }
 EXPORT_SYMBOL_GPL(cpufreq_cooling_unregister);