blob: 0f04ffe9c5a87c2afb4f90b02d75b86b70fd722b [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
Jean-Christophe PLAGNIOL-VILLARDffe5cd82012-10-30 08:09:09 +080023#define AT91_PIT_MR 0x00 /* Mode Register */
24#define AT91_PIT_PITIEN (1 << 25) /* Timer Interrupt Enable */
25#define AT91_PIT_PITEN (1 << 24) /* Timer Enabled */
26#define AT91_PIT_PIV (0xfffff) /* Periodic Interval Value */
Andrew Victor1a0ed732006-12-01 09:04:47 +010027
Jean-Christophe PLAGNIOL-VILLARDffe5cd82012-10-30 08:09:09 +080028#define AT91_PIT_SR 0x04 /* Status Register */
29#define AT91_PIT_PITS (1 << 0) /* Timer Status */
30
31#define AT91_PIT_PIVR 0x08 /* Periodic Interval Value Register */
32#define AT91_PIT_PIIR 0x0c /* Periodic Interval Image Register */
33#define AT91_PIT_PICNT (0xfff << 20) /* Interval Counter */
34#define AT91_PIT_CPIV (0xfffff) /* Inverval Value */
Andrew Victor1a0ed732006-12-01 09:04:47 +010035
36#define PIT_CPIV(x) ((x) & AT91_PIT_CPIV)
37#define PIT_PICNT(x) (((x) & AT91_PIT_PICNT) >> 20)
38
Andrew Victorad48ce72008-04-16 20:43:49 +010039static u32 pit_cycle; /* write-once */
40static u32 pit_cnt; /* access only w/system irq blocked */
Jean-Christophe PLAGNIOL-VILLARD4ab0c5992011-09-18 22:29:50 +080041static void __iomem *pit_base_addr __read_mostly;
Boris BREZILLON7034be82013-10-11 13:46:28 +020042static struct clk *mck;
Andrew Victorad48ce72008-04-16 20:43:49 +010043
Jean-Christophe PLAGNIOL-VILLARD4ab0c5992011-09-18 22:29:50 +080044static inline unsigned int pit_read(unsigned int reg_offset)
45{
46 return __raw_readl(pit_base_addr + reg_offset);
47}
48
49static inline void pit_write(unsigned int reg_offset, unsigned long value)
50{
51 __raw_writel(value, pit_base_addr + reg_offset);
52}
Andrew Victorad48ce72008-04-16 20:43:49 +010053
Andrew Victor1a0ed732006-12-01 09:04:47 +010054/*
Andrew Victorad48ce72008-04-16 20:43:49 +010055 * Clocksource: just a monotonic counter of MCK/16 cycles.
56 * We don't care whether or not PIT irqs are enabled.
Andrew Victor1a0ed732006-12-01 09:04:47 +010057 */
Magnus Damm8e196082009-04-21 12:24:00 -070058static cycle_t read_pit_clk(struct clocksource *cs)
Andrew Victor1a0ed732006-12-01 09:04:47 +010059{
Andrew Victorad48ce72008-04-16 20:43:49 +010060 unsigned long flags;
61 u32 elapsed;
62 u32 t;
Andrew Victor1a0ed732006-12-01 09:04:47 +010063
Andrew Victorad48ce72008-04-16 20:43:49 +010064 raw_local_irq_save(flags);
65 elapsed = pit_cnt;
Jean-Christophe PLAGNIOL-VILLARD4ab0c5992011-09-18 22:29:50 +080066 t = pit_read(AT91_PIT_PIIR);
Andrew Victorad48ce72008-04-16 20:43:49 +010067 raw_local_irq_restore(flags);
Andrew Victor1a0ed732006-12-01 09:04:47 +010068
Andrew Victorad48ce72008-04-16 20:43:49 +010069 elapsed += PIT_PICNT(t) * pit_cycle;
70 elapsed += PIT_CPIV(t);
71 return elapsed;
Andrew Victor1a0ed732006-12-01 09:04:47 +010072}
73
Andrew Victorad48ce72008-04-16 20:43:49 +010074static struct clocksource pit_clk = {
75 .name = "pit",
76 .rating = 175,
77 .read = read_pit_clk,
Andrew Victorad48ce72008-04-16 20:43:49 +010078 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
79};
80
81
82/*
83 * Clockevent device: interrupts every 1/HZ (== pit_cycles * MCK/16)
84 */
85static void
86pit_clkevt_mode(enum clock_event_mode mode, struct clock_event_device *dev)
87{
Andrew Victorad48ce72008-04-16 20:43:49 +010088 switch (mode) {
89 case CLOCK_EVT_MODE_PERIODIC:
Uwe Kleine-König501d7032009-09-21 09:30:09 +020090 /* update clocksource counter */
Jean-Christophe PLAGNIOL-VILLARD4ab0c5992011-09-18 22:29:50 +080091 pit_cnt += pit_cycle * PIT_PICNT(pit_read(AT91_PIT_PIVR));
92 pit_write(AT91_PIT_MR, (pit_cycle - 1) | AT91_PIT_PITEN
Andrew Victorad48ce72008-04-16 20:43:49 +010093 | AT91_PIT_PITIEN);
Andrew Victorad48ce72008-04-16 20:43:49 +010094 break;
95 case CLOCK_EVT_MODE_ONESHOT:
96 BUG();
97 /* FALLTHROUGH */
98 case CLOCK_EVT_MODE_SHUTDOWN:
99 case CLOCK_EVT_MODE_UNUSED:
100 /* disable irq, leaving the clocksource active */
Jean-Christophe PLAGNIOL-VILLARD4ab0c5992011-09-18 22:29:50 +0800101 pit_write(AT91_PIT_MR, (pit_cycle - 1) | AT91_PIT_PITEN);
Andrew Victorad48ce72008-04-16 20:43:49 +0100102 break;
103 case CLOCK_EVT_MODE_RESUME:
104 break;
105 }
106}
107
Stephen Warren49356ae2012-11-07 16:32:41 -0700108static void at91sam926x_pit_suspend(struct clock_event_device *cedev)
109{
110 /* Disable timer */
111 pit_write(AT91_PIT_MR, 0);
112}
113
114static void at91sam926x_pit_reset(void)
115{
116 /* Disable timer and irqs */
117 pit_write(AT91_PIT_MR, 0);
118
119 /* Clear any pending interrupts, wait for PIT to stop counting */
120 while (PIT_CPIV(pit_read(AT91_PIT_PIVR)) != 0)
121 cpu_relax();
122
123 /* Start PIT but don't enable IRQ */
124 pit_write(AT91_PIT_MR, (pit_cycle - 1) | AT91_PIT_PITEN);
125}
126
127static void at91sam926x_pit_resume(struct clock_event_device *cedev)
128{
129 at91sam926x_pit_reset();
130}
131
Andrew Victorad48ce72008-04-16 20:43:49 +0100132static struct clock_event_device pit_clkevt = {
133 .name = "pit",
134 .features = CLOCK_EVT_FEAT_PERIODIC,
135 .shift = 32,
136 .rating = 100,
Andrew Victorad48ce72008-04-16 20:43:49 +0100137 .set_mode = pit_clkevt_mode,
Stephen Warren49356ae2012-11-07 16:32:41 -0700138 .suspend = at91sam926x_pit_suspend,
139 .resume = at91sam926x_pit_resume,
Andrew Victorad48ce72008-04-16 20:43:49 +0100140};
141
142
Andrew Victor1a0ed732006-12-01 09:04:47 +0100143/*
144 * IRQ handler for the timer.
145 */
Andrew Victorad48ce72008-04-16 20:43:49 +0100146static irqreturn_t at91sam926x_pit_interrupt(int irq, void *dev_id)
Andrew Victor1a0ed732006-12-01 09:04:47 +0100147{
Uwe Kleine-König501d7032009-09-21 09:30:09 +0200148 /*
149 * irqs should be disabled here, but as the irq is shared they are only
150 * guaranteed to be off if the timer irq is registered first.
151 */
152 WARN_ON_ONCE(!irqs_disabled());
Andrew Victor1a0ed732006-12-01 09:04:47 +0100153
Andrew Victorad48ce72008-04-16 20:43:49 +0100154 /* The PIT interrupt may be disabled, and is shared */
155 if ((pit_clkevt.mode == CLOCK_EVT_MODE_PERIODIC)
Jean-Christophe PLAGNIOL-VILLARD4ab0c5992011-09-18 22:29:50 +0800156 && (pit_read(AT91_PIT_SR) & AT91_PIT_PITS)) {
Andrew Victorad48ce72008-04-16 20:43:49 +0100157 unsigned nr_ticks;
158
159 /* Get number of ticks performed before irq, and ack it */
Jean-Christophe PLAGNIOL-VILLARD4ab0c5992011-09-18 22:29:50 +0800160 nr_ticks = PIT_PICNT(pit_read(AT91_PIT_PIVR));
Andrew Victor1a0ed732006-12-01 09:04:47 +0100161 do {
Andrew Victorad48ce72008-04-16 20:43:49 +0100162 pit_cnt += pit_cycle;
163 pit_clkevt.event_handler(&pit_clkevt);
Andrew Victor1a0ed732006-12-01 09:04:47 +0100164 nr_ticks--;
165 } while (nr_ticks);
166
Andrew Victor1a0ed732006-12-01 09:04:47 +0100167 return IRQ_HANDLED;
Andrew Victorad48ce72008-04-16 20:43:49 +0100168 }
169
170 return IRQ_NONE;
Andrew Victor1a0ed732006-12-01 09:04:47 +0100171}
172
Andrew Victorad48ce72008-04-16 20:43:49 +0100173static struct irqaction at91sam926x_pit_irq = {
Andrew Victor1a0ed732006-12-01 09:04:47 +0100174 .name = "at91_tick",
Michael Opdenacker9ceb3892013-09-04 06:54:39 +0200175 .flags = IRQF_SHARED | IRQF_TIMER | IRQF_IRQPOLL,
Jean-Christophe PLAGNIOL-VILLARD23fa6482012-02-27 11:19:34 +0100176 .handler = at91sam926x_pit_interrupt,
Ludovic Desroches8fe82a52012-06-21 14:47:27 +0200177 .irq = NR_IRQS_LEGACY + AT91_ID_SYS,
Andrew Victor1a0ed732006-12-01 09:04:47 +0100178};
179
Jean-Christophe PLAGNIOL-VILLARD23fa6482012-02-27 11:19:34 +0100180#ifdef CONFIG_OF
181static struct of_device_id pit_timer_ids[] = {
182 { .compatible = "atmel,at91sam9260-pit" },
183 { /* sentinel */ }
184};
185
186static int __init of_at91sam926x_pit_init(void)
187{
188 struct device_node *np;
189 int ret;
190
191 np = of_find_matching_node(NULL, pit_timer_ids);
192 if (!np)
193 goto err;
194
195 pit_base_addr = of_iomap(np, 0);
196 if (!pit_base_addr)
197 goto node_err;
198
Boris BREZILLON7034be82013-10-11 13:46:28 +0200199 mck = of_clk_get(np, 0);
200
Jean-Christophe PLAGNIOL-VILLARD23fa6482012-02-27 11:19:34 +0100201 /* Get the interrupts property */
202 ret = irq_of_parse_and_map(np, 0);
Nicolas Ferre986c2652012-02-17 11:54:29 +0100203 if (!ret) {
204 pr_crit("AT91: PIT: Unable to get IRQ from DT\n");
Boris BREZILLON7034be82013-10-11 13:46:28 +0200205 if (!IS_ERR(mck))
206 clk_put(mck);
Jean-Christophe PLAGNIOL-VILLARD23fa6482012-02-27 11:19:34 +0100207 goto ioremap_err;
Nicolas Ferre986c2652012-02-17 11:54:29 +0100208 }
Jean-Christophe PLAGNIOL-VILLARD23fa6482012-02-27 11:19:34 +0100209 at91sam926x_pit_irq.irq = ret;
210
211 of_node_put(np);
212
213 return 0;
214
215ioremap_err:
216 iounmap(pit_base_addr);
217node_err:
218 of_node_put(np);
219err:
220 return -EINVAL;
221}
222#else
223static int __init of_at91sam926x_pit_init(void)
224{
225 return -EINVAL;
226}
227#endif
228
Andrew Victor1a0ed732006-12-01 09:04:47 +0100229/*
Andrew Victorad48ce72008-04-16 20:43:49 +0100230 * Set up both clocksource and clockevent support.
Andrew Victor1a0ed732006-12-01 09:04:47 +0100231 */
Stephen Warren6bb27d72012-11-08 12:40:59 -0700232void __init at91sam926x_pit_init(void)
Andrew Victor1a0ed732006-12-01 09:04:47 +0100233{
Andrew Victorad48ce72008-04-16 20:43:49 +0100234 unsigned long pit_rate;
235 unsigned bits;
Nicolas Ferre986c2652012-02-17 11:54:29 +0100236 int ret;
Andrew Victor1a0ed732006-12-01 09:04:47 +0100237
Boris BREZILLON7034be82013-10-11 13:46:28 +0200238 mck = ERR_PTR(-ENOENT);
239
Jean-Christophe PLAGNIOL-VILLARD23fa6482012-02-27 11:19:34 +0100240 /* For device tree enabled device: initialize here */
241 of_at91sam926x_pit_init();
242
Andrew Victorad48ce72008-04-16 20:43:49 +0100243 /*
244 * Use our actual MCK to figure out how many MCK/16 ticks per
245 * 1/HZ period (instead of a compile-time constant LATCH).
246 */
Boris BREZILLON7034be82013-10-11 13:46:28 +0200247 if (IS_ERR(mck))
248 mck = clk_get(NULL, "mck");
249
250 if (IS_ERR(mck))
251 panic("AT91: PIT: Unable to get mck clk\n");
252 pit_rate = clk_get_rate(mck) / 16;
Andrew Victorad48ce72008-04-16 20:43:49 +0100253 pit_cycle = (pit_rate + HZ/2) / HZ;
254 WARN_ON(((pit_cycle - 1) & ~AT91_PIT_PIV) != 0);
255
256 /* Initialize and enable the timer */
257 at91sam926x_pit_reset();
258
259 /*
260 * Register clocksource. The high order bits of PIV are unused,
261 * so this isn't a 32-bit counter unless we get clockevent irqs.
262 */
Andrew Victorad48ce72008-04-16 20:43:49 +0100263 bits = 12 /* PICNT */ + ilog2(pit_cycle) /* PIV */;
264 pit_clk.mask = CLOCKSOURCE_MASK(bits);
Russell King132b1632010-12-13 13:14:55 +0000265 clocksource_register_hz(&pit_clk, pit_rate);
Andrew Victorad48ce72008-04-16 20:43:49 +0100266
267 /* Set up irq handler */
Nicolas Ferre986c2652012-02-17 11:54:29 +0100268 ret = setup_irq(at91sam926x_pit_irq.irq, &at91sam926x_pit_irq);
269 if (ret)
270 pr_crit("AT91: PIT: Unable to setup IRQ\n");
Andrew Victorad48ce72008-04-16 20:43:49 +0100271
272 /* Set up and register clockevents */
273 pit_clkevt.mult = div_sc(pit_rate, NSEC_PER_SEC, pit_clkevt.shift);
Rusty Russell320ab2b2008-12-13 21:20:26 +1030274 pit_clkevt.cpumask = cpumask_of(0);
Andrew Victorad48ce72008-04-16 20:43:49 +0100275 clockevents_register_device(&pit_clkevt);
Andrew Victor1a0ed732006-12-01 09:04:47 +0100276}
277
Jean-Christophe PLAGNIOL-VILLARD4ab0c5992011-09-18 22:29:50 +0800278void __init at91sam926x_ioremap_pit(u32 addr)
279{
Jean-Christophe PLAGNIOL-VILLARD23fa6482012-02-27 11:19:34 +0100280#if defined(CONFIG_OF)
281 struct device_node *np =
282 of_find_matching_node(NULL, pit_timer_ids);
283
284 if (np) {
285 of_node_put(np);
286 return;
287 }
288#endif
Jean-Christophe PLAGNIOL-VILLARD4ab0c5992011-09-18 22:29:50 +0800289 pit_base_addr = ioremap(addr, 16);
290
291 if (!pit_base_addr)
292 panic("Impossible to ioremap PIT\n");
Andrew Victor1a0ed732006-12-01 09:04:47 +0100293}