]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - arch/arm/mach-at91rm9200/at91rm9200_time.c
Initial blind fixup for arm for irq changes
[mirror_ubuntu-bionic-kernel.git] / arch / arm / mach-at91rm9200 / at91rm9200_time.c
CommitLineData
73a59c1c 1/*
8fc5ffa0 2 * linux/arch/arm/mach-at91rm9200/at91rm9200_time.c
73a59c1c
SP
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
73a59c1c
SP
22#include <linux/init.h>
23#include <linux/interrupt.h>
07d265dd 24#include <linux/irq.h>
73a59c1c
SP
25#include <linux/kernel.h>
26#include <linux/sched.h>
27#include <linux/time.h>
28
29#include <asm/hardware.h>
30#include <asm/io.h>
73a59c1c
SP
31#include <asm/mach/time.h>
32
963151f2
AV
33static unsigned long last_crtr;
34
73a59c1c
SP
35/*
36 * The ST_CRTR is updated asynchronously to the master clock. It is therefore
37 * necessary to read it twice (with the same value) to ensure accuracy.
38 */
39static inline unsigned long read_CRTR(void) {
40 unsigned long x1, x2;
41
42 do {
43 x1 = at91_sys_read(AT91_ST_CRTR);
44 x2 = at91_sys_read(AT91_ST_CRTR);
45 } while (x1 != x2);
46
47 return x1;
48}
49
50/*
51 * Returns number of microseconds since last timer interrupt. Note that interrupts
52 * will have been disabled by do_gettimeofday()
53 * 'LATCH' is hwclock ticks (see CLOCK_TICK_RATE in timex.h) per jiffy.
54 * 'tick' is usecs per jiffy (linux/timex.h).
55 */
56static unsigned long at91rm9200_gettimeoffset(void)
57{
58 unsigned long elapsed;
59
963151f2 60 elapsed = (read_CRTR() - last_crtr) & AT91_ST_ALMV;
73a59c1c
SP
61
62 return (unsigned long)(elapsed * (tick_nsec / 1000)) / LATCH;
63}
64
65/*
66 * IRQ handler for the timer.
67 */
0cd61b68 68static irqreturn_t at91rm9200_timer_interrupt(int irq, void *dev_id)
73a59c1c 69{
73a59c1c
SP
70 if (at91_sys_read(AT91_ST_SR) & AT91_ST_PITS) { /* This is a shared interrupt */
71 write_seqlock(&xtime_lock);
72
963151f2 73 while (((read_CRTR() - last_crtr) & AT91_ST_ALMV) >= LATCH) {
0cd61b68 74 timer_tick();
963151f2 75 last_crtr = (last_crtr + LATCH) & AT91_ST_ALMV;
39806805 76 }
73a59c1c
SP
77
78 write_sequnlock(&xtime_lock);
79
80 return IRQ_HANDLED;
81 }
82 else
83 return IRQ_NONE; /* not handled */
84}
85
86static struct irqaction at91rm9200_timer_irq = {
87 .name = "at91_tick",
52e405ea 88 .flags = IRQF_SHARED | IRQF_DISABLED | IRQF_TIMER,
73a59c1c
SP
89 .handler = at91rm9200_timer_interrupt
90};
91
2a6f9902
AV
92void at91rm9200_timer_reset(void)
93{
94 last_crtr = 0;
95
96 /* Real time counter incremented every 30.51758 microseconds */
97 at91_sys_write(AT91_ST_RTMR, 1);
98
99 /* Set Period Interval timer */
100 at91_sys_write(AT91_ST_PIMR, LATCH);
101
102 /* Enable Period Interval Timer interrupt */
103 at91_sys_write(AT91_ST_IER, AT91_ST_PITS);
104}
105
73a59c1c
SP
106/*
107 * Set up timer interrupt.
108 */
109void __init at91rm9200_timer_init(void)
110{
111 /* Disable all timer interrupts */
112 at91_sys_write(AT91_ST_IDR, AT91_ST_PITS | AT91_ST_WDOVF | AT91_ST_RTTINC | AT91_ST_ALMS);
113 (void) at91_sys_read(AT91_ST_SR); /* Clear any pending interrupts */
114
2a6f9902 115 /* Make IRQs happen for the system timer */
73a59c1c
SP
116 setup_irq(AT91_ID_SYS, &at91rm9200_timer_irq);
117
73a59c1c
SP
118 /* Change the kernel's 'tick' value to 10009 usec. (the default is 10000) */
119 tick_usec = (LATCH * 1000000) / CLOCK_TICK_RATE;
120
2a6f9902
AV
121 /* Initialize and enable the timer interrupt */
122 at91rm9200_timer_reset();
123}
124
125#ifdef CONFIG_PM
126static void at91rm9200_timer_suspend(void)
127{
128 /* disable Period Interval Timer interrupt */
129 at91_sys_write(AT91_ST_IDR, AT91_ST_PITS);
73a59c1c 130}
2a6f9902
AV
131#else
132#define at91rm9200_timer_suspend NULL
133#endif
73a59c1c
SP
134
135struct sys_timer at91rm9200_timer = {
136 .init = at91rm9200_timer_init,
137 .offset = at91rm9200_gettimeoffset,
2a6f9902
AV
138 .suspend = at91rm9200_timer_suspend,
139 .resume = at91rm9200_timer_reset,
73a59c1c 140};
2a6f9902 141