sh_cmt.c 22.0 KB
Newer Older
M
Magnus Damm 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
/*
 * SuperH Timer Support - CMT
 *
 *  Copyright (C) 2008 Magnus Damm
 *
 * 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
 *
 * 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
 */

#include <linux/init.h>
#include <linux/platform_device.h>
#include <linux/spinlock.h>
#include <linux/interrupt.h>
#include <linux/ioport.h>
#include <linux/io.h>
#include <linux/clk.h>
#include <linux/irq.h>
#include <linux/err.h>
29
#include <linux/delay.h>
M
Magnus Damm 已提交
30 31
#include <linux/clocksource.h>
#include <linux/clockchips.h>
32
#include <linux/sh_timer.h>
33
#include <linux/slab.h>
34
#include <linux/module.h>
35
#include <linux/pm_domain.h>
36
#include <linux/pm_runtime.h>
M
Magnus Damm 已提交
37

38
struct sh_cmt_device;
39 40

struct sh_cmt_channel {
41
	struct sh_cmt_device *cmt;
M
Magnus Damm 已提交
42

43 44
	void __iomem *base;

M
Magnus Damm 已提交
45 46 47 48 49
	unsigned long flags;
	unsigned long match_value;
	unsigned long next_match_value;
	unsigned long max_match_value;
	unsigned long rate;
50
	raw_spinlock_t lock;
M
Magnus Damm 已提交
51
	struct clock_event_device ced;
52
	struct clocksource cs;
M
Magnus Damm 已提交
53
	unsigned long total_cycles;
54
	bool cs_enabled;
55 56
};

57
struct sh_cmt_device {
58 59
	struct platform_device *pdev;

60
	void __iomem *mapbase_ch;
61 62 63 64 65 66 67 68
	void __iomem *mapbase;
	struct clk *clk;

	struct sh_cmt_channel channel;

	unsigned long width; /* 16 or 32 bit version of hardware block */
	unsigned long overflow_bit;
	unsigned long clear_bits;
69

70 71 72 73 74
	/* callbacks for CMSTR and CMCSR access */
	unsigned long (*read_control)(void __iomem *base, unsigned long offs);
	void (*write_control)(void __iomem *base, unsigned long offs,
			      unsigned long value);

75 76 77 78
	/* callbacks for CMCNT and CMCOR access */
	unsigned long (*read_count)(void __iomem *base, unsigned long offs);
	void (*write_count)(void __iomem *base, unsigned long offs,
			    unsigned long value);
M
Magnus Damm 已提交
79 80
};

81 82 83 84 85 86 87 88 89 90 91 92 93
/* Examples of supported CMT timer register layouts and I/O access widths:
 *
 * "16-bit counter and 16-bit control" as found on sh7263:
 * CMSTR 0xfffec000 16-bit
 * CMCSR 0xfffec002 16-bit
 * CMCNT 0xfffec004 16-bit
 * CMCOR 0xfffec006 16-bit
 *
 * "32-bit counter and 16-bit control" as found on sh7372, sh73a0, r8a7740:
 * CMSTR 0xffca0000 16-bit
 * CMCSR 0xffca0060 16-bit
 * CMCNT 0xffca0064 32-bit
 * CMCOR 0xffca0068 32-bit
94 95 96 97 98 99
 *
 * "32-bit counter and 32-bit control" as found on r8a73a4 and r8a7790:
 * CMSTR 0xffca0500 32-bit
 * CMCSR 0xffca0510 32-bit
 * CMCNT 0xffca0514 32-bit
 * CMCOR 0xffca0518 32-bit
100 101
 */

102
static unsigned long sh_cmt_read16(void __iomem *base, unsigned long offs)
103 104 105 106
{
	return ioread16(base + (offs << 1));
}

107 108 109 110 111 112 113
static unsigned long sh_cmt_read32(void __iomem *base, unsigned long offs)
{
	return ioread32(base + (offs << 2));
}

static void sh_cmt_write16(void __iomem *base, unsigned long offs,
			   unsigned long value)
114 115 116
{
	iowrite16(value, base + (offs << 1));
}
M
Magnus Damm 已提交
117

118 119 120 121 122 123
static void sh_cmt_write32(void __iomem *base, unsigned long offs,
			   unsigned long value)
{
	iowrite32(value, base + (offs << 2));
}

M
Magnus Damm 已提交
124 125 126 127
#define CMCSR 0 /* channel register */
#define CMCNT 1 /* channel register */
#define CMCOR 2 /* channel register */

128
static inline unsigned long sh_cmt_read_cmstr(struct sh_cmt_channel *ch)
129
{
130
	return ch->cmt->read_control(ch->cmt->mapbase, 0);
131 132
}

133
static inline unsigned long sh_cmt_read_cmcsr(struct sh_cmt_channel *ch)
134
{
135
	return ch->cmt->read_control(ch->base, CMCSR);
136 137
}

138
static inline unsigned long sh_cmt_read_cmcnt(struct sh_cmt_channel *ch)
139
{
140
	return ch->cmt->read_count(ch->base, CMCNT);
M
Magnus Damm 已提交
141 142
}

143
static inline void sh_cmt_write_cmstr(struct sh_cmt_channel *ch,
144 145
				      unsigned long value)
{
146
	ch->cmt->write_control(ch->cmt->mapbase, 0, value);
147 148
}

149
static inline void sh_cmt_write_cmcsr(struct sh_cmt_channel *ch,
150 151
				      unsigned long value)
{
152
	ch->cmt->write_control(ch->base, CMCSR, value);
153 154
}

155
static inline void sh_cmt_write_cmcnt(struct sh_cmt_channel *ch,
156 157
				      unsigned long value)
{
158
	ch->cmt->write_count(ch->base, CMCNT, value);
159 160
}

161
static inline void sh_cmt_write_cmcor(struct sh_cmt_channel *ch,
162 163
				      unsigned long value)
{
164
	ch->cmt->write_count(ch->base, CMCOR, value);
165 166
}

167
static unsigned long sh_cmt_get_counter(struct sh_cmt_channel *ch,
M
Magnus Damm 已提交
168 169 170
					int *has_wrapped)
{
	unsigned long v1, v2, v3;
171 172
	int o1, o2;

173
	o1 = sh_cmt_read_cmcsr(ch) & ch->cmt->overflow_bit;
M
Magnus Damm 已提交
174 175 176

	/* Make sure the timer value is stable. Stolen from acpi_pm.c */
	do {
177
		o2 = o1;
178 179 180 181
		v1 = sh_cmt_read_cmcnt(ch);
		v2 = sh_cmt_read_cmcnt(ch);
		v3 = sh_cmt_read_cmcnt(ch);
		o1 = sh_cmt_read_cmcsr(ch) & ch->cmt->overflow_bit;
182 183
	} while (unlikely((o1 != o2) || (v1 > v2 && v1 < v3)
			  || (v2 > v3 && v2 < v1) || (v3 > v1 && v3 < v2)));
M
Magnus Damm 已提交
184

185
	*has_wrapped = o1;
M
Magnus Damm 已提交
186 187 188
	return v2;
}

189
static DEFINE_RAW_SPINLOCK(sh_cmt_lock);
M
Magnus Damm 已提交
190

191
static void sh_cmt_start_stop_ch(struct sh_cmt_channel *ch, int start)
M
Magnus Damm 已提交
192
{
193
	struct sh_timer_config *cfg = ch->cmt->pdev->dev.platform_data;
M
Magnus Damm 已提交
194 195 196
	unsigned long flags, value;

	/* start stop register shared by multiple timer channels */
197
	raw_spin_lock_irqsave(&sh_cmt_lock, flags);
198
	value = sh_cmt_read_cmstr(ch);
M
Magnus Damm 已提交
199 200 201 202 203 204

	if (start)
		value |= 1 << cfg->timer_bit;
	else
		value &= ~(1 << cfg->timer_bit);

205
	sh_cmt_write_cmstr(ch, value);
206
	raw_spin_unlock_irqrestore(&sh_cmt_lock, flags);
M
Magnus Damm 已提交
207 208
}

209
static int sh_cmt_enable(struct sh_cmt_channel *ch, unsigned long *rate)
M
Magnus Damm 已提交
210
{
211
	int k, ret;
M
Magnus Damm 已提交
212

213 214
	pm_runtime_get_sync(&ch->cmt->pdev->dev);
	dev_pm_syscore_device(&ch->cmt->pdev->dev, true);
215

216
	/* enable clock */
217
	ret = clk_enable(ch->cmt->clk);
M
Magnus Damm 已提交
218
	if (ret) {
219
		dev_err(&ch->cmt->pdev->dev, "cannot enable clock\n");
220
		goto err0;
M
Magnus Damm 已提交
221 222 223
	}

	/* make sure channel is disabled */
224
	sh_cmt_start_stop_ch(ch, 0);
M
Magnus Damm 已提交
225 226

	/* configure channel, periodic mode and maximum timeout */
227 228 229
	if (ch->cmt->width == 16) {
		*rate = clk_get_rate(ch->cmt->clk) / 512;
		sh_cmt_write_cmcsr(ch, 0x43);
M
Magnus Damm 已提交
230
	} else {
231 232
		*rate = clk_get_rate(ch->cmt->clk) / 8;
		sh_cmt_write_cmcsr(ch, 0x01a4);
M
Magnus Damm 已提交
233
	}
M
Magnus Damm 已提交
234

235 236
	sh_cmt_write_cmcor(ch, 0xffffffff);
	sh_cmt_write_cmcnt(ch, 0);
M
Magnus Damm 已提交
237

238 239 240 241 242 243 244 245 246 247 248 249
	/*
	 * According to the sh73a0 user's manual, as CMCNT can be operated
	 * only by the RCLK (Pseudo 32 KHz), there's one restriction on
	 * modifying CMCNT register; two RCLK cycles are necessary before
	 * this register is either read or any modification of the value
	 * it holds is reflected in the LSI's actual operation.
	 *
	 * While at it, we're supposed to clear out the CMCNT as of this
	 * moment, so make sure it's processed properly here.  This will
	 * take RCLKx2 at maximum.
	 */
	for (k = 0; k < 100; k++) {
250
		if (!sh_cmt_read_cmcnt(ch))
251 252 253 254
			break;
		udelay(1);
	}

255 256
	if (sh_cmt_read_cmcnt(ch)) {
		dev_err(&ch->cmt->pdev->dev, "cannot clear CMCNT\n");
257 258 259 260
		ret = -ETIMEDOUT;
		goto err1;
	}

M
Magnus Damm 已提交
261
	/* enable channel */
262
	sh_cmt_start_stop_ch(ch, 1);
M
Magnus Damm 已提交
263
	return 0;
264 265
 err1:
	/* stop clock */
266
	clk_disable(ch->cmt->clk);
267 268 269

 err0:
	return ret;
M
Magnus Damm 已提交
270 271
}

272
static void sh_cmt_disable(struct sh_cmt_channel *ch)
M
Magnus Damm 已提交
273 274
{
	/* disable channel */
275
	sh_cmt_start_stop_ch(ch, 0);
M
Magnus Damm 已提交
276

277
	/* disable interrupts in CMT block */
278
	sh_cmt_write_cmcsr(ch, 0);
279

280
	/* stop clock */
281
	clk_disable(ch->cmt->clk);
282

283 284
	dev_pm_syscore_device(&ch->cmt->pdev->dev, false);
	pm_runtime_put(&ch->cmt->pdev->dev);
M
Magnus Damm 已提交
285 286 287 288 289 290 291 292 293
}

/* private flags */
#define FLAG_CLOCKEVENT (1 << 0)
#define FLAG_CLOCKSOURCE (1 << 1)
#define FLAG_REPROGRAM (1 << 2)
#define FLAG_SKIPEVENT (1 << 3)
#define FLAG_IRQCONTEXT (1 << 4)

294
static void sh_cmt_clock_event_program_verify(struct sh_cmt_channel *ch,
M
Magnus Damm 已提交
295 296 297
					      int absolute)
{
	unsigned long new_match;
298
	unsigned long value = ch->next_match_value;
M
Magnus Damm 已提交
299 300 301 302
	unsigned long delay = 0;
	unsigned long now = 0;
	int has_wrapped;

303 304
	now = sh_cmt_get_counter(ch, &has_wrapped);
	ch->flags |= FLAG_REPROGRAM; /* force reprogram */
M
Magnus Damm 已提交
305 306 307 308 309 310

	if (has_wrapped) {
		/* we're competing with the interrupt handler.
		 *  -> let the interrupt handler reprogram the timer.
		 *  -> interrupt number two handles the event.
		 */
311
		ch->flags |= FLAG_SKIPEVENT;
M
Magnus Damm 已提交
312 313 314 315 316 317 318 319 320 321 322
		return;
	}

	if (absolute)
		now = 0;

	do {
		/* reprogram the timer hardware,
		 * but don't save the new match value yet.
		 */
		new_match = now + value + delay;
323 324
		if (new_match > ch->max_match_value)
			new_match = ch->max_match_value;
M
Magnus Damm 已提交
325

326
		sh_cmt_write_cmcor(ch, new_match);
M
Magnus Damm 已提交
327

328 329
		now = sh_cmt_get_counter(ch, &has_wrapped);
		if (has_wrapped && (new_match > ch->match_value)) {
M
Magnus Damm 已提交
330 331 332 333 334 335
			/* we are changing to a greater match value,
			 * so this wrap must be caused by the counter
			 * matching the old value.
			 * -> first interrupt reprograms the timer.
			 * -> interrupt number two handles the event.
			 */
336
			ch->flags |= FLAG_SKIPEVENT;
M
Magnus Damm 已提交
337 338 339 340 341 342 343 344 345 346
			break;
		}

		if (has_wrapped) {
			/* we are changing to a smaller match value,
			 * so the wrap must be caused by the counter
			 * matching the new value.
			 * -> save programmed match value.
			 * -> let isr handle the event.
			 */
347
			ch->match_value = new_match;
M
Magnus Damm 已提交
348 349 350 351 352 353 354 355 356 357
			break;
		}

		/* be safe: verify hardware settings */
		if (now < new_match) {
			/* timer value is below match value, all good.
			 * this makes sure we won't miss any match events.
			 * -> save programmed match value.
			 * -> let isr handle the event.
			 */
358
			ch->match_value = new_match;
M
Magnus Damm 已提交
359 360 361 362 363 364 365 366 367 368 369 370 371 372 373
			break;
		}

		/* the counter has reached a value greater
		 * than our new match value. and since the
		 * has_wrapped flag isn't set we must have
		 * programmed a too close event.
		 * -> increase delay and retry.
		 */
		if (delay)
			delay <<= 1;
		else
			delay = 1;

		if (!delay)
374
			dev_warn(&ch->cmt->pdev->dev, "too long delay\n");
M
Magnus Damm 已提交
375 376 377 378

	} while (delay);
}

379
static void __sh_cmt_set_next(struct sh_cmt_channel *ch, unsigned long delta)
M
Magnus Damm 已提交
380
{
381 382
	if (delta > ch->max_match_value)
		dev_warn(&ch->cmt->pdev->dev, "delta out of range\n");
M
Magnus Damm 已提交
383

384 385
	ch->next_match_value = delta;
	sh_cmt_clock_event_program_verify(ch, 0);
386 387
}

388
static void sh_cmt_set_next(struct sh_cmt_channel *ch, unsigned long delta)
389 390 391
{
	unsigned long flags;

392 393 394
	raw_spin_lock_irqsave(&ch->lock, flags);
	__sh_cmt_set_next(ch, delta);
	raw_spin_unlock_irqrestore(&ch->lock, flags);
M
Magnus Damm 已提交
395 396 397 398
}

static irqreturn_t sh_cmt_interrupt(int irq, void *dev_id)
{
399
	struct sh_cmt_channel *ch = dev_id;
M
Magnus Damm 已提交
400 401

	/* clear flags */
402
	sh_cmt_write_cmcsr(ch, sh_cmt_read_cmcsr(ch) & ch->cmt->clear_bits);
M
Magnus Damm 已提交
403 404 405 406 407

	/* update clock source counter to begin with if enabled
	 * the wrap flag should be cleared by the timer specific
	 * isr before we end up here.
	 */
408 409
	if (ch->flags & FLAG_CLOCKSOURCE)
		ch->total_cycles += ch->match_value + 1;
M
Magnus Damm 已提交
410

411 412
	if (!(ch->flags & FLAG_REPROGRAM))
		ch->next_match_value = ch->max_match_value;
M
Magnus Damm 已提交
413

414
	ch->flags |= FLAG_IRQCONTEXT;
M
Magnus Damm 已提交
415

416 417 418 419 420
	if (ch->flags & FLAG_CLOCKEVENT) {
		if (!(ch->flags & FLAG_SKIPEVENT)) {
			if (ch->ced.mode == CLOCK_EVT_MODE_ONESHOT) {
				ch->next_match_value = ch->max_match_value;
				ch->flags |= FLAG_REPROGRAM;
M
Magnus Damm 已提交
421 422
			}

423
			ch->ced.event_handler(&ch->ced);
M
Magnus Damm 已提交
424 425 426
		}
	}

427
	ch->flags &= ~FLAG_SKIPEVENT;
M
Magnus Damm 已提交
428

429 430 431
	if (ch->flags & FLAG_REPROGRAM) {
		ch->flags &= ~FLAG_REPROGRAM;
		sh_cmt_clock_event_program_verify(ch, 1);
M
Magnus Damm 已提交
432

433 434 435 436
		if (ch->flags & FLAG_CLOCKEVENT)
			if ((ch->ced.mode == CLOCK_EVT_MODE_SHUTDOWN)
			    || (ch->match_value == ch->next_match_value))
				ch->flags &= ~FLAG_REPROGRAM;
M
Magnus Damm 已提交
437 438
	}

439
	ch->flags &= ~FLAG_IRQCONTEXT;
M
Magnus Damm 已提交
440 441 442 443

	return IRQ_HANDLED;
}

444
static int sh_cmt_start(struct sh_cmt_channel *ch, unsigned long flag)
M
Magnus Damm 已提交
445 446 447 448
{
	int ret = 0;
	unsigned long flags;

449
	raw_spin_lock_irqsave(&ch->lock, flags);
M
Magnus Damm 已提交
450

451 452
	if (!(ch->flags & (FLAG_CLOCKEVENT | FLAG_CLOCKSOURCE)))
		ret = sh_cmt_enable(ch, &ch->rate);
M
Magnus Damm 已提交
453 454 455

	if (ret)
		goto out;
456
	ch->flags |= flag;
M
Magnus Damm 已提交
457 458

	/* setup timeout if no clockevent */
459 460
	if ((flag == FLAG_CLOCKSOURCE) && (!(ch->flags & FLAG_CLOCKEVENT)))
		__sh_cmt_set_next(ch, ch->max_match_value);
M
Magnus Damm 已提交
461
 out:
462
	raw_spin_unlock_irqrestore(&ch->lock, flags);
M
Magnus Damm 已提交
463 464 465 466

	return ret;
}

467
static void sh_cmt_stop(struct sh_cmt_channel *ch, unsigned long flag)
M
Magnus Damm 已提交
468 469 470 471
{
	unsigned long flags;
	unsigned long f;

472
	raw_spin_lock_irqsave(&ch->lock, flags);
M
Magnus Damm 已提交
473

474 475
	f = ch->flags & (FLAG_CLOCKEVENT | FLAG_CLOCKSOURCE);
	ch->flags &= ~flag;
M
Magnus Damm 已提交
476

477 478
	if (f && !(ch->flags & (FLAG_CLOCKEVENT | FLAG_CLOCKSOURCE)))
		sh_cmt_disable(ch);
M
Magnus Damm 已提交
479 480

	/* adjust the timeout to maximum if only clocksource left */
481 482
	if ((flag == FLAG_CLOCKEVENT) && (ch->flags & FLAG_CLOCKSOURCE))
		__sh_cmt_set_next(ch, ch->max_match_value);
M
Magnus Damm 已提交
483

484
	raw_spin_unlock_irqrestore(&ch->lock, flags);
M
Magnus Damm 已提交
485 486
}

487
static struct sh_cmt_channel *cs_to_sh_cmt(struct clocksource *cs)
488
{
489
	return container_of(cs, struct sh_cmt_channel, cs);
490 491 492 493
}

static cycle_t sh_cmt_clocksource_read(struct clocksource *cs)
{
494
	struct sh_cmt_channel *ch = cs_to_sh_cmt(cs);
495 496 497 498
	unsigned long flags, raw;
	unsigned long value;
	int has_wrapped;

499 500 501
	raw_spin_lock_irqsave(&ch->lock, flags);
	value = ch->total_cycles;
	raw = sh_cmt_get_counter(ch, &has_wrapped);
502 503

	if (unlikely(has_wrapped))
504 505
		raw += ch->match_value + 1;
	raw_spin_unlock_irqrestore(&ch->lock, flags);
506 507 508 509 510 511

	return value + raw;
}

static int sh_cmt_clocksource_enable(struct clocksource *cs)
{
512
	int ret;
513
	struct sh_cmt_channel *ch = cs_to_sh_cmt(cs);
514

515
	WARN_ON(ch->cs_enabled);
516

517
	ch->total_cycles = 0;
518

519
	ret = sh_cmt_start(ch, FLAG_CLOCKSOURCE);
520
	if (!ret) {
521 522
		__clocksource_updatefreq_hz(cs, ch->rate);
		ch->cs_enabled = true;
523
	}
524
	return ret;
525 526 527 528
}

static void sh_cmt_clocksource_disable(struct clocksource *cs)
{
529
	struct sh_cmt_channel *ch = cs_to_sh_cmt(cs);
530

531
	WARN_ON(!ch->cs_enabled);
532

533 534
	sh_cmt_stop(ch, FLAG_CLOCKSOURCE);
	ch->cs_enabled = false;
535 536
}

537 538
static void sh_cmt_clocksource_suspend(struct clocksource *cs)
{
539
	struct sh_cmt_channel *ch = cs_to_sh_cmt(cs);
540

541 542
	sh_cmt_stop(ch, FLAG_CLOCKSOURCE);
	pm_genpd_syscore_poweroff(&ch->cmt->pdev->dev);
543 544
}

545 546
static void sh_cmt_clocksource_resume(struct clocksource *cs)
{
547
	struct sh_cmt_channel *ch = cs_to_sh_cmt(cs);
548

549 550
	pm_genpd_syscore_poweron(&ch->cmt->pdev->dev);
	sh_cmt_start(ch, FLAG_CLOCKSOURCE);
551 552
}

553
static int sh_cmt_register_clocksource(struct sh_cmt_channel *ch,
554
				       const char *name, unsigned long rating)
555
{
556
	struct clocksource *cs = &ch->cs;
557 558 559 560 561 562

	cs->name = name;
	cs->rating = rating;
	cs->read = sh_cmt_clocksource_read;
	cs->enable = sh_cmt_clocksource_enable;
	cs->disable = sh_cmt_clocksource_disable;
563
	cs->suspend = sh_cmt_clocksource_suspend;
564
	cs->resume = sh_cmt_clocksource_resume;
565 566
	cs->mask = CLOCKSOURCE_MASK(sizeof(unsigned long) * 8);
	cs->flags = CLOCK_SOURCE_IS_CONTINUOUS;
567

568
	dev_info(&ch->cmt->pdev->dev, "used as clock source\n");
569

570 571
	/* Register with dummy 1 Hz value, gets updated in ->enable() */
	clocksource_register_hz(cs, 1);
572 573 574
	return 0;
}

575
static struct sh_cmt_channel *ced_to_sh_cmt(struct clock_event_device *ced)
M
Magnus Damm 已提交
576
{
577
	return container_of(ced, struct sh_cmt_channel, ced);
M
Magnus Damm 已提交
578 579
}

580
static void sh_cmt_clock_event_start(struct sh_cmt_channel *ch, int periodic)
M
Magnus Damm 已提交
581
{
582
	struct clock_event_device *ced = &ch->ced;
M
Magnus Damm 已提交
583

584
	sh_cmt_start(ch, FLAG_CLOCKEVENT);
M
Magnus Damm 已提交
585 586 587 588

	/* TODO: calculate good shift from rate and counter bit width */

	ced->shift = 32;
589 590
	ced->mult = div_sc(ch->rate, NSEC_PER_SEC, ced->shift);
	ced->max_delta_ns = clockevent_delta2ns(ch->max_match_value, ced);
M
Magnus Damm 已提交
591 592 593
	ced->min_delta_ns = clockevent_delta2ns(0x1f, ced);

	if (periodic)
594
		sh_cmt_set_next(ch, ((ch->rate + HZ/2) / HZ) - 1);
M
Magnus Damm 已提交
595
	else
596
		sh_cmt_set_next(ch, ch->max_match_value);
M
Magnus Damm 已提交
597 598 599 600 601
}

static void sh_cmt_clock_event_mode(enum clock_event_mode mode,
				    struct clock_event_device *ced)
{
602
	struct sh_cmt_channel *ch = ced_to_sh_cmt(ced);
M
Magnus Damm 已提交
603 604 605 606 607

	/* deal with old setting first */
	switch (ced->mode) {
	case CLOCK_EVT_MODE_PERIODIC:
	case CLOCK_EVT_MODE_ONESHOT:
608
		sh_cmt_stop(ch, FLAG_CLOCKEVENT);
M
Magnus Damm 已提交
609 610 611 612 613 614 615
		break;
	default:
		break;
	}

	switch (mode) {
	case CLOCK_EVT_MODE_PERIODIC:
616 617 618
		dev_info(&ch->cmt->pdev->dev,
			 "used for periodic clock events\n");
		sh_cmt_clock_event_start(ch, 1);
M
Magnus Damm 已提交
619 620
		break;
	case CLOCK_EVT_MODE_ONESHOT:
621 622 623
		dev_info(&ch->cmt->pdev->dev,
			 "used for oneshot clock events\n");
		sh_cmt_clock_event_start(ch, 0);
M
Magnus Damm 已提交
624 625 626
		break;
	case CLOCK_EVT_MODE_SHUTDOWN:
	case CLOCK_EVT_MODE_UNUSED:
627
		sh_cmt_stop(ch, FLAG_CLOCKEVENT);
M
Magnus Damm 已提交
628 629 630 631 632 633 634 635 636
		break;
	default:
		break;
	}
}

static int sh_cmt_clock_event_next(unsigned long delta,
				   struct clock_event_device *ced)
{
637
	struct sh_cmt_channel *ch = ced_to_sh_cmt(ced);
M
Magnus Damm 已提交
638 639

	BUG_ON(ced->mode != CLOCK_EVT_MODE_ONESHOT);
640 641
	if (likely(ch->flags & FLAG_IRQCONTEXT))
		ch->next_match_value = delta - 1;
M
Magnus Damm 已提交
642
	else
643
		sh_cmt_set_next(ch, delta - 1);
M
Magnus Damm 已提交
644 645 646 647

	return 0;
}

648 649
static void sh_cmt_clock_event_suspend(struct clock_event_device *ced)
{
650
	struct sh_cmt_channel *ch = ced_to_sh_cmt(ced);
651

652 653
	pm_genpd_syscore_poweroff(&ch->cmt->pdev->dev);
	clk_unprepare(ch->cmt->clk);
654 655 656 657
}

static void sh_cmt_clock_event_resume(struct clock_event_device *ced)
{
658
	struct sh_cmt_channel *ch = ced_to_sh_cmt(ced);
659

660 661
	clk_prepare(ch->cmt->clk);
	pm_genpd_syscore_poweron(&ch->cmt->pdev->dev);
662 663
}

664
static void sh_cmt_register_clockevent(struct sh_cmt_channel *ch,
665
				       const char *name, unsigned long rating)
M
Magnus Damm 已提交
666
{
667
	struct clock_event_device *ced = &ch->ced;
M
Magnus Damm 已提交
668 669 670 671 672 673 674 675 676 677

	memset(ced, 0, sizeof(*ced));

	ced->name = name;
	ced->features = CLOCK_EVT_FEAT_PERIODIC;
	ced->features |= CLOCK_EVT_FEAT_ONESHOT;
	ced->rating = rating;
	ced->cpumask = cpumask_of(0);
	ced->set_next_event = sh_cmt_clock_event_next;
	ced->set_mode = sh_cmt_clock_event_mode;
678 679
	ced->suspend = sh_cmt_clock_event_suspend;
	ced->resume = sh_cmt_clock_event_resume;
M
Magnus Damm 已提交
680

681
	dev_info(&ch->cmt->pdev->dev, "used for clock events\n");
M
Magnus Damm 已提交
682 683 684
	clockevents_register_device(ced);
}

685
static int sh_cmt_register(struct sh_cmt_channel *ch, const char *name,
686 687
			   unsigned long clockevent_rating,
			   unsigned long clocksource_rating)
M
Magnus Damm 已提交
688 689
{
	if (clockevent_rating)
690
		sh_cmt_register_clockevent(ch, name, clockevent_rating);
M
Magnus Damm 已提交
691

692
	if (clocksource_rating)
693
		sh_cmt_register_clocksource(ch, name, clocksource_rating);
694

M
Magnus Damm 已提交
695 696 697
	return 0;
}

698 699 700 701 702 703 704 705 706
static int sh_cmt_setup_channel(struct sh_cmt_channel *ch,
				struct sh_cmt_device *cmt)
{
	struct sh_timer_config *cfg = cmt->pdev->dev.platform_data;
	int irq;
	int ret;

	memset(ch, 0, sizeof(*ch));
	ch->cmt = cmt;
707
	ch->base = cmt->mapbase_ch;
708 709 710 711 712 713 714 715 716 717 718 719 720 721 722

	irq = platform_get_irq(cmt->pdev, 0);
	if (irq < 0) {
		dev_err(&cmt->pdev->dev, "failed to get irq\n");
		return irq;
	}

	if (cmt->width == (sizeof(ch->max_match_value) * 8))
		ch->max_match_value = ~0;
	else
		ch->max_match_value = (1 << cmt->width) - 1;

	ch->match_value = ch->max_match_value;
	raw_spin_lock_init(&ch->lock);

723
	ret = sh_cmt_register(ch, dev_name(&cmt->pdev->dev),
724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742
			      cfg->clockevent_rating,
			      cfg->clocksource_rating);
	if (ret) {
		dev_err(&cmt->pdev->dev, "registration failed\n");
		return ret;
	}
	ch->cs_enabled = false;

	ret = request_irq(irq, sh_cmt_interrupt,
			  IRQF_TIMER | IRQF_IRQPOLL | IRQF_NOBALANCING,
			  dev_name(&cmt->pdev->dev), ch);
	if (ret) {
		dev_err(&cmt->pdev->dev, "failed to request irq %d\n", irq);
		return ret;
	}

	return 0;
}

743
static int sh_cmt_setup(struct sh_cmt_device *cmt, struct platform_device *pdev)
M
Magnus Damm 已提交
744
{
745
	struct sh_timer_config *cfg = pdev->dev.platform_data;
746
	struct resource *res, *res2;
747
	int ret;
M
Magnus Damm 已提交
748 749
	ret = -ENXIO;

750 751
	memset(cmt, 0, sizeof(*cmt));
	cmt->pdev = pdev;
M
Magnus Damm 已提交
752 753

	if (!cfg) {
754
		dev_err(&cmt->pdev->dev, "missing platform data\n");
M
Magnus Damm 已提交
755 756 757
		goto err0;
	}

758
	res = platform_get_resource(cmt->pdev, IORESOURCE_MEM, 0);
M
Magnus Damm 已提交
759
	if (!res) {
760
		dev_err(&cmt->pdev->dev, "failed to get I/O memory\n");
M
Magnus Damm 已提交
761 762 763
		goto err0;
	}

764
	/* optional resource for the shared timer start/stop register */
765
	res2 = platform_get_resource(cmt->pdev, IORESOURCE_MEM, 1);
766

767 768 769
	/* map memory, let mapbase_ch point to our channel */
	cmt->mapbase_ch = ioremap_nocache(res->start, resource_size(res));
	if (cmt->mapbase_ch == NULL) {
770
		dev_err(&cmt->pdev->dev, "failed to remap I/O memory\n");
M
Magnus Damm 已提交
771 772 773
		goto err0;
	}

774
	/* map second resource for CMSTR */
775 776 777 778
	cmt->mapbase = ioremap_nocache(res2 ? res2->start :
				       res->start - cfg->channel_offset,
				       res2 ? resource_size(res2) : 2);
	if (cmt->mapbase == NULL) {
779
		dev_err(&cmt->pdev->dev, "failed to remap I/O second memory\n");
780 781 782
		goto err1;
	}

M
Magnus Damm 已提交
783
	/* get hold of clock */
784 785 786 787
	cmt->clk = clk_get(&cmt->pdev->dev, "cmt_fck");
	if (IS_ERR(cmt->clk)) {
		dev_err(&cmt->pdev->dev, "cannot get clock\n");
		ret = PTR_ERR(cmt->clk);
788
		goto err2;
M
Magnus Damm 已提交
789 790
	}

791
	ret = clk_prepare(cmt->clk);
792 793 794
	if (ret < 0)
		goto err3;

795 796
	if (res2 && (resource_size(res2) == 4)) {
		/* assume both CMSTR and CMCSR to be 32-bit */
797 798
		cmt->read_control = sh_cmt_read32;
		cmt->write_control = sh_cmt_write32;
799
	} else {
800 801
		cmt->read_control = sh_cmt_read16;
		cmt->write_control = sh_cmt_write16;
802
	}
803

M
Magnus Damm 已提交
804
	if (resource_size(res) == 6) {
805 806 807 808 809
		cmt->width = 16;
		cmt->read_count = sh_cmt_read16;
		cmt->write_count = sh_cmt_write16;
		cmt->overflow_bit = 0x80;
		cmt->clear_bits = ~0x80;
M
Magnus Damm 已提交
810
	} else {
811 812 813 814 815
		cmt->width = 32;
		cmt->read_count = sh_cmt_read32;
		cmt->write_count = sh_cmt_write32;
		cmt->overflow_bit = 0x8000;
		cmt->clear_bits = ~0xc000;
M
Magnus Damm 已提交
816 817
	}

818 819
	ret = sh_cmt_setup_channel(&cmt->channel, cmt);
	if (ret < 0)
820
		goto err4;
821

822
	platform_set_drvdata(pdev, cmt);
823

824
	return 0;
825
err4:
826
	clk_unprepare(cmt->clk);
827
err3:
828
	clk_put(cmt->clk);
829
err2:
830
	iounmap(cmt->mapbase);
831 832
err1:
	iounmap(cmt->mapbase_ch);
833
err0:
M
Magnus Damm 已提交
834 835 836
	return ret;
}

837
static int sh_cmt_probe(struct platform_device *pdev)
M
Magnus Damm 已提交
838
{
839
	struct sh_cmt_device *cmt = platform_get_drvdata(pdev);
840
	struct sh_timer_config *cfg = pdev->dev.platform_data;
M
Magnus Damm 已提交
841 842
	int ret;

843
	if (!is_early_platform_device(pdev)) {
844 845
		pm_runtime_set_active(&pdev->dev);
		pm_runtime_enable(&pdev->dev);
846
	}
847

848
	if (cmt) {
849
		dev_info(&pdev->dev, "kept as earlytimer\n");
850
		goto out;
851 852
	}

853 854
	cmt = kmalloc(sizeof(*cmt), GFP_KERNEL);
	if (cmt == NULL) {
M
Magnus Damm 已提交
855 856 857 858
		dev_err(&pdev->dev, "failed to allocate driver data\n");
		return -ENOMEM;
	}

859
	ret = sh_cmt_setup(cmt, pdev);
M
Magnus Damm 已提交
860
	if (ret) {
861
		kfree(cmt);
862 863
		pm_runtime_idle(&pdev->dev);
		return ret;
M
Magnus Damm 已提交
864
	}
865 866 867 868 869 870 871 872 873 874
	if (is_early_platform_device(pdev))
		return 0;

 out:
	if (cfg->clockevent_rating || cfg->clocksource_rating)
		pm_runtime_irq_safe(&pdev->dev);
	else
		pm_runtime_idle(&pdev->dev);

	return 0;
M
Magnus Damm 已提交
875 876
}

877
static int sh_cmt_remove(struct platform_device *pdev)
M
Magnus Damm 已提交
878 879 880 881 882 883
{
	return -EBUSY; /* cannot unregister clockevent and clocksource */
}

static struct platform_driver sh_cmt_device_driver = {
	.probe		= sh_cmt_probe,
884
	.remove		= sh_cmt_remove,
M
Magnus Damm 已提交
885 886 887 888 889 890 891 892 893 894 895 896 897 898 899
	.driver		= {
		.name	= "sh_cmt",
	}
};

static int __init sh_cmt_init(void)
{
	return platform_driver_register(&sh_cmt_device_driver);
}

static void __exit sh_cmt_exit(void)
{
	platform_driver_unregister(&sh_cmt_device_driver);
}

900
early_platform_init("earlytimer", &sh_cmt_device_driver);
901
subsys_initcall(sh_cmt_init);
M
Magnus Damm 已提交
902 903 904 905 906
module_exit(sh_cmt_exit);

MODULE_AUTHOR("Magnus Damm");
MODULE_DESCRIPTION("SuperH CMT Timer Driver");
MODULE_LICENSE("GPL v2");