swtch-v6.S revision 142570
1/*	$NetBSD: cpuswitch.S,v 1.41 2003/11/15 08:44:18 scw 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
81#include "assym.s"
82
83#include <machine/asm.h>
84#include <machine/asmacros.h>
85#include <machine/armreg.h>
86__FBSDID("$FreeBSD: head/sys/arm/arm/swtch.S 142570 2005-02-26 18:59:01Z cognet $");
87
88
89/*
90 * New experimental definitions of IRQdisable and IRQenable
91 * These keep FIQ's enabled since FIQ's are special.
92 */
93
94#define DOMAIN_CLIENT	0x01
95#define IRQdisable \
96	mrs	r14, cpsr ; \
97	orr	r14, r14, #(I32_bit) ; \
98	msr	cpsr_c, r14 ; \
99
100#define IRQenable \
101	mrs	r14, cpsr ; \
102	bic	r14, r14, #(I32_bit) ; \
103	msr	cpsr_c, r14 ; \
104
105/*
106 * These are used for switching the translation table/DACR.
107 * Since the vector page can be invalid for a short time, we must
108 * disable both regular IRQs *and* FIQs.
109 *
110 * XXX: This is not necessary if the vector table is relocated.
111 */
112#define IRQdisableALL \
113	mrs	r14, cpsr ; \
114	orr	r14, r14, #(I32_bit | F32_bit) ; \
115	msr	cpsr_c, r14
116
117#define IRQenableALL \
118	mrs	r14, cpsr ; \
119	bic	r14, r14, #(I32_bit | F32_bit) ; \
120	msr	cpsr_c, r14
121
122.Lcurpcb:
123	.word	_C_LABEL(__pcpu) + PC_CURPCB
124.Lcpufuncs:
125	.word	_C_LABEL(cpufuncs)
126.Lblock_userspace_access:
127	.word	_C_LABEL(block_userspace_access)
128.Lcpu_do_powersave:
129	.word	_C_LABEL(cpu_do_powersave)
130ENTRY(cpu_throw)
131	mov	r5, r1
132
133	/*
134	 * r5 = newtd
135	 */
136
137	ldr	r7, [r5, #(TD_PCB)]		/* r7 = new thread's PCB */
138
139	/* Switch to lwp0 context */
140
141	ldr	r9, .Lcpufuncs
142	mov	lr, pc
143	ldr	pc, [r9, #CF_IDCACHE_WBINV_ALL]
144	ldr	r0, [r7, #(PCB_PL1VEC)]
145	ldr	r1, [r7, #(PCB_DACR)]
146	/*
147	 * r0 = Pointer to L1 slot for vector_page (or NULL)
148	 * r1 = lwp0's DACR
149	 * r5 = lwp0
150	 * r6 = exit func
151	 * r7 = lwp0's PCB
152	 * r9 = cpufuncs
153	 */
154
155	/*
156	 * Ensure the vector table is accessible by fixing up lwp0's L1
157	 */
158	cmp	r0, #0			/* No need to fixup vector table? */
159	ldrne	r3, [r0]		/* But if yes, fetch current value */
160	ldrne	r2, [r7, #(PCB_L1VEC)]	/* Fetch new vector_page value */
161	mcr	p15, 0, r1, c3, c0, 0	/* Update DACR for lwp0's context */
162	cmpne	r3, r2			/* Stuffing the same value? */
163	strne	r2, [r0]		/* Store if not. */
164
165#ifdef PMAP_INCLUDE_PTE_SYNC
166	/*
167	 * Need to sync the cache to make sure that last store is
168	 * visible to the MMU.
169	 */
170	movne	r1, #4
171	movne	lr, pc
172	ldrne	pc, [r9, #CF_DCACHE_WB_RANGE]
173#endif /* PMAP_INCLUDE_PTE_SYNC */
174
175	/*
176	 * Note: We don't do the same optimisation as cpu_switch() with
177	 * respect to avoiding flushing the TLB if we're switching to
178	 * the same L1 since this process' VM space may be about to go
179	 * away, so we don't want *any* turds left in the TLB.
180	 */
181
182	/* Switch the memory to the new process */
183	ldr	r0, [r7, #(PCB_PAGEDIR)]
184	mov	lr, pc
185	ldr	pc, [r9, #CF_CONTEXT_SWITCH]
186
187	/* Restore all the save registers */
188#ifndef __XSCALE__
189	add	r1, r7, #PCB_R8
190	ldmia	r1, {r8-r13}
191#else
192	ldr	r8, [r7, #(PCB_R8)]
193	ldr	r9, [r7, #(PCB_R9)]
194	ldr	r10, [r7, #(PCB_R10)]
195	ldr	r11, [r7, #(PCB_R11)]
196	ldr	r12, [r7, #(PCB_R12)]
197	ldr	r13, [r7, #(PCB_SP)]
198#endif
199
200	/* We have a new curthread now so make a note it */
201	ldr	r6, .Lcurthread
202	str	r5, [r6]
203
204	/* Set the new tp */
205	ldr	r6, [r5, #(TD_MD)]
206	add	r6, r6, #(MD_TP)
207	mov	r5, #ARM_TP_ADDRESS
208	str	r6, [r5]
209
210	/* Hook in a new pcb */
211	ldr	r6, .Lcurpcb
212	str	r7, [r6]
213
214	ldmfd	sp!, {r4-r7, pc}
215
216ENTRY(cpu_switch)
217	stmfd	sp!, {r4-r7, lr}
218
219.Lswitch_resume:
220	/* rem: r0 = old lwp */
221	/* rem: interrupts are disabled */
222
223#ifdef MULTIPROCESSOR
224	/* XXX use curcpu() */
225	ldr	r2, .Lcpu_info_store
226	str	r2, [r6, #(L_CPU)]
227#endif
228
229	/* Process is now on a processor. */
230
231	/* We have a new curthread now so make a note it */
232	ldr	r7, .Lcurthread
233	str	r1, [r7]
234
235	/* Hook in a new pcb */
236	ldr	r7, .Lcurpcb
237	ldr	r2, [r1, #TD_PCB]
238	str	r2, [r7]
239
240	/* rem: r1 = new process */
241	/* rem: interrupts are enabled */
242
243	/* Stage two : Save old context */
244
245	/* Get the user structure for the old lwp. */
246	ldr	r2, [r0, #(TD_PCB)]
247
248	/* Save all the registers in the old lwp's pcb */
249#ifndef __XSCALE__
250	add	r7, r2, #(PCB_R8)
251	stmia	r7, {r8-r13}
252#else
253	strd	r8, [r2, #(PCB_R8)]
254	strd	r10, [r2, #(PCB_R10)]
255	strd	r12, [r2, #(PCB_R12)]
256#endif
257
258	/*
259	 * NOTE: We can now use r8-r13 until it is time to restore
260	 * them for the new process.
261	 */
262	/* Store the old tp */
263	mov	r3, #ARM_TP_ADDRESS
264	ldr	r9, [r3]
265	str	r9, [r0, #(TD_MD + MD_TP)]
266
267	/* Set the new tp */
268	ldr	r9, [r1, #(TD_MD + MD_TP)]
269	mov	r3, #ARM_TP_ADDRESS
270	str	r9, [r3]
271
272	/* Get the user structure for the new process in r9 */
273	ldr	r9, [r1, #(TD_PCB)]
274
275	/* r1 now free! */
276
277        mrs	r3, cpsr
278	/*
279	 * We can do that, since
280	 * PSR_SVC32_MODE|PSR_UND32_MODE == MSR_UND32_MODE
281	 */
282	orr	r8, r3, #(PSR_UND32_MODE)
283        msr	cpsr_c, r8
284
285	str	sp, [r2, #(PCB_UND_SP)]
286
287        msr	cpsr_c, r3		/* Restore the old mode */
288	/* rem: r8 = old PCB */
289	/* rem: r9 = new PCB */
290	/* rem: interrupts are enabled */
291
292	/* What else needs to be saved  Only FPA stuff when that is supported */
293
294	/* Third phase : restore saved context */
295
296	/* rem: r8 = old PCB */
297	/* rem: r9 = new PCB */
298	/* rem: interrupts are enabled */
299
300	ldr	r5, [r9, #(PCB_DACR)]		/* r5 = new DACR */
301	mov	r2, #DOMAIN_CLIENT
302	cmp     r5, r2, lsl #(PMAP_DOMAIN_KERNEL * 2) /* Sw to kernel thread? */
303	beq     .Lcs_context_switched        /* Yup. Don't flush cache */
304	mrc	p15, 0, r0, c3, c0, 0		/* r0 = old DACR */
305	/*
306	 * Get the new L1 table pointer into r11.  If we're switching to
307	 * an LWP with the same address space as the outgoing one, we can
308	 * skip the cache purge and the TTB load.
309	 *
310	 * To avoid data dep stalls that would happen anyway, we try
311	 * and get some useful work done in the mean time.
312	 */
313	mrc	p15, 0, r10, c2, c0, 0		/* r10 = old L1 */
314	ldr	r11, [r9, #(PCB_PAGEDIR)]	/* r11 = new L1 */
315
316
317	teq	r10, r11			/* Same L1? */
318	cmpeq	r0, r5				/* Same DACR? */
319	beq	.Lcs_context_switched		/* yes! */
320
321	/*
322	 * Definately need to flush the cache.
323	 */
324
325	ldr	r1, .Lcpufuncs
326	mov	lr, pc
327	ldr	pc, [r1, #CF_IDCACHE_WBINV_ALL]
328.Lcs_cache_purge_skipped:
329	/* rem: r4 = &block_userspace_access */
330	/* rem: r6 = new lwp */
331	/* rem: r9 = new PCB */
332	/* rem: r10 = old L1 */
333	/* rem: r11 = new L1 */
334
335	mov	r2, #0x00000000
336	ldr	r7, [r9, #(PCB_PL1VEC)]
337
338	/*
339	 * Ensure the vector table is accessible by fixing up the L1
340	 */
341	cmp	r7, #0			/* No need to fixup vector table? */
342	ldrne	r2, [r7]		/* But if yes, fetch current value */
343	ldrne	r0, [r9, #(PCB_L1VEC)]	/* Fetch new vector_page value */
344	mcr	p15, 0, r5, c3, c0, 0	/* Update DACR for new context */
345	cmpne	r2, r0			/* Stuffing the same value? */
346#ifndef PMAP_INCLUDE_PTE_SYNC
347	strne	r0, [r7]		/* Nope, update it */
348#else
349	beq	.Lcs_same_vector
350	str	r0, [r7]		/* Otherwise, update it */
351
352	/*
353	 * Need to sync the cache to make sure that last store is
354	 * visible to the MMU.
355	 */
356	ldr	r2, .Lcpufuncs
357	mov	r0, r7
358	mov	r1, #4
359	mov	lr, pc
360	ldr	pc, [r2, #CF_DCACHE_WB_RANGE]
361
362.Lcs_same_vector:
363#endif /* PMAP_INCLUDE_PTE_SYNC */
364
365	cmp	r10, r11		/* Switching to the same L1? */
366	ldr	r10, .Lcpufuncs
367	beq	.Lcs_same_l1		/* Yup. */
368	/*
369	 * Do a full context switch, including full TLB flush.
370	 */
371	mov	r0, r11
372	mov	lr, pc
373	ldr	pc, [r10, #CF_CONTEXT_SWITCH]
374
375	b	.Lcs_context_switched
376
377	/*
378	 * We're switching to a different process in the same L1.
379	 * In this situation, we only need to flush the TLB for the
380	 * vector_page mapping, and even then only if r7 is non-NULL.
381	 */
382.Lcs_same_l1:
383	cmp	r7, #0
384	movne	r0, #0			/* We *know* vector_page's VA is 0x0 */
385	movne	lr, pc
386	ldrne	pc, [r10, #CF_TLB_FLUSHID_SE]
387	/*
388	 * We can do that, since
389	 * PSR_SVC32_MODE|PSR_UND32_MODE == MSR_UND32_MODE
390	 */
391
392.Lcs_context_switched:
393
394	/* XXXSCW: Safe to re-enable FIQs here */
395
396	/* rem: r9 = new PCB */
397
398        mrs	r3, cpsr
399	/*
400	 * We can do that, since
401	 * PSR_SVC32_MODE|PSR_UND32_MODE == MSR_UND32_MODE
402	 */
403	orr	r2, r3, #(PSR_UND32_MODE)
404	msr	cpsr_c, r2
405
406	ldr	sp, [r9, #(PCB_UND_SP)]
407
408        msr	cpsr_c, r3		/* Restore the old mode */
409	/* Restore all the save registers */
410#ifndef __XSCALE__
411	add	r7, r9, #PCB_R8
412	ldmia	r7, {r8-r13}
413	sub	r7, r7, #PCB_R8		/* restore PCB pointer */
414#else
415	mov	r7, r9
416	ldr	r8, [r7, #(PCB_R8)]
417	ldr	r9, [r7, #(PCB_R9)]
418	ldr	r10, [r7, #(PCB_R10)]
419	ldr	r11, [r7, #(PCB_R11)]
420	ldr	r12, [r7, #(PCB_R12)]
421	ldr	r13, [r7, #(PCB_SP)]
422#endif
423
424	/* rem: r6 = new lwp */
425	/* rem: r7 = new pcb */
426
427#ifdef ARMFPE
428	add	r0, r7, #(USER_SIZE) & 0x00ff
429	add	r0, r0, #(USER_SIZE) & 0xff00
430	bl	_C_LABEL(arm_fpe_core_changecontext)
431#endif
432
433	/* rem: r5 = new lwp's proc */
434	/* rem: r6 = new lwp */
435	/* rem: r7 = new PCB */
436
437.Lswitch_return:
438
439	/*
440	 * Pull the registers that got pushed when either savectx() or
441	 * cpu_switch() was called and return.
442	 */
443	ldmfd	sp!, {r4-r7, pc}
444#ifdef DIAGNOSTIC
445.Lswitch_bogons:
446	adr	r0, .Lswitch_panic_str
447	bl	_C_LABEL(panic)
4481:	nop
449	b	1b
450
451.Lswitch_panic_str:
452	.asciz	"cpu_switch: sched_qs empty with non-zero sched_whichqs!\n"
453#endif
454ENTRY(savectx)
455	RET
456ENTRY(fork_trampoline)
457	mov	r1, r5
458	mov	r2, sp
459	mov	r0, r4
460	mov	fp, #0
461	bl	_C_LABEL(fork_exit)
462	/* Kill irq"s */
463	mrs	r0, cpsr
464	orr	r0, r0, #(I32_bit)
465	msr	cpsr_c, r0
466	PULLFRAME
467
468	movs	pc, lr			/* Exit */
469
470AST_LOCALS
471