Quality RTOS & Embedded Software

 Real time embedded FreeRTOS RSS feed 
Quick Start Supported MCUs PDF Books Trace Tools Ecosystem


Loading

a qustion in portENTER_SWITCHING_ISR in at91s

Posted by ares.qi on June 26, 2006
I have a question in portENTER_SWITCHING_ISR in at91sam7s with gcc port. Please help me.

in the macro

#define portENTER_SWITCHING_ISR()

________portSAVE_CONTEXT();\
________asm volatile ( "SUBR11, LR, #4" );\
________{


why do we need the R11 -- frame pointer? I think compile will use fp automatively, is it right?
Or we use it just want to save some IRQ stack space??


RE: a qustion in portENTER_SWITCHING_ISR in at91s

Posted by Nobody/Anonymous on June 26, 2006
This is what I think:

The frame pointer switch is only required because the demo uses "naked" interrupt service routines.

If the function was not naked then the compiler would move the stack pointer to make room for the local variables. Variable are than accessed using an offset from the frame pointer.

As the function is naked the stack never gets adjusted, and the stack frame never setup. This means the offsets from the frame pointer will clobber data.

The code you highlight allows the task stack to be used for local storage instead, which can be used safely. Offsets are then into unused parts of the task stack. The stack still uses IRQ stack, so nothing gets corrupted.

Take a look at the STR9 port files. This saves the context before the VIC is read. I think this could be a better solution but has the overhead of the context being saved for every IRQ even if it is not going to cause a context switch.


[ Back to the top ]    [ About FreeRTOS ]    [ Privacy ]    [ Sitemap ]    [ ]


Copyright (C) Amazon Web Services, Inc. or its affiliates. All rights reserved.

Latest News

NXP tweet showing LPC5500 (ARMv8-M Cortex-M33) running FreeRTOS.

Meet Richard Barry and learn about running FreeRTOS on RISC-V at FOSDEM 2019

Version 10.1.1 of the FreeRTOS kernel is available for immediate download. MIT licensed.

View a recording of the "OTA Update Security and Reliability" webinar, presented by TI and AWS.


Careers

FreeRTOS and other embedded software careers at AWS.



FreeRTOS Partners

ARM Connected RTOS partner for all ARM microcontroller cores

Espressif ESP32

IAR Partner

Microchip Premier RTOS Partner

RTOS partner of NXP for all NXP ARM microcontrollers

Renesas

STMicro RTOS partner supporting ARM7, ARM Cortex-M3, ARM Cortex-M4 and ARM Cortex-M0

Texas Instruments MCU Developer Network RTOS partner for ARM and MSP430 microcontrollers

OpenRTOS and SafeRTOS

Xilinx Microblaze and Zynq partner