blob: 4334e0330ada48729cd63a7033eacc45fc84c8f1 [file] [log] [blame]
Barry Song4898de32012-12-20 19:37:32 +08001/*
2 * System timer for CSR SiRFprimaII
3 *
4 * Copyright (c) 2011 Cambridge Silicon Radio Limited, a CSR plc group company.
5 *
6 * Licensed under GPLv2 or later.
7 */
8
9#include <linux/kernel.h>
10#include <linux/interrupt.h>
11#include <linux/clockchips.h>
12#include <linux/clocksource.h>
Stephen Boyd05a65482013-02-15 17:02:16 -080013#include <linux/cpu.h>
Barry Song4898de32012-12-20 19:37:32 +080014#include <linux/bitops.h>
15#include <linux/irq.h>
16#include <linux/clk.h>
17#include <linux/slab.h>
18#include <linux/of.h>
19#include <linux/of_irq.h>
20#include <linux/of_address.h>
Stephen Boyd38ff87f2013-06-01 23:39:40 -070021#include <linux/sched_clock.h>
Uwe Kleine-König980c51a2013-11-11 21:06:11 +010022
Barry Song4898de32012-12-20 19:37:32 +080023#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
38
39#define SIRFSOC_TIMER_REG_CNT 6
40
Barry Song5833ac92015-01-12 00:04:43 +080041static unsigned long atlas7_timer_rate;
Yanchang Lief89af12014-11-11 20:42:52 +080042
Barry Song4898de32012-12-20 19:37:32 +080043static 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,
50};
51
52static u32 sirfsoc_timer_reg_val[SIRFSOC_TIMER_REG_CNT];
53
54static void __iomem *sirfsoc_timer_base;
Barry Song4898de32012-12-20 19:37:32 +080055
56/* disable count and interrupt */
57static inline void sirfsoc_timer_count_disable(int idx)
58{
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);
61}
62
63/* enable count and interrupt */
64static inline void sirfsoc_timer_count_enable(int idx)
65{
Hao Liu28cf3562014-09-29 01:50:06 +020066 writel_relaxed(readl_relaxed(sirfsoc_timer_base + SIRFSOC_TIMER_32COUNTER_0_CTRL + 4 * idx) | 0x3,
Barry Song4898de32012-12-20 19:37:32 +080067 sirfsoc_timer_base + SIRFSOC_TIMER_32COUNTER_0_CTRL + 4 * idx);
68}
69
70/* timer interrupt handler */
71static irqreturn_t sirfsoc_timer_interrupt(int irq, void *dev_id)
72{
73 struct clock_event_device *ce = dev_id;
74 int cpu = smp_processor_id();
75
76 /* clear timer interrupt */
77 writel_relaxed(BIT(cpu), sirfsoc_timer_base + SIRFSOC_TIMER_INTR_STATUS);
78
Viresh Kumar1e729d32015-06-18 16:24:43 +053079 if (clockevent_state_oneshot(ce))
Barry Song4898de32012-12-20 19:37:32 +080080 sirfsoc_timer_count_disable(cpu);
81
82 ce->event_handler(ce);
83
84 return IRQ_HANDLED;
85}
86
87/* read 64-bit timer counter */
88static cycle_t sirfsoc_timer_read(struct clocksource *cs)
89{
90 u64 cycles;
91
92 writel_relaxed((readl_relaxed(sirfsoc_timer_base + SIRFSOC_TIMER_64COUNTER_CTRL) |
93 BIT(0)) & ~BIT(1), sirfsoc_timer_base + SIRFSOC_TIMER_64COUNTER_CTRL);
94
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);
97
98 return cycles;
99}
100
101static int sirfsoc_timer_set_next_event(unsigned long delta,
102 struct clock_event_device *ce)
103{
104 int cpu = smp_processor_id();
105
Hao Liu28cf3562014-09-29 01:50:06 +0200106 /* disable timer first, then modify the related registers */
107 sirfsoc_timer_count_disable(cpu);
108
Barry Song4898de32012-12-20 19:37:32 +0800109 writel_relaxed(0, sirfsoc_timer_base + SIRFSOC_TIMER_COUNTER_0 +
110 4 * cpu);
111 writel_relaxed(delta, sirfsoc_timer_base + SIRFSOC_TIMER_MATCH_0 +
112 4 * cpu);
113
114 /* enable the tick */
115 sirfsoc_timer_count_enable(cpu);
116
117 return 0;
118}
119
Viresh Kumar1e729d32015-06-18 16:24:43 +0530120/* Oneshot is enabled in set_next_event */
121static int sirfsoc_timer_shutdown(struct clock_event_device *evt)
Barry Song4898de32012-12-20 19:37:32 +0800122{
Barry Song4898de32012-12-20 19:37:32 +0800123 sirfsoc_timer_count_disable(smp_processor_id());
Viresh Kumar1e729d32015-06-18 16:24:43 +0530124 return 0;
Barry Song4898de32012-12-20 19:37:32 +0800125}
126
127static void sirfsoc_clocksource_suspend(struct clocksource *cs)
128{
129 int i;
130
131 for (i = 0; i < SIRFSOC_TIMER_REG_CNT; i++)
132 sirfsoc_timer_reg_val[i] = readl_relaxed(sirfsoc_timer_base + sirfsoc_timer_reg_list[i]);
133}
134
135static void sirfsoc_clocksource_resume(struct clocksource *cs)
136{
137 int i;
138
139 for (i = 0; i < SIRFSOC_TIMER_REG_CNT - 2; i++)
140 writel_relaxed(sirfsoc_timer_reg_val[i], sirfsoc_timer_base + sirfsoc_timer_reg_list[i]);
141
142 writel_relaxed(sirfsoc_timer_reg_val[SIRFSOC_TIMER_REG_CNT - 2],
143 sirfsoc_timer_base + SIRFSOC_TIMER_64COUNTER_LOAD_LO);
144 writel_relaxed(sirfsoc_timer_reg_val[SIRFSOC_TIMER_REG_CNT - 1],
145 sirfsoc_timer_base + SIRFSOC_TIMER_64COUNTER_LOAD_HI);
146
147 writel_relaxed(readl_relaxed(sirfsoc_timer_base + SIRFSOC_TIMER_64COUNTER_CTRL) |
148 BIT(1) | BIT(0), sirfsoc_timer_base + SIRFSOC_TIMER_64COUNTER_CTRL);
149}
150
Stephen Boyd05a65482013-02-15 17:02:16 -0800151static struct clock_event_device __percpu *sirfsoc_clockevent;
Barry Song4898de32012-12-20 19:37:32 +0800152
153static struct clocksource sirfsoc_clocksource = {
154 .name = "sirfsoc_clocksource",
155 .rating = 200,
156 .mask = CLOCKSOURCE_MASK(64),
157 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
158 .read = sirfsoc_timer_read,
159 .suspend = sirfsoc_clocksource_suspend,
160 .resume = sirfsoc_clocksource_resume,
161};
162
163static struct irqaction sirfsoc_timer_irq = {
164 .name = "sirfsoc_timer0",
165 .flags = IRQF_TIMER | IRQF_NOBALANCING,
166 .handler = sirfsoc_timer_interrupt,
Barry Song4898de32012-12-20 19:37:32 +0800167};
168
Barry Song4898de32012-12-20 19:37:32 +0800169static struct irqaction sirfsoc_timer1_irq = {
170 .name = "sirfsoc_timer1",
171 .flags = IRQF_TIMER | IRQF_NOBALANCING,
172 .handler = sirfsoc_timer_interrupt,
173};
174
Richard Cochraneb0a9d82016-07-13 17:17:07 +0000175static int sirfsoc_local_timer_starting_cpu(unsigned int cpu)
Barry Song4898de32012-12-20 19:37:32 +0800176{
Richard Cochraneb0a9d82016-07-13 17:17:07 +0000177 struct clock_event_device *ce = per_cpu_ptr(sirfsoc_clockevent, cpu);
Stephen Boyd05a65482013-02-15 17:02:16 -0800178 struct irqaction *action;
Barry Song4898de32012-12-20 19:37:32 +0800179
Stephen Boyd05a65482013-02-15 17:02:16 -0800180 if (cpu == 0)
181 action = &sirfsoc_timer_irq;
182 else
183 action = &sirfsoc_timer1_irq;
184
185 ce->irq = action->irq;
Barry Song4898de32012-12-20 19:37:32 +0800186 ce->name = "local_timer";
Stephen Boyd05a65482013-02-15 17:02:16 -0800187 ce->features = CLOCK_EVT_FEAT_ONESHOT;
188 ce->rating = 200;
Viresh Kumar1e729d32015-06-18 16:24:43 +0530189 ce->set_state_shutdown = sirfsoc_timer_shutdown;
190 ce->set_state_oneshot = sirfsoc_timer_shutdown;
191 ce->tick_resume = sirfsoc_timer_shutdown;
Barry Song4898de32012-12-20 19:37:32 +0800192 ce->set_next_event = sirfsoc_timer_set_next_event;
Barry Song5833ac92015-01-12 00:04:43 +0800193 clockevents_calc_mult_shift(ce, atlas7_timer_rate, 60);
Stephen Boyd05a65482013-02-15 17:02:16 -0800194 ce->max_delta_ns = clockevent_delta2ns(-2, ce);
195 ce->min_delta_ns = clockevent_delta2ns(2, ce);
196 ce->cpumask = cpumask_of(cpu);
Barry Song4898de32012-12-20 19:37:32 +0800197
Stephen Boyd05a65482013-02-15 17:02:16 -0800198 action->dev_id = ce;
199 BUG_ON(setup_irq(ce->irq, action));
Zhiwu Songf214be52014-05-07 14:46:44 +0800200 irq_force_affinity(action->irq, cpumask_of(cpu));
Barry Song4898de32012-12-20 19:37:32 +0800201
202 clockevents_register_device(ce);
203 return 0;
204}
205
Richard Cochraneb0a9d82016-07-13 17:17:07 +0000206static int sirfsoc_local_timer_dying_cpu(unsigned int cpu)
Barry Song4898de32012-12-20 19:37:32 +0800207{
208 sirfsoc_timer_count_disable(1);
209
Stephen Boyd05a65482013-02-15 17:02:16 -0800210 if (cpu == 0)
211 remove_irq(sirfsoc_timer_irq.irq, &sirfsoc_timer_irq);
212 else
213 remove_irq(sirfsoc_timer1_irq.irq, &sirfsoc_timer1_irq);
Richard Cochraneb0a9d82016-07-13 17:17:07 +0000214 return 0;
Barry Song4898de32012-12-20 19:37:32 +0800215}
216
Daniel Lezcanoc41c96d2016-06-06 18:01:09 +0200217static int __init sirfsoc_clockevent_init(void)
Barry Song4898de32012-12-20 19:37:32 +0800218{
Stephen Boyd05a65482013-02-15 17:02:16 -0800219 sirfsoc_clockevent = alloc_percpu(struct clock_event_device);
220 BUG_ON(!sirfsoc_clockevent);
Barry Song4898de32012-12-20 19:37:32 +0800221
Richard Cochraneb0a9d82016-07-13 17:17:07 +0000222 /* Install and invoke hotplug callbacks */
223 return cpuhp_setup_state(CPUHP_AP_MARCO_TIMER_STARTING,
224 "AP_MARCO_TIMER_STARTING",
225 sirfsoc_local_timer_starting_cpu,
226 sirfsoc_local_timer_dying_cpu);
Barry Song4898de32012-12-20 19:37:32 +0800227}
228
229/* initialize the kernel jiffy timer source */
Daniel Lezcanoc41c96d2016-06-06 18:01:09 +0200230static int __init sirfsoc_atlas7_timer_init(struct device_node *np)
Barry Song4898de32012-12-20 19:37:32 +0800231{
Barry Song4898de32012-12-20 19:37:32 +0800232 struct clk *clk;
233
Zhiwu Songc7cff542014-05-05 19:30:04 +0800234 clk = of_clk_get(np, 0);
Barry Song4898de32012-12-20 19:37:32 +0800235 BUG_ON(IS_ERR(clk));
Zhiwu Song38941522014-07-03 20:52:51 +0800236
237 BUG_ON(clk_prepare_enable(clk));
238
Barry Song5833ac92015-01-12 00:04:43 +0800239 atlas7_timer_rate = clk_get_rate(clk);
Barry Song4898de32012-12-20 19:37:32 +0800240
Yanchang Lief89af12014-11-11 20:42:52 +0800241 /* timer dividers: 0, not divided */
242 writel_relaxed(0, sirfsoc_timer_base + SIRFSOC_TIMER_64COUNTER_CTRL);
243 writel_relaxed(0, sirfsoc_timer_base + SIRFSOC_TIMER_32COUNTER_0_CTRL);
244 writel_relaxed(0, sirfsoc_timer_base + SIRFSOC_TIMER_32COUNTER_1_CTRL);
Barry Song4898de32012-12-20 19:37:32 +0800245
246 /* Initialize timer counters to 0 */
247 writel_relaxed(0, sirfsoc_timer_base + SIRFSOC_TIMER_64COUNTER_LOAD_LO);
248 writel_relaxed(0, sirfsoc_timer_base + SIRFSOC_TIMER_64COUNTER_LOAD_HI);
249 writel_relaxed(readl_relaxed(sirfsoc_timer_base + SIRFSOC_TIMER_64COUNTER_CTRL) |
250 BIT(1) | BIT(0), sirfsoc_timer_base + SIRFSOC_TIMER_64COUNTER_CTRL);
251 writel_relaxed(0, sirfsoc_timer_base + SIRFSOC_TIMER_COUNTER_0);
252 writel_relaxed(0, sirfsoc_timer_base + SIRFSOC_TIMER_COUNTER_1);
253
254 /* Clear all interrupts */
255 writel_relaxed(0xFFFF, sirfsoc_timer_base + SIRFSOC_TIMER_INTR_STATUS);
256
Barry Song5833ac92015-01-12 00:04:43 +0800257 BUG_ON(clocksource_register_hz(&sirfsoc_clocksource, atlas7_timer_rate));
Barry Song4898de32012-12-20 19:37:32 +0800258
Daniel Lezcanoc41c96d2016-06-06 18:01:09 +0200259 return sirfsoc_clockevent_init();
Barry Song4898de32012-12-20 19:37:32 +0800260}
261
Daniel Lezcanoc41c96d2016-06-06 18:01:09 +0200262static int __init sirfsoc_of_timer_init(struct device_node *np)
Barry Song4898de32012-12-20 19:37:32 +0800263{
Barry Song4898de32012-12-20 19:37:32 +0800264 sirfsoc_timer_base = of_iomap(np, 0);
Daniel Lezcanoc41c96d2016-06-06 18:01:09 +0200265 if (!sirfsoc_timer_base) {
266 pr_err("unable to map timer cpu registers\n");
267 return -ENXIO;
268 }
Barry Song4898de32012-12-20 19:37:32 +0800269
270 sirfsoc_timer_irq.irq = irq_of_parse_and_map(np, 0);
Daniel Lezcanoc41c96d2016-06-06 18:01:09 +0200271 if (!sirfsoc_timer_irq.irq) {
272 pr_err("No irq passed for timer0 via DT\n");
273 return -EINVAL;
274 }
Barry Song4898de32012-12-20 19:37:32 +0800275
Barry Song4898de32012-12-20 19:37:32 +0800276 sirfsoc_timer1_irq.irq = irq_of_parse_and_map(np, 1);
Daniel Lezcanoc41c96d2016-06-06 18:01:09 +0200277 if (!sirfsoc_timer1_irq.irq) {
278 pr_err("No irq passed for timer1 via DT\n");
279 return -EINVAL;
280 }
Barry Song4898de32012-12-20 19:37:32 +0800281
Daniel Lezcanoc41c96d2016-06-06 18:01:09 +0200282 return sirfsoc_atlas7_timer_init(np);
Barry Song4898de32012-12-20 19:37:32 +0800283}
Daniel Lezcano177cf6e2016-06-07 00:27:44 +0200284CLOCKSOURCE_OF_DECLARE(sirfsoc_atlas7_timer, "sirf,atlas7-tick", sirfsoc_of_timer_init);