URL
https://opencores.org/ocsvn/c0or1k/c0or1k/trunk
Subversion Repositories c0or1k
[/] [c0or1k/] [trunk/] [src/] [platform/] [pb11mpcore/] [timer.c] - Rev 2
Compare with Previous | Blame | View Log
/* * Ties up platform timer with generic timer api * * Copyright (C) 2007 Bahadir Balban * */ #include <l4/generic/irq.h> #include <l4/generic/platform.h> #include INC_PLAT(platform.h) #include <l4/drivers/timer/sp804/sp804_timer.h> #include <l4/drivers/misc/sp810/sp810_sysctrl.h> void timer_init(void) { /* Set timer 0 to 1MHz */ sp810_set_timclk(PLATFORM_TIMER0_BASE, 1); /* Initialise timer */ sp804_init(PLATFORM_TIMER0_BASE, SP804_TIMER_RUNMODE_PERIODIC, \ SP804_TIMER_WRAPMODE_WRAPPING, SP804_TIMER_WIDTH32BIT, \ SP804_TIMER_IRQENABLE); } void timer_start(void) { irq_enable(IRQ_TIMER01); sp804_enable(PLATFORM_TIMER0_BASE, 1); /* Enable timer0 */ }