Quality RTOS & Embedded Software

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


Loading

SWI and nested interrupts

Posted by Robit on June 22, 2007
I use LPC2138 and our application is quite time critical so we use interrupts. To enable nested interrupts we use these two macros:

/* Nested Interrupts Entry */
#define NESTED_INTERRUPTS_ENABLE() \
asm volatile ( \
"MRS LR, SPSR \n\t" /* Copy SPSR_irq to LR */ \
"STMFD SP!, {LR} \n\t" /* Save SPSR_irq */ \
"MSR CPSR_c, #0x1F \n\t" /* Enable IRQ (Sys Mode) */ \
"STMFD SP!, {LR} \n\t" /* Save LR */ \
); \
{

/* Nested Interrupts Exit */
#define NESTED_INTERRUPTS_DISABLE() \
} \
asm volatile ( \
"LDMFD SP!, {LR} \n\t" /* Restore LR */ \
"MSR CPSR_c, #0x92 \n\t" /* Disable IRQ (IRQ Mode) */ \
"LDMFD SP!, {LR} \n\t" /* Restore SPSR_irq to LR */ \
"MSR SPSR_cxsf, LR \n\t" /* Copy LR to SPSR_irq */ \
);

While we use IRQ it works fine. But the operating system uses SWI to perform context switch and I don't know how to enable nested interrupts inside SWI ISR. How can I do it to get really fast response on interrupts? I need to enter interrupt service routine within 10us.

Thanks









RE: SWI and nested interrupts

Posted by Dave on June 22, 2007
Change the portENTER_CRITICAL and portEXIT_CRITICAL macros to only disable IRQ, not FIQ, then set your high priroity interrupt to use FIQ. There was something in another thread on this today.


[ 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