2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
6 * Copyright (C) 1994, 1995, 1996, 1998, 1999, 2002, 2003 Ralf Baechle
7 * Copyright (C) 1996 David S. Miller (davem@davemloft.net)
8 * Copyright (C) 1994, 1995, 1996, by Andreas Busse
9 * Copyright (C) 1999 Silicon Graphics, Inc.
10 * Copyright (C) 2000 MIPS Technologies, Inc.
11 * written by Carsten Langgaard, carstenl@mips.com
14 #include <asm/cachectl.h>
15 #include <asm/fpregdef.h>
16 #include <asm/mipsregs.h>
17 #include <asm/asm-offsets.h>
18 #include <asm/pgtable-bits.h>
19 #include <asm/regdef.h>
20 #include <asm/stackframe.h>
21 #include <asm/thread_info.h>
23 #include <asm/asmmacro.h>
26 * Offset to the current process status flags, the first 32 bytes of the
29 #define ST_OFF (_THREAD_SIZE - 32 - PT_SIZE + PT_STATUS)
32 * FPU context is saved iff the process has used it's FPU in the current
33 * time slice as indicated by _TIF_USEDFPU. In any case, the CU1 bit for user
34 * space STATUS register should be 0, so that a process *always* starts its
35 * userland with FPU disabled after each context switch.
37 * FPU will be enabled as soon as the process accesses FPU again, through
42 * task_struct *resume(task_struct *prev, task_struct *next,
43 * struct thread_info *next_ti, int usedfpu)
48 LONG_S t1, THREAD_STATUS(a0)
49 cpu_save_nonscratch a0
50 LONG_S ra, THREAD_REG31(a0)
53 * check if we need to save FPU registers
58 PTR_L t3, TASK_THREAD_INFO(a0)
60 * clear saved user stack CU1 bit
67 fpu_save_double a0 t0 t1 # c0_status passed in t0
71 #if defined(CONFIG_CC_STACKPROTECTOR) && !defined(CONFIG_SMP)
72 PTR_LA t8, __stack_chk_guard
73 LONG_L t9, TASK_STACK_CANARY(a1)
78 * The order of restoring the registers takes care of the race
79 * updating $28, $29 and kernelsp without disabling ints.
82 cpu_restore_nonscratch a1
84 PTR_ADDU t0, $28, _THREAD_SIZE - 32
85 set_saved_sp t0, t1, t2
86 #ifdef CONFIG_MIPS_MT_SMTC
87 /* Read-modify-writes of Status must be atomic on a VPE */
89 ori t1, t2, TCSTATUS_IXMT
91 andi t2, t2, TCSTATUS_IXMT
97 #endif /* CONFIG_MIPS_MT_SMTC */
98 mfc0 t1, CP0_STATUS /* Do we really need this? */
101 LONG_L a2, THREAD_STATUS(a1)
106 #ifdef CONFIG_MIPS_MT_SMTC
108 andi t0, t0, VPECONTROL_TE
112 mfc0 t1, CP0_TCSTATUS
113 xori t1, t1, TCSTATUS_IXMT
115 mtc0 t1, CP0_TCSTATUS
117 #endif /* CONFIG_MIPS_MT_SMTC */
123 * Save a thread's fp context.
126 #if defined(CONFIG_64BIT) || defined(CONFIG_CPU_MIPS32_R2)
129 fpu_save_double a0 t0 t1 # clobbers t1
134 * Restore a thread's fp context.
137 #if defined(CONFIG_64BIT) || defined(CONFIG_CPU_MIPS32_R2)
140 fpu_restore_double a0 t0 t1 # clobbers t1
145 * Load the FPU with signalling NANS. This bit pattern we're using has
146 * the property that no matter whether considered as single or as double
147 * precision represents signaling NANS.
149 * We initialize fcr31 to rounding to nearest, no exceptions.
152 #define FPU_DEFAULT 0x00000000
155 #ifdef CONFIG_MIPS_MT_SMTC
156 /* Rather than manipulate per-VPE Status, set per-TC bit in TCStatus */
157 mfc0 t0, CP0_TCSTATUS
158 /* Bit position is the same for Status, TCStatus */
161 mtc0 t0, CP0_TCSTATUS
162 #else /* Normal MIPS CU1 enable */
167 #endif /* CONFIG_MIPS_MT_SMTC */
177 bgez t0, 1f # 16 / 32 register mode?
198 #ifdef CONFIG_CPU_MIPS32
232 #ifdef CONFIG_CPU_MIPS32_R2
235 sll t0, t0, 5 # is Status.FR set?
236 bgez t0, 1f # no: skip setting upper 32b
271 #endif /* CONFIG_CPU_MIPS32_R2 */