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 * task_struct *resume(task_struct *prev, task_struct *next,
35 * struct thread_info *next_ti)
39 sw t1, THREAD_STATUS(a0)
40 cpu_save_nonscratch a0
41 sw ra, THREAD_REG31(a0)
43 #if defined(CONFIG_CC_STACKPROTECTOR) && !defined(CONFIG_SMP)
44 PTR_LA t8, __stack_chk_guard
45 LONG_L t9, TASK_STACK_CANARY(a1)
50 * The order of restoring the registers takes care of the race
51 * updating $28, $29 and kernelsp without disabling ints.
54 cpu_restore_nonscratch a1
56 addiu t1, $28, _THREAD_SIZE - 32
59 mfc0 t1, CP0_STATUS /* Do we really need this? */
62 lw a2, THREAD_STATUS(a1)
72 * Save a thread's fp context.
75 fpu_save_single a0, t1 # clobbers t1
80 * Restore a thread's fp context.
83 fpu_restore_single a0, t1 # clobbers t1
88 * Load the FPU with signalling NANS. This bit pattern we're using has
89 * the property that no matter whether considered as single or as double
90 * precision represents signaling NANS.
92 * The value to initialize fcr31 to comes in $a0.