Merge branch 'x86-asm-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git...
[deliverable/linux.git] / arch / avr32 / kernel / time.c
CommitLineData
5f97f7f9 1/*
7760989e 2 * Copyright (C) 2004-2007 Atmel Corporation
5f97f7f9 3 *
5f97f7f9
HS
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
5f97f7f9 8#include <linux/clk.h>
e723ff66 9#include <linux/clockchips.h>
9dbef285 10#include <linux/init.h>
5f97f7f9
HS
11#include <linux/interrupt.h>
12#include <linux/irq.h>
9dbef285
HS
13#include <linux/kernel.h>
14#include <linux/time.h>
5f97f7f9 15
5f97f7f9 16#include <asm/sysreg.h>
5f97f7f9 17
3663b736 18#include <mach/pm.h>
7760989e 19
7760989e 20
8e19608e 21static cycle_t read_cycle_count(struct clocksource *cs)
5f97f7f9
HS
22{
23 return (cycle_t)sysreg_read(COUNT);
24}
25
62c6df62
DB
26/*
27 * The architectural cycle count registers are a fine clocksource unless
28 * the system idle loop use sleep states like "idle": the CPU cycles
29 * measured by COUNT (and COMPARE) don't happen during sleep states.
e723ff66 30 * Their duration also changes if cpufreq changes the CPU clock rate.
62c6df62
DB
31 * So we rate the clocksource using COUNT as very low quality.
32 */
e723ff66
DB
33static struct clocksource counter = {
34 .name = "avr32_counter",
62c6df62 35 .rating = 50,
5f97f7f9
HS
36 .read = read_cycle_count,
37 .mask = CLOCKSOURCE_MASK(32),
38 .shift = 16,
2693506c 39 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
5f97f7f9
HS
40};
41
e723ff66 42static irqreturn_t timer_interrupt(int irq, void *dev_id)
5f97f7f9 43{
e723ff66 44 struct clock_event_device *evdev = dev_id;
7760989e 45
56d3eef2
VN
46 if (unlikely(!(intc_get_pending(0) & 1)))
47 return IRQ_NONE;
48
e723ff66
DB
49 /*
50 * Disable the interrupt until the clockevent subsystem
51 * reprograms it.
52 */
53 sysreg_write(COMPARE, 0);
7760989e 54
e723ff66
DB
55 evdev->event_handler(evdev);
56 return IRQ_HANDLED;
57}
7760989e 58
e723ff66
DB
59static struct irqaction timer_irqaction = {
60 .handler = timer_interrupt,
56d3eef2
VN
61 /* Oprofile uses the same irq as the timer, so allow it to be shared */
62 .flags = IRQF_TIMER | IRQF_DISABLED | IRQF_SHARED,
e723ff66
DB
63 .name = "avr32_comparator",
64};
7760989e 65
e723ff66
DB
66static int comparator_next_event(unsigned long delta,
67 struct clock_event_device *evdev)
68{
69 unsigned long flags;
7760989e 70
e723ff66 71 raw_local_irq_save(flags);
7760989e 72
e723ff66
DB
73 /* The time to read COUNT then update COMPARE must be less
74 * than the min_delta_ns value for this clockevent source.
75 */
76 sysreg_write(COMPARE, (sysreg_read(COUNT) + delta) ? : 1);
5f97f7f9 77
e723ff66 78 raw_local_irq_restore(flags);
7760989e
HCE
79
80 return 0;
5f97f7f9
HS
81}
82
e723ff66
DB
83static void comparator_mode(enum clock_event_mode mode,
84 struct clock_event_device *evdev)
5f97f7f9 85{
e723ff66
DB
86 switch (mode) {
87 case CLOCK_EVT_MODE_ONESHOT:
88 pr_debug("%s: start\n", evdev->name);
89 /* FALLTHROUGH */
90 case CLOCK_EVT_MODE_RESUME:
91 cpu_disable_idle_sleep();
92 break;
93 case CLOCK_EVT_MODE_UNUSED:
94 case CLOCK_EVT_MODE_SHUTDOWN:
95 sysreg_write(COMPARE, 0);
96 pr_debug("%s: stop\n", evdev->name);
97 cpu_enable_idle_sleep();
98 break;
99 default:
100 BUG();
101 }
5f97f7f9
HS
102}
103
e723ff66
DB
104static struct clock_event_device comparator = {
105 .name = "avr32_comparator",
106 .features = CLOCK_EVT_FEAT_ONESHOT,
107 .shift = 16,
108 .rating = 50,
e723ff66
DB
109 .set_next_event = comparator_next_event,
110 .set_mode = comparator_mode,
111};
5f97f7f9 112
5f97f7f9
HS
113void __init time_init(void)
114{
e723ff66 115 unsigned long counter_hz;
5f97f7f9
HS
116 int ret;
117
62c6df62 118 xtime.tv_sec = mktime(2007, 1, 1, 0, 0, 0);
5f97f7f9
HS
119 xtime.tv_nsec = 0;
120
121 set_normalized_timespec(&wall_to_monotonic,
122 -xtime.tv_sec, -xtime.tv_nsec);
123
e723ff66
DB
124 /* figure rate for counter */
125 counter_hz = clk_get_rate(boot_cpu_data.clk);
126 counter.mult = clocksource_hz2mult(counter_hz, counter.shift);
5f97f7f9 127
e723ff66 128 ret = clocksource_register(&counter);
5f97f7f9 129 if (ret)
7760989e 130 pr_debug("timer: could not register clocksource: %d\n", ret);
5f97f7f9 131
e723ff66
DB
132 /* setup COMPARE clockevent */
133 comparator.mult = div_sc(counter_hz, NSEC_PER_SEC, comparator.shift);
134 comparator.max_delta_ns = clockevent_delta2ns((u32)~0, &comparator);
135 comparator.min_delta_ns = clockevent_delta2ns(50, &comparator) + 1;
320ab2b0 136 comparator.cpumask = cpumask_of(0);
e723ff66
DB
137
138 sysreg_write(COMPARE, 0);
139 timer_irqaction.dev_id = &comparator;
140
141 ret = setup_irq(0, &timer_irqaction);
142 if (ret)
143 pr_debug("timer: could not request IRQ 0: %d\n", ret);
144 else {
145 clockevents_register_device(&comparator);
146
147 pr_info("%s: irq 0, %lu.%03lu MHz\n", comparator.name,
148 ((counter_hz + 500) / 1000) / 1000,
149 ((counter_hz + 500) / 1000) % 1000);
7760989e 150 }
5f97f7f9 151}
This page took 0.2587 seconds and 5 git commands to generate.