ARM: at91: AIC and GPIO IRQ device tree initialization
[deliverable/linux.git] / arch / arm / mach-at91 / at91sam926x_time.c
CommitLineData
1a0ed732 1/*
ad48ce74 2 * at91sam926x_time.c - Periodic Interval Timer (PIT) for at91sam926x
1a0ed732
AV
3 *
4 * Copyright (C) 2005-2006 M. Amine SAYA, ATMEL Rousset, France
5 * Revision 2005 M. Nicolas Diremdjian, ATMEL Rousset, France
ad48ce74 6 * Converted to ClockSource/ClockEvents by David Brownell.
1a0ed732
AV
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
1a0ed732
AV
12#include <linux/interrupt.h>
13#include <linux/irq.h>
14#include <linux/kernel.h>
ad48ce74
AV
15#include <linux/clk.h>
16#include <linux/clockchips.h>
1a0ed732 17
1a0ed732
AV
18#include <asm/mach/time.h>
19
a09e64fb 20#include <mach/at91_pit.h>
1a0ed732
AV
21
22
23#define PIT_CPIV(x) ((x) & AT91_PIT_CPIV)
24#define PIT_PICNT(x) (((x) & AT91_PIT_PICNT) >> 20)
25
ad48ce74
AV
26static u32 pit_cycle; /* write-once */
27static u32 pit_cnt; /* access only w/system irq blocked */
4ab0c599 28static void __iomem *pit_base_addr __read_mostly;
ad48ce74 29
4ab0c599
JCPV
30static inline unsigned int pit_read(unsigned int reg_offset)
31{
32 return __raw_readl(pit_base_addr + reg_offset);
33}
34
35static inline void pit_write(unsigned int reg_offset, unsigned long value)
36{
37 __raw_writel(value, pit_base_addr + reg_offset);
38}
ad48ce74 39
1a0ed732 40/*
ad48ce74
AV
41 * Clocksource: just a monotonic counter of MCK/16 cycles.
42 * We don't care whether or not PIT irqs are enabled.
1a0ed732 43 */
8e19608e 44static cycle_t read_pit_clk(struct clocksource *cs)
1a0ed732 45{
ad48ce74
AV
46 unsigned long flags;
47 u32 elapsed;
48 u32 t;
49
50 raw_local_irq_save(flags);
51 elapsed = pit_cnt;
4ab0c599 52 t = pit_read(AT91_PIT_PIIR);
ad48ce74
AV
53 raw_local_irq_restore(flags);
54
55 elapsed += PIT_PICNT(t) * pit_cycle;
56 elapsed += PIT_CPIV(t);
57 return elapsed;
58}
59
60static struct clocksource pit_clk = {
61 .name = "pit",
62 .rating = 175,
63 .read = read_pit_clk,
ad48ce74
AV
64 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
65};
1a0ed732 66
1a0ed732 67
ad48ce74
AV
68/*
69 * Clockevent device: interrupts every 1/HZ (== pit_cycles * MCK/16)
70 */
71static void
72pit_clkevt_mode(enum clock_event_mode mode, struct clock_event_device *dev)
73{
ad48ce74
AV
74 switch (mode) {
75 case CLOCK_EVT_MODE_PERIODIC:
501d7038 76 /* update clocksource counter */
4ab0c599
JCPV
77 pit_cnt += pit_cycle * PIT_PICNT(pit_read(AT91_PIT_PIVR));
78 pit_write(AT91_PIT_MR, (pit_cycle - 1) | AT91_PIT_PITEN
ad48ce74 79 | AT91_PIT_PITIEN);
ad48ce74
AV
80 break;
81 case CLOCK_EVT_MODE_ONESHOT:
82 BUG();
83 /* FALLTHROUGH */
84 case CLOCK_EVT_MODE_SHUTDOWN:
85 case CLOCK_EVT_MODE_UNUSED:
86 /* disable irq, leaving the clocksource active */
4ab0c599 87 pit_write(AT91_PIT_MR, (pit_cycle - 1) | AT91_PIT_PITEN);
ad48ce74
AV
88 break;
89 case CLOCK_EVT_MODE_RESUME:
90 break;
91 }
1a0ed732
AV
92}
93
ad48ce74
AV
94static struct clock_event_device pit_clkevt = {
95 .name = "pit",
96 .features = CLOCK_EVT_FEAT_PERIODIC,
97 .shift = 32,
98 .rating = 100,
ad48ce74
AV
99 .set_mode = pit_clkevt_mode,
100};
101
102
1a0ed732
AV
103/*
104 * IRQ handler for the timer.
105 */
ad48ce74 106static irqreturn_t at91sam926x_pit_interrupt(int irq, void *dev_id)
1a0ed732 107{
501d7038
UKK
108 /*
109 * irqs should be disabled here, but as the irq is shared they are only
110 * guaranteed to be off if the timer irq is registered first.
111 */
112 WARN_ON_ONCE(!irqs_disabled());
1a0ed732 113
ad48ce74
AV
114 /* The PIT interrupt may be disabled, and is shared */
115 if ((pit_clkevt.mode == CLOCK_EVT_MODE_PERIODIC)
4ab0c599 116 && (pit_read(AT91_PIT_SR) & AT91_PIT_PITS)) {
ad48ce74
AV
117 unsigned nr_ticks;
118
119 /* Get number of ticks performed before irq, and ack it */
4ab0c599 120 nr_ticks = PIT_PICNT(pit_read(AT91_PIT_PIVR));
1a0ed732 121 do {
ad48ce74
AV
122 pit_cnt += pit_cycle;
123 pit_clkevt.event_handler(&pit_clkevt);
1a0ed732
AV
124 nr_ticks--;
125 } while (nr_ticks);
126
1a0ed732 127 return IRQ_HANDLED;
ad48ce74
AV
128 }
129
130 return IRQ_NONE;
1a0ed732
AV
131}
132
ad48ce74 133static struct irqaction at91sam926x_pit_irq = {
1a0ed732 134 .name = "at91_tick",
b30fabad 135 .flags = IRQF_SHARED | IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
ad48ce74 136 .handler = at91sam926x_pit_interrupt
1a0ed732
AV
137};
138
ad48ce74 139static void at91sam926x_pit_reset(void)
1a0ed732 140{
ad48ce74 141 /* Disable timer and irqs */
4ab0c599 142 pit_write(AT91_PIT_MR, 0);
1a0ed732 143
ad48ce74 144 /* Clear any pending interrupts, wait for PIT to stop counting */
4ab0c599 145 while (PIT_CPIV(pit_read(AT91_PIT_PIVR)) != 0)
ad48ce74 146 cpu_relax();
1a0ed732 147
ad48ce74 148 /* Start PIT but don't enable IRQ */
4ab0c599 149 pit_write(AT91_PIT_MR, (pit_cycle - 1) | AT91_PIT_PITEN);
1a0ed732
AV
150}
151
152/*
ad48ce74 153 * Set up both clocksource and clockevent support.
1a0ed732 154 */
ad48ce74 155static void __init at91sam926x_pit_init(void)
1a0ed732 156{
ad48ce74
AV
157 unsigned long pit_rate;
158 unsigned bits;
159
160 /*
161 * Use our actual MCK to figure out how many MCK/16 ticks per
162 * 1/HZ period (instead of a compile-time constant LATCH).
163 */
164 pit_rate = clk_get_rate(clk_get(NULL, "mck")) / 16;
165 pit_cycle = (pit_rate + HZ/2) / HZ;
166 WARN_ON(((pit_cycle - 1) & ~AT91_PIT_PIV) != 0);
1a0ed732 167
ad48ce74
AV
168 /* Initialize and enable the timer */
169 at91sam926x_pit_reset();
170
171 /*
172 * Register clocksource. The high order bits of PIV are unused,
173 * so this isn't a 32-bit counter unless we get clockevent irqs.
174 */
ad48ce74
AV
175 bits = 12 /* PICNT */ + ilog2(pit_cycle) /* PIV */;
176 pit_clk.mask = CLOCKSOURCE_MASK(bits);
132b1632 177 clocksource_register_hz(&pit_clk, pit_rate);
ad48ce74
AV
178
179 /* Set up irq handler */
180 setup_irq(AT91_ID_SYS, &at91sam926x_pit_irq);
181
182 /* Set up and register clockevents */
183 pit_clkevt.mult = div_sc(pit_rate, NSEC_PER_SEC, pit_clkevt.shift);
320ab2b0 184 pit_clkevt.cpumask = cpumask_of(0);
ad48ce74 185 clockevents_register_device(&pit_clkevt);
1a0ed732
AV
186}
187
ad48ce74 188static void at91sam926x_pit_suspend(void)
1a0ed732
AV
189{
190 /* Disable timer */
4ab0c599
JCPV
191 pit_write(AT91_PIT_MR, 0);
192}
193
194void __init at91sam926x_ioremap_pit(u32 addr)
195{
196 pit_base_addr = ioremap(addr, 16);
197
198 if (!pit_base_addr)
199 panic("Impossible to ioremap PIT\n");
1a0ed732 200}
1a0ed732
AV
201
202struct sys_timer at91sam926x_timer = {
ad48ce74
AV
203 .init = at91sam926x_pit_init,
204 .suspend = at91sam926x_pit_suspend,
205 .resume = at91sam926x_pit_reset,
1a0ed732 206};
This page took 0.40789 seconds and 5 git commands to generate.