tick-oneshot.c 3.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/*
 * linux/kernel/time/tick-oneshot.c
 *
 * This file contains functions which manage high resolution tick
 * related events.
 *
 * Copyright(C) 2005-2006, Thomas Gleixner <tglx@linutronix.de>
 * Copyright(C) 2005-2007, Red Hat, Inc., Ingo Molnar
 * Copyright(C) 2006-2007, Timesys Corp., Thomas Gleixner
 *
 * This code is licenced under the GPL version 2. For details see
 * kernel-base/COPYING.
 */
#include <linux/cpu.h>
#include <linux/err.h>
#include <linux/hrtimer.h>
17
#include <linux/interrupt.h>
18 19 20 21 22 23 24 25
#include <linux/percpu.h>
#include <linux/profile.h>
#include <linux/sched.h>
#include <linux/tick.h>

#include "tick-internal.h"

/**
26
 * tick_program_event internal worker function
27
 */
28 29
int tick_dev_program_event(struct clock_event_device *dev, ktime_t expires,
			   int force)
30 31
{
	ktime_t now = ktime_get();
32
	int i;
33

34
	for (i = 0;;) {
35 36 37 38
		int ret = clockevents_program_event(dev, expires, now);

		if (!ret || !force)
			return ret;
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61

		/*
		 * We tried 2 times to program the device with the given
		 * min_delta_ns. If that's not working then we double it
		 * and emit a warning.
		 */
		if (++i > 2) {
			printk(KERN_WARNING "CE: __tick_program_event of %s is "
			       "stuck %llx %llx\n", dev->name ? dev->name : "?",
			       now.tv64, expires.tv64);
			printk(KERN_WARNING
			       "CE: increasing min_delta_ns %ld to %ld nsec\n",
			       dev->min_delta_ns, dev->min_delta_ns << 1);
			WARN_ON(1);

			/* Double the min. delta and try again */
			if (!dev->min_delta_ns)
				dev->min_delta_ns = 5000;
			else
				dev->min_delta_ns <<= 1;
			i = 0;
		}

62
		now = ktime_get();
63
		expires = ktime_add_ns(now, dev->min_delta_ns);
64 65 66
	}
}

67 68 69 70 71 72 73
/**
 * tick_program_event
 */
int tick_program_event(ktime_t expires, int force)
{
	struct clock_event_device *dev = __get_cpu_var(tick_cpu_device).evtdev;

74
	return tick_dev_program_event(dev, expires, force);
75 76
}

77 78 79 80 81 82 83 84 85 86 87 88
/**
 * tick_resume_onshot - resume oneshot mode
 */
void tick_resume_oneshot(void)
{
	struct tick_device *td = &__get_cpu_var(tick_cpu_device);
	struct clock_event_device *dev = td->evtdev;

	clockevents_set_mode(dev, CLOCK_EVT_MODE_ONESHOT);
	tick_program_event(ktime_get(), 1);
}

89 90 91 92 93 94 95 96 97
/**
 * tick_setup_oneshot - setup the event device for oneshot mode (hres or nohz)
 */
void tick_setup_oneshot(struct clock_event_device *newdev,
			void (*handler)(struct clock_event_device *),
			ktime_t next_event)
{
	newdev->event_handler = handler;
	clockevents_set_mode(newdev, CLOCK_EVT_MODE_ONESHOT);
98
	tick_dev_program_event(newdev, next_event, 1);
99 100 101 102 103 104 105 106 107 108 109
}

/**
 * tick_switch_to_oneshot - switch to oneshot mode
 */
int tick_switch_to_oneshot(void (*handler)(struct clock_event_device *))
{
	struct tick_device *td = &__get_cpu_var(tick_cpu_device);
	struct clock_event_device *dev = td->evtdev;

	if (!dev || !(dev->features & CLOCK_EVT_FEAT_ONESHOT) ||
I
Ingo Molnar 已提交
110 111 112 113 114 115 116 117 118 119 120 121 122
		    !tick_device_is_functional(dev)) {

		printk(KERN_INFO "Clockevents: "
		       "could not switch to one-shot mode:");
		if (!dev) {
			printk(" no tick device\n");
		} else {
			if (!tick_device_is_functional(dev))
				printk(" %s is not functional.\n", dev->name);
			else
				printk(" %s does not support one-shot mode.\n",
				       dev->name);
		}
123
		return -EINVAL;
I
Ingo Molnar 已提交
124
	}
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143

	td->mode = TICKDEV_MODE_ONESHOT;
	dev->event_handler = handler;
	clockevents_set_mode(dev, CLOCK_EVT_MODE_ONESHOT);
	tick_broadcast_switch_to_oneshot();
	return 0;
}

#ifdef CONFIG_HIGH_RES_TIMERS
/**
 * tick_init_highres - switch to high resolution mode
 *
 * Called with interrupts disabled.
 */
int tick_init_highres(void)
{
	return tick_switch_to_oneshot(hrtimer_interrupt);
}
#endif