Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1 | /* |
| 2 | * driver.c - driver support |
| 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 | |
| 11 | #include <linux/mutex.h> |
| 12 | #include <linux/module.h> |
| 13 | #include <linux/cpuidle.h> |
Daniel Lezcano | a06df06 | 2013-03-27 10:22:10 +0000 | [diff] [blame] | 14 | #include <linux/cpumask.h> |
| 15 | #include <linux/clockchips.h> |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 16 | |
| 17 | #include "cpuidle.h" |
| 18 | |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 19 | DEFINE_SPINLOCK(cpuidle_driver_lock); |
| 20 | |
Daniel Lezcano | 82467a5 | 2013-06-07 21:53:09 +0000 | [diff] [blame] | 21 | #ifdef CONFIG_CPU_IDLE_MULTIPLE_DRIVERS |
| 22 | |
| 23 | static DEFINE_PER_CPU(struct cpuidle_driver *, cpuidle_drivers); |
| 24 | |
Daniel Lezcano | 6d19cb9 | 2013-06-07 21:53:10 +0000 | [diff] [blame] | 25 | /** |
| 26 | * __cpuidle_get_cpu_driver - return the cpuidle driver tied to a CPU. |
| 27 | * @cpu: the CPU handled by the driver |
| 28 | * |
| 29 | * Returns a pointer to struct cpuidle_driver or NULL if no driver has been |
| 30 | * registered for @cpu. |
| 31 | */ |
Daniel Lezcano | 82467a5 | 2013-06-07 21:53:09 +0000 | [diff] [blame] | 32 | static struct cpuidle_driver *__cpuidle_get_cpu_driver(int cpu) |
| 33 | { |
| 34 | return per_cpu(cpuidle_drivers, cpu); |
| 35 | } |
| 36 | |
Daniel Lezcano | 6d19cb9 | 2013-06-07 21:53:10 +0000 | [diff] [blame] | 37 | /** |
| 38 | * __cpuidle_unset_driver - unset per CPU driver variables. |
| 39 | * @drv: a valid pointer to a struct cpuidle_driver |
| 40 | * |
| 41 | * For each CPU in the driver's CPU mask, unset the registered driver per CPU |
| 42 | * variable. If @drv is different from the registered driver, the corresponding |
| 43 | * variable is not cleared. |
| 44 | */ |
Daniel Lezcano | 82467a5 | 2013-06-07 21:53:09 +0000 | [diff] [blame] | 45 | static inline void __cpuidle_unset_driver(struct cpuidle_driver *drv) |
| 46 | { |
| 47 | int cpu; |
| 48 | |
| 49 | for_each_cpu(cpu, drv->cpumask) { |
| 50 | |
| 51 | if (drv != __cpuidle_get_cpu_driver(cpu)) |
| 52 | continue; |
| 53 | |
| 54 | per_cpu(cpuidle_drivers, cpu) = NULL; |
| 55 | } |
| 56 | } |
| 57 | |
Daniel Lezcano | 6d19cb9 | 2013-06-07 21:53:10 +0000 | [diff] [blame] | 58 | /** |
| 59 | * __cpuidle_set_driver - set per CPU driver variables the the given driver. |
| 60 | * @drv: a valid pointer to a struct cpuidle_driver |
| 61 | * |
| 62 | * For each CPU in the driver's cpumask, unset the registered driver per CPU |
| 63 | * to @drv. |
| 64 | * |
| 65 | * Returns 0 on success, -EBUSY if the CPUs have driver(s) already. |
| 66 | */ |
Daniel Lezcano | 82467a5 | 2013-06-07 21:53:09 +0000 | [diff] [blame] | 67 | static inline int __cpuidle_set_driver(struct cpuidle_driver *drv) |
| 68 | { |
| 69 | int cpu; |
| 70 | |
| 71 | for_each_cpu(cpu, drv->cpumask) { |
| 72 | |
| 73 | if (__cpuidle_get_cpu_driver(cpu)) { |
| 74 | __cpuidle_unset_driver(drv); |
| 75 | return -EBUSY; |
| 76 | } |
| 77 | |
| 78 | per_cpu(cpuidle_drivers, cpu) = drv; |
| 79 | } |
| 80 | |
| 81 | return 0; |
| 82 | } |
| 83 | |
| 84 | #else |
| 85 | |
| 86 | static struct cpuidle_driver *cpuidle_curr_driver; |
| 87 | |
Daniel Lezcano | 6d19cb9 | 2013-06-07 21:53:10 +0000 | [diff] [blame] | 88 | /** |
| 89 | * __cpuidle_get_cpu_driver - return the global cpuidle driver pointer. |
| 90 | * @cpu: ignored without the multiple driver support |
| 91 | * |
| 92 | * Return a pointer to a struct cpuidle_driver object or NULL if no driver was |
| 93 | * previously registered. |
| 94 | */ |
Daniel Lezcano | 82467a5 | 2013-06-07 21:53:09 +0000 | [diff] [blame] | 95 | static inline struct cpuidle_driver *__cpuidle_get_cpu_driver(int cpu) |
| 96 | { |
| 97 | return cpuidle_curr_driver; |
| 98 | } |
| 99 | |
Daniel Lezcano | 6d19cb9 | 2013-06-07 21:53:10 +0000 | [diff] [blame] | 100 | /** |
| 101 | * __cpuidle_set_driver - assign the global cpuidle driver variable. |
| 102 | * @drv: pointer to a struct cpuidle_driver object |
| 103 | * |
| 104 | * Returns 0 on success, -EBUSY if the driver is already registered. |
| 105 | */ |
Daniel Lezcano | 82467a5 | 2013-06-07 21:53:09 +0000 | [diff] [blame] | 106 | static inline int __cpuidle_set_driver(struct cpuidle_driver *drv) |
| 107 | { |
| 108 | if (cpuidle_curr_driver) |
| 109 | return -EBUSY; |
| 110 | |
| 111 | cpuidle_curr_driver = drv; |
| 112 | |
| 113 | return 0; |
| 114 | } |
| 115 | |
Daniel Lezcano | 6d19cb9 | 2013-06-07 21:53:10 +0000 | [diff] [blame] | 116 | /** |
| 117 | * __cpuidle_unset_driver - unset the global cpuidle driver variable. |
| 118 | * @drv: a pointer to a struct cpuidle_driver |
| 119 | * |
| 120 | * Reset the global cpuidle variable to NULL. If @drv does not match the |
| 121 | * registered driver, do nothing. |
| 122 | */ |
Daniel Lezcano | 82467a5 | 2013-06-07 21:53:09 +0000 | [diff] [blame] | 123 | static inline void __cpuidle_unset_driver(struct cpuidle_driver *drv) |
| 124 | { |
| 125 | if (drv == cpuidle_curr_driver) |
| 126 | cpuidle_curr_driver = NULL; |
| 127 | } |
| 128 | |
| 129 | #endif |
Daniel Lezcano | bf4d1b5 | 2012-10-31 16:44:48 +0000 | [diff] [blame] | 130 | |
Daniel Lezcano | 6d19cb9 | 2013-06-07 21:53:10 +0000 | [diff] [blame] | 131 | /** |
| 132 | * cpuidle_setup_broadcast_timer - enable/disable the broadcast timer |
| 133 | * @arg: a void pointer used to match the SMP cross call API |
| 134 | * |
| 135 | * @arg is used as a value of type 'long' with on of the two values: |
| 136 | * - CLOCK_EVT_NOTIFY_BROADCAST_ON |
| 137 | * - CLOCK_EVT_NOTIFY_BROADCAST_OFF |
| 138 | * |
| 139 | * Set the broadcast timer notification for the current CPU. This function |
| 140 | * is executed per CPU by an SMP cross call. It not supposed to be called |
| 141 | * directly. |
| 142 | */ |
Daniel Lezcano | a06df06 | 2013-03-27 10:22:10 +0000 | [diff] [blame] | 143 | static void cpuidle_setup_broadcast_timer(void *arg) |
Daniel Lezcano | 13dd52f | 2012-10-31 16:44:47 +0000 | [diff] [blame] | 144 | { |
Daniel Lezcano | a06df06 | 2013-03-27 10:22:10 +0000 | [diff] [blame] | 145 | int cpu = smp_processor_id(); |
| 146 | clockevents_notify((long)(arg), &cpu); |
| 147 | } |
| 148 | |
Daniel Lezcano | 6d19cb9 | 2013-06-07 21:53:10 +0000 | [diff] [blame] | 149 | /** |
| 150 | * __cpuidle_driver_init - initialize the driver's internal data |
| 151 | * @drv: a valid pointer to a struct cpuidle_driver |
| 152 | * |
| 153 | * Returns 0 on success, a negative error code otherwise. |
| 154 | */ |
Daniel Lezcano | 82467a5 | 2013-06-07 21:53:09 +0000 | [diff] [blame] | 155 | static int __cpuidle_driver_init(struct cpuidle_driver *drv) |
Daniel Lezcano | a06df06 | 2013-03-27 10:22:10 +0000 | [diff] [blame] | 156 | { |
| 157 | int i; |
| 158 | |
Daniel Lezcano | 13dd52f | 2012-10-31 16:44:47 +0000 | [diff] [blame] | 159 | drv->refcnt = 0; |
Daniel Lezcano | a06df06 | 2013-03-27 10:22:10 +0000 | [diff] [blame] | 160 | |
Daniel Lezcano | 6d19cb9 | 2013-06-07 21:53:10 +0000 | [diff] [blame] | 161 | /* |
| 162 | * Use all possible CPUs as the default, because if the kernel boots |
| 163 | * with some CPUs offline and then we online one of them, the CPU |
| 164 | * notifier has to know which driver to assign. |
| 165 | */ |
Daniel Lezcano | 82467a5 | 2013-06-07 21:53:09 +0000 | [diff] [blame] | 166 | if (!drv->cpumask) |
| 167 | drv->cpumask = (struct cpumask *)cpu_possible_mask; |
| 168 | |
Daniel Lezcano | 6d19cb9 | 2013-06-07 21:53:10 +0000 | [diff] [blame] | 169 | /* |
| 170 | * Look for the timer stop flag in the different states, so that we know |
| 171 | * if the broadcast timer has to be set up. The loop is in the reverse |
| 172 | * order, because usually on of the the deeper states has this flag set. |
| 173 | */ |
Daniel Lezcano | a06df06 | 2013-03-27 10:22:10 +0000 | [diff] [blame] | 174 | for (i = drv->state_count - 1; i >= 0 ; i--) { |
| 175 | |
| 176 | if (!(drv->states[i].flags & CPUIDLE_FLAG_TIMER_STOP)) |
| 177 | continue; |
| 178 | |
| 179 | drv->bctimer = 1; |
Daniel Lezcano | a06df06 | 2013-03-27 10:22:10 +0000 | [diff] [blame] | 180 | break; |
| 181 | } |
Daniel Lezcano | 82467a5 | 2013-06-07 21:53:09 +0000 | [diff] [blame] | 182 | |
| 183 | return 0; |
Daniel Lezcano | 13dd52f | 2012-10-31 16:44:47 +0000 | [diff] [blame] | 184 | } |
| 185 | |
Daniel Lezcano | 6d19cb9 | 2013-06-07 21:53:10 +0000 | [diff] [blame] | 186 | /** |
| 187 | * __cpuidle_register_driver: register the driver |
| 188 | * @drv: a valid pointer to a struct cpuidle_driver |
| 189 | * |
| 190 | * Do some sanity checks, initialize the driver, assign the driver to the |
| 191 | * global cpuidle driver variable(s) and set up the broadcast timer if the |
| 192 | * cpuidle driver has some states that shut down the local timer. |
| 193 | * |
| 194 | * Returns 0 on success, a negative error code otherwise: |
| 195 | * * -EINVAL if the driver pointer is NULL or no idle states are available |
| 196 | * * -ENODEV if the cpuidle framework is disabled |
| 197 | * * -EBUSY if the driver is already assigned to the global variable(s) |
| 198 | */ |
Daniel Lezcano | 82467a5 | 2013-06-07 21:53:09 +0000 | [diff] [blame] | 199 | static int __cpuidle_register_driver(struct cpuidle_driver *drv) |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 200 | { |
Daniel Lezcano | 82467a5 | 2013-06-07 21:53:09 +0000 | [diff] [blame] | 201 | int ret; |
| 202 | |
Daniel Lezcano | fc850f3 | 2012-03-26 14:51:26 +0200 | [diff] [blame] | 203 | if (!drv || !drv->state_count) |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 204 | return -EINVAL; |
| 205 | |
Len Brown | 62027ae | 2011-04-01 18:13:10 -0400 | [diff] [blame] | 206 | if (cpuidle_disabled()) |
| 207 | return -ENODEV; |
| 208 | |
Daniel Lezcano | 82467a5 | 2013-06-07 21:53:09 +0000 | [diff] [blame] | 209 | ret = __cpuidle_driver_init(drv); |
| 210 | if (ret) |
| 211 | return ret; |
Daniel Lezcano | ed95347 | 2012-09-22 00:38:32 +0200 | [diff] [blame] | 212 | |
Daniel Lezcano | 82467a5 | 2013-06-07 21:53:09 +0000 | [diff] [blame] | 213 | ret = __cpuidle_set_driver(drv); |
| 214 | if (ret) |
| 215 | return ret; |
Daniel Lezcano | ed95347 | 2012-09-22 00:38:32 +0200 | [diff] [blame] | 216 | |
Daniel Lezcano | 82467a5 | 2013-06-07 21:53:09 +0000 | [diff] [blame] | 217 | if (drv->bctimer) |
| 218 | on_each_cpu_mask(drv->cpumask, cpuidle_setup_broadcast_timer, |
| 219 | (void *)CLOCK_EVT_NOTIFY_BROADCAST_ON, 1); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 220 | |
| 221 | return 0; |
| 222 | } |
Daniel Lezcano | 13dd52f | 2012-10-31 16:44:47 +0000 | [diff] [blame] | 223 | |
Daniel Lezcano | 82467a5 | 2013-06-07 21:53:09 +0000 | [diff] [blame] | 224 | /** |
Daniel Lezcano | 6d19cb9 | 2013-06-07 21:53:10 +0000 | [diff] [blame] | 225 | * __cpuidle_unregister_driver - unregister the driver |
| 226 | * @drv: a valid pointer to a struct cpuidle_driver |
| 227 | * |
| 228 | * Check if the driver is no longer in use, reset the global cpuidle driver |
| 229 | * variable(s) and disable the timer broadcast notification mechanism if it was |
| 230 | * in use. |
| 231 | * |
Daniel Lezcano | 82467a5 | 2013-06-07 21:53:09 +0000 | [diff] [blame] | 232 | */ |
| 233 | static void __cpuidle_unregister_driver(struct cpuidle_driver *drv) |
Daniel Lezcano | 13dd52f | 2012-10-31 16:44:47 +0000 | [diff] [blame] | 234 | { |
Daniel Lezcano | 82467a5 | 2013-06-07 21:53:09 +0000 | [diff] [blame] | 235 | if (WARN_ON(drv->refcnt > 0)) |
Daniel Lezcano | 13dd52f | 2012-10-31 16:44:47 +0000 | [diff] [blame] | 236 | return; |
| 237 | |
Daniel Lezcano | a06df06 | 2013-03-27 10:22:10 +0000 | [diff] [blame] | 238 | if (drv->bctimer) { |
| 239 | drv->bctimer = 0; |
Daniel Lezcano | 82467a5 | 2013-06-07 21:53:09 +0000 | [diff] [blame] | 240 | on_each_cpu_mask(drv->cpumask, cpuidle_setup_broadcast_timer, |
Daniel Lezcano | a06df06 | 2013-03-27 10:22:10 +0000 | [diff] [blame] | 241 | (void *)CLOCK_EVT_NOTIFY_BROADCAST_OFF, 1); |
| 242 | } |
Daniel Lezcano | bf4d1b5 | 2012-10-31 16:44:48 +0000 | [diff] [blame] | 243 | |
Daniel Lezcano | 82467a5 | 2013-06-07 21:53:09 +0000 | [diff] [blame] | 244 | __cpuidle_unset_driver(drv); |
Daniel Lezcano | 13dd52f | 2012-10-31 16:44:47 +0000 | [diff] [blame] | 245 | } |
| 246 | |
| 247 | /** |
| 248 | * cpuidle_register_driver - registers a driver |
Daniel Lezcano | 6d19cb9 | 2013-06-07 21:53:10 +0000 | [diff] [blame] | 249 | * @drv: a pointer to a valid struct cpuidle_driver |
| 250 | * |
| 251 | * Register the driver under a lock to prevent concurrent attempts to |
| 252 | * [un]register the driver from occuring at the same time. |
| 253 | * |
| 254 | * Returns 0 on success, a negative error code (returned by |
| 255 | * __cpuidle_register_driver()) otherwise. |
Daniel Lezcano | 13dd52f | 2012-10-31 16:44:47 +0000 | [diff] [blame] | 256 | */ |
| 257 | int cpuidle_register_driver(struct cpuidle_driver *drv) |
| 258 | { |
| 259 | int ret; |
| 260 | |
| 261 | spin_lock(&cpuidle_driver_lock); |
Daniel Lezcano | 82467a5 | 2013-06-07 21:53:09 +0000 | [diff] [blame] | 262 | ret = __cpuidle_register_driver(drv); |
Daniel Lezcano | 13dd52f | 2012-10-31 16:44:47 +0000 | [diff] [blame] | 263 | spin_unlock(&cpuidle_driver_lock); |
| 264 | |
| 265 | return ret; |
| 266 | } |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 267 | EXPORT_SYMBOL_GPL(cpuidle_register_driver); |
| 268 | |
| 269 | /** |
| 270 | * cpuidle_unregister_driver - unregisters a driver |
Daniel Lezcano | 6d19cb9 | 2013-06-07 21:53:10 +0000 | [diff] [blame] | 271 | * @drv: a pointer to a valid struct cpuidle_driver |
| 272 | * |
| 273 | * Unregisters the cpuidle driver under a lock to prevent concurrent attempts |
| 274 | * to [un]register the driver from occuring at the same time. @drv has to |
| 275 | * match the currently registered driver. |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 276 | */ |
| 277 | void cpuidle_unregister_driver(struct cpuidle_driver *drv) |
| 278 | { |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 279 | spin_lock(&cpuidle_driver_lock); |
Daniel Lezcano | 82467a5 | 2013-06-07 21:53:09 +0000 | [diff] [blame] | 280 | __cpuidle_unregister_driver(drv); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 281 | spin_unlock(&cpuidle_driver_lock); |
| 282 | } |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 283 | EXPORT_SYMBOL_GPL(cpuidle_unregister_driver); |
Rafael J. Wysocki | 6e797a0 | 2012-06-16 15:20:11 +0200 | [diff] [blame] | 284 | |
Daniel Lezcano | bf4d1b5 | 2012-10-31 16:44:48 +0000 | [diff] [blame] | 285 | /** |
Daniel Lezcano | 6d19cb9 | 2013-06-07 21:53:10 +0000 | [diff] [blame] | 286 | * cpuidle_get_driver - return the driver tied to the current CPU. |
| 287 | * |
| 288 | * Returns a struct cpuidle_driver pointer, or NULL if no driver is registered. |
Daniel Lezcano | bf4d1b5 | 2012-10-31 16:44:48 +0000 | [diff] [blame] | 289 | */ |
| 290 | struct cpuidle_driver *cpuidle_get_driver(void) |
| 291 | { |
| 292 | struct cpuidle_driver *drv; |
| 293 | int cpu; |
| 294 | |
| 295 | cpu = get_cpu(); |
| 296 | drv = __cpuidle_get_cpu_driver(cpu); |
| 297 | put_cpu(); |
| 298 | |
| 299 | return drv; |
| 300 | } |
| 301 | EXPORT_SYMBOL_GPL(cpuidle_get_driver); |
| 302 | |
| 303 | /** |
Daniel Lezcano | 6d19cb9 | 2013-06-07 21:53:10 +0000 | [diff] [blame] | 304 | * cpuidle_get_cpu_driver - return the driver registered for a CPU. |
| 305 | * @dev: a valid pointer to a struct cpuidle_device |
| 306 | * |
| 307 | * Returns a struct cpuidle_driver pointer, or NULL if no driver is registered |
| 308 | * for the CPU associated with @dev. |
Daniel Lezcano | bf4d1b5 | 2012-10-31 16:44:48 +0000 | [diff] [blame] | 309 | */ |
| 310 | struct cpuidle_driver *cpuidle_get_cpu_driver(struct cpuidle_device *dev) |
| 311 | { |
Daniel Lezcano | bf4d1b5 | 2012-10-31 16:44:48 +0000 | [diff] [blame] | 312 | if (!dev) |
| 313 | return NULL; |
| 314 | |
Daniel Lezcano | ac34d7c | 2013-01-03 13:03:18 +0100 | [diff] [blame] | 315 | return __cpuidle_get_cpu_driver(dev->cpu); |
Daniel Lezcano | bf4d1b5 | 2012-10-31 16:44:48 +0000 | [diff] [blame] | 316 | } |
| 317 | EXPORT_SYMBOL_GPL(cpuidle_get_cpu_driver); |
| 318 | |
Daniel Lezcano | 6d19cb9 | 2013-06-07 21:53:10 +0000 | [diff] [blame] | 319 | /** |
| 320 | * cpuidle_driver_ref - get a reference to the driver. |
| 321 | * |
| 322 | * Increment the reference counter of the cpuidle driver associated with |
| 323 | * the current CPU. |
| 324 | * |
| 325 | * Returns a pointer to the driver, or NULL if the current CPU has no driver. |
| 326 | */ |
Rafael J. Wysocki | 6e797a0 | 2012-06-16 15:20:11 +0200 | [diff] [blame] | 327 | struct cpuidle_driver *cpuidle_driver_ref(void) |
| 328 | { |
| 329 | struct cpuidle_driver *drv; |
| 330 | |
| 331 | spin_lock(&cpuidle_driver_lock); |
| 332 | |
Daniel Lezcano | 13dd52f | 2012-10-31 16:44:47 +0000 | [diff] [blame] | 333 | drv = cpuidle_get_driver(); |
Daniel Fu | 3b9c10e | 2013-08-30 19:48:22 +0800 | [diff] [blame] | 334 | if (drv) |
| 335 | drv->refcnt++; |
Rafael J. Wysocki | 6e797a0 | 2012-06-16 15:20:11 +0200 | [diff] [blame] | 336 | |
| 337 | spin_unlock(&cpuidle_driver_lock); |
| 338 | return drv; |
| 339 | } |
| 340 | |
Daniel Lezcano | 6d19cb9 | 2013-06-07 21:53:10 +0000 | [diff] [blame] | 341 | /** |
| 342 | * cpuidle_driver_unref - puts down the refcount for the driver |
| 343 | * |
| 344 | * Decrement the reference counter of the cpuidle driver associated with |
| 345 | * the current CPU. |
| 346 | */ |
Rafael J. Wysocki | 6e797a0 | 2012-06-16 15:20:11 +0200 | [diff] [blame] | 347 | void cpuidle_driver_unref(void) |
| 348 | { |
Daniel Lezcano | 13dd52f | 2012-10-31 16:44:47 +0000 | [diff] [blame] | 349 | struct cpuidle_driver *drv = cpuidle_get_driver(); |
Daniel Lezcano | 42f67f2 | 2012-10-31 16:44:45 +0000 | [diff] [blame] | 350 | |
Rafael J. Wysocki | 6e797a0 | 2012-06-16 15:20:11 +0200 | [diff] [blame] | 351 | spin_lock(&cpuidle_driver_lock); |
| 352 | |
Daniel Lezcano | 42f67f2 | 2012-10-31 16:44:45 +0000 | [diff] [blame] | 353 | if (drv && !WARN_ON(drv->refcnt <= 0)) |
| 354 | drv->refcnt--; |
Rafael J. Wysocki | 6e797a0 | 2012-06-16 15:20:11 +0200 | [diff] [blame] | 355 | |
| 356 | spin_unlock(&cpuidle_driver_lock); |
| 357 | } |