forked from Imagelibrary/rtems
2009-03-12 Joel Sherrill <joel.sherrill@OARcorp.com>
PR 1385/cpukit * irq/irq_asm.S: When the type rtems_boolean was switched to the C99 bool, the size changed from 4 bytes to 1 byte. The interrupt dispatching code accesses two boolean variables for scheduling purposes and the assembly implementations of this code did not get updated.
This commit is contained in:
@@ -1,3 +1,12 @@
|
|||||||
|
2009-03-12 Joel Sherrill <joel.sherrill@OARcorp.com>
|
||||||
|
|
||||||
|
PR 1385/cpukit
|
||||||
|
* irq/irq_asm.S: When the type rtems_boolean was switched to the C99
|
||||||
|
bool, the size changed from 4 bytes to 1 byte. The interrupt
|
||||||
|
dispatching code accesses two boolean variables for scheduling
|
||||||
|
purposes and the assembly implementations of this code did not get
|
||||||
|
updated.
|
||||||
|
|
||||||
2009-02-26 Joel Sherrill <joel.sherrill@OARcorp.com>
|
2009-02-26 Joel Sherrill <joel.sherrill@OARcorp.com>
|
||||||
|
|
||||||
* startup/cpu.c: Now compiles. Does not run.
|
* startup/cpu.c: Now compiles. Does not run.
|
||||||
|
|||||||
@@ -83,13 +83,13 @@ PUBLIC_ARM_FUNCTION(_ISR_Handler)
|
|||||||
|
|
||||||
/* If a task switch is necessary, call scheduler */
|
/* If a task switch is necessary, call scheduler */
|
||||||
ldr r0, =_Context_Switch_necessary
|
ldr r0, =_Context_Switch_necessary
|
||||||
ldr r1, [r0]
|
ldrb r1, [r0]
|
||||||
cmp r1, #0
|
cmp r1, #0
|
||||||
|
|
||||||
/* since bframe is going to clear _ISR_Signals_to_thread_executing, */
|
/* since bframe is going to clear _ISR_Signals_to_thread_executing, */
|
||||||
/* we need to load it here */
|
/* we need to load it here */
|
||||||
ldr r0, =_ISR_Signals_to_thread_executing
|
ldr r0, =_ISR_Signals_to_thread_executing
|
||||||
ldr r1, [r0]
|
ldrb r1, [r0]
|
||||||
bne bframe
|
bne bframe
|
||||||
|
|
||||||
/* If a signals to be sent (_ISR_Signals_to_thread_executing != 0), */
|
/* If a signals to be sent (_ISR_Signals_to_thread_executing != 0), */
|
||||||
@@ -99,7 +99,7 @@ PUBLIC_ARM_FUNCTION(_ISR_Handler)
|
|||||||
|
|
||||||
/* _ISR_Signals_to_thread_executing = FALSE */
|
/* _ISR_Signals_to_thread_executing = FALSE */
|
||||||
mov r1, #0
|
mov r1, #0
|
||||||
str r1, [r0]
|
strb r1, [r0]
|
||||||
|
|
||||||
bframe:
|
bframe:
|
||||||
/* Now we need to set up the return from this ISR to be _ISR_Dispatch */
|
/* Now we need to set up the return from this ISR to be _ISR_Dispatch */
|
||||||
|
|||||||
@@ -1,3 +1,12 @@
|
|||||||
|
2009-03-12 Joel Sherrill <joel.sherrill@OARcorp.com>
|
||||||
|
|
||||||
|
PR 1385/cpukit
|
||||||
|
* irq/irq_asm.S: When the type rtems_boolean was switched to the C99
|
||||||
|
bool, the size changed from 4 bytes to 1 byte. The interrupt
|
||||||
|
dispatching code accesses two boolean variables for scheduling
|
||||||
|
purposes and the assembly implementations of this code did not get
|
||||||
|
updated.
|
||||||
|
|
||||||
2008-12-04 Joel Sherrill <joel.sherrill@oarcorp.com>
|
2008-12-04 Joel Sherrill <joel.sherrill@oarcorp.com>
|
||||||
|
|
||||||
* bsp_specs: Move -e start from *link to *startfile to avoid warning
|
* bsp_specs: Move -e start from *link to *startfile to avoid warning
|
||||||
|
|||||||
@@ -268,16 +268,16 @@ nested:
|
|||||||
* do something with the current thread...
|
* do something with the current thread...
|
||||||
*/
|
*/
|
||||||
addis r4, 0, _Context_Switch_necessary@ha
|
addis r4, 0, _Context_Switch_necessary@ha
|
||||||
lwz r5, _Context_Switch_necessary@l(r4)
|
lbz r5, _Context_Switch_necessary@l(r4)
|
||||||
cmpwi r5, 0
|
cmpwi r5, 0
|
||||||
bne switch
|
bne switch
|
||||||
|
|
||||||
addis r6, 0, _ISR_Signals_to_thread_executing@ha
|
addis r6, 0, _ISR_Signals_to_thread_executing@ha
|
||||||
lwz r7, _ISR_Signals_to_thread_executing@l(r6)
|
lbz r7, _ISR_Signals_to_thread_executing@l(r6)
|
||||||
cmpwi r7, 0
|
cmpwi r7, 0
|
||||||
li r8, 0
|
li r8, 0
|
||||||
beq easy_exit
|
beq easy_exit
|
||||||
stw r8, _ISR_Signals_to_thread_executing@l(r6)
|
stb r8, _ISR_Signals_to_thread_executing@l(r6)
|
||||||
/*
|
/*
|
||||||
* going to call _ThreadProcessSignalsFromIrq
|
* going to call _ThreadProcessSignalsFromIrq
|
||||||
* Push a complete exception like frame...
|
* Push a complete exception like frame...
|
||||||
|
|||||||
@@ -1,3 +1,12 @@
|
|||||||
|
2009-03-12 Joel Sherrill <joel.sherrill@OARcorp.com>
|
||||||
|
|
||||||
|
PR 1385/cpukit
|
||||||
|
* irq/irq_asm.S: When the type rtems_boolean was switched to the C99
|
||||||
|
bool, the size changed from 4 bytes to 1 byte. The interrupt
|
||||||
|
dispatching code accesses two boolean variables for scheduling
|
||||||
|
purposes and the assembly implementations of this code did not get
|
||||||
|
updated.
|
||||||
|
|
||||||
2009-02-12 Joel Sherrill <joel.sherrill@oarcorp.com>
|
2009-02-12 Joel Sherrill <joel.sherrill@oarcorp.com>
|
||||||
|
|
||||||
* startup/bspstart.c: Change prototype of IDLE thread to consistently
|
* startup/bspstart.c: Change prototype of IDLE thread to consistently
|
||||||
|
|||||||
@@ -226,16 +226,16 @@ nested:
|
|||||||
* do something with the current thread...
|
* do something with the current thread...
|
||||||
*/
|
*/
|
||||||
addis r4, 0, _Context_Switch_necessary@ha
|
addis r4, 0, _Context_Switch_necessary@ha
|
||||||
lwz r5, _Context_Switch_necessary@l(r4)
|
lbz r5, _Context_Switch_necessary@l(r4)
|
||||||
cmpwi r5, 0
|
cmpwi r5, 0
|
||||||
bne switch
|
bne switch
|
||||||
|
|
||||||
addis r6, 0, _ISR_Signals_to_thread_executing@ha
|
addis r6, 0, _ISR_Signals_to_thread_executing@ha
|
||||||
lwz r7, _ISR_Signals_to_thread_executing@l(r6)
|
lbz r7, _ISR_Signals_to_thread_executing@l(r6)
|
||||||
cmpwi r7, 0
|
cmpwi r7, 0
|
||||||
li r8, 0
|
li r8, 0
|
||||||
beq easy_exit
|
beq easy_exit
|
||||||
stw r8, _ISR_Signals_to_thread_executing@l(r6)
|
stb r8, _ISR_Signals_to_thread_executing@l(r6)
|
||||||
/*
|
/*
|
||||||
* going to call _ThreadProcessSignalsFromIrq
|
* going to call _ThreadProcessSignalsFromIrq
|
||||||
* Push a complete exception like frame...
|
* Push a complete exception like frame...
|
||||||
|
|||||||
Reference in New Issue
Block a user