Move also cpu/ to bertos/ :-).
[bertos.git] / bertos / cpu / irq.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 2004, 2005, 2006, 2007 Develer S.r.l. (http://www.develer.com/)
30  * Copyright 2004 Giovanni Bajo
31  *
32  * -->
33  *
34  * \brief CPU-specific IRQ definitions.
35  *
36  * \author Giovanni Bajo <rasky@develer.com>
37  * \author Bernardo Innocenti <bernie@develer.com>
38  * \author Stefano Fedrigo <aleph@develer.com>
39  * \author Francesco Sacchi <batt@develer.com>
40  */
41 #ifndef CPU_IRQ_H
42 #define CPU_IRQ_H
43
44 #include "detect.h"
45 #include "types.h"
46
47 #include <cfg/compiler.h> /* for uintXX_t */
48
49 #if CPU_I196
50         #define IRQ_DISABLE             disable_interrupt()
51         #define IRQ_ENABLE              enable_interrupt()
52 #elif CPU_X86
53
54         /* Get IRQ_* definitions from the hosting environment. */
55         #include <cfg/os.h>
56         #if OS_EMBEDDED
57                 #define IRQ_DISABLE             FIXME
58                 #define IRQ_ENABLE              FIXME
59                 #define IRQ_SAVE_DISABLE(x)     FIXME
60                 #define IRQ_RESTORE(x)          FIXME
61         #endif /* OS_EMBEDDED */
62
63 #elif CPU_ARM
64
65
66         #ifdef __IAR_SYSTEMS_ICC__
67
68                 #include <inarm.h>
69
70                 #if __CPU_MODE__ == 1 /* Thumb */
71                         /* Use stubs */
72                         extern cpuflags_t get_CPSR(void);
73                         extern void set_CPSR(cpuflags_t flags);
74                 #else
75                         #define get_CPSR __get_CPSR
76                         #define set_CPSR __set_CPSR
77                 #endif
78
79                 #define IRQ_DISABLE __disable_interrupt()
80                 #define IRQ_ENABLE  __enable_interrupt()
81
82                 #define IRQ_SAVE_DISABLE(x) \
83                 do { \
84                         (x) = get_CPSR(); \
85                         __disable_interrupt(); \
86                 } while (0)
87
88                 #define IRQ_RESTORE(x) \
89                 do { \
90                         set_CPSR(x); \
91                 } while (0)
92
93                 #define IRQ_ENABLED() \
94                         ((bool)(get_CPSR() & 0xb0))
95
96                 #define BREAKPOINT  /* asm("bkpt 0") DOES NOT WORK */
97
98         #else /* !__IAR_SYSTEMS_ICC__ */
99
100                 #define IRQ_DISABLE \
101                 do { \
102                         asm volatile ( \
103                                 "mrs r0, cpsr\n\t" \
104                                 "orr r0, r0, #0xc0\n\t" \
105                                 "msr cpsr_c, r0" \
106                                 ::: "r0" \
107                         ); \
108                 } while (0)
109
110                 #define IRQ_ENABLE \
111                 do { \
112                         asm volatile ( \
113                                 "mrs r0, cpsr\n\t" \
114                                 "bic r0, r0, #0xc0\n\t" \
115                                 "msr cpsr_c, r0" \
116                                 ::: "r0" \
117                         ); \
118                 } while (0)
119
120                 #define IRQ_SAVE_DISABLE(x) \
121                 do { \
122                         asm volatile ( \
123                                 "mrs %0, cpsr\n\t" \
124                                 "orr r0, %0, #0xc0\n\t" \
125                                 "msr cpsr_c, r0" \
126                                 : "=r" (x) \
127                                 : /* no inputs */ \
128                                 : "r0" \
129                         ); \
130                 } while (0)
131
132                 #define IRQ_RESTORE(x) \
133                 do { \
134                         asm volatile ( \
135                                 "msr cpsr_c, %0" \
136                                 : /* no outputs */ \
137                                 : "r" (x) \
138                         ); \
139                 } while (0)
140
141                 #define CPU_READ_FLAGS() \
142                 ({ \
143                         cpuflags_t sreg; \
144                         asm volatile ( \
145                                 "mrs %0, cpsr\n\t" \
146                                 : "=r" (sreg) \
147                                 : /* no inputs */ \
148                         ); \
149                         sreg; \
150                 })
151
152                 #define IRQ_ENABLED() ((CPU_READ_FLAGS() & 0xc0) != 0xc0)
153
154         #endif /* !__IAR_SYSTEMS_ICC_ */
155
156 #elif CPU_PPC
157         #define IRQ_DISABLE         FIXME
158         #define IRQ_ENABLE          FIXME
159         #define IRQ_SAVE_DISABLE(x) FIXME
160         #define IRQ_RESTORE(x)      FIXME
161         #define IRQ_ENABLED()       FIXME
162
163 #elif CPU_DSP56K
164
165         #define BREAKPOINT              asm(debug)
166         #define IRQ_DISABLE             do { asm(bfset #0x0200,SR); asm(nop); } while (0)
167         #define IRQ_ENABLE              do { asm(bfclr #0x0200,SR); asm(nop); } while (0)
168
169         #define IRQ_SAVE_DISABLE(x)  \
170                 do { (void)x; asm(move SR,x); asm(bfset #0x0200,SR); } while (0)
171         #define IRQ_RESTORE(x)  \
172                 do { (void)x; asm(move x,SR); } while (0)
173
174         static inline bool irq_running(void)
175         {
176                 extern void *user_sp;
177                 return !!user_sp;
178         }
179         #define IRQ_RUNNING() irq_running()
180
181         static inline bool irq_enabled(void)
182         {
183                 uint16_t x;
184                 asm(move SR,x);
185                 return !(x & 0x0200);
186         }
187         #define IRQ_ENABLED() irq_enabled()
188
189 #elif CPU_AVR
190
191         #define IRQ_DISABLE   asm volatile ("cli" ::)
192         #define IRQ_ENABLE    asm volatile ("sei" ::)
193
194         #define IRQ_SAVE_DISABLE(x) \
195         do { \
196                 __asm__ __volatile__( \
197                         "in %0,__SREG__\n\t" \
198                         "cli" \
199                         : "=r" (x) : /* no inputs */ : "cc" \
200                 ); \
201         } while (0)
202
203         #define IRQ_RESTORE(x) \
204         do { \
205                 __asm__ __volatile__( \
206                         "out __SREG__,%0" : /* no outputs */ : "r" (x) : "cc" \
207                 ); \
208         } while (0)
209
210         #define IRQ_ENABLED() \
211         ({ \
212                 uint8_t sreg; \
213                 __asm__ __volatile__( \
214                         "in %0,__SREG__\n\t" \
215                         : "=r" (sreg)  /* no inputs & no clobbers */ \
216                 ); \
217                 (bool)(sreg & 0x80); \
218         })
219 #else
220         #error No CPU_... defined.
221 #endif
222
223 #ifndef IRQ_ENTRY
224         #define IRQ_ENTRY() /* NOP */
225 #endif
226
227 #ifndef IRQ_EXIT
228         #define IRQ_EXIT() /* NOP */
229 #endif
230
231
232 /**
233  * Execute \a CODE atomically with respect to interrupts.
234  *
235  * \see IRQ_SAVE_DISABLE IRQ_RESTORE
236  */
237 #define ATOMIC(CODE) \
238         do { \
239                 cpuflags_t __flags; \
240                 IRQ_SAVE_DISABLE(__flags); \
241                 CODE; \
242                 IRQ_RESTORE(__flags); \
243         } while (0)
244
245
246 #ifndef BREAKPOINT
247 #define BREAKPOINT /* nop */
248 #endif
249
250
251 #endif /* CPU_IRQ_H */