blob: 1b5300cd6d22ce86e0c88e589e37e39a8ff19737 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070025/*
26 * The pt_regs struct defines the way the registers are stored on
27 * the stack during a system call.
28 */
29struct pt_regs
30{
31 unsigned long args[1];
32 psw_t psw;
33 unsigned long gprs[NUM_GPRS];
34 unsigned long orig_gpr2;
Martin Schwidefskyaa33c8c2011-12-27 11:27:18 +010035 unsigned int int_code;
Martin Schwidefsky48f6b002013-06-17 14:54:02 +020036 unsigned int int_parm;
Martin Schwidefskyaa33c8c2011-12-27 11:27:18 +010037 unsigned long int_parm_long;
Martin Schwidefskyd3a73ac2014-04-15 12:55:07 +020038 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039};
Martin Schwidefsky5e9a2692011-01-05 12:48:10 +010040
41/*
42 * Program event recording (PER) register set.
43 */
44struct per_regs {
45 unsigned long control; /* PER control bits */
46 unsigned long start; /* PER starting address */
47 unsigned long end; /* PER ending address */
48};
49
50/*
51 * PER event contains information about the cause of the last PER exception.
52 */
53struct per_event {
54 unsigned short cause; /* PER code, ATMID and AI */
55 unsigned long address; /* PER address */
56 unsigned char paid; /* PER access identification */
57};
58
59/*
60 * Simplified per_info structure used to decode the ptrace user space ABI.
61 */
62struct per_struct_kernel {
63 unsigned long cr9; /* PER control bits */
64 unsigned long cr10; /* PER starting address */
65 unsigned long cr11; /* PER ending address */
66 unsigned long bits; /* Obsolete software bits */
67 unsigned long starting_addr; /* User specified start address */
68 unsigned long ending_addr; /* User specified end address */
69 unsigned short perc_atmid; /* PER trap ATMID */
70 unsigned long address; /* PER trap instruction address */
71 unsigned char access_id; /* PER trap access identification */
72};
73
Martin Schwidefskyd35339a2012-07-31 11:03:04 +020074#define PER_EVENT_MASK 0xEB000000UL
Martin Schwidefsky5e9a2692011-01-05 12:48:10 +010075
76#define PER_EVENT_BRANCH 0x80000000UL
77#define PER_EVENT_IFETCH 0x40000000UL
78#define PER_EVENT_STORE 0x20000000UL
79#define PER_EVENT_STORE_REAL 0x08000000UL
Martin Schwidefskyd35339a2012-07-31 11:03:04 +020080#define PER_EVENT_TRANSACTION_END 0x02000000UL
Martin Schwidefsky5e9a2692011-01-05 12:48:10 +010081#define PER_EVENT_NULLIFICATION 0x01000000UL
82
Martin Schwidefskyd35339a2012-07-31 11:03:04 +020083#define PER_CONTROL_MASK 0x00e00000UL
Martin Schwidefsky5e9a2692011-01-05 12:48:10 +010084
85#define PER_CONTROL_BRANCH_ADDRESS 0x00800000UL
Martin Schwidefskyd35339a2012-07-31 11:03:04 +020086#define PER_CONTROL_SUSPENSION 0x00400000UL
Martin Schwidefsky5e9a2692011-01-05 12:48:10 +010087#define PER_CONTROL_ALTERATION 0x00200000UL
88
Martin Schwidefskyd3a73ac2014-04-15 12:55:07 +020089static inline void set_pt_regs_flag(struct pt_regs *regs, int flag)
90{
91 regs->flags |= (1U << flag);
92}
93
94static inline void clear_pt_regs_flag(struct pt_regs *regs, int flag)
95{
96 regs->flags &= ~(1U << flag);
97}
98
99static inline int test_pt_regs_flag(struct pt_regs *regs, int flag)
100{
101 return !!(regs->flags & (1U << flag));
102}
103
Roland McGrath0ac30be2008-01-26 14:11:22 +0100104/*
105 * These are defined as per linux/ptrace.h, which see.
106 */
107#define arch_has_single_step() (1)
Martin Schwidefsky818a3302014-03-14 12:01:08 +0100108#define arch_has_block_step() (1)
Roland McGrath0ac30be2008-01-26 14:11:22 +0100109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110#define user_mode(regs) (((regs)->psw.mask & PSW_MASK_PSTATE) != 0)
111#define instruction_pointer(regs) ((regs)->psw.addr & PSW_ADDR_INSN)
Martin Schwidefsky753c4dd2008-10-10 21:33:20 +0200112#define user_stack_pointer(regs)((regs)->gprs[15])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113#define profile_pc(regs) instruction_pointer(regs)
Heiko Carstens952974ac62010-02-12 13:38:40 +0100114
Eric Parisd7e75282012-01-03 14:23:06 -0500115static inline long regs_return_value(struct pt_regs *regs)
116{
117 return regs->gprs[2];
118}
119
Heiko Carstens952974ac62010-02-12 13:38:40 +0100120int regs_query_register_offset(const char *name);
121const char *regs_query_register_name(unsigned int offset);
122unsigned long regs_get_register(struct pt_regs *regs, unsigned int offset);
123unsigned long regs_get_kernel_stack_nth(struct pt_regs *regs, unsigned int n);
124
125static inline unsigned long kernel_stack_pointer(struct pt_regs *regs)
126{
127 return regs->gprs[15] & PSW_ADDR_INSN;
128}
129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130#endif /* __ASSEMBLY__ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131#endif /* _S390_PTRACE_H */