time.c 4.0 KB
Newer Older
H
Haavard Skinnemoen 已提交
1
/*
2
 * Copyright (C) 2004-2007 Atmel Corporation
H
Haavard Skinnemoen 已提交
3 4 5 6 7 8
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */
#include <linux/clk.h>
9
#include <linux/clockchips.h>
10
#include <linux/init.h>
H
Haavard Skinnemoen 已提交
11 12
#include <linux/interrupt.h>
#include <linux/irq.h>
13 14
#include <linux/kernel.h>
#include <linux/time.h>
T
Thomas Gleixner 已提交
15
#include <linux/cpu.h>
H
Haavard Skinnemoen 已提交
16 17 18

#include <asm/sysreg.h>

19
#include <mach/pm.h>
20 21


22
static cycle_t read_cycle_count(struct clocksource *cs)
H
Haavard Skinnemoen 已提交
23 24 25 26
{
	return (cycle_t)sysreg_read(COUNT);
}

27 28 29 30
/*
 * The architectural cycle count registers are a fine clocksource unless
 * the system idle loop use sleep states like "idle":  the CPU cycles
 * measured by COUNT (and COMPARE) don't happen during sleep states.
31
 * Their duration also changes if cpufreq changes the CPU clock rate.
32 33
 * So we rate the clocksource using COUNT as very low quality.
 */
34 35
static struct clocksource counter = {
	.name		= "avr32_counter",
36
	.rating		= 50,
H
Haavard Skinnemoen 已提交
37 38
	.read		= read_cycle_count,
	.mask		= CLOCKSOURCE_MASK(32),
39
	.flags		= CLOCK_SOURCE_IS_CONTINUOUS,
H
Haavard Skinnemoen 已提交
40 41
};

42
static irqreturn_t timer_interrupt(int irq, void *dev_id)
H
Haavard Skinnemoen 已提交
43
{
44
	struct clock_event_device *evdev = dev_id;
45

46 47 48
	if (unlikely(!(intc_get_pending(0) & 1)))
		return IRQ_NONE;

49 50 51 52 53
	/*
	 * Disable the interrupt until the clockevent subsystem
	 * reprograms it.
	 */
	sysreg_write(COMPARE, 0);
54

55 56 57
	evdev->event_handler(evdev);
	return IRQ_HANDLED;
}
58

59 60
static struct irqaction timer_irqaction = {
	.handler	= timer_interrupt,
61
	/* Oprofile uses the same irq as the timer, so allow it to be shared */
62
	.flags		= IRQF_TIMER | IRQF_SHARED,
63 64
	.name		= "avr32_comparator",
};
65

66 67 68 69
static int comparator_next_event(unsigned long delta,
		struct clock_event_device *evdev)
{
	unsigned long	flags;
70

71
	raw_local_irq_save(flags);
72

73 74 75 76
	/* The time to read COUNT then update COMPARE must be less
	 * than the min_delta_ns value for this clockevent source.
	 */
	sysreg_write(COMPARE, (sysreg_read(COUNT) + delta) ? : 1);
H
Haavard Skinnemoen 已提交
77

78
	raw_local_irq_restore(flags);
79 80

	return 0;
H
Haavard Skinnemoen 已提交
81 82
}

83 84
static void comparator_mode(enum clock_event_mode mode,
		struct clock_event_device *evdev)
H
Haavard Skinnemoen 已提交
85
{
86 87 88 89 90
	switch (mode) {
	case CLOCK_EVT_MODE_ONESHOT:
		pr_debug("%s: start\n", evdev->name);
		/* FALLTHROUGH */
	case CLOCK_EVT_MODE_RESUME:
T
Thomas Gleixner 已提交
91 92 93 94 95
		/*
		 * If we're using the COUNT and COMPARE registers we
		 * need to force idle poll.
		 */
		cpu_idle_poll_ctrl(true);
96 97 98 99 100
		break;
	case CLOCK_EVT_MODE_UNUSED:
	case CLOCK_EVT_MODE_SHUTDOWN:
		sysreg_write(COMPARE, 0);
		pr_debug("%s: stop\n", evdev->name);
101 102 103 104 105 106 107 108
		if (evdev->mode == CLOCK_EVT_MODE_ONESHOT ||
		    evdev->mode == CLOCK_EVT_MODE_RESUME) {
			/*
			 * Only disable idle poll if we have forced that
			 * in a previous call.
			 */
			cpu_idle_poll_ctrl(false);
		}
109 110 111 112
		break;
	default:
		BUG();
	}
H
Haavard Skinnemoen 已提交
113 114
}

115 116 117 118 119 120 121 122
static struct clock_event_device comparator = {
	.name		= "avr32_comparator",
	.features	= CLOCK_EVT_FEAT_ONESHOT,
	.shift		= 16,
	.rating		= 50,
	.set_next_event	= comparator_next_event,
	.set_mode	= comparator_mode,
};
H
Haavard Skinnemoen 已提交
123

124 125
void read_persistent_clock(struct timespec *ts)
{
126
	ts->tv_sec = mktime(2007, 1, 1, 0, 0, 0);
127 128 129
	ts->tv_nsec = 0;
}

H
Haavard Skinnemoen 已提交
130 131
void __init time_init(void)
{
132
	unsigned long counter_hz;
H
Haavard Skinnemoen 已提交
133 134
	int ret;

135 136
	/* figure rate for counter */
	counter_hz = clk_get_rate(boot_cpu_data.clk);
137
	ret = clocksource_register_hz(&counter, counter_hz);
H
Haavard Skinnemoen 已提交
138
	if (ret)
139
		pr_debug("timer: could not register clocksource: %d\n", ret);
H
Haavard Skinnemoen 已提交
140

141 142 143 144
	/* setup COMPARE clockevent */
	comparator.mult = div_sc(counter_hz, NSEC_PER_SEC, comparator.shift);
	comparator.max_delta_ns = clockevent_delta2ns((u32)~0, &comparator);
	comparator.min_delta_ns = clockevent_delta2ns(50, &comparator) + 1;
145
	comparator.cpumask = cpumask_of(0);
146 147 148 149 150 151 152 153 154 155 156 157 158

	sysreg_write(COMPARE, 0);
	timer_irqaction.dev_id = &comparator;

	ret = setup_irq(0, &timer_irqaction);
	if (ret)
		pr_debug("timer: could not request IRQ 0: %d\n", ret);
	else {
		clockevents_register_device(&comparator);

		pr_info("%s: irq 0, %lu.%03lu MHz\n", comparator.name,
				((counter_hz + 500) / 1000) / 1000,
				((counter_hz + 500) / 1000) % 1000);
159
	}
H
Haavard Skinnemoen 已提交
160
}