timer-sp804.c 8.7 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0-or-later
2
/*
3
 *  linux/drivers/clocksource/timer-sp.c
4 5 6 7
 *
 *  Copyright (C) 1999 - 2003 ARM Limited
 *  Copyright (C) 2000 Deep Blue Solutions Ltd
 */
8 9 10

#define pr_fmt(fmt)    KBUILD_MODNAME ": " fmt

11
#include <linux/clk.h>
12 13
#include <linux/clocksource.h>
#include <linux/clockchips.h>
14
#include <linux/err.h>
15 16 17
#include <linux/interrupt.h>
#include <linux/irq.h>
#include <linux/io.h>
18 19
#include <linux/of.h>
#include <linux/of_address.h>
20
#include <linux/of_clk.h>
21
#include <linux/of_irq.h>
22
#include <linux/sched_clock.h>
23

24
#include "timer-sp.h"
25

26 27 28 29
/* Hisilicon 64-bit timer(a variant of ARM SP804) */
#define HISI_TIMER_1_BASE	0x00
#define HISI_TIMER_2_BASE	0x40
#define HISI_TIMER_LOAD		0x00
30
#define HISI_TIMER_LOAD_H	0x04
31
#define HISI_TIMER_VALUE	0x08
32
#define HISI_TIMER_VALUE_H	0x0c
33 34 35 36 37
#define HISI_TIMER_CTRL		0x10
#define HISI_TIMER_INTCLR	0x14
#define HISI_TIMER_RIS		0x18
#define HISI_TIMER_MIS		0x1c
#define HISI_TIMER_BGLOAD	0x20
38
#define HISI_TIMER_BGLOAD_H	0x24
39

40
static struct sp804_timer arm_sp804_timer __initdata = {
41 42 43 44 45 46 47 48
	.load		= TIMER_LOAD,
	.value		= TIMER_VALUE,
	.ctrl		= TIMER_CTRL,
	.intclr		= TIMER_INTCLR,
	.timer_base	= {TIMER_1_BASE, TIMER_2_BASE},
	.width		= 32,
};

49
static struct sp804_timer hisi_sp804_timer __initdata = {
50
	.load		= HISI_TIMER_LOAD,
51
	.load_h		= HISI_TIMER_LOAD_H,
52
	.value		= HISI_TIMER_VALUE,
53
	.value_h	= HISI_TIMER_VALUE_H,
54 55 56 57 58 59
	.ctrl		= HISI_TIMER_CTRL,
	.intclr		= HISI_TIMER_INTCLR,
	.timer_base	= {HISI_TIMER_1_BASE, HISI_TIMER_2_BASE},
	.width		= 64,
};

60 61
static struct sp804_clkevt sp804_clkevt[NR_TIMERS];

62
static long __init sp804_get_clock_rate(struct clk *clk, const char *name)
63 64 65
{
	int err;

66 67 68
	if (!clk)
		clk = clk_get_sys("sp804", name);
	if (IS_ERR(clk)) {
69
		pr_err("%s clock not found: %ld\n", name, PTR_ERR(clk));
70 71 72
		return PTR_ERR(clk);
	}

73
	err = clk_prepare_enable(clk);
74
	if (err) {
75
		pr_err("clock failed to enable: %d\n", err);
76 77 78 79
		clk_put(clk);
		return err;
	}

80
	return clk_get_rate(clk);
81 82
}

83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
static struct sp804_clkevt * __init sp804_clkevt_get(void __iomem *base)
{
	int i;

	for (i = 0; i < NR_TIMERS; i++) {
		if (sp804_clkevt[i].base == base)
			return &sp804_clkevt[i];
	}

	/* It's impossible to reach here */
	WARN_ON(1);

	return NULL;
}

static struct sp804_clkevt *sched_clkevt;
99

100
static u64 notrace sp804_read(void)
101
{
102
	return ~readl_relaxed(sched_clkevt->value);
103 104
}

105 106 107 108
static int __init sp804_clocksource_and_sched_clock_init(void __iomem *base,
							 const char *name,
							 struct clk *clk,
							 int use_sched_clock)
109
{
110
	long rate;
111
	struct sp804_clkevt *clkevt;
112

113
	rate = sp804_get_clock_rate(clk, name);
114
	if (rate < 0)
115
		return -EINVAL;
116

117 118 119 120 121
	clkevt = sp804_clkevt_get(base);

	writel(0, clkevt->ctrl);
	writel(0xffffffff, clkevt->load);
	writel(0xffffffff, clkevt->value);
122 123 124 125
	if (clkevt->width == 64) {
		writel(0xffffffff, clkevt->load_h);
		writel(0xffffffff, clkevt->value_h);
	}
126
	writel(TIMER_CTRL_32BIT | TIMER_CTRL_ENABLE | TIMER_CTRL_PERIODIC,
127
		clkevt->ctrl);
128

129
	clocksource_mmio_init(clkevt->value, name,
130
		rate, 200, 32, clocksource_mmio_readl_down);
131 132

	if (use_sched_clock) {
133
		sched_clkevt = clkevt;
134
		sched_clock_register(sp804_read, 32, rate);
135
	}
136 137

	return 0;
138 139 140
}


141
static struct sp804_clkevt *common_clkevt;
142 143 144 145 146 147 148 149 150

/*
 * 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 */
151
	writel(1, common_clkevt->intclr);
152 153 154 155 156 157

	evt->event_handler(evt);

	return IRQ_HANDLED;
}

158
static inline void evt_timer_shutdown(struct clock_event_device *evt)
159
{
160
	writel(0, common_clkevt->ctrl);
161
}
162

163 164
static int sp804_shutdown(struct clock_event_device *evt)
{
165
	evt_timer_shutdown(evt);
166 167
	return 0;
}
168

169 170 171 172
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;
173

174
	evt_timer_shutdown(evt);
175 176
	writel(common_clkevt->reload, common_clkevt->load);
	writel(ctrl, common_clkevt->ctrl);
177
	return 0;
178 179 180 181 182
}

static int sp804_set_next_event(unsigned long next,
	struct clock_event_device *evt)
{
183 184
	unsigned long ctrl = TIMER_CTRL_32BIT | TIMER_CTRL_IE |
			     TIMER_CTRL_ONESHOT | TIMER_CTRL_ENABLE;
185

186 187
	writel(next, common_clkevt->load);
	writel(ctrl, common_clkevt->ctrl);
188 189 190 191 192

	return 0;
}

static struct clock_event_device sp804_clockevent = {
193 194 195 196 197 198 199 200 201
	.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,
202 203
};

204 205
static int __init sp804_clockevents_init(void __iomem *base, unsigned int irq,
					 struct clk *clk, const char *name)
206 207
{
	struct clock_event_device *evt = &sp804_clockevent;
208 209
	long rate;

210
	rate = sp804_get_clock_rate(clk, name);
211
	if (rate < 0)
212
		return -EINVAL;
213

214 215
	common_clkevt = sp804_clkevt_get(base);
	common_clkevt->reload = DIV_ROUND_CLOSEST(rate, HZ);
216 217
	evt->name = name;
	evt->irq = irq;
218
	evt->cpumask = cpu_possible_mask;
219

220
	writel(0, common_clkevt->ctrl);
221

222 223
	if (request_irq(irq, sp804_timer_interrupt, IRQF_TIMER | IRQF_IRQPOLL,
			"timer", &sp804_clockevent))
224
		pr_err("request_irq() failed\n");
225
	clockevents_config_and_register(evt, rate, 0xf, 0xffffffff);
226 227

	return 0;
228
}
229

230 231 232 233 234 235 236 237 238 239 240 241
static void __init sp804_clkevt_init(struct sp804_timer *timer, void __iomem *base)
{
	int i;

	for (i = 0; i < NR_TIMERS; i++) {
		void __iomem *timer_base;
		struct sp804_clkevt *clkevt;

		timer_base = base + timer->timer_base[i];
		clkevt = &sp804_clkevt[i];
		clkevt->base	= timer_base;
		clkevt->load	= timer_base + timer->load;
242
		clkevt->load_h	= timer_base + timer->load_h;
243
		clkevt->value	= timer_base + timer->value;
244
		clkevt->value_h	= timer_base + timer->value_h;
245 246 247 248 249 250 251
		clkevt->ctrl	= timer_base + timer->ctrl;
		clkevt->intclr	= timer_base + timer->intclr;
		clkevt->width	= timer->width;
	}
}

static int __init sp804_of_init(struct device_node *np, struct sp804_timer *timer)
252 253 254
{
	static bool initialized = false;
	void __iomem *base;
255 256
	void __iomem *timer1_base;
	void __iomem *timer2_base;
257
	int irq, ret = -EINVAL;
258 259 260 261
	u32 irq_num = 0;
	struct clk *clk1, *clk2;
	const char *name = of_get_property(np, "compatible", NULL);

262 263 264 265 266
	if (initialized) {
		pr_debug("%pOF: skipping further SP804 timer device\n", np);
		return 0;
	}

267
	base = of_iomap(np, 0);
268 269
	if (!base)
		return -ENXIO;
270

271 272
	timer1_base = base + timer->timer_base[0];
	timer2_base = base + timer->timer_base[1];
273

274
	/* Ensure timers are disabled */
275 276
	writel(0, timer1_base + timer->ctrl);
	writel(0, timer2_base + timer->ctrl);
277 278 279 280 281

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

282
	/* Get the 2nd clock if the timer has 3 timer clocks */
283
	if (of_clk_get_parent_count(np) == 3) {
284 285
		clk2 = of_clk_get(np, 1);
		if (IS_ERR(clk2)) {
286
			pr_err("%pOFn clock not found: %d\n", np,
287
				(int)PTR_ERR(clk2));
288
			clk2 = NULL;
289 290 291 292 293 294 295 296
		}
	} else
		clk2 = clk1;

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

297 298
	sp804_clkevt_init(timer, base);

299 300
	of_property_read_u32(np, "arm,sp804-has-irq", &irq_num);
	if (irq_num == 2) {
301

302
		ret = sp804_clockevents_init(timer2_base, irq, clk2, name);
303 304 305
		if (ret)
			goto err;

306
		ret = sp804_clocksource_and_sched_clock_init(timer1_base,
307
							     name, clk1, 1);
308 309
		if (ret)
			goto err;
310
	} else {
311

312
		ret = sp804_clockevents_init(timer1_base, irq, clk1, name);
313 314 315
		if (ret)
			goto err;

316
		ret = sp804_clocksource_and_sched_clock_init(timer2_base,
317
							     name, clk2, 1);
318 319
		if (ret)
			goto err;
320 321 322
	}
	initialized = true;

323
	return 0;
324 325
err:
	iounmap(base);
326
	return ret;
327
}
328 329 330 331 332 333

static int __init arm_sp804_of_init(struct device_node *np)
{
	return sp804_of_init(np, &arm_sp804_timer);
}
TIMER_OF_DECLARE(sp804, "arm,sp804", arm_sp804_of_init);
334

335 336 337 338 339 340
static int __init hisi_sp804_of_init(struct device_node *np)
{
	return sp804_of_init(np, &hisi_sp804_timer);
}
TIMER_OF_DECLARE(hisi_sp804, "hisilicon,sp804", hisi_sp804_of_init);

341
static int __init integrator_cp_of_init(struct device_node *np)
342 343 344
{
	static int init_count = 0;
	void __iomem *base;
345
	int irq, ret = -EINVAL;
346
	const char *name = of_get_property(np, "compatible", NULL);
347
	struct clk *clk;
348 349

	base = of_iomap(np, 0);
350
	if (!base) {
351
		pr_err("Failed to iomap\n");
352 353 354
		return -ENXIO;
	}

355
	clk = of_clk_get(np, 0);
356
	if (IS_ERR(clk)) {
357
		pr_err("Failed to get clock\n");
358 359
		return PTR_ERR(clk);
	}
360 361

	/* Ensure timer is disabled */
362
	writel(0, base + arm_sp804_timer.ctrl);
363 364 365 366

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

367 368
	sp804_clkevt_init(&arm_sp804_timer, base);

369
	if (!init_count) {
370 371
		ret = sp804_clocksource_and_sched_clock_init(base,
							     name, clk, 0);
372 373 374
		if (ret)
			goto err;
	} else {
375 376 377 378
		irq = irq_of_parse_and_map(np, 0);
		if (irq <= 0)
			goto err;

379
		ret = sp804_clockevents_init(base, irq, clk, name);
380 381
		if (ret)
			goto err;
382 383 384
	}

	init_count++;
385
	return 0;
386 387
err:
	iounmap(base);
388
	return ret;
389
}
390
TIMER_OF_DECLARE(intcp, "arm,integrator-cp-timer", integrator_cp_of_init);