2 * System timer for CSR SiRFprimaII
4 * Copyright (c) 2011 Cambridge Silicon Radio Limited, a CSR plc group company.
6 * Licensed under GPLv2 or later.
9 #include <linux/kernel.h>
10 #include <linux/interrupt.h>
11 #include <linux/clockchips.h>
12 #include <linux/clocksource.h>
13 #include <linux/cpu.h>
14 #include <linux/bitops.h>
15 #include <linux/irq.h>
16 #include <linux/clk.h>
17 #include <linux/slab.h>
19 #include <linux/of_irq.h>
20 #include <linux/of_address.h>
21 #include <linux/sched_clock.h>
23 #define SIRFSOC_TIMER_32COUNTER_0_CTRL 0x0000
24 #define SIRFSOC_TIMER_32COUNTER_1_CTRL 0x0004
25 #define SIRFSOC_TIMER_MATCH_0 0x0018
26 #define SIRFSOC_TIMER_MATCH_1 0x001c
27 #define SIRFSOC_TIMER_COUNTER_0 0x0048
28 #define SIRFSOC_TIMER_COUNTER_1 0x004c
29 #define SIRFSOC_TIMER_INTR_STATUS 0x0060
30 #define SIRFSOC_TIMER_WATCHDOG_EN 0x0064
31 #define SIRFSOC_TIMER_64COUNTER_CTRL 0x0068
32 #define SIRFSOC_TIMER_64COUNTER_LO 0x006c
33 #define SIRFSOC_TIMER_64COUNTER_HI 0x0070
34 #define SIRFSOC_TIMER_64COUNTER_LOAD_LO 0x0074
35 #define SIRFSOC_TIMER_64COUNTER_LOAD_HI 0x0078
36 #define SIRFSOC_TIMER_64COUNTER_RLATCHED_LO 0x007c
37 #define SIRFSOC_TIMER_64COUNTER_RLATCHED_HI 0x0080
39 #define SIRFSOC_TIMER_REG_CNT 6
41 static unsigned long marco_timer_rate
;
43 static const u32 sirfsoc_timer_reg_list
[SIRFSOC_TIMER_REG_CNT
] = {
44 SIRFSOC_TIMER_WATCHDOG_EN
,
45 SIRFSOC_TIMER_32COUNTER_0_CTRL
,
46 SIRFSOC_TIMER_32COUNTER_1_CTRL
,
47 SIRFSOC_TIMER_64COUNTER_CTRL
,
48 SIRFSOC_TIMER_64COUNTER_RLATCHED_LO
,
49 SIRFSOC_TIMER_64COUNTER_RLATCHED_HI
,
52 static u32 sirfsoc_timer_reg_val
[SIRFSOC_TIMER_REG_CNT
];
54 static void __iomem
*sirfsoc_timer_base
;
56 /* disable count and interrupt */
57 static inline void sirfsoc_timer_count_disable(int idx
)
59 writel_relaxed(readl_relaxed(sirfsoc_timer_base
+ SIRFSOC_TIMER_32COUNTER_0_CTRL
+ 4 * idx
) & ~0x7,
60 sirfsoc_timer_base
+ SIRFSOC_TIMER_32COUNTER_0_CTRL
+ 4 * idx
);
63 /* enable count and interrupt */
64 static inline void sirfsoc_timer_count_enable(int idx
)
66 writel_relaxed(readl_relaxed(sirfsoc_timer_base
+ SIRFSOC_TIMER_32COUNTER_0_CTRL
+ 4 * idx
) | 0x3,
67 sirfsoc_timer_base
+ SIRFSOC_TIMER_32COUNTER_0_CTRL
+ 4 * idx
);
70 /* timer interrupt handler */
71 static irqreturn_t
sirfsoc_timer_interrupt(int irq
, void *dev_id
)
73 struct clock_event_device
*ce
= dev_id
;
74 int cpu
= smp_processor_id();
76 /* clear timer interrupt */
77 writel_relaxed(BIT(cpu
), sirfsoc_timer_base
+ SIRFSOC_TIMER_INTR_STATUS
);
79 if (ce
->mode
== CLOCK_EVT_MODE_ONESHOT
)
80 sirfsoc_timer_count_disable(cpu
);
82 ce
->event_handler(ce
);
87 /* read 64-bit timer counter */
88 static cycle_t
sirfsoc_timer_read(struct clocksource
*cs
)
92 writel_relaxed((readl_relaxed(sirfsoc_timer_base
+ SIRFSOC_TIMER_64COUNTER_CTRL
) |
93 BIT(0)) & ~BIT(1), sirfsoc_timer_base
+ SIRFSOC_TIMER_64COUNTER_CTRL
);
95 cycles
= readl_relaxed(sirfsoc_timer_base
+ SIRFSOC_TIMER_64COUNTER_RLATCHED_HI
);
96 cycles
= (cycles
<< 32) | readl_relaxed(sirfsoc_timer_base
+ SIRFSOC_TIMER_64COUNTER_RLATCHED_LO
);
101 static int sirfsoc_timer_set_next_event(unsigned long delta
,
102 struct clock_event_device
*ce
)
104 int cpu
= smp_processor_id();
106 /* disable timer first, then modify the related registers */
107 sirfsoc_timer_count_disable(cpu
);
109 writel_relaxed(0, sirfsoc_timer_base
+ SIRFSOC_TIMER_COUNTER_0
+
111 writel_relaxed(delta
, sirfsoc_timer_base
+ SIRFSOC_TIMER_MATCH_0
+
114 /* enable the tick */
115 sirfsoc_timer_count_enable(cpu
);
120 static void sirfsoc_timer_set_mode(enum clock_event_mode mode
,
121 struct clock_event_device
*ce
)
124 case CLOCK_EVT_MODE_ONESHOT
:
125 /* enable in set_next_event */
131 sirfsoc_timer_count_disable(smp_processor_id());
134 static void sirfsoc_clocksource_suspend(struct clocksource
*cs
)
138 for (i
= 0; i
< SIRFSOC_TIMER_REG_CNT
; i
++)
139 sirfsoc_timer_reg_val
[i
] = readl_relaxed(sirfsoc_timer_base
+ sirfsoc_timer_reg_list
[i
]);
142 static void sirfsoc_clocksource_resume(struct clocksource
*cs
)
146 for (i
= 0; i
< SIRFSOC_TIMER_REG_CNT
- 2; i
++)
147 writel_relaxed(sirfsoc_timer_reg_val
[i
], sirfsoc_timer_base
+ sirfsoc_timer_reg_list
[i
]);
149 writel_relaxed(sirfsoc_timer_reg_val
[SIRFSOC_TIMER_REG_CNT
- 2],
150 sirfsoc_timer_base
+ SIRFSOC_TIMER_64COUNTER_LOAD_LO
);
151 writel_relaxed(sirfsoc_timer_reg_val
[SIRFSOC_TIMER_REG_CNT
- 1],
152 sirfsoc_timer_base
+ SIRFSOC_TIMER_64COUNTER_LOAD_HI
);
154 writel_relaxed(readl_relaxed(sirfsoc_timer_base
+ SIRFSOC_TIMER_64COUNTER_CTRL
) |
155 BIT(1) | BIT(0), sirfsoc_timer_base
+ SIRFSOC_TIMER_64COUNTER_CTRL
);
158 static struct clock_event_device __percpu
*sirfsoc_clockevent
;
160 static struct clocksource sirfsoc_clocksource
= {
161 .name
= "sirfsoc_clocksource",
163 .mask
= CLOCKSOURCE_MASK(64),
164 .flags
= CLOCK_SOURCE_IS_CONTINUOUS
,
165 .read
= sirfsoc_timer_read
,
166 .suspend
= sirfsoc_clocksource_suspend
,
167 .resume
= sirfsoc_clocksource_resume
,
170 static struct irqaction sirfsoc_timer_irq
= {
171 .name
= "sirfsoc_timer0",
172 .flags
= IRQF_TIMER
| IRQF_NOBALANCING
,
173 .handler
= sirfsoc_timer_interrupt
,
176 static struct irqaction sirfsoc_timer1_irq
= {
177 .name
= "sirfsoc_timer1",
178 .flags
= IRQF_TIMER
| IRQF_NOBALANCING
,
179 .handler
= sirfsoc_timer_interrupt
,
182 static int sirfsoc_local_timer_setup(struct clock_event_device
*ce
)
184 int cpu
= smp_processor_id();
185 struct irqaction
*action
;
188 action
= &sirfsoc_timer_irq
;
190 action
= &sirfsoc_timer1_irq
;
192 ce
->irq
= action
->irq
;
193 ce
->name
= "local_timer";
194 ce
->features
= CLOCK_EVT_FEAT_ONESHOT
;
196 ce
->set_mode
= sirfsoc_timer_set_mode
;
197 ce
->set_next_event
= sirfsoc_timer_set_next_event
;
198 clockevents_calc_mult_shift(ce
, marco_timer_rate
, 60);
199 ce
->max_delta_ns
= clockevent_delta2ns(-2, ce
);
200 ce
->min_delta_ns
= clockevent_delta2ns(2, ce
);
201 ce
->cpumask
= cpumask_of(cpu
);
204 BUG_ON(setup_irq(ce
->irq
, action
));
205 irq_force_affinity(action
->irq
, cpumask_of(cpu
));
207 clockevents_register_device(ce
);
211 static void sirfsoc_local_timer_stop(struct clock_event_device
*ce
)
213 int cpu
= smp_processor_id();
215 sirfsoc_timer_count_disable(1);
218 remove_irq(sirfsoc_timer_irq
.irq
, &sirfsoc_timer_irq
);
220 remove_irq(sirfsoc_timer1_irq
.irq
, &sirfsoc_timer1_irq
);
223 static int sirfsoc_cpu_notify(struct notifier_block
*self
,
224 unsigned long action
, void *hcpu
)
227 * Grab cpu pointer in each case to avoid spurious
228 * preemptible warnings
230 switch (action
& ~CPU_TASKS_FROZEN
) {
232 sirfsoc_local_timer_setup(this_cpu_ptr(sirfsoc_clockevent
));
235 sirfsoc_local_timer_stop(this_cpu_ptr(sirfsoc_clockevent
));
242 static struct notifier_block sirfsoc_cpu_nb
= {
243 .notifier_call
= sirfsoc_cpu_notify
,
246 static void __init
sirfsoc_clockevent_init(void)
248 sirfsoc_clockevent
= alloc_percpu(struct clock_event_device
);
249 BUG_ON(!sirfsoc_clockevent
);
251 BUG_ON(register_cpu_notifier(&sirfsoc_cpu_nb
));
253 /* Immediately configure the timer on the boot CPU */
254 sirfsoc_local_timer_setup(this_cpu_ptr(sirfsoc_clockevent
));
257 /* initialize the kernel jiffy timer source */
258 static void __init
sirfsoc_marco_timer_init(struct device_node
*np
)
263 clk
= of_clk_get(np
, 0);
266 BUG_ON(clk_prepare_enable(clk
));
268 marco_timer_rate
= clk_get_rate(clk
);
270 /* timer dividers: 0, not divided */
271 writel_relaxed(0, sirfsoc_timer_base
+ SIRFSOC_TIMER_64COUNTER_CTRL
);
272 writel_relaxed(0, sirfsoc_timer_base
+ SIRFSOC_TIMER_32COUNTER_0_CTRL
);
273 writel_relaxed(0, sirfsoc_timer_base
+ SIRFSOC_TIMER_32COUNTER_1_CTRL
);
275 /* Initialize timer counters to 0 */
276 writel_relaxed(0, sirfsoc_timer_base
+ SIRFSOC_TIMER_64COUNTER_LOAD_LO
);
277 writel_relaxed(0, sirfsoc_timer_base
+ SIRFSOC_TIMER_64COUNTER_LOAD_HI
);
278 writel_relaxed(readl_relaxed(sirfsoc_timer_base
+ SIRFSOC_TIMER_64COUNTER_CTRL
) |
279 BIT(1) | BIT(0), sirfsoc_timer_base
+ SIRFSOC_TIMER_64COUNTER_CTRL
);
280 writel_relaxed(0, sirfsoc_timer_base
+ SIRFSOC_TIMER_COUNTER_0
);
281 writel_relaxed(0, sirfsoc_timer_base
+ SIRFSOC_TIMER_COUNTER_1
);
283 /* Clear all interrupts */
284 writel_relaxed(0xFFFF, sirfsoc_timer_base
+ SIRFSOC_TIMER_INTR_STATUS
);
286 BUG_ON(clocksource_register_hz(&sirfsoc_clocksource
, marco_timer_rate
));
288 sirfsoc_clockevent_init();
291 static void __init
sirfsoc_of_timer_init(struct device_node
*np
)
293 sirfsoc_timer_base
= of_iomap(np
, 0);
294 if (!sirfsoc_timer_base
)
295 panic("unable to map timer cpu registers\n");
297 sirfsoc_timer_irq
.irq
= irq_of_parse_and_map(np
, 0);
298 if (!sirfsoc_timer_irq
.irq
)
299 panic("No irq passed for timer0 via DT\n");
301 sirfsoc_timer1_irq
.irq
= irq_of_parse_and_map(np
, 1);
302 if (!sirfsoc_timer1_irq
.irq
)
303 panic("No irq passed for timer1 via DT\n");
305 sirfsoc_marco_timer_init(np
);
307 CLOCKSOURCE_OF_DECLARE(sirfsoc_marco_timer
, "sirf,marco-tick", sirfsoc_of_timer_init
);