2 * r2300_switch.S: R2300 specific task switching code.
4 * Copyright (C) 1994, 1995, 1996, 1999 by Ralf Baechle
5 * Copyright (C) 1994, 1995, 1996 by Andreas Busse
7 * Multi-cpu abstraction and macros for easier reading:
8 * Copyright (C) 1996 David S. Miller (davem@davemloft.net)
10 * Further modifications to make this work:
11 * Copyright (c) 1998-2000 Harald Koerfgen
14 #include <asm/cachectl.h>
15 #include <asm/fpregdef.h>
16 #include <asm/mipsregs.h>
17 #include <asm/asm-offsets.h>
18 #include <asm/regdef.h>
19 #include <asm/stackframe.h>
20 #include <asm/thread_info.h>
22 #include <asm/asmmacro.h>
28 * Offset to the current process status flags, the first 32 bytes of the
31 #define ST_OFF (_THREAD_SIZE - 32 - PT_SIZE + PT_STATUS)
34 * FPU context is saved iff the process has used it's FPU in the current
35 * time slice as indicated by TIF_USEDFPU. In any case, the CU1 bit for user
36 * space STATUS register should be 0, so that a process *always* starts its
37 * userland with FPU disabled after each context switch.
39 * FPU will be enabled as soon as the process accesses FPU again, through
44 * task_struct *resume(task_struct *prev, task_struct *next,
45 * struct thread_info *next_ti, int usedfpu)
49 sw t1, THREAD_STATUS(a0)
50 cpu_save_nonscratch a0
51 sw ra, THREAD_REG31(a0)
55 PTR_L t3, TASK_THREAD_INFO(a0)
58 * clear saved user stack CU1 bit
65 fpu_save_single a0, t0 # clobbers t0
69 #if defined(CONFIG_CC_STACKPROTECTOR) && !defined(CONFIG_SMP)
70 PTR_LA t8, __stack_chk_guard
71 LONG_L t9, TASK_STACK_CANARY(a1)
76 * The order of restoring the registers takes care of the race
77 * updating $28, $29 and kernelsp without disabling ints.
80 cpu_restore_nonscratch a1
82 addiu t1, $28, _THREAD_SIZE - 32
85 mfc0 t1, CP0_STATUS /* Do we really need this? */
88 lw a2, THREAD_STATUS(a1)
98 * Save a thread's fp context.
101 fpu_save_single a0, t1 # clobbers t1
106 * Restore a thread's fp context.
109 fpu_restore_single a0, t1 # clobbers t1
114 * Load the FPU with signalling NANS. This bit pattern we're using has
115 * the property that no matter whether considered as single or as double
116 * precision represents signaling NANS.
118 * The value to initialize fcr31 to comes in $a0.