blob: 401d592e85f5a901fa82e9173258fa1188347926 [file] [log] [blame]
Thomas Gleixner1a59d1b82019-05-27 08:55:05 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Russell Kinge3887712010-01-14 13:30:16 +00002/*
Sudeep Holla0b7402d2015-05-18 16:29:40 +01003 * linux/drivers/clocksource/timer-sp.c
Russell Kinge3887712010-01-14 13:30:16 +00004 *
5 * Copyright (C) 1999 - 2003 ARM Limited
6 * Copyright (C) 2000 Deep Blue Solutions Ltd
Russell Kinge3887712010-01-14 13:30:16 +00007 */
Kefeng Wang19f7ce82020-10-29 20:33:17 +08008
9#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
10
Russell King7ff550d2011-05-12 13:31:48 +010011#include <linux/clk.h>
Russell Kinge3887712010-01-14 13:30:16 +000012#include <linux/clocksource.h>
13#include <linux/clockchips.h>
Russell King7ff550d2011-05-12 13:31:48 +010014#include <linux/err.h>
Russell Kinge3887712010-01-14 13:30:16 +000015#include <linux/interrupt.h>
16#include <linux/irq.h>
17#include <linux/io.h>
Rob Herring7a0eca72013-03-25 11:23:52 -050018#include <linux/of.h>
19#include <linux/of_address.h>
Geert Uytterhoevenb799cac2018-04-18 16:50:02 +020020#include <linux/of_clk.h>
Rob Herring7a0eca72013-03-25 11:23:52 -050021#include <linux/of_irq.h>
Stephen Boyd38ff87f2013-06-01 23:39:40 -070022#include <linux/sched_clock.h>
Russell Kinge3887712010-01-14 13:30:16 +000023
Sudeep Holla0b7402d2015-05-18 16:29:40 +010024#include "timer-sp.h"
Russell Kinge3887712010-01-14 13:30:16 +000025
Zhen Leibd5a1932020-09-18 21:22:35 +080026/* Hisilicon 64-bit timer(a variant of ARM SP804) */
27#define HISI_TIMER_1_BASE 0x00
28#define HISI_TIMER_2_BASE 0x40
29#define HISI_TIMER_LOAD 0x00
Zhen Lei549437a2020-09-18 21:22:36 +080030#define HISI_TIMER_LOAD_H 0x04
Zhen Leibd5a1932020-09-18 21:22:35 +080031#define HISI_TIMER_VALUE 0x08
Zhen Lei549437a2020-09-18 21:22:36 +080032#define HISI_TIMER_VALUE_H 0x0c
Zhen Leibd5a1932020-09-18 21:22:35 +080033#define HISI_TIMER_CTRL 0x10
34#define HISI_TIMER_INTCLR 0x14
35#define HISI_TIMER_RIS 0x18
36#define HISI_TIMER_MIS 0x1c
37#define HISI_TIMER_BGLOAD 0x20
Zhen Lei549437a2020-09-18 21:22:36 +080038#define HISI_TIMER_BGLOAD_H 0x24
Zhen Leibd5a1932020-09-18 21:22:35 +080039
Kefeng Wang3c07bf02020-10-29 20:33:14 +080040static struct sp804_timer arm_sp804_timer __initdata = {
Zhen Lei23c788c2020-09-18 21:22:34 +080041 .load = TIMER_LOAD,
42 .value = TIMER_VALUE,
43 .ctrl = TIMER_CTRL,
44 .intclr = TIMER_INTCLR,
45 .timer_base = {TIMER_1_BASE, TIMER_2_BASE},
46 .width = 32,
47};
48
Kefeng Wang3c07bf02020-10-29 20:33:14 +080049static struct sp804_timer hisi_sp804_timer __initdata = {
Zhen Leibd5a1932020-09-18 21:22:35 +080050 .load = HISI_TIMER_LOAD,
Zhen Lei549437a2020-09-18 21:22:36 +080051 .load_h = HISI_TIMER_LOAD_H,
Zhen Leibd5a1932020-09-18 21:22:35 +080052 .value = HISI_TIMER_VALUE,
Zhen Lei549437a2020-09-18 21:22:36 +080053 .value_h = HISI_TIMER_VALUE_H,
Zhen Leibd5a1932020-09-18 21:22:35 +080054 .ctrl = HISI_TIMER_CTRL,
55 .intclr = HISI_TIMER_INTCLR,
56 .timer_base = {HISI_TIMER_1_BASE, HISI_TIMER_2_BASE},
57 .width = 64,
58};
59
Zhen Lei23c788c2020-09-18 21:22:34 +080060static struct sp804_clkevt sp804_clkevt[NR_TIMERS];
61
Kefeng Wang7d19d522020-09-18 21:22:29 +080062static long __init sp804_get_clock_rate(struct clk *clk, const char *name)
Russell King7ff550d2011-05-12 13:31:48 +010063{
Russell King7ff550d2011-05-12 13:31:48 +010064 int err;
65
Kefeng Wang7d19d522020-09-18 21:22:29 +080066 if (!clk)
67 clk = clk_get_sys("sp804", name);
68 if (IS_ERR(clk)) {
Kefeng Wang19f7ce82020-10-29 20:33:17 +080069 pr_err("%s clock not found: %ld\n", name, PTR_ERR(clk));
Kefeng Wang7d19d522020-09-18 21:22:29 +080070 return PTR_ERR(clk);
71 }
72
Kefeng Wang9d4965e2020-10-29 20:33:15 +080073 err = clk_prepare_enable(clk);
Russell King7ff550d2011-05-12 13:31:48 +010074 if (err) {
Kefeng Wang19f7ce82020-10-29 20:33:17 +080075 pr_err("clock failed to enable: %d\n", err);
Russell King7ff550d2011-05-12 13:31:48 +010076 clk_put(clk);
77 return err;
78 }
79
Kefeng Wangdca54f82020-10-29 20:33:16 +080080 return clk_get_rate(clk);
Russell King7ff550d2011-05-12 13:31:48 +010081}
82
Zhen Lei23c788c2020-09-18 21:22:34 +080083static struct sp804_clkevt * __init sp804_clkevt_get(void __iomem *base)
84{
85 int i;
86
87 for (i = 0; i < NR_TIMERS; i++) {
88 if (sp804_clkevt[i].base == base)
89 return &sp804_clkevt[i];
90 }
91
92 /* It's impossible to reach here */
93 WARN_ON(1);
94
95 return NULL;
96}
97
98static struct sp804_clkevt *sched_clkevt;
Rob Herringa7bf6162011-12-12 15:29:08 -060099
Stephen Boyd9b12f3a2013-11-15 15:26:09 -0800100static u64 notrace sp804_read(void)
Rob Herringa7bf6162011-12-12 15:29:08 -0600101{
Zhen Lei23c788c2020-09-18 21:22:34 +0800102 return ~readl_relaxed(sched_clkevt->value);
Rob Herringa7bf6162011-12-12 15:29:08 -0600103}
104
Zhen Lei3c0a4b12020-10-21 09:22:59 +0800105static int __init sp804_clocksource_and_sched_clock_init(void __iomem *base,
106 const char *name,
107 struct clk *clk,
108 int use_sched_clock)
Russell Kinge3887712010-01-14 13:30:16 +0000109{
Rob Herring7a0eca72013-03-25 11:23:52 -0500110 long rate;
Zhen Lei23c788c2020-09-18 21:22:34 +0800111 struct sp804_clkevt *clkevt;
Rob Herring7a0eca72013-03-25 11:23:52 -0500112
Kefeng Wang7d19d522020-09-18 21:22:29 +0800113 rate = sp804_get_clock_rate(clk, name);
Russell King7ff550d2011-05-12 13:31:48 +0100114 if (rate < 0)
Daniel Lezcano2ef25382016-06-06 23:28:01 +0200115 return -EINVAL;
Russell King7ff550d2011-05-12 13:31:48 +0100116
Zhen Lei23c788c2020-09-18 21:22:34 +0800117 clkevt = sp804_clkevt_get(base);
Russell Kinge3887712010-01-14 13:30:16 +0000118
Zhen Lei23c788c2020-09-18 21:22:34 +0800119 writel(0, clkevt->ctrl);
120 writel(0xffffffff, clkevt->load);
121 writel(0xffffffff, clkevt->value);
Zhen Lei549437a2020-09-18 21:22:36 +0800122 if (clkevt->width == 64) {
123 writel(0xffffffff, clkevt->load_h);
124 writel(0xffffffff, clkevt->value_h);
125 }
Zhen Lei23c788c2020-09-18 21:22:34 +0800126 writel(TIMER_CTRL_32BIT | TIMER_CTRL_ENABLE | TIMER_CTRL_PERIODIC,
127 clkevt->ctrl);
128
129 clocksource_mmio_init(clkevt->value, name,
Russell King7ff550d2011-05-12 13:31:48 +0100130 rate, 200, 32, clocksource_mmio_readl_down);
Rob Herringa7bf6162011-12-12 15:29:08 -0600131
132 if (use_sched_clock) {
Zhen Lei23c788c2020-09-18 21:22:34 +0800133 sched_clkevt = clkevt;
Stephen Boyd9b12f3a2013-11-15 15:26:09 -0800134 sched_clock_register(sp804_read, 32, rate);
Rob Herringa7bf6162011-12-12 15:29:08 -0600135 }
Daniel Lezcano2ef25382016-06-06 23:28:01 +0200136
137 return 0;
Russell Kinge3887712010-01-14 13:30:16 +0000138}
139
140
Zhen Lei23c788c2020-09-18 21:22:34 +0800141static struct sp804_clkevt *common_clkevt;
Russell Kinge3887712010-01-14 13:30:16 +0000142
143/*
144 * IRQ handler for the timer
145 */
146static irqreturn_t sp804_timer_interrupt(int irq, void *dev_id)
147{
148 struct clock_event_device *evt = dev_id;
149
150 /* clear the interrupt */
Zhen Lei23c788c2020-09-18 21:22:34 +0800151 writel(1, common_clkevt->intclr);
Russell Kinge3887712010-01-14 13:30:16 +0000152
153 evt->event_handler(evt);
154
155 return IRQ_HANDLED;
156}
157
Viresh Kumardaea7282015-07-06 15:39:19 +0530158static inline void timer_shutdown(struct clock_event_device *evt)
Russell Kinge3887712010-01-14 13:30:16 +0000159{
Zhen Lei23c788c2020-09-18 21:22:34 +0800160 writel(0, common_clkevt->ctrl);
Viresh Kumardaea7282015-07-06 15:39:19 +0530161}
Russell Kinge3887712010-01-14 13:30:16 +0000162
Viresh Kumardaea7282015-07-06 15:39:19 +0530163static int sp804_shutdown(struct clock_event_device *evt)
164{
165 timer_shutdown(evt);
166 return 0;
167}
168
169static int sp804_set_periodic(struct clock_event_device *evt)
170{
171 unsigned long ctrl = TIMER_CTRL_32BIT | TIMER_CTRL_IE |
172 TIMER_CTRL_PERIODIC | TIMER_CTRL_ENABLE;
173
174 timer_shutdown(evt);
Zhen Lei23c788c2020-09-18 21:22:34 +0800175 writel(common_clkevt->reload, common_clkevt->load);
176 writel(ctrl, common_clkevt->ctrl);
Viresh Kumardaea7282015-07-06 15:39:19 +0530177 return 0;
Russell Kinge3887712010-01-14 13:30:16 +0000178}
179
180static int sp804_set_next_event(unsigned long next,
181 struct clock_event_device *evt)
182{
Viresh Kumardaea7282015-07-06 15:39:19 +0530183 unsigned long ctrl = TIMER_CTRL_32BIT | TIMER_CTRL_IE |
184 TIMER_CTRL_ONESHOT | TIMER_CTRL_ENABLE;
Russell Kinge3887712010-01-14 13:30:16 +0000185
Zhen Lei23c788c2020-09-18 21:22:34 +0800186 writel(next, common_clkevt->load);
187 writel(ctrl, common_clkevt->ctrl);
Russell Kinge3887712010-01-14 13:30:16 +0000188
189 return 0;
190}
191
192static struct clock_event_device sp804_clockevent = {
Viresh Kumardaea7282015-07-06 15:39:19 +0530193 .features = CLOCK_EVT_FEAT_PERIODIC |
194 CLOCK_EVT_FEAT_ONESHOT |
195 CLOCK_EVT_FEAT_DYNIRQ,
196 .set_state_shutdown = sp804_shutdown,
197 .set_state_periodic = sp804_set_periodic,
198 .set_state_oneshot = sp804_shutdown,
199 .tick_resume = sp804_shutdown,
200 .set_next_event = sp804_set_next_event,
201 .rating = 300,
Russell Kinge3887712010-01-14 13:30:16 +0000202};
203
Zhen Lei3c0a4b12020-10-21 09:22:59 +0800204static int __init sp804_clockevents_init(void __iomem *base, unsigned int irq,
205 struct clk *clk, const char *name)
Russell Kinge3887712010-01-14 13:30:16 +0000206{
207 struct clock_event_device *evt = &sp804_clockevent;
Rob Herring7a0eca72013-03-25 11:23:52 -0500208 long rate;
Russell King23828a72011-05-12 15:45:16 +0100209
Kefeng Wang7d19d522020-09-18 21:22:29 +0800210 rate = sp804_get_clock_rate(clk, name);
Russell King23828a72011-05-12 15:45:16 +0100211 if (rate < 0)
Daniel Lezcano2ef25382016-06-06 23:28:01 +0200212 return -EINVAL;
Russell Kinge3887712010-01-14 13:30:16 +0000213
Zhen Lei23c788c2020-09-18 21:22:34 +0800214 common_clkevt = sp804_clkevt_get(base);
215 common_clkevt->reload = DIV_ROUND_CLOSEST(rate, HZ);
Russell King57cc4f72011-05-12 15:31:13 +0100216 evt->name = name;
217 evt->irq = irq;
Will Deaconea3aacf2012-11-23 18:55:30 +0100218 evt->cpumask = cpu_possible_mask;
Russell Kinge3887712010-01-14 13:30:16 +0000219
Zhen Lei23c788c2020-09-18 21:22:34 +0800220 writel(0, common_clkevt->ctrl);
Rob Herring7a0eca72013-03-25 11:23:52 -0500221
afzal mohammedcc2550b2020-02-27 16:29:02 +0530222 if (request_irq(irq, sp804_timer_interrupt, IRQF_TIMER | IRQF_IRQPOLL,
223 "timer", &sp804_clockevent))
Kefeng Wang19f7ce82020-10-29 20:33:17 +0800224 pr_err("request_irq() failed\n");
Linus Walleij7c324d82011-12-21 13:25:34 +0100225 clockevents_config_and_register(evt, rate, 0xf, 0xffffffff);
Daniel Lezcano2ef25382016-06-06 23:28:01 +0200226
227 return 0;
Russell Kinge3887712010-01-14 13:30:16 +0000228}
Rob Herring7a0eca72013-03-25 11:23:52 -0500229
Zhen Lei23c788c2020-09-18 21:22:34 +0800230static void __init sp804_clkevt_init(struct sp804_timer *timer, void __iomem *base)
231{
232 int i;
233
234 for (i = 0; i < NR_TIMERS; i++) {
235 void __iomem *timer_base;
236 struct sp804_clkevt *clkevt;
237
238 timer_base = base + timer->timer_base[i];
239 clkevt = &sp804_clkevt[i];
240 clkevt->base = timer_base;
241 clkevt->load = timer_base + timer->load;
Zhen Lei549437a2020-09-18 21:22:36 +0800242 clkevt->load_h = timer_base + timer->load_h;
Zhen Lei23c788c2020-09-18 21:22:34 +0800243 clkevt->value = timer_base + timer->value;
Zhen Lei549437a2020-09-18 21:22:36 +0800244 clkevt->value_h = timer_base + timer->value_h;
Zhen Lei23c788c2020-09-18 21:22:34 +0800245 clkevt->ctrl = timer_base + timer->ctrl;
246 clkevt->intclr = timer_base + timer->intclr;
247 clkevt->width = timer->width;
248 }
249}
250
251static int __init sp804_of_init(struct device_node *np, struct sp804_timer *timer)
Rob Herring7a0eca72013-03-25 11:23:52 -0500252{
253 static bool initialized = false;
254 void __iomem *base;
Zhen Leie69aae72020-09-18 21:22:33 +0800255 void __iomem *timer1_base;
256 void __iomem *timer2_base;
Daniel Lezcano2ef25382016-06-06 23:28:01 +0200257 int irq, ret = -EINVAL;
Rob Herring7a0eca72013-03-25 11:23:52 -0500258 u32 irq_num = 0;
259 struct clk *clk1, *clk2;
260 const char *name = of_get_property(np, "compatible", NULL);
261
262 base = of_iomap(np, 0);
Daniel Lezcano2ef25382016-06-06 23:28:01 +0200263 if (!base)
264 return -ENXIO;
Rob Herring7a0eca72013-03-25 11:23:52 -0500265
Zhen Lei23c788c2020-09-18 21:22:34 +0800266 timer1_base = base + timer->timer_base[0];
267 timer2_base = base + timer->timer_base[1];
Zhen Leie69aae72020-09-18 21:22:33 +0800268
Rob Herring7a0eca72013-03-25 11:23:52 -0500269 /* Ensure timers are disabled */
Zhen Lei23c788c2020-09-18 21:22:34 +0800270 writel(0, timer1_base + timer->ctrl);
271 writel(0, timer2_base + timer->ctrl);
Rob Herring7a0eca72013-03-25 11:23:52 -0500272
Daniel Lezcano2ef25382016-06-06 23:28:01 +0200273 if (initialized || !of_device_is_available(np)) {
274 ret = -EINVAL;
Rob Herring7a0eca72013-03-25 11:23:52 -0500275 goto err;
Daniel Lezcano2ef25382016-06-06 23:28:01 +0200276 }
Rob Herring7a0eca72013-03-25 11:23:52 -0500277
278 clk1 = of_clk_get(np, 0);
279 if (IS_ERR(clk1))
280 clk1 = NULL;
281
Rob Herring1bde9902014-05-29 16:01:34 -0500282 /* Get the 2nd clock if the timer has 3 timer clocks */
Geert Uytterhoevenb799cac2018-04-18 16:50:02 +0200283 if (of_clk_get_parent_count(np) == 3) {
Rob Herring7a0eca72013-03-25 11:23:52 -0500284 clk2 = of_clk_get(np, 1);
285 if (IS_ERR(clk2)) {
Kefeng Wang19f7ce82020-10-29 20:33:17 +0800286 pr_err("%pOFn clock not found: %d\n", np,
Rob Herring7a0eca72013-03-25 11:23:52 -0500287 (int)PTR_ERR(clk2));
Rob Herring1bde9902014-05-29 16:01:34 -0500288 clk2 = NULL;
Rob Herring7a0eca72013-03-25 11:23:52 -0500289 }
290 } else
291 clk2 = clk1;
292
293 irq = irq_of_parse_and_map(np, 0);
294 if (irq <= 0)
295 goto err;
296
Zhen Lei23c788c2020-09-18 21:22:34 +0800297 sp804_clkevt_init(timer, base);
298
Rob Herring7a0eca72013-03-25 11:23:52 -0500299 of_property_read_u32(np, "arm,sp804-has-irq", &irq_num);
300 if (irq_num == 2) {
Daniel Lezcano2ef25382016-06-06 23:28:01 +0200301
Zhen Leie69aae72020-09-18 21:22:33 +0800302 ret = sp804_clockevents_init(timer2_base, irq, clk2, name);
Daniel Lezcano2ef25382016-06-06 23:28:01 +0200303 if (ret)
304 goto err;
305
Zhen Leie69aae72020-09-18 21:22:33 +0800306 ret = sp804_clocksource_and_sched_clock_init(timer1_base,
Zhen Lei975434f2020-09-18 21:22:31 +0800307 name, clk1, 1);
Daniel Lezcano2ef25382016-06-06 23:28:01 +0200308 if (ret)
309 goto err;
Rob Herring7a0eca72013-03-25 11:23:52 -0500310 } else {
Daniel Lezcano2ef25382016-06-06 23:28:01 +0200311
Zhen Leie69aae72020-09-18 21:22:33 +0800312 ret = sp804_clockevents_init(timer1_base, irq, clk1, name);
Daniel Lezcano2ef25382016-06-06 23:28:01 +0200313 if (ret)
314 goto err;
315
Zhen Leie69aae72020-09-18 21:22:33 +0800316 ret = sp804_clocksource_and_sched_clock_init(timer2_base,
Zhen Lei975434f2020-09-18 21:22:31 +0800317 name, clk2, 1);
Daniel Lezcano2ef25382016-06-06 23:28:01 +0200318 if (ret)
319 goto err;
Rob Herring7a0eca72013-03-25 11:23:52 -0500320 }
321 initialized = true;
322
Daniel Lezcano2ef25382016-06-06 23:28:01 +0200323 return 0;
Rob Herring7a0eca72013-03-25 11:23:52 -0500324err:
325 iounmap(base);
Daniel Lezcano2ef25382016-06-06 23:28:01 +0200326 return ret;
Rob Herring7a0eca72013-03-25 11:23:52 -0500327}
Zhen Lei23c788c2020-09-18 21:22:34 +0800328
329static int __init arm_sp804_of_init(struct device_node *np)
330{
331 return sp804_of_init(np, &arm_sp804_timer);
332}
333TIMER_OF_DECLARE(sp804, "arm,sp804", arm_sp804_of_init);
Rob Herring870e2922013-03-13 15:31:12 -0500334
Zhen Leibd5a1932020-09-18 21:22:35 +0800335static int __init hisi_sp804_of_init(struct device_node *np)
336{
337 return sp804_of_init(np, &hisi_sp804_timer);
338}
339TIMER_OF_DECLARE(hisi_sp804, "hisilicon,sp804", hisi_sp804_of_init);
340
Daniel Lezcano2ef25382016-06-06 23:28:01 +0200341static int __init integrator_cp_of_init(struct device_node *np)
Rob Herring870e2922013-03-13 15:31:12 -0500342{
343 static int init_count = 0;
344 void __iomem *base;
Daniel Lezcano2ef25382016-06-06 23:28:01 +0200345 int irq, ret = -EINVAL;
Rob Herring870e2922013-03-13 15:31:12 -0500346 const char *name = of_get_property(np, "compatible", NULL);
Linus Walleij9cf31382014-01-10 15:54:34 +0100347 struct clk *clk;
Rob Herring870e2922013-03-13 15:31:12 -0500348
349 base = of_iomap(np, 0);
Daniel Lezcano2ef25382016-06-06 23:28:01 +0200350 if (!base) {
Rafał Miłeckiac9ce6d2017-03-09 10:47:10 +0100351 pr_err("Failed to iomap\n");
Daniel Lezcano2ef25382016-06-06 23:28:01 +0200352 return -ENXIO;
353 }
354
Linus Walleij9cf31382014-01-10 15:54:34 +0100355 clk = of_clk_get(np, 0);
Daniel Lezcano2ef25382016-06-06 23:28:01 +0200356 if (IS_ERR(clk)) {
Rafał Miłeckiac9ce6d2017-03-09 10:47:10 +0100357 pr_err("Failed to get clock\n");
Daniel Lezcano2ef25382016-06-06 23:28:01 +0200358 return PTR_ERR(clk);
359 }
Rob Herring870e2922013-03-13 15:31:12 -0500360
361 /* Ensure timer is disabled */
Zhen Lei23c788c2020-09-18 21:22:34 +0800362 writel(0, base + arm_sp804_timer.ctrl);
Rob Herring870e2922013-03-13 15:31:12 -0500363
364 if (init_count == 2 || !of_device_is_available(np))
365 goto err;
366
Zhen Lei23c788c2020-09-18 21:22:34 +0800367 sp804_clkevt_init(&arm_sp804_timer, base);
368
Daniel Lezcano2ef25382016-06-06 23:28:01 +0200369 if (!init_count) {
Zhen Lei975434f2020-09-18 21:22:31 +0800370 ret = sp804_clocksource_and_sched_clock_init(base,
371 name, clk, 0);
Daniel Lezcano2ef25382016-06-06 23:28:01 +0200372 if (ret)
373 goto err;
374 } else {
Rob Herring870e2922013-03-13 15:31:12 -0500375 irq = irq_of_parse_and_map(np, 0);
376 if (irq <= 0)
377 goto err;
378
Zhen Lei975434f2020-09-18 21:22:31 +0800379 ret = sp804_clockevents_init(base, irq, clk, name);
Daniel Lezcano2ef25382016-06-06 23:28:01 +0200380 if (ret)
381 goto err;
Rob Herring870e2922013-03-13 15:31:12 -0500382 }
383
384 init_count++;
Daniel Lezcano2ef25382016-06-06 23:28:01 +0200385 return 0;
Rob Herring870e2922013-03-13 15:31:12 -0500386err:
387 iounmap(base);
Daniel Lezcano2ef25382016-06-06 23:28:01 +0200388 return ret;
Rob Herring870e2922013-03-13 15:31:12 -0500389}
Daniel Lezcano17273392017-05-26 16:56:11 +0200390TIMER_OF_DECLARE(intcp, "arm,integrator-cp-timer", integrator_cp_of_init);