xref: /openbmc/linux/kernel/time/tick-common.c (revision 03e13cf5)
1906568c9SThomas Gleixner /*
2906568c9SThomas Gleixner  * linux/kernel/time/tick-common.c
3906568c9SThomas Gleixner  *
4906568c9SThomas Gleixner  * This file contains the base functions to manage periodic tick
5906568c9SThomas Gleixner  * related events.
6906568c9SThomas Gleixner  *
7906568c9SThomas Gleixner  * Copyright(C) 2005-2006, Thomas Gleixner <tglx@linutronix.de>
8906568c9SThomas Gleixner  * Copyright(C) 2005-2007, Red Hat, Inc., Ingo Molnar
9906568c9SThomas Gleixner  * Copyright(C) 2006-2007, Timesys Corp., Thomas Gleixner
10906568c9SThomas Gleixner  *
11906568c9SThomas Gleixner  * This code is licenced under the GPL version 2. For details see
12906568c9SThomas Gleixner  * kernel-base/COPYING.
13906568c9SThomas Gleixner  */
14906568c9SThomas Gleixner #include <linux/cpu.h>
15906568c9SThomas Gleixner #include <linux/err.h>
16906568c9SThomas Gleixner #include <linux/hrtimer.h>
17d7b90689SRussell King #include <linux/interrupt.h>
18906568c9SThomas Gleixner #include <linux/percpu.h>
19906568c9SThomas Gleixner #include <linux/profile.h>
20906568c9SThomas Gleixner #include <linux/sched.h>
21ccf33d68SThomas Gleixner #include <linux/module.h>
22906568c9SThomas Gleixner 
23d7b90689SRussell King #include <asm/irq_regs.h>
24d7b90689SRussell King 
25f8381cbaSThomas Gleixner #include "tick-internal.h"
26f8381cbaSThomas Gleixner 
27906568c9SThomas Gleixner /*
28906568c9SThomas Gleixner  * Tick devices
29906568c9SThomas Gleixner  */
30f8381cbaSThomas Gleixner DEFINE_PER_CPU(struct tick_device, tick_cpu_device);
31906568c9SThomas Gleixner /*
32906568c9SThomas Gleixner  * Tick next event: keeps track of the tick time
33906568c9SThomas Gleixner  */
34f8381cbaSThomas Gleixner ktime_t tick_next_period;
35f8381cbaSThomas Gleixner ktime_t tick_period;
366441402bSThomas Gleixner int tick_do_timer_cpu __read_mostly = TICK_DO_TIMER_BOOT;
37906568c9SThomas Gleixner 
38289f480aSIngo Molnar /*
39289f480aSIngo Molnar  * Debugging: see timer_list.c
40289f480aSIngo Molnar  */
41289f480aSIngo Molnar struct tick_device *tick_get_device(int cpu)
42289f480aSIngo Molnar {
43289f480aSIngo Molnar 	return &per_cpu(tick_cpu_device, cpu);
44289f480aSIngo Molnar }
45289f480aSIngo Molnar 
4679bf2bb3SThomas Gleixner /**
4779bf2bb3SThomas Gleixner  * tick_is_oneshot_available - check for a oneshot capable event device
4879bf2bb3SThomas Gleixner  */
4979bf2bb3SThomas Gleixner int tick_is_oneshot_available(void)
5079bf2bb3SThomas Gleixner {
51909ea964SChristoph Lameter 	struct clock_event_device *dev = __this_cpu_read(tick_cpu_device.evtdev);
5279bf2bb3SThomas Gleixner 
533a142a06SThomas Gleixner 	if (!dev || !(dev->features & CLOCK_EVT_FEAT_ONESHOT))
543a142a06SThomas Gleixner 		return 0;
553a142a06SThomas Gleixner 	if (!(dev->features & CLOCK_EVT_FEAT_C3STOP))
563a142a06SThomas Gleixner 		return 1;
573a142a06SThomas Gleixner 	return tick_broadcast_oneshot_available();
5879bf2bb3SThomas Gleixner }
5979bf2bb3SThomas Gleixner 
60906568c9SThomas Gleixner /*
61906568c9SThomas Gleixner  * Periodic tick
62906568c9SThomas Gleixner  */
63906568c9SThomas Gleixner static void tick_periodic(int cpu)
64906568c9SThomas Gleixner {
65906568c9SThomas Gleixner 	if (tick_do_timer_cpu == cpu) {
66d6ad4187SJohn Stultz 		write_seqlock(&jiffies_lock);
67906568c9SThomas Gleixner 
68906568c9SThomas Gleixner 		/* Keep track of the next tick event */
69906568c9SThomas Gleixner 		tick_next_period = ktime_add(tick_next_period, tick_period);
70906568c9SThomas Gleixner 
71906568c9SThomas Gleixner 		do_timer(1);
72d6ad4187SJohn Stultz 		write_sequnlock(&jiffies_lock);
73906568c9SThomas Gleixner 	}
74906568c9SThomas Gleixner 
75906568c9SThomas Gleixner 	update_process_times(user_mode(get_irq_regs()));
76906568c9SThomas Gleixner 	profile_tick(CPU_PROFILING);
77906568c9SThomas Gleixner }
78906568c9SThomas Gleixner 
79906568c9SThomas Gleixner /*
80906568c9SThomas Gleixner  * Event handler for periodic ticks
81906568c9SThomas Gleixner  */
82906568c9SThomas Gleixner void tick_handle_periodic(struct clock_event_device *dev)
83906568c9SThomas Gleixner {
84906568c9SThomas Gleixner 	int cpu = smp_processor_id();
853494c166SDavid S. Miller 	ktime_t next;
86906568c9SThomas Gleixner 
87906568c9SThomas Gleixner 	tick_periodic(cpu);
88906568c9SThomas Gleixner 
89906568c9SThomas Gleixner 	if (dev->mode != CLOCK_EVT_MODE_ONESHOT)
90906568c9SThomas Gleixner 		return;
91906568c9SThomas Gleixner 	/*
92906568c9SThomas Gleixner 	 * Setup the next period for devices, which do not have
93906568c9SThomas Gleixner 	 * periodic mode:
94906568c9SThomas Gleixner 	 */
953494c166SDavid S. Miller 	next = ktime_add(dev->next_event, tick_period);
96906568c9SThomas Gleixner 	for (;;) {
97d1748302SMartin Schwidefsky 		if (!clockevents_program_event(dev, next, false))
98906568c9SThomas Gleixner 			return;
9974a03b69Sjohn stultz 		/*
10074a03b69Sjohn stultz 		 * Have to be careful here. If we're in oneshot mode,
10174a03b69Sjohn stultz 		 * before we call tick_periodic() in a loop, we need
10274a03b69Sjohn stultz 		 * to be sure we're using a real hardware clocksource.
10374a03b69Sjohn stultz 		 * Otherwise we could get trapped in an infinite
10474a03b69Sjohn stultz 		 * loop, as the tick_periodic() increments jiffies,
10574a03b69Sjohn stultz 		 * when then will increment time, posibly causing
10674a03b69Sjohn stultz 		 * the loop to trigger again and again.
10774a03b69Sjohn stultz 		 */
10874a03b69Sjohn stultz 		if (timekeeping_valid_for_hres())
109906568c9SThomas Gleixner 			tick_periodic(cpu);
1103494c166SDavid S. Miller 		next = ktime_add(next, tick_period);
111906568c9SThomas Gleixner 	}
112906568c9SThomas Gleixner }
113906568c9SThomas Gleixner 
114906568c9SThomas Gleixner /*
115906568c9SThomas Gleixner  * Setup the device for a periodic tick
116906568c9SThomas Gleixner  */
117f8381cbaSThomas Gleixner void tick_setup_periodic(struct clock_event_device *dev, int broadcast)
118906568c9SThomas Gleixner {
119f8381cbaSThomas Gleixner 	tick_set_periodic_handler(dev, broadcast);
120f8381cbaSThomas Gleixner 
121f8381cbaSThomas Gleixner 	/* Broadcast setup ? */
122f8381cbaSThomas Gleixner 	if (!tick_device_is_functional(dev))
123f8381cbaSThomas Gleixner 		return;
124906568c9SThomas Gleixner 
12527ce4cb4SThomas Gleixner 	if ((dev->features & CLOCK_EVT_FEAT_PERIODIC) &&
12627ce4cb4SThomas Gleixner 	    !tick_broadcast_oneshot_active()) {
127906568c9SThomas Gleixner 		clockevents_set_mode(dev, CLOCK_EVT_MODE_PERIODIC);
128906568c9SThomas Gleixner 	} else {
129906568c9SThomas Gleixner 		unsigned long seq;
130906568c9SThomas Gleixner 		ktime_t next;
131906568c9SThomas Gleixner 
132906568c9SThomas Gleixner 		do {
133d6ad4187SJohn Stultz 			seq = read_seqbegin(&jiffies_lock);
134906568c9SThomas Gleixner 			next = tick_next_period;
135d6ad4187SJohn Stultz 		} while (read_seqretry(&jiffies_lock, seq));
136906568c9SThomas Gleixner 
137906568c9SThomas Gleixner 		clockevents_set_mode(dev, CLOCK_EVT_MODE_ONESHOT);
138906568c9SThomas Gleixner 
139906568c9SThomas Gleixner 		for (;;) {
140d1748302SMartin Schwidefsky 			if (!clockevents_program_event(dev, next, false))
141906568c9SThomas Gleixner 				return;
142906568c9SThomas Gleixner 			next = ktime_add(next, tick_period);
143906568c9SThomas Gleixner 		}
144906568c9SThomas Gleixner 	}
145906568c9SThomas Gleixner }
146906568c9SThomas Gleixner 
147906568c9SThomas Gleixner /*
148906568c9SThomas Gleixner  * Setup the tick device
149906568c9SThomas Gleixner  */
150906568c9SThomas Gleixner static void tick_setup_device(struct tick_device *td,
151906568c9SThomas Gleixner 			      struct clock_event_device *newdev, int cpu,
1520de26520SRusty Russell 			      const struct cpumask *cpumask)
153906568c9SThomas Gleixner {
154906568c9SThomas Gleixner 	ktime_t next_event;
155906568c9SThomas Gleixner 	void (*handler)(struct clock_event_device *) = NULL;
156906568c9SThomas Gleixner 
157906568c9SThomas Gleixner 	/*
158906568c9SThomas Gleixner 	 * First device setup ?
159906568c9SThomas Gleixner 	 */
160906568c9SThomas Gleixner 	if (!td->evtdev) {
161906568c9SThomas Gleixner 		/*
162906568c9SThomas Gleixner 		 * If no cpu took the do_timer update, assign it to
163906568c9SThomas Gleixner 		 * this cpu:
164906568c9SThomas Gleixner 		 */
1656441402bSThomas Gleixner 		if (tick_do_timer_cpu == TICK_DO_TIMER_BOOT) {
166c5bfece2SFrederic Weisbecker 			if (!tick_nohz_full_cpu(cpu))
167906568c9SThomas Gleixner 				tick_do_timer_cpu = cpu;
168a382bf93SFrederic Weisbecker 			else
169a382bf93SFrederic Weisbecker 				tick_do_timer_cpu = TICK_DO_TIMER_NONE;
170906568c9SThomas Gleixner 			tick_next_period = ktime_get();
171906568c9SThomas Gleixner 			tick_period = ktime_set(0, NSEC_PER_SEC / HZ);
172906568c9SThomas Gleixner 		}
173906568c9SThomas Gleixner 
174906568c9SThomas Gleixner 		/*
175906568c9SThomas Gleixner 		 * Startup in periodic mode first.
176906568c9SThomas Gleixner 		 */
177906568c9SThomas Gleixner 		td->mode = TICKDEV_MODE_PERIODIC;
178906568c9SThomas Gleixner 	} else {
179906568c9SThomas Gleixner 		handler = td->evtdev->event_handler;
180906568c9SThomas Gleixner 		next_event = td->evtdev->next_event;
1817c1e7689SVenkatesh Pallipadi 		td->evtdev->event_handler = clockevents_handle_noop;
182906568c9SThomas Gleixner 	}
183906568c9SThomas Gleixner 
184906568c9SThomas Gleixner 	td->evtdev = newdev;
185906568c9SThomas Gleixner 
186906568c9SThomas Gleixner 	/*
187906568c9SThomas Gleixner 	 * When the device is not per cpu, pin the interrupt to the
188906568c9SThomas Gleixner 	 * current cpu:
189906568c9SThomas Gleixner 	 */
190320ab2b0SRusty Russell 	if (!cpumask_equal(newdev->cpumask, cpumask))
1910de26520SRusty Russell 		irq_set_affinity(newdev->irq, cpumask);
192906568c9SThomas Gleixner 
193f8381cbaSThomas Gleixner 	/*
194f8381cbaSThomas Gleixner 	 * When global broadcasting is active, check if the current
195f8381cbaSThomas Gleixner 	 * device is registered as a placeholder for broadcast mode.
196f8381cbaSThomas Gleixner 	 * This allows us to handle this x86 misfeature in a generic
197f8381cbaSThomas Gleixner 	 * way.
198f8381cbaSThomas Gleixner 	 */
199f8381cbaSThomas Gleixner 	if (tick_device_uses_broadcast(newdev, cpu))
200f8381cbaSThomas Gleixner 		return;
201f8381cbaSThomas Gleixner 
202906568c9SThomas Gleixner 	if (td->mode == TICKDEV_MODE_PERIODIC)
203906568c9SThomas Gleixner 		tick_setup_periodic(newdev, 0);
20479bf2bb3SThomas Gleixner 	else
20579bf2bb3SThomas Gleixner 		tick_setup_oneshot(newdev, handler, next_event);
206906568c9SThomas Gleixner }
207906568c9SThomas Gleixner 
20803e13cf5SThomas Gleixner void tick_install_replacement(struct clock_event_device *newdev)
20903e13cf5SThomas Gleixner {
21003e13cf5SThomas Gleixner 	struct tick_device *td = &__get_cpu_var(tick_cpu_device);
21103e13cf5SThomas Gleixner 	int cpu = smp_processor_id();
21203e13cf5SThomas Gleixner 
21303e13cf5SThomas Gleixner 	clockevents_exchange_device(td->evtdev, newdev);
21403e13cf5SThomas Gleixner 	tick_setup_device(td, newdev, cpu, cpumask_of(cpu));
21503e13cf5SThomas Gleixner 	if (newdev->features & CLOCK_EVT_FEAT_ONESHOT)
21603e13cf5SThomas Gleixner 		tick_oneshot_notify();
21703e13cf5SThomas Gleixner }
21803e13cf5SThomas Gleixner 
21945cb8e01SThomas Gleixner static bool tick_check_percpu(struct clock_event_device *curdev,
22045cb8e01SThomas Gleixner 			      struct clock_event_device *newdev, int cpu)
22145cb8e01SThomas Gleixner {
22245cb8e01SThomas Gleixner 	if (!cpumask_test_cpu(cpu, newdev->cpumask))
22345cb8e01SThomas Gleixner 		return false;
22445cb8e01SThomas Gleixner 	if (cpumask_equal(newdev->cpumask, cpumask_of(cpu)))
22545cb8e01SThomas Gleixner 		return true;
22645cb8e01SThomas Gleixner 	/* Check if irq affinity can be set */
22745cb8e01SThomas Gleixner 	if (newdev->irq >= 0 && !irq_can_set_affinity(newdev->irq))
22845cb8e01SThomas Gleixner 		return false;
22945cb8e01SThomas Gleixner 	/* Prefer an existing cpu local device */
23045cb8e01SThomas Gleixner 	if (curdev && cpumask_equal(curdev->cpumask, cpumask_of(cpu)))
23145cb8e01SThomas Gleixner 		return false;
23245cb8e01SThomas Gleixner 	return true;
23345cb8e01SThomas Gleixner }
23445cb8e01SThomas Gleixner 
23545cb8e01SThomas Gleixner static bool tick_check_preferred(struct clock_event_device *curdev,
23645cb8e01SThomas Gleixner 				 struct clock_event_device *newdev)
23745cb8e01SThomas Gleixner {
23845cb8e01SThomas Gleixner 	/* Prefer oneshot capable device */
23945cb8e01SThomas Gleixner 	if (!(newdev->features & CLOCK_EVT_FEAT_ONESHOT)) {
24045cb8e01SThomas Gleixner 		if (curdev && (curdev->features & CLOCK_EVT_FEAT_ONESHOT))
24145cb8e01SThomas Gleixner 			return false;
24245cb8e01SThomas Gleixner 		if (tick_oneshot_mode_active())
24345cb8e01SThomas Gleixner 			return false;
24445cb8e01SThomas Gleixner 	}
24545cb8e01SThomas Gleixner 
24645cb8e01SThomas Gleixner 	/* Use the higher rated one */
24745cb8e01SThomas Gleixner 	return !curdev || newdev->rating > curdev->rating;
24845cb8e01SThomas Gleixner }
24945cb8e01SThomas Gleixner 
250906568c9SThomas Gleixner /*
25103e13cf5SThomas Gleixner  * Check whether the new device is a better fit than curdev. curdev
25203e13cf5SThomas Gleixner  * can be NULL !
25303e13cf5SThomas Gleixner  */
25403e13cf5SThomas Gleixner bool tick_check_replacement(struct clock_event_device *curdev,
25503e13cf5SThomas Gleixner 			    struct clock_event_device *newdev)
25603e13cf5SThomas Gleixner {
25703e13cf5SThomas Gleixner 	if (tick_check_percpu(curdev, newdev, smp_processor_id()))
25803e13cf5SThomas Gleixner 		return false;
25903e13cf5SThomas Gleixner 
26003e13cf5SThomas Gleixner 	return tick_check_preferred(curdev, newdev);
26103e13cf5SThomas Gleixner }
26203e13cf5SThomas Gleixner 
26303e13cf5SThomas Gleixner /*
2647126cac4SThomas Gleixner  * Check, if the new registered device should be used. Called with
2657126cac4SThomas Gleixner  * clockevents_lock held and interrupts disabled.
266906568c9SThomas Gleixner  */
2677172a286SThomas Gleixner void tick_check_new_device(struct clock_event_device *newdev)
268906568c9SThomas Gleixner {
269906568c9SThomas Gleixner 	struct clock_event_device *curdev;
270906568c9SThomas Gleixner 	struct tick_device *td;
2717172a286SThomas Gleixner 	int cpu;
272906568c9SThomas Gleixner 
273906568c9SThomas Gleixner 	cpu = smp_processor_id();
274320ab2b0SRusty Russell 	if (!cpumask_test_cpu(cpu, newdev->cpumask))
2754a93232dSVenki Pallipadi 		goto out_bc;
276906568c9SThomas Gleixner 
277906568c9SThomas Gleixner 	td = &per_cpu(tick_cpu_device, cpu);
278906568c9SThomas Gleixner 	curdev = td->evtdev;
279906568c9SThomas Gleixner 
280906568c9SThomas Gleixner 	/* cpu local device ? */
28145cb8e01SThomas Gleixner 	if (!tick_check_percpu(curdev, newdev, cpu))
282906568c9SThomas Gleixner 		goto out_bc;
283906568c9SThomas Gleixner 
28445cb8e01SThomas Gleixner 	/* Preference decision */
28545cb8e01SThomas Gleixner 	if (!tick_check_preferred(curdev, newdev))
286906568c9SThomas Gleixner 		goto out_bc;
287906568c9SThomas Gleixner 
288ccf33d68SThomas Gleixner 	if (!try_module_get(newdev->owner))
289ccf33d68SThomas Gleixner 		return;
290ccf33d68SThomas Gleixner 
291906568c9SThomas Gleixner 	/*
292906568c9SThomas Gleixner 	 * Replace the eventually existing device by the new
293f8381cbaSThomas Gleixner 	 * device. If the current device is the broadcast device, do
294f8381cbaSThomas Gleixner 	 * not give it back to the clockevents layer !
295906568c9SThomas Gleixner 	 */
296f8381cbaSThomas Gleixner 	if (tick_is_broadcast_device(curdev)) {
2972344abbcSThomas Gleixner 		clockevents_shutdown(curdev);
298f8381cbaSThomas Gleixner 		curdev = NULL;
299f8381cbaSThomas Gleixner 	}
300906568c9SThomas Gleixner 	clockevents_exchange_device(curdev, newdev);
3016b954823SRusty Russell 	tick_setup_device(td, newdev, cpu, cpumask_of(cpu));
30279bf2bb3SThomas Gleixner 	if (newdev->features & CLOCK_EVT_FEAT_ONESHOT)
30379bf2bb3SThomas Gleixner 		tick_oneshot_notify();
3047172a286SThomas Gleixner 	return;
305f8381cbaSThomas Gleixner 
306f8381cbaSThomas Gleixner out_bc:
307f8381cbaSThomas Gleixner 	/*
308f8381cbaSThomas Gleixner 	 * Can the new device be used as a broadcast device ?
309f8381cbaSThomas Gleixner 	 */
3107172a286SThomas Gleixner 	tick_install_broadcast_device(newdev);
311906568c9SThomas Gleixner }
312906568c9SThomas Gleixner 
313906568c9SThomas Gleixner /*
31494df7de0SSebastien Dugue  * Transfer the do_timer job away from a dying cpu.
31594df7de0SSebastien Dugue  *
31694df7de0SSebastien Dugue  * Called with interrupts disabled.
31794df7de0SSebastien Dugue  */
3188c53daf6SThomas Gleixner void tick_handover_do_timer(int *cpup)
31994df7de0SSebastien Dugue {
32094df7de0SSebastien Dugue 	if (*cpup == tick_do_timer_cpu) {
32194df7de0SSebastien Dugue 		int cpu = cpumask_first(cpu_online_mask);
32294df7de0SSebastien Dugue 
32394df7de0SSebastien Dugue 		tick_do_timer_cpu = (cpu < nr_cpu_ids) ? cpu :
32494df7de0SSebastien Dugue 			TICK_DO_TIMER_NONE;
32594df7de0SSebastien Dugue 	}
32694df7de0SSebastien Dugue }
32794df7de0SSebastien Dugue 
32894df7de0SSebastien Dugue /*
329906568c9SThomas Gleixner  * Shutdown an event device on a given cpu:
330906568c9SThomas Gleixner  *
331906568c9SThomas Gleixner  * This is called on a life CPU, when a CPU is dead. So we cannot
332906568c9SThomas Gleixner  * access the hardware device itself.
333906568c9SThomas Gleixner  * We just set the mode and remove it from the lists.
334906568c9SThomas Gleixner  */
3358c53daf6SThomas Gleixner void tick_shutdown(unsigned int *cpup)
336906568c9SThomas Gleixner {
337906568c9SThomas Gleixner 	struct tick_device *td = &per_cpu(tick_cpu_device, *cpup);
338906568c9SThomas Gleixner 	struct clock_event_device *dev = td->evtdev;
339906568c9SThomas Gleixner 
340906568c9SThomas Gleixner 	td->mode = TICKDEV_MODE_PERIODIC;
341906568c9SThomas Gleixner 	if (dev) {
342906568c9SThomas Gleixner 		/*
343906568c9SThomas Gleixner 		 * Prevent that the clock events layer tries to call
344906568c9SThomas Gleixner 		 * the set mode function!
345906568c9SThomas Gleixner 		 */
346906568c9SThomas Gleixner 		dev->mode = CLOCK_EVT_MODE_UNUSED;
347906568c9SThomas Gleixner 		clockevents_exchange_device(dev, NULL);
3486f7a05d7SThomas Gleixner 		dev->event_handler = clockevents_handle_noop;
349906568c9SThomas Gleixner 		td->evtdev = NULL;
350906568c9SThomas Gleixner 	}
351906568c9SThomas Gleixner }
352906568c9SThomas Gleixner 
3538c53daf6SThomas Gleixner void tick_suspend(void)
3546321dd60SThomas Gleixner {
3556321dd60SThomas Gleixner 	struct tick_device *td = &__get_cpu_var(tick_cpu_device);
3566321dd60SThomas Gleixner 
3572344abbcSThomas Gleixner 	clockevents_shutdown(td->evtdev);
3586321dd60SThomas Gleixner }
3596321dd60SThomas Gleixner 
3608c53daf6SThomas Gleixner void tick_resume(void)
3616321dd60SThomas Gleixner {
3626321dd60SThomas Gleixner 	struct tick_device *td = &__get_cpu_var(tick_cpu_device);
36318de5bc4SThomas Gleixner 	int broadcast = tick_resume_broadcast();
3646321dd60SThomas Gleixner 
36518de5bc4SThomas Gleixner 	clockevents_set_mode(td->evtdev, CLOCK_EVT_MODE_RESUME);
36618de5bc4SThomas Gleixner 
36718de5bc4SThomas Gleixner 	if (!broadcast) {
3686321dd60SThomas Gleixner 		if (td->mode == TICKDEV_MODE_PERIODIC)
3696321dd60SThomas Gleixner 			tick_setup_periodic(td->evtdev, 0);
370cd05a1f8SThomas Gleixner 		else
371cd05a1f8SThomas Gleixner 			tick_resume_oneshot();
37218de5bc4SThomas Gleixner 	}
3736321dd60SThomas Gleixner }
3746321dd60SThomas Gleixner 
375906568c9SThomas Gleixner /**
376906568c9SThomas Gleixner  * tick_init - initialize the tick control
377906568c9SThomas Gleixner  */
378906568c9SThomas Gleixner void __init tick_init(void)
379906568c9SThomas Gleixner {
380b352bc1cSThomas Gleixner 	tick_broadcast_init();
381906568c9SThomas Gleixner }
382