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 * Clocksource driver for Armada 370 and Armada XP SoC.
19 * This driver implements one compatible string for each SoC, given
20 * each has its own characteristics:
22 * * Armada 370 has no 25 MHz fixed timer.
24 * * Armada XP cannot work properly without such 25 MHz fixed timer as
25 * doing otherwise leads to using a clocksource whose frequency varies
26 * when doing cpufreq frequency changes.
28 * See Documentation/devicetree/bindings/timer/marvell,armada-370-xp-timer.txt
31 #include <linux/init.h>
32 #include <linux/platform_device.h>
33 #include <linux/kernel.h>
34 #include <linux/clk.h>
35 #include <linux/cpu.h>
36 #include <linux/timer.h>
37 #include <linux/clockchips.h>
38 #include <linux/interrupt.h>
40 #include <linux/of_irq.h>
41 #include <linux/of_address.h>
42 #include <linux/irq.h>
43 #include <linux/module.h>
44 #include <linux/sched_clock.h>
45 #include <linux/percpu.h>
46 #include <linux/syscore_ops.h>
49 * Timer block registers.
51 #define TIMER_CTRL_OFF 0x0000
52 #define TIMER0_EN BIT(0)
53 #define TIMER0_RELOAD_EN BIT(1)
54 #define TIMER0_25MHZ BIT(11)
55 #define TIMER0_DIV(div) ((div) << 19)
56 #define TIMER1_EN BIT(2)
57 #define TIMER1_RELOAD_EN BIT(3)
58 #define TIMER1_25MHZ BIT(12)
59 #define TIMER1_DIV(div) ((div) << 22)
60 #define TIMER_EVENTS_STATUS 0x0004
61 #define TIMER0_CLR_MASK (~0x1)
62 #define TIMER1_CLR_MASK (~0x100)
63 #define TIMER0_RELOAD_OFF 0x0010
64 #define TIMER0_VAL_OFF 0x0014
65 #define TIMER1_RELOAD_OFF 0x0018
66 #define TIMER1_VAL_OFF 0x001c
68 #define LCL_TIMER_EVENTS_STATUS 0x0028
69 /* Global timers are connected to the coherency fabric clock, and the
70 below divider reduces their incrementing frequency. */
71 #define TIMER_DIVIDER_SHIFT 5
72 #define TIMER_DIVIDER (1 << TIMER_DIVIDER_SHIFT)
77 static void __iomem
*timer_base
, *local_base
;
78 static unsigned int timer_clk
;
79 static bool timer25Mhz
= true;
80 static u32 enable_mask
;
83 * Number of timer ticks per jiffy.
85 static u32 ticks_per_jiffy
;
87 static struct clock_event_device __percpu
*armada_370_xp_evt
;
89 static void local_timer_ctrl_clrset(u32 clr
, u32 set
)
91 writel((readl(local_base
+ TIMER_CTRL_OFF
) & ~clr
) | set
,
92 local_base
+ TIMER_CTRL_OFF
);
95 static u64 notrace
armada_370_xp_read_sched_clock(void)
97 return ~readl(timer_base
+ TIMER0_VAL_OFF
);
101 * Clockevent handling.
104 armada_370_xp_clkevt_next_event(unsigned long delta
,
105 struct clock_event_device
*dev
)
108 * Clear clockevent timer interrupt.
110 writel(TIMER0_CLR_MASK
, local_base
+ LCL_TIMER_EVENTS_STATUS
);
113 * Setup new clockevent timer value.
115 writel(delta
, local_base
+ TIMER0_VAL_OFF
);
120 local_timer_ctrl_clrset(TIMER0_RELOAD_EN
, enable_mask
);
125 armada_370_xp_clkevt_mode(enum clock_event_mode mode
,
126 struct clock_event_device
*dev
)
128 if (mode
== CLOCK_EVT_MODE_PERIODIC
) {
131 * Setup timer to fire at 1/HZ intervals.
133 writel(ticks_per_jiffy
- 1, local_base
+ TIMER0_RELOAD_OFF
);
134 writel(ticks_per_jiffy
- 1, local_base
+ TIMER0_VAL_OFF
);
139 local_timer_ctrl_clrset(0, TIMER0_RELOAD_EN
| enable_mask
);
144 local_timer_ctrl_clrset(TIMER0_EN
, 0);
147 * ACK pending timer interrupt.
149 writel(TIMER0_CLR_MASK
, local_base
+ LCL_TIMER_EVENTS_STATUS
);
153 static int armada_370_xp_clkevt_irq
;
155 static irqreturn_t
armada_370_xp_timer_interrupt(int irq
, void *dev_id
)
158 * ACK timer interrupt and call event handler.
160 struct clock_event_device
*evt
= dev_id
;
162 writel(TIMER0_CLR_MASK
, local_base
+ LCL_TIMER_EVENTS_STATUS
);
163 evt
->event_handler(evt
);
169 * Setup the local clock events for a CPU.
171 static int armada_370_xp_timer_setup(struct clock_event_device
*evt
)
173 u32 clr
= 0, set
= 0;
174 int cpu
= smp_processor_id();
180 local_timer_ctrl_clrset(clr
, set
);
182 evt
->name
= "armada_370_xp_per_cpu_tick",
183 evt
->features
= CLOCK_EVT_FEAT_ONESHOT
|
184 CLOCK_EVT_FEAT_PERIODIC
;
187 evt
->set_next_event
= armada_370_xp_clkevt_next_event
,
188 evt
->set_mode
= armada_370_xp_clkevt_mode
,
189 evt
->irq
= armada_370_xp_clkevt_irq
;
190 evt
->cpumask
= cpumask_of(cpu
);
192 clockevents_config_and_register(evt
, timer_clk
, 1, 0xfffffffe);
193 enable_percpu_irq(evt
->irq
, 0);
198 static void armada_370_xp_timer_stop(struct clock_event_device
*evt
)
200 evt
->set_mode(CLOCK_EVT_MODE_UNUSED
, evt
);
201 disable_percpu_irq(evt
->irq
);
204 static int armada_370_xp_timer_cpu_notify(struct notifier_block
*self
,
205 unsigned long action
, void *hcpu
)
208 * Grab cpu pointer in each case to avoid spurious
209 * preemptible warnings
211 switch (action
& ~CPU_TASKS_FROZEN
) {
213 armada_370_xp_timer_setup(this_cpu_ptr(armada_370_xp_evt
));
216 armada_370_xp_timer_stop(this_cpu_ptr(armada_370_xp_evt
));
223 static struct notifier_block armada_370_xp_timer_cpu_nb
= {
224 .notifier_call
= armada_370_xp_timer_cpu_notify
,
227 static u32 timer0_ctrl_reg
, timer0_local_ctrl_reg
;
229 static int armada_370_xp_timer_suspend(void)
231 timer0_ctrl_reg
= readl(timer_base
+ TIMER_CTRL_OFF
);
232 timer0_local_ctrl_reg
= readl(local_base
+ TIMER_CTRL_OFF
);
236 static void armada_370_xp_timer_resume(void)
238 writel(0xffffffff, timer_base
+ TIMER0_VAL_OFF
);
239 writel(0xffffffff, timer_base
+ TIMER0_RELOAD_OFF
);
240 writel(timer0_ctrl_reg
, timer_base
+ TIMER_CTRL_OFF
);
241 writel(timer0_local_ctrl_reg
, local_base
+ TIMER_CTRL_OFF
);
244 struct syscore_ops armada_370_xp_timer_syscore_ops
= {
245 .suspend
= armada_370_xp_timer_suspend
,
246 .resume
= armada_370_xp_timer_resume
,
249 static void __init
armada_370_xp_timer_common_init(struct device_node
*np
)
251 u32 clr
= 0, set
= 0;
254 timer_base
= of_iomap(np
, 0);
255 WARN_ON(!timer_base
);
256 local_base
= of_iomap(np
, 1);
260 enable_mask
= TIMER0_EN
;
263 enable_mask
= TIMER0_EN
| TIMER0_DIV(TIMER_DIVIDER_SHIFT
);
265 atomic_io_modify(timer_base
+ TIMER_CTRL_OFF
, clr
| set
, set
);
266 local_timer_ctrl_clrset(clr
, set
);
269 * We use timer 0 as clocksource, and private(local) timer 0
272 armada_370_xp_clkevt_irq
= irq_of_parse_and_map(np
, 4);
274 ticks_per_jiffy
= (timer_clk
+ HZ
/ 2) / HZ
;
277 * Setup free-running clocksource timer (interrupts
280 writel(0xffffffff, timer_base
+ TIMER0_VAL_OFF
);
281 writel(0xffffffff, timer_base
+ TIMER0_RELOAD_OFF
);
283 atomic_io_modify(timer_base
+ TIMER_CTRL_OFF
,
284 TIMER0_RELOAD_EN
| enable_mask
,
285 TIMER0_RELOAD_EN
| enable_mask
);
288 * Set scale and timer for sched_clock.
290 sched_clock_register(armada_370_xp_read_sched_clock
, 32, timer_clk
);
292 clocksource_mmio_init(timer_base
+ TIMER0_VAL_OFF
,
293 "armada_370_xp_clocksource",
294 timer_clk
, 300, 32, clocksource_mmio_readl_down
);
296 register_cpu_notifier(&armada_370_xp_timer_cpu_nb
);
298 armada_370_xp_evt
= alloc_percpu(struct clock_event_device
);
302 * Setup clockevent timer (interrupt-driven).
304 res
= request_percpu_irq(armada_370_xp_clkevt_irq
,
305 armada_370_xp_timer_interrupt
,
306 "armada_370_xp_per_cpu_tick",
308 /* Immediately configure the timer on the boot CPU */
310 armada_370_xp_timer_setup(this_cpu_ptr(armada_370_xp_evt
));
312 register_syscore_ops(&armada_370_xp_timer_syscore_ops
);
315 static void __init
armada_xp_timer_init(struct device_node
*np
)
317 struct clk
*clk
= of_clk_get_by_name(np
, "fixed");
319 /* The 25Mhz fixed clock is mandatory, and must always be available */
321 clk_prepare_enable(clk
);
322 timer_clk
= clk_get_rate(clk
);
324 armada_370_xp_timer_common_init(np
);
326 CLOCKSOURCE_OF_DECLARE(armada_xp
, "marvell,armada-xp-timer",
327 armada_xp_timer_init
);
329 static void __init
armada_375_timer_init(struct device_node
*np
)
333 clk
= of_clk_get_by_name(np
, "fixed");
335 clk_prepare_enable(clk
);
336 timer_clk
= clk_get_rate(clk
);
340 * This fallback is required in order to retain proper
341 * devicetree backwards compatibility.
343 clk
= of_clk_get(np
, 0);
345 /* Must have at least a clock */
347 clk_prepare_enable(clk
);
348 timer_clk
= clk_get_rate(clk
) / TIMER_DIVIDER
;
352 armada_370_xp_timer_common_init(np
);
354 CLOCKSOURCE_OF_DECLARE(armada_375
, "marvell,armada-375-timer",
355 armada_375_timer_init
);
357 static void __init
armada_370_timer_init(struct device_node
*np
)
359 struct clk
*clk
= of_clk_get(np
, 0);
362 clk_prepare_enable(clk
);
363 timer_clk
= clk_get_rate(clk
) / TIMER_DIVIDER
;
366 armada_370_xp_timer_common_init(np
);
368 CLOCKSOURCE_OF_DECLARE(armada_370
, "marvell,armada-370-timer",
369 armada_370_timer_init
);