Linux Audio

Check our new training course

Loading...
v3.5.6
  1/*
  2 * linux/arch/arm/mach-omap2/timer.c
  3 *
  4 * OMAP2 GP timer support.
  5 *
  6 * Copyright (C) 2009 Nokia Corporation
  7 *
  8 * Update to use new clocksource/clockevent layers
  9 * Author: Kevin Hilman, MontaVista Software, Inc. <source@mvista.com>
 10 * Copyright (C) 2007 MontaVista Software, Inc.
 11 *
 12 * Original driver:
 13 * Copyright (C) 2005 Nokia Corporation
 14 * Author: Paul Mundt <paul.mundt@nokia.com>
 15 *         Juha Yrjölä <juha.yrjola@nokia.com>
 16 * OMAP Dual-mode timer framework support by Timo Teras
 17 *
 18 * Some parts based off of TI's 24xx code:
 19 *
 20 * Copyright (C) 2004-2009 Texas Instruments, Inc.
 21 *
 22 * Roughly modelled after the OMAP1 MPU timer code.
 23 * Added OMAP4 support - Santosh Shilimkar <santosh.shilimkar@ti.com>
 24 *
 25 * This file is subject to the terms and conditions of the GNU General Public
 26 * License. See the file "COPYING" in the main directory of this archive
 27 * for more details.
 28 */
 29#include <linux/init.h>
 30#include <linux/time.h>
 31#include <linux/interrupt.h>
 32#include <linux/err.h>
 33#include <linux/clk.h>
 34#include <linux/delay.h>
 35#include <linux/irq.h>
 36#include <linux/clocksource.h>
 37#include <linux/clockchips.h>
 38#include <linux/slab.h>
 
 
 
 
 
 
 39
 40#include <asm/mach/time.h>
 41#include <plat/dmtimer.h>
 42#include <asm/smp_twd.h>
 43#include <asm/sched_clock.h>
 44#include "common.h"
 45#include <plat/omap_hwmod.h>
 46#include <plat/omap_device.h>
 47#include <plat/omap-pm.h>
 48
 49#include "powerdomain.h"
 50
 51/* Parent clocks, eventually these will come from the clock framework */
 52
 53#define OMAP2_MPU_SOURCE	"sys_ck"
 54#define OMAP3_MPU_SOURCE	OMAP2_MPU_SOURCE
 55#define OMAP4_MPU_SOURCE	"sys_clkin_ck"
 56#define OMAP2_32K_SOURCE	"func_32k_ck"
 57#define OMAP3_32K_SOURCE	"omap_32k_fck"
 58#define OMAP4_32K_SOURCE	"sys_32k_ck"
 59
 60#ifdef CONFIG_OMAP_32K_TIMER
 61#define OMAP2_CLKEV_SOURCE	OMAP2_32K_SOURCE
 62#define OMAP3_CLKEV_SOURCE	OMAP3_32K_SOURCE
 63#define OMAP4_CLKEV_SOURCE	OMAP4_32K_SOURCE
 64#define OMAP3_SECURE_TIMER	12
 65#else
 66#define OMAP2_CLKEV_SOURCE	OMAP2_MPU_SOURCE
 67#define OMAP3_CLKEV_SOURCE	OMAP3_MPU_SOURCE
 68#define OMAP4_CLKEV_SOURCE	OMAP4_MPU_SOURCE
 69#define OMAP3_SECURE_TIMER	1
 70#endif
 71
 72/* MAX_GPTIMER_ID: number of GPTIMERs on the chip */
 73#define MAX_GPTIMER_ID		12
 
 
 74
 75static u32 sys_timer_reserved;
 
 
 
 76
 77/* Clockevent code */
 78
 79static struct omap_dm_timer clkev;
 80static struct clock_event_device clockevent_gpt;
 81
 
 
 
 
 
 
 
 
 
 82static irqreturn_t omap2_gp_timer_interrupt(int irq, void *dev_id)
 83{
 84	struct clock_event_device *evt = &clockevent_gpt;
 85
 86	__omap_dm_timer_write_status(&clkev, OMAP_TIMER_INT_OVERFLOW);
 87
 88	evt->event_handler(evt);
 89	return IRQ_HANDLED;
 90}
 91
 92static struct irqaction omap2_gp_timer_irq = {
 93	.name		= "gp_timer",
 94	.flags		= IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
 95	.handler	= omap2_gp_timer_interrupt,
 96};
 97
 98static int omap2_gp_timer_set_next_event(unsigned long cycles,
 99					 struct clock_event_device *evt)
100{
101	__omap_dm_timer_load_start(&clkev, OMAP_TIMER_CTRL_ST,
102						0xffffffff - cycles, 1);
103
104	return 0;
105}
106
107static void omap2_gp_timer_set_mode(enum clock_event_mode mode,
108				    struct clock_event_device *evt)
109{
110	u32 period;
111
112	__omap_dm_timer_stop(&clkev, 1, clkev.rate);
113
114	switch (mode) {
115	case CLOCK_EVT_MODE_PERIODIC:
116		period = clkev.rate / HZ;
117		period -= 1;
118		/* Looks like we need to first set the load value separately */
119		__omap_dm_timer_write(&clkev, OMAP_TIMER_LOAD_REG,
120					0xffffffff - period, 1);
121		__omap_dm_timer_load_start(&clkev,
122					OMAP_TIMER_CTRL_AR | OMAP_TIMER_CTRL_ST,
123						0xffffffff - period, 1);
124		break;
125	case CLOCK_EVT_MODE_ONESHOT:
126		break;
127	case CLOCK_EVT_MODE_UNUSED:
128	case CLOCK_EVT_MODE_SHUTDOWN:
129	case CLOCK_EVT_MODE_RESUME:
130		break;
131	}
132}
133
134static struct clock_event_device clockevent_gpt = {
135	.name		= "gp_timer",
136	.features       = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT,
137	.shift		= 32,
138	.set_next_event	= omap2_gp_timer_set_next_event,
139	.set_mode	= omap2_gp_timer_set_mode,
140};
141
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
142static int __init omap_dm_timer_init_one(struct omap_dm_timer *timer,
143						int gptimer_id,
144						const char *fck_source)
 
 
145{
146	char name[10]; /* 10 = sizeof("gptXX_Xck0") */
 
 
147	struct omap_hwmod *oh;
148	struct resource irq_rsrc, mem_rsrc;
149	size_t size;
150	int res = 0;
151	int r;
152
153	sprintf(name, "timer%d", gptimer_id);
154	omap_hwmod_setup_one(name);
155	oh = omap_hwmod_lookup(name);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
156	if (!oh)
157		return -ENODEV;
158
159	r = omap_hwmod_get_resource_byname(oh, IORESOURCE_IRQ, NULL, &irq_rsrc);
160	if (r)
161		return -ENXIO;
162	timer->irq = irq_rsrc.start;
163
164	r = omap_hwmod_get_resource_byname(oh, IORESOURCE_MEM, NULL, &mem_rsrc);
165	if (r)
166		return -ENXIO;
167	timer->phys_base = mem_rsrc.start;
168	size = mem_rsrc.end - mem_rsrc.start;
 
 
 
 
 
 
 
 
 
 
169
170	/* Static mapping, never released */
171	timer->io_base = ioremap(timer->phys_base, size);
172	if (!timer->io_base)
173		return -ENXIO;
174
175	/* After the dmtimer is using hwmod these clocks won't be needed */
176	sprintf(name, "gpt%d_fck", gptimer_id);
177	timer->fclk = clk_get(NULL, name);
178	if (IS_ERR(timer->fclk))
179		return -ENODEV;
180
181	omap_hwmod_enable(oh);
182
183	sys_timer_reserved |= (1 << (gptimer_id - 1));
184
185	if (gptimer_id != 12) {
186		struct clk *src;
187
188		src = clk_get(NULL, fck_source);
189		if (IS_ERR(src)) {
190			res = -EINVAL;
191		} else {
192			res = __omap_dm_timer_set_source(timer->fclk, src);
193			if (IS_ERR_VALUE(res))
194				pr_warning("%s: timer%i cannot set source\n",
195						__func__, gptimer_id);
196			clk_put(src);
 
197		}
198	}
 
 
 
 
 
199	__omap_dm_timer_init_regs(timer);
200	__omap_dm_timer_reset(timer, 1, 1);
201	timer->posted = 1;
202
203	timer->rate = clk_get_rate(timer->fclk);
 
204
 
 
 
 
 
205	timer->reserved = 1;
206
207	return res;
208}
209
210static void __init omap2_gp_clockevent_init(int gptimer_id,
211						const char *fck_source)
 
212{
213	int res;
214
215	res = omap_dm_timer_init_one(&clkev, gptimer_id, fck_source);
 
 
 
 
 
 
 
 
 
 
 
216	BUG_ON(res);
217
218	omap2_gp_timer_irq.dev_id = (void *)&clkev;
219	setup_irq(clkev.irq, &omap2_gp_timer_irq);
220
221	__omap_dm_timer_int_enable(&clkev, OMAP_TIMER_INT_OVERFLOW);
222
223	clockevent_gpt.mult = div_sc(clkev.rate, NSEC_PER_SEC,
224				     clockevent_gpt.shift);
225	clockevent_gpt.max_delta_ns =
226		clockevent_delta2ns(0xffffffff, &clockevent_gpt);
227	clockevent_gpt.min_delta_ns =
228		clockevent_delta2ns(3, &clockevent_gpt);
229		/* Timer internal resynch latency. */
230
231	clockevent_gpt.cpumask = cpumask_of(0);
232	clockevents_register_device(&clockevent_gpt);
233
234	pr_info("OMAP clockevent source: GPTIMER%d at %lu Hz\n",
235		gptimer_id, clkev.rate);
236}
237
238/* Clocksource code */
239static struct omap_dm_timer clksrc;
240static bool use_gptimer_clksrc;
241
242/*
243 * clocksource
244 */
245static cycle_t clocksource_read_cycles(struct clocksource *cs)
246{
247	return (cycle_t)__omap_dm_timer_read_counter(&clksrc, 1);
 
248}
249
250static struct clocksource clocksource_gpt = {
251	.name		= "gp_timer",
252	.rating		= 300,
253	.read		= clocksource_read_cycles,
254	.mask		= CLOCKSOURCE_MASK(32),
255	.flags		= CLOCK_SOURCE_IS_CONTINUOUS,
256};
257
258static u32 notrace dmtimer_read_sched_clock(void)
259{
260	if (clksrc.reserved)
261		return __omap_dm_timer_read_counter(&clksrc, 1);
 
262
263	return 0;
264}
265
266#ifdef CONFIG_OMAP_32K_TIMER
 
 
 
 
267/* Setup free-running counter for clocksource */
268static int __init omap2_sync32k_clocksource_init(void)
269{
270	int ret;
 
271	struct omap_hwmod *oh;
272	void __iomem *vbase;
273	const char *oh_name = "counter_32k";
274
275	/*
 
 
 
 
 
 
 
 
 
 
 
 
 
 
276	 * First check hwmod data is available for sync32k counter
277	 */
278	oh = omap_hwmod_lookup(oh_name);
279	if (!oh || oh->slaves_cnt == 0)
280		return -ENODEV;
281
282	omap_hwmod_setup_one(oh_name);
283
284	vbase = omap_hwmod_get_mpu_rt_va(oh);
 
 
 
 
 
 
285	if (!vbase) {
286		pr_warn("%s: failed to get counter_32k resource\n", __func__);
287		return -ENXIO;
288	}
289
290	ret = omap_hwmod_enable(oh);
291	if (ret) {
292		pr_warn("%s: failed to enable counter_32k module (%d)\n",
293							__func__, ret);
294		return ret;
295	}
296
297	ret = omap_init_clocksource_32k(vbase);
298	if (ret) {
299		pr_warn("%s: failed to initialize counter_32k as a clocksource (%d)\n",
300							__func__, ret);
301		omap_hwmod_idle(oh);
302	}
303
304	return ret;
305}
306#else
307static inline int omap2_sync32k_clocksource_init(void)
308{
309	return -ENODEV;
310}
311#endif
312
313static void __init omap2_gptimer_clocksource_init(int gptimer_id,
314						const char *fck_source)
 
315{
316	int res;
317
318	res = omap_dm_timer_init_one(&clksrc, gptimer_id, fck_source);
 
 
 
 
 
319	BUG_ON(res);
320
321	__omap_dm_timer_load_start(&clksrc,
322			OMAP_TIMER_CTRL_ST | OMAP_TIMER_CTRL_AR, 0, 1);
323	setup_sched_clock(dmtimer_read_sched_clock, 32, clksrc.rate);
 
324
325	if (clocksource_register_hz(&clocksource_gpt, clksrc.rate))
326		pr_err("Could not register clocksource %s\n",
327			clocksource_gpt.name);
328	else
329		pr_info("OMAP clocksource: GPTIMER%d at %lu Hz\n",
330			gptimer_id, clksrc.rate);
331}
332
333static void __init omap2_clocksource_init(int gptimer_id,
334						const char *fck_source)
 
 
 
 
 
 
 
 
 
335{
336	/*
337	 * First give preference to kernel parameter configuration
338	 * by user (clocksource="gp_timer").
339	 *
340	 * In case of missing kernel parameter for clocksource,
341	 * first check for availability for 32k-sync timer, in case
342	 * of failure in finding 32k_counter module or registering
343	 * it as clocksource, execution will fallback to gp-timer.
344	 */
345	if (use_gptimer_clksrc == true)
346		omap2_gptimer_clocksource_init(gptimer_id, fck_source);
347	else if (omap2_sync32k_clocksource_init())
348		/* Fall back to gp-timer code */
349		omap2_gptimer_clocksource_init(gptimer_id, fck_source);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
350}
 
 
 
 
351
352#define OMAP_SYS_TIMER_INIT(name, clkev_nr, clkev_src,			\
353				clksrc_nr, clksrc_src)			\
354static void __init omap##name##_timer_init(void)			\
355{									\
356	omap2_gp_clockevent_init((clkev_nr), clkev_src);		\
357	omap2_clocksource_init((clksrc_nr), clksrc_src);		\
 
 
 
358}
359
360#define OMAP_SYS_TIMER(name)						\
361struct sys_timer omap##name##_timer = {					\
362	.init	= omap##name##_timer_init,				\
363};
 
 
 
 
 
 
 
 
 
 
364
365#ifdef CONFIG_ARCH_OMAP2
366OMAP_SYS_TIMER_INIT(2, 1, OMAP2_CLKEV_SOURCE, 2, OMAP2_MPU_SOURCE)
367OMAP_SYS_TIMER(2)
 
 
 
 
 
 
 
 
 
 
 
 
 
368#endif
369
370#ifdef CONFIG_ARCH_OMAP3
371OMAP_SYS_TIMER_INIT(3, 1, OMAP3_CLKEV_SOURCE, 2, OMAP3_MPU_SOURCE)
372OMAP_SYS_TIMER(3)
373OMAP_SYS_TIMER_INIT(3_secure, OMAP3_SECURE_TIMER, OMAP3_CLKEV_SOURCE,
374			2, OMAP3_MPU_SOURCE)
375OMAP_SYS_TIMER(3_secure)
376#endif
377
378#ifdef CONFIG_ARCH_OMAP4
379#ifdef CONFIG_LOCAL_TIMERS
380static DEFINE_TWD_LOCAL_TIMER(twd_local_timer,
381			      OMAP44XX_LOCAL_TWD_BASE,
382			      OMAP44XX_IRQ_LOCALTIMER);
383#endif
384
385static void __init omap4_timer_init(void)
386{
387	omap2_gp_clockevent_init(1, OMAP4_CLKEV_SOURCE);
388	omap2_clocksource_init(2, OMAP4_MPU_SOURCE);
389#ifdef CONFIG_LOCAL_TIMERS
390	/* Local timers are not supprted on OMAP4430 ES1.0 */
391	if (omap_rev() != OMAP4430_REV_ES1_0) {
392		int err;
393
 
 
 
 
 
394		err = twd_local_timer_register(&twd_local_timer);
395		if (err)
396			pr_err("twd_local_timer_register failed %d\n", err);
397	}
398#endif
399}
400OMAP_SYS_TIMER(4)
401#endif
402
403/**
404 * omap2_dm_timer_set_src - change the timer input clock source
405 * @pdev:	timer platform device pointer
406 * @source:	array index of parent clock source
407 */
408static int omap2_dm_timer_set_src(struct platform_device *pdev, int source)
409{
410	int ret;
411	struct dmtimer_platform_data *pdata = pdev->dev.platform_data;
412	struct clk *fclk, *parent;
413	char *parent_name = NULL;
414
415	fclk = clk_get(&pdev->dev, "fck");
416	if (IS_ERR_OR_NULL(fclk)) {
417		dev_err(&pdev->dev, "%s: %d: clk_get() FAILED\n",
418				__func__, __LINE__);
419		return -EINVAL;
420	}
421
422	switch (source) {
423	case OMAP_TIMER_SRC_SYS_CLK:
424		parent_name = "sys_ck";
425		break;
426
427	case OMAP_TIMER_SRC_32_KHZ:
428		parent_name = "32k_ck";
429		break;
430
431	case OMAP_TIMER_SRC_EXT_CLK:
432		if (pdata->timer_ip_version == OMAP_TIMER_IP_VERSION_1) {
433			parent_name = "alt_ck";
434			break;
435		}
436		dev_err(&pdev->dev, "%s: %d: invalid clk src.\n",
437			__func__, __LINE__);
438		clk_put(fclk);
439		return -EINVAL;
440	}
441
442	parent = clk_get(&pdev->dev, parent_name);
443	if (IS_ERR_OR_NULL(parent)) {
444		dev_err(&pdev->dev, "%s: %d: clk_get() %s FAILED\n",
445			__func__, __LINE__, parent_name);
446		clk_put(fclk);
447		return -EINVAL;
448	}
449
450	ret = clk_set_parent(fclk, parent);
451	if (IS_ERR_VALUE(ret)) {
452		dev_err(&pdev->dev, "%s: clk_set_parent() to %s FAILED\n",
453			__func__, parent_name);
454		ret = -EINVAL;
455	}
456
457	clk_put(parent);
458	clk_put(fclk);
 
 
 
459
460	return ret;
461}
 
462
463/**
464 * omap_timer_init - build and register timer device with an
465 * associated timer hwmod
466 * @oh:	timer hwmod pointer to be used to build timer device
467 * @user:	parameter that can be passed from calling hwmod API
468 *
469 * Called by omap_hwmod_for_each_by_class to register each of the timer
470 * devices present in the system. The number of timer devices is known
471 * by parsing through the hwmod database for a given class name. At the
472 * end of function call memory is allocated for timer device and it is
473 * registered to the framework ready to be proved by the driver.
474 */
475static int __init omap_timer_init(struct omap_hwmod *oh, void *unused)
476{
477	int id;
478	int ret = 0;
479	char *name = "omap_timer";
480	struct dmtimer_platform_data *pdata;
481	struct platform_device *pdev;
482	struct omap_timer_capability_dev_attr *timer_dev_attr;
483	struct powerdomain *pwrdm;
484
485	pr_debug("%s: %s\n", __func__, oh->name);
486
487	/* on secure device, do not register secure timer */
488	timer_dev_attr = oh->dev_attr;
489	if (omap_type() != OMAP2_DEVICE_TYPE_GP && timer_dev_attr)
490		if (timer_dev_attr->timer_capability == OMAP_TIMER_SECURE)
491			return ret;
492
493	pdata = kzalloc(sizeof(*pdata), GFP_KERNEL);
494	if (!pdata) {
495		pr_err("%s: No memory for [%s]\n", __func__, oh->name);
496		return -ENOMEM;
497	}
498
499	/*
500	 * Extract the IDs from name field in hwmod database
501	 * and use the same for constructing ids' for the
502	 * timer devices. In a way, we are avoiding usage of
503	 * static variable witin the function to do the same.
504	 * CAUTION: We have to be careful and make sure the
505	 * name in hwmod database does not change in which case
506	 * we might either make corresponding change here or
507	 * switch back static variable mechanism.
508	 */
509	sscanf(oh->name, "timer%2d", &id);
510
511	pdata->set_timer_src = omap2_dm_timer_set_src;
512	pdata->timer_ip_version = oh->class->rev;
513
514	/* Mark clocksource and clockevent timers as reserved */
515	if ((sys_timer_reserved >> (id - 1)) & 0x1)
516		pdata->reserved = 1;
517
518	pwrdm = omap_hwmod_get_pwrdm(oh);
519	pdata->loses_context = pwrdm_can_ever_lose_context(pwrdm);
520#ifdef CONFIG_PM
521	pdata->get_context_loss_count = omap_pm_get_dev_context_loss_count;
522#endif
523	pdev = omap_device_build(name, id, oh, pdata, sizeof(*pdata),
524				 NULL, 0, 0);
525
526	if (IS_ERR(pdev)) {
527		pr_err("%s: Can't build omap_device for %s: %s.\n",
528			__func__, name, oh->name);
529		ret = -EINVAL;
530	}
531
532	kfree(pdata);
533
534	return ret;
535}
536
537/**
538 * omap2_dm_timer_init - top level regular device initialization
539 *
540 * Uses dedicated hwmod api to parse through hwmod database for
541 * given class name and then build and register the timer device.
542 */
543static int __init omap2_dm_timer_init(void)
544{
545	int ret;
546
 
 
 
 
547	ret = omap_hwmod_for_each_by_class("timer", omap_timer_init, NULL);
548	if (unlikely(ret)) {
549		pr_err("%s: device registration failed.\n", __func__);
550		return -EINVAL;
551	}
552
553	return 0;
554}
555arch_initcall(omap2_dm_timer_init);
556
557/**
558 * omap2_override_clocksource - clocksource override with user configuration
559 *
560 * Allows user to override default clocksource, using kernel parameter
561 *   clocksource="gp_timer"	(For all OMAP2PLUS architectures)
562 *
563 * Note that, here we are using same standard kernel parameter "clocksource=",
564 * and not introducing any OMAP specific interface.
565 */
566static int __init omap2_override_clocksource(char *str)
567{
568	if (!str)
569		return 0;
570	/*
571	 * For OMAP architecture, we only have two options
572	 *    - sync_32k (default)
573	 *    - gp_timer (sys_clk based)
574	 */
575	if (!strcmp(str, "gp_timer"))
576		use_gptimer_clksrc = true;
577
578	return 0;
579}
580early_param("clocksource", omap2_override_clocksource);
v3.15
  1/*
  2 * linux/arch/arm/mach-omap2/timer.c
  3 *
  4 * OMAP2 GP timer support.
  5 *
  6 * Copyright (C) 2009 Nokia Corporation
  7 *
  8 * Update to use new clocksource/clockevent layers
  9 * Author: Kevin Hilman, MontaVista Software, Inc. <source@mvista.com>
 10 * Copyright (C) 2007 MontaVista Software, Inc.
 11 *
 12 * Original driver:
 13 * Copyright (C) 2005 Nokia Corporation
 14 * Author: Paul Mundt <paul.mundt@nokia.com>
 15 *         Juha Yrjölä <juha.yrjola@nokia.com>
 16 * OMAP Dual-mode timer framework support by Timo Teras
 17 *
 18 * Some parts based off of TI's 24xx code:
 19 *
 20 * Copyright (C) 2004-2009 Texas Instruments, Inc.
 21 *
 22 * Roughly modelled after the OMAP1 MPU timer code.
 23 * Added OMAP4 support - Santosh Shilimkar <santosh.shilimkar@ti.com>
 24 *
 25 * This file is subject to the terms and conditions of the GNU General Public
 26 * License. See the file "COPYING" in the main directory of this archive
 27 * for more details.
 28 */
 29#include <linux/init.h>
 30#include <linux/time.h>
 31#include <linux/interrupt.h>
 32#include <linux/err.h>
 33#include <linux/clk.h>
 34#include <linux/delay.h>
 35#include <linux/irq.h>
 36#include <linux/clocksource.h>
 37#include <linux/clockchips.h>
 38#include <linux/slab.h>
 39#include <linux/of.h>
 40#include <linux/of_address.h>
 41#include <linux/of_irq.h>
 42#include <linux/platform_device.h>
 43#include <linux/platform_data/dmtimer-omap.h>
 44#include <linux/sched_clock.h>
 45
 46#include <asm/mach/time.h>
 
 47#include <asm/smp_twd.h>
 
 
 
 
 
 
 
 
 
 48
 49#include "omap_hwmod.h"
 50#include "omap_device.h"
 51#include <plat/counter-32k.h>
 52#include <plat/dmtimer.h>
 53#include "omap-pm.h"
 
 
 
 
 
 
 
 
 
 
 
 
 
 54
 55#include "soc.h"
 56#include "common.h"
 57#include "powerdomain.h"
 58#include "omap-secure.h"
 59
 60#define REALTIME_COUNTER_BASE				0x48243200
 61#define INCREMENTER_NUMERATOR_OFFSET			0x10
 62#define INCREMENTER_DENUMERATOR_RELOAD_OFFSET		0x14
 63#define NUMERATOR_DENUMERATOR_MASK			0xfffff000
 64
 65/* Clockevent code */
 66
 67static struct omap_dm_timer clkev;
 68static struct clock_event_device clockevent_gpt;
 69
 70#ifdef CONFIG_SOC_HAS_REALTIME_COUNTER
 71static unsigned long arch_timer_freq;
 72
 73void set_cntfreq(void)
 74{
 75	omap_smc1(OMAP5_DRA7_MON_SET_CNTFRQ_INDEX, arch_timer_freq);
 76}
 77#endif
 78
 79static irqreturn_t omap2_gp_timer_interrupt(int irq, void *dev_id)
 80{
 81	struct clock_event_device *evt = &clockevent_gpt;
 82
 83	__omap_dm_timer_write_status(&clkev, OMAP_TIMER_INT_OVERFLOW);
 84
 85	evt->event_handler(evt);
 86	return IRQ_HANDLED;
 87}
 88
 89static struct irqaction omap2_gp_timer_irq = {
 90	.name		= "gp_timer",
 91	.flags		= IRQF_TIMER | IRQF_IRQPOLL,
 92	.handler	= omap2_gp_timer_interrupt,
 93};
 94
 95static int omap2_gp_timer_set_next_event(unsigned long cycles,
 96					 struct clock_event_device *evt)
 97{
 98	__omap_dm_timer_load_start(&clkev, OMAP_TIMER_CTRL_ST,
 99				   0xffffffff - cycles, OMAP_TIMER_POSTED);
100
101	return 0;
102}
103
104static void omap2_gp_timer_set_mode(enum clock_event_mode mode,
105				    struct clock_event_device *evt)
106{
107	u32 period;
108
109	__omap_dm_timer_stop(&clkev, OMAP_TIMER_POSTED, clkev.rate);
110
111	switch (mode) {
112	case CLOCK_EVT_MODE_PERIODIC:
113		period = clkev.rate / HZ;
114		period -= 1;
115		/* Looks like we need to first set the load value separately */
116		__omap_dm_timer_write(&clkev, OMAP_TIMER_LOAD_REG,
117				      0xffffffff - period, OMAP_TIMER_POSTED);
118		__omap_dm_timer_load_start(&clkev,
119					OMAP_TIMER_CTRL_AR | OMAP_TIMER_CTRL_ST,
120					0xffffffff - period, OMAP_TIMER_POSTED);
121		break;
122	case CLOCK_EVT_MODE_ONESHOT:
123		break;
124	case CLOCK_EVT_MODE_UNUSED:
125	case CLOCK_EVT_MODE_SHUTDOWN:
126	case CLOCK_EVT_MODE_RESUME:
127		break;
128	}
129}
130
131static struct clock_event_device clockevent_gpt = {
 
132	.features       = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT,
133	.rating		= 300,
134	.set_next_event	= omap2_gp_timer_set_next_event,
135	.set_mode	= omap2_gp_timer_set_mode,
136};
137
138static struct property device_disabled = {
139	.name = "status",
140	.length = sizeof("disabled"),
141	.value = "disabled",
142};
143
144static struct of_device_id omap_timer_match[] __initdata = {
145	{ .compatible = "ti,omap2420-timer", },
146	{ .compatible = "ti,omap3430-timer", },
147	{ .compatible = "ti,omap4430-timer", },
148	{ .compatible = "ti,omap5430-timer", },
149	{ .compatible = "ti,am335x-timer", },
150	{ .compatible = "ti,am335x-timer-1ms", },
151	{ }
152};
153
154/**
155 * omap_get_timer_dt - get a timer using device-tree
156 * @match	- device-tree match structure for matching a device type
157 * @property	- optional timer property to match
158 *
159 * Helper function to get a timer during early boot using device-tree for use
160 * as kernel system timer. Optionally, the property argument can be used to
161 * select a timer with a specific property. Once a timer is found then mark
162 * the timer node in device-tree as disabled, to prevent the kernel from
163 * registering this timer as a platform device and so no one else can use it.
164 */
165static struct device_node * __init omap_get_timer_dt(struct of_device_id *match,
166						     const char *property)
167{
168	struct device_node *np;
169
170	for_each_matching_node(np, match) {
171		if (!of_device_is_available(np))
172			continue;
173
174		if (property && !of_get_property(np, property, NULL))
175			continue;
176
177		if (!property && (of_get_property(np, "ti,timer-alwon", NULL) ||
178				  of_get_property(np, "ti,timer-dsp", NULL) ||
179				  of_get_property(np, "ti,timer-pwm", NULL) ||
180				  of_get_property(np, "ti,timer-secure", NULL)))
181			continue;
182
183		of_add_property(np, &device_disabled);
184		return np;
185	}
186
187	return NULL;
188}
189
190/**
191 * omap_dmtimer_init - initialisation function when device tree is used
192 *
193 * For secure OMAP3 devices, timers with device type "timer-secure" cannot
194 * be used by the kernel as they are reserved. Therefore, to prevent the
195 * kernel registering these devices remove them dynamically from the device
196 * tree on boot.
197 */
198static void __init omap_dmtimer_init(void)
199{
200	struct device_node *np;
201
202	if (!cpu_is_omap34xx())
203		return;
204
205	/* If we are a secure device, remove any secure timer nodes */
206	if ((omap_type() != OMAP2_DEVICE_TYPE_GP)) {
207		np = omap_get_timer_dt(omap_timer_match, "ti,timer-secure");
208		if (np)
209			of_node_put(np);
210	}
211}
212
213/**
214 * omap_dm_timer_get_errata - get errata flags for a timer
215 *
216 * Get the timer errata flags that are specific to the OMAP device being used.
217 */
218static u32 __init omap_dm_timer_get_errata(void)
219{
220	if (cpu_is_omap24xx())
221		return 0;
222
223	return OMAP_TIMER_ERRATA_I103_I767;
224}
225
226static int __init omap_dm_timer_init_one(struct omap_dm_timer *timer,
227					 const char *fck_source,
228					 const char *property,
229					 const char **timer_name,
230					 int posted)
231{
232	char name[10]; /* 10 = sizeof("gptXX_Xck0") */
233	const char *oh_name = NULL;
234	struct device_node *np;
235	struct omap_hwmod *oh;
236	struct resource irq, mem;
237	struct clk *src;
238	int r = 0;
239
240	if (of_have_populated_dt()) {
241		np = omap_get_timer_dt(omap_timer_match, property);
242		if (!np)
243			return -ENODEV;
244
245		of_property_read_string_index(np, "ti,hwmods", 0, &oh_name);
246		if (!oh_name)
247			return -ENODEV;
248
249		timer->irq = irq_of_parse_and_map(np, 0);
250		if (!timer->irq)
251			return -ENXIO;
252
253		timer->io_base = of_iomap(np, 0);
254
255		of_node_put(np);
256	} else {
257		if (omap_dm_timer_reserve_systimer(timer->id))
258			return -ENODEV;
259
260		sprintf(name, "timer%d", timer->id);
261		oh_name = name;
262	}
263
264	oh = omap_hwmod_lookup(oh_name);
265	if (!oh)
266		return -ENODEV;
267
268	*timer_name = oh->name;
 
 
 
269
270	if (!of_have_populated_dt()) {
271		r = omap_hwmod_get_resource_byname(oh, IORESOURCE_IRQ, NULL,
272						   &irq);
273		if (r)
274			return -ENXIO;
275		timer->irq = irq.start;
276
277		r = omap_hwmod_get_resource_byname(oh, IORESOURCE_MEM, NULL,
278						   &mem);
279		if (r)
280			return -ENXIO;
281
282		/* Static mapping, never released */
283		timer->io_base = ioremap(mem.start, mem.end - mem.start);
284	}
285
 
 
286	if (!timer->io_base)
287		return -ENXIO;
288
289	/* After the dmtimer is using hwmod these clocks won't be needed */
290	timer->fclk = clk_get(NULL, omap_hwmod_get_main_clk(oh));
 
291	if (IS_ERR(timer->fclk))
292		return PTR_ERR(timer->fclk);
293
294	src = clk_get(NULL, fck_source);
295	if (IS_ERR(src))
296		return PTR_ERR(src);
297
298	if (clk_get_parent(timer->fclk) != src) {
299		r = clk_set_parent(timer->fclk, src);
300		if (r < 0) {
301			pr_warn("%s: %s cannot set source\n", __func__,
302				oh->name);
 
 
 
 
 
 
303			clk_put(src);
304			return r;
305		}
306	}
307
308	clk_put(src);
309
310	omap_hwmod_setup_one(oh_name);
311	omap_hwmod_enable(oh);
312	__omap_dm_timer_init_regs(timer);
 
 
313
314	if (posted)
315		__omap_dm_timer_enable_posted(timer);
316
317	/* Check that the intended posted configuration matches the actual */
318	if (posted != timer->posted)
319		return -EINVAL;
320
321	timer->rate = clk_get_rate(timer->fclk);
322	timer->reserved = 1;
323
324	return r;
325}
326
327static void __init omap2_gp_clockevent_init(int gptimer_id,
328						const char *fck_source,
329						const char *property)
330{
331	int res;
332
333	clkev.id = gptimer_id;
334	clkev.errata = omap_dm_timer_get_errata();
335
336	/*
337	 * For clock-event timers we never read the timer counter and
338	 * so we are not impacted by errata i103 and i767. Therefore,
339	 * we can safely ignore this errata for clock-event timers.
340	 */
341	__omap_dm_timer_override_errata(&clkev, OMAP_TIMER_ERRATA_I103_I767);
342
343	res = omap_dm_timer_init_one(&clkev, fck_source, property,
344				     &clockevent_gpt.name, OMAP_TIMER_POSTED);
345	BUG_ON(res);
346
347	omap2_gp_timer_irq.dev_id = &clkev;
348	setup_irq(clkev.irq, &omap2_gp_timer_irq);
349
350	__omap_dm_timer_int_enable(&clkev, OMAP_TIMER_INT_OVERFLOW);
351
352	clockevent_gpt.cpumask = cpu_possible_mask;
353	clockevent_gpt.irq = omap_dm_timer_get_irq(&clkev);
354	clockevents_config_and_register(&clockevent_gpt, clkev.rate,
355					3, /* Timer internal resynch latency */
356					0xffffffff);
 
 
 
 
 
357
358	pr_info("OMAP clockevent source: %s at %lu Hz\n", clockevent_gpt.name,
359		clkev.rate);
360}
361
362/* Clocksource code */
363static struct omap_dm_timer clksrc;
364static bool use_gptimer_clksrc;
365
366/*
367 * clocksource
368 */
369static cycle_t clocksource_read_cycles(struct clocksource *cs)
370{
371	return (cycle_t)__omap_dm_timer_read_counter(&clksrc,
372						     OMAP_TIMER_NONPOSTED);
373}
374
375static struct clocksource clocksource_gpt = {
 
376	.rating		= 300,
377	.read		= clocksource_read_cycles,
378	.mask		= CLOCKSOURCE_MASK(32),
379	.flags		= CLOCK_SOURCE_IS_CONTINUOUS,
380};
381
382static u64 notrace dmtimer_read_sched_clock(void)
383{
384	if (clksrc.reserved)
385		return __omap_dm_timer_read_counter(&clksrc,
386						    OMAP_TIMER_NONPOSTED);
387
388	return 0;
389}
390
391static struct of_device_id omap_counter_match[] __initdata = {
392	{ .compatible = "ti,omap-counter32k", },
393	{ }
394};
395
396/* Setup free-running counter for clocksource */
397static int __init __maybe_unused omap2_sync32k_clocksource_init(void)
398{
399	int ret;
400	struct device_node *np = NULL;
401	struct omap_hwmod *oh;
402	void __iomem *vbase;
403	const char *oh_name = "counter_32k";
404
405	/*
406	 * If device-tree is present, then search the DT blob
407	 * to see if the 32kHz counter is supported.
408	 */
409	if (of_have_populated_dt()) {
410		np = omap_get_timer_dt(omap_counter_match, NULL);
411		if (!np)
412			return -ENODEV;
413
414		of_property_read_string_index(np, "ti,hwmods", 0, &oh_name);
415		if (!oh_name)
416			return -ENODEV;
417	}
418
419	/*
420	 * First check hwmod data is available for sync32k counter
421	 */
422	oh = omap_hwmod_lookup(oh_name);
423	if (!oh || oh->slaves_cnt == 0)
424		return -ENODEV;
425
426	omap_hwmod_setup_one(oh_name);
427
428	if (np) {
429		vbase = of_iomap(np, 0);
430		of_node_put(np);
431	} else {
432		vbase = omap_hwmod_get_mpu_rt_va(oh);
433	}
434
435	if (!vbase) {
436		pr_warn("%s: failed to get counter_32k resource\n", __func__);
437		return -ENXIO;
438	}
439
440	ret = omap_hwmod_enable(oh);
441	if (ret) {
442		pr_warn("%s: failed to enable counter_32k module (%d)\n",
443							__func__, ret);
444		return ret;
445	}
446
447	ret = omap_init_clocksource_32k(vbase);
448	if (ret) {
449		pr_warn("%s: failed to initialize counter_32k as a clocksource (%d)\n",
450							__func__, ret);
451		omap_hwmod_idle(oh);
452	}
453
454	return ret;
455}
 
 
 
 
 
 
456
457static void __init omap2_gptimer_clocksource_init(int gptimer_id,
458						  const char *fck_source,
459						  const char *property)
460{
461	int res;
462
463	clksrc.id = gptimer_id;
464	clksrc.errata = omap_dm_timer_get_errata();
465
466	res = omap_dm_timer_init_one(&clksrc, fck_source, property,
467				     &clocksource_gpt.name,
468				     OMAP_TIMER_NONPOSTED);
469	BUG_ON(res);
470
471	__omap_dm_timer_load_start(&clksrc,
472				   OMAP_TIMER_CTRL_ST | OMAP_TIMER_CTRL_AR, 0,
473				   OMAP_TIMER_NONPOSTED);
474	sched_clock_register(dmtimer_read_sched_clock, 32, clksrc.rate);
475
476	if (clocksource_register_hz(&clocksource_gpt, clksrc.rate))
477		pr_err("Could not register clocksource %s\n",
478			clocksource_gpt.name);
479	else
480		pr_info("OMAP clocksource: %s at %lu Hz\n",
481			clocksource_gpt.name, clksrc.rate);
482}
483
484#ifdef CONFIG_SOC_HAS_REALTIME_COUNTER
485/*
486 * The realtime counter also called master counter, is a free-running
487 * counter, which is related to real time. It produces the count used
488 * by the CPU local timer peripherals in the MPU cluster. The timer counts
489 * at a rate of 6.144 MHz. Because the device operates on different clocks
490 * in different power modes, the master counter shifts operation between
491 * clocks, adjusting the increment per clock in hardware accordingly to
492 * maintain a constant count rate.
493 */
494static void __init realtime_counter_init(void)
495{
496	void __iomem *base;
497	static struct clk *sys_clk;
498	unsigned long rate;
499	unsigned int reg, num, den;
500
501	base = ioremap(REALTIME_COUNTER_BASE, SZ_32);
502	if (!base) {
503		pr_err("%s: ioremap failed\n", __func__);
504		return;
505	}
506	sys_clk = clk_get(NULL, "sys_clkin");
507	if (IS_ERR(sys_clk)) {
508		pr_err("%s: failed to get system clock handle\n", __func__);
509		iounmap(base);
510		return;
511	}
512
513	rate = clk_get_rate(sys_clk);
514	/* Numerator/denumerator values refer TRM Realtime Counter section */
515	switch (rate) {
516	case 1200000:
517		num = 64;
518		den = 125;
519		break;
520	case 1300000:
521		num = 768;
522		den = 1625;
523		break;
524	case 19200000:
525		num = 8;
526		den = 25;
527		break;
528	case 20000000:
529		num = 192;
530		den = 625;
531		break;
532	case 2600000:
533		num = 384;
534		den = 1625;
535		break;
536	case 2700000:
537		num = 256;
538		den = 1125;
539		break;
540	case 38400000:
541	default:
542		/* Program it for 38.4 MHz */
543		num = 4;
544		den = 25;
545		break;
546	}
547
548	/* Program numerator and denumerator registers */
549	reg = __raw_readl(base + INCREMENTER_NUMERATOR_OFFSET) &
550			NUMERATOR_DENUMERATOR_MASK;
551	reg |= num;
552	__raw_writel(reg, base + INCREMENTER_NUMERATOR_OFFSET);
553
554	reg = __raw_readl(base + INCREMENTER_DENUMERATOR_RELOAD_OFFSET) &
555			NUMERATOR_DENUMERATOR_MASK;
556	reg |= den;
557	__raw_writel(reg, base + INCREMENTER_DENUMERATOR_RELOAD_OFFSET);
558
559	arch_timer_freq = (rate / den) * num;
560	set_cntfreq();
561
562	iounmap(base);
563}
564#else
565static inline void __init realtime_counter_init(void)
566{}
567#endif
568
569#define OMAP_SYS_GP_TIMER_INIT(name, clkev_nr, clkev_src, clkev_prop,	\
570			       clksrc_nr, clksrc_src, clksrc_prop)	\
571void __init omap##name##_gptimer_timer_init(void)			\
572{									\
573	omap_clk_init();					\
574	omap_dmtimer_init();						\
575	omap2_gp_clockevent_init((clkev_nr), clkev_src, clkev_prop);	\
576	omap2_gptimer_clocksource_init((clksrc_nr), clksrc_src,		\
577					clksrc_prop);			\
578}
579
580#define OMAP_SYS_32K_TIMER_INIT(name, clkev_nr, clkev_src, clkev_prop,	\
581				clksrc_nr, clksrc_src, clksrc_prop)	\
582void __init omap##name##_sync32k_timer_init(void)		\
583{									\
584	omap_clk_init();					\
585	omap_dmtimer_init();						\
586	omap2_gp_clockevent_init((clkev_nr), clkev_src, clkev_prop);	\
587	/* Enable the use of clocksource="gp_timer" kernel parameter */	\
588	if (use_gptimer_clksrc)						\
589		omap2_gptimer_clocksource_init((clksrc_nr), clksrc_src,	\
590						clksrc_prop);		\
591	else								\
592		omap2_sync32k_clocksource_init();			\
593}
594
595#ifdef CONFIG_ARCH_OMAP2
596OMAP_SYS_32K_TIMER_INIT(2, 1, "timer_32k_ck", "ti,timer-alwon",
597			2, "timer_sys_ck", NULL);
598#endif /* CONFIG_ARCH_OMAP2 */
599
600#if defined(CONFIG_ARCH_OMAP3) || defined(CONFIG_SOC_AM43XX)
601OMAP_SYS_32K_TIMER_INIT(3, 1, "timer_32k_ck", "ti,timer-alwon",
602			2, "timer_sys_ck", NULL);
603OMAP_SYS_32K_TIMER_INIT(3_secure, 12, "secure_32k_fck", "ti,timer-secure",
604			2, "timer_sys_ck", NULL);
605#endif /* CONFIG_ARCH_OMAP3 */
606
607#if defined(CONFIG_ARCH_OMAP3) || defined(CONFIG_SOC_AM33XX) || \
608	defined(CONFIG_SOC_AM43XX)
609OMAP_SYS_GP_TIMER_INIT(3, 2, "timer_sys_ck", NULL,
610		       1, "timer_sys_ck", "ti,timer-alwon");
611#endif
612
613#if defined(CONFIG_ARCH_OMAP4) || defined(CONFIG_SOC_OMAP5) || \
614	defined(CONFIG_SOC_DRA7XX)
615static OMAP_SYS_32K_TIMER_INIT(4, 1, "timer_32k_ck", "ti,timer-alwon",
616			       2, "sys_clkin_ck", NULL);
 
 
617#endif
618
619#ifdef CONFIG_ARCH_OMAP4
620#ifdef CONFIG_HAVE_ARM_TWD
621static DEFINE_TWD_LOCAL_TIMER(twd_local_timer, OMAP44XX_LOCAL_TWD_BASE, 29);
622void __init omap4_local_timer_init(void)
 
 
 
 
623{
624	omap4_sync32k_timer_init();
 
 
625	/* Local timers are not supprted on OMAP4430 ES1.0 */
626	if (omap_rev() != OMAP4430_REV_ES1_0) {
627		int err;
628
629		if (of_have_populated_dt()) {
630			clocksource_of_init();
631			return;
632		}
633
634		err = twd_local_timer_register(&twd_local_timer);
635		if (err)
636			pr_err("twd_local_timer_register failed %d\n", err);
637	}
 
638}
639#else
640void __init omap4_local_timer_init(void)
 
 
 
 
 
 
 
641{
642	omap4_sync32k_timer_init();
643}
644#endif /* CONFIG_HAVE_ARM_TWD */
645#endif /* CONFIG_ARCH_OMAP4 */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
646
647#if defined(CONFIG_SOC_OMAP5) || defined(CONFIG_SOC_DRA7XX)
648void __init omap5_realtime_timer_init(void)
649{
650	omap4_sync32k_timer_init();
651	realtime_counter_init();
652
653	clocksource_of_init();
654}
655#endif /* CONFIG_SOC_OMAP5 || CONFIG_SOC_DRA7XX */
656
657/**
658 * omap_timer_init - build and register timer device with an
659 * associated timer hwmod
660 * @oh:	timer hwmod pointer to be used to build timer device
661 * @user:	parameter that can be passed from calling hwmod API
662 *
663 * Called by omap_hwmod_for_each_by_class to register each of the timer
664 * devices present in the system. The number of timer devices is known
665 * by parsing through the hwmod database for a given class name. At the
666 * end of function call memory is allocated for timer device and it is
667 * registered to the framework ready to be proved by the driver.
668 */
669static int __init omap_timer_init(struct omap_hwmod *oh, void *unused)
670{
671	int id;
672	int ret = 0;
673	char *name = "omap_timer";
674	struct dmtimer_platform_data *pdata;
675	struct platform_device *pdev;
676	struct omap_timer_capability_dev_attr *timer_dev_attr;
 
677
678	pr_debug("%s: %s\n", __func__, oh->name);
679
680	/* on secure device, do not register secure timer */
681	timer_dev_attr = oh->dev_attr;
682	if (omap_type() != OMAP2_DEVICE_TYPE_GP && timer_dev_attr)
683		if (timer_dev_attr->timer_capability == OMAP_TIMER_SECURE)
684			return ret;
685
686	pdata = kzalloc(sizeof(*pdata), GFP_KERNEL);
687	if (!pdata) {
688		pr_err("%s: No memory for [%s]\n", __func__, oh->name);
689		return -ENOMEM;
690	}
691
692	/*
693	 * Extract the IDs from name field in hwmod database
694	 * and use the same for constructing ids' for the
695	 * timer devices. In a way, we are avoiding usage of
696	 * static variable witin the function to do the same.
697	 * CAUTION: We have to be careful and make sure the
698	 * name in hwmod database does not change in which case
699	 * we might either make corresponding change here or
700	 * switch back static variable mechanism.
701	 */
702	sscanf(oh->name, "timer%2d", &id);
703
704	if (timer_dev_attr)
705		pdata->timer_capability = timer_dev_attr->timer_capability;
706
707	pdata->timer_errata = omap_dm_timer_get_errata();
 
 
 
 
 
 
708	pdata->get_context_loss_count = omap_pm_get_dev_context_loss_count;
709
710	pdev = omap_device_build(name, id, oh, pdata, sizeof(*pdata));
 
711
712	if (IS_ERR(pdev)) {
713		pr_err("%s: Can't build omap_device for %s: %s.\n",
714			__func__, name, oh->name);
715		ret = -EINVAL;
716	}
717
718	kfree(pdata);
719
720	return ret;
721}
722
723/**
724 * omap2_dm_timer_init - top level regular device initialization
725 *
726 * Uses dedicated hwmod api to parse through hwmod database for
727 * given class name and then build and register the timer device.
728 */
729static int __init omap2_dm_timer_init(void)
730{
731	int ret;
732
733	/* If dtb is there, the devices will be created dynamically */
734	if (of_have_populated_dt())
735		return -ENODEV;
736
737	ret = omap_hwmod_for_each_by_class("timer", omap_timer_init, NULL);
738	if (unlikely(ret)) {
739		pr_err("%s: device registration failed.\n", __func__);
740		return -EINVAL;
741	}
742
743	return 0;
744}
745omap_arch_initcall(omap2_dm_timer_init);
746
747/**
748 * omap2_override_clocksource - clocksource override with user configuration
749 *
750 * Allows user to override default clocksource, using kernel parameter
751 *   clocksource="gp_timer"	(For all OMAP2PLUS architectures)
752 *
753 * Note that, here we are using same standard kernel parameter "clocksource=",
754 * and not introducing any OMAP specific interface.
755 */
756static int __init omap2_override_clocksource(char *str)
757{
758	if (!str)
759		return 0;
760	/*
761	 * For OMAP architecture, we only have two options
762	 *    - sync_32k (default)
763	 *    - gp_timer (sys_clk based)
764	 */
765	if (!strcmp(str, "gp_timer"))
766		use_gptimer_clksrc = true;
767
768	return 0;
769}
770early_param("clocksource", omap2_override_clocksource);