cpuswitch.S revision 1.81 1 /* $NetBSD: cpuswitch.S,v 1.81 2013/12/26 18:49:23 joerg Exp $ */
2
3 /*
4 * Copyright 2003 Wasabi Systems, Inc.
5 * All rights reserved.
6 *
7 * Written by Steve C. Woodford for Wasabi Systems, Inc.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
11 * are met:
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
23 * written permission.
24 *
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.
36 */
37 /*
38 * Copyright (c) 1994-1998 Mark Brinicombe.
39 * Copyright (c) 1994 Brini.
40 * All rights reserved.
41 *
42 * This code is derived from software written for Brini by Mark Brinicombe
43 *
44 * Redistribution and use in source and binary forms, with or without
45 * modification, are permitted provided that the following conditions
46 * are met:
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.
58 *
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
69 * SUCH DAMAGE.
70 *
71 * RiscBSD kernel project
72 *
73 * cpuswitch.S
74 *
75 * cpu switching functions
76 *
77 * Created : 15/10/94
78 */
79
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"
85
86 #include "assym.h"
87 #include <arm/asm.h>
88 #include <arm/locore.h>
89
90 RCSID("$NetBSD: cpuswitch.S,v 1.81 2013/12/26 18:49:23 joerg Exp $")
91
92 /* LINTSTUB: include <sys/param.h> */
93
94 #undef IRQdisable
95 #undef IRQenable
96
97 /*
98 * New experimental definitions of IRQdisable and IRQenable
99 * These keep FIQ's enabled since FIQ's are special.
100 */
101
102 #ifdef _ARM_ARCH_6
103 #define IRQdisable cpsid i
104 #define IRQenable cpsie i
105 #else
106 #define IRQdisable \
107 mrs r14, cpsr ; \
108 orr r14, r14, #(I32_bit) ; \
109 msr cpsr_c, r14
110
111 #define IRQenable \
112 mrs r14, cpsr ; \
113 bic r14, r14, #(I32_bit) ; \
114 msr cpsr_c, r14
115
116 #endif
117
118 .text
119 .Lpmap_previous_active_lwp:
120 .word _C_LABEL(pmap_previous_active_lwp)
121
122 /*
123 * struct lwp *
124 * cpu_switchto(struct lwp *current, struct lwp *next)
125 *
126 * Switch to the specified next LWP
127 * Arguments:
128 *
129 * r0 'struct lwp *' of the current LWP (or NULL if exiting)
130 * r1 'struct lwp *' of the LWP to switch to
131 * r2 returning
132 */
133 ENTRY(cpu_switchto)
134 mov ip, sp
135 push {r4-r7, ip, lr}
136
137 /* move lwps into caller saved registers */
138 mov r6, r1
139 mov r4, r0
140
141 #ifdef TPIDRPRW_IS_CURCPU
142 GET_CURCPU(r3)
143 #elif defined(TPIDRPRW_IS_CURLWP)
144 mcr p15, 0, r0, c13, c0, 4 /* get old lwp (r4 maybe 0) */
145 ldr r3, [r0, #(L_CPU)] /* get cpu from old lwp */
146 #elif !defined(MULTIPROCESSOR)
147 ldr r3, [r6, #L_CPU] /* get cpu from new lwp */
148 #else
149 #error curcpu() method not defined
150 #endif
151
152 /* rem: r3 = curcpu() */
153 /* rem: r4 = old lwp */
154 /* rem: r6 = new lwp */
155
156 #ifndef __HAVE_UNNESTED_INTRS
157 IRQdisable
158 #endif
159
160 #ifdef MULTIPROCESSOR
161 str r3, [r6, #(L_CPU)]
162 #else
163 /* l->l_cpu initialized in fork1() for single-processor */
164 #endif
165
166 #if defined(TPIDRPRW_IS_CURLWP)
167 mcr p15, 0, r6, c13, c0, 4 /* set current lwp */
168 #endif
169 /* We have a new curlwp now so make a note it */
170 str r6, [r3, #(CI_CURLWP)]
171
172 /* Get the new pcb */
173 ldr r7, [r6, #(L_PCB)]
174
175 /* At this point we can allow IRQ's again. */
176 #ifndef __HAVE_UNNESTED_INTRS
177 IRQenable
178 #endif
179
180 /* rem: r3 = curlwp */
181 /* rem: r4 = old lwp */
182 /* rem: r6 = new lwp */
183 /* rem: r7 = new pcb */
184 /* rem: interrupts are enabled */
185
186 /*
187 * If the old lwp on entry to cpu_switchto was zero then the
188 * process that called it was exiting. This means that we do
189 * not need to save the current context. Instead we can jump
190 * straight to restoring the context for the new process.
191 */
192 teq r4, #0
193 beq .Ldo_switch
194
195 /* rem: r3 = curlwp */
196 /* rem: r4 = old lwp */
197 /* rem: r6 = new lwp */
198 /* rem: r7 = new pcb */
199 /* rem: interrupts are enabled */
200
201 /* Save old context */
202
203 /* Get the user structure for the old lwp. */
204 ldr r5, [r4, #(L_PCB)]
205
206 /* Save all the registers in the old lwp's pcb */
207 #if defined(_ARM_ARCH_DWORD_OK)
208 strd r8, r9, [r5, #(PCB_R8)]
209 strd r10, r11, [r5, #(PCB_R10)]
210 strd r12, r13, [r5, #(PCB_R12)]
211 #else
212 add r0, r5, #(PCB_R8)
213 stmia r0, {r8-r13}
214 #endif
215
216 #ifdef _ARM_ARCH_6
217 /*
218 * Save user read/write thread/process id register
219 */
220 mrc p15, 0, r0, c13, c0, 2
221 str r0, [r5, #(PCB_USER_PID_RW)]
222 #endif
223 /*
224 * NOTE: We can now use r8-r13 until it is time to restore
225 * them for the new process.
226 */
227
228 /* rem: r3 = curlwp */
229 /* rem: r4 = old lwp */
230 /* rem: r5 = old pcb */
231 /* rem: r6 = new lwp */
232 /* rem: r7 = new pcb */
233 /* rem: interrupts are enabled */
234
235 /* Restore saved context */
236
237 .Ldo_switch:
238 /* rem: r3 = curlwp */
239 /* rem: r4 = old lwp */
240 /* rem: r6 = new lwp */
241 /* rem: r7 = new pcb */
242 /* rem: interrupts are enabled */
243
244 #ifdef _ARM_ARCH_6
245 /*
246 * Restore user thread/process id registers
247 */
248 ldr r0, [r7, #(PCB_USER_PID_RW)]
249 mcr p15, 0, r0, c13, c0, 2
250 ldr r0, [r6, #(L_PRIVATE)]
251 mcr p15, 0, r0, c13, c0, 3
252 #endif
253
254 #ifdef FPU_VFP
255 /*
256 * If we have a VFP, we need to load FPEXC.
257 */
258 ldr r0, [r3, #(CI_VFP_ID)]
259 cmp r0, #0
260 ldrne r0, [r7, #(PCB_VFP_FPEXC)]
261 vmsrne fpexc, r0
262 #endif
263
264 ldr r5, [r6, #(L_PROC)] /* fetch the proc for below */
265
266 /* Restore all the saved registers */
267 #ifdef __XSCALE__
268 ldr r8, [r7, #(PCB_R8)]
269 ldr r9, [r7, #(PCB_R9)]
270 ldr r10, [r7, #(PCB_R10)]
271 ldr r11, [r7, #(PCB_R11)]
272 ldr r12, [r7, #(PCB_R12)]
273 ldr r13, [r7, #(PCB_KSP)] /* sp */
274 #elif defined(_ARM_ARCH_DWORD_OK)
275 ldrd r8, r9, [r7, #(PCB_R8)]
276 ldrd r10, r11, [r7, #(PCB_R10)]
277 ldrd r12, r13, [r7, #(PCB_R12)] /* sp */
278 #else
279 add r0, r7, #PCB_R8
280 ldmia r0, {r8-r13}
281 #endif
282
283 /* Record the old lwp for pmap_activate()'s benefit */
284 ldr r1, .Lpmap_previous_active_lwp /* XXXSMP */
285 str r4, [r1]
286
287 /* rem: r4 = old lwp */
288 /* rem: r5 = new lwp's proc */
289 /* rem: r6 = new lwp */
290 /* rem: r7 = new pcb */
291
292 /*
293 * Check for restartable atomic sequences (RAS).
294 */
295
296 ldr r2, [r5, #(P_RASLIST)]
297 ldr r1, [r6, #(L_MD_TF)] /* r1 = trapframe (used below) */
298 teq r2, #0 /* p->p_nras == 0? */
299 bne .Lswitch_do_ras /* no, check for one */
300
301 .Lswitch_return:
302 /* cpu_switchto returns the old lwp */
303 mov r0, r4
304 /* lwp_trampoline expects new lwp as it's second argument */
305 mov r1, r6
306
307 #ifdef _ARM_ARCH_7
308 clrex /* cause any subsequent STREX* to fail */
309 #endif
310
311 /*
312 * Pull the registers that got pushed when cpu_switchto() was called,
313 * and return.
314 */
315 pop {r4-r7, ip, pc}
316
317 .Lswitch_do_ras:
318 ldr r1, [r1, #(TF_PC)] /* second ras_lookup() arg */
319 mov r0, r5 /* first ras_lookup() arg */
320 bl _C_LABEL(ras_lookup)
321 cmn r0, #1 /* -1 means "not in a RAS" */
322 ldrne r1, [r6, #(L_MD_TF)]
323 strne r0, [r1, #(TF_PC)]
324 b .Lswitch_return
325 END(cpu_switchto)
326
327 ENTRY_NP(lwp_trampoline)
328 /*
329 * cpu_switchto gives us:
330 * arg0(r0) = old lwp
331 * arg1(r1) = new lwp
332 * setup by cpu_lwp_fork:
333 * r4 = func to call
334 * r5 = arg to func
335 * r6 = <unused>
336 * r7 = spsr mode
337 */
338 bl _C_LABEL(lwp_startup)
339
340 mov fp, #0 /* top stack frame */
341 mov r0, r5
342 mov r1, sp
343 #ifdef _ARM_ARCH_5
344 blx r4
345 #else
346 mov lr, pc
347 mov pc, r4
348 #endif
349
350 GET_CPSR(r0)
351 CPSID_I(r0, r0) /* Kill irq's */
352
353 GET_CURCPU(r4) /* for DO_AST */
354 DO_AST_AND_RESTORE_ALIGNMENT_FAULTS
355 PULLFRAME
356
357 movs pc, lr /* Exit */
358 END(lwp_trampoline)
359
360 AST_ALIGNMENT_FAULT_LOCALS
361
362 #ifdef __HAVE_FAST_SOFTINTS
363 /*
364 * Called at IPL_HIGH
365 * r0 = new lwp
366 * r1 = ipl for softint_dispatch
367 */
368 ENTRY_NP(softint_switch)
369 push {r4, r6, r7, lr}
370
371 ldr r7, [r0, #L_CPU] /* get curcpu */
372 #if defined(TPIDRPRW_IS_CURLWP)
373 mrc p15, 0, r4, c13, c0, 4 /* get old lwp */
374 #else
375 ldr r4, [r7, #(CI_CURLWP)] /* get old lwp */
376 #endif
377 mrs r6, cpsr /* we need to save this */
378
379 /*
380 * If the soft lwp blocks, it needs to return to softint_tramp
381 */
382 mov r2, sp /* think ip */
383 adr r3, softint_tramp /* think lr */
384 push {r2-r3}
385 push {r4-r7}
386
387 mov r5, r0 /* save new lwp */
388
389 ldr r2, [r4, #(L_PCB)] /* get old lwp's pcb */
390
391 /* Save all the registers into the old lwp's pcb */
392 #if defined(__XSCALE__) || defined(_ARM_ARCH_6)
393 strd r8, r9, [r2, #(PCB_R8)]
394 strd r10, r11, [r2, #(PCB_R10)]
395 strd r12, r13, [r2, #(PCB_R12)]
396 #else
397 add r3, r2, #(PCB_R8)
398 stmia r3, {r8-r13}
399 #endif
400
401 /* this is an invariant so load before disabling intrs */
402 ldr r2, [r5, #(L_PCB)] /* get new lwp's pcb */
403
404 #ifndef __HAVE_UNNESTED_INTRS
405 IRQdisable
406 #endif
407 /*
408 * We're switching to a bound LWP so its l_cpu is already correct.
409 */
410 #if defined(TPIDRPRW_IS_CURLWP)
411 mcr p15, 0, r5, c13, c0, 4 /* save new lwp */
412 #endif
413 str r5, [r7, #(CI_CURLWP)] /* save new lwp */
414
415 /*
416 * Normally, we'd get {r8-r13} but since this is a softint lwp
417 * it's existing state doesn't matter. We start the stack just
418 * below the trapframe.
419 */
420 ldr sp, [r5, #(L_MD_TF)] /* get new lwp's stack ptr */
421
422 /* At this point we can allow IRQ's again. */
423 #ifndef __HAVE_UNNESTED_INTRS
424 IRQenable
425 #endif
426
427 /* r1 still has ipl */
428 mov r0, r4 /* r0 has pinned (old) lwp */
429 bl _C_LABEL(softint_dispatch)
430 /*
431 * If we've returned, we need to change everything back and return.
432 */
433 ldr r2, [r4, #(L_PCB)] /* get pinned lwp's pcb */
434
435 #ifndef __HAVE_UNNESTED_INTRS
436 IRQdisable
437 #endif
438 /*
439 * We don't need to restore all the registers since another lwp was
440 * never executed. But we do need the SP from the formerly pinned lwp.
441 */
442
443 #if defined(TPIDRPRW_IS_CURLWP)
444 mcr p15, 0, r4, c13, c0, 4 /* restore pinned lwp */
445 #endif
446 str r4, [r7, #(CI_CURLWP)] /* restore pinned lwp */
447 ldr sp, [r2, #(PCB_KSP)] /* now running on the old stack. */
448
449 /* At this point we can allow IRQ's again. */
450 msr cpsr_c, r6
451
452 /*
453 * Grab the registers that got pushed at the start and return.
454 */
455 pop {r4-r7, ip, lr} /* eat switch frame */
456 pop {r4, r6, r7, pc} /* pop stack and return */
457
458 END(softint_switch)
459
460 /*
461 * r0 = previous LWP (the soft lwp)
462 * r4 = original LWP (the current lwp)
463 * r6 = original CPSR
464 * r7 = curcpu()
465 */
466 ENTRY_NP(softint_tramp)
467 ldr r3, [r7, #(CI_MTX_COUNT)] /* readust after mi_switch */
468 add r3, r3, #1
469 str r3, [r7, #(CI_MTX_COUNT)]
470
471 mov r3, #0 /* tell softint_dispatch */
472 str r3, [r0, #(L_CTXSWTCH)] /* the soft lwp blocked */
473
474 msr cpsr_c, r6 /* restore interrupts */
475 pop {r4, r6, r7, pc} /* pop stack and return */
476 END(softint_tramp)
477 #endif /* __HAVE_FAST_SOFTINTS */
478