blob: 5d71476a28327db1e6adb07f895ed1d500c4421a [file] [log] [blame]
Andrew Victor1a0ed732006-12-01 09:04:47 +01001/*
Andrew Victorad48ce72008-04-16 20:43:49 +01002 * at91sam926x_time.c - Periodic Interval Timer (PIT) for at91sam926x
Andrew Victor1a0ed732006-12-01 09:04:47 +01003 *
4 * Copyright (C) 2005-2006 M. Amine SAYA, ATMEL Rousset, France
5 * Revision 2005 M. Nicolas Diremdjian, ATMEL Rousset, France
Andrew Victorad48ce72008-04-16 20:43:49 +01006 * Converted to ClockSource/ClockEvents by David Brownell.
Andrew Victor1a0ed732006-12-01 09:04:47 +01007 *
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 */
Andrew Victor1a0ed732006-12-01 09:04:47 +010012#include <linux/interrupt.h>
13#include <linux/irq.h>
14#include <linux/kernel.h>
Andrew Victorad48ce72008-04-16 20:43:49 +010015#include <linux/clk.h>
16#include <linux/clockchips.h>
Jean-Christophe PLAGNIOL-VILLARD23fa6482012-02-27 11:19:34 +010017#include <linux/of.h>
18#include <linux/of_address.h>
19#include <linux/of_irq.h>
Andrew Victor1a0ed732006-12-01 09:04:47 +010020
Andrew Victor1a0ed732006-12-01 09:04:47 +010021#include <asm/mach/time.h>
22
Russell Kinga09e64f2008-08-05 16:14:15 +010023#include <mach/at91_pit.h>
Andrew Victor1a0ed732006-12-01 09:04:47 +010024
25
26#define PIT_CPIV(x) ((x) & AT91_PIT_CPIV)
27#define PIT_PICNT(x) (((x) & AT91_PIT_PICNT) >> 20)
28
Andrew Victorad48ce72008-04-16 20:43:49 +010029static u32 pit_cycle; /* write-once */
30static u32 pit_cnt; /* access only w/system irq blocked */
Jean-Christophe PLAGNIOL-VILLARD4ab0c5992011-09-18 22:29:50 +080031static void __iomem *pit_base_addr __read_mostly;
Andrew Victorad48ce72008-04-16 20:43:49 +010032
Jean-Christophe PLAGNIOL-VILLARD4ab0c5992011-09-18 22:29:50 +080033static 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}
Andrew Victorad48ce72008-04-16 20:43:49 +010042
Andrew Victor1a0ed732006-12-01 09:04:47 +010043/*
Andrew Victorad48ce72008-04-16 20:43:49 +010044 * Clocksource: just a monotonic counter of MCK/16 cycles.
45 * We don't care whether or not PIT irqs are enabled.
Andrew Victor1a0ed732006-12-01 09:04:47 +010046 */
Magnus Damm8e196082009-04-21 12:24:00 -070047static cycle_t read_pit_clk(struct clocksource *cs)
Andrew Victor1a0ed732006-12-01 09:04:47 +010048{
Andrew Victorad48ce72008-04-16 20:43:49 +010049 unsigned long flags;
50 u32 elapsed;
51 u32 t;
Andrew Victor1a0ed732006-12-01 09:04:47 +010052
Andrew Victorad48ce72008-04-16 20:43:49 +010053 raw_local_irq_save(flags);
54 elapsed = pit_cnt;
Jean-Christophe PLAGNIOL-VILLARD4ab0c5992011-09-18 22:29:50 +080055 t = pit_read(AT91_PIT_PIIR);
Andrew Victorad48ce72008-04-16 20:43:49 +010056 raw_local_irq_restore(flags);
Andrew Victor1a0ed732006-12-01 09:04:47 +010057
Andrew Victorad48ce72008-04-16 20:43:49 +010058 elapsed += PIT_PICNT(t) * pit_cycle;
59 elapsed += PIT_CPIV(t);
60 return elapsed;
Andrew Victor1a0ed732006-12-01 09:04:47 +010061}
62
Andrew Victorad48ce72008-04-16 20:43:49 +010063static struct clocksource pit_clk = {
64 .name = "pit",
65 .rating = 175,
66 .read = read_pit_clk,
Andrew Victorad48ce72008-04-16 20:43:49 +010067 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
68};
69
70
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{
Andrew Victorad48ce72008-04-16 20:43:49 +010077 switch (mode) {
78 case CLOCK_EVT_MODE_PERIODIC:
Uwe Kleine-König501d7032009-09-21 09:30:09 +020079 /* update clocksource counter */
Jean-Christophe PLAGNIOL-VILLARD4ab0c5992011-09-18 22:29:50 +080080 pit_cnt += pit_cycle * PIT_PICNT(pit_read(AT91_PIT_PIVR));
81 pit_write(AT91_PIT_MR, (pit_cycle - 1) | AT91_PIT_PITEN
Andrew Victorad48ce72008-04-16 20:43:49 +010082 | AT91_PIT_PITIEN);
Andrew Victorad48ce72008-04-16 20:43:49 +010083 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 */
Jean-Christophe PLAGNIOL-VILLARD4ab0c5992011-09-18 22:29:50 +080090 pit_write(AT91_PIT_MR, (pit_cycle - 1) | AT91_PIT_PITEN);
Andrew Victorad48ce72008-04-16 20:43:49 +010091 break;
92 case CLOCK_EVT_MODE_RESUME:
93 break;
94 }
95}
96
97static struct clock_event_device pit_clkevt = {
98 .name = "pit",
99 .features = CLOCK_EVT_FEAT_PERIODIC,
100 .shift = 32,
101 .rating = 100,
Andrew Victorad48ce72008-04-16 20:43:49 +0100102 .set_mode = pit_clkevt_mode,
103};
104
105
Andrew Victor1a0ed732006-12-01 09:04:47 +0100106/*
107 * IRQ handler for the timer.
108 */
Andrew Victorad48ce72008-04-16 20:43:49 +0100109static irqreturn_t at91sam926x_pit_interrupt(int irq, void *dev_id)
Andrew Victor1a0ed732006-12-01 09:04:47 +0100110{
Uwe Kleine-König501d7032009-09-21 09:30:09 +0200111 /*
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());
Andrew Victor1a0ed732006-12-01 09:04:47 +0100116
Andrew Victorad48ce72008-04-16 20:43:49 +0100117 /* The PIT interrupt may be disabled, and is shared */
118 if ((pit_clkevt.mode == CLOCK_EVT_MODE_PERIODIC)
Jean-Christophe PLAGNIOL-VILLARD4ab0c5992011-09-18 22:29:50 +0800119 && (pit_read(AT91_PIT_SR) & AT91_PIT_PITS)) {
Andrew Victorad48ce72008-04-16 20:43:49 +0100120 unsigned nr_ticks;
121
122 /* Get number of ticks performed before irq, and ack it */
Jean-Christophe PLAGNIOL-VILLARD4ab0c5992011-09-18 22:29:50 +0800123 nr_ticks = PIT_PICNT(pit_read(AT91_PIT_PIVR));
Andrew Victor1a0ed732006-12-01 09:04:47 +0100124 do {
Andrew Victorad48ce72008-04-16 20:43:49 +0100125 pit_cnt += pit_cycle;
126 pit_clkevt.event_handler(&pit_clkevt);
Andrew Victor1a0ed732006-12-01 09:04:47 +0100127 nr_ticks--;
128 } while (nr_ticks);
129
Andrew Victor1a0ed732006-12-01 09:04:47 +0100130 return IRQ_HANDLED;
Andrew Victorad48ce72008-04-16 20:43:49 +0100131 }
132
133 return IRQ_NONE;
Andrew Victor1a0ed732006-12-01 09:04:47 +0100134}
135
Andrew Victorad48ce72008-04-16 20:43:49 +0100136static struct irqaction at91sam926x_pit_irq = {
Andrew Victor1a0ed732006-12-01 09:04:47 +0100137 .name = "at91_tick",
Bernhard Walleb30faba2007-05-08 00:35:39 -0700138 .flags = IRQF_SHARED | IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
Jean-Christophe PLAGNIOL-VILLARD23fa6482012-02-27 11:19:34 +0100139 .handler = at91sam926x_pit_interrupt,
140 .irq = AT91_ID_SYS,
Andrew Victor1a0ed732006-12-01 09:04:47 +0100141};
142
Andrew Victorad48ce72008-04-16 20:43:49 +0100143static void at91sam926x_pit_reset(void)
Andrew Victor1a0ed732006-12-01 09:04:47 +0100144{
Andrew Victorad48ce72008-04-16 20:43:49 +0100145 /* Disable timer and irqs */
Jean-Christophe PLAGNIOL-VILLARD4ab0c5992011-09-18 22:29:50 +0800146 pit_write(AT91_PIT_MR, 0);
Andrew Victor1a0ed732006-12-01 09:04:47 +0100147
Andrew Victorad48ce72008-04-16 20:43:49 +0100148 /* Clear any pending interrupts, wait for PIT to stop counting */
Jean-Christophe PLAGNIOL-VILLARD4ab0c5992011-09-18 22:29:50 +0800149 while (PIT_CPIV(pit_read(AT91_PIT_PIVR)) != 0)
Andrew Victorad48ce72008-04-16 20:43:49 +0100150 cpu_relax();
Andrew Victor1a0ed732006-12-01 09:04:47 +0100151
Andrew Victorad48ce72008-04-16 20:43:49 +0100152 /* Start PIT but don't enable IRQ */
Jean-Christophe PLAGNIOL-VILLARD4ab0c5992011-09-18 22:29:50 +0800153 pit_write(AT91_PIT_MR, (pit_cycle - 1) | AT91_PIT_PITEN);
Andrew Victor1a0ed732006-12-01 09:04:47 +0100154}
155
Jean-Christophe PLAGNIOL-VILLARD23fa6482012-02-27 11:19:34 +0100156#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);
177 if (!ret)
178 goto ioremap_err;
179 at91sam926x_pit_irq.irq = ret;
180
181 of_node_put(np);
182
183 return 0;
184
185ioremap_err:
186 iounmap(pit_base_addr);
187node_err:
188 of_node_put(np);
189err:
190 return -EINVAL;
191}
192#else
193static int __init of_at91sam926x_pit_init(void)
194{
195 return -EINVAL;
196}
197#endif
198
Andrew Victor1a0ed732006-12-01 09:04:47 +0100199/*
Andrew Victorad48ce72008-04-16 20:43:49 +0100200 * Set up both clocksource and clockevent support.
Andrew Victor1a0ed732006-12-01 09:04:47 +0100201 */
Andrew Victorad48ce72008-04-16 20:43:49 +0100202static void __init at91sam926x_pit_init(void)
Andrew Victor1a0ed732006-12-01 09:04:47 +0100203{
Andrew Victorad48ce72008-04-16 20:43:49 +0100204 unsigned long pit_rate;
205 unsigned bits;
Andrew Victor1a0ed732006-12-01 09:04:47 +0100206
Jean-Christophe PLAGNIOL-VILLARD23fa6482012-02-27 11:19:34 +0100207 /* For device tree enabled device: initialize here */
208 of_at91sam926x_pit_init();
209
Andrew Victorad48ce72008-04-16 20:43:49 +0100210 /*
211 * Use our actual MCK to figure out how many MCK/16 ticks per
212 * 1/HZ period (instead of a compile-time constant LATCH).
213 */
214 pit_rate = clk_get_rate(clk_get(NULL, "mck")) / 16;
215 pit_cycle = (pit_rate + HZ/2) / HZ;
216 WARN_ON(((pit_cycle - 1) & ~AT91_PIT_PIV) != 0);
217
218 /* Initialize and enable the timer */
219 at91sam926x_pit_reset();
220
221 /*
222 * Register clocksource. The high order bits of PIV are unused,
223 * so this isn't a 32-bit counter unless we get clockevent irqs.
224 */
Andrew Victorad48ce72008-04-16 20:43:49 +0100225 bits = 12 /* PICNT */ + ilog2(pit_cycle) /* PIV */;
226 pit_clk.mask = CLOCKSOURCE_MASK(bits);
Russell King132b1632010-12-13 13:14:55 +0000227 clocksource_register_hz(&pit_clk, pit_rate);
Andrew Victorad48ce72008-04-16 20:43:49 +0100228
229 /* Set up irq handler */
Jean-Christophe PLAGNIOL-VILLARD23fa6482012-02-27 11:19:34 +0100230 setup_irq(at91sam926x_pit_irq.irq, &at91sam926x_pit_irq);
Andrew Victorad48ce72008-04-16 20:43:49 +0100231
232 /* Set up and register clockevents */
233 pit_clkevt.mult = div_sc(pit_rate, NSEC_PER_SEC, pit_clkevt.shift);
Rusty Russell320ab2b2008-12-13 21:20:26 +1030234 pit_clkevt.cpumask = cpumask_of(0);
Andrew Victorad48ce72008-04-16 20:43:49 +0100235 clockevents_register_device(&pit_clkevt);
Andrew Victor1a0ed732006-12-01 09:04:47 +0100236}
237
Andrew Victorad48ce72008-04-16 20:43:49 +0100238static void at91sam926x_pit_suspend(void)
Andrew Victor1a0ed732006-12-01 09:04:47 +0100239{
240 /* Disable timer */
Jean-Christophe PLAGNIOL-VILLARD4ab0c5992011-09-18 22:29:50 +0800241 pit_write(AT91_PIT_MR, 0);
242}
243
244void __init at91sam926x_ioremap_pit(u32 addr)
245{
Jean-Christophe PLAGNIOL-VILLARD23fa6482012-02-27 11:19:34 +0100246#if defined(CONFIG_OF)
247 struct device_node *np =
248 of_find_matching_node(NULL, pit_timer_ids);
249
250 if (np) {
251 of_node_put(np);
252 return;
253 }
254#endif
Jean-Christophe PLAGNIOL-VILLARD4ab0c5992011-09-18 22:29:50 +0800255 pit_base_addr = ioremap(addr, 16);
256
257 if (!pit_base_addr)
258 panic("Impossible to ioremap PIT\n");
Andrew Victor1a0ed732006-12-01 09:04:47 +0100259}
Andrew Victor1a0ed732006-12-01 09:04:47 +0100260
261struct sys_timer at91sam926x_timer = {
Andrew Victorad48ce72008-04-16 20:43:49 +0100262 .init = at91sam926x_pit_init,
263 .suspend = at91sam926x_pit_suspend,
264 .resume = at91sam926x_pit_reset,
Andrew Victor1a0ed732006-12-01 09:04:47 +0100265};