1998-08-16 06:17:17 +04:00
|
|
|
/* $NetBSD: cpuswitch.S,v 1.27 1998/08/16 02:17:17 mark Exp $ */
|
1996-02-01 02:14:53 +03:00
|
|
|
|
|
|
|
/*
|
1998-05-01 01:22:00 +04:00
|
|
|
* Copyright (c) 1994-1998 Mark Brinicombe.
|
1996-02-01 02:14:53 +03:00
|
|
|
* Copyright (c) 1994 Brini.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software written for Brini by Mark Brinicombe
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by Brini.
|
|
|
|
* 4. The name of the company nor the name of the author may be used to
|
|
|
|
* endorse or promote products derived from this software without specific
|
|
|
|
* prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY BRINI ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
|
|
|
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL BRINI OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
|
|
|
|
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* RiscBSD kernel project
|
|
|
|
*
|
1996-05-06 04:36:05 +04:00
|
|
|
* cpuswitch.S
|
1996-02-01 02:14:53 +03:00
|
|
|
*
|
|
|
|
* cpu switching functions
|
|
|
|
*
|
|
|
|
* Created : 15/10/94
|
|
|
|
*/
|
|
|
|
|
1998-07-06 05:56:40 +04:00
|
|
|
#include "opt_armfpe.h"
|
1998-06-03 00:41:46 +04:00
|
|
|
#include "opt_uvm.h"
|
1998-07-06 05:56:40 +04:00
|
|
|
|
1996-02-02 05:34:09 +03:00
|
|
|
#include "assym.h"
|
1996-02-01 02:14:53 +03:00
|
|
|
#include <machine/param.h>
|
|
|
|
#include <machine/cpu.h>
|
1997-02-10 06:50:53 +03:00
|
|
|
#include <machine/frame.h>
|
1997-10-14 14:09:46 +04:00
|
|
|
#include <machine/asm.h>
|
1996-02-01 02:14:53 +03:00
|
|
|
|
1996-06-04 01:43:06 +04:00
|
|
|
#undef IRQdisable
|
|
|
|
#undef IRQenable
|
|
|
|
|
|
|
|
/*
|
|
|
|
* New experimental definitions of IRQdisable and IRQenable
|
|
|
|
* These keep FIQ's enabled since FIQ's are special.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define IRQdisable \
|
1998-08-12 05:10:29 +04:00
|
|
|
mrs r14, cpsr_all ; \
|
|
|
|
orr r14, r14, #(I32_bit) ; \
|
|
|
|
msr cpsr_all, r14 ; \
|
1996-06-04 01:43:06 +04:00
|
|
|
|
|
|
|
#define IRQenable \
|
1998-08-12 05:10:29 +04:00
|
|
|
mrs r14, cpsr_all ; \
|
|
|
|
bic r14, r14, #(I32_bit) ; \
|
|
|
|
msr cpsr_all, r14 ; \
|
1996-06-04 01:43:06 +04:00
|
|
|
|
1996-03-14 00:39:10 +03:00
|
|
|
/*
|
1996-11-06 23:19:19 +03:00
|
|
|
* setrunqueue() and remrunqueue()
|
1996-03-14 00:39:10 +03:00
|
|
|
*
|
|
|
|
* Functions to add and remove a process for the run queue.
|
|
|
|
*/
|
1996-02-01 02:14:53 +03:00
|
|
|
|
1996-03-14 00:39:10 +03:00
|
|
|
.text
|
1996-02-01 02:14:53 +03:00
|
|
|
|
|
|
|
Lwhichqs:
|
|
|
|
.word _whichqs
|
|
|
|
|
|
|
|
Lqs:
|
|
|
|
.word _qs
|
|
|
|
|
1996-03-14 00:39:10 +03:00
|
|
|
/*
|
|
|
|
* On entry
|
|
|
|
* r0 = process
|
|
|
|
*/
|
1996-02-01 02:14:53 +03:00
|
|
|
|
1997-10-14 14:09:46 +04:00
|
|
|
ENTRY(setrunqueue)
|
1998-04-20 03:37:22 +04:00
|
|
|
/*
|
|
|
|
* Local register usage
|
|
|
|
* r0 = process
|
|
|
|
* r1 = queue
|
|
|
|
* r2 = &qs[queue] and temp
|
|
|
|
* r3 = temp
|
1998-04-20 21:27:30 +04:00
|
|
|
* r12 = whichqs
|
1998-04-20 03:37:22 +04:00
|
|
|
*/
|
1996-02-01 02:14:53 +03:00
|
|
|
#ifdef DIAGNOSTIC
|
|
|
|
ldr r1, [r0, #(P_BACK)]
|
|
|
|
teq r1, #0x00000000
|
1996-03-08 23:03:12 +03:00
|
|
|
bne Lsetrunqueue_erg
|
1996-02-01 02:14:53 +03:00
|
|
|
|
|
|
|
ldr r1, [r0, #(P_WCHAN)]
|
|
|
|
teq r1, #0x00000000
|
1996-03-08 23:03:12 +03:00
|
|
|
bne Lsetrunqueue_erg
|
1996-02-01 02:14:53 +03:00
|
|
|
#endif
|
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* Get the priority of the queue */
|
1996-02-01 02:14:53 +03:00
|
|
|
ldrb r1, [r0, #(P_PRIORITY)]
|
|
|
|
mov r1, r1, lsr #2
|
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* Indicate that there is a process on this queue */
|
1998-04-20 21:27:30 +04:00
|
|
|
ldr r12, Lwhichqs
|
|
|
|
ldr r2, [r12]
|
1996-02-01 02:14:53 +03:00
|
|
|
mov r3, #0x00000001
|
|
|
|
mov r3, r3, lsl r1
|
|
|
|
orr r2, r2, r3
|
1998-04-20 21:27:30 +04:00
|
|
|
str r2, [r12]
|
1996-02-01 02:14:53 +03:00
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* Get the address of the queue */
|
1996-02-01 02:14:53 +03:00
|
|
|
ldr r2, Lqs
|
|
|
|
add r1, r2, r1, lsl # 3
|
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* Hook the process in */
|
1996-02-01 02:14:53 +03:00
|
|
|
str r1, [r0, #(P_FORW)]
|
|
|
|
ldr r2, [r1, #(P_BACK)]
|
|
|
|
|
|
|
|
str r0, [r1, #(P_BACK)]
|
1996-03-08 23:03:12 +03:00
|
|
|
#ifdef DIAGNOSTIC
|
1996-02-01 02:14:53 +03:00
|
|
|
teq r2, #0x00000000
|
1996-03-08 23:03:12 +03:00
|
|
|
beq Lsetrunqueue_erg
|
|
|
|
#endif
|
1996-02-01 02:14:53 +03:00
|
|
|
str r0, [r2, #(P_FORW)]
|
|
|
|
str r2, [r0, #(P_BACK)]
|
|
|
|
|
|
|
|
mov pc, lr
|
|
|
|
|
|
|
|
#ifdef DIAGNOSTIC
|
1996-03-08 23:03:12 +03:00
|
|
|
Lsetrunqueue_erg:
|
1996-02-01 02:14:53 +03:00
|
|
|
mov r2, r1
|
|
|
|
mov r1, r0
|
|
|
|
add r0, pc, #Ltext1 - . - 8
|
1996-10-13 20:50:51 +04:00
|
|
|
bl _printf
|
1996-02-01 02:14:53 +03:00
|
|
|
|
|
|
|
ldr r2, Lqs
|
|
|
|
ldr r1, [r2]
|
1996-03-08 23:03:12 +03:00
|
|
|
add r0, pc, #Ltext2 - . - 8
|
1996-02-01 02:14:53 +03:00
|
|
|
b _panic
|
|
|
|
|
|
|
|
Ltext1:
|
1996-03-08 23:03:12 +03:00
|
|
|
.asciz "setrunqueue : %08x %08x\n"
|
|
|
|
Ltext2:
|
|
|
|
.asciz "setrunqueue : [qs]=%08x qs=%08x\n"
|
1996-02-01 02:14:53 +03:00
|
|
|
.align 0
|
|
|
|
#endif
|
|
|
|
|
1996-03-14 00:39:10 +03:00
|
|
|
/*
|
|
|
|
* On entry
|
|
|
|
* r0 = process
|
|
|
|
*/
|
|
|
|
|
1997-10-14 14:09:46 +04:00
|
|
|
ENTRY(remrunqueue)
|
1998-04-20 03:37:22 +04:00
|
|
|
/*
|
|
|
|
* Local register usage
|
|
|
|
* r0 = oldproc
|
|
|
|
* r1 = queue
|
|
|
|
* r2 = &qs[queue] and scratch
|
|
|
|
* r3 = scratch
|
1998-04-20 21:27:30 +04:00
|
|
|
* r12 = whichqs
|
1998-04-20 03:37:22 +04:00
|
|
|
*/
|
1996-02-01 02:14:53 +03:00
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* Get the priority of the queue */
|
1996-02-01 02:14:53 +03:00
|
|
|
ldrb r1, [r0, #(P_PRIORITY)]
|
|
|
|
mov r1, r1, lsr #2
|
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* Unhook the process */
|
1996-02-01 02:14:53 +03:00
|
|
|
ldr r2, [r0, #(P_FORW)]
|
|
|
|
ldr r3, [r0, #(P_BACK)]
|
|
|
|
|
|
|
|
str r3, [r2, #(P_BACK)]
|
|
|
|
str r2, [r3, #(P_FORW)]
|
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* If the queue is now empty clear the queue not empty flag */
|
1996-02-01 02:14:53 +03:00
|
|
|
teq r2, r3
|
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* This could be reworked to avoid the use of r4 */
|
1998-04-20 21:27:30 +04:00
|
|
|
ldreq r12, Lwhichqs
|
|
|
|
ldreq r2, [r12]
|
1996-02-01 02:14:53 +03:00
|
|
|
moveq r3, #0x00000001
|
|
|
|
moveq r3, r3, lsl r1
|
|
|
|
biceq r2, r2, r3
|
1998-04-20 21:27:30 +04:00
|
|
|
streq r2, [r12]
|
1996-02-01 02:14:53 +03:00
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* Remove the back pointer for the process */
|
1996-02-01 02:14:53 +03:00
|
|
|
mov r1, #0x00000000
|
|
|
|
str r1, [r0, #(P_BACK)]
|
|
|
|
|
|
|
|
mov pc, lr
|
|
|
|
|
1996-03-14 00:39:10 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* cpuswitch()
|
|
|
|
*
|
|
|
|
* preforms a process context switch.
|
|
|
|
* This function has several entry points
|
|
|
|
*/
|
|
|
|
|
1996-02-01 02:14:53 +03:00
|
|
|
Lcurproc:
|
|
|
|
.word _curproc
|
|
|
|
|
|
|
|
Lcurpcb:
|
|
|
|
.word _curpcb
|
|
|
|
|
|
|
|
Lwant_resched:
|
|
|
|
.word _want_resched
|
|
|
|
|
1997-02-04 10:12:30 +03:00
|
|
|
Lcpufuncs:
|
|
|
|
.word _cpufuncs
|
1998-04-20 03:37:22 +04:00
|
|
|
|
|
|
|
.data
|
|
|
|
.global _curpcb
|
|
|
|
_curpcb:
|
|
|
|
.word 0x00000000
|
|
|
|
.text
|
|
|
|
|
1998-08-16 06:17:17 +04:00
|
|
|
Lblock_userspace_access:
|
|
|
|
.word _block_userspace_access
|
1996-03-14 00:39:10 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Idle loop, exercised while waiting for a process to wake up.
|
|
|
|
*/
|
|
|
|
|
1996-02-01 02:14:53 +03:00
|
|
|
idle:
|
1998-04-20 03:37:22 +04:00
|
|
|
/* Enable interrupts */
|
1996-02-01 02:14:53 +03:00
|
|
|
IRQenable
|
|
|
|
|
1997-10-14 14:09:46 +04:00
|
|
|
/* XXX - r1 needs to be preserved for cpu_switch */
|
1997-02-10 06:57:42 +03:00
|
|
|
mov r7, r1
|
1997-07-31 04:03:54 +04:00
|
|
|
ldr r3, Lcpufuncs
|
|
|
|
mov r0, #0
|
1997-10-14 14:09:46 +04:00
|
|
|
add lr, pc, #Lidle_slept - . - 8
|
1997-07-31 04:03:54 +04:00
|
|
|
ldr pc, [r3, #CF_SLEEP]
|
1996-02-01 02:14:53 +03:00
|
|
|
|
1997-10-14 14:09:46 +04:00
|
|
|
Lidle_slept:
|
1997-02-10 06:57:42 +03:00
|
|
|
mov r1, r7
|
1996-02-01 02:14:53 +03:00
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* Disable interrupts while we check for an active queue */
|
1996-02-01 02:14:53 +03:00
|
|
|
IRQdisable
|
|
|
|
ldr r7, Lwhichqs
|
|
|
|
ldr r3, [r7]
|
|
|
|
teq r3, #0x00000000
|
|
|
|
bne sw1
|
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* All processes are still asleep so idle a while longer */
|
1996-03-14 00:39:10 +03:00
|
|
|
b idle
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Find a new process to run, save the current context and
|
|
|
|
* load the new context
|
|
|
|
*/
|
1996-02-01 02:14:53 +03:00
|
|
|
|
1997-10-14 14:09:46 +04:00
|
|
|
ENTRY(cpu_switch)
|
1996-02-01 02:14:53 +03:00
|
|
|
/*
|
1996-03-14 00:39:10 +03:00
|
|
|
* Local register usage. Some of these registers are out of date.
|
1996-02-01 02:14:53 +03:00
|
|
|
* r1 = oldproc
|
1996-03-08 23:03:12 +03:00
|
|
|
* r2 = spl level
|
1996-02-01 02:14:53 +03:00
|
|
|
* r3 = whichqs
|
|
|
|
* r4 = queue
|
|
|
|
* r5 = &qs[queue]
|
|
|
|
* r6 = newproc
|
|
|
|
* r7 = scratch
|
|
|
|
*/
|
1996-03-14 00:39:10 +03:00
|
|
|
stmfd sp!, {r4-r7, lr}
|
1996-02-01 02:14:53 +03:00
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/*
|
|
|
|
* Get the current process and indicate that there is no longer
|
|
|
|
* a valid process (curproc = 0)
|
|
|
|
*/
|
1996-02-01 02:14:53 +03:00
|
|
|
ldr r7, Lcurproc
|
|
|
|
ldr r1, [r7]
|
|
|
|
mov r0, #0x00000000
|
|
|
|
str r0, [r7]
|
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* Zero the pcb */
|
1996-02-01 02:14:53 +03:00
|
|
|
ldr r7, Lcurpcb
|
|
|
|
str r0, [r7]
|
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* Lower the spl level to spl0 and get the current spl level. */
|
1996-02-01 02:14:53 +03:00
|
|
|
mov r7, r1
|
|
|
|
|
1996-03-08 23:03:12 +03:00
|
|
|
#ifdef spl0
|
1998-01-20 04:18:18 +03:00
|
|
|
mov r0, #(_SPL_0)
|
1996-03-08 23:03:12 +03:00
|
|
|
bl _splx
|
|
|
|
#else
|
1996-02-01 02:14:53 +03:00
|
|
|
bl _spl0
|
1996-03-08 23:03:12 +03:00
|
|
|
#endif
|
1996-02-01 02:14:53 +03:00
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* Push the old spl level onto the stack */
|
1996-02-01 02:14:53 +03:00
|
|
|
str r0, [sp, #-0x0004]!
|
|
|
|
|
|
|
|
mov r1, r7
|
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* First phase : find a new process */
|
1996-02-01 02:14:53 +03:00
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* rem: r1 = old proc */
|
1996-03-14 00:39:10 +03:00
|
|
|
|
1996-02-01 02:14:53 +03:00
|
|
|
switch_search:
|
|
|
|
IRQdisable
|
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* Do we have any active queues */
|
1996-02-01 02:14:53 +03:00
|
|
|
ldr r7, Lwhichqs
|
|
|
|
ldr r3, [r7]
|
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* If not we must idle until we do. */
|
1996-02-01 02:14:53 +03:00
|
|
|
teq r3, #0x00000000
|
|
|
|
beq idle
|
|
|
|
|
|
|
|
sw1:
|
1998-04-20 03:37:22 +04:00
|
|
|
/* rem: r1 = old proc */
|
|
|
|
/* rem: r3 = whichqs */
|
|
|
|
/* rem: interrupts are disabled */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Paranoid debug time ....
|
|
|
|
* Is this overkill ? If we are not in SVC mode then things are
|
|
|
|
* very sick and will probably have already died.
|
|
|
|
*/
|
1996-02-01 02:14:53 +03:00
|
|
|
#ifdef DIAGNOSTIC
|
|
|
|
mrs r4, cpsr_all
|
|
|
|
and r4, r4, #(PSR_MODE)
|
|
|
|
teq r4, #(PSR_SVC32_MODE)
|
|
|
|
beq switchmodeok
|
|
|
|
|
|
|
|
add r0, pc, #switchpanic - . - 8
|
1996-03-14 00:39:10 +03:00
|
|
|
mrs r1, cpsr_all
|
1996-02-01 02:14:53 +03:00
|
|
|
bl _panic
|
|
|
|
|
|
|
|
switchpanic:
|
|
|
|
.asciz "Yikes! In cpu_switch() but not in SVC mode (%08x)\n"
|
|
|
|
.align 0
|
|
|
|
|
|
|
|
switchmodeok:
|
|
|
|
#endif
|
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/*
|
|
|
|
* We have found an active queue. Currently we do not know which queue
|
|
|
|
* is active just that one of them is.
|
|
|
|
* We must check each queue to find the active one.
|
|
|
|
* r3 contains a bit for each of the 32 queues. A one indicates that
|
|
|
|
* that the queue has something in it.
|
|
|
|
*/
|
1996-03-14 00:39:10 +03:00
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* This ffs() type routine could be optimised */
|
1996-02-01 02:14:53 +03:00
|
|
|
mov r4, #0x00000000
|
|
|
|
|
|
|
|
findqueue:
|
|
|
|
mov r0, #0x00000001
|
|
|
|
mov r0, r0, lsl r4
|
|
|
|
|
|
|
|
tst r3, r0
|
|
|
|
addeq r4, r4, #0x00000001
|
|
|
|
beq findqueue
|
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/*
|
|
|
|
* Ok we have found the active queue. The above code can never fail as
|
|
|
|
* we only get to it if r3 != 0
|
|
|
|
* r4 contains the number of the first queue found with a process in it.
|
|
|
|
*/
|
1996-03-14 00:39:10 +03:00
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* rem: r0 = bit mask of chosen queue (1 << r4) */
|
|
|
|
/* rem: r1 = old proc */
|
|
|
|
/* rem: r3 = whichqs */
|
|
|
|
/* rem: r4 = queue number */
|
|
|
|
/* rem: interrupts are disabled */
|
1996-02-01 02:14:53 +03:00
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* Get the address of the queue (&qs[queue]) */
|
1996-02-01 02:14:53 +03:00
|
|
|
ldr r5, Lqs
|
|
|
|
add r5, r5, r4, lsl #3
|
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/*
|
|
|
|
* Get the process from the queue and place the next process in
|
|
|
|
* the queue at the head. This basically unlinks the process at
|
|
|
|
* the head of the queue.
|
|
|
|
*/
|
1996-02-01 02:14:53 +03:00
|
|
|
ldr r6, [r5, #(P_FORW)]
|
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* rem: r6 = new process */
|
1996-02-01 02:14:53 +03:00
|
|
|
ldr r7, [r6, #(P_FORW)]
|
|
|
|
str r7, [r5, #(P_FORW)]
|
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/*
|
|
|
|
* Test to see if the queue is now empty. If the head of the queue
|
|
|
|
* points to the queue itself then there are no more processes in
|
|
|
|
* the queue. We can therefore clear the queue not empty flag held
|
|
|
|
* in r3.
|
|
|
|
*/
|
1996-02-01 02:14:53 +03:00
|
|
|
|
|
|
|
teq r5, r7
|
|
|
|
biceq r3, r3, r0
|
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* rem: r0 = bit mask of chosen queue (1 << r4) - NOT NEEDED AN MORE */
|
1996-02-01 02:14:53 +03:00
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* Fix the back pointer for the process now at the head of the queue. */
|
1996-02-01 02:14:53 +03:00
|
|
|
ldr r0, [r6, #(P_BACK)]
|
|
|
|
str r0, [r7, #(P_BACK)]
|
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* Update the RAM copy of the queue not empty flags word. */
|
1996-02-01 02:14:53 +03:00
|
|
|
ldr r7, Lwhichqs
|
|
|
|
str r3, [r7]
|
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* rem: r1 = old proc */
|
|
|
|
/* rem: r3 = whichqs - NOT NEEDED ANY MORE */
|
|
|
|
/* rem: r4 = queue number - NOT NEEDED ANY MORE */
|
|
|
|
/* rem: r6 = new process */
|
|
|
|
/* rem: interrupts are disabled */
|
1996-02-01 02:14:53 +03:00
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* Clear the want_resched flag */
|
1996-02-01 02:14:53 +03:00
|
|
|
mov r0, #0x00000000
|
|
|
|
ldr r7, Lwant_resched
|
|
|
|
str r0, [r7]
|
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/*
|
|
|
|
* Clear the back pointer of the process we have removed from
|
|
|
|
* the head of the queue. The new process is isolated now.
|
|
|
|
*/
|
1996-02-01 02:14:53 +03:00
|
|
|
mov r0, #0x00000000
|
|
|
|
str r0, [r6, #(P_BACK)]
|
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* We have a new curproc now so make a note it */
|
1996-02-01 02:14:53 +03:00
|
|
|
ldr r7, Lcurproc
|
|
|
|
str r6, [r7]
|
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* Hook in a new pcb */
|
1996-02-01 02:14:53 +03:00
|
|
|
ldr r7, Lcurpcb
|
|
|
|
ldr r0, [r6, #(P_ADDR)]
|
|
|
|
str r0, [r7]
|
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* At this point we can allow IRQ's again. */
|
1996-02-01 02:14:53 +03:00
|
|
|
IRQenable
|
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* rem: r1 = old proc */
|
|
|
|
/* rem: r6 = new process */
|
|
|
|
/* rem: interrupts are disabled */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If the new process is the same as the process that called
|
|
|
|
* cpu_switch() then we do not need to save and restore any
|
|
|
|
* contexts. This means we can make a quick exit.
|
|
|
|
* The test is simple if curproc on entry (now in r1) is the
|
|
|
|
* same as the proc removed from the queue we can jump to the exit.
|
|
|
|
*/
|
1996-02-01 02:14:53 +03:00
|
|
|
teq r1, r6
|
|
|
|
beq switch_return
|
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/*
|
|
|
|
* If the curproc on entry to cpu_switch was zero then the
|
|
|
|
* process that called it was exiting. This means that we do
|
|
|
|
* not need to save the current context. Instead we can jump
|
|
|
|
* straight to restoring the context for the new process.
|
|
|
|
*/
|
1996-02-01 02:14:53 +03:00
|
|
|
teq r1, #0x00000000
|
|
|
|
beq switch_exited
|
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* rem: r1 = old proc */
|
|
|
|
/* rem: r6 = new process */
|
|
|
|
/* rem: interrupts are disabled */
|
1996-03-14 00:39:10 +03:00
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* Stage two : Save old context */
|
1996-02-01 02:14:53 +03:00
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* Remember the old process in r0 */
|
1996-02-01 02:14:53 +03:00
|
|
|
mov r0, r1
|
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* Get the user structure for the old process. */
|
1996-02-01 02:14:53 +03:00
|
|
|
ldr r1, [r1, #(P_ADDR)]
|
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* Save all the registers in the old process's pcb */
|
1996-03-14 00:39:10 +03:00
|
|
|
add r7, r1, #(PCB_R8)
|
|
|
|
stmia r7, {r8-r13}
|
1996-02-01 02:14:53 +03:00
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/*
|
|
|
|
* This can be optimised... We know we want to go from SVC32
|
|
|
|
* mode to UND32 mode
|
|
|
|
*/
|
1996-02-01 02:14:53 +03:00
|
|
|
mrs r3, cpsr_all
|
|
|
|
bic r2, r3, #(PSR_MODE)
|
1997-10-14 14:09:46 +04:00
|
|
|
orr r2, r2, #(PSR_UND32_MODE | I32_bit)
|
1996-02-01 02:14:53 +03:00
|
|
|
msr cpsr_all, r2
|
|
|
|
|
|
|
|
str sp, [r1, #(PCB_UND_SP)]
|
|
|
|
|
|
|
|
msr cpsr_all, r3 /* Restore the old mode */
|
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* rem: r0 = old proc */
|
|
|
|
/* rem: r0 = old pcb */
|
|
|
|
/* rem: r6 = new process */
|
|
|
|
/* rem: interrupts are disabled */
|
1996-03-14 00:39:10 +03:00
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* What else needs to be saved Only FPA stuff when that is supported */
|
1996-02-01 02:14:53 +03:00
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* Third phase : restore saved context */
|
1996-02-01 02:14:53 +03:00
|
|
|
|
|
|
|
switch_exited:
|
1998-08-16 06:17:17 +04:00
|
|
|
/* Don't allow user space access beween the purge and the switch */
|
|
|
|
ldr r3, Lblock_userspace_access
|
|
|
|
ldr r2, [r3]
|
|
|
|
orr r0, r2, #1
|
|
|
|
str r0, [r3]
|
|
|
|
|
1996-10-16 02:04:19 +04:00
|
|
|
stmfd sp!, {r0-r3}
|
1997-02-04 10:12:30 +03:00
|
|
|
ldr r0, Lcpufuncs
|
|
|
|
add lr, pc, #Lcs_cache_purged - . - 8
|
|
|
|
ldr pc, [r0, #CF_CACHE_PURGE_ID]
|
|
|
|
|
|
|
|
Lcs_cache_purged:
|
1996-10-16 02:04:19 +04:00
|
|
|
ldmfd sp!, {r0-r3}
|
|
|
|
|
1998-08-12 05:10:29 +04:00
|
|
|
/* At this point we need to kill IRQ's again. */
|
|
|
|
IRQdisable
|
|
|
|
|
1998-08-16 06:17:17 +04:00
|
|
|
/* Interrupts are disabled so we can allow user space accesses again
|
|
|
|
* as none will occur until interrupts are re-enabled after the
|
|
|
|
* switch.
|
|
|
|
*/
|
|
|
|
str r2, [r3]
|
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* Get the user structure for the new process in r1 */
|
1996-02-01 02:14:53 +03:00
|
|
|
ldr r1, [r6, #(P_ADDR)]
|
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* Get the pagedir physical address for the process. */
|
1996-02-01 02:14:53 +03:00
|
|
|
ldr r0, [r1, #(PCB_PAGEDIR)]
|
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* Switch the memory to the new process */
|
1997-02-04 10:12:30 +03:00
|
|
|
ldr r3, Lcpufuncs
|
|
|
|
add lr, pc, #Lcs_context_switched - . - 8
|
|
|
|
ldr pc, [r3, #CF_CONTEXT_SWITCH]
|
|
|
|
|
|
|
|
Lcs_context_switched:
|
1998-04-20 03:37:22 +04:00
|
|
|
/*
|
|
|
|
* This can be optimised... We know we want to go from SVC32
|
|
|
|
* mode to UND32 mode
|
|
|
|
*/
|
1996-02-01 02:14:53 +03:00
|
|
|
mrs r3, cpsr_all
|
|
|
|
bic r2, r3, #(PSR_MODE)
|
|
|
|
orr r2, r2, #(PSR_UND32_MODE)
|
|
|
|
msr cpsr_all, r2
|
|
|
|
|
|
|
|
ldr sp, [r1, #(PCB_UND_SP)]
|
|
|
|
|
|
|
|
msr cpsr_all, r3 /* Restore the old mode */
|
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* Restore all the save registers */
|
1996-02-01 02:14:53 +03:00
|
|
|
add r7, r1, #PCB_R8
|
1996-03-14 00:39:10 +03:00
|
|
|
ldmia r7, {r8-r13}
|
1996-02-01 02:14:53 +03:00
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* Remember the pcb currently in use */
|
1996-02-01 02:14:53 +03:00
|
|
|
ldr r7, Lcurpcb
|
|
|
|
str r1, [r7]
|
|
|
|
|
|
|
|
#ifdef ARMFPE
|
|
|
|
add r0, r1, #(USER_SIZE) & 0x00ff
|
|
|
|
add r0, r0, #(USER_SIZE) & 0xff00
|
|
|
|
bl _arm_fpe_core_changecontext
|
|
|
|
#endif
|
|
|
|
|
1998-08-12 05:10:29 +04:00
|
|
|
/* We can enable interrupts again */
|
|
|
|
IRQenable
|
|
|
|
|
1996-02-01 02:14:53 +03:00
|
|
|
switch_return:
|
1998-04-20 03:37:22 +04:00
|
|
|
/* We have a new curproc now so make a note it */
|
1996-02-01 02:14:53 +03:00
|
|
|
/*
|
|
|
|
ldr r7, Lcurproc
|
|
|
|
str r6, [r7]
|
|
|
|
*/
|
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* Get the spl level from the stack and update the current spl level */
|
1996-02-01 02:14:53 +03:00
|
|
|
ldr r0, [sp], #0x0004
|
|
|
|
bl _splx
|
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* cpu_switch returns the proc it switched to. */
|
1996-02-01 02:14:53 +03:00
|
|
|
mov r0, r6
|
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/*
|
|
|
|
* Pull the registers that got pushed when either savectx() or
|
|
|
|
* cpu_switch() was called and return.
|
|
|
|
*/
|
1996-03-14 00:39:10 +03:00
|
|
|
ldmfd sp!, {r4-r7, pc}
|
1996-02-01 02:14:53 +03:00
|
|
|
|
|
|
|
Lproc0:
|
|
|
|
.word _proc0
|
|
|
|
|
|
|
|
Lkernel_map:
|
|
|
|
.word _kernel_map
|
|
|
|
|
|
|
|
|
1997-10-14 14:09:46 +04:00
|
|
|
ENTRY(switch_exit)
|
1998-04-20 03:37:22 +04:00
|
|
|
/*
|
|
|
|
* r0 = proc
|
|
|
|
* r1 = proc0
|
|
|
|
*/
|
1996-02-01 02:14:53 +03:00
|
|
|
|
1997-02-04 10:12:30 +03:00
|
|
|
mov r3, r0
|
1996-02-01 02:14:53 +03:00
|
|
|
ldr r1, Lproc0
|
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* In case we fault */
|
1996-02-01 02:14:53 +03:00
|
|
|
mov r2, #0x00000000
|
1997-02-04 10:12:30 +03:00
|
|
|
ldr r0, Lcurproc
|
|
|
|
str r2, [r0]
|
1996-02-01 02:14:53 +03:00
|
|
|
|
1997-02-04 10:12:30 +03:00
|
|
|
/* ldr r0, Lcurpcb
|
|
|
|
str r2, [r0]*/
|
1996-02-01 02:14:53 +03:00
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* Switch to proc0 context */
|
1996-02-01 02:14:53 +03:00
|
|
|
|
1996-10-16 02:04:19 +04:00
|
|
|
stmfd sp!, {r0-r3}
|
|
|
|
|
1997-02-04 10:12:30 +03:00
|
|
|
ldr r0, Lcpufuncs
|
|
|
|
add lr, pc, #Lse_cache_purged - . - 8
|
|
|
|
ldr pc, [r0, #CF_CACHE_PURGE_ID]
|
1996-02-01 02:14:53 +03:00
|
|
|
|
1997-02-04 10:12:30 +03:00
|
|
|
Lse_cache_purged:
|
|
|
|
ldmfd sp!, {r0-r3}
|
1996-10-16 02:04:19 +04:00
|
|
|
|
1998-08-12 05:10:29 +04:00
|
|
|
IRQdisable
|
|
|
|
|
1997-02-04 10:12:30 +03:00
|
|
|
ldr r2, [r1, #(P_ADDR)]
|
|
|
|
ldr r0, [r2, #(PCB_PAGEDIR)]
|
1996-10-16 02:04:19 +04:00
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* Switch the memory to the new process */
|
1997-02-04 10:12:30 +03:00
|
|
|
ldr r4, Lcpufuncs
|
|
|
|
add lr, pc, #Lse_context_switched - . - 8
|
|
|
|
ldr pc, [r4, #CF_CONTEXT_SWITCH]
|
|
|
|
|
|
|
|
Lse_context_switched:
|
1998-04-20 03:37:22 +04:00
|
|
|
/* Restore all the save registers */
|
1996-02-01 02:14:53 +03:00
|
|
|
add r7, r2, #PCB_R8
|
1996-03-14 00:39:10 +03:00
|
|
|
ldmia r7, {r8-r13}
|
1996-02-01 02:14:53 +03:00
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* This is not really needed ! */
|
|
|
|
/* Yes it is for the su and fu routines */
|
1997-02-04 10:12:30 +03:00
|
|
|
ldr r0, Lcurpcb
|
|
|
|
str r2, [r0]
|
1996-02-01 02:14:53 +03:00
|
|
|
|
1998-08-12 05:10:29 +04:00
|
|
|
IRQenable
|
1996-02-01 02:14:53 +03:00
|
|
|
|
1997-02-04 10:12:30 +03:00
|
|
|
str r3, [sp, #-0x0004]!
|
1996-02-01 02:14:53 +03:00
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/*
|
|
|
|
* Have to wait until we have switched to proc0 as the
|
|
|
|
* pmap gets released in vmspace_free()
|
|
|
|
*/
|
1998-05-01 01:22:00 +04:00
|
|
|
ldr r0, [r3, #(P_VMSPACE)]
|
1998-06-03 00:41:46 +04:00
|
|
|
#if defined(UVM)
|
|
|
|
bl _uvmspace_free
|
|
|
|
#else
|
1996-02-01 02:14:53 +03:00
|
|
|
bl _vmspace_free
|
1998-06-03 00:41:46 +04:00
|
|
|
#endif
|
1996-02-01 02:14:53 +03:00
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* This has to be done here */
|
1996-02-01 02:14:53 +03:00
|
|
|
mov r2, #(UPAGES << PGSHIFT)
|
|
|
|
ldr r0, [sp], #0x0004
|
|
|
|
ldr r1, [r0, #(P_ADDR)]
|
|
|
|
ldr r0, Lkernel_map
|
|
|
|
ldr r0, [r0]
|
1998-06-03 00:41:46 +04:00
|
|
|
#if defined(UVM)
|
|
|
|
bl _uvm_km_free
|
|
|
|
#else
|
1996-02-01 02:14:53 +03:00
|
|
|
bl _kmem_free
|
1998-06-03 00:41:46 +04:00
|
|
|
#endif
|
1996-02-01 02:14:53 +03:00
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* Paranoia */
|
1996-02-01 02:14:53 +03:00
|
|
|
mov r0, #0x00000000
|
|
|
|
ldr r1, Lcurproc
|
|
|
|
str r0, [r1]
|
|
|
|
|
|
|
|
ldr r1, Lproc0
|
|
|
|
b switch_search
|
|
|
|
|
1996-03-08 23:03:12 +03:00
|
|
|
Lcurrent_spl_level:
|
|
|
|
.word _current_spl_level
|
1997-07-31 04:03:54 +04:00
|
|
|
|
1997-10-14 14:09:46 +04:00
|
|
|
ENTRY(savectx)
|
1998-04-20 03:37:22 +04:00
|
|
|
/*
|
|
|
|
* r0 = pcb
|
|
|
|
*/
|
1996-02-01 02:14:53 +03:00
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* Push registers.*/
|
1996-03-14 00:39:10 +03:00
|
|
|
stmfd sp!, {r4-r7, lr}
|
1996-02-01 02:14:53 +03:00
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* Store all the registers in the process's pcb */
|
1996-03-14 00:39:10 +03:00
|
|
|
add r2, r0, #(PCB_R8)
|
|
|
|
stmia r2, {r8-r13}
|
1996-02-01 02:14:53 +03:00
|
|
|
|
1998-04-20 03:37:22 +04:00
|
|
|
/* Pull the regs of the stack */
|
1996-03-14 00:39:10 +03:00
|
|
|
ldmfd sp!, {r4-r7, pc}
|
1996-02-01 02:14:53 +03:00
|
|
|
|
1997-10-14 14:09:46 +04:00
|
|
|
ENTRY(proc_trampoline)
|
1996-03-14 00:39:10 +03:00
|
|
|
add lr, pc, #(trampoline_return - . - 8)
|
|
|
|
mov r0, r5
|
|
|
|
mov r1, sp
|
|
|
|
mov pc, r4
|
1996-02-01 02:14:53 +03:00
|
|
|
|
1996-03-14 00:39:10 +03:00
|
|
|
trampoline_return:
|
1998-04-20 03:37:22 +04:00
|
|
|
/* Kill irq's */
|
1996-03-14 00:39:10 +03:00
|
|
|
mrs r0, cpsr_all
|
|
|
|
orr r0, r0, #(I32_bit)
|
|
|
|
msr cpsr_all, r0
|
1996-02-01 02:14:53 +03:00
|
|
|
|
1996-03-14 00:39:10 +03:00
|
|
|
PULLFRAME
|
1996-02-01 02:14:53 +03:00
|
|
|
|
1996-03-14 00:39:10 +03:00
|
|
|
movs pc, lr /* Exit */
|
1996-08-22 00:29:19 +04:00
|
|
|
|
1997-02-10 06:57:42 +03:00
|
|
|
/* End of cpuswitch.S */
|