forked from Minki/linux
ad001f145d
Now the omap4 clock framework is in mainline and clk_get_rate() is functional. Hence reomve the hardcoded clock hacks. This patch also fixes Division by zero in kernel. Backtrace: [<c0025fb8>] (dump_backtrace+0x0/0x110) from [<c017febc>] (dump_stack+0x18/0x1c) r7:60000093 r6:c0641050 r5:c0223e78 r4:c02126b4 [<c017fea4>] (dump_stack+0x0/0x1c) from [<c00260fc>] (__div0+0x18/0x20) [<c00260e4>] (__div0+0x0/0x20) from [<c01431fc>] (Ldiv0+0x8/0x10) [<c00318d4>] (omap_dm_timer_stop+0x0/0xb0) from [<c002c148>] (omap2_gp_timer_set_mode+0x1c/0x68) r5:c0223e78 r4:00000000 [<c002c12c>] (omap2_gp_timer_set_mode+0x0/0x68) from [<c0063270>] (clockevents_set_mode+0x30/0x64) r5:c020cae0 r4:00000000 [<c0063240>] (clockevents_set_mode+0x0/0x64) from [<c00632fc>] (clockevents_exchange_device+0x30/0x9c) r5:c020cae0 r4:c02146e0 [<c00632cc>] (clockevents_exchange_device+0x0/0x9c) from [<c00636e0>] (tick_notify+0x17c/0x404) r7:00000000 r6:c0641050 r5:00000000 r4:c020cae0 [<c0063564>] (tick_notify+0x0/0x404) from [<c005d5fc>] (notifier_call_chain+0x34/0x78) [<c005d5c8>] (notifier_call_chain+0x0/0x78) from [<c005d684>] (__raw_notifier_call_chain+0x1c/0x24) [<c005d668>] (__raw_notifier_call_chain+0x0/0x24) from [<c005d6ac>] (raw_notifier_call_chain+0x20/0x28) [<c005d68c>] (raw_notifier_call_chain+0x0/0x28) from [<c0062e78>] (clockevents_do_notify+0x1c/0x24) [<c0062e5c>] (clockevents_do_notify+0x0/0x24) from [<c0062f18>] (clockevents_register_device+0x98/0xd0) [<c0062e80>] (clockevents_register_device+0x0/0xd0) from [<c001a194>] (percpu_timer_setup+0x80/0x9c) r7:00000000 r6:00000002 r5:00000002 r4:00000003 [<c001a114>] (percpu_timer_setup+0x0/0x9c) from [<c000e9f0>] (smp_prepare_cpus+0xb0/0xe8) [<c000e940>] (smp_prepare_cpus+0x0/0xe8) from [<c00084e8>] (kernel_init+0x5c/0x1fc) r7:00000000 r6:00000000 r5:00000000 r4:c001b8a4 [<c000848c>] (kernel_init+0x0/0x1fc) from [<c0046c50>] (do_exit+0x0/0x604) r7:00000000 r6:00000000 r5:00000000 r4:00000000 Signed-off-by: Santosh Shilimkar <santosh.shilimkar@ti.com> Signed-off-by: Paul Walmsley <paul@pwsan.com>
243 lines
6.3 KiB
C
243 lines
6.3 KiB
C
/*
|
|
* linux/arch/arm/mach-omap2/timer-gp.c
|
|
*
|
|
* OMAP2 GP timer support.
|
|
*
|
|
* Copyright (C) 2009 Nokia Corporation
|
|
*
|
|
* Update to use new clocksource/clockevent layers
|
|
* Author: Kevin Hilman, MontaVista Software, Inc. <source@mvista.com>
|
|
* Copyright (C) 2007 MontaVista Software, Inc.
|
|
*
|
|
* Original driver:
|
|
* Copyright (C) 2005 Nokia Corporation
|
|
* Author: Paul Mundt <paul.mundt@nokia.com>
|
|
* Juha Yrjölä <juha.yrjola@nokia.com>
|
|
* OMAP Dual-mode timer framework support by Timo Teras
|
|
*
|
|
* Some parts based off of TI's 24xx code:
|
|
*
|
|
* Copyright (C) 2004-2009 Texas Instruments, Inc.
|
|
*
|
|
* Roughly modelled after the OMAP1 MPU timer code.
|
|
* Added OMAP4 support - Santosh Shilimkar <santosh.shilimkar@ti.com>
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
* License. See the file "COPYING" in the main directory of this archive
|
|
* for more details.
|
|
*/
|
|
#include <linux/init.h>
|
|
#include <linux/time.h>
|
|
#include <linux/interrupt.h>
|
|
#include <linux/err.h>
|
|
#include <linux/clk.h>
|
|
#include <linux/delay.h>
|
|
#include <linux/irq.h>
|
|
#include <linux/clocksource.h>
|
|
#include <linux/clockchips.h>
|
|
|
|
#include <asm/mach/time.h>
|
|
#include <plat/dmtimer.h>
|
|
#include <asm/localtimer.h>
|
|
|
|
/* MAX_GPTIMER_ID: number of GPTIMERs on the chip */
|
|
#define MAX_GPTIMER_ID 12
|
|
|
|
static struct omap_dm_timer *gptimer;
|
|
static struct clock_event_device clockevent_gpt;
|
|
static u8 __initdata gptimer_id = 1;
|
|
static u8 __initdata inited;
|
|
struct omap_dm_timer *gptimer_wakeup;
|
|
|
|
static irqreturn_t omap2_gp_timer_interrupt(int irq, void *dev_id)
|
|
{
|
|
struct omap_dm_timer *gpt = (struct omap_dm_timer *)dev_id;
|
|
struct clock_event_device *evt = &clockevent_gpt;
|
|
|
|
omap_dm_timer_write_status(gpt, OMAP_TIMER_INT_OVERFLOW);
|
|
|
|
evt->event_handler(evt);
|
|
return IRQ_HANDLED;
|
|
}
|
|
|
|
static struct irqaction omap2_gp_timer_irq = {
|
|
.name = "gp timer",
|
|
.flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
|
|
.handler = omap2_gp_timer_interrupt,
|
|
};
|
|
|
|
static int omap2_gp_timer_set_next_event(unsigned long cycles,
|
|
struct clock_event_device *evt)
|
|
{
|
|
omap_dm_timer_set_load_start(gptimer, 0, 0xffffffff - cycles);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void omap2_gp_timer_set_mode(enum clock_event_mode mode,
|
|
struct clock_event_device *evt)
|
|
{
|
|
u32 period;
|
|
|
|
omap_dm_timer_stop(gptimer);
|
|
|
|
switch (mode) {
|
|
case CLOCK_EVT_MODE_PERIODIC:
|
|
period = clk_get_rate(omap_dm_timer_get_fclk(gptimer)) / HZ;
|
|
period -= 1;
|
|
omap_dm_timer_set_load_start(gptimer, 1, 0xffffffff - period);
|
|
break;
|
|
case CLOCK_EVT_MODE_ONESHOT:
|
|
break;
|
|
case CLOCK_EVT_MODE_UNUSED:
|
|
case CLOCK_EVT_MODE_SHUTDOWN:
|
|
case CLOCK_EVT_MODE_RESUME:
|
|
break;
|
|
}
|
|
}
|
|
|
|
static struct clock_event_device clockevent_gpt = {
|
|
.name = "gp timer",
|
|
.features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT,
|
|
.shift = 32,
|
|
.set_next_event = omap2_gp_timer_set_next_event,
|
|
.set_mode = omap2_gp_timer_set_mode,
|
|
};
|
|
|
|
/**
|
|
* omap2_gp_clockevent_set_gptimer - set which GPTIMER is used for clockevents
|
|
* @id: GPTIMER to use (1..MAX_GPTIMER_ID)
|
|
*
|
|
* Define the GPTIMER that the system should use for the tick timer.
|
|
* Meant to be called from board-*.c files in the event that GPTIMER1, the
|
|
* default, is unsuitable. Returns -EINVAL on error or 0 on success.
|
|
*/
|
|
int __init omap2_gp_clockevent_set_gptimer(u8 id)
|
|
{
|
|
if (id < 1 || id > MAX_GPTIMER_ID)
|
|
return -EINVAL;
|
|
|
|
BUG_ON(inited);
|
|
|
|
gptimer_id = id;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void __init omap2_gp_clockevent_init(void)
|
|
{
|
|
u32 tick_rate;
|
|
int src;
|
|
|
|
inited = 1;
|
|
|
|
gptimer = omap_dm_timer_request_specific(gptimer_id);
|
|
BUG_ON(gptimer == NULL);
|
|
gptimer_wakeup = gptimer;
|
|
|
|
#if defined(CONFIG_OMAP_32K_TIMER)
|
|
src = OMAP_TIMER_SRC_32_KHZ;
|
|
#else
|
|
src = OMAP_TIMER_SRC_SYS_CLK;
|
|
WARN(gptimer_id == 12, "WARNING: GPTIMER12 can only use the "
|
|
"secure 32KiHz clock source\n");
|
|
#endif
|
|
|
|
if (gptimer_id != 12)
|
|
WARN(IS_ERR_VALUE(omap_dm_timer_set_source(gptimer, src)),
|
|
"timer-gp: omap_dm_timer_set_source() failed\n");
|
|
|
|
tick_rate = clk_get_rate(omap_dm_timer_get_fclk(gptimer));
|
|
|
|
pr_info("OMAP clockevent source: GPTIMER%d at %u Hz\n",
|
|
gptimer_id, tick_rate);
|
|
|
|
omap2_gp_timer_irq.dev_id = (void *)gptimer;
|
|
setup_irq(omap_dm_timer_get_irq(gptimer), &omap2_gp_timer_irq);
|
|
omap_dm_timer_set_int_enable(gptimer, OMAP_TIMER_INT_OVERFLOW);
|
|
|
|
clockevent_gpt.mult = div_sc(tick_rate, NSEC_PER_SEC,
|
|
clockevent_gpt.shift);
|
|
clockevent_gpt.max_delta_ns =
|
|
clockevent_delta2ns(0xffffffff, &clockevent_gpt);
|
|
clockevent_gpt.min_delta_ns =
|
|
clockevent_delta2ns(3, &clockevent_gpt);
|
|
/* Timer internal resynch latency. */
|
|
|
|
clockevent_gpt.cpumask = cpumask_of(0);
|
|
clockevents_register_device(&clockevent_gpt);
|
|
}
|
|
|
|
/* Clocksource code */
|
|
|
|
#ifdef CONFIG_OMAP_32K_TIMER
|
|
/*
|
|
* When 32k-timer is enabled, don't use GPTimer for clocksource
|
|
* instead, just leave default clocksource which uses the 32k
|
|
* sync counter. See clocksource setup in see plat-omap/common.c.
|
|
*/
|
|
|
|
static inline void __init omap2_gp_clocksource_init(void) {}
|
|
#else
|
|
/*
|
|
* clocksource
|
|
*/
|
|
static struct omap_dm_timer *gpt_clocksource;
|
|
static cycle_t clocksource_read_cycles(struct clocksource *cs)
|
|
{
|
|
return (cycle_t)omap_dm_timer_read_counter(gpt_clocksource);
|
|
}
|
|
|
|
static struct clocksource clocksource_gpt = {
|
|
.name = "gp timer",
|
|
.rating = 300,
|
|
.read = clocksource_read_cycles,
|
|
.mask = CLOCKSOURCE_MASK(32),
|
|
.shift = 24,
|
|
.flags = CLOCK_SOURCE_IS_CONTINUOUS,
|
|
};
|
|
|
|
/* Setup free-running counter for clocksource */
|
|
static void __init omap2_gp_clocksource_init(void)
|
|
{
|
|
static struct omap_dm_timer *gpt;
|
|
u32 tick_rate, tick_period;
|
|
static char err1[] __initdata = KERN_ERR
|
|
"%s: failed to request dm-timer\n";
|
|
static char err2[] __initdata = KERN_ERR
|
|
"%s: can't register clocksource!\n";
|
|
|
|
gpt = omap_dm_timer_request();
|
|
if (!gpt)
|
|
printk(err1, clocksource_gpt.name);
|
|
gpt_clocksource = gpt;
|
|
|
|
omap_dm_timer_set_source(gpt, OMAP_TIMER_SRC_SYS_CLK);
|
|
tick_rate = clk_get_rate(omap_dm_timer_get_fclk(gpt));
|
|
tick_period = (tick_rate / HZ) - 1;
|
|
|
|
omap_dm_timer_set_load_start(gpt, 1, 0);
|
|
|
|
clocksource_gpt.mult =
|
|
clocksource_khz2mult(tick_rate/1000, clocksource_gpt.shift);
|
|
if (clocksource_register(&clocksource_gpt))
|
|
printk(err2, clocksource_gpt.name);
|
|
}
|
|
#endif
|
|
|
|
static void __init omap2_gp_timer_init(void)
|
|
{
|
|
#ifdef CONFIG_LOCAL_TIMERS
|
|
twd_base = ioremap(OMAP44XX_LOCAL_TWD_BASE, SZ_256);
|
|
BUG_ON(!twd_base);
|
|
#endif
|
|
omap_dm_timer_init();
|
|
|
|
omap2_gp_clockevent_init();
|
|
omap2_gp_clocksource_init();
|
|
}
|
|
|
|
struct sys_timer omap_timer = {
|
|
.init = omap2_gp_timer_init,
|
|
};
|