ARM: mm: introduce present, faulting entries for PAGE_NONE
[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>
23fa648f
JCPV
17#include <linux/of.h>
18#include <linux/of_address.h>
19#include <linux/of_irq.h>
1a0ed732 20
1a0ed732
AV
21#include <asm/mach/time.h>
22
a09e64fb 23#include <mach/at91_pit.h>
1a0ed732
AV
24
25
26#define PIT_CPIV(x) ((x) & AT91_PIT_CPIV)
27#define PIT_PICNT(x) (((x) & AT91_PIT_PICNT) >> 20)
28
ad48ce74
AV
29static u32 pit_cycle; /* write-once */
30static u32 pit_cnt; /* access only w/system irq blocked */
4ab0c599 31static void __iomem *pit_base_addr __read_mostly;
ad48ce74 32
4ab0c599
JCPV
33static inline unsigned int pit_read(unsigned int reg_offset)
34{
35 return __raw_readl(pit_base_addr + reg_offset);
36}
37
38static inline void pit_write(unsigned int reg_offset, unsigned long value)
39{
40 __raw_writel(value, pit_base_addr + reg_offset);
41}
ad48ce74 42
1a0ed732 43/*
ad48ce74
AV
44 * Clocksource: just a monotonic counter of MCK/16 cycles.
45 * We don't care whether or not PIT irqs are enabled.
1a0ed732 46 */
8e19608e 47static cycle_t read_pit_clk(struct clocksource *cs)
1a0ed732 48{
ad48ce74
AV
49 unsigned long flags;
50 u32 elapsed;
51 u32 t;
52
53 raw_local_irq_save(flags);
54 elapsed = pit_cnt;
4ab0c599 55 t = pit_read(AT91_PIT_PIIR);
ad48ce74
AV
56 raw_local_irq_restore(flags);
57
58 elapsed += PIT_PICNT(t) * pit_cycle;
59 elapsed += PIT_CPIV(t);
60 return elapsed;
61}
62
63static struct clocksource pit_clk = {
64 .name = "pit",
65 .rating = 175,
66 .read = read_pit_clk,
ad48ce74
AV
67 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
68};
1a0ed732 69
1a0ed732 70
ad48ce74
AV
71/*
72 * Clockevent device: interrupts every 1/HZ (== pit_cycles * MCK/16)
73 */
74static void
75pit_clkevt_mode(enum clock_event_mode mode, struct clock_event_device *dev)
76{
ad48ce74
AV
77 switch (mode) {
78 case CLOCK_EVT_MODE_PERIODIC:
501d7038 79 /* update clocksource counter */
4ab0c599
JCPV
80 pit_cnt += pit_cycle * PIT_PICNT(pit_read(AT91_PIT_PIVR));
81 pit_write(AT91_PIT_MR, (pit_cycle - 1) | AT91_PIT_PITEN
ad48ce74 82 | AT91_PIT_PITIEN);
ad48ce74
AV
83 break;
84 case CLOCK_EVT_MODE_ONESHOT:
85 BUG();
86 /* FALLTHROUGH */
87 case CLOCK_EVT_MODE_SHUTDOWN:
88 case CLOCK_EVT_MODE_UNUSED:
89 /* disable irq, leaving the clocksource active */
4ab0c599 90 pit_write(AT91_PIT_MR, (pit_cycle - 1) | AT91_PIT_PITEN);
ad48ce74
AV
91 break;
92 case CLOCK_EVT_MODE_RESUME:
93 break;
94 }
1a0ed732
AV
95}
96
ad48ce74
AV
97static struct clock_event_device pit_clkevt = {
98 .name = "pit",
99 .features = CLOCK_EVT_FEAT_PERIODIC,
100 .shift = 32,
101 .rating = 100,
ad48ce74
AV
102 .set_mode = pit_clkevt_mode,
103};
104
105
1a0ed732
AV
106/*
107 * IRQ handler for the timer.
108 */
ad48ce74 109static irqreturn_t at91sam926x_pit_interrupt(int irq, void *dev_id)
1a0ed732 110{
501d7038
UKK
111 /*
112 * irqs should be disabled here, but as the irq is shared they are only
113 * guaranteed to be off if the timer irq is registered first.
114 */
115 WARN_ON_ONCE(!irqs_disabled());
1a0ed732 116
ad48ce74
AV
117 /* The PIT interrupt may be disabled, and is shared */
118 if ((pit_clkevt.mode == CLOCK_EVT_MODE_PERIODIC)
4ab0c599 119 && (pit_read(AT91_PIT_SR) & AT91_PIT_PITS)) {
ad48ce74
AV
120 unsigned nr_ticks;
121
122 /* Get number of ticks performed before irq, and ack it */
4ab0c599 123 nr_ticks = PIT_PICNT(pit_read(AT91_PIT_PIVR));
1a0ed732 124 do {
ad48ce74
AV
125 pit_cnt += pit_cycle;
126 pit_clkevt.event_handler(&pit_clkevt);
1a0ed732
AV
127 nr_ticks--;
128 } while (nr_ticks);
129
1a0ed732 130 return IRQ_HANDLED;
ad48ce74
AV
131 }
132
133 return IRQ_NONE;
1a0ed732
AV
134}
135
ad48ce74 136static struct irqaction at91sam926x_pit_irq = {
1a0ed732 137 .name = "at91_tick",
b30fabad 138 .flags = IRQF_SHARED | IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
23fa648f 139 .handler = at91sam926x_pit_interrupt,
8fe82a55 140 .irq = NR_IRQS_LEGACY + AT91_ID_SYS,
1a0ed732
AV
141};
142
ad48ce74 143static void at91sam926x_pit_reset(void)
1a0ed732 144{
ad48ce74 145 /* Disable timer and irqs */
4ab0c599 146 pit_write(AT91_PIT_MR, 0);
1a0ed732 147
ad48ce74 148 /* Clear any pending interrupts, wait for PIT to stop counting */
4ab0c599 149 while (PIT_CPIV(pit_read(AT91_PIT_PIVR)) != 0)
ad48ce74 150 cpu_relax();
1a0ed732 151
ad48ce74 152 /* Start PIT but don't enable IRQ */
4ab0c599 153 pit_write(AT91_PIT_MR, (pit_cycle - 1) | AT91_PIT_PITEN);
1a0ed732
AV
154}
155
23fa648f
JCPV
156#ifdef CONFIG_OF
157static struct of_device_id pit_timer_ids[] = {
158 { .compatible = "atmel,at91sam9260-pit" },
159 { /* sentinel */ }
160};
161
162static int __init of_at91sam926x_pit_init(void)
163{
164 struct device_node *np;
165 int ret;
166
167 np = of_find_matching_node(NULL, pit_timer_ids);
168 if (!np)
169 goto err;
170
171 pit_base_addr = of_iomap(np, 0);
172 if (!pit_base_addr)
173 goto node_err;
174
175 /* Get the interrupts property */
176 ret = irq_of_parse_and_map(np, 0);
986c2657
NF
177 if (!ret) {
178 pr_crit("AT91: PIT: Unable to get IRQ from DT\n");
23fa648f 179 goto ioremap_err;
986c2657 180 }
23fa648f
JCPV
181 at91sam926x_pit_irq.irq = ret;
182
183 of_node_put(np);
184
185 return 0;
186
187ioremap_err:
188 iounmap(pit_base_addr);
189node_err:
190 of_node_put(np);
191err:
192 return -EINVAL;
193}
194#else
195static int __init of_at91sam926x_pit_init(void)
196{
197 return -EINVAL;
198}
199#endif
200
1a0ed732 201/*
ad48ce74 202 * Set up both clocksource and clockevent support.
1a0ed732 203 */
ad48ce74 204static void __init at91sam926x_pit_init(void)
1a0ed732 205{
ad48ce74
AV
206 unsigned long pit_rate;
207 unsigned bits;
986c2657 208 int ret;
ad48ce74 209
23fa648f
JCPV
210 /* For device tree enabled device: initialize here */
211 of_at91sam926x_pit_init();
212
ad48ce74
AV
213 /*
214 * Use our actual MCK to figure out how many MCK/16 ticks per
215 * 1/HZ period (instead of a compile-time constant LATCH).
216 */
217 pit_rate = clk_get_rate(clk_get(NULL, "mck")) / 16;
218 pit_cycle = (pit_rate + HZ/2) / HZ;
219 WARN_ON(((pit_cycle - 1) & ~AT91_PIT_PIV) != 0);
1a0ed732 220
ad48ce74
AV
221 /* Initialize and enable the timer */
222 at91sam926x_pit_reset();
223
224 /*
225 * Register clocksource. The high order bits of PIV are unused,
226 * so this isn't a 32-bit counter unless we get clockevent irqs.
227 */
ad48ce74
AV
228 bits = 12 /* PICNT */ + ilog2(pit_cycle) /* PIV */;
229 pit_clk.mask = CLOCKSOURCE_MASK(bits);
132b1632 230 clocksource_register_hz(&pit_clk, pit_rate);
ad48ce74
AV
231
232 /* Set up irq handler */
986c2657
NF
233 ret = setup_irq(at91sam926x_pit_irq.irq, &at91sam926x_pit_irq);
234 if (ret)
235 pr_crit("AT91: PIT: Unable to setup IRQ\n");
ad48ce74
AV
236
237 /* Set up and register clockevents */
238 pit_clkevt.mult = div_sc(pit_rate, NSEC_PER_SEC, pit_clkevt.shift);
320ab2b0 239 pit_clkevt.cpumask = cpumask_of(0);
ad48ce74 240 clockevents_register_device(&pit_clkevt);
1a0ed732
AV
241}
242
ad48ce74 243static void at91sam926x_pit_suspend(void)
1a0ed732
AV
244{
245 /* Disable timer */
4ab0c599
JCPV
246 pit_write(AT91_PIT_MR, 0);
247}
248
249void __init at91sam926x_ioremap_pit(u32 addr)
250{
23fa648f
JCPV
251#if defined(CONFIG_OF)
252 struct device_node *np =
253 of_find_matching_node(NULL, pit_timer_ids);
254
255 if (np) {
256 of_node_put(np);
257 return;
258 }
259#endif
4ab0c599
JCPV
260 pit_base_addr = ioremap(addr, 16);
261
262 if (!pit_base_addr)
263 panic("Impossible to ioremap PIT\n");
1a0ed732 264}
1a0ed732
AV
265
266struct sys_timer at91sam926x_timer = {
ad48ce74
AV
267 .init = at91sam926x_pit_init,
268 .suspend = at91sam926x_pit_suspend,
269 .resume = at91sam926x_pit_reset,
1a0ed732 270};
This page took 0.419207 seconds and 5 git commands to generate.