Split cpu/cpu.h in 3 files: irq, types and attr.
[bertos.git] / cpu / attr.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 attributes.
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_ATTR_H
42 #define CPU_ATTR_H
43
44 #include "detect.h"
45 #include <cfg/compiler.h> /* for uintXX_t */
46 #include <cfg/arch_config.h>  /* ARCH_EMUL */
47
48
49 /**
50  * \name Macros for determining CPU endianness.
51  * \{
52  */
53 #define CPU_BIG_ENDIAN    0x1234
54 #define CPU_LITTLE_ENDIAN 0x3412 /* Look twice, pal. This is not a bug. */
55 /*\}*/
56
57 /** Macro to include cpu-specific versions of the headers. */
58 #define CPU_HEADER(module)          PP_STRINGIZE(drv/PP_CAT3(module, _, CPU_ID).h)
59
60 /** Macro to include cpu-specific versions of implementation files. */
61 #define CPU_CSOURCE(module)         PP_STRINGIZE(drv/PP_CAT3(module, _, CPU_ID).c)
62
63
64 #if CPU_I196
65
66         #define NOP                     nop_instruction()
67
68         #define CPU_REG_BITS            16
69         #define CPU_REGS_CNT            16
70         #define CPU_STACK_GROWS_UPWARD  0
71         #define CPU_SP_ON_EMPTY_SLOT    0
72         #define CPU_BYTE_ORDER          CPU_LITTLE_ENDIAN
73         #define CPU_HARVARD             0
74
75 #elif CPU_X86
76
77         #define NOP                     asm volatile ("nop")
78
79         #define CPU_REGS_CNT            7
80         #define CPU_SAVED_REGS_CNT      7
81         #define CPU_STACK_GROWS_UPWARD  0
82         #define CPU_SP_ON_EMPTY_SLOT    0
83         #define CPU_BYTE_ORDER          CPU_LITTLE_ENDIAN
84         #define CPU_HARVARD             0
85
86         #if CPU_X86_64
87                 #define CPU_REG_BITS    64
88
89                 #ifdef __WIN64__
90                         /* WIN64 is an IL32-P64 weirdo. */
91                         #define SIZEOF_LONG  4
92                 #endif
93         #else
94                 #define CPU_REG_BITS    32
95         #endif
96
97 #elif CPU_ARM
98
99         /* Register counts include SREG too */
100         #define CPU_REG_BITS           32
101         #define CPU_REGS_CNT           16
102         #define CPU_SAVED_REGS_CNT     9
103         #define CPU_STACK_GROWS_UPWARD 0
104         #define CPU_SP_ON_EMPTY_SLOT   0
105         #define CPU_BYTE_ORDER         (__BIG_ENDIAN__ ? CPU_BIG_ENDIAN : CPU_LITTLE_ENDIAN)
106         #define CPU_HARVARD            0
107
108         #ifdef __IAR_SYSTEMS_ICC__
109                 #define NOP         __no_operation()
110         #else /* !__IAR_SYSTEMS_ICC__ */
111                 #define NOP         asm volatile ("mov r0,r0" ::)
112
113                 /**
114                  * Initialization value for registers in stack frame.
115                  * The register index is not directly corrispondent to CPU
116                  * register numbers, but is related to how are pushed to
117                  * stack (\see asm_switch_context).
118                  * Index (CPU_SAVED_REGS_CNT - 1) is the CPSR register,
119                  * the initial value is set to:
120                  * - All flags (N, Z, C, V) set to 0.
121                  * - IRQ and FIQ enabled.
122                  * - ARM state.
123                  * - CPU in Supervisor Mode (SVC).
124                  */
125                 #define CPU_REG_INIT_VALUE(reg) (reg == (CPU_SAVED_REGS_CNT - 1) ? 0x13 : 0)
126
127         #endif /* !__IAR_SYSTEMS_ICC_ */
128
129 #elif CPU_PPC
130         #define NOP                 asm volatile ("nop" ::)
131
132         /* Register counts include SREG too */
133         #define CPU_REG_BITS           (CPU_PPC32 ? 32 : 64)
134         #define CPU_REGS_CNT           FIXME
135         #define CPU_SAVED_REGS_CNT     FIXME
136         #define CPU_STACK_GROWS_UPWARD 0  //FIXME
137         #define CPU_SP_ON_EMPTY_SLOT   0  //FIXME
138         #define CPU_BYTE_ORDER         (__BIG_ENDIAN__ ? CPU_BIG_ENDIAN : CPU_LITTLE_ENDIAN)
139         #define CPU_HARVARD            0
140
141 #elif CPU_DSP56K
142
143         #define NOP                     asm(nop)
144
145         #define CPU_REG_BITS            16
146         #define CPU_REGS_CNT            FIXME
147         #define CPU_SAVED_REGS_CNT      8
148         #define CPU_STACK_GROWS_UPWARD  1
149         #define CPU_SP_ON_EMPTY_SLOT    0
150         #define CPU_BYTE_ORDER          CPU_BIG_ENDIAN
151         #define CPU_HARVARD             1
152
153         /* Memory is word-addessed in the DSP56K */
154         #define CPU_BITS_PER_CHAR  16
155         #define SIZEOF_SHORT        1
156         #define SIZEOF_INT          1
157         #define SIZEOF_LONG         2
158         #define SIZEOF_PTR          1
159
160 #elif CPU_AVR
161
162         #define NOP           asm volatile ("nop" ::)
163
164         /* Register counts include SREG too */
165         #define CPU_REG_BITS            8
166         #define CPU_REGS_CNT           33
167         #define CPU_SAVED_REGS_CNT     19
168         #define CPU_STACK_GROWS_UPWARD  0
169         #define CPU_SP_ON_EMPTY_SLOT    1
170         #define CPU_BYTE_ORDER          CPU_LITTLE_ENDIAN
171         #define CPU_HARVARD             1
172
173         /**
174          * Initialization value for registers in stack frame.
175          * The register index is not directly corrispondent to CPU
176          * register numbers. Index 0 is the SREG register: the initial
177          * value is all 0 but the interrupt bit (bit 7).
178          */
179         #define CPU_REG_INIT_VALUE(reg) (reg == 0 ? 0x80 : 0)
180
181 #else
182         #error No CPU_... defined.
183 #endif
184
185 /// Default for macro not defined in the right arch section
186 #ifndef CPU_REG_INIT_VALUE
187         #define CPU_REG_INIT_VALUE(reg)     0
188 #endif
189
190
191 #ifndef CPU_STACK_GROWS_UPWARD
192         #error CPU_STACK_GROWS_UPWARD should have been defined to either 0 or 1
193 #endif
194
195 #ifndef CPU_SP_ON_EMPTY_SLOT
196         #error CPU_SP_ON_EMPTY_SLOT should have been defined to either 0 or 1
197 #endif
198
199 /*
200  * Support stack handling peculiarities of a few CPUs.
201  *
202  * Most processors let their stack grow downward and
203  * keep SP pointing at the last pushed value.
204  */
205 #if !CPU_STACK_GROWS_UPWARD
206         #if !CPU_SP_ON_EMPTY_SLOT
207                 /* Most microprocessors (x86, m68k...) */
208                 #define CPU_PUSH_WORD(sp, data) \
209                         do { *--(sp) = (data); } while (0)
210                 #define CPU_POP_WORD(sp) \
211                         (*(sp)++)
212         #else
213                 /* AVR insanity */
214                 #define CPU_PUSH_WORD(sp, data) \
215                         do { *(sp)-- = (data); } while (0)
216                 #define CPU_POP_WORD(sp) \
217                         (*++(sp))
218         #endif
219
220 #else /* CPU_STACK_GROWS_UPWARD */
221
222         #if !CPU_SP_ON_EMPTY_SLOT
223                 /* DSP56K and other weirdos */
224                 #define CPU_PUSH_WORD(sp, data) \
225                         do { *++(sp) = (cpustack_t)(data); } while (0)
226                 #define CPU_POP_WORD(sp) \
227                         (*(sp)--)
228         #else
229                 #error I bet you cannot find a CPU like this
230         #endif
231 #endif
232
233
234 #if CPU_DSP56K
235         /*
236          * DSP56k pushes both PC and SR to the stack in the JSR instruction, but
237          * RTS discards SR while returning (it does not restore it). So we push
238          * 0 to fake the same context.
239          */
240         #define CPU_PUSH_CALL_CONTEXT(sp, func) \
241                 do { \
242                         CPU_PUSH_WORD((sp), (func)); \
243                         CPU_PUSH_WORD((sp), 0x100); \
244                 } while (0);
245
246 #elif CPU_AVR
247         /*
248          * In AVR, the addresses are pushed into the stack as little-endian, while
249          * memory accesses are big-endian (actually, it's a 8-bit CPU, so there is
250          * no natural endianess).
251          */
252         #define CPU_PUSH_CALL_CONTEXT(sp, func) \
253                 do { \
254                         uint16_t funcaddr = (uint16_t)(func); \
255                         CPU_PUSH_WORD((sp), funcaddr); \
256                         CPU_PUSH_WORD((sp), funcaddr>>8); \
257                 } while (0)
258
259 #else
260         #define CPU_PUSH_CALL_CONTEXT(sp, func) \
261                 CPU_PUSH_WORD((sp), (cpustack_t)(func))
262 #endif
263
264 /**
265  * \def CPU_IDLE
266  *
267  * \brief Invoked by the scheduler to stop the CPU when idle.
268  *
269  * This hook can be redefined to put the CPU in low-power mode, or to
270  * profile system load with an external strobe, or to save CPU cycles
271  * in hosted environments such as emulators.
272  */
273 #ifndef CPU_IDLE
274         #if defined(ARCH_EMUL) && (ARCH & ARCH_EMUL)
275                 /* This emulator hook should yield the CPU to the host.  */
276                 EXTERN_C_BEGIN
277                 void emul_idle(void);
278                 EXTERN_C_END
279                 #define CPU_IDLE emul_idle()
280         #else /* !ARCH_EMUL */
281                 #define CPU_IDLE do { /* nothing */ } while (0)
282         #endif /* !ARCH_EMUL */
283 #endif /* !CPU_IDLE */
284
285 #endif /* CPU_ATTR_H */