summaryrefslogtreecommitdiff
path: root/arch/microblaze/cpu/timer.c
diff options
context:
space:
mode:
authorMichal Simek <monstr@monstr.eu>2010-04-16 11:37:41 +0200
committerMichal Simek <monstr@monstr.eu>2010-04-16 12:15:31 +0200
commit5bbcb6cf22b1121d8c3e56b0e1fb84366e903ac7 (patch)
treeb8c12a6559a58957d2f6bfd792690bad5b3ee5fa /arch/microblaze/cpu/timer.c
parentcc53690e05f47b4c25e0a528de50e024fc0164ad (diff)
downloadu-boot-imx-5bbcb6cf22b1121d8c3e56b0e1fb84366e903ac7.zip
u-boot-imx-5bbcb6cf22b1121d8c3e56b0e1fb84366e903ac7.tar.gz
u-boot-imx-5bbcb6cf22b1121d8c3e56b0e1fb84366e903ac7.tar.bz2
microblaze: Move timer initialization to board.c
I would like to handle case where system doesn't contain intc that's why I need timer initialization out of intc code. Signed-off-by: Michal Simek <monstr@monstr.eu>
Diffstat (limited to 'arch/microblaze/cpu/timer.c')
-rw-r--r--arch/microblaze/cpu/timer.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/microblaze/cpu/timer.c b/arch/microblaze/cpu/timer.c
index a91eabc..4936c62 100644
--- a/arch/microblaze/cpu/timer.c
+++ b/arch/microblaze/cpu/timer.c
@@ -60,7 +60,7 @@ void timer_isr (void *arg)
tmr->control = tmr->control | TIMER_INTERRUPT;
}
-void timer_init (void)
+int timer_init (void)
{
tmr->loadreg = CONFIG_SYS_TIMER_0_PRELOAD;
tmr->control = TIMER_INTERRUPT | TIMER_RESET;
@@ -68,6 +68,7 @@ void timer_init (void)
TIMER_ENABLE | TIMER_ENABLE_INTR | TIMER_RELOAD | TIMER_DOWN_COUNT;
reset_timer ();
install_interrupt_handler (CONFIG_SYS_TIMER_0_IRQ, timer_isr, (void *)tmr);
+ return 0;
}
#endif
#endif