Merge branch "preempt" in "trunk".
[bertos.git] / bertos / cpu / avr / drv / timer_avr.h
1 /**
2  * \file
3  * <!--
4  * This file is part of BeRTOS.
5  *
6  * Bertos is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  * As a special exception, you may use this file as part of a free software
21  * library without restriction.  Specifically, if other files instantiate
22  * templates or use macros or inline functions from this file, or you compile
23  * this file and link it with other files to produce an executable, this
24  * file does not by itself cause the resulting executable to be covered by
25  * the GNU General Public License.  This exception does not however
26  * invalidate any other reasons why the executable file might be covered by
27  * the GNU General Public License.
28  *
29  * Copyright 2003, 2004, 2005 Develer S.r.l. (http://www.develer.com/)
30  * Copyright 2000 Bernie Innocenti <bernie@codewiz.org>
31  *
32  * -->
33  *
34  * \brief Low-level timer module for AVR (interface).
35  *
36  * \version $Id$
37  *
38  * \author Bernie Innocenti <bernie@codewiz.org>
39  * \author Francesco Sacchi <batt@develer.com>
40  *
41  */
42
43 #ifndef DRV_TIMER_AVR_H
44 #define DRV_TIMER_AVR_H
45
46 #include <hw/hw_cpufreq.h>   /* CPU_FREQ */
47
48 #include "cfg/cfg_timer.h"   /* CONFIG_TIMER */
49 #include <cfg/compiler.h>    /* uint8_t */
50 #include <cfg/macros.h>      /* DIV_ROUND */
51
52 #include <avr/io.h>
53 #include <avr/interrupt.h>
54
55 /**
56  * \name Values for CONFIG_TIMER.
57  *
58  * Select which hardware timer interrupt to use for system clock and softtimers.
59  * \note The timer 1 overflow mode set the timer as a 24 kHz PWM.
60  * $WIZ$ timer_select = "TIMER_ON_OUTPUT_COMPARE0", "TIMER_ON_OVERFLOW1", "TIMER_ON_OUTPUT_COMPARE2", "TIMER_ON_OVERFLOW3", "TIMER_DEFAULT"
61  */
62 #define TIMER_ON_OUTPUT_COMPARE0  1
63 #define TIMER_ON_OVERFLOW1        2
64 #define TIMER_ON_OUTPUT_COMPARE2  3
65 #define TIMER_ON_OVERFLOW3        4
66
67 #define TIMER_DEFAULT TIMER_ON_OUTPUT_COMPARE0 ///< Default system timer
68
69 /*
70  * Hardware dependent timer initialization.
71  */
72 #if (CONFIG_TIMER == TIMER_ON_OUTPUT_COMPARE0)
73
74         #define TIMER_PRESCALER      64
75         #define TIMER_HW_BITS        8
76         #if CPU_AVR_ATMEGA1281 || CPU_AVR_ATMEGA168
77                 #define DEFINE_TIMER_ISR     DECLARE_ISR_CONTEXT_SWITCH(TIMER0_COMPA_vect)
78         #else
79                 #define DEFINE_TIMER_ISR     DECLARE_ISR_CONTEXT_SWITCH(TIMER0_COMP_vect)
80         #endif
81         #define TIMER_TICKS_PER_SEC  1000
82         #define TIMER_HW_CNT         OCR_DIVISOR
83
84         /// Type of time expressed in ticks of the hardware high-precision timer
85         typedef uint8_t hptime_t;
86         #define SIZEOF_HPTIME_T 1
87
88         INLINE hptime_t timer_hw_hpread(void)
89         {
90                 return TCNT0;
91         }
92
93 #elif (CONFIG_TIMER == TIMER_ON_OVERFLOW1)
94
95         #define TIMER_PRESCALER      1
96         #define TIMER_HW_BITS        8
97         /** This value is the maximum in overflow based timers. */
98         #define TIMER_HW_CNT         (1 << TIMER_HW_BITS)
99         #define DEFINE_TIMER_ISR     DECLARE_ISR_CONTEXT_SWITCH(TIMER1_OVF_vect)
100         #define TIMER_TICKS_PER_SEC  DIV_ROUND(TIMER_HW_HPTICKS_PER_SEC, TIMER_HW_CNT)
101
102         /// Type of time expressed in ticks of the hardware high precision timer
103         typedef uint16_t hptime_t;
104         #define SIZEOF_HPTIME_T 2
105
106         INLINE hptime_t timer_hw_hpread(void)
107         {
108                 return TCNT1;
109         }
110
111 #elif (CONFIG_TIMER == TIMER_ON_OUTPUT_COMPARE2)
112
113         #define TIMER_PRESCALER      64
114         #define TIMER_HW_BITS        8
115         #if CPU_AVR_ATMEGA1281 || CPU_AVR_ATMEGA168
116                 #define DEFINE_TIMER_ISR     DECLARE_ISR_CONTEXT_SWITCH(TIMER2_COMPA_vect)
117         #else
118                 #define DEFINE_TIMER_ISR     DECLARE_ISR_CONTEXT_SWITCH(TIMER2_COMP_vect)
119         #endif
120         #define TIMER_TICKS_PER_SEC  1000
121         /** Value for OCR register in output-compare based timers. */
122         #define TIMER_HW_CNT         OCR_DIVISOR
123
124         /// Type of time expressed in ticks of the hardware high precision timer
125         typedef uint8_t hptime_t;
126         #define SIZEOF_HPTIME_T 1
127
128         INLINE hptime_t timer_hw_hpread(void)
129         {
130                 return TCNT2;
131         }
132
133 #elif (CONFIG_TIMER == TIMER_ON_OVERFLOW3)
134
135         #define TIMER_PRESCALER      1
136         #define TIMER_HW_BITS        8
137         /** This value is the maximum in overflow based timers. */
138         #define TIMER_HW_CNT         (1 << TIMER_HW_BITS)
139         #define DEFINE_TIMER_ISR     DECLARE_ISR_CONTEXT_SWITCH(TIMER3_OVF_vect)
140         #define TIMER_TICKS_PER_SEC  DIV_ROUND(TIMER_HW_HPTICKS_PER_SEC, TIMER_HW_CNT)
141
142         /// Type of time expressed in ticks of the hardware high precision timer
143         typedef uint16_t hptime_t;
144         #define SIZEOF_HPTIME_T 2
145
146         INLINE hptime_t timer_hw_hpread(void)
147         {
148                 return TCNT3;
149         }
150
151 #else
152
153         #error Unimplemented value for CONFIG_TIMER
154 #endif /* CONFIG_TIMER */
155
156
157 /** Frequency of the hardware high precision timer. */
158 #define TIMER_HW_HPTICKS_PER_SEC  DIV_ROUND(CPU_FREQ, TIMER_PRESCALER)
159
160 /**
161  * System timer: additional division after the prescaler
162  * 12288000 / 64 / 192 (0..191) = 1 ms
163  */
164 #define OCR_DIVISOR  (DIV_ROUND(DIV_ROUND(CPU_FREQ, TIMER_PRESCALER), TIMER_TICKS_PER_SEC) - 1)
165
166 /** Not needed, IRQ timer flag cleared automatically */
167 #define timer_hw_irq() do {} while (0)
168
169 /** Not needed, timer IRQ handler called only for timer source */
170 #define timer_hw_triggered() (true)
171
172 void timer_hw_init(void);
173
174 #endif /* DRV_TIMER_AVR_H */