2 * arch/arm/mach-netx/time.c
4 * Copyright (c) 2005 Sascha Hauer <s.hauer@pengutronix.de>, Pengutronix
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2
8 * as published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 #include <linux/init.h>
21 #include <linux/interrupt.h>
22 #include <linux/irq.h>
23 #include <linux/clocksource.h>
25 #include <mach/hardware.h>
27 #include <asm/mach/time.h>
28 #include <mach/netx-regs.h>
31 * IRQ handler for the timer
34 netx_timer_interrupt(int irq
, void *dev_id
)
38 /* acknowledge interrupt */
39 writel(COUNTER_BIT(0), NETX_GPIO_IRQ
);
44 static struct irqaction netx_timer_irq
= {
45 .name
= "NetX Timer Tick",
46 .flags
= IRQF_DISABLED
| IRQF_TIMER
| IRQF_IRQPOLL
,
47 .handler
= netx_timer_interrupt
,
50 cycle_t
netx_get_cycles(void)
52 return readl(NETX_GPIO_COUNTER_CURRENT(1));
55 static struct clocksource clocksource_netx
= {
58 .read
= netx_get_cycles
,
59 .mask
= CLOCKSOURCE_MASK(32),
61 .flags
= CLOCK_SOURCE_IS_CONTINUOUS
,
65 * Set up timer interrupt
67 static void __init
netx_timer_init(void)
69 /* disable timer initially */
70 writel(0, NETX_GPIO_COUNTER_CTRL(0));
72 /* Reset the timer value to zero */
73 writel(0, NETX_GPIO_COUNTER_CURRENT(0));
75 writel(LATCH
, NETX_GPIO_COUNTER_MAX(0));
77 /* acknowledge interrupt */
78 writel(COUNTER_BIT(0), NETX_GPIO_IRQ
);
80 /* Enable the interrupt in the specific timer register and start timer */
81 writel(COUNTER_BIT(0), NETX_GPIO_IRQ_ENABLE
);
82 writel(NETX_GPIO_COUNTER_CTRL_IRQ_EN
| NETX_GPIO_COUNTER_CTRL_RUN
,
83 NETX_GPIO_COUNTER_CTRL(0));
85 setup_irq(NETX_IRQ_TIMER0
, &netx_timer_irq
);
87 /* Setup timer one for clocksource */
88 writel(0, NETX_GPIO_COUNTER_CTRL(1));
89 writel(0, NETX_GPIO_COUNTER_CURRENT(1));
90 writel(0xFFFFFFFF, NETX_GPIO_COUNTER_MAX(1));
92 writel(NETX_GPIO_COUNTER_CTRL_RUN
,
93 NETX_GPIO_COUNTER_CTRL(1));
95 clocksource_netx
.mult
=
96 clocksource_hz2mult(CLOCK_TICK_RATE
, clocksource_netx
.shift
);
97 clocksource_register(&clocksource_netx
);
100 struct sys_timer netx_timer
= {
101 .init
= netx_timer_init
,