diff options
| -rw-r--r-- | drivers/cpuidle/cpuidle.c | 45 | ||||
| -rw-r--r-- | include/linux/cpuidle.h | 2 | ||||
| -rw-r--r-- | kernel/power/suspend.c | 2 |
3 files changed, 48 insertions, 1 deletions
diff --git a/drivers/cpuidle/cpuidle.c b/drivers/cpuidle/cpuidle.c index f38359f64cc6..cb7019977c50 100644 --- a/drivers/cpuidle/cpuidle.c +++ b/drivers/cpuidle/cpuidle.c | |||
| @@ -32,6 +32,7 @@ LIST_HEAD(cpuidle_detected_devices); | |||
| 32 | static int enabled_devices; | 32 | static int enabled_devices; |
| 33 | static int off __read_mostly; | 33 | static int off __read_mostly; |
| 34 | static int initialized __read_mostly; | 34 | static int initialized __read_mostly; |
| 35 | static bool use_deepest_state __read_mostly; | ||
| 35 | 36 | ||
| 36 | int cpuidle_disabled(void) | 37 | int cpuidle_disabled(void) |
| 37 | { | 38 | { |
| @@ -65,6 +66,45 @@ int cpuidle_play_dead(void) | |||
| 65 | } | 66 | } |
| 66 | 67 | ||
| 67 | /** | 68 | /** |
| 69 | * cpuidle_use_deepest_state - Enable/disable the "deepest idle" mode. | ||
| 70 | * @enable: Whether enable or disable the feature. | ||
| 71 | * | ||
| 72 | * If the "deepest idle" mode is enabled, cpuidle will ignore the governor and | ||
| 73 | * always use the state with the greatest exit latency (out of the states that | ||
| 74 | * are not disabled). | ||
| 75 | * | ||
| 76 | * This function can only be called after cpuidle_pause() to avoid races. | ||
| 77 | */ | ||
| 78 | void cpuidle_use_deepest_state(bool enable) | ||
| 79 | { | ||
| 80 | use_deepest_state = enable; | ||
| 81 | } | ||
| 82 | |||
| 83 | /** | ||
| 84 | * cpuidle_find_deepest_state - Find the state of the greatest exit latency. | ||
| 85 | * @drv: cpuidle driver for a given CPU. | ||
| 86 | * @dev: cpuidle device for a given CPU. | ||
| 87 | */ | ||
| 88 | static int cpuidle_find_deepest_state(struct cpuidle_driver *drv, | ||
| 89 | struct cpuidle_device *dev) | ||
| 90 | { | ||
| 91 | unsigned int latency_req = 0; | ||
| 92 | int i, ret = CPUIDLE_DRIVER_STATE_START - 1; | ||
| 93 | |||
| 94 | for (i = CPUIDLE_DRIVER_STATE_START; i < drv->state_count; i++) { | ||
| 95 | struct cpuidle_state *s = &drv->states[i]; | ||
| 96 | struct cpuidle_state_usage *su = &dev->states_usage[i]; | ||
| 97 | |||
| 98 | if (s->disabled || su->disable || s->exit_latency <= latency_req) | ||
| 99 | continue; | ||
| 100 | |||
| 101 | latency_req = s->exit_latency; | ||
| 102 | ret = i; | ||
| 103 | } | ||
| 104 | return ret; | ||
| 105 | } | ||
| 106 | |||
| 107 | /** | ||
| 68 | * cpuidle_enter_state - enter the state and update stats | 108 | * cpuidle_enter_state - enter the state and update stats |
| 69 | * @dev: cpuidle device for this cpu | 109 | * @dev: cpuidle device for this cpu |
| 70 | * @drv: cpuidle driver for this cpu | 110 | * @drv: cpuidle driver for this cpu |
| @@ -124,6 +164,9 @@ int cpuidle_select(struct cpuidle_driver *drv, struct cpuidle_device *dev) | |||
| 124 | if (!drv || !dev || !dev->enabled) | 164 | if (!drv || !dev || !dev->enabled) |
| 125 | return -EBUSY; | 165 | return -EBUSY; |
| 126 | 166 | ||
| 167 | if (unlikely(use_deepest_state)) | ||
| 168 | return cpuidle_find_deepest_state(drv, dev); | ||
| 169 | |||
| 127 | return cpuidle_curr_governor->select(drv, dev); | 170 | return cpuidle_curr_governor->select(drv, dev); |
| 128 | } | 171 | } |
| 129 | 172 | ||
| @@ -155,7 +198,7 @@ int cpuidle_enter(struct cpuidle_driver *drv, struct cpuidle_device *dev, | |||
| 155 | */ | 198 | */ |
| 156 | void cpuidle_reflect(struct cpuidle_device *dev, int index) | 199 | void cpuidle_reflect(struct cpuidle_device *dev, int index) |
| 157 | { | 200 | { |
| 158 | if (cpuidle_curr_governor->reflect) | 201 | if (cpuidle_curr_governor->reflect && !unlikely(use_deepest_state)) |
| 159 | cpuidle_curr_governor->reflect(dev, index); | 202 | cpuidle_curr_governor->reflect(dev, index); |
| 160 | } | 203 | } |
| 161 | 204 | ||
diff --git a/include/linux/cpuidle.h b/include/linux/cpuidle.h index a8d5bd391a26..c51a436135c4 100644 --- a/include/linux/cpuidle.h +++ b/include/linux/cpuidle.h | |||
| @@ -143,6 +143,7 @@ extern void cpuidle_resume(void); | |||
| 143 | extern int cpuidle_enable_device(struct cpuidle_device *dev); | 143 | extern int cpuidle_enable_device(struct cpuidle_device *dev); |
| 144 | extern void cpuidle_disable_device(struct cpuidle_device *dev); | 144 | extern void cpuidle_disable_device(struct cpuidle_device *dev); |
| 145 | extern int cpuidle_play_dead(void); | 145 | extern int cpuidle_play_dead(void); |
| 146 | extern void cpuidle_use_deepest_state(bool enable); | ||
| 146 | 147 | ||
| 147 | extern struct cpuidle_driver *cpuidle_get_cpu_driver(struct cpuidle_device *dev); | 148 | extern struct cpuidle_driver *cpuidle_get_cpu_driver(struct cpuidle_device *dev); |
| 148 | #else | 149 | #else |
| @@ -175,6 +176,7 @@ static inline int cpuidle_enable_device(struct cpuidle_device *dev) | |||
| 175 | {return -ENODEV; } | 176 | {return -ENODEV; } |
| 176 | static inline void cpuidle_disable_device(struct cpuidle_device *dev) { } | 177 | static inline void cpuidle_disable_device(struct cpuidle_device *dev) { } |
| 177 | static inline int cpuidle_play_dead(void) {return -ENODEV; } | 178 | static inline int cpuidle_play_dead(void) {return -ENODEV; } |
| 179 | static inline void cpuidle_use_deepest_state(bool enable) {} | ||
| 178 | static inline struct cpuidle_driver *cpuidle_get_cpu_driver( | 180 | static inline struct cpuidle_driver *cpuidle_get_cpu_driver( |
| 179 | struct cpuidle_device *dev) {return NULL; } | 181 | struct cpuidle_device *dev) {return NULL; } |
| 180 | #endif | 182 | #endif |
diff --git a/kernel/power/suspend.c b/kernel/power/suspend.c index 8233cd4047d7..155721f7f909 100644 --- a/kernel/power/suspend.c +++ b/kernel/power/suspend.c | |||
| @@ -54,9 +54,11 @@ static void freeze_begin(void) | |||
| 54 | 54 | ||
| 55 | static void freeze_enter(void) | 55 | static void freeze_enter(void) |
| 56 | { | 56 | { |
| 57 | cpuidle_use_deepest_state(true); | ||
| 57 | cpuidle_resume(); | 58 | cpuidle_resume(); |
| 58 | wait_event(suspend_freeze_wait_head, suspend_freeze_wake); | 59 | wait_event(suspend_freeze_wait_head, suspend_freeze_wake); |
| 59 | cpuidle_pause(); | 60 | cpuidle_pause(); |
| 61 | cpuidle_use_deepest_state(false); | ||
| 60 | } | 62 | } |
| 61 | 63 | ||
| 62 | void freeze_wake(void) | 64 | void freeze_wake(void) |
