ACPI: thinkpad-acpi: trivial fix to module_desc typo
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / kernel / time / tick-broadcast.c
blob1984669fc2dd0c8ed132f7f2ad4eb894d52162eb
1 /*
2 * linux/kernel/time/tick-broadcast.c
4 * This file contains functions which emulate a local clock-event
5 * device via a broadcast event source.
7 * Copyright(C) 2005-2006, Thomas Gleixner <tglx@linutronix.de>
8 * Copyright(C) 2005-2007, Red Hat, Inc., Ingo Molnar
9 * Copyright(C) 2006-2007, Timesys Corp., Thomas Gleixner
11 * This code is licenced under the GPL version 2. For details see
12 * kernel-base/COPYING.
14 #include <linux/cpu.h>
15 #include <linux/err.h>
16 #include <linux/hrtimer.h>
17 #include <linux/irq.h>
18 #include <linux/percpu.h>
19 #include <linux/profile.h>
20 #include <linux/sched.h>
21 #include <linux/tick.h>
23 #include "tick-internal.h"
26 * Broadcast support for broken x86 hardware, where the local apic
27 * timer stops in C3 state.
30 struct tick_device tick_broadcast_device;
31 static cpumask_t tick_broadcast_mask;
32 static DEFINE_SPINLOCK(tick_broadcast_lock);
34 #ifdef CONFIG_TICK_ONESHOT
35 static void tick_broadcast_clear_oneshot(int cpu);
36 #else
37 static inline void tick_broadcast_clear_oneshot(int cpu) { }
38 #endif
41 * Debugging: see timer_list.c
43 struct tick_device *tick_get_broadcast_device(void)
45 return &tick_broadcast_device;
48 cpumask_t *tick_get_broadcast_mask(void)
50 return &tick_broadcast_mask;
54 * Start the device in periodic mode
56 static void tick_broadcast_start_periodic(struct clock_event_device *bc)
58 if (bc)
59 tick_setup_periodic(bc, 1);
63 * Check, if the device can be utilized as broadcast device:
65 int tick_check_broadcast_device(struct clock_event_device *dev)
67 if (tick_broadcast_device.evtdev ||
68 (dev->features & CLOCK_EVT_FEAT_C3STOP))
69 return 0;
71 clockevents_exchange_device(NULL, dev);
72 tick_broadcast_device.evtdev = dev;
73 if (!cpus_empty(tick_broadcast_mask))
74 tick_broadcast_start_periodic(dev);
75 return 1;
79 * Check, if the device is the broadcast device
81 int tick_is_broadcast_device(struct clock_event_device *dev)
83 return (dev && tick_broadcast_device.evtdev == dev);
87 * Check, if the device is disfunctional and a place holder, which
88 * needs to be handled by the broadcast device.
90 int tick_device_uses_broadcast(struct clock_event_device *dev, int cpu)
92 unsigned long flags;
93 int ret = 0;
95 spin_lock_irqsave(&tick_broadcast_lock, flags);
98 * Devices might be registered with both periodic and oneshot
99 * mode disabled. This signals, that the device needs to be
100 * operated from the broadcast device and is a placeholder for
101 * the cpu local device.
103 if (!tick_device_is_functional(dev)) {
104 dev->event_handler = tick_handle_periodic;
105 cpu_set(cpu, tick_broadcast_mask);
106 tick_broadcast_start_periodic(tick_broadcast_device.evtdev);
107 ret = 1;
108 } else {
110 * When the new device is not affected by the stop
111 * feature and the cpu is marked in the broadcast mask
112 * then clear the broadcast bit.
114 if (!(dev->features & CLOCK_EVT_FEAT_C3STOP)) {
115 int cpu = smp_processor_id();
117 cpu_clear(cpu, tick_broadcast_mask);
118 tick_broadcast_clear_oneshot(cpu);
121 spin_unlock_irqrestore(&tick_broadcast_lock, flags);
122 return ret;
126 * Broadcast the event to the cpus, which are set in the mask
128 int tick_do_broadcast(cpumask_t mask)
130 int ret = 0, cpu = smp_processor_id();
131 struct tick_device *td;
134 * Check, if the current cpu is in the mask
136 if (cpu_isset(cpu, mask)) {
137 cpu_clear(cpu, mask);
138 td = &per_cpu(tick_cpu_device, cpu);
139 td->evtdev->event_handler(td->evtdev);
140 ret = 1;
143 if (!cpus_empty(mask)) {
145 * It might be necessary to actually check whether the devices
146 * have different broadcast functions. For now, just use the
147 * one of the first device. This works as long as we have this
148 * misfeature only on x86 (lapic)
150 cpu = first_cpu(mask);
151 td = &per_cpu(tick_cpu_device, cpu);
152 td->evtdev->broadcast(mask);
153 ret = 1;
155 return ret;
159 * Periodic broadcast:
160 * - invoke the broadcast handlers
162 static void tick_do_periodic_broadcast(void)
164 cpumask_t mask;
166 spin_lock(&tick_broadcast_lock);
168 cpus_and(mask, cpu_online_map, tick_broadcast_mask);
169 tick_do_broadcast(mask);
171 spin_unlock(&tick_broadcast_lock);
175 * Event handler for periodic broadcast ticks
177 static void tick_handle_periodic_broadcast(struct clock_event_device *dev)
179 dev->next_event.tv64 = KTIME_MAX;
181 tick_do_periodic_broadcast();
184 * The device is in periodic mode. No reprogramming necessary:
186 if (dev->mode == CLOCK_EVT_MODE_PERIODIC)
187 return;
190 * Setup the next period for devices, which do not have
191 * periodic mode:
193 for (;;) {
194 ktime_t next = ktime_add(dev->next_event, tick_period);
196 if (!clockevents_program_event(dev, next, ktime_get()))
197 return;
198 tick_do_periodic_broadcast();
203 * Powerstate information: The system enters/leaves a state, where
204 * affected devices might stop
206 static void tick_do_broadcast_on_off(void *why)
208 struct clock_event_device *bc, *dev;
209 struct tick_device *td;
210 unsigned long flags, *reason = why;
211 int cpu;
213 spin_lock_irqsave(&tick_broadcast_lock, flags);
215 cpu = smp_processor_id();
216 td = &per_cpu(tick_cpu_device, cpu);
217 dev = td->evtdev;
218 bc = tick_broadcast_device.evtdev;
221 * Is the device in broadcast mode forever or is it not
222 * affected by the powerstate ?
224 if (!dev || !tick_device_is_functional(dev) ||
225 !(dev->features & CLOCK_EVT_FEAT_C3STOP))
226 goto out;
228 if (*reason == CLOCK_EVT_NOTIFY_BROADCAST_ON) {
229 if (!cpu_isset(cpu, tick_broadcast_mask)) {
230 cpu_set(cpu, tick_broadcast_mask);
231 if (td->mode == TICKDEV_MODE_PERIODIC)
232 clockevents_set_mode(dev,
233 CLOCK_EVT_MODE_SHUTDOWN);
235 } else {
236 if (cpu_isset(cpu, tick_broadcast_mask)) {
237 cpu_clear(cpu, tick_broadcast_mask);
238 if (td->mode == TICKDEV_MODE_PERIODIC)
239 tick_setup_periodic(dev, 0);
243 if (cpus_empty(tick_broadcast_mask))
244 clockevents_set_mode(bc, CLOCK_EVT_MODE_SHUTDOWN);
245 else {
246 if (tick_broadcast_device.mode == TICKDEV_MODE_PERIODIC)
247 tick_broadcast_start_periodic(bc);
248 else
249 tick_broadcast_setup_oneshot(bc);
251 out:
252 spin_unlock_irqrestore(&tick_broadcast_lock, flags);
256 * Powerstate information: The system enters/leaves a state, where
257 * affected devices might stop.
259 void tick_broadcast_on_off(unsigned long reason, int *oncpu)
261 int cpu = get_cpu();
263 if (!cpu_isset(*oncpu, cpu_online_map)) {
264 printk(KERN_ERR "tick-braodcast: ignoring broadcast for "
265 "offline CPU #%d\n", *oncpu);
266 } else {
268 if (cpu == *oncpu)
269 tick_do_broadcast_on_off(&reason);
270 else
271 smp_call_function_single(*oncpu,
272 tick_do_broadcast_on_off,
273 &reason, 1, 1);
275 put_cpu();
279 * Set the periodic handler depending on broadcast on/off
281 void tick_set_periodic_handler(struct clock_event_device *dev, int broadcast)
283 if (!broadcast)
284 dev->event_handler = tick_handle_periodic;
285 else
286 dev->event_handler = tick_handle_periodic_broadcast;
290 * Remove a CPU from broadcasting
292 void tick_shutdown_broadcast(unsigned int *cpup)
294 struct clock_event_device *bc;
295 unsigned long flags;
296 unsigned int cpu = *cpup;
298 spin_lock_irqsave(&tick_broadcast_lock, flags);
300 bc = tick_broadcast_device.evtdev;
301 cpu_clear(cpu, tick_broadcast_mask);
303 if (tick_broadcast_device.mode == TICKDEV_MODE_PERIODIC) {
304 if (bc && cpus_empty(tick_broadcast_mask))
305 clockevents_set_mode(bc, CLOCK_EVT_MODE_SHUTDOWN);
308 spin_unlock_irqrestore(&tick_broadcast_lock, flags);
311 void tick_suspend_broadcast(void)
313 struct clock_event_device *bc;
314 unsigned long flags;
316 spin_lock_irqsave(&tick_broadcast_lock, flags);
318 bc = tick_broadcast_device.evtdev;
319 if (bc)
320 clockevents_set_mode(bc, CLOCK_EVT_MODE_SHUTDOWN);
322 spin_unlock_irqrestore(&tick_broadcast_lock, flags);
325 int tick_resume_broadcast(void)
327 struct clock_event_device *bc;
328 unsigned long flags;
329 int broadcast = 0;
331 spin_lock_irqsave(&tick_broadcast_lock, flags);
333 bc = tick_broadcast_device.evtdev;
335 if (bc) {
336 clockevents_set_mode(bc, CLOCK_EVT_MODE_RESUME);
338 switch (tick_broadcast_device.mode) {
339 case TICKDEV_MODE_PERIODIC:
340 if(!cpus_empty(tick_broadcast_mask))
341 tick_broadcast_start_periodic(bc);
342 broadcast = cpu_isset(smp_processor_id(),
343 tick_broadcast_mask);
344 break;
345 case TICKDEV_MODE_ONESHOT:
346 broadcast = tick_resume_broadcast_oneshot(bc);
347 break;
350 spin_unlock_irqrestore(&tick_broadcast_lock, flags);
352 return broadcast;
356 #ifdef CONFIG_TICK_ONESHOT
358 static cpumask_t tick_broadcast_oneshot_mask;
361 * Debugging: see timer_list.c
363 cpumask_t *tick_get_broadcast_oneshot_mask(void)
365 return &tick_broadcast_oneshot_mask;
368 static int tick_broadcast_set_event(ktime_t expires, int force)
370 struct clock_event_device *bc = tick_broadcast_device.evtdev;
371 ktime_t now = ktime_get();
372 int res;
374 for(;;) {
375 res = clockevents_program_event(bc, expires, now);
376 if (!res || !force)
377 return res;
378 now = ktime_get();
379 expires = ktime_add(now, ktime_set(0, bc->min_delta_ns));
383 int tick_resume_broadcast_oneshot(struct clock_event_device *bc)
385 clockevents_set_mode(bc, CLOCK_EVT_MODE_ONESHOT);
386 return 0;
390 * Handle oneshot mode broadcasting
392 static void tick_handle_oneshot_broadcast(struct clock_event_device *dev)
394 struct tick_device *td;
395 cpumask_t mask;
396 ktime_t now, next_event;
397 int cpu;
399 spin_lock(&tick_broadcast_lock);
400 again:
401 dev->next_event.tv64 = KTIME_MAX;
402 next_event.tv64 = KTIME_MAX;
403 mask = CPU_MASK_NONE;
404 now = ktime_get();
405 /* Find all expired events */
406 for (cpu = first_cpu(tick_broadcast_oneshot_mask); cpu != NR_CPUS;
407 cpu = next_cpu(cpu, tick_broadcast_oneshot_mask)) {
408 td = &per_cpu(tick_cpu_device, cpu);
409 if (td->evtdev->next_event.tv64 <= now.tv64)
410 cpu_set(cpu, mask);
411 else if (td->evtdev->next_event.tv64 < next_event.tv64)
412 next_event.tv64 = td->evtdev->next_event.tv64;
416 * Wakeup the cpus which have an expired event.
418 tick_do_broadcast(mask);
421 * Two reasons for reprogram:
423 * - The global event did not expire any CPU local
424 * events. This happens in dyntick mode, as the maximum PIT
425 * delta is quite small.
427 * - There are pending events on sleeping CPUs which were not
428 * in the event mask
430 if (next_event.tv64 != KTIME_MAX) {
432 * Rearm the broadcast device. If event expired,
433 * repeat the above
435 if (tick_broadcast_set_event(next_event, 0))
436 goto again;
438 spin_unlock(&tick_broadcast_lock);
442 * Powerstate information: The system enters/leaves a state, where
443 * affected devices might stop
445 void tick_broadcast_oneshot_control(unsigned long reason)
447 struct clock_event_device *bc, *dev;
448 struct tick_device *td;
449 unsigned long flags;
450 int cpu;
452 spin_lock_irqsave(&tick_broadcast_lock, flags);
455 * Periodic mode does not care about the enter/exit of power
456 * states
458 if (tick_broadcast_device.mode == TICKDEV_MODE_PERIODIC)
459 goto out;
461 bc = tick_broadcast_device.evtdev;
462 cpu = smp_processor_id();
463 td = &per_cpu(tick_cpu_device, cpu);
464 dev = td->evtdev;
466 if (!(dev->features & CLOCK_EVT_FEAT_C3STOP))
467 goto out;
469 if (reason == CLOCK_EVT_NOTIFY_BROADCAST_ENTER) {
470 if (!cpu_isset(cpu, tick_broadcast_oneshot_mask)) {
471 cpu_set(cpu, tick_broadcast_oneshot_mask);
472 clockevents_set_mode(dev, CLOCK_EVT_MODE_SHUTDOWN);
473 if (dev->next_event.tv64 < bc->next_event.tv64)
474 tick_broadcast_set_event(dev->next_event, 1);
476 } else {
477 if (cpu_isset(cpu, tick_broadcast_oneshot_mask)) {
478 cpu_clear(cpu, tick_broadcast_oneshot_mask);
479 clockevents_set_mode(dev, CLOCK_EVT_MODE_ONESHOT);
480 if (dev->next_event.tv64 != KTIME_MAX)
481 tick_program_event(dev->next_event, 1);
485 out:
486 spin_unlock_irqrestore(&tick_broadcast_lock, flags);
490 * Reset the one shot broadcast for a cpu
492 * Called with tick_broadcast_lock held
494 static void tick_broadcast_clear_oneshot(int cpu)
496 cpu_clear(cpu, tick_broadcast_oneshot_mask);
500 * tick_broadcast_setup_highres - setup the broadcast device for highres
502 void tick_broadcast_setup_oneshot(struct clock_event_device *bc)
504 if (bc->mode != CLOCK_EVT_MODE_ONESHOT) {
505 bc->event_handler = tick_handle_oneshot_broadcast;
506 clockevents_set_mode(bc, CLOCK_EVT_MODE_ONESHOT);
507 bc->next_event.tv64 = KTIME_MAX;
512 * Select oneshot operating mode for the broadcast device
514 void tick_broadcast_switch_to_oneshot(void)
516 struct clock_event_device *bc;
517 unsigned long flags;
519 spin_lock_irqsave(&tick_broadcast_lock, flags);
521 tick_broadcast_device.mode = TICKDEV_MODE_ONESHOT;
522 bc = tick_broadcast_device.evtdev;
523 if (bc)
524 tick_broadcast_setup_oneshot(bc);
525 spin_unlock_irqrestore(&tick_broadcast_lock, flags);
530 * Remove a dead CPU from broadcasting
532 void tick_shutdown_broadcast_oneshot(unsigned int *cpup)
534 unsigned long flags;
535 unsigned int cpu = *cpup;
537 spin_lock_irqsave(&tick_broadcast_lock, flags);
540 * Clear the broadcast mask flag for the dead cpu, but do not
541 * stop the broadcast device!
543 cpu_clear(cpu, tick_broadcast_oneshot_mask);
545 spin_unlock_irqrestore(&tick_broadcast_lock, flags);
548 #endif