mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-11-16 12:34:33 +00:00
Compare commits
3 Commits
92377190ba
...
copilot/fi
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
06eae477b8 | ||
|
|
4dc072c04c | ||
|
|
3241912ee8 |
@@ -72,6 +72,11 @@ struct rt_hw_stack
|
||||
#define E_Bit (1<<9)
|
||||
#define J_Bit (1<<24)
|
||||
|
||||
/* VFP/NEON register count for FPU context */
|
||||
#ifndef VFP_DATA_NR
|
||||
#define VFP_DATA_NR 64 /* 32 double-precision registers = 64 words */
|
||||
#endif
|
||||
|
||||
#ifdef RT_USING_SMP
|
||||
typedef union {
|
||||
unsigned long slock;
|
||||
|
||||
@@ -61,7 +61,13 @@ rt_uint8_t *rt_hw_stack_init(void *tentry, void *parameter,
|
||||
*(--stk) = 0; /* user sp*/
|
||||
#endif
|
||||
#ifdef RT_USING_FPU
|
||||
*(--stk) = 0; /* not use fpu*/
|
||||
/* FPU context initialization matches context_gcc.S restore order:
|
||||
* Stack layout (high to low): FPEXC -> FPSCR -> D16-D31 -> D0-D15
|
||||
*/
|
||||
stk -= VFP_DATA_NR;
|
||||
rt_memset(stk, 0, VFP_DATA_NR * sizeof(rt_uint32_t)); /* Initialize D0-D31 (64 words for 32 double regs) */
|
||||
*(--stk) = 0; /* FPSCR: Floating-Point Status and Control Register */
|
||||
*(--stk) = 0x40000000; /* FPEXC: Enable FPU (bit 30 = EN) */
|
||||
#endif
|
||||
|
||||
/* return task's current stack address */
|
||||
|
||||
Reference in New Issue
Block a user