blob: 64591e671878f41d9c4d0551806783b65578eb23 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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
4 * for more details.
5 *
6 * Copyright (C) 1994, 1995, 1996, 1998, 1999, 2002, 2003 Ralf Baechle
Justin P. Mattock79add622011-04-04 14:15:29 -07007 * Copyright (C) 1996 David S. Miller (davem@davemloft.net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * 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
12 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <asm/asm.h>
14#include <asm/cachectl.h>
15#include <asm/fpregdef.h>
16#include <asm/mipsregs.h>
Sam Ravnborg048eb582005-09-09 22:32:31 +020017#include <asm/asm-offsets.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <asm/pgtable-bits.h>
19#include <asm/regdef.h>
20#include <asm/stackframe.h>
21#include <asm/thread_info.h>
22
23#include <asm/asmmacro.h>
24
Manuel Lauss842dfc12014-11-07 14:13:54 +010025/* preprocessor replaces the fp in ".set fp=64" with $30 otherwise */
26#undef fp
27
Linus Torvalds1da177e2005-04-16 15:20:36 -070028/*
29 * Offset to the current process status flags, the first 32 bytes of the
30 * stack are not used.
31 */
32#define ST_OFF (_THREAD_SIZE - 32 - PT_SIZE + PT_STATUS)
33
David Daneya36d8222014-05-28 23:52:04 +020034#ifndef USE_ALTERNATE_RESUME_IMPL
Linus Torvalds1da177e2005-04-16 15:20:36 -070035/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 * task_struct *resume(task_struct *prev, task_struct *next,
Paul Burton1db1af82014-01-27 15:23:11 +000037 * struct thread_info *next_ti, s32 fp_save)
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 */
39 .align 5
40 LEAF(resume)
Atsushi Nemoto53231802007-04-14 02:37:26 +090041 mfc0 t1, CP0_STATUS
42 LONG_S t1, THREAD_STATUS(a0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 cpu_save_nonscratch a0
44 LONG_S ra, THREAD_REG31(a0)
45
46 /*
Paul Burton1db1af82014-01-27 15:23:11 +000047 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 */
Paul Burton1db1af82014-01-27 15:23:11 +000053 beqz a3, 2f
Leonid Yegoshin2dd17032012-07-19 09:11:14 +020054
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 /*
Paul Burton1db1af82014-01-27 15:23:11 +000056 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 */
Paul Burton1db1af82014-01-27 15:23:11 +000061 PTR_L t3, TASK_THREAD_INFO(a0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 LONG_L t0, ST_OFF(t3)
63 li t1, ~ST0_CU1
64 and t0, t0, t1
65 LONG_S t0, ST_OFF(t3)
66
Paul Burton1db1af82014-01-27 15:23:11 +000067 /* Check whether we're saving scalar or vector context. */
68 bgtz a3, 1f
69
Paul Burtonb8340672014-07-11 16:44:29 +010070 /* Save 128b MSA vector context + scalar FP control & status. */
Manuel Lauss842dfc12014-11-07 14:13:54 +010071 .set push
72 SET_HARDFLOAT
Paul Burtonb8340672014-07-11 16:44:29 +010073 cfc1 t1, fcr31
Paul Burton1db1af82014-01-27 15:23:11 +000074 msa_save_all a0
Manuel Lauss842dfc12014-11-07 14:13:54 +010075 .set pop /* SET_HARDFLOAT */
76
Paul Burtonb8340672014-07-11 16:44:29 +010077 sw t1, THREAD_FCR31(a0)
Paul Burton1db1af82014-01-27 15:23:11 +000078 b 2f
79
801: /* Save 32b/64b scalar FP context. */
Atsushi Nemotoc138e122006-05-23 00:47:41 +090081 fpu_save_double a0 t0 t1 # c0_status passed in t0
82 # clobbers t1
Paul Burton1db1af82014-01-27 15:23:11 +0000832:
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Gregory Fong1400eb62013-06-17 19:36:07 +000085#if defined(CONFIG_CC_STACKPROTECTOR) && !defined(CONFIG_SMP)
James Hogan8b3c5692013-10-07 12:14:26 +010086 PTR_LA t8, __stack_chk_guard
Gregory Fong1400eb62013-06-17 19:36:07 +000087 LONG_L t9, TASK_STACK_CANARY(a1)
88 LONG_S t9, 0(t8)
89#endif
90
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 /*
92 * The order of restoring the registers takes care of the race
93 * updating $28, $29 and kernelsp without disabling ints.
94 */
95 move $28, a2
96 cpu_restore_nonscratch a1
97
Ralf Baechle3bd39662007-07-11 08:32:21 +010098 PTR_ADDU t0, $28, _THREAD_SIZE - 32
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 set_saved_sp t0, t1, t2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 mfc0 t1, CP0_STATUS /* Do we really need this? */
101 li a3, 0xff01
102 and t1, a3
103 LONG_L a2, THREAD_STATUS(a1)
104 nor a3, $0, a3
105 and a2, a3
106 or a2, t1
107 mtc0 a2, CP0_STATUS
108 move v0, a0
109 jr ra
110 END(resume)
111
David Daneya36d8222014-05-28 23:52:04 +0200112#endif /* USE_ALTERNATE_RESUME_IMPL */
113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114/*
115 * Save a thread's fp context.
116 */
117LEAF(_save_fp)
Paul Burton597ce172013-11-22 13:12:07 +0000118#if defined(CONFIG_64BIT) || defined(CONFIG_CPU_MIPS32_R2)
Atsushi Nemotoc138e122006-05-23 00:47:41 +0900119 mfc0 t0, CP0_STATUS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120#endif
Atsushi Nemotoc138e122006-05-23 00:47:41 +0900121 fpu_save_double a0 t0 t1 # clobbers t1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 jr ra
123 END(_save_fp)
124
125/*
126 * Restore a thread's fp context.
127 */
128LEAF(_restore_fp)
Paul Burton597ce172013-11-22 13:12:07 +0000129#if defined(CONFIG_64BIT) || defined(CONFIG_CPU_MIPS32_R2)
Atsushi Nemotoc138e122006-05-23 00:47:41 +0900130 mfc0 t0, CP0_STATUS
131#endif
132 fpu_restore_double a0 t0 t1 # clobbers t1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 jr ra
134 END(_restore_fp)
135
Paul Burton1db1af82014-01-27 15:23:11 +0000136#ifdef CONFIG_CPU_HAS_MSA
137
138/*
139 * Save a thread's MSA vector context.
140 */
141LEAF(_save_msa)
142 msa_save_all a0
143 jr ra
144 END(_save_msa)
145
146/*
147 * Restore a thread's MSA vector context.
148 */
149LEAF(_restore_msa)
150 msa_restore_all a0
151 jr ra
152 END(_restore_msa)
153
Paul Burtonc9017752014-07-30 08:53:20 +0100154LEAF(_init_msa_upper)
155 msa_init_all_upper
156 jr ra
157 END(_init_msa_upper)
158
Paul Burton1db1af82014-01-27 15:23:11 +0000159#endif
160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161/*
162 * Load the FPU with signalling NANS. This bit pattern we're using has
163 * the property that no matter whether considered as single or as double
164 * precision represents signaling NANS.
165 *
166 * We initialize fcr31 to rounding to nearest, no exceptions.
167 */
168
169#define FPU_DEFAULT 0x00000000
170
Manuel Lauss842dfc12014-11-07 14:13:54 +0100171 .set push
172 SET_HARDFLOAT
173
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174LEAF(_init_fpu)
175 mfc0 t0, CP0_STATUS
176 li t1, ST0_CU1
177 or t0, t1
178 mtc0 t0, CP0_STATUS
Chris Dearmanf9509c82007-05-17 21:36:55 +0100179 enable_fpu_hazard
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
181 li t1, FPU_DEFAULT
182 ctc1 t1, fcr31
183
184 li t1, -1 # SNaN
185
Ralf Baechle875d43e2005-09-03 15:56:16 -0700186#ifdef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 sll t0, t0, 5
188 bgez t0, 1f # 16 / 32 register mode?
189
190 dmtc1 t1, $f1
191 dmtc1 t1, $f3
192 dmtc1 t1, $f5
193 dmtc1 t1, $f7
194 dmtc1 t1, $f9
195 dmtc1 t1, $f11
196 dmtc1 t1, $f13
197 dmtc1 t1, $f15
198 dmtc1 t1, $f17
199 dmtc1 t1, $f19
200 dmtc1 t1, $f21
201 dmtc1 t1, $f23
202 dmtc1 t1, $f25
203 dmtc1 t1, $f27
204 dmtc1 t1, $f29
205 dmtc1 t1, $f31
2061:
207#endif
Ralf Baechle42a3b4f2005-09-03 15:56:17 -0700208
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209#ifdef CONFIG_CPU_MIPS32
210 mtc1 t1, $f0
211 mtc1 t1, $f1
212 mtc1 t1, $f2
213 mtc1 t1, $f3
214 mtc1 t1, $f4
215 mtc1 t1, $f5
216 mtc1 t1, $f6
217 mtc1 t1, $f7
218 mtc1 t1, $f8
219 mtc1 t1, $f9
220 mtc1 t1, $f10
221 mtc1 t1, $f11
222 mtc1 t1, $f12
223 mtc1 t1, $f13
224 mtc1 t1, $f14
225 mtc1 t1, $f15
226 mtc1 t1, $f16
227 mtc1 t1, $f17
228 mtc1 t1, $f18
229 mtc1 t1, $f19
230 mtc1 t1, $f20
231 mtc1 t1, $f21
232 mtc1 t1, $f22
233 mtc1 t1, $f23
234 mtc1 t1, $f24
235 mtc1 t1, $f25
236 mtc1 t1, $f26
237 mtc1 t1, $f27
238 mtc1 t1, $f28
239 mtc1 t1, $f29
240 mtc1 t1, $f30
241 mtc1 t1, $f31
Paul Burton597ce172013-11-22 13:12:07 +0000242
243#ifdef CONFIG_CPU_MIPS32_R2
244 .set push
Manuel Lauss842dfc12014-11-07 14:13:54 +0100245 .set mips32r2
246 .set fp=64
Paul Burton597ce172013-11-22 13:12:07 +0000247 sll t0, t0, 5 # is Status.FR set?
248 bgez t0, 1f # no: skip setting upper 32b
249
250 mthc1 t1, $f0
251 mthc1 t1, $f1
252 mthc1 t1, $f2
253 mthc1 t1, $f3
254 mthc1 t1, $f4
255 mthc1 t1, $f5
256 mthc1 t1, $f6
257 mthc1 t1, $f7
258 mthc1 t1, $f8
259 mthc1 t1, $f9
260 mthc1 t1, $f10
261 mthc1 t1, $f11
262 mthc1 t1, $f12
263 mthc1 t1, $f13
264 mthc1 t1, $f14
265 mthc1 t1, $f15
266 mthc1 t1, $f16
267 mthc1 t1, $f17
268 mthc1 t1, $f18
269 mthc1 t1, $f19
270 mthc1 t1, $f20
271 mthc1 t1, $f21
272 mthc1 t1, $f22
273 mthc1 t1, $f23
274 mthc1 t1, $f24
275 mthc1 t1, $f25
276 mthc1 t1, $f26
277 mthc1 t1, $f27
278 mthc1 t1, $f28
279 mthc1 t1, $f29
280 mthc1 t1, $f30
281 mthc1 t1, $f31
2821: .set pop
283#endif /* CONFIG_CPU_MIPS32_R2 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284#else
Ralf Baechlea809d462014-03-30 13:20:10 +0200285 .set arch=r4000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 dmtc1 t1, $f0
287 dmtc1 t1, $f2
288 dmtc1 t1, $f4
289 dmtc1 t1, $f6
290 dmtc1 t1, $f8
291 dmtc1 t1, $f10
292 dmtc1 t1, $f12
293 dmtc1 t1, $f14
294 dmtc1 t1, $f16
295 dmtc1 t1, $f18
296 dmtc1 t1, $f20
297 dmtc1 t1, $f22
298 dmtc1 t1, $f24
299 dmtc1 t1, $f26
300 dmtc1 t1, $f28
301 dmtc1 t1, $f30
302#endif
303 jr ra
304 END(_init_fpu)
Manuel Lauss842dfc12014-11-07 14:13:54 +0100305
306 .set pop /* SET_HARDFLOAT */