Merge remote-tracking branch 'origin/master' into multiarch
[fw/altos] / src / cc1111 / ao_timer.c
1 /*
2  * Copyright © 2009 Keith Packard <keithp@keithp.com>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; version 2 of the License.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License along
14  * with this program; if not, write to the Free Software Foundation, Inc.,
15  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
16  */
17
18 #include "ao.h"
19
20 static volatile __data uint16_t ao_tick_count;
21
22 uint16_t ao_time(void) __critical
23 {
24         return ao_tick_count;
25 }
26
27 static __xdata uint8_t ao_forever;
28
29 void
30 ao_delay(uint16_t ticks)
31 {
32         ao_alarm(ticks);
33         ao_sleep(&ao_forever);
34         ao_clear_alarm();
35 }
36
37 #define T1_CLOCK_DIVISOR        8       /* 24e6/8 = 3e6 */
38 #define T1_SAMPLE_TIME          30000   /* 3e6/30000 = 100 */
39
40 #if HAS_ADC
41 volatile __data uint8_t ao_adc_interval = 1;
42 volatile __data uint8_t ao_adc_count;
43 #endif
44
45 void ao_timer_isr(void) __interrupt 9
46 {
47         ++ao_tick_count;
48 #if HAS_ADC
49         if (++ao_adc_count == ao_adc_interval) {
50                 ao_adc_count = 0;
51                 ao_adc_poll();
52         }
53 #endif
54 }
55
56 #if HAS_ADC
57 void
58 ao_timer_set_adc_interval(uint8_t interval) __critical
59 {
60         ao_adc_interval = interval;
61         ao_adc_count = 0;
62 }
63 #endif
64
65 void
66 ao_timer_init(void)
67 {
68         /* NOTE:  This uses a timer only present on cc1111 architecture. */
69
70         /* disable timer 1 */
71         T1CTL = 0;
72
73         /* set the sample rate */
74         T1CC0H = T1_SAMPLE_TIME >> 8;
75         T1CC0L = (uint8_t) T1_SAMPLE_TIME;
76
77         T1CCTL0 = T1CCTL_MODE_COMPARE;
78         T1CCTL1 = 0;
79         T1CCTL2 = 0;
80
81         /* clear timer value */
82         T1CNTL = 0;
83
84         /* enable overflow interrupt */
85         OVFIM = 1;
86         /* enable timer 1 interrupt */
87         T1IE = 1;
88
89         /* enable timer 1 in module mode, dividing by 8 */
90         T1CTL = T1CTL_MODE_MODULO | T1CTL_DIV_8;
91 }
92
93 /*
94  * AltOS always cranks the clock to the max frequency
95  */
96 void
97 ao_clock_init(void)
98 {
99         /* Switch system clock to crystal oscilator */
100         CLKCON = (CLKCON & ~CLKCON_OSC_MASK) | (CLKCON_OSC_XTAL);
101
102         while (!(SLEEP & SLEEP_XOSC_STB))
103                 ;
104
105         /* Crank up the timer tick and system clock speed */
106         CLKCON = ((CLKCON & ~(CLKCON_TICKSPD_MASK | CLKCON_CLKSPD_MASK)) |
107                   (CLKCON_TICKSPD_1 | CLKCON_CLKSPD_1));
108
109         while ((CLKCON & (CLKCON_TICKSPD_MASK|CLKCON_CLKSPD_MASK)) !=
110                (CLKCON_TICKSPD_1 | CLKCON_CLKSPD_1))
111                 ;
112 }