1 /* SPDX-License-Identifier: GPL-2.0 */
3 * r2300_switch.S: R2300 specific task switching code.
5 * Copyright (C) 1994, 1995, 1996, 1999 by Ralf Baechle
6 * Copyright (C) 1994, 1995, 1996 by Andreas Busse
8 * Multi-cpu abstraction and macros for easier reading:
9 * Copyright (C) 1996 David S. Miller (davem@davemloft.net)
11 * Further modifications to make this work:
12 * Copyright (c) 1998-2000 Harald Koerfgen
15 #include <asm/cachectl.h>
16 #include <asm/export.h>
17 #include <asm/fpregdef.h>
18 #include <asm/mipsregs.h>
19 #include <asm/asm-offsets.h>
20 #include <asm/regdef.h>
21 #include <asm/stackframe.h>
22 #include <asm/thread_info.h>
24 #include <asm/asmmacro.h>
30 * task_struct *resume(task_struct *prev, task_struct *next,
31 * struct thread_info *next_ti)
35 sw t1, THREAD_STATUS(a0)
36 cpu_save_nonscratch a0
37 sw ra, THREAD_REG31(a0)
39 #if defined(CONFIG_CC_STACKPROTECTOR) && !defined(CONFIG_SMP)
40 PTR_LA t8, __stack_chk_guard
41 LONG_L t9, TASK_STACK_CANARY(a1)
46 * The order of restoring the registers takes care of the race
47 * updating $28, $29 and kernelsp without disabling ints.
50 cpu_restore_nonscratch a1
52 addiu t1, $28, _THREAD_SIZE - 32
55 mfc0 t1, CP0_STATUS /* Do we really need this? */
58 lw a2, THREAD_STATUS(a1)