Rockchip rk27xx port initial commit. This is still work in progress.
[kugel-rb.git] / firmware / target / arm / rk27xx / timer-rk27xx.c
blob4493ccdfa91c180cc4f39a6f79b4375c29e76107
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2011 by Marcin Bukat
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
22 #include "config.h"
24 #include "inttypes.h"
25 #include "system.h"
26 #include "timer.h"
28 void INT_TIMER1(void)
30 /* clear interrupt */
31 TMR1CON &= ~(1<<2);
33 if (pfn_timer != NULL)
35 pfn_timer();
39 bool timer_set(long cycles, bool start)
41 /* optionally unregister any previously registered timer user */
42 if (start)
44 if (pfn_unregister != NULL)
46 pfn_unregister();
47 pfn_unregister = NULL;
51 TMR1LR = cycles;
52 TMR1CON = (1<<7) | (1<<1); /* periodic, 1/1 */
54 /* unmask timer1 interrupt */
55 INTC_IMR |= (1<<3);
57 /* enable timer1 interrupt */
58 INTC_IECR |= (1<<3);
60 return true;
63 bool timer_start(void)
65 TMR1CON |= (1 << 8); /* timer1 enable */
67 return true;
70 void timer_stop(void)
72 TMR1CON &= ~(1 << 8); /* timer1 disable */