timer-sp804.c 7.5 KB
Newer Older
1
/*
2
 *  linux/drivers/clocksource/timer-sp.c
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
 *
 *  Copyright (C) 1999 - 2003 ARM Limited
 *  Copyright (C) 2000 Deep Blue Solutions Ltd
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
21
#include <linux/clk.h>
22 23
#include <linux/clocksource.h>
#include <linux/clockchips.h>
24
#include <linux/err.h>
25 26 27
#include <linux/interrupt.h>
#include <linux/irq.h>
#include <linux/io.h>
28 29
#include <linux/of.h>
#include <linux/of_address.h>
30
#include <linux/of_clk.h>
31
#include <linux/of_irq.h>
32
#include <linux/sched_clock.h>
33

34 35 36
#include <clocksource/timer-sp804.h>

#include "timer-sp.h"
37

38
static long __init sp804_get_clock_rate(struct clk *clk)
39 40 41 42
{
	long rate;
	int err;

43 44
	err = clk_prepare(clk);
	if (err) {
45
		pr_err("sp804: clock failed to prepare: %d\n", err);
46 47 48 49
		clk_put(clk);
		return err;
	}

50 51
	err = clk_enable(clk);
	if (err) {
52
		pr_err("sp804: clock failed to enable: %d\n", err);
53
		clk_unprepare(clk);
54 55 56 57 58 59
		clk_put(clk);
		return err;
	}

	rate = clk_get_rate(clk);
	if (rate < 0) {
60
		pr_err("sp804: clock failed to get rate: %ld\n", rate);
61
		clk_disable(clk);
62
		clk_unprepare(clk);
63 64 65 66 67 68
		clk_put(clk);
	}

	return rate;
}

69 70
static void __iomem *sched_clock_base;

71
static u64 notrace sp804_read(void)
72 73 74 75
{
	return ~readl_relaxed(sched_clock_base + TIMER_VALUE);
}

76 77 78 79 80
void __init sp804_timer_disable(void __iomem *base)
{
	writel(0, base + TIMER_CTRL);
}

81
int  __init __sp804_clocksource_and_sched_clock_init(void __iomem *base,
82
						     const char *name,
83
						     struct clk *clk,
84
						     int use_sched_clock)
85
{
86 87 88 89 90 91 92
	long rate;

	if (!clk) {
		clk = clk_get_sys("sp804", name);
		if (IS_ERR(clk)) {
			pr_err("sp804: clock not found: %d\n",
			       (int)PTR_ERR(clk));
93
			return PTR_ERR(clk);
94 95 96 97
		}
	}

	rate = sp804_get_clock_rate(clk);
98
	if (rate < 0)
99
		return -EINVAL;
100

101
	/* setup timer 0 as free-running clocksource */
102 103 104
	writel(0, base + TIMER_CTRL);
	writel(0xffffffff, base + TIMER_LOAD);
	writel(0xffffffff, base + TIMER_VALUE);
105
	writel(TIMER_CTRL_32BIT | TIMER_CTRL_ENABLE | TIMER_CTRL_PERIODIC,
106
		base + TIMER_CTRL);
107

108
	clocksource_mmio_init(base + TIMER_VALUE, name,
109
		rate, 200, 32, clocksource_mmio_readl_down);
110 111 112

	if (use_sched_clock) {
		sched_clock_base = base;
113
		sched_clock_register(sp804_read, 32, rate);
114
	}
115 116

	return 0;
117 118 119 120
}


static void __iomem *clkevt_base;
121
static unsigned long clkevt_reload;
122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137

/*
 * IRQ handler for the timer
 */
static irqreturn_t sp804_timer_interrupt(int irq, void *dev_id)
{
	struct clock_event_device *evt = dev_id;

	/* clear the interrupt */
	writel(1, clkevt_base + TIMER_INTCLR);

	evt->event_handler(evt);

	return IRQ_HANDLED;
}

138
static inline void timer_shutdown(struct clock_event_device *evt)
139
{
140 141
	writel(0, clkevt_base + TIMER_CTRL);
}
142

143 144 145 146 147
static int sp804_shutdown(struct clock_event_device *evt)
{
	timer_shutdown(evt);
	return 0;
}
148

149 150 151 152
static int sp804_set_periodic(struct clock_event_device *evt)
{
	unsigned long ctrl = TIMER_CTRL_32BIT | TIMER_CTRL_IE |
			     TIMER_CTRL_PERIODIC | TIMER_CTRL_ENABLE;
153

154 155
	timer_shutdown(evt);
	writel(clkevt_reload, clkevt_base + TIMER_LOAD);
156
	writel(ctrl, clkevt_base + TIMER_CTRL);
157
	return 0;
158 159 160 161 162
}

static int sp804_set_next_event(unsigned long next,
	struct clock_event_device *evt)
{
163 164
	unsigned long ctrl = TIMER_CTRL_32BIT | TIMER_CTRL_IE |
			     TIMER_CTRL_ONESHOT | TIMER_CTRL_ENABLE;
165 166

	writel(next, clkevt_base + TIMER_LOAD);
167
	writel(ctrl, clkevt_base + TIMER_CTRL);
168 169 170 171 172

	return 0;
}

static struct clock_event_device sp804_clockevent = {
173 174 175 176 177 178 179 180 181
	.features		= CLOCK_EVT_FEAT_PERIODIC |
				  CLOCK_EVT_FEAT_ONESHOT |
				  CLOCK_EVT_FEAT_DYNIRQ,
	.set_state_shutdown	= sp804_shutdown,
	.set_state_periodic	= sp804_set_periodic,
	.set_state_oneshot	= sp804_shutdown,
	.tick_resume		= sp804_shutdown,
	.set_next_event		= sp804_set_next_event,
	.rating			= 300,
182 183 184 185
};

static struct irqaction sp804_timer_irq = {
	.name		= "timer",
186
	.flags		= IRQF_TIMER | IRQF_IRQPOLL,
187 188 189 190
	.handler	= sp804_timer_interrupt,
	.dev_id		= &sp804_clockevent,
};

191
int __init __sp804_clockevents_init(void __iomem *base, unsigned int irq, struct clk *clk, const char *name)
192 193
{
	struct clock_event_device *evt = &sp804_clockevent;
194 195 196 197 198 199 200
	long rate;

	if (!clk)
		clk = clk_get_sys("sp804", name);
	if (IS_ERR(clk)) {
		pr_err("sp804: %s clock not found: %d\n", name,
			(int)PTR_ERR(clk));
201
		return PTR_ERR(clk);
202
	}
203

204
	rate = sp804_get_clock_rate(clk);
205
	if (rate < 0)
206
		return -EINVAL;
207 208

	clkevt_base = base;
209
	clkevt_reload = DIV_ROUND_CLOSEST(rate, HZ);
210 211
	evt->name = name;
	evt->irq = irq;
212
	evt->cpumask = cpu_possible_mask;
213

214 215
	writel(0, base + TIMER_CTRL);

216
	setup_irq(irq, &sp804_timer_irq);
217
	clockevents_config_and_register(evt, rate, 0xf, 0xffffffff);
218 219

	return 0;
220
}
221

222
static int __init sp804_of_init(struct device_node *np)
223 224 225
{
	static bool initialized = false;
	void __iomem *base;
226
	int irq, ret = -EINVAL;
227 228 229 230 231
	u32 irq_num = 0;
	struct clk *clk1, *clk2;
	const char *name = of_get_property(np, "compatible", NULL);

	base = of_iomap(np, 0);
232 233
	if (!base)
		return -ENXIO;
234 235 236 237 238

	/* Ensure timers are disabled */
	writel(0, base + TIMER_CTRL);
	writel(0, base + TIMER_2_BASE + TIMER_CTRL);

239 240
	if (initialized || !of_device_is_available(np)) {
		ret = -EINVAL;
241
		goto err;
242
	}
243 244 245 246 247

	clk1 = of_clk_get(np, 0);
	if (IS_ERR(clk1))
		clk1 = NULL;

248
	/* Get the 2nd clock if the timer has 3 timer clocks */
249
	if (of_clk_get_parent_count(np) == 3) {
250 251 252 253
		clk2 = of_clk_get(np, 1);
		if (IS_ERR(clk2)) {
			pr_err("sp804: %s clock not found: %d\n", np->name,
				(int)PTR_ERR(clk2));
254
			clk2 = NULL;
255 256 257 258 259 260 261 262 263 264
		}
	} else
		clk2 = clk1;

	irq = irq_of_parse_and_map(np, 0);
	if (irq <= 0)
		goto err;

	of_property_read_u32(np, "arm,sp804-has-irq", &irq_num);
	if (irq_num == 2) {
265 266 267 268 269 270 271 272

		ret = __sp804_clockevents_init(base + TIMER_2_BASE, irq, clk2, name);
		if (ret)
			goto err;

		ret = __sp804_clocksource_and_sched_clock_init(base, name, clk1, 1);
		if (ret)
			goto err;
273
	} else {
274 275 276 277 278 279 280 281 282

		ret = __sp804_clockevents_init(base, irq, clk1 , name);
		if (ret)
			goto err;

		ret =__sp804_clocksource_and_sched_clock_init(base + TIMER_2_BASE,
							      name, clk2, 1);
		if (ret)
			goto err;
283 284 285
	}
	initialized = true;

286
	return 0;
287 288
err:
	iounmap(base);
289
	return ret;
290
}
291
TIMER_OF_DECLARE(sp804, "arm,sp804", sp804_of_init);
292

293
static int __init integrator_cp_of_init(struct device_node *np)
294 295 296
{
	static int init_count = 0;
	void __iomem *base;
297
	int irq, ret = -EINVAL;
298
	const char *name = of_get_property(np, "compatible", NULL);
299
	struct clk *clk;
300 301

	base = of_iomap(np, 0);
302
	if (!base) {
303
		pr_err("Failed to iomap\n");
304 305 306
		return -ENXIO;
	}

307
	clk = of_clk_get(np, 0);
308
	if (IS_ERR(clk)) {
309
		pr_err("Failed to get clock\n");
310 311
		return PTR_ERR(clk);
	}
312 313 314 315 316 317 318

	/* Ensure timer is disabled */
	writel(0, base + TIMER_CTRL);

	if (init_count == 2 || !of_device_is_available(np))
		goto err;

319 320 321 322 323
	if (!init_count) {
		ret = __sp804_clocksource_and_sched_clock_init(base, name, clk, 0);
		if (ret)
			goto err;
	} else {
324 325 326 327
		irq = irq_of_parse_and_map(np, 0);
		if (irq <= 0)
			goto err;

328 329 330
		ret = __sp804_clockevents_init(base, irq, clk, name);
		if (ret)
			goto err;
331 332 333
	}

	init_count++;
334
	return 0;
335 336
err:
	iounmap(base);
337
	return ret;
338
}
339
TIMER_OF_DECLARE(intcp, "arm,integrator-cp-timer", integrator_cp_of_init);