2015-08-14 22:07:35 +00:00
|
|
|
.syntax unified
|
|
|
|
.cpu cortex-m0
|
|
|
|
.thumb
|
|
|
|
.text
|
|
|
|
.align 2
|
2015-08-12 10:53:41 +00:00
|
|
|
|
2015-08-14 22:07:35 +00:00
|
|
|
@ Export our context switching subroutine as a C function for use in mBed
|
|
|
|
.global swap_context
|
|
|
|
.global save_context
|
2015-08-12 10:53:41 +00:00
|
|
|
|
2015-08-14 22:07:35 +00:00
|
|
|
@ R0 Contains a pointer to the TCB of the fibre being scheduled out.
|
|
|
|
@ R1 Contains a pointer to the TCB of the fibre being scheduled in.
|
|
|
|
@ R2 Contains a pointer to the base of the stack of the fibre being scheduled out.
|
|
|
|
@ R3 Contains a pointer to the base of the stack of the fibre being scheduled in.
|
2015-08-12 10:53:41 +00:00
|
|
|
|
2015-08-14 22:07:35 +00:00
|
|
|
swap_context:
|
2015-08-12 10:53:41 +00:00
|
|
|
|
2015-08-14 22:07:35 +00:00
|
|
|
@ Write our core registers into the TCB
|
|
|
|
@ First, store the general registers
|
2015-08-12 10:53:41 +00:00
|
|
|
|
|
|
|
STR R0, [R0,#0]
|
|
|
|
STR R1, [R0,#4]
|
|
|
|
STR R2, [R0,#8]
|
|
|
|
STR R3, [R0,#12]
|
|
|
|
STR R4, [R0,#16]
|
|
|
|
STR R5, [R0,#20]
|
|
|
|
STR R6, [R0,#24]
|
|
|
|
STR R7, [R0,#28]
|
|
|
|
|
2015-08-14 22:07:35 +00:00
|
|
|
@ Now the high general purpose registers
|
2015-08-12 10:53:41 +00:00
|
|
|
MOV R4, R8
|
|
|
|
STR R4, [R0,#32]
|
|
|
|
MOV R4, R9
|
|
|
|
STR R4, [R0,#36]
|
|
|
|
MOV R4, R10
|
|
|
|
STR R4, [R0,#40]
|
|
|
|
MOV R4, R11
|
|
|
|
STR R4, [R0,#44]
|
|
|
|
MOV R4, R12
|
|
|
|
STR R4, [R0,#48]
|
|
|
|
|
2015-08-14 22:07:35 +00:00
|
|
|
@ Now the Stack and Link Register.
|
|
|
|
@ As this context is only intended for use with a fiber scheduler,
|
|
|
|
@ we don't need the PC.
|
2015-08-12 10:53:41 +00:00
|
|
|
MOV R6, SP
|
|
|
|
STR R6, [R0,#52]
|
|
|
|
MOV R4, LR
|
|
|
|
STR R4, [R0,#56]
|
|
|
|
|
2015-08-14 22:07:35 +00:00
|
|
|
@ Finally, Copy the stack. We do this to reduce RAM footprint, as stackis usually very small at the point
|
|
|
|
@ of sceduling, but we need a lot of capacity for interrupt handling and other functions.
|
2015-08-12 10:53:41 +00:00
|
|
|
|
2015-08-14 22:07:35 +00:00
|
|
|
MOVS R7, #0x20 @ Load R8 with top of System Stack space.
|
2015-08-12 10:53:41 +00:00
|
|
|
LSLS R7, #24
|
|
|
|
MOVS R4, #0x40
|
|
|
|
LSLS R4, #8
|
|
|
|
ORRS R7, R4
|
|
|
|
MOV R4, R7
|
|
|
|
|
2015-08-14 22:07:35 +00:00
|
|
|
store_stack:
|
2015-08-12 10:53:41 +00:00
|
|
|
SUBS R4, #4
|
|
|
|
SUBS R2, #4
|
|
|
|
|
|
|
|
LDR R5, [R4]
|
|
|
|
STR R5, [R2]
|
|
|
|
|
|
|
|
CMP R4, R6
|
|
|
|
BNE store_stack
|
|
|
|
|
2015-08-14 22:07:35 +00:00
|
|
|
@
|
|
|
|
@ Now page in the new context.
|
|
|
|
@ Update all registers except the PC. We can also safely ignore the STATUS register, as we're just a fiber scheduler.
|
|
|
|
@
|
2015-08-12 10:53:41 +00:00
|
|
|
LDR R4, [R1, #56]
|
|
|
|
MOV LR, R4
|
|
|
|
LDR R6, [R1, #52]
|
|
|
|
MOV SP, R6
|
|
|
|
|
2015-08-14 22:07:35 +00:00
|
|
|
@ Copy the stack in.
|
|
|
|
@ n.b. we do this after setting the SP to make comparisons easier.
|
2015-08-12 10:53:41 +00:00
|
|
|
|
2015-08-14 22:07:35 +00:00
|
|
|
MOV R4, R7 @ Load R4 with top of System Stack space.
|
2015-08-12 10:53:41 +00:00
|
|
|
|
|
|
|
|
2015-08-14 22:07:35 +00:00
|
|
|
restore_stack:
|
2015-08-12 10:53:41 +00:00
|
|
|
SUBS R4, #4
|
|
|
|
SUBS R3, #4
|
|
|
|
|
|
|
|
LDR R5, [R3]
|
|
|
|
STR R5, [R4]
|
|
|
|
|
|
|
|
CMP R4, R6
|
|
|
|
BNE restore_stack
|
|
|
|
|
|
|
|
LDR R4, [R1, #48]
|
|
|
|
MOV R12, R4
|
|
|
|
LDR R4, [R1, #44]
|
|
|
|
MOV R11, R4
|
|
|
|
LDR R4, [R1, #40]
|
|
|
|
MOV R10, R4
|
|
|
|
LDR R4, [R1, #36]
|
|
|
|
MOV R9, R4
|
|
|
|
LDR R4, [R1, #32]
|
|
|
|
MOV R8, R4
|
|
|
|
|
|
|
|
LDR R7, [R1, #28]
|
|
|
|
LDR R6, [R1, #24]
|
|
|
|
LDR R5, [R1, #20]
|
|
|
|
LDR R4, [R1, #16]
|
|
|
|
LDR R3, [R1, #12]
|
|
|
|
LDR R2, [R1, #8]
|
|
|
|
LDR R0, [R1, #0]
|
|
|
|
LDR R1, [R1, #4]
|
|
|
|
|
2015-08-14 22:07:35 +00:00
|
|
|
@ Return to caller (scheduler).
|
2015-08-12 10:53:41 +00:00
|
|
|
BX LR
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-08-14 22:07:35 +00:00
|
|
|
@ R0 Contains a pointer to the TCB of the fibre to snapshot
|
|
|
|
@ R1 Contains a pointer to the base of the stack of the fibre being snapshotted
|
2015-08-12 10:53:41 +00:00
|
|
|
|
2015-08-14 22:07:35 +00:00
|
|
|
save_context:
|
2015-08-12 10:53:41 +00:00
|
|
|
|
2015-08-14 22:07:35 +00:00
|
|
|
@ Write our core registers into the TCB
|
|
|
|
@ First, store the general registers
|
2015-08-12 10:53:41 +00:00
|
|
|
|
|
|
|
STR R0, [R0,#0]
|
|
|
|
STR R1, [R0,#4]
|
|
|
|
STR R2, [R0,#8]
|
|
|
|
STR R3, [R0,#12]
|
|
|
|
STR R4, [R0,#16]
|
|
|
|
STR R5, [R0,#20]
|
|
|
|
STR R6, [R0,#24]
|
|
|
|
STR R7, [R0,#28]
|
|
|
|
|
2015-08-14 22:07:35 +00:00
|
|
|
@ Now the high general purpose registers
|
2015-08-12 10:53:41 +00:00
|
|
|
MOV R4, R8
|
|
|
|
STR R4, [R0,#32]
|
|
|
|
MOV R4, R9
|
|
|
|
STR R4, [R0,#36]
|
|
|
|
MOV R4, R10
|
|
|
|
STR R4, [R0,#40]
|
|
|
|
MOV R4, R11
|
|
|
|
STR R4, [R0,#44]
|
|
|
|
MOV R4, R12
|
|
|
|
STR R4, [R0,#48]
|
|
|
|
|
2015-08-14 22:07:35 +00:00
|
|
|
@ Now the Stack and Link Register.
|
|
|
|
@ As this context is only intended for use with a fiber scheduler,
|
|
|
|
@ we don't need the PC.
|
2015-08-12 10:53:41 +00:00
|
|
|
MOV R6, SP
|
|
|
|
STR R6, [R0,#52]
|
|
|
|
MOV R4, LR
|
|
|
|
STR R4, [R0,#56]
|
|
|
|
|
2015-08-14 22:07:35 +00:00
|
|
|
@ Finally, Copy the stack. We do this to reduce RAM footprint, as stackis usually very small at the point
|
|
|
|
@ of sceduling, but we need a lot of capacity for interrupt handling and other functions.
|
2015-08-12 10:53:41 +00:00
|
|
|
|
2015-08-14 22:07:35 +00:00
|
|
|
MOVS R5, #0x20 @ Load R8 with top of System Stack space.
|
2015-08-12 10:53:41 +00:00
|
|
|
LSLS R5, #24
|
|
|
|
MOVS R4, #0x40
|
|
|
|
LSLS R4, #8
|
|
|
|
ORRS R5, R4
|
|
|
|
MOV R4, R5
|
|
|
|
|
2015-08-14 22:07:35 +00:00
|
|
|
store_stack1:
|
2015-08-12 10:53:41 +00:00
|
|
|
SUBS R4, #4
|
|
|
|
SUBS R1, #4
|
|
|
|
|
|
|
|
LDR R5, [R4]
|
|
|
|
STR R5, [R1]
|
|
|
|
|
|
|
|
CMP R4, R6
|
|
|
|
BNE store_stack1
|
|
|
|
|
2015-08-14 22:07:35 +00:00
|
|
|
@ Restore scratch registers.
|
2015-08-12 10:53:41 +00:00
|
|
|
|
|
|
|
LDR R7, [R0, #28]
|
|
|
|
LDR R6, [R0, #24]
|
|
|
|
LDR R5, [R0, #20]
|
|
|
|
LDR R4, [R0, #16]
|
|
|
|
|
2015-08-14 22:07:35 +00:00
|
|
|
@ Return to caller (scheduler).
|
2015-08-12 10:53:41 +00:00
|
|
|
BX LR
|
2015-08-14 22:07:35 +00:00
|
|
|
|