blob: ded926f7c4e8dda8acea252af86718ce8478c9ef [file] [log] [blame]
Russell Kinge3887712010-01-14 13:30:16 +00001/*
Rob Herring8a9618f2010-10-06 16:18:08 +01002 * linux/arch/arm/common/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>
30#include <linux/of_irq.h>
Russell Kinge3887712010-01-14 13:30:16 +000031
Rob Herringa7bf6162011-12-12 15:29:08 -060032#include <asm/sched_clock.h>
Russell Kinge3887712010-01-14 13:30:16 +000033#include <asm/hardware/arm_timer.h>
34
Rob Herring7a0eca72013-03-25 11:23:52 -050035static long __init sp804_get_clock_rate(struct clk *clk)
Russell King7ff550d2011-05-12 13:31:48 +010036{
Russell King7ff550d2011-05-12 13:31:48 +010037 long rate;
38 int err;
39
Russell King6f5ad9632011-09-22 11:38:40 +010040 err = clk_prepare(clk);
41 if (err) {
Rob Herring7a0eca72013-03-25 11:23:52 -050042 pr_err("sp804: clock failed to prepare: %d\n", err);
Russell King6f5ad9632011-09-22 11:38:40 +010043 clk_put(clk);
44 return err;
45 }
46
Russell King7ff550d2011-05-12 13:31:48 +010047 err = clk_enable(clk);
48 if (err) {
Rob Herring7a0eca72013-03-25 11:23:52 -050049 pr_err("sp804: clock failed to enable: %d\n", err);
Russell King6f5ad9632011-09-22 11:38:40 +010050 clk_unprepare(clk);
Russell King7ff550d2011-05-12 13:31:48 +010051 clk_put(clk);
52 return err;
53 }
54
55 rate = clk_get_rate(clk);
56 if (rate < 0) {
Rob Herring7a0eca72013-03-25 11:23:52 -050057 pr_err("sp804: clock failed to get rate: %ld\n", rate);
Russell King7ff550d2011-05-12 13:31:48 +010058 clk_disable(clk);
Russell King6f5ad9632011-09-22 11:38:40 +010059 clk_unprepare(clk);
Russell King7ff550d2011-05-12 13:31:48 +010060 clk_put(clk);
61 }
62
63 return rate;
64}
65
Rob Herringa7bf6162011-12-12 15:29:08 -060066static void __iomem *sched_clock_base;
67
68static u32 sp804_read(void)
69{
70 return ~readl_relaxed(sched_clock_base + TIMER_VALUE);
71}
72
73void __init __sp804_clocksource_and_sched_clock_init(void __iomem *base,
74 const char *name,
Rob Herring7a0eca72013-03-25 11:23:52 -050075 struct clk *clk,
Rob Herringa7bf6162011-12-12 15:29:08 -060076 int use_sched_clock)
Russell Kinge3887712010-01-14 13:30:16 +000077{
Rob Herring7a0eca72013-03-25 11:23:52 -050078 long rate;
79
80 if (!clk) {
81 clk = clk_get_sys("sp804", name);
82 if (IS_ERR(clk)) {
83 pr_err("sp804: clock not found: %d\n",
84 (int)PTR_ERR(clk));
85 return;
86 }
87 }
88
89 rate = sp804_get_clock_rate(clk);
Russell King7ff550d2011-05-12 13:31:48 +010090
91 if (rate < 0)
92 return;
93
Russell Kinge3887712010-01-14 13:30:16 +000094 /* setup timer 0 as free-running clocksource */
Russell Kingbfe45e02011-05-08 15:33:30 +010095 writel(0, base + TIMER_CTRL);
96 writel(0xffffffff, base + TIMER_LOAD);
97 writel(0xffffffff, base + TIMER_VALUE);
Russell Kinge3887712010-01-14 13:30:16 +000098 writel(TIMER_CTRL_32BIT | TIMER_CTRL_ENABLE | TIMER_CTRL_PERIODIC,
Russell Kingbfe45e02011-05-08 15:33:30 +010099 base + TIMER_CTRL);
Russell Kinge3887712010-01-14 13:30:16 +0000100
Russell Kingfb593cf2011-05-12 12:08:23 +0100101 clocksource_mmio_init(base + TIMER_VALUE, name,
Russell King7ff550d2011-05-12 13:31:48 +0100102 rate, 200, 32, clocksource_mmio_readl_down);
Rob Herringa7bf6162011-12-12 15:29:08 -0600103
104 if (use_sched_clock) {
105 sched_clock_base = base;
106 setup_sched_clock(sp804_read, 32, rate);
107 }
Russell Kinge3887712010-01-14 13:30:16 +0000108}
109
110
111static void __iomem *clkevt_base;
Russell King23828a72011-05-12 15:45:16 +0100112static unsigned long clkevt_reload;
Russell Kinge3887712010-01-14 13:30:16 +0000113
114/*
115 * IRQ handler for the timer
116 */
117static irqreturn_t sp804_timer_interrupt(int irq, void *dev_id)
118{
119 struct clock_event_device *evt = dev_id;
120
121 /* clear the interrupt */
122 writel(1, clkevt_base + TIMER_INTCLR);
123
124 evt->event_handler(evt);
125
126 return IRQ_HANDLED;
127}
128
129static void sp804_set_mode(enum clock_event_mode mode,
130 struct clock_event_device *evt)
131{
132 unsigned long ctrl = TIMER_CTRL_32BIT | TIMER_CTRL_IE;
133
134 writel(ctrl, clkevt_base + TIMER_CTRL);
135
136 switch (mode) {
137 case CLOCK_EVT_MODE_PERIODIC:
Russell King23828a72011-05-12 15:45:16 +0100138 writel(clkevt_reload, clkevt_base + TIMER_LOAD);
Russell Kinge3887712010-01-14 13:30:16 +0000139 ctrl |= TIMER_CTRL_PERIODIC | TIMER_CTRL_ENABLE;
140 break;
141
142 case CLOCK_EVT_MODE_ONESHOT:
143 /* period set, and timer enabled in 'next_event' hook */
144 ctrl |= TIMER_CTRL_ONESHOT;
145 break;
146
147 case CLOCK_EVT_MODE_UNUSED:
148 case CLOCK_EVT_MODE_SHUTDOWN:
149 default:
150 break;
151 }
152
153 writel(ctrl, clkevt_base + TIMER_CTRL);
154}
155
156static int sp804_set_next_event(unsigned long next,
157 struct clock_event_device *evt)
158{
159 unsigned long ctrl = readl(clkevt_base + TIMER_CTRL);
160
161 writel(next, clkevt_base + TIMER_LOAD);
162 writel(ctrl | TIMER_CTRL_ENABLE, clkevt_base + TIMER_CTRL);
163
164 return 0;
165}
166
167static struct clock_event_device sp804_clockevent = {
Russell Kinge3887712010-01-14 13:30:16 +0000168 .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT,
169 .set_mode = sp804_set_mode,
170 .set_next_event = sp804_set_next_event,
171 .rating = 300,
Russell Kinge3887712010-01-14 13:30:16 +0000172};
173
174static struct irqaction sp804_timer_irq = {
175 .name = "timer",
176 .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
177 .handler = sp804_timer_interrupt,
178 .dev_id = &sp804_clockevent,
179};
180
Rob Herring7a0eca72013-03-25 11:23:52 -0500181void __init __sp804_clockevents_init(void __iomem *base, unsigned int irq, struct clk *clk, const char *name)
Russell Kinge3887712010-01-14 13:30:16 +0000182{
183 struct clock_event_device *evt = &sp804_clockevent;
Rob Herring7a0eca72013-03-25 11:23:52 -0500184 long rate;
Russell King23828a72011-05-12 15:45:16 +0100185
Rob Herring7a0eca72013-03-25 11:23:52 -0500186 if (!clk)
187 clk = clk_get_sys("sp804", name);
188 if (IS_ERR(clk)) {
189 pr_err("sp804: %s clock not found: %d\n", name,
190 (int)PTR_ERR(clk));
191 return;
192 }
193
194 rate = sp804_get_clock_rate(clk);
Russell King23828a72011-05-12 15:45:16 +0100195 if (rate < 0)
196 return;
Russell Kinge3887712010-01-14 13:30:16 +0000197
198 clkevt_base = base;
Russell King23828a72011-05-12 15:45:16 +0100199 clkevt_reload = DIV_ROUND_CLOSEST(rate, HZ);
Russell King57cc4f72011-05-12 15:31:13 +0100200 evt->name = name;
201 evt->irq = irq;
Will Deaconea3aacf2012-11-23 18:55:30 +0100202 evt->cpumask = cpu_possible_mask;
Russell Kinge3887712010-01-14 13:30:16 +0000203
Rob Herring7a0eca72013-03-25 11:23:52 -0500204 writel(0, base + TIMER_CTRL);
205
Russell King57cc4f72011-05-12 15:31:13 +0100206 setup_irq(irq, &sp804_timer_irq);
Linus Walleij7c324d82011-12-21 13:25:34 +0100207 clockevents_config_and_register(evt, rate, 0xf, 0xffffffff);
Russell Kinge3887712010-01-14 13:30:16 +0000208}
Rob Herring7a0eca72013-03-25 11:23:52 -0500209
210static void __init sp804_of_init(struct device_node *np)
211{
212 static bool initialized = false;
213 void __iomem *base;
214 int irq;
215 u32 irq_num = 0;
216 struct clk *clk1, *clk2;
217 const char *name = of_get_property(np, "compatible", NULL);
218
219 base = of_iomap(np, 0);
220 if (WARN_ON(!base))
221 return;
222
223 /* Ensure timers are disabled */
224 writel(0, base + TIMER_CTRL);
225 writel(0, base + TIMER_2_BASE + TIMER_CTRL);
226
227 if (initialized || !of_device_is_available(np))
228 goto err;
229
230 clk1 = of_clk_get(np, 0);
231 if (IS_ERR(clk1))
232 clk1 = NULL;
233
234 /* Get the 2nd clock if the timer has 2 timer clocks */
235 if (of_count_phandle_with_args(np, "clocks", "#clock-cells") == 3) {
236 clk2 = of_clk_get(np, 1);
237 if (IS_ERR(clk2)) {
238 pr_err("sp804: %s clock not found: %d\n", np->name,
239 (int)PTR_ERR(clk2));
240 goto err;
241 }
242 } else
243 clk2 = clk1;
244
245 irq = irq_of_parse_and_map(np, 0);
246 if (irq <= 0)
247 goto err;
248
249 of_property_read_u32(np, "arm,sp804-has-irq", &irq_num);
250 if (irq_num == 2) {
251 __sp804_clockevents_init(base + TIMER_2_BASE, irq, clk2, name);
252 __sp804_clocksource_and_sched_clock_init(base, name, clk1, 1);
253 } else {
254 __sp804_clockevents_init(base, irq, clk1 , name);
255 __sp804_clocksource_and_sched_clock_init(base + TIMER_2_BASE,
256 name, clk2, 1);
257 }
258 initialized = true;
259
260 return;
261err:
262 iounmap(base);
263}
264CLOCKSOURCE_OF_DECLARE(sp804, "arm,sp804", sp804_of_init);