Quality RTOS & Embedded Software

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


Loading

ARM9 No Task Switching

Posted by Kaushal on September 4, 2011
Hi all,

I am trying to port FreeRTOS on Samsung S3C2440 (ARM9) processor (FriendlyArm's Mini2440 board) using ADS 1.2 IDE

I am able to start the scheduler but no task switching takes place.

If I configure AppTickHook enabled from FreeRTOSConfig.h, then it is the only task being executed.

If AppTickHook is disabled then only the demo task is executed...it does not suspend (using vTaskSuspend() api) nor does it get delayed (using VTaskDelay() api).

I am using RVDS/ARM7_LPC21xx port files as reference

This is my assembly code for the SWI handler(in startup file), vPortYield and vPortYieldProcessor(both in portASM.s) which i think is the problem:

in startup.s:

 MACRO
$HandlerLabel HANDLER $HandleLabel

$HandlerLabel
subsp,sp,#4 ;decrement sp(to store jump address)
stmfdsp!,{r0} ;PUSH the work register to stack(lr does''t push because it return to original address)
ldr r0,=$HandleLabel ;load the address of HandleXXX to r0
ldr r0,[r0] ;load the contents(service routine start address) of HandleXXX
str r0,[sp,#4] ;store the contents(ISR) of HandleXXX to stack
ldmfd sp!,{r0,pc} ;POP the work register and pc(jump to ISR)
MEND
....
bHandlerSWI
....
HandlerSWI HANDLER HandleSWI
....
; Setup SWI handler
ldrr0,=HandleSWI
ldrr1,=vPortYieldProcessor
strr1,[r0]
....


In portASM.s:
....
vPortYield
PRESERVE8
SWI 0
....
vPortYieldProcessor
PRESERVE8
; Within an IRQ ISR the link register has an offset from the true return
; address, but an SWI ISR does not. Add the offset manually so the same
; ISR return code can be used in both cases.
ADDLR, LR, #4
; Perform the context switch.
portSAVE_CONTEXT; Save current task context
LDR R0, =vTaskSwitchContext; Get the address of the context switch function
MOV LR, PC; Store the return address
BXR0; Call the contedxt switch function
portRESTORE_CONTEXT; restore the context of the selected task


Thanks in advance for any help!!!

RE: ARM9 No Task Switching

Posted by Dave on September 5, 2011
I don't know how the interrupt controller works on your chip, but for chips with a vectored controller I would expect the vector table to look something like the code below. Note this is taken from an NXP example, so the IRQ interrupt will be different on your chip. The thing I notice about your code is the SWI handler is that it is not branching directly to FreeRTOS but branching indirectly through R0. I don't know if this needs to work this way on your chip, but expect that will stop it working unless all interrupts do the exact same thing. See how it is different below.

Vectors         LDR     PC, Reset_Addr         
LDR PC, Undef_Addr
LDR PC, SWI_Addr
LDR PC, PAbt_Addr
LDR PC, DAbt_Addr
NOP ; Reserved Vector
LDR PC, [PC, #-0x0FF0] ; Vector from VicVectAddr
LDR PC, FIQ_Addr

Reset_Addr DCD Reset_Handler
Undef_Addr DCD Undef_Handler
SWI_Addr DCD vPortYieldProcessor
PAbt_Addr DCD PAbt_Handler
DAbt_Addr DCD DAbt_Handler
DCD 0 ; Reserved Address
IRQ_Addr DCD IRQ_Handler
FIQ_Addr DCD FIQ_Handler


Maybe your chip has a completely different interrupt flow though. In any case, I suggest setting configUSE_PREEMPTION to 0 first, then have two tasks that yield to each other. Only when that is working add in the tick ISR. Then when that is working change configUSE_PREEMPTION to 1 and see if it still works.

RE: ARM9 No Task Switching

Posted by Kaushal on September 5, 2011
I have already tried this:

HandleSWI DCD vPortYieldProcessor


In this case, the task is executed once and the program is restarted.

I will try with configUSE_PREEMPTION 0/1 as you suggested and get back.....

RE: ARM9 No Task Switching

Posted by Kaushal on September 5, 2011
Yes!!!

It's working....here are the changes:

In startup.s :
//replaced...
b HandlerSWI
//with....
LDR PC, HandlerSWI

//replaced...
HandlerSWI HANDLER HandleSWI
//with....
SWI_Addr DCD vPortYieldProcessor

//removed...
; Setup SWI handler
ldr r0,=HandleSWI
ldr r1,=vPortYieldProcessor
str r1,[r0]


In portASM.s:
//added "bx lr" to portYeild
vPortYield

PRESERVE8
SWI 0
bx lr


Thanks a lot davedoors!!!! Kudos!


[ 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