Commit 24e78576 authored by Uwe Kleine-König's avatar Uwe Kleine-König

netx: Use a cpp symbol for the clocksource timer number

instead of hardcoding the same value each time.
Signed-off-by: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Acked-by: default avatarSascha Hauer <s.hauer@pengutronix.de>
parent 98538488
...@@ -27,6 +27,8 @@ ...@@ -27,6 +27,8 @@
#include <asm/mach/time.h> #include <asm/mach/time.h>
#include <mach/netx-regs.h> #include <mach/netx-regs.h>
#define TIMER_CLOCKSOURCE 1
/* /*
* IRQ handler for the timer * IRQ handler for the timer
*/ */
...@@ -49,7 +51,7 @@ static struct irqaction netx_timer_irq = { ...@@ -49,7 +51,7 @@ static struct irqaction netx_timer_irq = {
cycle_t netx_get_cycles(void) cycle_t netx_get_cycles(void)
{ {
return readl(NETX_GPIO_COUNTER_CURRENT(1)); return readl(NETX_GPIO_COUNTER_CURRENT(TIMER_CLOCKSOURCE));
} }
static struct clocksource clocksource_netx = { static struct clocksource clocksource_netx = {
...@@ -87,12 +89,12 @@ static void __init netx_timer_init(void) ...@@ -87,12 +89,12 @@ static void __init netx_timer_init(void)
setup_irq(NETX_IRQ_TIMER0, &netx_timer_irq); setup_irq(NETX_IRQ_TIMER0, &netx_timer_irq);
/* Setup timer one for clocksource */ /* Setup timer one for clocksource */
writel(0, NETX_GPIO_COUNTER_CTRL(1)); writel(0, NETX_GPIO_COUNTER_CTRL(TIMER_CLOCKSOURCE));
writel(0, NETX_GPIO_COUNTER_CURRENT(1)); writel(0, NETX_GPIO_COUNTER_CURRENT(TIMER_CLOCKSOURCE));
writel(0xffffffff, NETX_GPIO_COUNTER_MAX(1)); writel(0xffffffff, NETX_GPIO_COUNTER_MAX(TIMER_CLOCKSOURCE));
writel(NETX_GPIO_COUNTER_CTRL_RUN, writel(NETX_GPIO_COUNTER_CTRL_RUN,
NETX_GPIO_COUNTER_CTRL(1)); NETX_GPIO_COUNTER_CTRL(TIMER_CLOCKSOURCE));
clocksource_netx.mult = clocksource_netx.mult =
clocksource_hz2mult(CLOCK_TICK_RATE, clocksource_netx.shift); clocksource_hz2mult(CLOCK_TICK_RATE, clocksource_netx.shift);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment