cpuidle: lpm-levels: Do not predict LPM for isolated cpus
Prediction can select shallower low power mode for isolated cpu based on historical data. Do not predict LPMs for isolated cpus. Change-Id: I998008ef3c578c1dccfacae8513a15dfbe397e16 Signed-off-by: Maulik Shah <mkshah@codeaurora.org>
This commit is contained in:
parent
c8e2fdb191
commit
fbd35805c8
1 changed files with 1 additions and 1 deletions
|
@ -745,7 +745,7 @@ static int cpu_power_select(struct cpuidle_device *dev,
|
|||
next_wakeup_us = next_event_us - lvl_latency_us;
|
||||
}
|
||||
|
||||
if (!i) {
|
||||
if (!i && !cpu_isolated(dev->cpu)) {
|
||||
/*
|
||||
* If the next_wake_us itself is not sufficient for
|
||||
* deeper low power modes than clock gating do not
|
||||
|
|
Loading…
Add table
Reference in a new issue