sh_cmt.c 22.4 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;
42
	unsigned int index;
M
Magnus Damm 已提交
43

44 45
	void __iomem *base;

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

58
struct sh_cmt_device {
59 60
	struct platform_device *pdev;

61
	void __iomem *mapbase_ch;
62 63 64
	void __iomem *mapbase;
	struct clk *clk;

65 66
	struct sh_cmt_channel *channels;
	unsigned int num_channels;
67 68 69 70

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

72 73 74 75 76
	/* 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);

77 78 79 80
	/* 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 已提交
81 82
};

83 84 85 86 87 88 89 90 91 92 93 94 95
/* 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
96 97 98 99 100 101
 *
 * "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
102 103
 */

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

109 110 111 112 113 114 115
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)
116 117 118
{
	iowrite16(value, base + (offs << 1));
}
M
Magnus Damm 已提交
119

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

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

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

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

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

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

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

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

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

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

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

	/* Make sure the timer value is stable. Stolen from acpi_pm.c */
	do {
179
		o2 = o1;
180 181 182 183
		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;
184 185
	} while (unlikely((o1 != o2) || (v1 > v2 && v1 < v3)
			  || (v2 > v3 && v2 < v1) || (v3 > v1 && v3 < v2)));
M
Magnus Damm 已提交
186

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

191
static DEFINE_RAW_SPINLOCK(sh_cmt_lock);
M
Magnus Damm 已提交
192

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

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

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

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

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

215 216
	pm_runtime_get_sync(&ch->cmt->pdev->dev);
	dev_pm_syscore_device(&ch->cmt->pdev->dev, true);
217

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

	/* make sure channel is disabled */
227
	sh_cmt_start_stop_ch(ch, 0);
M
Magnus Damm 已提交
228 229

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

238 239
	sh_cmt_write_cmcor(ch, 0xffffffff);
	sh_cmt_write_cmcnt(ch, 0);
M
Magnus Damm 已提交
240

241 242 243 244 245 246 247 248 249 250 251 252
	/*
	 * 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++) {
253
		if (!sh_cmt_read_cmcnt(ch))
254 255 256 257
			break;
		udelay(1);
	}

258
	if (sh_cmt_read_cmcnt(ch)) {
259 260
		dev_err(&ch->cmt->pdev->dev, "ch%u: cannot clear CMCNT\n",
			ch->index);
261 262 263 264
		ret = -ETIMEDOUT;
		goto err1;
	}

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

 err0:
	return ret;
M
Magnus Damm 已提交
274 275
}

276
static void sh_cmt_disable(struct sh_cmt_channel *ch)
M
Magnus Damm 已提交
277 278
{
	/* disable channel */
279
	sh_cmt_start_stop_ch(ch, 0);
M
Magnus Damm 已提交
280

281
	/* disable interrupts in CMT block */
282
	sh_cmt_write_cmcsr(ch, 0);
283

284
	/* stop clock */
285
	clk_disable(ch->cmt->clk);
286

287 288
	dev_pm_syscore_device(&ch->cmt->pdev->dev, false);
	pm_runtime_put(&ch->cmt->pdev->dev);
M
Magnus Damm 已提交
289 290 291 292 293 294 295 296 297
}

/* 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)

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

307 308
	now = sh_cmt_get_counter(ch, &has_wrapped);
	ch->flags |= FLAG_REPROGRAM; /* force reprogram */
M
Magnus Damm 已提交
309 310 311 312 313 314

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

	if (absolute)
		now = 0;

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

330
		sh_cmt_write_cmcor(ch, new_match);
M
Magnus Damm 已提交
331

332 333
		now = sh_cmt_get_counter(ch, &has_wrapped);
		if (has_wrapped && (new_match > ch->match_value)) {
M
Magnus Damm 已提交
334 335 336 337 338 339
			/* 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.
			 */
340
			ch->flags |= FLAG_SKIPEVENT;
M
Magnus Damm 已提交
341 342 343 344 345 346 347 348 349 350
			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.
			 */
351
			ch->match_value = new_match;
M
Magnus Damm 已提交
352 353 354 355 356 357 358 359 360 361
			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.
			 */
362
			ch->match_value = new_match;
M
Magnus Damm 已提交
363 364 365 366 367 368 369 370 371 372 373 374 375 376 377
			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)
378 379
			dev_warn(&ch->cmt->pdev->dev, "ch%u: too long delay\n",
				 ch->index);
M
Magnus Damm 已提交
380 381 382 383

	} while (delay);
}

384
static void __sh_cmt_set_next(struct sh_cmt_channel *ch, unsigned long delta)
M
Magnus Damm 已提交
385
{
386
	if (delta > ch->max_match_value)
387 388
		dev_warn(&ch->cmt->pdev->dev, "ch%u: delta out of range\n",
			 ch->index);
M
Magnus Damm 已提交
389

390 391
	ch->next_match_value = delta;
	sh_cmt_clock_event_program_verify(ch, 0);
392 393
}

394
static void sh_cmt_set_next(struct sh_cmt_channel *ch, unsigned long delta)
395 396 397
{
	unsigned long flags;

398 399 400
	raw_spin_lock_irqsave(&ch->lock, flags);
	__sh_cmt_set_next(ch, delta);
	raw_spin_unlock_irqrestore(&ch->lock, flags);
M
Magnus Damm 已提交
401 402 403 404
}

static irqreturn_t sh_cmt_interrupt(int irq, void *dev_id)
{
405
	struct sh_cmt_channel *ch = dev_id;
M
Magnus Damm 已提交
406 407

	/* clear flags */
408
	sh_cmt_write_cmcsr(ch, sh_cmt_read_cmcsr(ch) & ch->cmt->clear_bits);
M
Magnus Damm 已提交
409 410 411 412 413

	/* 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.
	 */
414 415
	if (ch->flags & FLAG_CLOCKSOURCE)
		ch->total_cycles += ch->match_value + 1;
M
Magnus Damm 已提交
416

417 418
	if (!(ch->flags & FLAG_REPROGRAM))
		ch->next_match_value = ch->max_match_value;
M
Magnus Damm 已提交
419

420
	ch->flags |= FLAG_IRQCONTEXT;
M
Magnus Damm 已提交
421

422 423 424 425 426
	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 已提交
427 428
			}

429
			ch->ced.event_handler(&ch->ced);
M
Magnus Damm 已提交
430 431 432
		}
	}

433
	ch->flags &= ~FLAG_SKIPEVENT;
M
Magnus Damm 已提交
434

435 436 437
	if (ch->flags & FLAG_REPROGRAM) {
		ch->flags &= ~FLAG_REPROGRAM;
		sh_cmt_clock_event_program_verify(ch, 1);
M
Magnus Damm 已提交
438

439 440 441 442
		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 已提交
443 444
	}

445
	ch->flags &= ~FLAG_IRQCONTEXT;
M
Magnus Damm 已提交
446 447 448 449

	return IRQ_HANDLED;
}

450
static int sh_cmt_start(struct sh_cmt_channel *ch, unsigned long flag)
M
Magnus Damm 已提交
451 452 453 454
{
	int ret = 0;
	unsigned long flags;

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

457 458
	if (!(ch->flags & (FLAG_CLOCKEVENT | FLAG_CLOCKSOURCE)))
		ret = sh_cmt_enable(ch, &ch->rate);
M
Magnus Damm 已提交
459 460 461

	if (ret)
		goto out;
462
	ch->flags |= flag;
M
Magnus Damm 已提交
463 464

	/* setup timeout if no clockevent */
465 466
	if ((flag == FLAG_CLOCKSOURCE) && (!(ch->flags & FLAG_CLOCKEVENT)))
		__sh_cmt_set_next(ch, ch->max_match_value);
M
Magnus Damm 已提交
467
 out:
468
	raw_spin_unlock_irqrestore(&ch->lock, flags);
M
Magnus Damm 已提交
469 470 471 472

	return ret;
}

473
static void sh_cmt_stop(struct sh_cmt_channel *ch, unsigned long flag)
M
Magnus Damm 已提交
474 475 476 477
{
	unsigned long flags;
	unsigned long f;

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

480 481
	f = ch->flags & (FLAG_CLOCKEVENT | FLAG_CLOCKSOURCE);
	ch->flags &= ~flag;
M
Magnus Damm 已提交
482

483 484
	if (f && !(ch->flags & (FLAG_CLOCKEVENT | FLAG_CLOCKSOURCE)))
		sh_cmt_disable(ch);
M
Magnus Damm 已提交
485 486

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

490
	raw_spin_unlock_irqrestore(&ch->lock, flags);
M
Magnus Damm 已提交
491 492
}

493
static struct sh_cmt_channel *cs_to_sh_cmt(struct clocksource *cs)
494
{
495
	return container_of(cs, struct sh_cmt_channel, cs);
496 497 498 499
}

static cycle_t sh_cmt_clocksource_read(struct clocksource *cs)
{
500
	struct sh_cmt_channel *ch = cs_to_sh_cmt(cs);
501 502 503 504
	unsigned long flags, raw;
	unsigned long value;
	int has_wrapped;

505 506 507
	raw_spin_lock_irqsave(&ch->lock, flags);
	value = ch->total_cycles;
	raw = sh_cmt_get_counter(ch, &has_wrapped);
508 509

	if (unlikely(has_wrapped))
510 511
		raw += ch->match_value + 1;
	raw_spin_unlock_irqrestore(&ch->lock, flags);
512 513 514 515 516 517

	return value + raw;
}

static int sh_cmt_clocksource_enable(struct clocksource *cs)
{
518
	int ret;
519
	struct sh_cmt_channel *ch = cs_to_sh_cmt(cs);
520

521
	WARN_ON(ch->cs_enabled);
522

523
	ch->total_cycles = 0;
524

525
	ret = sh_cmt_start(ch, FLAG_CLOCKSOURCE);
526
	if (!ret) {
527 528
		__clocksource_updatefreq_hz(cs, ch->rate);
		ch->cs_enabled = true;
529
	}
530
	return ret;
531 532 533 534
}

static void sh_cmt_clocksource_disable(struct clocksource *cs)
{
535
	struct sh_cmt_channel *ch = cs_to_sh_cmt(cs);
536

537
	WARN_ON(!ch->cs_enabled);
538

539 540
	sh_cmt_stop(ch, FLAG_CLOCKSOURCE);
	ch->cs_enabled = false;
541 542
}

543 544
static void sh_cmt_clocksource_suspend(struct clocksource *cs)
{
545
	struct sh_cmt_channel *ch = cs_to_sh_cmt(cs);
546

547 548
	sh_cmt_stop(ch, FLAG_CLOCKSOURCE);
	pm_genpd_syscore_poweroff(&ch->cmt->pdev->dev);
549 550
}

551 552
static void sh_cmt_clocksource_resume(struct clocksource *cs)
{
553
	struct sh_cmt_channel *ch = cs_to_sh_cmt(cs);
554

555 556
	pm_genpd_syscore_poweron(&ch->cmt->pdev->dev);
	sh_cmt_start(ch, FLAG_CLOCKSOURCE);
557 558
}

559
static int sh_cmt_register_clocksource(struct sh_cmt_channel *ch,
560
				       const char *name, unsigned long rating)
561
{
562
	struct clocksource *cs = &ch->cs;
563 564 565 566 567 568

	cs->name = name;
	cs->rating = rating;
	cs->read = sh_cmt_clocksource_read;
	cs->enable = sh_cmt_clocksource_enable;
	cs->disable = sh_cmt_clocksource_disable;
569
	cs->suspend = sh_cmt_clocksource_suspend;
570
	cs->resume = sh_cmt_clocksource_resume;
571 572
	cs->mask = CLOCKSOURCE_MASK(sizeof(unsigned long) * 8);
	cs->flags = CLOCK_SOURCE_IS_CONTINUOUS;
573

574 575
	dev_info(&ch->cmt->pdev->dev, "ch%u: used as clock source\n",
		 ch->index);
576

577 578
	/* Register with dummy 1 Hz value, gets updated in ->enable() */
	clocksource_register_hz(cs, 1);
579 580 581
	return 0;
}

582
static struct sh_cmt_channel *ced_to_sh_cmt(struct clock_event_device *ced)
M
Magnus Damm 已提交
583
{
584
	return container_of(ced, struct sh_cmt_channel, ced);
M
Magnus Damm 已提交
585 586
}

587
static void sh_cmt_clock_event_start(struct sh_cmt_channel *ch, int periodic)
M
Magnus Damm 已提交
588
{
589
	struct clock_event_device *ced = &ch->ced;
M
Magnus Damm 已提交
590

591
	sh_cmt_start(ch, FLAG_CLOCKEVENT);
M
Magnus Damm 已提交
592 593 594 595

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

	ced->shift = 32;
596 597
	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 已提交
598 599 600
	ced->min_delta_ns = clockevent_delta2ns(0x1f, ced);

	if (periodic)
601
		sh_cmt_set_next(ch, ((ch->rate + HZ/2) / HZ) - 1);
M
Magnus Damm 已提交
602
	else
603
		sh_cmt_set_next(ch, ch->max_match_value);
M
Magnus Damm 已提交
604 605 606 607 608
}

static void sh_cmt_clock_event_mode(enum clock_event_mode mode,
				    struct clock_event_device *ced)
{
609
	struct sh_cmt_channel *ch = ced_to_sh_cmt(ced);
M
Magnus Damm 已提交
610 611 612 613 614

	/* deal with old setting first */
	switch (ced->mode) {
	case CLOCK_EVT_MODE_PERIODIC:
	case CLOCK_EVT_MODE_ONESHOT:
615
		sh_cmt_stop(ch, FLAG_CLOCKEVENT);
M
Magnus Damm 已提交
616 617 618 619 620 621 622
		break;
	default:
		break;
	}

	switch (mode) {
	case CLOCK_EVT_MODE_PERIODIC:
623
		dev_info(&ch->cmt->pdev->dev,
624
			 "ch%u: used for periodic clock events\n", ch->index);
625
		sh_cmt_clock_event_start(ch, 1);
M
Magnus Damm 已提交
626 627
		break;
	case CLOCK_EVT_MODE_ONESHOT:
628
		dev_info(&ch->cmt->pdev->dev,
629
			 "ch%u: used for oneshot clock events\n", ch->index);
630
		sh_cmt_clock_event_start(ch, 0);
M
Magnus Damm 已提交
631 632 633
		break;
	case CLOCK_EVT_MODE_SHUTDOWN:
	case CLOCK_EVT_MODE_UNUSED:
634
		sh_cmt_stop(ch, FLAG_CLOCKEVENT);
M
Magnus Damm 已提交
635 636 637 638 639 640 641 642 643
		break;
	default:
		break;
	}
}

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

	BUG_ON(ced->mode != CLOCK_EVT_MODE_ONESHOT);
647 648
	if (likely(ch->flags & FLAG_IRQCONTEXT))
		ch->next_match_value = delta - 1;
M
Magnus Damm 已提交
649
	else
650
		sh_cmt_set_next(ch, delta - 1);
M
Magnus Damm 已提交
651 652 653 654

	return 0;
}

655 656
static void sh_cmt_clock_event_suspend(struct clock_event_device *ced)
{
657
	struct sh_cmt_channel *ch = ced_to_sh_cmt(ced);
658

659 660
	pm_genpd_syscore_poweroff(&ch->cmt->pdev->dev);
	clk_unprepare(ch->cmt->clk);
661 662 663 664
}

static void sh_cmt_clock_event_resume(struct clock_event_device *ced)
{
665
	struct sh_cmt_channel *ch = ced_to_sh_cmt(ced);
666

667 668
	clk_prepare(ch->cmt->clk);
	pm_genpd_syscore_poweron(&ch->cmt->pdev->dev);
669 670
}

671
static void sh_cmt_register_clockevent(struct sh_cmt_channel *ch,
672
				       const char *name, unsigned long rating)
M
Magnus Damm 已提交
673
{
674
	struct clock_event_device *ced = &ch->ced;
M
Magnus Damm 已提交
675 676 677 678 679 680 681 682

	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;
683 684
	ced->suspend = sh_cmt_clock_event_suspend;
	ced->resume = sh_cmt_clock_event_resume;
M
Magnus Damm 已提交
685

686 687
	dev_info(&ch->cmt->pdev->dev, "ch%u: used for clock events\n",
		 ch->index);
M
Magnus Damm 已提交
688 689 690
	clockevents_register_device(ced);
}

691
static int sh_cmt_register(struct sh_cmt_channel *ch, const char *name,
692 693
			   unsigned long clockevent_rating,
			   unsigned long clocksource_rating)
M
Magnus Damm 已提交
694 695
{
	if (clockevent_rating)
696
		sh_cmt_register_clockevent(ch, name, clockevent_rating);
M
Magnus Damm 已提交
697

698
	if (clocksource_rating)
699
		sh_cmt_register_clocksource(ch, name, clocksource_rating);
700

M
Magnus Damm 已提交
701 702 703
	return 0;
}

704
static int sh_cmt_setup_channel(struct sh_cmt_channel *ch, unsigned int index,
705 706 707 708 709 710 711
				struct sh_cmt_device *cmt)
{
	struct sh_timer_config *cfg = cmt->pdev->dev.platform_data;
	int irq;
	int ret;

	ch->cmt = cmt;
712
	ch->base = cmt->mapbase_ch;
713
	ch->index = index;
714 715 716

	irq = platform_get_irq(cmt->pdev, 0);
	if (irq < 0) {
717 718
		dev_err(&cmt->pdev->dev, "ch%u: failed to get irq\n",
			ch->index);
719 720 721 722 723 724 725 726 727 728 729
		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);

730
	ret = sh_cmt_register(ch, dev_name(&cmt->pdev->dev),
731 732 733
			      cfg->clockevent_rating,
			      cfg->clocksource_rating);
	if (ret) {
734 735
		dev_err(&cmt->pdev->dev, "ch%u: registration failed\n",
			ch->index);
736 737 738 739 740 741 742 743
		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) {
744 745
		dev_err(&cmt->pdev->dev, "ch%u: failed to request irq %d\n",
			ch->index, irq);
746 747 748 749 750 751
		return ret;
	}

	return 0;
}

752
static int sh_cmt_setup(struct sh_cmt_device *cmt, struct platform_device *pdev)
M
Magnus Damm 已提交
753
{
754
	struct sh_timer_config *cfg = pdev->dev.platform_data;
755
	struct resource *res, *res2;
756
	int ret;
M
Magnus Damm 已提交
757 758
	ret = -ENXIO;

759
	cmt->pdev = pdev;
M
Magnus Damm 已提交
760 761

	if (!cfg) {
762
		dev_err(&cmt->pdev->dev, "missing platform data\n");
M
Magnus Damm 已提交
763 764 765
		goto err0;
	}

766
	res = platform_get_resource(cmt->pdev, IORESOURCE_MEM, 0);
M
Magnus Damm 已提交
767
	if (!res) {
768
		dev_err(&cmt->pdev->dev, "failed to get I/O memory\n");
M
Magnus Damm 已提交
769 770 771
		goto err0;
	}

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

775 776 777
	/* map memory, let mapbase_ch point to our channel */
	cmt->mapbase_ch = ioremap_nocache(res->start, resource_size(res));
	if (cmt->mapbase_ch == NULL) {
778
		dev_err(&cmt->pdev->dev, "failed to remap I/O memory\n");
M
Magnus Damm 已提交
779 780 781
		goto err0;
	}

782
	/* map second resource for CMSTR */
783 784 785 786
	cmt->mapbase = ioremap_nocache(res2 ? res2->start :
				       res->start - cfg->channel_offset,
				       res2 ? resource_size(res2) : 2);
	if (cmt->mapbase == NULL) {
787
		dev_err(&cmt->pdev->dev, "failed to remap I/O second memory\n");
788 789 790
		goto err1;
	}

M
Magnus Damm 已提交
791
	/* get hold of clock */
792 793 794 795
	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);
796
		goto err2;
M
Magnus Damm 已提交
797 798
	}

799
	ret = clk_prepare(cmt->clk);
800 801 802
	if (ret < 0)
		goto err3;

803 804
	if (res2 && (resource_size(res2) == 4)) {
		/* assume both CMSTR and CMCSR to be 32-bit */
805 806
		cmt->read_control = sh_cmt_read32;
		cmt->write_control = sh_cmt_write32;
807
	} else {
808 809
		cmt->read_control = sh_cmt_read16;
		cmt->write_control = sh_cmt_write16;
810
	}
811

M
Magnus Damm 已提交
812
	if (resource_size(res) == 6) {
813 814 815 816 817
		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 已提交
818
	} else {
819 820 821 822 823
		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 已提交
824 825
	}

826 827 828 829 830 831 832 833 834
	cmt->channels = kzalloc(sizeof(*cmt->channels), GFP_KERNEL);
	if (cmt->channels == NULL) {
		ret = -ENOMEM;
		goto err4;
	}

	cmt->num_channels = 1;

	ret = sh_cmt_setup_channel(&cmt->channels[0], cfg->timer_bit, cmt);
835
	if (ret < 0)
836
		goto err4;
837

838
	platform_set_drvdata(pdev, cmt);
839

840
	return 0;
841
err4:
842
	kfree(cmt->channels);
843
	clk_unprepare(cmt->clk);
844
err3:
845
	clk_put(cmt->clk);
846
err2:
847
	iounmap(cmt->mapbase);
848 849
err1:
	iounmap(cmt->mapbase_ch);
850
err0:
M
Magnus Damm 已提交
851 852 853
	return ret;
}

854
static int sh_cmt_probe(struct platform_device *pdev)
M
Magnus Damm 已提交
855
{
856
	struct sh_cmt_device *cmt = platform_get_drvdata(pdev);
857
	struct sh_timer_config *cfg = pdev->dev.platform_data;
M
Magnus Damm 已提交
858 859
	int ret;

860
	if (!is_early_platform_device(pdev)) {
861 862
		pm_runtime_set_active(&pdev->dev);
		pm_runtime_enable(&pdev->dev);
863
	}
864

865
	if (cmt) {
866
		dev_info(&pdev->dev, "kept as earlytimer\n");
867
		goto out;
868 869
	}

870
	cmt = kzalloc(sizeof(*cmt), GFP_KERNEL);
871
	if (cmt == NULL) {
M
Magnus Damm 已提交
872 873 874 875
		dev_err(&pdev->dev, "failed to allocate driver data\n");
		return -ENOMEM;
	}

876
	ret = sh_cmt_setup(cmt, pdev);
M
Magnus Damm 已提交
877
	if (ret) {
878
		kfree(cmt);
879 880
		pm_runtime_idle(&pdev->dev);
		return ret;
M
Magnus Damm 已提交
881
	}
882 883 884 885 886 887 888 889 890 891
	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 已提交
892 893
}

894
static int sh_cmt_remove(struct platform_device *pdev)
M
Magnus Damm 已提交
895 896 897 898 899 900
{
	return -EBUSY; /* cannot unregister clockevent and clocksource */
}

static struct platform_driver sh_cmt_device_driver = {
	.probe		= sh_cmt_probe,
901
	.remove		= sh_cmt_remove,
M
Magnus Damm 已提交
902 903 904 905 906 907 908 909 910 911 912 913 914 915 916
	.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);
}

917
early_platform_init("earlytimer", &sh_cmt_device_driver);
918
subsys_initcall(sh_cmt_init);
M
Magnus Damm 已提交
919 920 921 922 923
module_exit(sh_cmt_exit);

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