4 * This file is part of BeRTOS.
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.
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.
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
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.
29 * Copyright 2008 Bernie Innocenti <bernie@codewiz.org>
30 * Copyright 2004, 2005, 2006, 2007, 2008 Develer S.r.l. (http://www.develer.com/)
31 * Copyright 2004 Giovanni Bajo
35 * \brief CPU-specific stack frame handling macros.
37 * These are mainly used by the portable part of the scheduler
38 * to work with the process stack frames.
40 * \author Giovanni Bajo <rasky@develer.com>
41 * \author Bernie Innocenti <bernie@codewiz.org>
42 * \author Stefano Fedrigo <aleph@develer.com>
43 * \author Francesco Sacchi <batt@develer.com>
48 #include <cpu/detect.h>
50 #include "cfg/cfg_arch.h" /* ARCH_EMUL */
51 #include <cfg/compiler.h> /* for uintXX_t */
55 #define CPU_SAVED_REGS_CNT 2
57 #define CPU_SAVED_REGS_CNT 8
61 #define CPU_STACK_GROWS_UPWARD 0
62 #define CPU_SP_ON_EMPTY_SLOT 0
66 #define CPU_SAVED_REGS_CNT 8
67 #define CPU_STACK_GROWS_UPWARD 0
68 #define CPU_SP_ON_EMPTY_SLOT 0
72 #define CPU_SAVED_REGS_CNT 8
73 #define CPU_STACK_GROWS_UPWARD 0
74 #define CPU_SP_ON_EMPTY_SLOT 0
78 #define CPU_SAVED_REGS_CNT 1
79 #define CPU_STACK_GROWS_UPWARD 0
80 #define CPU_SP_ON_EMPTY_SLOT 1
84 #define CPU_SAVED_REGS_CNT 8
85 #define CPU_STACK_GROWS_UPWARD 1
86 #define CPU_SP_ON_EMPTY_SLOT 0
90 #define CPU_SAVED_REGS_CNT 18
91 #define CPU_STACK_GROWS_UPWARD 0
92 #define CPU_SP_ON_EMPTY_SLOT 1
96 #define CPU_SAVED_REGS_CNT 16
97 #define CPU_STACK_GROWS_UPWARD 1
98 #define CPU_SP_ON_EMPTY_SLOT 0
101 #error No CPU_... defined.
104 #ifndef CPU_STACK_GROWS_UPWARD
105 #error CPU_STACK_GROWS_UPWARD should have been defined to either 0 or 1
108 #ifndef CPU_SP_ON_EMPTY_SLOT
109 #error CPU_SP_ON_EMPTY_SLOT should have been defined to either 0 or 1
112 /// Default for macro not defined in the right arch section
113 #ifndef CPU_REG_INIT_VALUE
114 #define CPU_REG_INIT_VALUE(reg) (reg)
118 * Support stack handling peculiarities of a few CPUs.
120 * Most processors let their stack grow downward and
121 * keep SP pointing at the last pushed value.
123 #if !CPU_STACK_GROWS_UPWARD
124 #if !CPU_SP_ON_EMPTY_SLOT
125 /* Most microprocessors (x86, m68k...) */
126 #define CPU_PUSH_WORD(sp, data) \
127 do { *--(sp) = (data); } while (0)
128 #define CPU_POP_WORD(sp) \
132 #define CPU_PUSH_WORD(sp, data) \
133 do { *(sp)-- = (data); } while (0)
134 #define CPU_POP_WORD(sp) \
138 #else /* CPU_STACK_GROWS_UPWARD */
140 #if !CPU_SP_ON_EMPTY_SLOT
141 /* DSP56K and other weirdos */
142 #define CPU_PUSH_WORD(sp, data) \
143 do { *++(sp) = (cpu_stack_t)(data); } while (0)
144 #define CPU_POP_WORD(sp) \
147 #error I bet you cannot find a CPU like this
154 * DSP56k pushes both PC and SR to the stack in the JSR instruction, but
155 * RTS discards SR while returning (it does not restore it). So we push
156 * 0 to fake the same context.
158 #define CPU_PUSH_CALL_FRAME(sp, func) \
160 CPU_PUSH_WORD((sp), (func)); \
161 CPU_PUSH_WORD((sp), 0x100); \
166 #if CONFIG_KERN_PREEMPT
167 INLINE void asm_switch_context(cpu_stack_t **new_sp, cpu_stack_t **old_sp)
169 register cpu_stack_t **__new_sp asm ("r0") = new_sp;
170 register cpu_stack_t **__old_sp asm ("r1") = old_sp;
172 asm volatile ("svc #0"
173 : : "r"(__new_sp), "r"(__old_sp) : "memory", "cc");
175 #define asm_switch_context asm_switch_context
177 #define CPU_PUSH_CALL_FRAME(sp, func) \
179 CPU_PUSH_WORD((sp), 0x01000000); /* xPSR */ \
180 CPU_PUSH_WORD((sp), (cpu_stack_t)(func)); /* pc */ \
181 CPU_PUSH_WORD((sp), 0); /* lr */ \
182 CPU_PUSH_WORD((sp), 0); /* ip */ \
183 CPU_PUSH_WORD((sp), 0); /* r3 */ \
184 CPU_PUSH_WORD((sp), 0); /* r2 */ \
185 CPU_PUSH_WORD((sp), 0); /* r1 */ \
186 CPU_PUSH_WORD((sp), 0); /* r0 */ \
187 CPU_PUSH_WORD((sp), 0xfffffffd); /* lr_exc */ \
190 #define CPU_CREATE_NEW_STACK(stack) \
193 /* Initialize process stack frame */ \
194 CPU_PUSH_CALL_FRAME(stack, proc_entry); \
195 /* Push a clean set of CPU registers for asm_switch_context() */ \
196 for (i = 0; i < CPU_SAVED_REGS_CNT; i++) \
197 CPU_PUSH_WORD(stack, CPU_REG_INIT_VALUE(i)); \
198 CPU_PUSH_WORD(stack, IRQ_PRIO_DISABLED); \
201 #else /* !CONFIG_KERN_PREEMPT */
202 #define CPU_PUSH_CALL_FRAME(sp, func) \
204 CPU_PUSH_WORD((sp), 0x01000000); /* xPSR */ \
205 CPU_PUSH_WORD((sp), (cpu_stack_t)(func)); /* pc */ \
207 #endif /* CONFIG_KERN_PREEMPT */
211 * On AVR, addresses are pushed into the stack as little-endian, while
212 * memory accesses are big-endian (actually, it's a 8-bit CPU, so there is
213 * no natural endianess).
215 #define CPU_PUSH_CALL_FRAME(sp, func) \
217 uint16_t funcaddr = (uint16_t)(func); \
218 CPU_PUSH_WORD((sp), funcaddr); \
219 CPU_PUSH_WORD((sp), funcaddr>>8); \
223 * If the kernel is in idle-spinning, the processor executes:
229 * IRQ_ENABLE is translated in asm as "sei" and IRQ_DISABLE as "cli".
230 * We could define CPU_IDLE to expand to none, so the resulting
236 * But Atmel datasheet states:
237 * "When using the SEI instruction to enable interrupts,
238 * the instruction following SEI will be executed *before*
239 * any pending interrupts", so "cli" is executed before any
240 * pending interrupt with the result that IRQs will *NOT*
242 * To ensure that IRQ will run a NOP is required.
248 #define CPU_PUSH_CALL_FRAME(sp, func) \
250 CPU_PUSH_WORD((sp), (cpu_stack_t)(func)); /* LR -> 8(SP) */ \
251 CPU_PUSH_WORD((sp), 0); /* CR -> 4(SP) */ \
255 #define CPU_PUSH_CALL_FRAME(sp, func) \
256 CPU_PUSH_WORD((sp), (cpu_stack_t)(func))
262 * \brief Invoked by the scheduler to stop the CPU when idle.
264 * This hook can be redefined to put the CPU in low-power mode, or to
265 * profile system load with an external strobe, or to save CPU cycles
266 * in hosted environments such as emulators.
269 #define CPU_IDLE PAUSE
270 #endif /* !CPU_IDLE */
273 * Default macro for creating a new Process stack
275 #ifndef CPU_CREATE_NEW_STACK
277 #define CPU_CREATE_NEW_STACK(stack) \
280 /* Initialize process stack frame */ \
281 CPU_PUSH_CALL_FRAME(stack, proc_entry); \
282 /* Push a clean set of CPU registers for asm_switch_context() */ \
283 for (i = 0; i < CPU_SAVED_REGS_CNT; i++) \
284 CPU_PUSH_WORD(stack, CPU_REG_INIT_VALUE(i)); \
288 #endif /* CPU_ATTR_H */