• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/*
2 * r6000_fpu.S: Save/restore floating point context for signal handlers.
3 *
4 * This file is subject to the terms and conditions of the GNU General Public
5 * License.  See the file "COPYING" in the main directory of this archive
6 * for more details.
7 *
8 * Copyright (C) 1996 by Ralf Baechle
9 *
10 * Multi-arch abstraction and asm macros for easier reading:
11 * Copyright (C) 1996 David S. Miller (davem@davemloft.net)
12 */
13#include <asm/asm.h>
14#include <asm/fpregdef.h>
15#include <asm/mipsregs.h>
16#include <asm/asm-offsets.h>
17#include <asm/regdef.h>
18
19	.set	noreorder
20	.set	hardfloat
21	.set	mips2
22	.set	push
23	SET_HARDFLOAT
24
25	/* Save floating point context */
26	LEAF(_save_fp_context)
27	mfc0	t0,CP0_STATUS
28	sll	t0,t0,2
29	bgez	t0,1f
30	 nop
31
32	cfc1	t1,fcr31
33	/* Store the 16 double precision registers */
34	sdc1	$f0,(SC_FPREGS+0)(a0)
35	sdc1	$f2,(SC_FPREGS+16)(a0)
36	sdc1	$f4,(SC_FPREGS+32)(a0)
37	sdc1	$f6,(SC_FPREGS+48)(a0)
38	sdc1	$f8,(SC_FPREGS+64)(a0)
39	sdc1	$f10,(SC_FPREGS+80)(a0)
40	sdc1	$f12,(SC_FPREGS+96)(a0)
41	sdc1	$f14,(SC_FPREGS+112)(a0)
42	sdc1	$f16,(SC_FPREGS+128)(a0)
43	sdc1	$f18,(SC_FPREGS+144)(a0)
44	sdc1	$f20,(SC_FPREGS+160)(a0)
45	sdc1	$f22,(SC_FPREGS+176)(a0)
46	sdc1	$f24,(SC_FPREGS+192)(a0)
47	sdc1	$f26,(SC_FPREGS+208)(a0)
48	sdc1	$f28,(SC_FPREGS+224)(a0)
49	sdc1	$f30,(SC_FPREGS+240)(a0)
50	jr	ra
51	 sw	t0,SC_FPC_CSR(a0)
521:	jr	ra
53	 nop
54	END(_save_fp_context)
55
56/* Restore FPU state:
57 *  - fp gp registers
58 *  - cp1 status/control register
59 *
60 * We base the decision which registers to restore from the signal stack
61 * frame on the current content of c0_status, not on the content of the
62 * stack frame which might have been changed by the user.
63 */
64	LEAF(_restore_fp_context)
65	mfc0	t0,CP0_STATUS
66	sll	t0,t0,2
67
68	bgez	t0,1f
69	 lw	t0,SC_FPC_CSR(a0)
70	/* Restore the 16 double precision registers */
71	ldc1	$f0,(SC_FPREGS+0)(a0)
72	ldc1	$f2,(SC_FPREGS+16)(a0)
73	ldc1	$f4,(SC_FPREGS+32)(a0)
74	ldc1	$f6,(SC_FPREGS+48)(a0)
75	ldc1	$f8,(SC_FPREGS+64)(a0)
76	ldc1	$f10,(SC_FPREGS+80)(a0)
77	ldc1	$f12,(SC_FPREGS+96)(a0)
78	ldc1	$f14,(SC_FPREGS+112)(a0)
79	ldc1	$f16,(SC_FPREGS+128)(a0)
80	ldc1	$f18,(SC_FPREGS+144)(a0)
81	ldc1	$f20,(SC_FPREGS+160)(a0)
82	ldc1	$f22,(SC_FPREGS+176)(a0)
83	ldc1	$f24,(SC_FPREGS+192)(a0)
84	ldc1	$f26,(SC_FPREGS+208)(a0)
85	ldc1	$f28,(SC_FPREGS+224)(a0)
86	ldc1	$f30,(SC_FPREGS+240)(a0)
87	jr	ra
88	 ctc1	t0,fcr31
891:	jr	ra
90	 nop
91	END(_restore_fp_context)
92
93	.set pop	/* SET_HARDFLOAT */
94