blob: 559512a455dabba842d5f4ade3b580fa61ea4b44 [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
11#ifndef __ASSEMBLY__
Heiko Carstens63dd9b42013-04-20 14:07:29 +020012
Gerald Schaeferc1821c22007-02-05 21:18:17 +010013extern long psw_kernel_bits;
14extern long psw_user_bits;
David Woodhouse274f5942006-04-27 04:47:10 +010015
Linus Torvalds1da177e2005-04-16 15:20:36 -070016/*
17 * The pt_regs struct defines the way the registers are stored on
18 * the stack during a system call.
19 */
20struct pt_regs
21{
22 unsigned long args[1];
23 psw_t psw;
24 unsigned long gprs[NUM_GPRS];
25 unsigned long orig_gpr2;
Martin Schwidefskyaa33c8c2011-12-27 11:27:18 +010026 unsigned int int_code;
27 unsigned long int_parm_long;
Linus Torvalds1da177e2005-04-16 15:20:36 -070028};
Martin Schwidefsky5e9a2692011-01-05 12:48:10 +010029
30/*
31 * Program event recording (PER) register set.
32 */
33struct per_regs {
34 unsigned long control; /* PER control bits */
35 unsigned long start; /* PER starting address */
36 unsigned long end; /* PER ending address */
37};
38
39/*
40 * PER event contains information about the cause of the last PER exception.
41 */
42struct per_event {
43 unsigned short cause; /* PER code, ATMID and AI */
44 unsigned long address; /* PER address */
45 unsigned char paid; /* PER access identification */
46};
47
48/*
49 * Simplified per_info structure used to decode the ptrace user space ABI.
50 */
51struct per_struct_kernel {
52 unsigned long cr9; /* PER control bits */
53 unsigned long cr10; /* PER starting address */
54 unsigned long cr11; /* PER ending address */
55 unsigned long bits; /* Obsolete software bits */
56 unsigned long starting_addr; /* User specified start address */
57 unsigned long ending_addr; /* User specified end address */
58 unsigned short perc_atmid; /* PER trap ATMID */
59 unsigned long address; /* PER trap instruction address */
60 unsigned char access_id; /* PER trap access identification */
61};
62
Martin Schwidefskyd35339a2012-07-31 11:03:04 +020063#define PER_EVENT_MASK 0xEB000000UL
Martin Schwidefsky5e9a2692011-01-05 12:48:10 +010064
65#define PER_EVENT_BRANCH 0x80000000UL
66#define PER_EVENT_IFETCH 0x40000000UL
67#define PER_EVENT_STORE 0x20000000UL
68#define PER_EVENT_STORE_REAL 0x08000000UL
Martin Schwidefskyd35339a2012-07-31 11:03:04 +020069#define PER_EVENT_TRANSACTION_END 0x02000000UL
Martin Schwidefsky5e9a2692011-01-05 12:48:10 +010070#define PER_EVENT_NULLIFICATION 0x01000000UL
71
Martin Schwidefskyd35339a2012-07-31 11:03:04 +020072#define PER_CONTROL_MASK 0x00e00000UL
Martin Schwidefsky5e9a2692011-01-05 12:48:10 +010073
74#define PER_CONTROL_BRANCH_ADDRESS 0x00800000UL
Martin Schwidefskyd35339a2012-07-31 11:03:04 +020075#define PER_CONTROL_SUSPENSION 0x00400000UL
Martin Schwidefsky5e9a2692011-01-05 12:48:10 +010076#define PER_CONTROL_ALTERATION 0x00200000UL
77
Roland McGrath0ac30be2008-01-26 14:11:22 +010078/*
79 * These are defined as per linux/ptrace.h, which see.
80 */
81#define arch_has_single_step() (1)
Roland McGrath0ac30be2008-01-26 14:11:22 +010082
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#define user_mode(regs) (((regs)->psw.mask & PSW_MASK_PSTATE) != 0)
84#define instruction_pointer(regs) ((regs)->psw.addr & PSW_ADDR_INSN)
Martin Schwidefsky753c4dd2008-10-10 21:33:20 +020085#define user_stack_pointer(regs)((regs)->gprs[15])
Linus Torvalds1da177e2005-04-16 15:20:36 -070086#define profile_pc(regs) instruction_pointer(regs)
Heiko Carstens952974ac62010-02-12 13:38:40 +010087
Eric Parisd7e75282012-01-03 14:23:06 -050088static inline long regs_return_value(struct pt_regs *regs)
89{
90 return regs->gprs[2];
91}
92
Heiko Carstens952974ac62010-02-12 13:38:40 +010093int regs_query_register_offset(const char *name);
94const char *regs_query_register_name(unsigned int offset);
95unsigned long regs_get_register(struct pt_regs *regs, unsigned int offset);
96unsigned long regs_get_kernel_stack_nth(struct pt_regs *regs, unsigned int n);
97
98static inline unsigned long kernel_stack_pointer(struct pt_regs *regs)
99{
100 return regs->gprs[15] & PSW_ADDR_INSN;
101}
102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103#endif /* __ASSEMBLY__ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104#endif /* _S390_PTRACE_H */