blob: 99bc456cc26a3087cbec7f35ca82959a94cf2ab3 [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
Heiko Carstens92778b92015-10-06 16:23:39 +02009#include <linux/const.h>
David Howells9807f752012-10-09 09:47:31 +010010#include <uapi/asm/ptrace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
Martin Schwidefskyd3a73ac2014-04-15 12:55:07 +020012#define PIF_SYSCALL 0 /* inside a system call */
13#define PIF_PER_TRAP 1 /* deliver sigtrap on return to user */
14
Heiko Carstens92778b92015-10-06 16:23:39 +020015#define _PIF_SYSCALL _BITUL(PIF_SYSCALL)
16#define _PIF_PER_TRAP _BITUL(PIF_PER_TRAP)
Martin Schwidefskyd3a73ac2014-04-15 12:55:07 +020017
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#ifndef __ASSEMBLY__
Heiko Carstens63dd9b42013-04-20 14:07:29 +020019
Martin Schwidefskye258d712013-09-24 09:14:56 +020020#define PSW_KERNEL_BITS (PSW_DEFAULT_KEY | PSW_MASK_BASE | PSW_ASC_HOME | \
21 PSW_MASK_EA | PSW_MASK_BA)
22#define PSW_USER_BITS (PSW_MASK_DAT | PSW_MASK_IO | PSW_MASK_EXT | \
23 PSW_DEFAULT_KEY | PSW_MASK_BASE | PSW_MASK_MCHECK | \
24 PSW_MASK_PSTATE | PSW_ASC_PRIMARY)
David Woodhouse274f5942006-04-27 04:47:10 +010025
Heiko Carstens13656322014-01-01 16:08:06 +010026struct psw_bits {
Heiko Carstenscb951782015-12-31 09:58:02 +010027 unsigned long : 1;
28 unsigned long r : 1; /* PER-Mask */
29 unsigned long : 3;
30 unsigned long t : 1; /* DAT Mode */
31 unsigned long i : 1; /* Input/Output Mask */
32 unsigned long e : 1; /* External Mask */
33 unsigned long key : 4; /* PSW Key */
34 unsigned long : 1;
35 unsigned long m : 1; /* Machine-Check Mask */
36 unsigned long w : 1; /* Wait State */
37 unsigned long p : 1; /* Problem State */
38 unsigned long as : 2; /* Address Space Control */
39 unsigned long cc : 2; /* Condition Code */
40 unsigned long pm : 4; /* Program Mask */
41 unsigned long ri : 1; /* Runtime Instrumentation */
42 unsigned long : 6;
43 unsigned long eaba : 2; /* Addressing Mode */
44 unsigned long : 31;
45 unsigned long ia : 64; /* Instruction Address */
Heiko Carstens13656322014-01-01 16:08:06 +010046};
47
48enum {
49 PSW_AMODE_24BIT = 0,
50 PSW_AMODE_31BIT = 1,
51 PSW_AMODE_64BIT = 3
52};
53
54enum {
55 PSW_AS_PRIMARY = 0,
56 PSW_AS_ACCREG = 1,
57 PSW_AS_SECONDARY = 2,
58 PSW_AS_HOME = 3
59};
60
61#define psw_bits(__psw) (*({ \
62 typecheck(psw_t, __psw); \
63 &(*(struct psw_bits *)(&(__psw))); \
64}))
65
Linus Torvalds1da177e2005-04-16 15:20:36 -070066/*
67 * The pt_regs struct defines the way the registers are stored on
68 * the stack during a system call.
69 */
70struct pt_regs
71{
72 unsigned long args[1];
73 psw_t psw;
74 unsigned long gprs[NUM_GPRS];
75 unsigned long orig_gpr2;
Martin Schwidefskyaa33c8c2011-12-27 11:27:18 +010076 unsigned int int_code;
Martin Schwidefsky48f6b002013-06-17 14:54:02 +020077 unsigned int int_parm;
Martin Schwidefskyaa33c8c2011-12-27 11:27:18 +010078 unsigned long int_parm_long;
Martin Schwidefskyd3a73ac2014-04-15 12:55:07 +020079 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080};
Martin Schwidefsky5e9a2692011-01-05 12:48:10 +010081
82/*
83 * Program event recording (PER) register set.
84 */
85struct per_regs {
86 unsigned long control; /* PER control bits */
87 unsigned long start; /* PER starting address */
88 unsigned long end; /* PER ending address */
89};
90
91/*
92 * PER event contains information about the cause of the last PER exception.
93 */
94struct per_event {
95 unsigned short cause; /* PER code, ATMID and AI */
96 unsigned long address; /* PER address */
97 unsigned char paid; /* PER access identification */
98};
99
100/*
101 * Simplified per_info structure used to decode the ptrace user space ABI.
102 */
103struct per_struct_kernel {
104 unsigned long cr9; /* PER control bits */
105 unsigned long cr10; /* PER starting address */
106 unsigned long cr11; /* PER ending address */
107 unsigned long bits; /* Obsolete software bits */
108 unsigned long starting_addr; /* User specified start address */
109 unsigned long ending_addr; /* User specified end address */
110 unsigned short perc_atmid; /* PER trap ATMID */
111 unsigned long address; /* PER trap instruction address */
112 unsigned char access_id; /* PER trap access identification */
113};
114
Martin Schwidefskyd35339a2012-07-31 11:03:04 +0200115#define PER_EVENT_MASK 0xEB000000UL
Martin Schwidefsky5e9a2692011-01-05 12:48:10 +0100116
117#define PER_EVENT_BRANCH 0x80000000UL
118#define PER_EVENT_IFETCH 0x40000000UL
119#define PER_EVENT_STORE 0x20000000UL
120#define PER_EVENT_STORE_REAL 0x08000000UL
Martin Schwidefskyd35339a2012-07-31 11:03:04 +0200121#define PER_EVENT_TRANSACTION_END 0x02000000UL
Martin Schwidefsky5e9a2692011-01-05 12:48:10 +0100122#define PER_EVENT_NULLIFICATION 0x01000000UL
123
Martin Schwidefskyd35339a2012-07-31 11:03:04 +0200124#define PER_CONTROL_MASK 0x00e00000UL
Martin Schwidefsky5e9a2692011-01-05 12:48:10 +0100125
126#define PER_CONTROL_BRANCH_ADDRESS 0x00800000UL
Martin Schwidefskyd35339a2012-07-31 11:03:04 +0200127#define PER_CONTROL_SUSPENSION 0x00400000UL
Martin Schwidefsky5e9a2692011-01-05 12:48:10 +0100128#define PER_CONTROL_ALTERATION 0x00200000UL
129
Martin Schwidefskyd3a73ac2014-04-15 12:55:07 +0200130static inline void set_pt_regs_flag(struct pt_regs *regs, int flag)
131{
Heiko Carstensac25e792015-10-06 16:23:29 +0200132 regs->flags |= (1UL << flag);
Martin Schwidefskyd3a73ac2014-04-15 12:55:07 +0200133}
134
135static inline void clear_pt_regs_flag(struct pt_regs *regs, int flag)
136{
Heiko Carstensac25e792015-10-06 16:23:29 +0200137 regs->flags &= ~(1UL << flag);
Martin Schwidefskyd3a73ac2014-04-15 12:55:07 +0200138}
139
140static inline int test_pt_regs_flag(struct pt_regs *regs, int flag)
141{
Heiko Carstensac25e792015-10-06 16:23:29 +0200142 return !!(regs->flags & (1UL << flag));
Martin Schwidefskyd3a73ac2014-04-15 12:55:07 +0200143}
144
Roland McGrath0ac30be2008-01-26 14:11:22 +0100145/*
146 * These are defined as per linux/ptrace.h, which see.
147 */
148#define arch_has_single_step() (1)
Martin Schwidefsky818a3302014-03-14 12:01:08 +0100149#define arch_has_block_step() (1)
Roland McGrath0ac30be2008-01-26 14:11:22 +0100150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151#define user_mode(regs) (((regs)->psw.mask & PSW_MASK_PSTATE) != 0)
Heiko Carstens9cb1cce2016-01-18 13:12:19 +0100152#define instruction_pointer(regs) ((regs)->psw.addr)
Martin Schwidefsky753c4dd2008-10-10 21:33:20 +0200153#define user_stack_pointer(regs)((regs)->gprs[15])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154#define profile_pc(regs) instruction_pointer(regs)
Heiko Carstens952974ac62010-02-12 13:38:40 +0100155
Eric Parisd7e75282012-01-03 14:23:06 -0500156static inline long regs_return_value(struct pt_regs *regs)
157{
158 return regs->gprs[2];
159}
160
Jan Willeke2a0a5b22014-09-22 16:39:06 +0200161static inline void instruction_pointer_set(struct pt_regs *regs,
162 unsigned long val)
163{
Heiko Carstensfecc8682016-01-18 12:49:44 +0100164 regs->psw.addr = val;
Jan Willeke2a0a5b22014-09-22 16:39:06 +0200165}
166
Heiko Carstens952974ac62010-02-12 13:38:40 +0100167int regs_query_register_offset(const char *name);
168const char *regs_query_register_name(unsigned int offset);
169unsigned long regs_get_register(struct pt_regs *regs, unsigned int offset);
170unsigned long regs_get_kernel_stack_nth(struct pt_regs *regs, unsigned int n);
171
172static inline unsigned long kernel_stack_pointer(struct pt_regs *regs)
173{
Heiko Carstens9cb1cce2016-01-18 13:12:19 +0100174 return regs->gprs[15];
Heiko Carstens952974ac62010-02-12 13:38:40 +0100175}
176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177#endif /* __ASSEMBLY__ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178#endif /* _S390_PTRACE_H */