blob: 6feda25992823de0d8d9b5fb1218191d4a502f62 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * S390 version
Heiko Carstensa53c8fa2012-07-20 11:15:04 +02003 * Copyright IBM Corp. 1999, 2000
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Author(s): Denis Joseph Barrow (djbarrow@de.ibm.com,barrow_dj@yahoo.com)
5 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#ifndef _S390_PTRACE_H
7#define _S390_PTRACE_H
8
David Howells9807f752012-10-09 09:47:31 +01009#include <uapi/asm/ptrace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
Martin Schwidefskyd3a73ac2014-04-15 12:55:07 +020011#define PIF_SYSCALL 0 /* inside a system call */
12#define PIF_PER_TRAP 1 /* deliver sigtrap on return to user */
13
14#define _PIF_SYSCALL (1<<PIF_SYSCALL)
15#define _PIF_PER_TRAP (1<<PIF_PER_TRAP)
16
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#ifndef __ASSEMBLY__
Heiko Carstens63dd9b42013-04-20 14:07:29 +020018
Martin Schwidefskye258d712013-09-24 09:14:56 +020019#define PSW_KERNEL_BITS (PSW_DEFAULT_KEY | PSW_MASK_BASE | PSW_ASC_HOME | \
20 PSW_MASK_EA | PSW_MASK_BA)
21#define PSW_USER_BITS (PSW_MASK_DAT | PSW_MASK_IO | PSW_MASK_EXT | \
22 PSW_DEFAULT_KEY | PSW_MASK_BASE | PSW_MASK_MCHECK | \
23 PSW_MASK_PSTATE | PSW_ASC_PRIMARY)
David Woodhouse274f5942006-04-27 04:47:10 +010024
Heiko Carstens13656322014-01-01 16:08:06 +010025struct psw_bits {
26 unsigned long long : 1;
27 unsigned long long r : 1; /* PER-Mask */
28 unsigned long long : 3;
29 unsigned long long t : 1; /* DAT Mode */
30 unsigned long long i : 1; /* Input/Output Mask */
31 unsigned long long e : 1; /* External Mask */
32 unsigned long long key : 4; /* PSW Key */
33 unsigned long long : 1;
34 unsigned long long m : 1; /* Machine-Check Mask */
35 unsigned long long w : 1; /* Wait State */
36 unsigned long long p : 1; /* Problem State */
37 unsigned long long as : 2; /* Address Space Control */
38 unsigned long long cc : 2; /* Condition Code */
39 unsigned long long pm : 4; /* Program Mask */
40 unsigned long long ri : 1; /* Runtime Instrumentation */
41 unsigned long long : 6;
42 unsigned long long eaba : 2; /* Addressing Mode */
Heiko Carstens13656322014-01-01 16:08:06 +010043 unsigned long long : 31;
44 unsigned long long ia : 64;/* Instruction Address */
Heiko Carstens13656322014-01-01 16:08:06 +010045};
46
47enum {
48 PSW_AMODE_24BIT = 0,
49 PSW_AMODE_31BIT = 1,
50 PSW_AMODE_64BIT = 3
51};
52
53enum {
54 PSW_AS_PRIMARY = 0,
55 PSW_AS_ACCREG = 1,
56 PSW_AS_SECONDARY = 2,
57 PSW_AS_HOME = 3
58};
59
60#define psw_bits(__psw) (*({ \
61 typecheck(psw_t, __psw); \
62 &(*(struct psw_bits *)(&(__psw))); \
63}))
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065/*
66 * The pt_regs struct defines the way the registers are stored on
67 * the stack during a system call.
68 */
69struct pt_regs
70{
71 unsigned long args[1];
72 psw_t psw;
73 unsigned long gprs[NUM_GPRS];
74 unsigned long orig_gpr2;
Martin Schwidefskyaa33c8c2011-12-27 11:27:18 +010075 unsigned int int_code;
Martin Schwidefsky48f6b002013-06-17 14:54:02 +020076 unsigned int int_parm;
Martin Schwidefskyaa33c8c2011-12-27 11:27:18 +010077 unsigned long int_parm_long;
Martin Schwidefskyd3a73ac2014-04-15 12:55:07 +020078 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079};
Martin Schwidefsky5e9a2692011-01-05 12:48:10 +010080
81/*
82 * Program event recording (PER) register set.
83 */
84struct per_regs {
85 unsigned long control; /* PER control bits */
86 unsigned long start; /* PER starting address */
87 unsigned long end; /* PER ending address */
88};
89
90/*
91 * PER event contains information about the cause of the last PER exception.
92 */
93struct per_event {
94 unsigned short cause; /* PER code, ATMID and AI */
95 unsigned long address; /* PER address */
96 unsigned char paid; /* PER access identification */
97};
98
99/*
100 * Simplified per_info structure used to decode the ptrace user space ABI.
101 */
102struct per_struct_kernel {
103 unsigned long cr9; /* PER control bits */
104 unsigned long cr10; /* PER starting address */
105 unsigned long cr11; /* PER ending address */
106 unsigned long bits; /* Obsolete software bits */
107 unsigned long starting_addr; /* User specified start address */
108 unsigned long ending_addr; /* User specified end address */
109 unsigned short perc_atmid; /* PER trap ATMID */
110 unsigned long address; /* PER trap instruction address */
111 unsigned char access_id; /* PER trap access identification */
112};
113
Martin Schwidefskyd35339a2012-07-31 11:03:04 +0200114#define PER_EVENT_MASK 0xEB000000UL
Martin Schwidefsky5e9a2692011-01-05 12:48:10 +0100115
116#define PER_EVENT_BRANCH 0x80000000UL
117#define PER_EVENT_IFETCH 0x40000000UL
118#define PER_EVENT_STORE 0x20000000UL
119#define PER_EVENT_STORE_REAL 0x08000000UL
Martin Schwidefskyd35339a2012-07-31 11:03:04 +0200120#define PER_EVENT_TRANSACTION_END 0x02000000UL
Martin Schwidefsky5e9a2692011-01-05 12:48:10 +0100121#define PER_EVENT_NULLIFICATION 0x01000000UL
122
Martin Schwidefskyd35339a2012-07-31 11:03:04 +0200123#define PER_CONTROL_MASK 0x00e00000UL
Martin Schwidefsky5e9a2692011-01-05 12:48:10 +0100124
125#define PER_CONTROL_BRANCH_ADDRESS 0x00800000UL
Martin Schwidefskyd35339a2012-07-31 11:03:04 +0200126#define PER_CONTROL_SUSPENSION 0x00400000UL
Martin Schwidefsky5e9a2692011-01-05 12:48:10 +0100127#define PER_CONTROL_ALTERATION 0x00200000UL
128
Martin Schwidefskyd3a73ac2014-04-15 12:55:07 +0200129static inline void set_pt_regs_flag(struct pt_regs *regs, int flag)
130{
131 regs->flags |= (1U << flag);
132}
133
134static inline void clear_pt_regs_flag(struct pt_regs *regs, int flag)
135{
136 regs->flags &= ~(1U << flag);
137}
138
139static inline int test_pt_regs_flag(struct pt_regs *regs, int flag)
140{
141 return !!(regs->flags & (1U << flag));
142}
143
Roland McGrath0ac30be2008-01-26 14:11:22 +0100144/*
145 * These are defined as per linux/ptrace.h, which see.
146 */
147#define arch_has_single_step() (1)
Martin Schwidefsky818a3302014-03-14 12:01:08 +0100148#define arch_has_block_step() (1)
Roland McGrath0ac30be2008-01-26 14:11:22 +0100149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150#define user_mode(regs) (((regs)->psw.mask & PSW_MASK_PSTATE) != 0)
151#define instruction_pointer(regs) ((regs)->psw.addr & PSW_ADDR_INSN)
Martin Schwidefsky753c4dd2008-10-10 21:33:20 +0200152#define user_stack_pointer(regs)((regs)->gprs[15])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153#define profile_pc(regs) instruction_pointer(regs)
Heiko Carstens952974ac62010-02-12 13:38:40 +0100154
Eric Parisd7e75282012-01-03 14:23:06 -0500155static inline long regs_return_value(struct pt_regs *regs)
156{
157 return regs->gprs[2];
158}
159
Jan Willeke2a0a5b22014-09-22 16:39:06 +0200160static inline void instruction_pointer_set(struct pt_regs *regs,
161 unsigned long val)
162{
163 regs->psw.addr = val | PSW_ADDR_AMODE;
164}
165
Heiko Carstens952974ac62010-02-12 13:38:40 +0100166int regs_query_register_offset(const char *name);
167const char *regs_query_register_name(unsigned int offset);
168unsigned long regs_get_register(struct pt_regs *regs, unsigned int offset);
169unsigned long regs_get_kernel_stack_nth(struct pt_regs *regs, unsigned int n);
170
171static inline unsigned long kernel_stack_pointer(struct pt_regs *regs)
172{
173 return regs->gprs[15] & PSW_ADDR_INSN;
174}
175
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176#endif /* __ASSEMBLY__ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177#endif /* _S390_PTRACE_H */