1 /* $NetBSD: cpuswitch.S,v 1.59 2008/11/19 06:34:21 matt Exp $ */
4 * Copyright 2003 Wasabi Systems, Inc.
7 * Written by Steve C. Woodford for Wasabi Systems, Inc.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3. All advertising materials mentioning features or use of this software
18 * must display the following acknowledgement:
19 * This product includes software developed for the NetBSD Project by
20 * Wasabi Systems, Inc.
21 * 4. The name of Wasabi Systems, Inc. may not be used to endorse
22 * or promote products derived from this software without specific prior
25 * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
26 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
27 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
28 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL WASABI SYSTEMS, INC
29 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35 * POSSIBILITY OF SUCH DAMAGE.
38 * Copyright (c) 1994-1998 Mark Brinicombe.
39 * Copyright (c) 1994 Brini.
40 * All rights reserved.
42 * This code is derived from software written for Brini by Mark Brinicombe
44 * Redistribution and use in source and binary forms, with or without
45 * modification, are permitted provided that the following conditions
47 * 1. Redistributions of source code must retain the above copyright
48 * notice, this list of conditions and the following disclaimer.
49 * 2. Redistributions in binary form must reproduce the above copyright
50 * notice, this list of conditions and the following disclaimer in the
51 * documentation and/or other materials provided with the distribution.
52 * 3. All advertising materials mentioning features or use of this software
53 * must display the following acknowledgement:
54 * This product includes software developed by Brini.
55 * 4. The name of the company nor the name of the author may be used to
56 * endorse or promote products derived from this software without specific
57 * prior written permission.
59 * THIS SOFTWARE IS PROVIDED BY BRINI ``AS IS'' AND ANY EXPRESS OR IMPLIED
60 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
61 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
62 * IN NO EVENT SHALL BRINI OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
63 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
64 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
65 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
66 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
67 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
68 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
71 * RiscBSD kernel project
75 * cpu switching functions
80 #include "opt_armfpe.h"
81 #include "opt_arm32_pmap.h"
82 #include "opt_multiprocessor.h"
83 #include "opt_cpuoptions.h"
84 #include "opt_lockdebug.h"
87 #include <arm/arm32/pte.h>
88 #include <machine/param.h>
89 #include <machine/frame.h>
90 #include <machine/asm.h>
91 #include <machine/cpu.h>
93 RCSID("$NetBSD: cpuswitch.S,v 1.59 2008/11/19 06:34:21 matt Exp $")
95 /* LINTSTUB: include <sys/param.h> */
101 * New experimental definitions of IRQdisable and IRQenable
102 * These keep FIQ's enabled since FIQ's are special.
106 #define IRQdisable cpsid i
107 #define IRQenable cpsie i
111 orr r14, r14, #(I32_bit) ; \
116 bic r14, r14, #(I32_bit) ; \
122 .Lpmap_previous_active_lwp:
123 .word _C_LABEL(pmap_previous_active_lwp)
127 * cpu_switchto(struct lwp *current, struct lwp *next)
129 * Switch to the specified next LWP
132 * r0 'struct lwp *' of the current LWP (or NULL if exiting)
133 * r1 'struct lwp *' of the LWP to switch to
138 stmfd sp!, {r4-r7, ip, lr}
140 /* move lwps into caller saved registers */
144 #ifdef PROCESS_ID_CURCPU
146 #elif defined(PROCESS_ID_IS_CURLWP)
147 mcr p15, 0, r0, c13, c0, 4 /* get old lwp (r4 maybe 0) */
148 ldr r7, [r0, #(L_CPU)] /* get cpu from old lwp */
149 #elif !defined(MULTIPROCESSOR)
150 ldr r7, [r6, #L_CPU] /* get cpu from new lwp */
152 #error curcpu() method not defined
155 /* rem: r4 = old lwp */
156 /* rem: r6 = new lwp */
157 /* rem: r7 = curcpu() */
159 #ifndef __HAVE_UNNESTED_INTRS
163 #ifdef MULTIPROCESSOR
164 str r7, [r6, #(L_CPU)]
166 /* l->l_cpu initialized in fork1() for single-processor */
169 #if defined(PROCESS_ID_IS_CURLWP)
170 mcr p15, 0, r6, c13, c0, 4 /* set current lwp */
172 #if !defined(PROCESS_ID_IS_CURLWP) || defined(MULTIPROCESSOR)
173 /* We have a new curlwp now so make a note it */
174 str r6, [r7, #(CI_CURLWP)]
177 /* Hook in a new pcb */
178 ldr r0, [r6, #(L_PCB)]
179 str r0, [r7, #(CI_CURPCB)]
182 /* At this point we can allow IRQ's again. */
183 #ifndef __HAVE_UNNESTED_INTRS
187 /* rem: r4 = old lwp */
188 /* rem: r6 = new lwp */
189 /* rem: r7 = new pcb */
190 /* rem: interrupts are enabled */
193 * If the old lwp on entry to cpu_switchto was zero then the
194 * process that called it was exiting. This means that we do
195 * not need to save the current context. Instead we can jump
196 * straight to restoring the context for the new process.
201 /* rem: r4 = old lwp */
202 /* rem: r6 = new lwp */
203 /* rem: r7 = new pcb */
204 /* rem: interrupts are enabled */
206 /* Save old context */
208 /* Get the user structure for the old lwp. */
209 ldr r5, [r4, #(L_PCB)]
211 /* Save all the registers in the old lwp's pcb */
212 #if defined(__XSCALE__) || defined(_ARM_ARCH_6)
213 strd r8, [r5, #(PCB_R8)]
214 strd r10, [r5, #(PCB_R10)]
215 strd r12, [r5, #(PCB_R12)]
217 add r0, r5, #(PCB_R8)
223 * Save user read/write thread/process id register
225 mrc p15, 0, r0, c13, c0, 2
226 str r0, [r5, #(PCB_USER_PID_RW)]
229 * NOTE: We can now use r8-r13 until it is time to restore
230 * them for the new process.
233 /* rem: r4 = old lwp */
234 /* rem: r5 = old pcb */
235 /* rem: r6 = new lwp */
236 /* rem: r7 = new pcb */
237 /* rem: interrupts are enabled */
241 * Now's a good time to 'save' the VFP context. Note that we
242 * don't really force a save here, which can save time if we
243 * end up restarting the same context.
245 bl _C_LABEL(vfp_savecontext)
248 /* Restore saved context */
251 /* rem: r4 = old lwp */
252 /* rem: r6 = new lwp */
253 /* rem: r7 = new pcb */
254 /* rem: interrupts are enabled */
258 * Restore user thread/process id registers
260 ldr r0, [r7, #(PCB_USER_PID_RW)]
261 mcr p15, 0, r0, c13, c0, 2
262 ldr r0, [r7, #(PCB_USER_PID_RO)]
263 mcr p15, 0, r0, c13, c0, 3
266 ldr r5, [r6, #(L_PROC)] /* fetch the proc for below */
268 /* Restore all the saved registers */
270 ldr r8, [r7, #(PCB_R8)]
271 ldr r9, [r7, #(PCB_R9)]
272 ldr r10, [r7, #(PCB_R10)]
273 ldr r11, [r7, #(PCB_R11)]
274 ldr r12, [r7, #(PCB_R12)]
275 ldr r13, [r7, #(PCB_SP)]
276 #elif defined(_ARM_ARCH_6)
277 ldrd r8, [r7, #(PCB_R8)]
278 ldrd r10, [r7, #(PCB_R10)]
279 ldrd r12, [r7, #(PCB_R12)]
285 /* Record the old lwp for pmap_activate()'s benefit */
286 ldr r1, .Lpmap_previous_active_lwp
289 /* rem: r4 = old lwp */
290 /* rem: r5 = new lwp's proc */
291 /* rem: r6 = new lwp */
292 /* rem: r7 = new pcb */
296 bl _C_LABEL(vfp_loadcontext)
299 add r0, r7, #(USER_SIZE) & 0x00ff
300 add r0, r0, #(USER_SIZE) & 0xff00
301 bl _C_LABEL(arm_fpe_core_changecontext)
304 /* rem: r4 = old lwp */
305 /* rem: r5 = new lwp's proc */
306 /* rem: r6 = new lwp */
307 /* rem: r7 = new PCB */
310 * Check for restartable atomic sequences (RAS).
313 ldr r2, [r5, #(P_RASLIST)]
314 ldr r1, [r7, #(PCB_TF)] /* r1 = trapframe (used below) */
315 teq r2, #0 /* p->p_nras == 0? */
316 bne .Lswitch_do_ras /* no, check for one */
319 /* cpu_switchto returns the old lwp */
321 /* lwp_trampoline expects new lwp as it's second argument */
325 * Pull the registers that got pushed when cpu_switchto() was called,
328 ldmfd sp, {r4-r7, sp, pc}
331 ldr r1, [r1, #(TF_PC)] /* second ras_lookup() arg */
332 mov r0, r5 /* first ras_lookup() arg */
333 bl _C_LABEL(ras_lookup)
334 cmn r0, #1 /* -1 means "not in a RAS" */
335 ldrne r1, [r7, #(PCB_TF)]
336 strne r0, [r1, #(TF_PC)]
339 ENTRY(lwp_trampoline)
341 * cpu_switchto gives us:
346 bl _C_LABEL(lwp_startup)
355 orr r0, r0, #(IF32_bits)
360 movs pc, lr /* Exit */
362 #ifdef __HAVE_FAST_SOFTINTS
366 * r1 = ipl for softint_dispatch
368 ENTRY_NP(softint_switch)
369 stmfd sp!, {r4, r6, r7, lr}
371 ldr r7, [r0, #L_CPU] /* get curcpu */
372 #if defined(PROCESS_ID_IS_CURLWP)
373 mrc p15, 0, r4, c13, c0, 4 /* get old lwp */
375 ldr r4, [r7, #(CI_CURLWP)] /* get old lwp */
377 mrs r6, cpsr /* we need to save this */
380 * If the soft lwp blocks, it needs to return to softint_tramp
382 mov r2, sp /* think ip */
383 adr r3, softint_tramp /* think lr */
387 mov r5, r0 /* save new lwp */
389 ldr r2, [r4, #(L_PCB)] /* get old lwp's pcb */
391 /* Save all the registers into the old lwp's pcb */
392 #if defined(__XSCALE__) || defined(_ARM_ARCH_6)
393 strd r8, [r2, #(PCB_R8)]
394 strd r10, [r2, #(PCB_R10)]
395 strd r12, [r2, #(PCB_R12)]
397 add r3, r2, #(PCB_R8)
401 /* this is an invariant so load before disabling intrs */
402 ldr r2, [r5, #(L_PCB)] /* get new lwp's pcb */
404 #ifndef __HAVE_UNNESTED_INTRS
408 * We're switching to a bound LWP so its l_cpu is already correct.
410 #if defined(PROCESS_ID_IS_CURLWP)
411 mcr p15, 0, r5, c13, c0, 4 /* save new lwp */
413 #if !defined(PROCESS_ID_IS_CURLWP) || defined(MULTIPROCESSOR)
414 str r5, [r7, #(CI_CURLWP)] /* save new lwp */
417 /* Hook in a new pcb */
418 str r2, [r7, #(CI_CURPCB)]
421 * Normally, we'd get {r8-r13} but since this is a softint lwp
422 * it's existing state doesn't matter. We start the stack just
423 * below the trapframe.
425 ldr sp, [r2, #(PCB_TF)] /* get new lwp's stack ptr */
427 /* At this point we can allow IRQ's again. */
428 #ifndef __HAVE_UNNESTED_INTRS
432 /* r1 still has ipl */
433 mov r0, r4 /* r0 has pinned (old) lwp */
434 bl _C_LABEL(softint_dispatch)
436 * If we've returned, we need to change everything back and return.
438 ldr r2, [r4, #(L_PCB)] /* get pinned lwp's pcb */
440 #ifndef __HAVE_UNNESTED_INTRS
444 * We don't need to restore all the registers since another lwp was
445 * never executed. But we do need the SP from the formerly pinned lwp.
448 #if defined(PROCESS_ID_IS_CURLWP)
449 mcr p15, 0, r4, c13, c0, 4 /* restore pinned lwp */
451 #if !defined(PROCESS_ID_IS_CURLWP) || defined(MULTIPROCESSOR)
452 str r4, [r7, #(CI_CURLWP)] /* restore pinned lwp */
454 str r2, [r7, #(CI_CURPCB)] /* restore the curpcb */
455 ldr sp, [r2, #(PCB_SP)] /* now running on the old stack. */
457 /* At this point we can allow IRQ's again. */
461 * Grab the registers that got pushed at the start and return.
463 ldmfd sp!, {r4-r7, ip, lr} /* eat switch frame */
464 ldmfd sp!, {r4, r6, r7, pc} /* pop stack and return */
469 * r0 = previous LWP (the soft lwp)
470 * r4 = original LWP (the current lwp)
474 ENTRY_NP(softint_tramp)
475 ldr r3, [r7, #(CI_MTX_COUNT)] /* readust after mi_switch */
477 str r3, [r7, #(CI_MTX_COUNT)]
479 mov r3, #0 /* tell softint_dispatch */
480 str r3, [r0, #(L_CTXSWTCH)] /* the soft lwp blocked */
482 msr cpsr_c, r6 /* restore interrupts */
483 ldmfd sp!, {r4, r6, r7, pc} /* pop stack and return */
485 #endif /* __HAVE_FAST_SOFTINTS */