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>
25 /* preprocessor replaces the fp in ".set fp=64" with $30 otherwise */
29 * Offset to the current process status flags, the first 32 bytes of the
32 #define ST_OFF (_THREAD_SIZE - 32 - PT_SIZE + PT_STATUS)
34 #ifndef USE_ALTERNATE_RESUME_IMPL
36 * task_struct *resume(task_struct *prev, task_struct *next,
37 * struct thread_info *next_ti, s32 fp_save)
42 LONG_S t1, THREAD_STATUS(a0)
43 cpu_save_nonscratch a0
44 LONG_S ra, THREAD_REG31(a0)
47 * Check whether we need to save any FP context. FP context is saved
48 * iff the process has used the context with the scalar FPU or the MSA
49 * ASE in the current time slice, as indicated by _TIF_USEDFPU and
50 * _TIF_USEDMSA respectively. switch_to will have set fp_save
51 * accordingly to an FP_SAVE_ enum value.
56 * We do. Clear the saved CU1 bit for prev, such that next time it is
57 * scheduled it will start in userland with the FPU disabled. If the
58 * task uses the FPU then it will be enabled again via the do_cpu trap.
59 * This allows us to lazily restore the FP context.
61 PTR_L t3, TASK_THREAD_INFO(a0)
67 /* Check whether we're saving scalar or vector context. */
70 /* Save 128b MSA vector context + scalar FP control & status. */
75 .set pop /* SET_HARDFLOAT */
77 sw t1, THREAD_FCR31(a0)
80 1: /* Save 32b/64b scalar FP context. */
81 fpu_save_double a0 t0 t1 # c0_status passed in t0
85 #if defined(CONFIG_CC_STACKPROTECTOR) && !defined(CONFIG_SMP)
86 PTR_LA t8, __stack_chk_guard
87 LONG_L t9, TASK_STACK_CANARY(a1)
92 * The order of restoring the registers takes care of the race
93 * updating $28, $29 and kernelsp without disabling ints.
96 cpu_restore_nonscratch a1
98 PTR_ADDU t0, $28, _THREAD_SIZE - 32
99 set_saved_sp t0, t1, t2
100 mfc0 t1, CP0_STATUS /* Do we really need this? */
103 LONG_L a2, THREAD_STATUS(a1)
112 #endif /* USE_ALTERNATE_RESUME_IMPL */
115 * Save a thread's fp context.
118 #if defined(CONFIG_64BIT) || defined(CONFIG_CPU_MIPS32_R2) || \
119 defined(CONFIG_CPU_MIPS32_R6)
122 fpu_save_double a0 t0 t1 # clobbers t1
127 * Restore a thread's fp context.
130 #if defined(CONFIG_64BIT) || defined(CONFIG_CPU_MIPS32_R2) || \
131 defined(CONFIG_CPU_MIPS32_R6)
134 fpu_restore_double a0 t0 t1 # clobbers t1
138 #ifdef CONFIG_CPU_HAS_MSA
141 * Save a thread's MSA vector context.
149 * Restore a thread's MSA vector context.
156 LEAF(_init_msa_upper)
164 * Load the FPU with signalling NANS. This bit pattern we're using has
165 * the property that no matter whether considered as single or as double
166 * precision represents signaling NANS.
168 * The value to initialize fcr31 to comes in $a0.
187 bgez t0, 1f # 16 / 32 register mode?
208 #ifdef CONFIG_CPU_MIPS32
242 #if defined(CONFIG_CPU_MIPS32_R2) || defined(CONFIG_CPU_MIPS32_R6)
244 .set MIPS_ISA_LEVEL_RAW
246 sll t0, t0, 5 # is Status.FR set?
247 bgez t0, 1f # no: skip setting upper 32b
282 #endif /* CONFIG_CPU_MIPS32_R2 || CONFIG_CPU_MIPS32_R6 */
284 .set MIPS_ISA_ARCH_LEVEL_RAW
305 .set pop /* SET_HARDFLOAT */