cpuidle: make __cpuidle_driver_init() return void
[deliverable/linux.git] / drivers / cpuidle / driver.c
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>
14 #include <linux/cpumask.h>
15 #include <linux/clockchips.h>
16
17 #include "cpuidle.h"
18
19 DEFINE_SPINLOCK(cpuidle_driver_lock);
20
21 #ifdef CONFIG_CPU_IDLE_MULTIPLE_DRIVERS
22
23 static DEFINE_PER_CPU(struct cpuidle_driver *, cpuidle_drivers);
24
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 */
32 static struct cpuidle_driver *__cpuidle_get_cpu_driver(int cpu)
33 {
34 return per_cpu(cpuidle_drivers, cpu);
35 }
36
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 */
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
58 /**
59 * __cpuidle_set_driver - set per CPU driver variables for 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 */
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
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 */
95 static inline struct cpuidle_driver *__cpuidle_get_cpu_driver(int cpu)
96 {
97 return cpuidle_curr_driver;
98 }
99
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 */
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
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 */
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
130
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 one 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 */
143 static void cpuidle_setup_broadcast_timer(void *arg)
144 {
145 int cpu = smp_processor_id();
146 clockevents_notify((long)(arg), &cpu);
147 }
148
149 /**
150 * __cpuidle_driver_init - initialize the driver's internal data
151 * @drv: a valid pointer to a struct cpuidle_driver
152 */
153 static void __cpuidle_driver_init(struct cpuidle_driver *drv)
154 {
155 int i;
156
157 drv->refcnt = 0;
158
159 /*
160 * Use all possible CPUs as the default, because if the kernel boots
161 * with some CPUs offline and then we online one of them, the CPU
162 * notifier has to know which driver to assign.
163 */
164 if (!drv->cpumask)
165 drv->cpumask = (struct cpumask *)cpu_possible_mask;
166
167 /*
168 * Look for the timer stop flag in the different states, so that we know
169 * if the broadcast timer has to be set up. The loop is in the reverse
170 * order, because usually one of the deeper states have this flag set.
171 */
172 for (i = drv->state_count - 1; i >= 0 ; i--) {
173
174 if (!(drv->states[i].flags & CPUIDLE_FLAG_TIMER_STOP))
175 continue;
176
177 drv->bctimer = 1;
178 break;
179 }
180 }
181
182 /**
183 * __cpuidle_register_driver: register the driver
184 * @drv: a valid pointer to a struct cpuidle_driver
185 *
186 * Do some sanity checks, initialize the driver, assign the driver to the
187 * global cpuidle driver variable(s) and set up the broadcast timer if the
188 * cpuidle driver has some states that shut down the local timer.
189 *
190 * Returns 0 on success, a negative error code otherwise:
191 * * -EINVAL if the driver pointer is NULL or no idle states are available
192 * * -ENODEV if the cpuidle framework is disabled
193 * * -EBUSY if the driver is already assigned to the global variable(s)
194 */
195 static int __cpuidle_register_driver(struct cpuidle_driver *drv)
196 {
197 int ret;
198
199 if (!drv || !drv->state_count)
200 return -EINVAL;
201
202 if (cpuidle_disabled())
203 return -ENODEV;
204
205 __cpuidle_driver_init(drv);
206
207 ret = __cpuidle_set_driver(drv);
208 if (ret)
209 return ret;
210
211 if (drv->bctimer)
212 on_each_cpu_mask(drv->cpumask, cpuidle_setup_broadcast_timer,
213 (void *)CLOCK_EVT_NOTIFY_BROADCAST_ON, 1);
214
215 return 0;
216 }
217
218 /**
219 * __cpuidle_unregister_driver - unregister the driver
220 * @drv: a valid pointer to a struct cpuidle_driver
221 *
222 * Check if the driver is no longer in use, reset the global cpuidle driver
223 * variable(s) and disable the timer broadcast notification mechanism if it was
224 * in use.
225 *
226 */
227 static void __cpuidle_unregister_driver(struct cpuidle_driver *drv)
228 {
229 if (WARN_ON(drv->refcnt > 0))
230 return;
231
232 if (drv->bctimer) {
233 drv->bctimer = 0;
234 on_each_cpu_mask(drv->cpumask, cpuidle_setup_broadcast_timer,
235 (void *)CLOCK_EVT_NOTIFY_BROADCAST_OFF, 1);
236 }
237
238 __cpuidle_unset_driver(drv);
239 }
240
241 /**
242 * cpuidle_register_driver - registers a driver
243 * @drv: a pointer to a valid struct cpuidle_driver
244 *
245 * Register the driver under a lock to prevent concurrent attempts to
246 * [un]register the driver from occuring at the same time.
247 *
248 * Returns 0 on success, a negative error code (returned by
249 * __cpuidle_register_driver()) otherwise.
250 */
251 int cpuidle_register_driver(struct cpuidle_driver *drv)
252 {
253 int ret;
254
255 spin_lock(&cpuidle_driver_lock);
256 ret = __cpuidle_register_driver(drv);
257 spin_unlock(&cpuidle_driver_lock);
258
259 return ret;
260 }
261 EXPORT_SYMBOL_GPL(cpuidle_register_driver);
262
263 /**
264 * cpuidle_unregister_driver - unregisters a driver
265 * @drv: a pointer to a valid struct cpuidle_driver
266 *
267 * Unregisters the cpuidle driver under a lock to prevent concurrent attempts
268 * to [un]register the driver from occuring at the same time. @drv has to
269 * match the currently registered driver.
270 */
271 void cpuidle_unregister_driver(struct cpuidle_driver *drv)
272 {
273 spin_lock(&cpuidle_driver_lock);
274 __cpuidle_unregister_driver(drv);
275 spin_unlock(&cpuidle_driver_lock);
276 }
277 EXPORT_SYMBOL_GPL(cpuidle_unregister_driver);
278
279 /**
280 * cpuidle_get_driver - return the driver tied to the current CPU.
281 *
282 * Returns a struct cpuidle_driver pointer, or NULL if no driver is registered.
283 */
284 struct cpuidle_driver *cpuidle_get_driver(void)
285 {
286 struct cpuidle_driver *drv;
287 int cpu;
288
289 cpu = get_cpu();
290 drv = __cpuidle_get_cpu_driver(cpu);
291 put_cpu();
292
293 return drv;
294 }
295 EXPORT_SYMBOL_GPL(cpuidle_get_driver);
296
297 /**
298 * cpuidle_get_cpu_driver - return the driver registered for a CPU.
299 * @dev: a valid pointer to a struct cpuidle_device
300 *
301 * Returns a struct cpuidle_driver pointer, or NULL if no driver is registered
302 * for the CPU associated with @dev.
303 */
304 struct cpuidle_driver *cpuidle_get_cpu_driver(struct cpuidle_device *dev)
305 {
306 if (!dev)
307 return NULL;
308
309 return __cpuidle_get_cpu_driver(dev->cpu);
310 }
311 EXPORT_SYMBOL_GPL(cpuidle_get_cpu_driver);
312
313 /**
314 * cpuidle_driver_ref - get a reference to the driver.
315 *
316 * Increment the reference counter of the cpuidle driver associated with
317 * the current CPU.
318 *
319 * Returns a pointer to the driver, or NULL if the current CPU has no driver.
320 */
321 struct cpuidle_driver *cpuidle_driver_ref(void)
322 {
323 struct cpuidle_driver *drv;
324
325 spin_lock(&cpuidle_driver_lock);
326
327 drv = cpuidle_get_driver();
328 if (drv)
329 drv->refcnt++;
330
331 spin_unlock(&cpuidle_driver_lock);
332 return drv;
333 }
334
335 /**
336 * cpuidle_driver_unref - puts down the refcount for the driver
337 *
338 * Decrement the reference counter of the cpuidle driver associated with
339 * the current CPU.
340 */
341 void cpuidle_driver_unref(void)
342 {
343 struct cpuidle_driver *drv = cpuidle_get_driver();
344
345 spin_lock(&cpuidle_driver_lock);
346
347 if (drv && !WARN_ON(drv->refcnt <= 0))
348 drv->refcnt--;
349
350 spin_unlock(&cpuidle_driver_lock);
351 }
This page took 0.039186 seconds and 6 git commands to generate.