Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1 | /* |
| 2 | * cpuidle.c - core cpuidle infrastructure |
| 3 | * |
| 4 | * (C) 2006-2007 Venkatesh Pallipadi <venkatesh.pallipadi@intel.com> |
| 5 | * Shaohua Li <shaohua.li@intel.com> |
| 6 | * Adam Belay <abelay@novell.com> |
| 7 | * |
| 8 | * This code is licenced under the GPL. |
| 9 | */ |
| 10 | |
Daniel Lezcano | b60e6a0 | 2013-03-21 12:21:31 +0000 | [diff] [blame] | 11 | #include <linux/clockchips.h> |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 12 | #include <linux/kernel.h> |
| 13 | #include <linux/mutex.h> |
| 14 | #include <linux/sched.h> |
| 15 | #include <linux/notifier.h> |
Jean Pihet | e8db0be | 2011-08-25 15:35:03 +0200 | [diff] [blame] | 16 | #include <linux/pm_qos.h> |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 17 | #include <linux/cpu.h> |
| 18 | #include <linux/cpuidle.h> |
venkatesh.pallipadi@intel.com | 9a0b841 | 2008-01-31 17:35:06 -0800 | [diff] [blame] | 19 | #include <linux/ktime.h> |
Arjan van de Ven | 2e94d1f | 2008-09-10 16:06:00 -0700 | [diff] [blame] | 20 | #include <linux/hrtimer.h> |
Paul Gortmaker | 884b17e | 2011-08-29 17:52:39 -0400 | [diff] [blame] | 21 | #include <linux/module.h> |
Arjan van de Ven | 288f023 | 2009-09-19 13:35:33 +0200 | [diff] [blame] | 22 | #include <trace/events/power.h> |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 23 | |
| 24 | #include "cpuidle.h" |
| 25 | |
| 26 | DEFINE_PER_CPU(struct cpuidle_device *, cpuidle_devices); |
Daniel Lezcano | 4c637b2 | 2013-04-23 08:54:33 +0000 | [diff] [blame] | 27 | DEFINE_PER_CPU(struct cpuidle_device, cpuidle_dev); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 28 | |
| 29 | DEFINE_MUTEX(cpuidle_lock); |
| 30 | LIST_HEAD(cpuidle_detected_devices); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 31 | |
| 32 | static int enabled_devices; |
Len Brown | 62027ae | 2011-04-01 18:13:10 -0400 | [diff] [blame] | 33 | static int off __read_mostly; |
Len Brown | a0bfa13 | 2011-04-01 19:34:59 -0400 | [diff] [blame] | 34 | static int initialized __read_mostly; |
Len Brown | 62027ae | 2011-04-01 18:13:10 -0400 | [diff] [blame] | 35 | |
| 36 | int cpuidle_disabled(void) |
| 37 | { |
| 38 | return off; |
| 39 | } |
Len Brown | d91ee58 | 2011-04-01 18:28:35 -0400 | [diff] [blame] | 40 | void disable_cpuidle(void) |
| 41 | { |
| 42 | off = 1; |
| 43 | } |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 44 | |
| 45 | /** |
Boris Ostrovsky | 1a022e3 | 2012-03-13 19:55:09 +0100 | [diff] [blame] | 46 | * cpuidle_play_dead - cpu off-lining |
| 47 | * |
Toshi Kani | ee01e66 | 2012-03-31 21:37:02 -0600 | [diff] [blame] | 48 | * Returns in case of an error or no driver |
Boris Ostrovsky | 1a022e3 | 2012-03-13 19:55:09 +0100 | [diff] [blame] | 49 | */ |
| 50 | int cpuidle_play_dead(void) |
| 51 | { |
| 52 | struct cpuidle_device *dev = __this_cpu_read(cpuidle_devices); |
Daniel Lezcano | bf4d1b5 | 2012-10-31 16:44:48 +0000 | [diff] [blame] | 53 | struct cpuidle_driver *drv = cpuidle_get_cpu_driver(dev); |
Daniel Lezcano | 8aef33a | 2013-01-15 14:18:04 +0100 | [diff] [blame] | 54 | int i; |
Boris Ostrovsky | 1a022e3 | 2012-03-13 19:55:09 +0100 | [diff] [blame] | 55 | |
Toshi Kani | ee01e66 | 2012-03-31 21:37:02 -0600 | [diff] [blame] | 56 | if (!drv) |
| 57 | return -ENODEV; |
| 58 | |
Boris Ostrovsky | 1a022e3 | 2012-03-13 19:55:09 +0100 | [diff] [blame] | 59 | /* Find lowest-power state that supports long-term idle */ |
Daniel Lezcano | 8aef33a | 2013-01-15 14:18:04 +0100 | [diff] [blame] | 60 | for (i = drv->state_count - 1; i >= CPUIDLE_DRIVER_STATE_START; i--) |
| 61 | if (drv->states[i].enter_dead) |
| 62 | return drv->states[i].enter_dead(dev, i); |
Boris Ostrovsky | 1a022e3 | 2012-03-13 19:55:09 +0100 | [diff] [blame] | 63 | |
| 64 | return -ENODEV; |
| 65 | } |
| 66 | |
| 67 | /** |
Colin Cross | 56cfbf7 | 2012-05-07 17:57:39 -0700 | [diff] [blame] | 68 | * cpuidle_enter_state - enter the state and update stats |
| 69 | * @dev: cpuidle device for this cpu |
| 70 | * @drv: cpuidle driver for this cpu |
| 71 | * @next_state: index into drv->states of the state to enter |
| 72 | */ |
| 73 | int cpuidle_enter_state(struct cpuidle_device *dev, struct cpuidle_driver *drv, |
Daniel Lezcano | 554c06b | 2013-04-23 08:54:31 +0000 | [diff] [blame] | 74 | int index) |
Colin Cross | 56cfbf7 | 2012-05-07 17:57:39 -0700 | [diff] [blame] | 75 | { |
| 76 | int entered_state; |
| 77 | |
Daniel Lezcano | 554c06b | 2013-04-23 08:54:31 +0000 | [diff] [blame] | 78 | struct cpuidle_state *target_state = &drv->states[index]; |
| 79 | ktime_t time_start, time_end; |
| 80 | s64 diff; |
| 81 | |
| 82 | time_start = ktime_get(); |
| 83 | |
| 84 | entered_state = target_state->enter(dev, drv, index); |
| 85 | |
| 86 | time_end = ktime_get(); |
| 87 | |
| 88 | local_irq_enable(); |
| 89 | |
| 90 | diff = ktime_to_us(ktime_sub(time_end, time_start)); |
| 91 | if (diff > INT_MAX) |
| 92 | diff = INT_MAX; |
| 93 | |
| 94 | dev->last_residency = (int) diff; |
Colin Cross | 56cfbf7 | 2012-05-07 17:57:39 -0700 | [diff] [blame] | 95 | |
| 96 | if (entered_state >= 0) { |
| 97 | /* Update cpuidle counters */ |
| 98 | /* This can be moved to within driver enter routine |
| 99 | * but that results in multiple copies of same code. |
| 100 | */ |
Julius Werner | a474a51 | 2012-11-27 14:17:58 +0100 | [diff] [blame] | 101 | dev->states_usage[entered_state].time += dev->last_residency; |
Colin Cross | 56cfbf7 | 2012-05-07 17:57:39 -0700 | [diff] [blame] | 102 | dev->states_usage[entered_state].usage++; |
| 103 | } else { |
| 104 | dev->last_residency = 0; |
| 105 | } |
| 106 | |
| 107 | return entered_state; |
| 108 | } |
| 109 | |
| 110 | /** |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 111 | * cpuidle_idle_call - the main idle loop |
| 112 | * |
| 113 | * NOTE: no locks or semaphores should be used here |
Len Brown | a0bfa13 | 2011-04-01 19:34:59 -0400 | [diff] [blame] | 114 | * return non-zero on failure |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 115 | */ |
Len Brown | a0bfa13 | 2011-04-01 19:34:59 -0400 | [diff] [blame] | 116 | int cpuidle_idle_call(void) |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 117 | { |
Christoph Lameter | 4a6f4fe | 2010-12-06 11:16:24 -0600 | [diff] [blame] | 118 | struct cpuidle_device *dev = __this_cpu_read(cpuidle_devices); |
Daniel Lezcano | bf4d1b5 | 2012-10-31 16:44:48 +0000 | [diff] [blame] | 119 | struct cpuidle_driver *drv; |
Deepthi Dharwar | e978aa7 | 2011-10-28 16:20:09 +0530 | [diff] [blame] | 120 | int next_state, entered_state; |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 121 | |
Len Brown | a0bfa13 | 2011-04-01 19:34:59 -0400 | [diff] [blame] | 122 | if (off) |
| 123 | return -ENODEV; |
| 124 | |
| 125 | if (!initialized) |
| 126 | return -ENODEV; |
| 127 | |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 128 | /* check if the device is ready */ |
Len Brown | a0bfa13 | 2011-04-01 19:34:59 -0400 | [diff] [blame] | 129 | if (!dev || !dev->enabled) |
| 130 | return -EBUSY; |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 131 | |
Daniel Lezcano | bf4d1b5 | 2012-10-31 16:44:48 +0000 | [diff] [blame] | 132 | drv = cpuidle_get_cpu_driver(dev); |
| 133 | |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 134 | /* ask the governor for the next state */ |
Deepthi Dharwar | 46bcfad | 2011-10-28 16:20:42 +0530 | [diff] [blame] | 135 | next_state = cpuidle_curr_governor->select(drv, dev); |
Kevin Hilman | 246eb7f | 2009-10-26 16:50:18 -0700 | [diff] [blame] | 136 | if (need_resched()) { |
Youquan Song | d73d68d | 2012-10-26 12:26:59 +0200 | [diff] [blame] | 137 | dev->last_residency = 0; |
| 138 | /* give the governor an opportunity to reflect on the outcome */ |
| 139 | if (cpuidle_curr_governor->reflect) |
| 140 | cpuidle_curr_governor->reflect(dev, next_state); |
Kevin Hilman | 246eb7f | 2009-10-26 16:50:18 -0700 | [diff] [blame] | 141 | local_irq_enable(); |
Len Brown | a0bfa13 | 2011-04-01 19:34:59 -0400 | [diff] [blame] | 142 | return 0; |
Kevin Hilman | 246eb7f | 2009-10-26 16:50:18 -0700 | [diff] [blame] | 143 | } |
| 144 | |
Steven Rostedt | 76027ea | 2012-02-07 09:46:01 -0500 | [diff] [blame] | 145 | trace_cpu_idle_rcuidle(next_state, dev->cpu); |
Thomas Renninger | f77cfe4 | 2011-01-07 11:29:44 +0100 | [diff] [blame] | 146 | |
Daniel Lezcano | b60e6a0 | 2013-03-21 12:21:31 +0000 | [diff] [blame] | 147 | if (drv->states[next_state].flags & CPUIDLE_FLAG_TIMER_STOP) |
| 148 | clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_ENTER, |
| 149 | &dev->cpu); |
| 150 | |
Colin Cross | 4126c01 | 2012-05-07 17:57:41 -0700 | [diff] [blame] | 151 | if (cpuidle_state_is_coupled(dev, drv, next_state)) |
| 152 | entered_state = cpuidle_enter_state_coupled(dev, drv, |
| 153 | next_state); |
| 154 | else |
| 155 | entered_state = cpuidle_enter_state(dev, drv, next_state); |
Thomas Renninger | f77cfe4 | 2011-01-07 11:29:44 +0100 | [diff] [blame] | 156 | |
Daniel Lezcano | b60e6a0 | 2013-03-21 12:21:31 +0000 | [diff] [blame] | 157 | if (drv->states[next_state].flags & CPUIDLE_FLAG_TIMER_STOP) |
| 158 | clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_EXIT, |
| 159 | &dev->cpu); |
| 160 | |
Steven Rostedt | 76027ea | 2012-02-07 09:46:01 -0500 | [diff] [blame] | 161 | trace_cpu_idle_rcuidle(PWR_EVENT_EXIT, dev->cpu); |
Thomas Renninger | f77cfe4 | 2011-01-07 11:29:44 +0100 | [diff] [blame] | 162 | |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 163 | /* give the governor an opportunity to reflect on the outcome */ |
| 164 | if (cpuidle_curr_governor->reflect) |
Deepthi Dharwar | e978aa7 | 2011-10-28 16:20:09 +0530 | [diff] [blame] | 165 | cpuidle_curr_governor->reflect(dev, entered_state); |
Len Brown | a0bfa13 | 2011-04-01 19:34:59 -0400 | [diff] [blame] | 166 | |
| 167 | return 0; |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 168 | } |
| 169 | |
| 170 | /** |
| 171 | * cpuidle_install_idle_handler - installs the cpuidle idle loop handler |
| 172 | */ |
| 173 | void cpuidle_install_idle_handler(void) |
| 174 | { |
Len Brown | a0bfa13 | 2011-04-01 19:34:59 -0400 | [diff] [blame] | 175 | if (enabled_devices) { |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 176 | /* Make sure all changes finished before we switch to new idle */ |
| 177 | smp_wmb(); |
Len Brown | a0bfa13 | 2011-04-01 19:34:59 -0400 | [diff] [blame] | 178 | initialized = 1; |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 179 | } |
| 180 | } |
| 181 | |
| 182 | /** |
| 183 | * cpuidle_uninstall_idle_handler - uninstalls the cpuidle idle loop handler |
| 184 | */ |
| 185 | void cpuidle_uninstall_idle_handler(void) |
| 186 | { |
Len Brown | a0bfa13 | 2011-04-01 19:34:59 -0400 | [diff] [blame] | 187 | if (enabled_devices) { |
| 188 | initialized = 0; |
Thomas Gleixner | 4a16251 | 2012-05-07 17:59:48 +0000 | [diff] [blame] | 189 | kick_all_cpus_sync(); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 190 | } |
| 191 | } |
| 192 | |
| 193 | /** |
| 194 | * cpuidle_pause_and_lock - temporarily disables CPUIDLE |
| 195 | */ |
| 196 | void cpuidle_pause_and_lock(void) |
| 197 | { |
| 198 | mutex_lock(&cpuidle_lock); |
| 199 | cpuidle_uninstall_idle_handler(); |
| 200 | } |
| 201 | |
| 202 | EXPORT_SYMBOL_GPL(cpuidle_pause_and_lock); |
| 203 | |
| 204 | /** |
| 205 | * cpuidle_resume_and_unlock - resumes CPUIDLE operation |
| 206 | */ |
| 207 | void cpuidle_resume_and_unlock(void) |
| 208 | { |
| 209 | cpuidle_install_idle_handler(); |
| 210 | mutex_unlock(&cpuidle_lock); |
| 211 | } |
| 212 | |
| 213 | EXPORT_SYMBOL_GPL(cpuidle_resume_and_unlock); |
| 214 | |
Preeti U Murthy | 8651f97 | 2012-07-09 10:12:56 +0200 | [diff] [blame] | 215 | /* Currently used in suspend/resume path to suspend cpuidle */ |
| 216 | void cpuidle_pause(void) |
| 217 | { |
| 218 | mutex_lock(&cpuidle_lock); |
| 219 | cpuidle_uninstall_idle_handler(); |
| 220 | mutex_unlock(&cpuidle_lock); |
| 221 | } |
| 222 | |
| 223 | /* Currently used in suspend/resume path to resume cpuidle */ |
| 224 | void cpuidle_resume(void) |
| 225 | { |
| 226 | mutex_lock(&cpuidle_lock); |
| 227 | cpuidle_install_idle_handler(); |
| 228 | mutex_unlock(&cpuidle_lock); |
| 229 | } |
| 230 | |
Rafael J. Wysocki | d8c216c | 2011-01-08 00:29:20 +0100 | [diff] [blame] | 231 | #ifdef CONFIG_ARCH_HAS_CPU_RELAX |
Deepthi Dharwar | 46bcfad | 2011-10-28 16:20:42 +0530 | [diff] [blame] | 232 | static int poll_idle(struct cpuidle_device *dev, |
| 233 | struct cpuidle_driver *drv, int index) |
Rafael J. Wysocki | d8c216c | 2011-01-08 00:29:20 +0100 | [diff] [blame] | 234 | { |
| 235 | ktime_t t1, t2; |
| 236 | s64 diff; |
Rafael J. Wysocki | d8c216c | 2011-01-08 00:29:20 +0100 | [diff] [blame] | 237 | |
| 238 | t1 = ktime_get(); |
| 239 | local_irq_enable(); |
| 240 | while (!need_resched()) |
| 241 | cpu_relax(); |
| 242 | |
| 243 | t2 = ktime_get(); |
| 244 | diff = ktime_to_us(ktime_sub(t2, t1)); |
| 245 | if (diff > INT_MAX) |
| 246 | diff = INT_MAX; |
| 247 | |
Deepthi Dharwar | e978aa7 | 2011-10-28 16:20:09 +0530 | [diff] [blame] | 248 | dev->last_residency = (int) diff; |
| 249 | |
| 250 | return index; |
Rafael J. Wysocki | d8c216c | 2011-01-08 00:29:20 +0100 | [diff] [blame] | 251 | } |
| 252 | |
Deepthi Dharwar | 46bcfad | 2011-10-28 16:20:42 +0530 | [diff] [blame] | 253 | static void poll_idle_init(struct cpuidle_driver *drv) |
Rafael J. Wysocki | d8c216c | 2011-01-08 00:29:20 +0100 | [diff] [blame] | 254 | { |
Deepthi Dharwar | 46bcfad | 2011-10-28 16:20:42 +0530 | [diff] [blame] | 255 | struct cpuidle_state *state = &drv->states[0]; |
Rafael J. Wysocki | d8c216c | 2011-01-08 00:29:20 +0100 | [diff] [blame] | 256 | |
Thomas Renninger | 720f1c3 | 2011-01-07 11:29:43 +0100 | [diff] [blame] | 257 | snprintf(state->name, CPUIDLE_NAME_LEN, "POLL"); |
Rafael J. Wysocki | d8c216c | 2011-01-08 00:29:20 +0100 | [diff] [blame] | 258 | snprintf(state->desc, CPUIDLE_DESC_LEN, "CPUIDLE CORE POLL IDLE"); |
| 259 | state->exit_latency = 0; |
| 260 | state->target_residency = 0; |
| 261 | state->power_usage = -1; |
Len Brown | d247632 | 2011-01-12 02:34:59 -0500 | [diff] [blame] | 262 | state->flags = 0; |
Rafael J. Wysocki | d8c216c | 2011-01-08 00:29:20 +0100 | [diff] [blame] | 263 | state->enter = poll_idle; |
Rafael J. Wysocki | cbc9ef0 | 2012-07-03 19:07:42 +0200 | [diff] [blame] | 264 | state->disabled = false; |
Rafael J. Wysocki | d8c216c | 2011-01-08 00:29:20 +0100 | [diff] [blame] | 265 | } |
| 266 | #else |
Deepthi Dharwar | 46bcfad | 2011-10-28 16:20:42 +0530 | [diff] [blame] | 267 | static void poll_idle_init(struct cpuidle_driver *drv) {} |
Rafael J. Wysocki | d8c216c | 2011-01-08 00:29:20 +0100 | [diff] [blame] | 268 | #endif /* CONFIG_ARCH_HAS_CPU_RELAX */ |
| 269 | |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 270 | /** |
| 271 | * cpuidle_enable_device - enables idle PM for a CPU |
| 272 | * @dev: the CPU |
| 273 | * |
| 274 | * This function must be called between cpuidle_pause_and_lock and |
| 275 | * cpuidle_resume_and_unlock when used externally. |
| 276 | */ |
| 277 | int cpuidle_enable_device(struct cpuidle_device *dev) |
| 278 | { |
Daniel Lezcano | 5df0aa7 | 2013-06-12 15:08:54 +0200 | [diff] [blame] | 279 | int ret; |
Daniel Lezcano | bf4d1b5 | 2012-10-31 16:44:48 +0000 | [diff] [blame] | 280 | struct cpuidle_driver *drv; |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 281 | |
Srivatsa S. Bhat | 1b0a0e9 | 2012-05-04 14:06:02 -0700 | [diff] [blame] | 282 | if (!dev) |
| 283 | return -EINVAL; |
| 284 | |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 285 | if (dev->enabled) |
| 286 | return 0; |
Daniel Lezcano | bf4d1b5 | 2012-10-31 16:44:48 +0000 | [diff] [blame] | 287 | |
| 288 | drv = cpuidle_get_cpu_driver(dev); |
| 289 | |
Robert Lee | e168979 | 2012-03-20 15:22:42 -0500 | [diff] [blame] | 290 | if (!drv || !cpuidle_curr_governor) |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 291 | return -EIO; |
Daniel Lezcano | bf4d1b5 | 2012-10-31 16:44:48 +0000 | [diff] [blame] | 292 | |
Daniel Lezcano | 10b9d3f | 2013-06-12 15:08:49 +0200 | [diff] [blame] | 293 | if (!dev->registered) |
| 294 | return -EINVAL; |
| 295 | |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 296 | if (!dev->state_count) |
Daniel Lezcano | fc850f3 | 2012-03-26 14:51:26 +0200 | [diff] [blame] | 297 | dev->state_count = drv->state_count; |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 298 | |
Robert Lee | e168979 | 2012-03-20 15:22:42 -0500 | [diff] [blame] | 299 | poll_idle_init(drv); |
Rafael J. Wysocki | d8c216c | 2011-01-08 00:29:20 +0100 | [diff] [blame] | 300 | |
Daniel Lezcano | bf4d1b5 | 2012-10-31 16:44:48 +0000 | [diff] [blame] | 301 | ret = cpuidle_add_device_sysfs(dev); |
| 302 | if (ret) |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 303 | return ret; |
| 304 | |
| 305 | if (cpuidle_curr_governor->enable && |
Robert Lee | e168979 | 2012-03-20 15:22:42 -0500 | [diff] [blame] | 306 | (ret = cpuidle_curr_governor->enable(drv, dev))) |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 307 | goto fail_sysfs; |
| 308 | |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 309 | smp_wmb(); |
| 310 | |
| 311 | dev->enabled = 1; |
| 312 | |
| 313 | enabled_devices++; |
| 314 | return 0; |
| 315 | |
| 316 | fail_sysfs: |
Daniel Lezcano | bf4d1b5 | 2012-10-31 16:44:48 +0000 | [diff] [blame] | 317 | cpuidle_remove_device_sysfs(dev); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 318 | |
| 319 | return ret; |
| 320 | } |
| 321 | |
| 322 | EXPORT_SYMBOL_GPL(cpuidle_enable_device); |
| 323 | |
| 324 | /** |
| 325 | * cpuidle_disable_device - disables idle PM for a CPU |
| 326 | * @dev: the CPU |
| 327 | * |
| 328 | * This function must be called between cpuidle_pause_and_lock and |
| 329 | * cpuidle_resume_and_unlock when used externally. |
| 330 | */ |
| 331 | void cpuidle_disable_device(struct cpuidle_device *dev) |
| 332 | { |
Daniel Lezcano | bf4d1b5 | 2012-10-31 16:44:48 +0000 | [diff] [blame] | 333 | struct cpuidle_driver *drv = cpuidle_get_cpu_driver(dev); |
| 334 | |
Srivatsa S. Bhat | cf31cd1 | 2012-10-08 13:43:08 +0530 | [diff] [blame] | 335 | if (!dev || !dev->enabled) |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 336 | return; |
Daniel Lezcano | bf4d1b5 | 2012-10-31 16:44:48 +0000 | [diff] [blame] | 337 | |
| 338 | if (!drv || !cpuidle_curr_governor) |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 339 | return; |
| 340 | |
| 341 | dev->enabled = 0; |
| 342 | |
| 343 | if (cpuidle_curr_governor->disable) |
Daniel Lezcano | bf4d1b5 | 2012-10-31 16:44:48 +0000 | [diff] [blame] | 344 | cpuidle_curr_governor->disable(drv, dev); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 345 | |
Daniel Lezcano | bf4d1b5 | 2012-10-31 16:44:48 +0000 | [diff] [blame] | 346 | cpuidle_remove_device_sysfs(dev); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 347 | enabled_devices--; |
| 348 | } |
| 349 | |
| 350 | EXPORT_SYMBOL_GPL(cpuidle_disable_device); |
| 351 | |
Daniel Lezcano | f6bb51a | 2013-06-12 15:08:53 +0200 | [diff] [blame] | 352 | static void __cpuidle_unregister_device(struct cpuidle_device *dev) |
| 353 | { |
| 354 | struct cpuidle_driver *drv = cpuidle_get_cpu_driver(dev); |
| 355 | |
| 356 | list_del(&dev->device_list); |
| 357 | per_cpu(cpuidle_devices, dev->cpu) = NULL; |
| 358 | module_put(drv->owner); |
| 359 | } |
| 360 | |
Daniel Lezcano | 5df0aa7 | 2013-06-12 15:08:54 +0200 | [diff] [blame] | 361 | static int __cpuidle_device_init(struct cpuidle_device *dev) |
| 362 | { |
| 363 | memset(dev->states_usage, 0, sizeof(dev->states_usage)); |
| 364 | dev->last_residency = 0; |
| 365 | |
| 366 | return 0; |
| 367 | } |
| 368 | |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 369 | /** |
Venkatesh Pallipadi | dcb84f3 | 2008-05-19 19:09:27 -0400 | [diff] [blame] | 370 | * __cpuidle_register_device - internal register function called before register |
| 371 | * and enable routines |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 372 | * @dev: the cpu |
Venkatesh Pallipadi | dcb84f3 | 2008-05-19 19:09:27 -0400 | [diff] [blame] | 373 | * |
| 374 | * cpuidle_lock mutex must be held before this is called |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 375 | */ |
Venkatesh Pallipadi | dcb84f3 | 2008-05-19 19:09:27 -0400 | [diff] [blame] | 376 | static int __cpuidle_register_device(struct cpuidle_device *dev) |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 377 | { |
| 378 | int ret; |
Daniel Lezcano | bf4d1b5 | 2012-10-31 16:44:48 +0000 | [diff] [blame] | 379 | struct cpuidle_driver *drv = cpuidle_get_cpu_driver(dev); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 380 | |
Daniel Lezcano | bf4d1b5 | 2012-10-31 16:44:48 +0000 | [diff] [blame] | 381 | if (!try_module_get(drv->owner)) |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 382 | return -EINVAL; |
| 383 | |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 384 | per_cpu(cpuidle_devices, dev->cpu) = dev; |
| 385 | list_add(&dev->device_list, &cpuidle_detected_devices); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 386 | |
Colin Cross | 4126c01 | 2012-05-07 17:57:41 -0700 | [diff] [blame] | 387 | ret = cpuidle_coupled_register_device(dev); |
Daniel Lezcano | f6bb51a | 2013-06-12 15:08:53 +0200 | [diff] [blame] | 388 | if (ret) { |
| 389 | __cpuidle_unregister_device(dev); |
| 390 | return ret; |
| 391 | } |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 392 | |
Venkatesh Pallipadi | dcb84f3 | 2008-05-19 19:09:27 -0400 | [diff] [blame] | 393 | dev->registered = 1; |
| 394 | return 0; |
| 395 | } |
| 396 | |
| 397 | /** |
| 398 | * cpuidle_register_device - registers a CPU's idle PM feature |
| 399 | * @dev: the cpu |
| 400 | */ |
| 401 | int cpuidle_register_device(struct cpuidle_device *dev) |
| 402 | { |
Daniel Lezcano | c878a52 | 2013-06-12 15:08:55 +0200 | [diff] [blame] | 403 | int ret = -EBUSY; |
Venkatesh Pallipadi | dcb84f3 | 2008-05-19 19:09:27 -0400 | [diff] [blame] | 404 | |
Srivatsa S. Bhat | 1b0a0e9 | 2012-05-04 14:06:02 -0700 | [diff] [blame] | 405 | if (!dev) |
| 406 | return -EINVAL; |
| 407 | |
Venkatesh Pallipadi | dcb84f3 | 2008-05-19 19:09:27 -0400 | [diff] [blame] | 408 | mutex_lock(&cpuidle_lock); |
| 409 | |
Daniel Lezcano | c878a52 | 2013-06-12 15:08:55 +0200 | [diff] [blame] | 410 | if (dev->registered) |
| 411 | goto out_unlock; |
| 412 | |
Daniel Lezcano | 5df0aa7 | 2013-06-12 15:08:54 +0200 | [diff] [blame] | 413 | ret = __cpuidle_device_init(dev); |
| 414 | if (ret) |
| 415 | goto out_unlock; |
| 416 | |
Daniel Lezcano | f6bb51a | 2013-06-12 15:08:53 +0200 | [diff] [blame] | 417 | ret = __cpuidle_register_device(dev); |
| 418 | if (ret) |
| 419 | goto out_unlock; |
| 420 | |
| 421 | ret = cpuidle_add_sysfs(dev); |
| 422 | if (ret) |
| 423 | goto out_unregister; |
Venkatesh Pallipadi | dcb84f3 | 2008-05-19 19:09:27 -0400 | [diff] [blame] | 424 | |
Daniel Lezcano | 10b9d3f | 2013-06-12 15:08:49 +0200 | [diff] [blame] | 425 | ret = cpuidle_enable_device(dev); |
Daniel Lezcano | f6bb51a | 2013-06-12 15:08:53 +0200 | [diff] [blame] | 426 | if (ret) |
| 427 | goto out_sysfs; |
Daniel Lezcano | 10b9d3f | 2013-06-12 15:08:49 +0200 | [diff] [blame] | 428 | |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 429 | cpuidle_install_idle_handler(); |
| 430 | |
Daniel Lezcano | f6bb51a | 2013-06-12 15:08:53 +0200 | [diff] [blame] | 431 | out_unlock: |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 432 | mutex_unlock(&cpuidle_lock); |
| 433 | |
Daniel Lezcano | f6bb51a | 2013-06-12 15:08:53 +0200 | [diff] [blame] | 434 | return ret; |
| 435 | |
| 436 | out_sysfs: |
| 437 | cpuidle_remove_sysfs(dev); |
| 438 | out_unregister: |
| 439 | __cpuidle_unregister_device(dev); |
| 440 | goto out_unlock; |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 441 | } |
| 442 | |
| 443 | EXPORT_SYMBOL_GPL(cpuidle_register_device); |
| 444 | |
| 445 | /** |
| 446 | * cpuidle_unregister_device - unregisters a CPU's idle PM feature |
| 447 | * @dev: the cpu |
| 448 | */ |
| 449 | void cpuidle_unregister_device(struct cpuidle_device *dev) |
| 450 | { |
Venkatesh Pallipadi | dcb84f3 | 2008-05-19 19:09:27 -0400 | [diff] [blame] | 451 | if (dev->registered == 0) |
| 452 | return; |
| 453 | |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 454 | cpuidle_pause_and_lock(); |
| 455 | |
| 456 | cpuidle_disable_device(dev); |
| 457 | |
Daniel Lezcano | 1aef40e | 2012-10-26 12:26:24 +0200 | [diff] [blame] | 458 | cpuidle_remove_sysfs(dev); |
Daniel Lezcano | f6bb51a | 2013-06-12 15:08:53 +0200 | [diff] [blame] | 459 | |
| 460 | __cpuidle_unregister_device(dev); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 461 | |
Colin Cross | 4126c01 | 2012-05-07 17:57:41 -0700 | [diff] [blame] | 462 | cpuidle_coupled_unregister_device(dev); |
| 463 | |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 464 | cpuidle_resume_and_unlock(); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 465 | } |
| 466 | |
| 467 | EXPORT_SYMBOL_GPL(cpuidle_unregister_device); |
| 468 | |
Daniel Lezcano | 1c192d0 | 2013-04-23 15:28:44 +0000 | [diff] [blame] | 469 | /** |
Daniel Lezcano | 4c637b2 | 2013-04-23 08:54:33 +0000 | [diff] [blame] | 470 | * cpuidle_unregister: unregister a driver and the devices. This function |
| 471 | * can be used only if the driver has been previously registered through |
| 472 | * the cpuidle_register function. |
| 473 | * |
| 474 | * @drv: a valid pointer to a struct cpuidle_driver |
| 475 | */ |
| 476 | void cpuidle_unregister(struct cpuidle_driver *drv) |
| 477 | { |
| 478 | int cpu; |
| 479 | struct cpuidle_device *device; |
| 480 | |
Daniel Lezcano | 82467a5 | 2013-06-07 21:53:09 +0000 | [diff] [blame] | 481 | for_each_cpu(cpu, drv->cpumask) { |
Daniel Lezcano | 4c637b2 | 2013-04-23 08:54:33 +0000 | [diff] [blame] | 482 | device = &per_cpu(cpuidle_dev, cpu); |
| 483 | cpuidle_unregister_device(device); |
| 484 | } |
| 485 | |
| 486 | cpuidle_unregister_driver(drv); |
| 487 | } |
| 488 | EXPORT_SYMBOL_GPL(cpuidle_unregister); |
| 489 | |
| 490 | /** |
| 491 | * cpuidle_register: registers the driver and the cpu devices with the |
| 492 | * coupled_cpus passed as parameter. This function is used for all common |
| 493 | * initialization pattern there are in the arch specific drivers. The |
| 494 | * devices is globally defined in this file. |
| 495 | * |
| 496 | * @drv : a valid pointer to a struct cpuidle_driver |
| 497 | * @coupled_cpus: a cpumask for the coupled states |
| 498 | * |
| 499 | * Returns 0 on success, < 0 otherwise |
| 500 | */ |
| 501 | int cpuidle_register(struct cpuidle_driver *drv, |
| 502 | const struct cpumask *const coupled_cpus) |
| 503 | { |
| 504 | int ret, cpu; |
| 505 | struct cpuidle_device *device; |
| 506 | |
| 507 | ret = cpuidle_register_driver(drv); |
| 508 | if (ret) { |
| 509 | pr_err("failed to register cpuidle driver\n"); |
| 510 | return ret; |
| 511 | } |
| 512 | |
Daniel Lezcano | 82467a5 | 2013-06-07 21:53:09 +0000 | [diff] [blame] | 513 | for_each_cpu(cpu, drv->cpumask) { |
Daniel Lezcano | 4c637b2 | 2013-04-23 08:54:33 +0000 | [diff] [blame] | 514 | device = &per_cpu(cpuidle_dev, cpu); |
| 515 | device->cpu = cpu; |
| 516 | |
| 517 | #ifdef CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED |
| 518 | /* |
| 519 | * On multiplatform for ARM, the coupled idle states could |
| 520 | * enabled in the kernel even if the cpuidle driver does not |
| 521 | * use it. Note, coupled_cpus is a struct copy. |
| 522 | */ |
| 523 | if (coupled_cpus) |
| 524 | device->coupled_cpus = *coupled_cpus; |
| 525 | #endif |
| 526 | ret = cpuidle_register_device(device); |
| 527 | if (!ret) |
| 528 | continue; |
| 529 | |
| 530 | pr_err("Failed to register cpuidle device for cpu%d\n", cpu); |
| 531 | |
| 532 | cpuidle_unregister(drv); |
| 533 | break; |
| 534 | } |
| 535 | |
| 536 | return ret; |
| 537 | } |
| 538 | EXPORT_SYMBOL_GPL(cpuidle_register); |
| 539 | |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 540 | #ifdef CONFIG_SMP |
| 541 | |
| 542 | static void smp_callback(void *v) |
| 543 | { |
| 544 | /* we already woke the CPU up, nothing more to do */ |
| 545 | } |
| 546 | |
| 547 | /* |
| 548 | * This function gets called when a part of the kernel has a new latency |
| 549 | * requirement. This means we need to get all processors out of their C-state, |
| 550 | * and then recalculate a new suitable C-state. Just do a cross-cpu IPI; that |
| 551 | * wakes them all right up. |
| 552 | */ |
| 553 | static int cpuidle_latency_notify(struct notifier_block *b, |
| 554 | unsigned long l, void *v) |
| 555 | { |
Jens Axboe | 8691e5a | 2008-06-06 11:18:06 +0200 | [diff] [blame] | 556 | smp_call_function(smp_callback, NULL, 1); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 557 | return NOTIFY_OK; |
| 558 | } |
| 559 | |
| 560 | static struct notifier_block cpuidle_latency_notifier = { |
| 561 | .notifier_call = cpuidle_latency_notify, |
| 562 | }; |
| 563 | |
Mark Gross | d82b351 | 2008-02-04 22:30:08 -0800 | [diff] [blame] | 564 | static inline void latency_notifier_init(struct notifier_block *n) |
| 565 | { |
| 566 | pm_qos_add_notifier(PM_QOS_CPU_DMA_LATENCY, n); |
| 567 | } |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 568 | |
| 569 | #else /* CONFIG_SMP */ |
| 570 | |
| 571 | #define latency_notifier_init(x) do { } while (0) |
| 572 | |
| 573 | #endif /* CONFIG_SMP */ |
| 574 | |
| 575 | /** |
| 576 | * cpuidle_init - core initializer |
| 577 | */ |
| 578 | static int __init cpuidle_init(void) |
| 579 | { |
| 580 | int ret; |
| 581 | |
Len Brown | 62027ae | 2011-04-01 18:13:10 -0400 | [diff] [blame] | 582 | if (cpuidle_disabled()) |
| 583 | return -ENODEV; |
| 584 | |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame] | 585 | ret = cpuidle_add_interface(cpu_subsys.dev_root); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 586 | if (ret) |
| 587 | return ret; |
| 588 | |
| 589 | latency_notifier_init(&cpuidle_latency_notifier); |
| 590 | |
| 591 | return 0; |
| 592 | } |
| 593 | |
Len Brown | 62027ae | 2011-04-01 18:13:10 -0400 | [diff] [blame] | 594 | module_param(off, int, 0444); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 595 | core_initcall(cpuidle_init); |