diff options
author | Catalin Marinas <catalin.marinas@arm.com> | 2008-04-18 22:43:11 +0100 |
---|---|---|
committer | Catalin Marinas <catalin.marinas@arm.com> | 2008-04-18 22:43:11 +0100 |
commit | 80192735e4b01a2e4d437699f2e9b5b93dfab13c (patch) | |
tree | 1096c3278bc60c925f1818c776e4b3e88c20a23c /arch/arm/mach-realview/core.h | |
parent | a44ddfd5bf5354281eebd0f0ae0d6dcf8818fc5c (diff) | |
download | talos-obmc-linux-80192735e4b01a2e4d437699f2e9b5b93dfab13c.tar.gz talos-obmc-linux-80192735e4b01a2e4d437699f2e9b5b93dfab13c.zip |
RealView: Move the timer definitions into the EB specific files
This patch moves the timer definitions from platform.h into board-eb.h
as they are different on PB11MPCore and PB1176. It also adds
timerX_va_base variables in core.c which are set by the
realview_eb_timer_init function before invoking realview_timer_init.
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Diffstat (limited to 'arch/arm/mach-realview/core.h')
-rw-r--r-- | arch/arm/mach-realview/core.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm/mach-realview/core.h b/arch/arm/mach-realview/core.h index 6fcaeae16db9..33dbbb41a663 100644 --- a/arch/arm/mach-realview/core.h +++ b/arch/arm/mach-realview/core.h @@ -55,6 +55,10 @@ extern void __iomem *gic_cpu_base_addr; extern void __iomem *twd_base_addr; extern unsigned int twd_size; #endif +extern void __iomem *timer0_va_base; +extern void __iomem *timer1_va_base; +extern void __iomem *timer2_va_base; +extern void __iomem *timer3_va_base; extern void realview_leds_event(led_event_t ledevt); extern void realview_timer_init(unsigned int timer_irq); |