dmtimer.c 17.2 KB
Newer Older
1 2 3 4 5 6
/*
 * linux/arch/arm/plat-omap/dmtimer.c
 *
 * OMAP Dual-Mode Timers
 *
 * Copyright (C) 2005 Nokia Corporation
7 8
 * OMAP2 support by Juha Yrjola
 * API improvements and OMAP2 clock framework support by Timo Teras
9
 *
10 11 12
 * Copyright (C) 2009 Texas Instruments
 * Added OMAP4 support - Santosh Shilimkar <santosh.shilimkar@ti.com>
 *
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
 * 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 SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
 * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 * 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.,
 * 675 Mass Ave, Cambridge, MA 02139, USA.
 */

#include <linux/init.h>
33 34 35 36 37
#include <linux/spinlock.h>
#include <linux/errno.h>
#include <linux/list.h>
#include <linux/clk.h>
#include <linux/delay.h>
38
#include <linux/io.h>
39
#include <linux/module.h>
40
#include <mach/hardware.h>
41
#include <plat/dmtimer.h>
42
#include <mach/irqs.h>
43

44
static int dm_timer_count;
45

46
#ifdef CONFIG_ARCH_OMAP1
47
static struct omap_dm_timer omap1_dm_timers[] = {
48 49 50 51 52 53
	{ .phys_base = 0xfffb1400, .irq = INT_1610_GPTIMER1 },
	{ .phys_base = 0xfffb1c00, .irq = INT_1610_GPTIMER2 },
	{ .phys_base = 0xfffb2400, .irq = INT_1610_GPTIMER3 },
	{ .phys_base = 0xfffb2c00, .irq = INT_1610_GPTIMER4 },
	{ .phys_base = 0xfffb3400, .irq = INT_1610_GPTIMER5 },
	{ .phys_base = 0xfffb3c00, .irq = INT_1610_GPTIMER6 },
54 55
	{ .phys_base = 0xfffb7400, .irq = INT_1610_GPTIMER7 },
	{ .phys_base = 0xfffbd400, .irq = INT_1610_GPTIMER8 },
56
};
57

58
static const int omap1_dm_timer_count = ARRAY_SIZE(omap1_dm_timers);
59

60
#else
61
#define omap1_dm_timers			NULL
62 63
#define omap1_dm_timer_count		0
#endif	/* CONFIG_ARCH_OMAP1 */
64

65
#ifdef CONFIG_ARCH_OMAP2
66
static struct omap_dm_timer omap2_dm_timers[] = {
67 68 69 70 71 72 73 74 75 76 77 78
	{ .phys_base = 0x48028000, .irq = INT_24XX_GPTIMER1 },
	{ .phys_base = 0x4802a000, .irq = INT_24XX_GPTIMER2 },
	{ .phys_base = 0x48078000, .irq = INT_24XX_GPTIMER3 },
	{ .phys_base = 0x4807a000, .irq = INT_24XX_GPTIMER4 },
	{ .phys_base = 0x4807c000, .irq = INT_24XX_GPTIMER5 },
	{ .phys_base = 0x4807e000, .irq = INT_24XX_GPTIMER6 },
	{ .phys_base = 0x48080000, .irq = INT_24XX_GPTIMER7 },
	{ .phys_base = 0x48082000, .irq = INT_24XX_GPTIMER8 },
	{ .phys_base = 0x48084000, .irq = INT_24XX_GPTIMER9 },
	{ .phys_base = 0x48086000, .irq = INT_24XX_GPTIMER10 },
	{ .phys_base = 0x48088000, .irq = INT_24XX_GPTIMER11 },
	{ .phys_base = 0x4808a000, .irq = INT_24XX_GPTIMER12 },
79 80
};

81
static const char *omap2_dm_source_names[] __initdata = {
T
Timo Teras 已提交
82 83
	"sys_ck",
	"func_32k_ck",
84 85
	"alt_ck",
	NULL
T
Timo Teras 已提交
86 87
};

88
static struct clk *omap2_dm_source_clocks[3];
89
static const int omap2_dm_timer_count = ARRAY_SIZE(omap2_dm_timers);
90

91
#else
92
#define omap2_dm_timers			NULL
93
#define omap2_dm_timer_count		0
94 95
#define omap2_dm_source_names		NULL
#define omap2_dm_source_clocks		NULL
96
#endif	/* CONFIG_ARCH_OMAP2 */
97

98
#ifdef CONFIG_ARCH_OMAP3
99 100 101 102 103 104 105 106 107 108 109 110
static struct omap_dm_timer omap3_dm_timers[] = {
	{ .phys_base = 0x48318000, .irq = INT_24XX_GPTIMER1 },
	{ .phys_base = 0x49032000, .irq = INT_24XX_GPTIMER2 },
	{ .phys_base = 0x49034000, .irq = INT_24XX_GPTIMER3 },
	{ .phys_base = 0x49036000, .irq = INT_24XX_GPTIMER4 },
	{ .phys_base = 0x49038000, .irq = INT_24XX_GPTIMER5 },
	{ .phys_base = 0x4903A000, .irq = INT_24XX_GPTIMER6 },
	{ .phys_base = 0x4903C000, .irq = INT_24XX_GPTIMER7 },
	{ .phys_base = 0x4903E000, .irq = INT_24XX_GPTIMER8 },
	{ .phys_base = 0x49040000, .irq = INT_24XX_GPTIMER9 },
	{ .phys_base = 0x48086000, .irq = INT_24XX_GPTIMER10 },
	{ .phys_base = 0x48088000, .irq = INT_24XX_GPTIMER11 },
P
Paul Walmsley 已提交
111
	{ .phys_base = 0x48304000, .irq = INT_34XX_GPT12_IRQ },
112 113 114 115 116 117 118 119
};

static const char *omap3_dm_source_names[] __initdata = {
	"sys_ck",
	"omap_32k_fck",
	NULL
};

120
static struct clk *omap3_dm_source_clocks[2];
121
static const int omap3_dm_timer_count = ARRAY_SIZE(omap3_dm_timers);
122

123
#else
124
#define omap3_dm_timers			NULL
125
#define omap3_dm_timer_count		0
126 127
#define omap3_dm_source_names		NULL
#define omap3_dm_source_clocks		NULL
128
#endif	/* CONFIG_ARCH_OMAP3 */
129

130
#ifdef CONFIG_ARCH_OMAP4
131
static struct omap_dm_timer omap4_dm_timers[] = {
132 133 134 135 136 137 138 139 140 141 142 143
	{ .phys_base = 0x4a318000, .irq = OMAP44XX_IRQ_GPT1 },
	{ .phys_base = 0x48032000, .irq = OMAP44XX_IRQ_GPT2 },
	{ .phys_base = 0x48034000, .irq = OMAP44XX_IRQ_GPT3 },
	{ .phys_base = 0x48036000, .irq = OMAP44XX_IRQ_GPT4 },
	{ .phys_base = 0x40138000, .irq = OMAP44XX_IRQ_GPT5 },
	{ .phys_base = 0x4013a000, .irq = OMAP44XX_IRQ_GPT6 },
	{ .phys_base = 0x4013a000, .irq = OMAP44XX_IRQ_GPT7 },
	{ .phys_base = 0x4013e000, .irq = OMAP44XX_IRQ_GPT8 },
	{ .phys_base = 0x4803e000, .irq = OMAP44XX_IRQ_GPT9 },
	{ .phys_base = 0x48086000, .irq = OMAP44XX_IRQ_GPT10 },
	{ .phys_base = 0x48088000, .irq = OMAP44XX_IRQ_GPT11 },
	{ .phys_base = 0x4a320000, .irq = OMAP44XX_IRQ_GPT12 },
144 145
};
static const char *omap4_dm_source_names[] __initdata = {
146 147
	"sys_clkin_ck",
	"sys_32k_ck",
148 149 150
	NULL
};
static struct clk *omap4_dm_source_clocks[2];
151
static const int omap4_dm_timer_count = ARRAY_SIZE(omap4_dm_timers);
152

153
#else
154 155 156 157 158
#define omap4_dm_timers			NULL
#define omap4_dm_timer_count		0
#define omap4_dm_source_names		NULL
#define omap4_dm_source_clocks		NULL
#endif	/* CONFIG_ARCH_OMAP4 */
159

160
static struct omap_dm_timer *dm_timers;
161
static const char **dm_source_names;
162 163
static struct clk **dm_source_clocks;

164 165
static spinlock_t dm_timer_lock;

166 167 168 169 170 171
/*
 * Reads timer registers in posted and non-posted mode. The posted mode bit
 * is encoded in reg. Note that in posted mode write pending bit must be
 * checked. Otherwise a read of a non completed write will produce an error.
 */
static inline u32 omap_dm_timer_read_reg(struct omap_dm_timer *timer, u32 reg)
172
{
173 174
	WARN_ON((reg & 0xff) < _OMAP_TIMER_WAKEUP_EN_OFFSET);
	return __omap_dm_timer_read(timer, reg, timer->posted);
175
}
176

177 178 179 180 181 182 183 184
/*
 * Writes timer registers in posted and non-posted mode. The posted mode bit
 * is encoded in reg. Note that in posted mode the write pending bit must be
 * checked. Otherwise a write on a register which has a pending write will be
 * lost.
 */
static void omap_dm_timer_write_reg(struct omap_dm_timer *timer, u32 reg,
						u32 value)
185
{
186 187
	WARN_ON((reg & 0xff) < _OMAP_TIMER_WAKEUP_EN_OFFSET);
	__omap_dm_timer_write(timer, reg, value, timer->posted);
188 189
}

190
static void omap_dm_timer_wait_for_reset(struct omap_dm_timer *timer)
191
{
192 193
	int c;

194 195 196
	if (!timer->sys_stat)
		return;

197
	c = 0;
198
	while (!(__raw_readl(timer->sys_stat) & 1)) {
199 200 201 202 203 204
		c++;
		if (c > 100000) {
			printk(KERN_ERR "Timer failed to reset\n");
			return;
		}
	}
205 206
}

207 208
static void omap_dm_timer_reset(struct omap_dm_timer *timer)
{
209
	int autoidle = 0, wakeup = 0;
210

211
	if (!cpu_class_is_omap2() || timer != &dm_timers[0]) {
212 213 214
		omap_dm_timer_write_reg(timer, OMAP_TIMER_IF_CTRL_REG, 0x06);
		omap_dm_timer_wait_for_reset(timer);
	}
215
	omap_dm_timer_set_source(timer, OMAP_TIMER_SRC_32_KHZ);
216

A
Ambresh K 已提交
217 218
	/* Enable autoidle on OMAP2+ */
	if (cpu_class_is_omap2())
219
		autoidle = 1;
T
Tero Kristo 已提交
220

221
	/*
222
	 * Enable wake-up on OMAP2 CPUs.
223
	 */
224
	if (cpu_class_is_omap2())
225
		wakeup = 1;
226

227
	__omap_dm_timer_reset(timer, autoidle, wakeup);
228
	timer->posted = 1;
229 230
}

231
void omap_dm_timer_prepare(struct omap_dm_timer *timer)
232
{
233
	omap_dm_timer_enable(timer);
234 235 236 237 238 239 240 241 242 243 244 245 246 247 248
	omap_dm_timer_reset(timer);
}

struct omap_dm_timer *omap_dm_timer_request(void)
{
	struct omap_dm_timer *timer = NULL;
	unsigned long flags;
	int i;

	spin_lock_irqsave(&dm_timer_lock, flags);
	for (i = 0; i < dm_timer_count; i++) {
		if (dm_timers[i].reserved)
			continue;

		timer = &dm_timers[i];
T
Timo Teras 已提交
249
		timer->reserved = 1;
250 251 252 253
		break;
	}
	spin_unlock_irqrestore(&dm_timer_lock, flags);

T
Timo Teras 已提交
254 255 256
	if (timer != NULL)
		omap_dm_timer_prepare(timer);

257 258
	return timer;
}
259
EXPORT_SYMBOL_GPL(omap_dm_timer_request);
260 261

struct omap_dm_timer *omap_dm_timer_request_specific(int id)
262 263
{
	struct omap_dm_timer *timer;
264
	unsigned long flags;
265

266 267 268 269
	spin_lock_irqsave(&dm_timer_lock, flags);
	if (id <= 0 || id > dm_timer_count || dm_timers[id-1].reserved) {
		spin_unlock_irqrestore(&dm_timer_lock, flags);
		printk("BUG: warning at %s:%d/%s(): unable to get timer %d\n",
270
		       __FILE__, __LINE__, __func__, id);
271 272 273
		dump_stack();
		return NULL;
	}
274

275
	timer = &dm_timers[id-1];
T
Timo Teras 已提交
276
	timer->reserved = 1;
277 278
	spin_unlock_irqrestore(&dm_timer_lock, flags);

T
Timo Teras 已提交
279 280
	omap_dm_timer_prepare(timer);

281
	return timer;
282
}
283
EXPORT_SYMBOL_GPL(omap_dm_timer_request_specific);
284

285 286
void omap_dm_timer_free(struct omap_dm_timer *timer)
{
287
	omap_dm_timer_enable(timer);
288
	omap_dm_timer_reset(timer);
289
	omap_dm_timer_disable(timer);
290

291 292 293
	WARN_ON(!timer->reserved);
	timer->reserved = 0;
}
294
EXPORT_SYMBOL_GPL(omap_dm_timer_free);
295

296 297 298 299 300
void omap_dm_timer_enable(struct omap_dm_timer *timer)
{
	if (timer->enabled)
		return;

301 302 303 304 305 306
#ifdef CONFIG_ARCH_OMAP2PLUS
	if (cpu_class_is_omap2()) {
		clk_enable(timer->fclk);
		clk_enable(timer->iclk);
	}
#endif
307 308 309

	timer->enabled = 1;
}
310
EXPORT_SYMBOL_GPL(omap_dm_timer_enable);
311 312 313 314 315 316

void omap_dm_timer_disable(struct omap_dm_timer *timer)
{
	if (!timer->enabled)
		return;

317 318 319 320 321 322
#ifdef CONFIG_ARCH_OMAP2PLUS
	if (cpu_class_is_omap2()) {
		clk_disable(timer->iclk);
		clk_disable(timer->fclk);
	}
#endif
323 324 325

	timer->enabled = 0;
}
326
EXPORT_SYMBOL_GPL(omap_dm_timer_disable);
327

328 329 330 331
int omap_dm_timer_get_irq(struct omap_dm_timer *timer)
{
	return timer->irq;
}
332
EXPORT_SYMBOL_GPL(omap_dm_timer_get_irq);
333 334 335

#if defined(CONFIG_ARCH_OMAP1)

336 337 338 339 340 341
/**
 * omap_dm_timer_modify_idlect_mask - Check if any running timers use ARMXOR
 * @inputmask: current value of idlect mask
 */
__u32 omap_dm_timer_modify_idlect_mask(__u32 inputmask)
{
342
	int i;
343 344 345 346 347 348

	/* If ARMXOR cannot be idled this function call is unnecessary */
	if (!(inputmask & (1 << 1)))
		return inputmask;

	/* If any active timer is using ARMXOR return modified mask */
349 350 351
	for (i = 0; i < dm_timer_count; i++) {
		u32 l;

352
		l = omap_dm_timer_read_reg(&dm_timers[i], OMAP_TIMER_CTRL_REG);
353 354
		if (l & OMAP_TIMER_CTRL_ST) {
			if (((omap_readl(MOD_CONF_CTRL_1) >> (i * 2)) & 0x03) == 0)
355 356 357 358
				inputmask &= ~(1 << 1);
			else
				inputmask &= ~(1 << 2);
		}
359
	}
360 361 362

	return inputmask;
}
363
EXPORT_SYMBOL_GPL(omap_dm_timer_modify_idlect_mask);
364

365
#else
366

367
struct clk *omap_dm_timer_get_fclk(struct omap_dm_timer *timer)
368
{
369
	return timer->fclk;
370
}
371
EXPORT_SYMBOL_GPL(omap_dm_timer_get_fclk);
372

373 374 375
__u32 omap_dm_timer_modify_idlect_mask(__u32 inputmask)
{
	BUG();
376 377

	return 0;
378
}
379
EXPORT_SYMBOL_GPL(omap_dm_timer_modify_idlect_mask);
380

381
#endif
382

383
void omap_dm_timer_trigger(struct omap_dm_timer *timer)
384
{
385
	omap_dm_timer_write_reg(timer, OMAP_TIMER_TRIGGER_REG, 0);
386
}
387
EXPORT_SYMBOL_GPL(omap_dm_timer_trigger);
388

389 390 391
void omap_dm_timer_start(struct omap_dm_timer *timer)
{
	u32 l;
392

393 394 395 396 397 398
	l = omap_dm_timer_read_reg(timer, OMAP_TIMER_CTRL_REG);
	if (!(l & OMAP_TIMER_CTRL_ST)) {
		l |= OMAP_TIMER_CTRL_ST;
		omap_dm_timer_write_reg(timer, OMAP_TIMER_CTRL_REG, l);
	}
}
399
EXPORT_SYMBOL_GPL(omap_dm_timer_start);
400

401
void omap_dm_timer_stop(struct omap_dm_timer *timer)
402
{
403
	unsigned long rate = 0;
404

405
#ifdef CONFIG_ARCH_OMAP2PLUS
406
	rate = clk_get_rate(timer->fclk);
407
#endif
408

409
	__omap_dm_timer_stop(timer, timer->posted, rate);
410
}
411
EXPORT_SYMBOL_GPL(omap_dm_timer_stop);
412

413
#ifdef CONFIG_ARCH_OMAP1
414

415
int omap_dm_timer_set_source(struct omap_dm_timer *timer, int source)
416
{
417 418
	int n = (timer - dm_timers) << 1;
	u32 l;
419

420 421 422
	l = omap_readl(MOD_CONF_CTRL_1) & ~(0x03 << n);
	l |= source << n;
	omap_writel(l, MOD_CONF_CTRL_1);
423 424

	return 0;
425
}
426
EXPORT_SYMBOL_GPL(omap_dm_timer_set_source);
427

428
#else
429

430
int omap_dm_timer_set_source(struct omap_dm_timer *timer, int source)
431
{
432
	if (source < 0 || source >= 3)
433
		return -EINVAL;
434

435 436
	return __omap_dm_timer_set_source(timer->fclk,
						dm_source_clocks[source]);
437
}
438
EXPORT_SYMBOL_GPL(omap_dm_timer_set_source);
439

440
#endif
441

442 443
void omap_dm_timer_set_load(struct omap_dm_timer *timer, int autoreload,
			    unsigned int load)
444 445
{
	u32 l;
446

447
	l = omap_dm_timer_read_reg(timer, OMAP_TIMER_CTRL_REG);
448 449 450 451
	if (autoreload)
		l |= OMAP_TIMER_CTRL_AR;
	else
		l &= ~OMAP_TIMER_CTRL_AR;
452
	omap_dm_timer_write_reg(timer, OMAP_TIMER_CTRL_REG, l);
453
	omap_dm_timer_write_reg(timer, OMAP_TIMER_LOAD_REG, load);
454

455
	omap_dm_timer_write_reg(timer, OMAP_TIMER_TRIGGER_REG, 0);
456
}
457
EXPORT_SYMBOL_GPL(omap_dm_timer_set_load);
458

459 460 461 462 463 464 465
/* Optimized set_load which removes costly spin wait in timer_start */
void omap_dm_timer_set_load_start(struct omap_dm_timer *timer, int autoreload,
                            unsigned int load)
{
	u32 l;

	l = omap_dm_timer_read_reg(timer, OMAP_TIMER_CTRL_REG);
466
	if (autoreload) {
467
		l |= OMAP_TIMER_CTRL_AR;
468 469
		omap_dm_timer_write_reg(timer, OMAP_TIMER_LOAD_REG, load);
	} else {
470
		l &= ~OMAP_TIMER_CTRL_AR;
471
	}
472 473
	l |= OMAP_TIMER_CTRL_ST;

474
	__omap_dm_timer_load_start(timer, l, load, timer->posted);
475
}
476
EXPORT_SYMBOL_GPL(omap_dm_timer_set_load_start);
477

478 479
void omap_dm_timer_set_match(struct omap_dm_timer *timer, int enable,
			     unsigned int match)
480 481 482 483
{
	u32 l;

	l = omap_dm_timer_read_reg(timer, OMAP_TIMER_CTRL_REG);
T
Timo Teras 已提交
484
	if (enable)
485 486 487
		l |= OMAP_TIMER_CTRL_CE;
	else
		l &= ~OMAP_TIMER_CTRL_CE;
488
	omap_dm_timer_write_reg(timer, OMAP_TIMER_CTRL_REG, l);
489
	omap_dm_timer_write_reg(timer, OMAP_TIMER_MATCH_REG, match);
490
}
491
EXPORT_SYMBOL_GPL(omap_dm_timer_set_match);
492

493 494
void omap_dm_timer_set_pwm(struct omap_dm_timer *timer, int def_on,
			   int toggle, int trigger)
495 496 497 498
{
	u32 l;

	l = omap_dm_timer_read_reg(timer, OMAP_TIMER_CTRL_REG);
499 500 501 502 503 504 505
	l &= ~(OMAP_TIMER_CTRL_GPOCFG | OMAP_TIMER_CTRL_SCPWM |
	       OMAP_TIMER_CTRL_PT | (0x03 << 10));
	if (def_on)
		l |= OMAP_TIMER_CTRL_SCPWM;
	if (toggle)
		l |= OMAP_TIMER_CTRL_PT;
	l |= trigger << 10;
506 507
	omap_dm_timer_write_reg(timer, OMAP_TIMER_CTRL_REG, l);
}
508
EXPORT_SYMBOL_GPL(omap_dm_timer_set_pwm);
509

510
void omap_dm_timer_set_prescaler(struct omap_dm_timer *timer, int prescaler)
511 512 513 514
{
	u32 l;

	l = omap_dm_timer_read_reg(timer, OMAP_TIMER_CTRL_REG);
515 516 517 518 519
	l &= ~(OMAP_TIMER_CTRL_PRE | (0x07 << 2));
	if (prescaler >= 0x00 && prescaler <= 0x07) {
		l |= OMAP_TIMER_CTRL_PRE;
		l |= prescaler << 2;
	}
520 521
	omap_dm_timer_write_reg(timer, OMAP_TIMER_CTRL_REG, l);
}
522
EXPORT_SYMBOL_GPL(omap_dm_timer_set_prescaler);
523

524 525
void omap_dm_timer_set_int_enable(struct omap_dm_timer *timer,
				  unsigned int value)
526
{
527
	__omap_dm_timer_int_enable(timer, value);
528
}
529
EXPORT_SYMBOL_GPL(omap_dm_timer_set_int_enable);
530

531
unsigned int omap_dm_timer_read_status(struct omap_dm_timer *timer)
532
{
533 534
	unsigned int l;

535
	l = __raw_readl(timer->irq_stat);
536 537

	return l;
538
}
539
EXPORT_SYMBOL_GPL(omap_dm_timer_read_status);
540

541
void omap_dm_timer_write_status(struct omap_dm_timer *timer, unsigned int value)
542
{
543
	__omap_dm_timer_write_status(timer, value);
544
}
545
EXPORT_SYMBOL_GPL(omap_dm_timer_write_status);
546

547
unsigned int omap_dm_timer_read_counter(struct omap_dm_timer *timer)
548
{
549
	return __omap_dm_timer_read_counter(timer, timer->posted);
550
}
551
EXPORT_SYMBOL_GPL(omap_dm_timer_read_counter);
552

T
Timo Teras 已提交
553 554
void omap_dm_timer_write_counter(struct omap_dm_timer *timer, unsigned int value)
{
555
	omap_dm_timer_write_reg(timer, OMAP_TIMER_COUNTER_REG, value);
T
Timo Teras 已提交
556
}
557
EXPORT_SYMBOL_GPL(omap_dm_timer_write_counter);
T
Timo Teras 已提交
558

559
int omap_dm_timers_active(void)
560
{
561
	int i;
562

563 564
	for (i = 0; i < dm_timer_count; i++) {
		struct omap_dm_timer *timer;
565

566
		timer = &dm_timers[i];
567 568 569 570

		if (!timer->enabled)
			continue;

571
		if (omap_dm_timer_read_reg(timer, OMAP_TIMER_CTRL_REG) &
572
		    OMAP_TIMER_CTRL_ST) {
573
			return 1;
574
		}
575 576 577
	}
	return 0;
}
578
EXPORT_SYMBOL_GPL(omap_dm_timers_active);
579

580
static int __init omap_dm_timer_init(void)
581 582
{
	struct omap_dm_timer *timer;
T
Tony Lindgren 已提交
583
	int i, map_size = SZ_8K;	/* Module 4KB + L4 4KB except on omap1 */
584

585
	if (!(cpu_is_omap16xx() || cpu_class_is_omap2()))
586
		return -ENODEV;
587 588

	spin_lock_init(&dm_timer_lock);
589

T
Tony Lindgren 已提交
590
	if (cpu_class_is_omap1()) {
591
		dm_timers = omap1_dm_timers;
592
		dm_timer_count = omap1_dm_timer_count;
T
Tony Lindgren 已提交
593 594
		map_size = SZ_2K;
	} else if (cpu_is_omap24xx()) {
595
		dm_timers = omap2_dm_timers;
596
		dm_timer_count = omap2_dm_timer_count;
597 598
		dm_source_names = omap2_dm_source_names;
		dm_source_clocks = omap2_dm_source_clocks;
599 600
	} else if (cpu_is_omap34xx()) {
		dm_timers = omap3_dm_timers;
601
		dm_timer_count = omap3_dm_timer_count;
602 603
		dm_source_names = omap3_dm_source_names;
		dm_source_clocks = omap3_dm_source_clocks;
604 605
	} else if (cpu_is_omap44xx()) {
		dm_timers = omap4_dm_timers;
606
		dm_timer_count = omap4_dm_timer_count;
607 608
		dm_source_names = omap4_dm_source_names;
		dm_source_clocks = omap4_dm_source_clocks;
609 610 611

		pr_err("dmtimers disabled for omap4 until hwmod conversion\n");
		return -ENODEV;
T
Timo Teras 已提交
612
	}
613 614 615 616 617

	if (cpu_class_is_omap2())
		for (i = 0; dm_source_names[i] != NULL; i++)
			dm_source_clocks[i] = clk_get(NULL, dm_source_names[i]);

618 619
	if (cpu_is_omap243x())
		dm_timers[0].phys_base = 0x49018000;
T
Timo Teras 已提交
620

621 622
	for (i = 0; i < dm_timer_count; i++) {
		timer = &dm_timers[i];
T
Tony Lindgren 已提交
623 624 625 626 627

		/* Static mapping, never released */
		timer->io_base = ioremap(timer->phys_base, map_size);
		BUG_ON(!timer->io_base);

628
#ifdef CONFIG_ARCH_OMAP2PLUS
629 630 631 632 633 634 635
		if (cpu_class_is_omap2()) {
			char clk_name[16];
			sprintf(clk_name, "gpt%d_ick", i + 1);
			timer->iclk = clk_get(NULL, clk_name);
			sprintf(clk_name, "gpt%d_fck", i + 1);
			timer->fclk = clk_get(NULL, clk_name);
		}
636 637 638 639 640

		/* One or two timers may be set up early for sys_timer */
		if (sys_timer_reserved & (1  << i)) {
			timer->reserved = 1;
			timer->posted = 1;
641
			continue;
642
		}
643
#endif
644 645 646
		omap_dm_timer_enable(timer);
		__omap_dm_timer_init_regs(timer);
		omap_dm_timer_disable(timer);
647 648 649 650
	}

	return 0;
}
651 652

arch_initcall(omap_dm_timer_init);