blob: 0a9e2fc8f7968996fcd5d994e4e797eaac76ea3d [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>
Uwe Kleine-Königac11a1d2013-11-14 10:49:19 +010022#include <mach/hardware.h>
Andrew Victor1a0ed732006-12-01 09:04:47 +010023
Jean-Christophe PLAGNIOL-VILLARDffe5cd82012-10-30 08:09:09 +080024#define AT91_PIT_MR 0x00 /* Mode Register */
25#define AT91_PIT_PITIEN (1 << 25) /* Timer Interrupt Enable */
26#define AT91_PIT_PITEN (1 << 24) /* Timer Enabled */
27#define AT91_PIT_PIV (0xfffff) /* Periodic Interval Value */
Andrew Victor1a0ed732006-12-01 09:04:47 +010028
Jean-Christophe PLAGNIOL-VILLARDffe5cd82012-10-30 08:09:09 +080029#define AT91_PIT_SR 0x04 /* Status Register */
30#define AT91_PIT_PITS (1 << 0) /* Timer Status */
31
32#define AT91_PIT_PIVR 0x08 /* Periodic Interval Value Register */
33#define AT91_PIT_PIIR 0x0c /* Periodic Interval Image Register */
34#define AT91_PIT_PICNT (0xfff << 20) /* Interval Counter */
35#define AT91_PIT_CPIV (0xfffff) /* Inverval Value */
Andrew Victor1a0ed732006-12-01 09:04:47 +010036
37#define PIT_CPIV(x) ((x) & AT91_PIT_CPIV)
38#define PIT_PICNT(x) (((x) & AT91_PIT_PICNT) >> 20)
39
Andrew Victorad48ce72008-04-16 20:43:49 +010040static u32 pit_cycle; /* write-once */
41static u32 pit_cnt; /* access only w/system irq blocked */
Jean-Christophe PLAGNIOL-VILLARD4ab0c5992011-09-18 22:29:50 +080042static void __iomem *pit_base_addr __read_mostly;
Boris BREZILLON7034be82013-10-11 13:46:28 +020043static struct clk *mck;
Andrew Victorad48ce72008-04-16 20:43:49 +010044
Jean-Christophe PLAGNIOL-VILLARD4ab0c5992011-09-18 22:29:50 +080045static inline unsigned int pit_read(unsigned int reg_offset)
46{
47 return __raw_readl(pit_base_addr + reg_offset);
48}
49
50static inline void pit_write(unsigned int reg_offset, unsigned long value)
51{
52 __raw_writel(value, pit_base_addr + reg_offset);
53}
Andrew Victorad48ce72008-04-16 20:43:49 +010054
Andrew Victor1a0ed732006-12-01 09:04:47 +010055/*
Andrew Victorad48ce72008-04-16 20:43:49 +010056 * Clocksource: just a monotonic counter of MCK/16 cycles.
57 * We don't care whether or not PIT irqs are enabled.
Andrew Victor1a0ed732006-12-01 09:04:47 +010058 */
Magnus Damm8e196082009-04-21 12:24:00 -070059static cycle_t read_pit_clk(struct clocksource *cs)
Andrew Victor1a0ed732006-12-01 09:04:47 +010060{
Andrew Victorad48ce72008-04-16 20:43:49 +010061 unsigned long flags;
62 u32 elapsed;
63 u32 t;
Andrew Victor1a0ed732006-12-01 09:04:47 +010064
Andrew Victorad48ce72008-04-16 20:43:49 +010065 raw_local_irq_save(flags);
66 elapsed = pit_cnt;
Jean-Christophe PLAGNIOL-VILLARD4ab0c5992011-09-18 22:29:50 +080067 t = pit_read(AT91_PIT_PIIR);
Andrew Victorad48ce72008-04-16 20:43:49 +010068 raw_local_irq_restore(flags);
Andrew Victor1a0ed732006-12-01 09:04:47 +010069
Andrew Victorad48ce72008-04-16 20:43:49 +010070 elapsed += PIT_PICNT(t) * pit_cycle;
71 elapsed += PIT_CPIV(t);
72 return elapsed;
Andrew Victor1a0ed732006-12-01 09:04:47 +010073}
74
Andrew Victorad48ce72008-04-16 20:43:49 +010075static struct clocksource pit_clk = {
76 .name = "pit",
77 .rating = 175,
78 .read = read_pit_clk,
Andrew Victorad48ce72008-04-16 20:43:49 +010079 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
80};
81
82
83/*
84 * Clockevent device: interrupts every 1/HZ (== pit_cycles * MCK/16)
85 */
86static void
87pit_clkevt_mode(enum clock_event_mode mode, struct clock_event_device *dev)
88{
Andrew Victorad48ce72008-04-16 20:43:49 +010089 switch (mode) {
90 case CLOCK_EVT_MODE_PERIODIC:
Uwe Kleine-König501d7032009-09-21 09:30:09 +020091 /* update clocksource counter */
Jean-Christophe PLAGNIOL-VILLARD4ab0c5992011-09-18 22:29:50 +080092 pit_cnt += pit_cycle * PIT_PICNT(pit_read(AT91_PIT_PIVR));
93 pit_write(AT91_PIT_MR, (pit_cycle - 1) | AT91_PIT_PITEN
Andrew Victorad48ce72008-04-16 20:43:49 +010094 | AT91_PIT_PITIEN);
Andrew Victorad48ce72008-04-16 20:43:49 +010095 break;
96 case CLOCK_EVT_MODE_ONESHOT:
97 BUG();
98 /* FALLTHROUGH */
99 case CLOCK_EVT_MODE_SHUTDOWN:
100 case CLOCK_EVT_MODE_UNUSED:
101 /* disable irq, leaving the clocksource active */
Jean-Christophe PLAGNIOL-VILLARD4ab0c5992011-09-18 22:29:50 +0800102 pit_write(AT91_PIT_MR, (pit_cycle - 1) | AT91_PIT_PITEN);
Andrew Victorad48ce72008-04-16 20:43:49 +0100103 break;
104 case CLOCK_EVT_MODE_RESUME:
105 break;
106 }
107}
108
Stephen Warren49356ae2012-11-07 16:32:41 -0700109static void at91sam926x_pit_suspend(struct clock_event_device *cedev)
110{
111 /* Disable timer */
112 pit_write(AT91_PIT_MR, 0);
113}
114
115static void at91sam926x_pit_reset(void)
116{
117 /* Disable timer and irqs */
118 pit_write(AT91_PIT_MR, 0);
119
120 /* Clear any pending interrupts, wait for PIT to stop counting */
121 while (PIT_CPIV(pit_read(AT91_PIT_PIVR)) != 0)
122 cpu_relax();
123
124 /* Start PIT but don't enable IRQ */
125 pit_write(AT91_PIT_MR, (pit_cycle - 1) | AT91_PIT_PITEN);
126}
127
128static void at91sam926x_pit_resume(struct clock_event_device *cedev)
129{
130 at91sam926x_pit_reset();
131}
132
Andrew Victorad48ce72008-04-16 20:43:49 +0100133static struct clock_event_device pit_clkevt = {
134 .name = "pit",
135 .features = CLOCK_EVT_FEAT_PERIODIC,
136 .shift = 32,
137 .rating = 100,
Andrew Victorad48ce72008-04-16 20:43:49 +0100138 .set_mode = pit_clkevt_mode,
Stephen Warren49356ae2012-11-07 16:32:41 -0700139 .suspend = at91sam926x_pit_suspend,
140 .resume = at91sam926x_pit_resume,
Andrew Victorad48ce72008-04-16 20:43:49 +0100141};
142
143
Andrew Victor1a0ed732006-12-01 09:04:47 +0100144/*
145 * IRQ handler for the timer.
146 */
Andrew Victorad48ce72008-04-16 20:43:49 +0100147static irqreturn_t at91sam926x_pit_interrupt(int irq, void *dev_id)
Andrew Victor1a0ed732006-12-01 09:04:47 +0100148{
Uwe Kleine-König501d7032009-09-21 09:30:09 +0200149 /*
150 * irqs should be disabled here, but as the irq is shared they are only
151 * guaranteed to be off if the timer irq is registered first.
152 */
153 WARN_ON_ONCE(!irqs_disabled());
Andrew Victor1a0ed732006-12-01 09:04:47 +0100154
Andrew Victorad48ce72008-04-16 20:43:49 +0100155 /* The PIT interrupt may be disabled, and is shared */
156 if ((pit_clkevt.mode == CLOCK_EVT_MODE_PERIODIC)
Jean-Christophe PLAGNIOL-VILLARD4ab0c5992011-09-18 22:29:50 +0800157 && (pit_read(AT91_PIT_SR) & AT91_PIT_PITS)) {
Andrew Victorad48ce72008-04-16 20:43:49 +0100158 unsigned nr_ticks;
159
160 /* Get number of ticks performed before irq, and ack it */
Jean-Christophe PLAGNIOL-VILLARD4ab0c5992011-09-18 22:29:50 +0800161 nr_ticks = PIT_PICNT(pit_read(AT91_PIT_PIVR));
Andrew Victor1a0ed732006-12-01 09:04:47 +0100162 do {
Andrew Victorad48ce72008-04-16 20:43:49 +0100163 pit_cnt += pit_cycle;
164 pit_clkevt.event_handler(&pit_clkevt);
Andrew Victor1a0ed732006-12-01 09:04:47 +0100165 nr_ticks--;
166 } while (nr_ticks);
167
Andrew Victor1a0ed732006-12-01 09:04:47 +0100168 return IRQ_HANDLED;
Andrew Victorad48ce72008-04-16 20:43:49 +0100169 }
170
171 return IRQ_NONE;
Andrew Victor1a0ed732006-12-01 09:04:47 +0100172}
173
Andrew Victorad48ce72008-04-16 20:43:49 +0100174static struct irqaction at91sam926x_pit_irq = {
Andrew Victor1a0ed732006-12-01 09:04:47 +0100175 .name = "at91_tick",
Michael Opdenacker9ceb3892013-09-04 06:54:39 +0200176 .flags = IRQF_SHARED | IRQF_TIMER | IRQF_IRQPOLL,
Jean-Christophe PLAGNIOL-VILLARD23fa6482012-02-27 11:19:34 +0100177 .handler = at91sam926x_pit_interrupt,
Ludovic Desroches8fe82a52012-06-21 14:47:27 +0200178 .irq = NR_IRQS_LEGACY + AT91_ID_SYS,
Andrew Victor1a0ed732006-12-01 09:04:47 +0100179};
180
Jean-Christophe PLAGNIOL-VILLARD23fa6482012-02-27 11:19:34 +0100181#ifdef CONFIG_OF
182static struct of_device_id pit_timer_ids[] = {
183 { .compatible = "atmel,at91sam9260-pit" },
184 { /* sentinel */ }
185};
186
187static int __init of_at91sam926x_pit_init(void)
188{
189 struct device_node *np;
190 int ret;
191
192 np = of_find_matching_node(NULL, pit_timer_ids);
193 if (!np)
194 goto err;
195
196 pit_base_addr = of_iomap(np, 0);
197 if (!pit_base_addr)
198 goto node_err;
199
Boris BREZILLON7034be82013-10-11 13:46:28 +0200200 mck = of_clk_get(np, 0);
201
Jean-Christophe PLAGNIOL-VILLARD23fa6482012-02-27 11:19:34 +0100202 /* Get the interrupts property */
203 ret = irq_of_parse_and_map(np, 0);
Nicolas Ferre986c2652012-02-17 11:54:29 +0100204 if (!ret) {
205 pr_crit("AT91: PIT: Unable to get IRQ from DT\n");
Boris BREZILLON7034be82013-10-11 13:46:28 +0200206 if (!IS_ERR(mck))
207 clk_put(mck);
Jean-Christophe PLAGNIOL-VILLARD23fa6482012-02-27 11:19:34 +0100208 goto ioremap_err;
Nicolas Ferre986c2652012-02-17 11:54:29 +0100209 }
Jean-Christophe PLAGNIOL-VILLARD23fa6482012-02-27 11:19:34 +0100210 at91sam926x_pit_irq.irq = ret;
211
212 of_node_put(np);
213
214 return 0;
215
216ioremap_err:
217 iounmap(pit_base_addr);
218node_err:
219 of_node_put(np);
220err:
221 return -EINVAL;
222}
223#else
224static int __init of_at91sam926x_pit_init(void)
225{
226 return -EINVAL;
227}
228#endif
229
Andrew Victor1a0ed732006-12-01 09:04:47 +0100230/*
Andrew Victorad48ce72008-04-16 20:43:49 +0100231 * Set up both clocksource and clockevent support.
Andrew Victor1a0ed732006-12-01 09:04:47 +0100232 */
Stephen Warren6bb27d72012-11-08 12:40:59 -0700233void __init at91sam926x_pit_init(void)
Andrew Victor1a0ed732006-12-01 09:04:47 +0100234{
Andrew Victorad48ce72008-04-16 20:43:49 +0100235 unsigned long pit_rate;
236 unsigned bits;
Nicolas Ferre986c2652012-02-17 11:54:29 +0100237 int ret;
Andrew Victor1a0ed732006-12-01 09:04:47 +0100238
Boris BREZILLON7034be82013-10-11 13:46:28 +0200239 mck = ERR_PTR(-ENOENT);
240
Jean-Christophe PLAGNIOL-VILLARD23fa6482012-02-27 11:19:34 +0100241 /* For device tree enabled device: initialize here */
242 of_at91sam926x_pit_init();
243
Andrew Victorad48ce72008-04-16 20:43:49 +0100244 /*
245 * Use our actual MCK to figure out how many MCK/16 ticks per
246 * 1/HZ period (instead of a compile-time constant LATCH).
247 */
Boris BREZILLON7034be82013-10-11 13:46:28 +0200248 if (IS_ERR(mck))
249 mck = clk_get(NULL, "mck");
250
251 if (IS_ERR(mck))
252 panic("AT91: PIT: Unable to get mck clk\n");
253 pit_rate = clk_get_rate(mck) / 16;
Andrew Victorad48ce72008-04-16 20:43:49 +0100254 pit_cycle = (pit_rate + HZ/2) / HZ;
255 WARN_ON(((pit_cycle - 1) & ~AT91_PIT_PIV) != 0);
256
257 /* Initialize and enable the timer */
258 at91sam926x_pit_reset();
259
260 /*
261 * Register clocksource. The high order bits of PIV are unused,
262 * so this isn't a 32-bit counter unless we get clockevent irqs.
263 */
Andrew Victorad48ce72008-04-16 20:43:49 +0100264 bits = 12 /* PICNT */ + ilog2(pit_cycle) /* PIV */;
265 pit_clk.mask = CLOCKSOURCE_MASK(bits);
Russell King132b1632010-12-13 13:14:55 +0000266 clocksource_register_hz(&pit_clk, pit_rate);
Andrew Victorad48ce72008-04-16 20:43:49 +0100267
268 /* Set up irq handler */
Nicolas Ferre986c2652012-02-17 11:54:29 +0100269 ret = setup_irq(at91sam926x_pit_irq.irq, &at91sam926x_pit_irq);
270 if (ret)
271 pr_crit("AT91: PIT: Unable to setup IRQ\n");
Andrew Victorad48ce72008-04-16 20:43:49 +0100272
273 /* Set up and register clockevents */
274 pit_clkevt.mult = div_sc(pit_rate, NSEC_PER_SEC, pit_clkevt.shift);
Rusty Russell320ab2b2008-12-13 21:20:26 +1030275 pit_clkevt.cpumask = cpumask_of(0);
Andrew Victorad48ce72008-04-16 20:43:49 +0100276 clockevents_register_device(&pit_clkevt);
Andrew Victor1a0ed732006-12-01 09:04:47 +0100277}
278
Jean-Christophe PLAGNIOL-VILLARD4ab0c5992011-09-18 22:29:50 +0800279void __init at91sam926x_ioremap_pit(u32 addr)
280{
Jean-Christophe PLAGNIOL-VILLARD23fa6482012-02-27 11:19:34 +0100281#if defined(CONFIG_OF)
282 struct device_node *np =
283 of_find_matching_node(NULL, pit_timer_ids);
284
285 if (np) {
286 of_node_put(np);
287 return;
288 }
289#endif
Jean-Christophe PLAGNIOL-VILLARD4ab0c5992011-09-18 22:29:50 +0800290 pit_base_addr = ioremap(addr, 16);
291
292 if (!pit_base_addr)
293 panic("Impossible to ioremap PIT\n");
Andrew Victor1a0ed732006-12-01 09:04:47 +0100294}