time.c 3.74 KB
Newer Older
1
/*
2
 * Copyright (C) 2004-2007 Atmel Corporation
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>
11 12
#include <linux/interrupt.h>
#include <linux/irq.h>
13 14
#include <linux/kernel.h>
#include <linux/time.h>
15 16 17

#include <asm/sysreg.h>

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


21
static cycle_t read_cycle_count(struct clocksource *cs)
22 23 24 25
{
	return (cycle_t)sysreg_read(COUNT);
}

26 27 28 29
/*
 * 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.
30
 * Their duration also changes if cpufreq changes the CPU clock rate.
31 32
 * So we rate the clocksource using COUNT as very low quality.
 */
33 34
static struct clocksource counter = {
	.name		= "avr32_counter",
35
	.rating		= 50,
36 37 38
	.read		= read_cycle_count,
	.mask		= CLOCKSOURCE_MASK(32),
	.shift		= 16,
39
	.flags		= CLOCK_SOURCE_IS_CONTINUOUS,
40 41
};

42
static irqreturn_t timer_interrupt(int irq, void *dev_id)
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 62
	/* Oprofile uses the same irq as the timer, so allow it to be shared */
	.flags		= IRQF_TIMER | IRQF_DISABLED | 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);
77

78
	raw_local_irq_restore(flags);
79 80

	return 0;
81 82
}

83 84
static void comparator_mode(enum clock_event_mode mode,
		struct clock_event_device *evdev)
85
{
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
	switch (mode) {
	case CLOCK_EVT_MODE_ONESHOT:
		pr_debug("%s: start\n", evdev->name);
		/* FALLTHROUGH */
	case CLOCK_EVT_MODE_RESUME:
		cpu_disable_idle_sleep();
		break;
	case CLOCK_EVT_MODE_UNUSED:
	case CLOCK_EVT_MODE_SHUTDOWN:
		sysreg_write(COMPARE, 0);
		pr_debug("%s: stop\n", evdev->name);
		cpu_enable_idle_sleep();
		break;
	default:
		BUG();
	}
102 103
}

104 105 106 107 108 109 110 111
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,
};
112

113 114 115 116 117 118
void read_persistent_clock(struct timespec *ts)
{
	ts->tv.sec = mktime(2007, 1, 1, 0, 0, 0);
	ts->tv_nsec = 0;
}

119 120
void __init time_init(void)
{
121
	unsigned long counter_hz;
122 123
	int ret;

124 125 126
	/* figure rate for counter */
	counter_hz = clk_get_rate(boot_cpu_data.clk);
	counter.mult = clocksource_hz2mult(counter_hz, counter.shift);
127

128
	ret = clocksource_register(&counter);
129
	if (ret)
130
		pr_debug("timer: could not register clocksource: %d\n", ret);
131

132 133 134 135
	/* 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;
136
	comparator.cpumask = cpumask_of(0);
137 138 139 140 141 142 143 144 145 146 147 148 149

	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);
150
	}
151
}