blob: e01222ea888ff9d2b9187e4b02c8c0daa9448b40 [file] [log] [blame]
Russell Kinge3887712010-01-14 13:30:16 +00001/*
Sudeep Holla0b7402d2015-05-18 16:29:40 +01002 * linux/drivers/clocksource/timer-sp.c
Russell Kinge3887712010-01-14 13:30:16 +00003 *
4 * Copyright (C) 1999 - 2003 ARM Limited
5 * Copyright (C) 2000 Deep Blue Solutions Ltd
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 */
Russell King7ff550d2011-05-12 13:31:48 +010021#include <linux/clk.h>
Russell Kinge3887712010-01-14 13:30:16 +000022#include <linux/clocksource.h>
23#include <linux/clockchips.h>
Russell King7ff550d2011-05-12 13:31:48 +010024#include <linux/err.h>
Russell Kinge3887712010-01-14 13:30:16 +000025#include <linux/interrupt.h>
26#include <linux/irq.h>
27#include <linux/io.h>
Rob Herring7a0eca72013-03-25 11:23:52 -050028#include <linux/of.h>
29#include <linux/of_address.h>
Geert Uytterhoevenb799cac2018-04-18 16:50:02 +020030#include <linux/of_clk.h>
Rob Herring7a0eca72013-03-25 11:23:52 -050031#include <linux/of_irq.h>
Stephen Boyd38ff87f2013-06-01 23:39:40 -070032#include <linux/sched_clock.h>
Russell Kinge3887712010-01-14 13:30:16 +000033
Sudeep Holla0b7402d2015-05-18 16:29:40 +010034#include <clocksource/timer-sp804.h>
35
36#include "timer-sp.h"
Russell Kinge3887712010-01-14 13:30:16 +000037
Rob Herring7a0eca72013-03-25 11:23:52 -050038static long __init sp804_get_clock_rate(struct clk *clk)
Russell King7ff550d2011-05-12 13:31:48 +010039{
Russell King7ff550d2011-05-12 13:31:48 +010040 long rate;
41 int err;
42
Russell King6f5ad962011-09-22 11:38:40 +010043 err = clk_prepare(clk);
44 if (err) {
Rob Herring7a0eca72013-03-25 11:23:52 -050045 pr_err("sp804: clock failed to prepare: %d\n", err);
Russell King6f5ad962011-09-22 11:38:40 +010046 clk_put(clk);
47 return err;
48 }
49
Russell King7ff550d2011-05-12 13:31:48 +010050 err = clk_enable(clk);
51 if (err) {
Rob Herring7a0eca72013-03-25 11:23:52 -050052 pr_err("sp804: clock failed to enable: %d\n", err);
Russell King6f5ad962011-09-22 11:38:40 +010053 clk_unprepare(clk);
Russell King7ff550d2011-05-12 13:31:48 +010054 clk_put(clk);
55 return err;
56 }
57
58 rate = clk_get_rate(clk);
59 if (rate < 0) {
Rob Herring7a0eca72013-03-25 11:23:52 -050060 pr_err("sp804: clock failed to get rate: %ld\n", rate);
Russell King7ff550d2011-05-12 13:31:48 +010061 clk_disable(clk);
Russell King6f5ad962011-09-22 11:38:40 +010062 clk_unprepare(clk);
Russell King7ff550d2011-05-12 13:31:48 +010063 clk_put(clk);
64 }
65
66 return rate;
67}
68
Rob Herringa7bf6162011-12-12 15:29:08 -060069static void __iomem *sched_clock_base;
70
Stephen Boyd9b12f3a2013-11-15 15:26:09 -080071static u64 notrace sp804_read(void)
Rob Herringa7bf6162011-12-12 15:29:08 -060072{
73 return ~readl_relaxed(sched_clock_base + TIMER_VALUE);
74}
75
Sudeep Holla1e5f0512015-05-18 16:29:04 +010076void __init sp804_timer_disable(void __iomem *base)
77{
78 writel(0, base + TIMER_CTRL);
79}
80
Daniel Lezcano2ef25382016-06-06 23:28:01 +020081int __init __sp804_clocksource_and_sched_clock_init(void __iomem *base,
Rob Herringa7bf6162011-12-12 15:29:08 -060082 const char *name,
Rob Herring7a0eca72013-03-25 11:23:52 -050083 struct clk *clk,
Rob Herringa7bf6162011-12-12 15:29:08 -060084 int use_sched_clock)
Russell Kinge3887712010-01-14 13:30:16 +000085{
Rob Herring7a0eca72013-03-25 11:23:52 -050086 long rate;
87
88 if (!clk) {
89 clk = clk_get_sys("sp804", name);
90 if (IS_ERR(clk)) {
91 pr_err("sp804: clock not found: %d\n",
92 (int)PTR_ERR(clk));
Daniel Lezcano2ef25382016-06-06 23:28:01 +020093 return PTR_ERR(clk);
Rob Herring7a0eca72013-03-25 11:23:52 -050094 }
95 }
96
97 rate = sp804_get_clock_rate(clk);
Russell King7ff550d2011-05-12 13:31:48 +010098 if (rate < 0)
Daniel Lezcano2ef25382016-06-06 23:28:01 +020099 return -EINVAL;
Russell King7ff550d2011-05-12 13:31:48 +0100100
Russell Kinge3887712010-01-14 13:30:16 +0000101 /* setup timer 0 as free-running clocksource */
Russell Kingbfe45e02011-05-08 15:33:30 +0100102 writel(0, base + TIMER_CTRL);
103 writel(0xffffffff, base + TIMER_LOAD);
104 writel(0xffffffff, base + TIMER_VALUE);
Russell Kinge3887712010-01-14 13:30:16 +0000105 writel(TIMER_CTRL_32BIT | TIMER_CTRL_ENABLE | TIMER_CTRL_PERIODIC,
Russell Kingbfe45e02011-05-08 15:33:30 +0100106 base + TIMER_CTRL);
Russell Kinge3887712010-01-14 13:30:16 +0000107
Russell Kingfb593cf2011-05-12 12:08:23 +0100108 clocksource_mmio_init(base + TIMER_VALUE, name,
Russell King7ff550d2011-05-12 13:31:48 +0100109 rate, 200, 32, clocksource_mmio_readl_down);
Rob Herringa7bf6162011-12-12 15:29:08 -0600110
111 if (use_sched_clock) {
112 sched_clock_base = base;
Stephen Boyd9b12f3a2013-11-15 15:26:09 -0800113 sched_clock_register(sp804_read, 32, rate);
Rob Herringa7bf6162011-12-12 15:29:08 -0600114 }
Daniel Lezcano2ef25382016-06-06 23:28:01 +0200115
116 return 0;
Russell Kinge3887712010-01-14 13:30:16 +0000117}
118
119
120static void __iomem *clkevt_base;
Russell King23828a72011-05-12 15:45:16 +0100121static unsigned long clkevt_reload;
Russell Kinge3887712010-01-14 13:30:16 +0000122
123/*
124 * IRQ handler for the timer
125 */
126static irqreturn_t sp804_timer_interrupt(int irq, void *dev_id)
127{
128 struct clock_event_device *evt = dev_id;
129
130 /* clear the interrupt */
131 writel(1, clkevt_base + TIMER_INTCLR);
132
133 evt->event_handler(evt);
134
135 return IRQ_HANDLED;
136}
137
Viresh Kumardaea7282015-07-06 15:39:19 +0530138static inline void timer_shutdown(struct clock_event_device *evt)
Russell Kinge3887712010-01-14 13:30:16 +0000139{
Viresh Kumardaea7282015-07-06 15:39:19 +0530140 writel(0, clkevt_base + TIMER_CTRL);
141}
Russell Kinge3887712010-01-14 13:30:16 +0000142
Viresh Kumardaea7282015-07-06 15:39:19 +0530143static int sp804_shutdown(struct clock_event_device *evt)
144{
145 timer_shutdown(evt);
146 return 0;
147}
148
149static int sp804_set_periodic(struct clock_event_device *evt)
150{
151 unsigned long ctrl = TIMER_CTRL_32BIT | TIMER_CTRL_IE |
152 TIMER_CTRL_PERIODIC | TIMER_CTRL_ENABLE;
153
154 timer_shutdown(evt);
155 writel(clkevt_reload, clkevt_base + TIMER_LOAD);
Russell Kinge3887712010-01-14 13:30:16 +0000156 writel(ctrl, clkevt_base + TIMER_CTRL);
Viresh Kumardaea7282015-07-06 15:39:19 +0530157 return 0;
Russell Kinge3887712010-01-14 13:30:16 +0000158}
159
160static int sp804_set_next_event(unsigned long next,
161 struct clock_event_device *evt)
162{
Viresh Kumardaea7282015-07-06 15:39:19 +0530163 unsigned long ctrl = TIMER_CTRL_32BIT | TIMER_CTRL_IE |
164 TIMER_CTRL_ONESHOT | TIMER_CTRL_ENABLE;
Russell Kinge3887712010-01-14 13:30:16 +0000165
166 writel(next, clkevt_base + TIMER_LOAD);
Viresh Kumardaea7282015-07-06 15:39:19 +0530167 writel(ctrl, clkevt_base + TIMER_CTRL);
Russell Kinge3887712010-01-14 13:30:16 +0000168
169 return 0;
170}
171
172static struct clock_event_device sp804_clockevent = {
Viresh Kumardaea7282015-07-06 15:39:19 +0530173 .features = CLOCK_EVT_FEAT_PERIODIC |
174 CLOCK_EVT_FEAT_ONESHOT |
175 CLOCK_EVT_FEAT_DYNIRQ,
176 .set_state_shutdown = sp804_shutdown,
177 .set_state_periodic = sp804_set_periodic,
178 .set_state_oneshot = sp804_shutdown,
179 .tick_resume = sp804_shutdown,
180 .set_next_event = sp804_set_next_event,
181 .rating = 300,
Russell Kinge3887712010-01-14 13:30:16 +0000182};
183
184static struct irqaction sp804_timer_irq = {
185 .name = "timer",
Michael Opdenacker728fae62013-10-14 04:42:20 +0100186 .flags = IRQF_TIMER | IRQF_IRQPOLL,
Russell Kinge3887712010-01-14 13:30:16 +0000187 .handler = sp804_timer_interrupt,
188 .dev_id = &sp804_clockevent,
189};
190
Daniel Lezcano2ef25382016-06-06 23:28:01 +0200191int __init __sp804_clockevents_init(void __iomem *base, unsigned int irq, struct clk *clk, const char *name)
Russell Kinge3887712010-01-14 13:30:16 +0000192{
193 struct clock_event_device *evt = &sp804_clockevent;
Rob Herring7a0eca72013-03-25 11:23:52 -0500194 long rate;
Russell King23828a72011-05-12 15:45:16 +0100195
Rob Herring7a0eca72013-03-25 11:23:52 -0500196 if (!clk)
197 clk = clk_get_sys("sp804", name);
198 if (IS_ERR(clk)) {
199 pr_err("sp804: %s clock not found: %d\n", name,
200 (int)PTR_ERR(clk));
Daniel Lezcano2ef25382016-06-06 23:28:01 +0200201 return PTR_ERR(clk);
Rob Herring7a0eca72013-03-25 11:23:52 -0500202 }
203
204 rate = sp804_get_clock_rate(clk);
Russell King23828a72011-05-12 15:45:16 +0100205 if (rate < 0)
Daniel Lezcano2ef25382016-06-06 23:28:01 +0200206 return -EINVAL;
Russell Kinge3887712010-01-14 13:30:16 +0000207
208 clkevt_base = base;
Russell King23828a72011-05-12 15:45:16 +0100209 clkevt_reload = DIV_ROUND_CLOSEST(rate, HZ);
Russell King57cc4f72011-05-12 15:31:13 +0100210 evt->name = name;
211 evt->irq = irq;
Will Deaconea3aacf2012-11-23 18:55:30 +0100212 evt->cpumask = cpu_possible_mask;
Russell Kinge3887712010-01-14 13:30:16 +0000213
Rob Herring7a0eca72013-03-25 11:23:52 -0500214 writel(0, base + TIMER_CTRL);
215
Russell King57cc4f72011-05-12 15:31:13 +0100216 setup_irq(irq, &sp804_timer_irq);
Linus Walleij7c324d82011-12-21 13:25:34 +0100217 clockevents_config_and_register(evt, rate, 0xf, 0xffffffff);
Daniel Lezcano2ef25382016-06-06 23:28:01 +0200218
219 return 0;
Russell Kinge3887712010-01-14 13:30:16 +0000220}
Rob Herring7a0eca72013-03-25 11:23:52 -0500221
Daniel Lezcano2ef25382016-06-06 23:28:01 +0200222static int __init sp804_of_init(struct device_node *np)
Rob Herring7a0eca72013-03-25 11:23:52 -0500223{
224 static bool initialized = false;
225 void __iomem *base;
Daniel Lezcano2ef25382016-06-06 23:28:01 +0200226 int irq, ret = -EINVAL;
Rob Herring7a0eca72013-03-25 11:23:52 -0500227 u32 irq_num = 0;
228 struct clk *clk1, *clk2;
229 const char *name = of_get_property(np, "compatible", NULL);
230
231 base = of_iomap(np, 0);
Daniel Lezcano2ef25382016-06-06 23:28:01 +0200232 if (!base)
233 return -ENXIO;
Rob Herring7a0eca72013-03-25 11:23:52 -0500234
235 /* Ensure timers are disabled */
236 writel(0, base + TIMER_CTRL);
237 writel(0, base + TIMER_2_BASE + TIMER_CTRL);
238
Daniel Lezcano2ef25382016-06-06 23:28:01 +0200239 if (initialized || !of_device_is_available(np)) {
240 ret = -EINVAL;
Rob Herring7a0eca72013-03-25 11:23:52 -0500241 goto err;
Daniel Lezcano2ef25382016-06-06 23:28:01 +0200242 }
Rob Herring7a0eca72013-03-25 11:23:52 -0500243
244 clk1 = of_clk_get(np, 0);
245 if (IS_ERR(clk1))
246 clk1 = NULL;
247
Rob Herring1bde9902014-05-29 16:01:34 -0500248 /* Get the 2nd clock if the timer has 3 timer clocks */
Geert Uytterhoevenb799cac2018-04-18 16:50:02 +0200249 if (of_clk_get_parent_count(np) == 3) {
Rob Herring7a0eca72013-03-25 11:23:52 -0500250 clk2 = of_clk_get(np, 1);
251 if (IS_ERR(clk2)) {
252 pr_err("sp804: %s clock not found: %d\n", np->name,
253 (int)PTR_ERR(clk2));
Rob Herring1bde9902014-05-29 16:01:34 -0500254 clk2 = NULL;
Rob Herring7a0eca72013-03-25 11:23:52 -0500255 }
256 } else
257 clk2 = clk1;
258
259 irq = irq_of_parse_and_map(np, 0);
260 if (irq <= 0)
261 goto err;
262
263 of_property_read_u32(np, "arm,sp804-has-irq", &irq_num);
264 if (irq_num == 2) {
Daniel Lezcano2ef25382016-06-06 23:28:01 +0200265
266 ret = __sp804_clockevents_init(base + TIMER_2_BASE, irq, clk2, name);
267 if (ret)
268 goto err;
269
270 ret = __sp804_clocksource_and_sched_clock_init(base, name, clk1, 1);
271 if (ret)
272 goto err;
Rob Herring7a0eca72013-03-25 11:23:52 -0500273 } else {
Daniel Lezcano2ef25382016-06-06 23:28:01 +0200274
275 ret = __sp804_clockevents_init(base, irq, clk1 , name);
276 if (ret)
277 goto err;
278
279 ret =__sp804_clocksource_and_sched_clock_init(base + TIMER_2_BASE,
280 name, clk2, 1);
281 if (ret)
282 goto err;
Rob Herring7a0eca72013-03-25 11:23:52 -0500283 }
284 initialized = true;
285
Daniel Lezcano2ef25382016-06-06 23:28:01 +0200286 return 0;
Rob Herring7a0eca72013-03-25 11:23:52 -0500287err:
288 iounmap(base);
Daniel Lezcano2ef25382016-06-06 23:28:01 +0200289 return ret;
Rob Herring7a0eca72013-03-25 11:23:52 -0500290}
Daniel Lezcano17273392017-05-26 16:56:11 +0200291TIMER_OF_DECLARE(sp804, "arm,sp804", sp804_of_init);
Rob Herring870e2922013-03-13 15:31:12 -0500292
Daniel Lezcano2ef25382016-06-06 23:28:01 +0200293static int __init integrator_cp_of_init(struct device_node *np)
Rob Herring870e2922013-03-13 15:31:12 -0500294{
295 static int init_count = 0;
296 void __iomem *base;
Daniel Lezcano2ef25382016-06-06 23:28:01 +0200297 int irq, ret = -EINVAL;
Rob Herring870e2922013-03-13 15:31:12 -0500298 const char *name = of_get_property(np, "compatible", NULL);
Linus Walleij9cf31382014-01-10 15:54:34 +0100299 struct clk *clk;
Rob Herring870e2922013-03-13 15:31:12 -0500300
301 base = of_iomap(np, 0);
Daniel Lezcano2ef25382016-06-06 23:28:01 +0200302 if (!base) {
Rafał Miłeckiac9ce6d2017-03-09 10:47:10 +0100303 pr_err("Failed to iomap\n");
Daniel Lezcano2ef25382016-06-06 23:28:01 +0200304 return -ENXIO;
305 }
306
Linus Walleij9cf31382014-01-10 15:54:34 +0100307 clk = of_clk_get(np, 0);
Daniel Lezcano2ef25382016-06-06 23:28:01 +0200308 if (IS_ERR(clk)) {
Rafał Miłeckiac9ce6d2017-03-09 10:47:10 +0100309 pr_err("Failed to get clock\n");
Daniel Lezcano2ef25382016-06-06 23:28:01 +0200310 return PTR_ERR(clk);
311 }
Rob Herring870e2922013-03-13 15:31:12 -0500312
313 /* Ensure timer is disabled */
314 writel(0, base + TIMER_CTRL);
315
316 if (init_count == 2 || !of_device_is_available(np))
317 goto err;
318
Daniel Lezcano2ef25382016-06-06 23:28:01 +0200319 if (!init_count) {
320 ret = __sp804_clocksource_and_sched_clock_init(base, name, clk, 0);
321 if (ret)
322 goto err;
323 } else {
Rob Herring870e2922013-03-13 15:31:12 -0500324 irq = irq_of_parse_and_map(np, 0);
325 if (irq <= 0)
326 goto err;
327
Daniel Lezcano2ef25382016-06-06 23:28:01 +0200328 ret = __sp804_clockevents_init(base, irq, clk, name);
329 if (ret)
330 goto err;
Rob Herring870e2922013-03-13 15:31:12 -0500331 }
332
333 init_count++;
Daniel Lezcano2ef25382016-06-06 23:28:01 +0200334 return 0;
Rob Herring870e2922013-03-13 15:31:12 -0500335err:
336 iounmap(base);
Daniel Lezcano2ef25382016-06-06 23:28:01 +0200337 return ret;
Rob Herring870e2922013-03-13 15:31:12 -0500338}
Daniel Lezcano17273392017-05-26 16:56:11 +0200339TIMER_OF_DECLARE(intcp, "arm,integrator-cp-timer", integrator_cp_of_init);