2 * Marvell Armada 370/XP SoC timer handling.
4 * Copyright (C) 2012 Marvell
6 * Lior Amsalem <alior@marvell.com>
7 * Gregory CLEMENT <gregory.clement@free-electrons.com>
8 * Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 * This file is licensed under the terms of the GNU General Public
11 * License version 2. This program is licensed "as is" without any
12 * warranty of any kind, whether express or implied.
14 * Timer 0 is used as free-running clocksource, while timer 1 is
15 * used as clock_event_device.
18 #include <linux/init.h>
19 #include <linux/platform_device.h>
20 #include <linux/kernel.h>
21 #include <linux/clk.h>
22 #include <linux/timer.h>
23 #include <linux/clockchips.h>
24 #include <linux/interrupt.h>
26 #include <linux/of_irq.h>
27 #include <linux/of_address.h>
28 #include <linux/irq.h>
29 #include <linux/module.h>
31 #include <asm/sched_clock.h>
32 #include <asm/localtimer.h>
33 #include <linux/percpu.h>
35 * Timer block registers.
37 #define TIMER_CTRL_OFF 0x0000
38 #define TIMER0_EN 0x0001
39 #define TIMER0_RELOAD_EN 0x0002
40 #define TIMER0_25MHZ 0x0800
41 #define TIMER0_DIV(div) ((div) << 19)
42 #define TIMER1_EN 0x0004
43 #define TIMER1_RELOAD_EN 0x0008
44 #define TIMER1_25MHZ 0x1000
45 #define TIMER1_DIV(div) ((div) << 22)
46 #define TIMER_EVENTS_STATUS 0x0004
47 #define TIMER0_CLR_MASK (~0x1)
48 #define TIMER1_CLR_MASK (~0x100)
49 #define TIMER0_RELOAD_OFF 0x0010
50 #define TIMER0_VAL_OFF 0x0014
51 #define TIMER1_RELOAD_OFF 0x0018
52 #define TIMER1_VAL_OFF 0x001c
54 #define LCL_TIMER_EVENTS_STATUS 0x0028
55 /* Global timers are connected to the coherency fabric clock, and the
56 below divider reduces their incrementing frequency. */
57 #define TIMER_DIVIDER_SHIFT 5
58 #define TIMER_DIVIDER (1 << TIMER_DIVIDER_SHIFT)
63 static void __iomem
*timer_base
, *local_base
;
64 static unsigned int timer_clk
;
65 static bool timer25Mhz
= true;
68 * Number of timer ticks per jiffy.
70 static u32 ticks_per_jiffy
;
72 static struct clock_event_device __percpu
**percpu_armada_370_xp_evt
;
74 static u32 notrace
armada_370_xp_read_sched_clock(void)
76 return ~readl(timer_base
+ TIMER0_VAL_OFF
);
80 * Clockevent handling.
83 armada_370_xp_clkevt_next_event(unsigned long delta
,
84 struct clock_event_device
*dev
)
88 * Clear clockevent timer interrupt.
90 writel(TIMER0_CLR_MASK
, local_base
+ LCL_TIMER_EVENTS_STATUS
);
93 * Setup new clockevent timer value.
95 writel(delta
, local_base
+ TIMER0_VAL_OFF
);
100 u
= readl(local_base
+ TIMER_CTRL_OFF
);
101 u
= ((u
& ~TIMER0_RELOAD_EN
) | TIMER0_EN
|
102 TIMER0_DIV(TIMER_DIVIDER_SHIFT
));
103 writel(u
, local_base
+ TIMER_CTRL_OFF
);
109 armada_370_xp_clkevt_mode(enum clock_event_mode mode
,
110 struct clock_event_device
*dev
)
114 if (mode
== CLOCK_EVT_MODE_PERIODIC
) {
117 * Setup timer to fire at 1/HZ intervals.
119 writel(ticks_per_jiffy
- 1, local_base
+ TIMER0_RELOAD_OFF
);
120 writel(ticks_per_jiffy
- 1, local_base
+ TIMER0_VAL_OFF
);
126 u
= readl(local_base
+ TIMER_CTRL_OFF
);
128 writel((u
| TIMER0_EN
| TIMER0_RELOAD_EN
|
129 TIMER0_DIV(TIMER_DIVIDER_SHIFT
)),
130 local_base
+ TIMER_CTRL_OFF
);
135 u
= readl(local_base
+ TIMER_CTRL_OFF
);
136 writel(u
& ~TIMER0_EN
, local_base
+ TIMER_CTRL_OFF
);
139 * ACK pending timer interrupt.
141 writel(TIMER0_CLR_MASK
, local_base
+ LCL_TIMER_EVENTS_STATUS
);
145 static struct clock_event_device armada_370_xp_clkevt
= {
146 .name
= "armada_370_xp_per_cpu_tick",
147 .features
= CLOCK_EVT_FEAT_ONESHOT
| CLOCK_EVT_FEAT_PERIODIC
,
150 .set_next_event
= armada_370_xp_clkevt_next_event
,
151 .set_mode
= armada_370_xp_clkevt_mode
,
154 static irqreturn_t
armada_370_xp_timer_interrupt(int irq
, void *dev_id
)
157 * ACK timer interrupt and call event handler.
159 struct clock_event_device
*evt
= *(struct clock_event_device
**)dev_id
;
161 writel(TIMER0_CLR_MASK
, local_base
+ LCL_TIMER_EVENTS_STATUS
);
162 evt
->event_handler(evt
);
168 * Setup the local clock events for a CPU.
170 static int __cpuinit
armada_370_xp_timer_setup(struct clock_event_device
*evt
)
173 int cpu
= smp_processor_id();
175 /* Use existing clock_event for cpu 0 */
176 if (!smp_processor_id())
179 u
= readl(local_base
+ TIMER_CTRL_OFF
);
181 writel(u
| TIMER0_25MHZ
, local_base
+ TIMER_CTRL_OFF
);
183 writel(u
& ~TIMER0_25MHZ
, local_base
+ TIMER_CTRL_OFF
);
185 evt
->name
= armada_370_xp_clkevt
.name
;
186 evt
->irq
= armada_370_xp_clkevt
.irq
;
187 evt
->features
= armada_370_xp_clkevt
.features
;
188 evt
->shift
= armada_370_xp_clkevt
.shift
;
189 evt
->rating
= armada_370_xp_clkevt
.rating
,
190 evt
->set_next_event
= armada_370_xp_clkevt_next_event
,
191 evt
->set_mode
= armada_370_xp_clkevt_mode
,
192 evt
->cpumask
= cpumask_of(cpu
);
194 *__this_cpu_ptr(percpu_armada_370_xp_evt
) = evt
;
196 clockevents_config_and_register(evt
, timer_clk
, 1, 0xfffffffe);
197 enable_percpu_irq(evt
->irq
, 0);
202 static void armada_370_xp_timer_stop(struct clock_event_device
*evt
)
204 evt
->set_mode(CLOCK_EVT_MODE_UNUSED
, evt
);
205 disable_percpu_irq(evt
->irq
);
208 static struct local_timer_ops armada_370_xp_local_timer_ops __cpuinitdata
= {
209 .setup
= armada_370_xp_timer_setup
,
210 .stop
= armada_370_xp_timer_stop
,
213 void __init
armada_370_xp_timer_init(void)
216 struct device_node
*np
;
219 np
= of_find_compatible_node(NULL
, NULL
, "marvell,armada-370-xp-timer");
220 timer_base
= of_iomap(np
, 0);
221 WARN_ON(!timer_base
);
222 local_base
= of_iomap(np
, 1);
224 if (of_find_property(np
, "marvell,timer-25Mhz", NULL
)) {
225 /* The fixed 25MHz timer is available so let's use it */
226 u
= readl(local_base
+ TIMER_CTRL_OFF
);
227 writel(u
| TIMER0_25MHZ
,
228 local_base
+ TIMER_CTRL_OFF
);
229 u
= readl(timer_base
+ TIMER_CTRL_OFF
);
230 writel(u
| TIMER0_25MHZ
,
231 timer_base
+ TIMER_CTRL_OFF
);
232 timer_clk
= 25000000;
234 unsigned long rate
= 0;
235 struct clk
*clk
= of_clk_get(np
, 0);
236 WARN_ON(IS_ERR(clk
));
237 rate
= clk_get_rate(clk
);
238 u
= readl(local_base
+ TIMER_CTRL_OFF
);
239 writel(u
& ~(TIMER0_25MHZ
),
240 local_base
+ TIMER_CTRL_OFF
);
242 u
= readl(timer_base
+ TIMER_CTRL_OFF
);
243 writel(u
& ~(TIMER0_25MHZ
),
244 timer_base
+ TIMER_CTRL_OFF
);
246 timer_clk
= rate
/ TIMER_DIVIDER
;
251 * We use timer 0 as clocksource, and private(local) timer 0
254 armada_370_xp_clkevt
.irq
= irq_of_parse_and_map(np
, 4);
256 ticks_per_jiffy
= (timer_clk
+ HZ
/ 2) / HZ
;
259 * Set scale and timer for sched_clock.
261 setup_sched_clock(armada_370_xp_read_sched_clock
, 32, timer_clk
);
264 * Setup free-running clocksource timer (interrupts
267 writel(0xffffffff, timer_base
+ TIMER0_VAL_OFF
);
268 writel(0xffffffff, timer_base
+ TIMER0_RELOAD_OFF
);
270 u
= readl(timer_base
+ TIMER_CTRL_OFF
);
272 writel((u
| TIMER0_EN
| TIMER0_RELOAD_EN
|
273 TIMER0_DIV(TIMER_DIVIDER_SHIFT
)), timer_base
+ TIMER_CTRL_OFF
);
275 clocksource_mmio_init(timer_base
+ TIMER0_VAL_OFF
,
276 "armada_370_xp_clocksource",
277 timer_clk
, 300, 32, clocksource_mmio_readl_down
);
279 /* Register the clockevent on the private timer of CPU 0 */
280 armada_370_xp_clkevt
.cpumask
= cpumask_of(0);
281 clockevents_config_and_register(&armada_370_xp_clkevt
,
282 timer_clk
, 1, 0xfffffffe);
284 percpu_armada_370_xp_evt
= alloc_percpu(struct clock_event_device
*);
288 * Setup clockevent timer (interrupt-driven).
290 *__this_cpu_ptr(percpu_armada_370_xp_evt
) = &armada_370_xp_clkevt
;
291 res
= request_percpu_irq(armada_370_xp_clkevt
.irq
,
292 armada_370_xp_timer_interrupt
,
293 armada_370_xp_clkevt
.name
,
294 percpu_armada_370_xp_evt
);
296 enable_percpu_irq(armada_370_xp_clkevt
.irq
, 0);
297 #ifdef CONFIG_LOCAL_TIMERS
298 local_timer_register(&armada_370_xp_local_timer_ops
);