blob: 183b00a08719fb8a9c024303d5f8ec086d5f545f [file] [log] [blame]
wdenkc6097192002-11-03 00:24:07 +00001/*
2 * linux/include/asm-arm/proc-armv/ptrace.h
3 *
4 * Copyright (C) 1996-1999 Russell King
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10#ifndef __ASM_PROC_PTRACE_H
11#define __ASM_PROC_PTRACE_H
12
David Feng85fd5f12013-12-14 11:47:35 +080013#ifdef CONFIG_ARM64
14
15#define PCMASK 0
16
17#ifndef __ASSEMBLY__
18
19/*
20 * This struct defines the way the registers are stored
21 * on the stack during an exception.
22 */
23struct pt_regs {
24 unsigned long elr;
25 unsigned long regs[31];
26};
27
28#endif /* __ASSEMBLY__ */
29
30#else /* CONFIG_ARM64 */
31
wdenkc6097192002-11-03 00:24:07 +000032#define USR26_MODE 0x00
33#define FIQ26_MODE 0x01
34#define IRQ26_MODE 0x02
35#define SVC26_MODE 0x03
36#define USR_MODE 0x10
37#define FIQ_MODE 0x11
38#define IRQ_MODE 0x12
39#define SVC_MODE 0x13
Stephen Warren039091c2018-06-22 13:03:16 -060040#define MON_MODE 0x16
wdenkc6097192002-11-03 00:24:07 +000041#define ABT_MODE 0x17
Marc Zyngier6b5b1292014-07-12 14:24:01 +010042#define HYP_MODE 0x1a
wdenkc6097192002-11-03 00:24:07 +000043#define UND_MODE 0x1b
44#define SYSTEM_MODE 0x1f
45#define MODE_MASK 0x1f
46#define T_BIT 0x20
47#define F_BIT 0x40
48#define I_BIT 0x80
Marc Zyngier6b5b1292014-07-12 14:24:01 +010049#define A_BIT 0x100
wdenkc6097192002-11-03 00:24:07 +000050#define CC_V_BIT (1 << 28)
51#define CC_C_BIT (1 << 29)
52#define CC_Z_BIT (1 << 30)
53#define CC_N_BIT (1 << 31)
54#define PCMASK 0
55
56#ifndef __ASSEMBLY__
57
58/* this struct defines the way the registers are stored on the
59 stack during a system call. */
60
61struct pt_regs {
62 long uregs[18];
63};
64
65#define ARM_cpsr uregs[16]
66#define ARM_pc uregs[15]
67#define ARM_lr uregs[14]
68#define ARM_sp uregs[13]
69#define ARM_ip uregs[12]
70#define ARM_fp uregs[11]
71#define ARM_r10 uregs[10]
72#define ARM_r9 uregs[9]
73#define ARM_r8 uregs[8]
74#define ARM_r7 uregs[7]
75#define ARM_r6 uregs[6]
76#define ARM_r5 uregs[5]
77#define ARM_r4 uregs[4]
78#define ARM_r3 uregs[3]
79#define ARM_r2 uregs[2]
80#define ARM_r1 uregs[1]
81#define ARM_r0 uregs[0]
82#define ARM_ORIG_r0 uregs[17]
83
wdenkc6097192002-11-03 00:24:07 +000084#ifdef __KERNEL__
85
86#define user_mode(regs) \
87 (((regs)->ARM_cpsr & 0xf) == 0)
88
89#ifdef CONFIG_ARM_THUMB
90#define thumb_mode(regs) \
91 (((regs)->ARM_cpsr & T_BIT))
92#else
93#define thumb_mode(regs) (0)
94#endif
95
96#define processor_mode(regs) \
97 ((regs)->ARM_cpsr & MODE_MASK)
98
99#define interrupts_enabled(regs) \
100 (!((regs)->ARM_cpsr & I_BIT))
101
102#define fast_interrupts_enabled(regs) \
103 (!((regs)->ARM_cpsr & F_BIT))
104
105#define condition_codes(regs) \
106 ((regs)->ARM_cpsr & (CC_V_BIT|CC_C_BIT|CC_Z_BIT|CC_N_BIT))
107
108/* Are the current registers suitable for user mode?
109 * (used to maintain security in signal handlers)
110 */
111static inline int valid_user_regs(struct pt_regs *regs)
112{
113 if ((regs->ARM_cpsr & 0xf) == 0 &&
114 (regs->ARM_cpsr & (F_BIT|I_BIT)) == 0)
115 return 1;
116
117 /*
118 * Force CPSR to something logical...
119 */
120 regs->ARM_cpsr &= (CC_V_BIT|CC_C_BIT|CC_Z_BIT|CC_N_BIT|0x10);
121
122 return 0;
123}
124
125#endif /* __KERNEL__ */
126
127#endif /* __ASSEMBLY__ */
128
David Feng85fd5f12013-12-14 11:47:35 +0800129#endif /* CONFIG_ARM64 */
130
wdenkc6097192002-11-03 00:24:07 +0000131#endif