• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _ASM_SCORE_USER_H
3 #define _ASM_SCORE_USER_H
4 
5 struct user_regs_struct {
6 	unsigned long regs[32];
7 
8 	unsigned long cel;
9 	unsigned long ceh;
10 
11 	unsigned long sr0;	/* cnt */
12 	unsigned long sr1;	/* lcr */
13 	unsigned long sr2;	/* scr */
14 
15 	unsigned long cp0_epc;
16 	unsigned long cp0_ema;
17 	unsigned long cp0_psr;
18 	unsigned long cp0_ecr;
19 	unsigned long cp0_condition;
20 };
21 
22 #endif /* _ASM_SCORE_USER_H */
23