blob: eeeb0f48c76754c2c9111b2f81528361545bb04e [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) 1996, 1997, 1999 by Ralf Baechle
7 * Copyright (C) 1999 Silicon Graphics, Inc.
8 */
9#ifndef _ASM_SIGCONTEXT_H
10#define _ASM_SIGCONTEXT_H
11
David Howells61730c52012-10-09 09:47:14 +010012#include <uapi/asm/sigcontext.h>
Ralf Baechle42a3b4f2005-09-03 15:56:17 -070013
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#if _MIPS_SIM == _MIPS_SIM_ABI64 || _MIPS_SIM == _MIPS_SIM_NABI32
15
Linus Torvalds1da177e2005-04-16 15:20:36 -070016struct sigcontext32 {
Ralf Baechlee50c0a82005-05-31 11:49:19 +000017 __u32 sc_regmask; /* Unused */
Franck Bui-Huu6bfe9662007-02-05 15:24:26 +010018 __u32 sc_status; /* Unused */
Ralf Baechlee50c0a82005-05-31 11:49:19 +000019 __u64 sc_pc;
20 __u64 sc_regs[32];
21 __u64 sc_fpregs[32];
Franck Bui-Huu9693a852007-02-02 17:41:47 +010022 __u32 sc_acx; /* Only MIPS32; was sc_ownedfp */
Ralf Baechlee50c0a82005-05-31 11:49:19 +000023 __u32 sc_fpc_csr;
24 __u32 sc_fpc_eir; /* Unused */
25 __u32 sc_used_math;
26 __u32 sc_dsp; /* dsp status, was sc_ssflags */
27 __u64 sc_mdhi;
28 __u64 sc_mdlo;
29 __u32 sc_hi1; /* Was sc_cause */
30 __u32 sc_lo1; /* Was sc_badvaddr */
31 __u32 sc_hi2; /* Was sc_sigset[4] */
32 __u32 sc_lo2;
33 __u32 sc_hi3;
34 __u32 sc_lo3;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035};
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#endif /* _MIPS_SIM == _MIPS_SIM_ABI64 || _MIPS_SIM == _MIPS_SIM_NABI32 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#endif /* _ASM_SIGCONTEXT_H */