Committer: Michael Beasley <mike@snafu.setup>
[mikesnafu-overlay.git] / arch / arm / mach-omap2 / timer-gp.c
blob3234deedb9465ae628f0832e2a4afba16376ecce
1 /*
2 * linux/arch/arm/mach-omap2/timer-gp.c
4 * OMAP2 GP timer support.
6 * Copyright (C) 2005 Nokia Corporation
7 * Author: Paul Mundt <paul.mundt@nokia.com>
8 * Juha Yrjölä <juha.yrjola@nokia.com>
9 * OMAP Dual-mode timer framework support by Timo Teras
11 * Some parts based off of TI's 24xx code:
13 * Copyright (C) 2004 Texas Instruments, Inc.
15 * Roughly modelled after the OMAP1 MPU timer code.
17 * This file is subject to the terms and conditions of the GNU General Public
18 * License. See the file "COPYING" in the main directory of this archive
19 * for more details.
21 #include <linux/init.h>
22 #include <linux/time.h>
23 #include <linux/interrupt.h>
24 #include <linux/err.h>
25 #include <linux/clk.h>
26 #include <linux/delay.h>
27 #include <linux/irq.h>
29 #include <asm/mach/time.h>
30 #include <asm/arch/dmtimer.h>
32 static struct omap_dm_timer *gptimer;
34 static inline void omap2_gp_timer_start(unsigned long load_val)
36 omap_dm_timer_set_load(gptimer, 1, 0xffffffff - load_val);
37 omap_dm_timer_set_int_enable(gptimer, OMAP_TIMER_INT_OVERFLOW);
38 omap_dm_timer_start(gptimer);
41 static irqreturn_t omap2_gp_timer_interrupt(int irq, void *dev_id)
43 omap_dm_timer_write_status(gptimer, OMAP_TIMER_INT_OVERFLOW);
44 timer_tick();
46 return IRQ_HANDLED;
49 static struct irqaction omap2_gp_timer_irq = {
50 .name = "gp timer",
51 .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
52 .handler = omap2_gp_timer_interrupt,
55 static void __init omap2_gp_timer_init(void)
57 u32 tick_period;
59 omap_dm_timer_init();
60 gptimer = omap_dm_timer_request_specific(1);
61 BUG_ON(gptimer == NULL);
63 omap_dm_timer_set_source(gptimer, OMAP_TIMER_SRC_SYS_CLK);
64 tick_period = clk_get_rate(omap_dm_timer_get_fclk(gptimer)) / HZ;
65 tick_period -= 1;
67 setup_irq(omap_dm_timer_get_irq(gptimer), &omap2_gp_timer_irq);
68 omap2_gp_timer_start(tick_period);
71 struct sys_timer omap_timer = {
72 .init = omap2_gp_timer_init,