Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input
[pandora-kernel.git] / arch / arm / mach-at91 / at91rm9200_time.c
1 /*
2  * linux/arch/arm/mach-at91/at91rm9200_time.c
3  *
4  *  Copyright (C) 2003 SAN People
5  *  Copyright (C) 2003 ATMEL
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20  */
21
22 #include <linux/kernel.h>
23 #include <linux/interrupt.h>
24 #include <linux/irq.h>
25 #include <linux/clockchips.h>
26
27 #include <asm/mach/time.h>
28
29 #include <mach/at91_st.h>
30
31 static unsigned long last_crtr;
32 static u32 irqmask;
33 static struct clock_event_device clkevt;
34
35 /*
36  * The ST_CRTR is updated asynchronously to the master clock ... but
37  * the updates as seen by the CPU don't seem to be strictly monotonic.
38  * Waiting until we read the same value twice avoids glitching.
39  */
40 static inline unsigned long read_CRTR(void)
41 {
42         unsigned long x1, x2;
43
44         x1 = at91_sys_read(AT91_ST_CRTR);
45         do {
46                 x2 = at91_sys_read(AT91_ST_CRTR);
47                 if (x1 == x2)
48                         break;
49                 x1 = x2;
50         } while (1);
51         return x1;
52 }
53
54 /*
55  * IRQ handler for the timer.
56  */
57 static irqreturn_t at91rm9200_timer_interrupt(int irq, void *dev_id)
58 {
59         u32     sr = at91_sys_read(AT91_ST_SR) & irqmask;
60
61         /*
62          * irqs should be disabled here, but as the irq is shared they are only
63          * guaranteed to be off if the timer irq is registered first.
64          */
65         WARN_ON_ONCE(!irqs_disabled());
66
67         /* simulate "oneshot" timer with alarm */
68         if (sr & AT91_ST_ALMS) {
69                 clkevt.event_handler(&clkevt);
70                 return IRQ_HANDLED;
71         }
72
73         /* periodic mode should handle delayed ticks */
74         if (sr & AT91_ST_PITS) {
75                 u32     crtr = read_CRTR();
76
77                 while (((crtr - last_crtr) & AT91_ST_CRTV) >= LATCH) {
78                         last_crtr += LATCH;
79                         clkevt.event_handler(&clkevt);
80                 }
81                 return IRQ_HANDLED;
82         }
83
84         /* this irq is shared ... */
85         return IRQ_NONE;
86 }
87
88 static struct irqaction at91rm9200_timer_irq = {
89         .name           = "at91_tick",
90         .flags          = IRQF_SHARED | IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
91         .handler        = at91rm9200_timer_interrupt
92 };
93
94 static cycle_t read_clk32k(struct clocksource *cs)
95 {
96         return read_CRTR();
97 }
98
99 static struct clocksource clk32k = {
100         .name           = "32k_counter",
101         .rating         = 150,
102         .read           = read_clk32k,
103         .mask           = CLOCKSOURCE_MASK(20),
104         .shift          = 10,
105         .flags          = CLOCK_SOURCE_IS_CONTINUOUS,
106 };
107
108 static void
109 clkevt32k_mode(enum clock_event_mode mode, struct clock_event_device *dev)
110 {
111         /* Disable and flush pending timer interrupts */
112         at91_sys_write(AT91_ST_IDR, AT91_ST_PITS | AT91_ST_ALMS);
113         (void) at91_sys_read(AT91_ST_SR);
114
115         last_crtr = read_CRTR();
116         switch (mode) {
117         case CLOCK_EVT_MODE_PERIODIC:
118                 /* PIT for periodic irqs; fixed rate of 1/HZ */
119                 irqmask = AT91_ST_PITS;
120                 at91_sys_write(AT91_ST_PIMR, LATCH);
121                 break;
122         case CLOCK_EVT_MODE_ONESHOT:
123                 /* ALM for oneshot irqs, set by next_event()
124                  * before 32 seconds have passed
125                  */
126                 irqmask = AT91_ST_ALMS;
127                 at91_sys_write(AT91_ST_RTAR, last_crtr);
128                 break;
129         case CLOCK_EVT_MODE_SHUTDOWN:
130         case CLOCK_EVT_MODE_UNUSED:
131         case CLOCK_EVT_MODE_RESUME:
132                 irqmask = 0;
133                 break;
134         }
135         at91_sys_write(AT91_ST_IER, irqmask);
136 }
137
138 static int
139 clkevt32k_next_event(unsigned long delta, struct clock_event_device *dev)
140 {
141         u32             alm;
142         int             status = 0;
143
144         BUG_ON(delta < 2);
145
146         /* The alarm IRQ uses absolute time (now+delta), not the relative
147          * time (delta) in our calling convention.  Like all clockevents
148          * using such "match" hardware, we have a race to defend against.
149          *
150          * Our defense here is to have set up the clockevent device so the
151          * delta is at least two.  That way we never end up writing RTAR
152          * with the value then held in CRTR ... which would mean the match
153          * wouldn't trigger until 32 seconds later, after CRTR wraps.
154          */
155         alm = read_CRTR();
156
157         /* Cancel any pending alarm; flush any pending IRQ */
158         at91_sys_write(AT91_ST_RTAR, alm);
159         (void) at91_sys_read(AT91_ST_SR);
160
161         /* Schedule alarm by writing RTAR. */
162         alm += delta;
163         at91_sys_write(AT91_ST_RTAR, alm);
164
165         return status;
166 }
167
168 static struct clock_event_device clkevt = {
169         .name           = "at91_tick",
170         .features       = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT,
171         .shift          = 32,
172         .rating         = 150,
173         .set_next_event = clkevt32k_next_event,
174         .set_mode       = clkevt32k_mode,
175 };
176
177 /*
178  * ST (system timer) module supports both clockevents and clocksource.
179  */
180 void __init at91rm9200_timer_init(void)
181 {
182         /* Disable all timer interrupts, and clear any pending ones */
183         at91_sys_write(AT91_ST_IDR,
184                 AT91_ST_PITS | AT91_ST_WDOVF | AT91_ST_RTTINC | AT91_ST_ALMS);
185         (void) at91_sys_read(AT91_ST_SR);
186
187         /* Make IRQs happen for the system timer */
188         setup_irq(AT91_ID_SYS, &at91rm9200_timer_irq);
189
190         /* The 32KiHz "Slow Clock" (tick every 30517.58 nanoseconds) is used
191          * directly for the clocksource and all clockevents, after adjusting
192          * its prescaler from the 1 Hz default.
193          */
194         at91_sys_write(AT91_ST_RTMR, 1);
195
196         /* Setup timer clockevent, with minimum of two ticks (important!!) */
197         clkevt.mult = div_sc(AT91_SLOW_CLOCK, NSEC_PER_SEC, clkevt.shift);
198         clkevt.max_delta_ns = clockevent_delta2ns(AT91_ST_ALMV, &clkevt);
199         clkevt.min_delta_ns = clockevent_delta2ns(2, &clkevt) + 1;
200         clkevt.cpumask = cpumask_of(0);
201         clockevents_register_device(&clkevt);
202
203         /* register clocksource */
204         clk32k.mult = clocksource_hz2mult(AT91_SLOW_CLOCK, clk32k.shift);
205         clocksource_register(&clk32k);
206 }
207
208 struct sys_timer at91rm9200_timer = {
209         .init           = at91rm9200_timer_init,
210 };
211