clockevents: Move the tick_notify() switch case to clockevents_notify()
[deliverable/linux.git] / kernel / time / tick-common.c
CommitLineData
906568c9
TG
1/*
2 * linux/kernel/time/tick-common.c
3 *
4 * This file contains the base functions to manage periodic tick
5 * related events.
6 *
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
10 *
11 * This code is licenced under the GPL version 2. For details see
12 * kernel-base/COPYING.
13 */
14#include <linux/cpu.h>
15#include <linux/err.h>
16#include <linux/hrtimer.h>
d7b90689 17#include <linux/interrupt.h>
906568c9
TG
18#include <linux/percpu.h>
19#include <linux/profile.h>
20#include <linux/sched.h>
906568c9 21
d7b90689
RK
22#include <asm/irq_regs.h>
23
f8381cba
TG
24#include "tick-internal.h"
25
906568c9
TG
26/*
27 * Tick devices
28 */
f8381cba 29DEFINE_PER_CPU(struct tick_device, tick_cpu_device);
906568c9
TG
30/*
31 * Tick next event: keeps track of the tick time
32 */
f8381cba
TG
33ktime_t tick_next_period;
34ktime_t tick_period;
6441402b 35int tick_do_timer_cpu __read_mostly = TICK_DO_TIMER_BOOT;
906568c9 36
289f480a
IM
37/*
38 * Debugging: see timer_list.c
39 */
40struct tick_device *tick_get_device(int cpu)
41{
42 return &per_cpu(tick_cpu_device, cpu);
43}
44
79bf2bb3
TG
45/**
46 * tick_is_oneshot_available - check for a oneshot capable event device
47 */
48int tick_is_oneshot_available(void)
49{
909ea964 50 struct clock_event_device *dev = __this_cpu_read(tick_cpu_device.evtdev);
79bf2bb3 51
3a142a06
TG
52 if (!dev || !(dev->features & CLOCK_EVT_FEAT_ONESHOT))
53 return 0;
54 if (!(dev->features & CLOCK_EVT_FEAT_C3STOP))
55 return 1;
56 return tick_broadcast_oneshot_available();
79bf2bb3
TG
57}
58
906568c9
TG
59/*
60 * Periodic tick
61 */
62static void tick_periodic(int cpu)
63{
64 if (tick_do_timer_cpu == cpu) {
d6ad4187 65 write_seqlock(&jiffies_lock);
906568c9
TG
66
67 /* Keep track of the next tick event */
68 tick_next_period = ktime_add(tick_next_period, tick_period);
69
70 do_timer(1);
d6ad4187 71 write_sequnlock(&jiffies_lock);
906568c9
TG
72 }
73
74 update_process_times(user_mode(get_irq_regs()));
75 profile_tick(CPU_PROFILING);
76}
77
78/*
79 * Event handler for periodic ticks
80 */
81void tick_handle_periodic(struct clock_event_device *dev)
82{
83 int cpu = smp_processor_id();
3494c166 84 ktime_t next;
906568c9
TG
85
86 tick_periodic(cpu);
87
88 if (dev->mode != CLOCK_EVT_MODE_ONESHOT)
89 return;
90 /*
91 * Setup the next period for devices, which do not have
92 * periodic mode:
93 */
3494c166 94 next = ktime_add(dev->next_event, tick_period);
906568c9 95 for (;;) {
d1748302 96 if (!clockevents_program_event(dev, next, false))
906568c9 97 return;
74a03b69 98 /*
99 * Have to be careful here. If we're in oneshot mode,
100 * before we call tick_periodic() in a loop, we need
101 * to be sure we're using a real hardware clocksource.
102 * Otherwise we could get trapped in an infinite
103 * loop, as the tick_periodic() increments jiffies,
104 * when then will increment time, posibly causing
105 * the loop to trigger again and again.
106 */
107 if (timekeeping_valid_for_hres())
108 tick_periodic(cpu);
3494c166 109 next = ktime_add(next, tick_period);
906568c9
TG
110 }
111}
112
113/*
114 * Setup the device for a periodic tick
115 */
f8381cba 116void tick_setup_periodic(struct clock_event_device *dev, int broadcast)
906568c9 117{
f8381cba
TG
118 tick_set_periodic_handler(dev, broadcast);
119
120 /* Broadcast setup ? */
121 if (!tick_device_is_functional(dev))
122 return;
906568c9 123
27ce4cb4
TG
124 if ((dev->features & CLOCK_EVT_FEAT_PERIODIC) &&
125 !tick_broadcast_oneshot_active()) {
906568c9
TG
126 clockevents_set_mode(dev, CLOCK_EVT_MODE_PERIODIC);
127 } else {
128 unsigned long seq;
129 ktime_t next;
130
131 do {
d6ad4187 132 seq = read_seqbegin(&jiffies_lock);
906568c9 133 next = tick_next_period;
d6ad4187 134 } while (read_seqretry(&jiffies_lock, seq));
906568c9
TG
135
136 clockevents_set_mode(dev, CLOCK_EVT_MODE_ONESHOT);
137
138 for (;;) {
d1748302 139 if (!clockevents_program_event(dev, next, false))
906568c9
TG
140 return;
141 next = ktime_add(next, tick_period);
142 }
143 }
144}
145
146/*
147 * Setup the tick device
148 */
149static void tick_setup_device(struct tick_device *td,
150 struct clock_event_device *newdev, int cpu,
0de26520 151 const struct cpumask *cpumask)
906568c9
TG
152{
153 ktime_t next_event;
154 void (*handler)(struct clock_event_device *) = NULL;
155
156 /*
157 * First device setup ?
158 */
159 if (!td->evtdev) {
160 /*
161 * If no cpu took the do_timer update, assign it to
162 * this cpu:
163 */
6441402b 164 if (tick_do_timer_cpu == TICK_DO_TIMER_BOOT) {
c5bfece2 165 if (!tick_nohz_full_cpu(cpu))
a382bf93
FW
166 tick_do_timer_cpu = cpu;
167 else
168 tick_do_timer_cpu = TICK_DO_TIMER_NONE;
906568c9
TG
169 tick_next_period = ktime_get();
170 tick_period = ktime_set(0, NSEC_PER_SEC / HZ);
171 }
172
173 /*
174 * Startup in periodic mode first.
175 */
176 td->mode = TICKDEV_MODE_PERIODIC;
177 } else {
178 handler = td->evtdev->event_handler;
179 next_event = td->evtdev->next_event;
7c1e7689 180 td->evtdev->event_handler = clockevents_handle_noop;
906568c9
TG
181 }
182
183 td->evtdev = newdev;
184
185 /*
186 * When the device is not per cpu, pin the interrupt to the
187 * current cpu:
188 */
320ab2b0 189 if (!cpumask_equal(newdev->cpumask, cpumask))
0de26520 190 irq_set_affinity(newdev->irq, cpumask);
906568c9 191
f8381cba
TG
192 /*
193 * When global broadcasting is active, check if the current
194 * device is registered as a placeholder for broadcast mode.
195 * This allows us to handle this x86 misfeature in a generic
196 * way.
197 */
198 if (tick_device_uses_broadcast(newdev, cpu))
199 return;
200
906568c9
TG
201 if (td->mode == TICKDEV_MODE_PERIODIC)
202 tick_setup_periodic(newdev, 0);
79bf2bb3
TG
203 else
204 tick_setup_oneshot(newdev, handler, next_event);
906568c9
TG
205}
206
207/*
7126cac4
TG
208 * Check, if the new registered device should be used. Called with
209 * clockevents_lock held and interrupts disabled.
906568c9 210 */
7172a286 211void tick_check_new_device(struct clock_event_device *newdev)
906568c9
TG
212{
213 struct clock_event_device *curdev;
214 struct tick_device *td;
7172a286 215 int cpu;
906568c9
TG
216
217 cpu = smp_processor_id();
320ab2b0 218 if (!cpumask_test_cpu(cpu, newdev->cpumask))
4a93232d 219 goto out_bc;
906568c9
TG
220
221 td = &per_cpu(tick_cpu_device, cpu);
222 curdev = td->evtdev;
906568c9
TG
223
224 /* cpu local device ? */
320ab2b0 225 if (!cpumask_equal(newdev->cpumask, cpumask_of(cpu))) {
906568c9
TG
226
227 /*
228 * If the cpu affinity of the device interrupt can not
229 * be set, ignore it.
230 */
231 if (!irq_can_set_affinity(newdev->irq))
232 goto out_bc;
233
234 /*
235 * If we have a cpu local device already, do not replace it
236 * by a non cpu local device
237 */
320ab2b0 238 if (curdev && cpumask_equal(curdev->cpumask, cpumask_of(cpu)))
906568c9
TG
239 goto out_bc;
240 }
241
242 /*
243 * If we have an active device, then check the rating and the oneshot
244 * feature.
245 */
246 if (curdev) {
79bf2bb3
TG
247 /*
248 * Prefer one shot capable devices !
249 */
250 if ((curdev->features & CLOCK_EVT_FEAT_ONESHOT) &&
251 !(newdev->features & CLOCK_EVT_FEAT_ONESHOT))
252 goto out_bc;
906568c9
TG
253 /*
254 * Check the rating
255 */
256 if (curdev->rating >= newdev->rating)
f8381cba 257 goto out_bc;
906568c9
TG
258 }
259
260 /*
261 * Replace the eventually existing device by the new
f8381cba
TG
262 * device. If the current device is the broadcast device, do
263 * not give it back to the clockevents layer !
906568c9 264 */
f8381cba 265 if (tick_is_broadcast_device(curdev)) {
2344abbc 266 clockevents_shutdown(curdev);
f8381cba
TG
267 curdev = NULL;
268 }
906568c9 269 clockevents_exchange_device(curdev, newdev);
6b954823 270 tick_setup_device(td, newdev, cpu, cpumask_of(cpu));
79bf2bb3
TG
271 if (newdev->features & CLOCK_EVT_FEAT_ONESHOT)
272 tick_oneshot_notify();
7172a286 273 return;
f8381cba
TG
274
275out_bc:
276 /*
277 * Can the new device be used as a broadcast device ?
278 */
7172a286 279 tick_install_broadcast_device(newdev);
906568c9
TG
280}
281
94df7de0
SD
282/*
283 * Transfer the do_timer job away from a dying cpu.
284 *
285 * Called with interrupts disabled.
286 */
8c53daf6 287void tick_handover_do_timer(int *cpup)
94df7de0
SD
288{
289 if (*cpup == tick_do_timer_cpu) {
290 int cpu = cpumask_first(cpu_online_mask);
291
292 tick_do_timer_cpu = (cpu < nr_cpu_ids) ? cpu :
293 TICK_DO_TIMER_NONE;
294 }
295}
296
906568c9
TG
297/*
298 * Shutdown an event device on a given cpu:
299 *
300 * This is called on a life CPU, when a CPU is dead. So we cannot
301 * access the hardware device itself.
302 * We just set the mode and remove it from the lists.
303 */
8c53daf6 304void tick_shutdown(unsigned int *cpup)
906568c9
TG
305{
306 struct tick_device *td = &per_cpu(tick_cpu_device, *cpup);
307 struct clock_event_device *dev = td->evtdev;
906568c9 308
906568c9
TG
309 td->mode = TICKDEV_MODE_PERIODIC;
310 if (dev) {
311 /*
312 * Prevent that the clock events layer tries to call
313 * the set mode function!
314 */
315 dev->mode = CLOCK_EVT_MODE_UNUSED;
316 clockevents_exchange_device(dev, NULL);
6f7a05d7 317 dev->event_handler = clockevents_handle_noop;
906568c9
TG
318 td->evtdev = NULL;
319 }
906568c9
TG
320}
321
8c53daf6 322void tick_suspend(void)
6321dd60
TG
323{
324 struct tick_device *td = &__get_cpu_var(tick_cpu_device);
6321dd60 325
2344abbc 326 clockevents_shutdown(td->evtdev);
6321dd60
TG
327}
328
8c53daf6 329void tick_resume(void)
6321dd60
TG
330{
331 struct tick_device *td = &__get_cpu_var(tick_cpu_device);
18de5bc4 332 int broadcast = tick_resume_broadcast();
6321dd60 333
18de5bc4
TG
334 clockevents_set_mode(td->evtdev, CLOCK_EVT_MODE_RESUME);
335
336 if (!broadcast) {
337 if (td->mode == TICKDEV_MODE_PERIODIC)
338 tick_setup_periodic(td->evtdev, 0);
339 else
340 tick_resume_oneshot();
341 }
6321dd60
TG
342}
343
906568c9
TG
344/**
345 * tick_init - initialize the tick control
906568c9
TG
346 */
347void __init tick_init(void)
348{
b352bc1c 349 tick_broadcast_init();
906568c9 350}
This page took 0.444948 seconds and 5 git commands to generate.