STM32
直播中

邹俩珍

7年用户 1062经验值
私信 关注
[问答]

STM32汇编的MSP、PSP和SP的区别是什么?

最近在看freeRTOS的移植,发现它的堆栈访问代码跟51和x86区别比较大,网上搜到的资料说MSP、PSP、SP、R13都可以访问堆栈。
其中MSP对应Main堆栈、PSP对应Process堆栈,那么如果我直接使用SP、R13呢,这个时候这么知道是PSP还是MSP?

附上freeRTOS的任务切换代码:

  • __asm void xPortPendSVHandler( void )
  • {
  •         extern uxCriticalNesting;
  •         extern pxCurrentTCB;
  •         extern vTaskSwitchContext;

  •         PRESERVE8

  •         mrs r0, psp
  •         isb

  •         ldr        r3, =pxCurrentTCB                /* Get the location of the current TCB. */
  •         ldr        r2, [r3]

  •         stmdb r0!, {r4-r11}                        /* Save the remaining registers. */
  •         str r0, [r2]                                /* Save the new top of stack into the first member of the TCB. */

  •         stmdb sp!, {r3, r14}
  •         mov r0, #configMAX_SYSCALL_INTERRUPT_PRIORITY
  •         msr basepri, r0
  •         dsb
  •         isb
  •         bl vTaskSwitchContext
  •         mov r0, #0
  •         msr basepri, r0
  •         ldmia sp!, {r3, r14}

  •         ldr r1, [r3]
  •         ldr r0, [r1]                                /* The first item in pxCurrentTCB is the task top of stack. */
  •         ldmia r0!, {r4-r11}                        /* Pop the registers and the critical nesting count. */
  •         msr psp, r0
  •         isb
  •         bx r14
  •         nop
  • }
  • /*-----------------------------------------------------------*/


回帖(1)

李微波

2024-4-16 16:43:05
在STM32汇编中,MSP(Main Stack Pointer)是主堆栈指针,PSP(Process Stack Pointer)是进程堆栈指针,SP(Stack Pointer)也是堆栈指针的一种通用表示。

MSP用于处理异常、中断和初始化的堆栈,而PSP被用于任务的堆栈。当进程被创建时,其堆栈指针默认会被设置为PSP。当进程在执行时,其堆栈操作会使用PSP。而当进程发生异常或者中断时,堆栈操作会使用MSP。

在移植FreeRTOS时,任务切换的代码中使用了PSP。这是因为FreeRTOS使用了PSP作为任务堆栈指针,通过切换PSP来实现任务的切换。如果直接使用SP(R13)来访问堆栈,在任务切换时无法确定当前使用的是PSP还是MSP。

所以,在FreeRTOS中,使用PSP来访问堆栈是为了确保任务切换的正确性。
举报

更多回帖

发帖
×
20
完善资料,
赚取积分