Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * S390 version |
Heiko Carstens | a53c8fa | 2012-07-20 11:15:04 +0200 | [diff] [blame] | 3 | * Copyright IBM Corp. 1999, 2000 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * Author(s): Denis Joseph Barrow (djbarrow@de.ibm.com,barrow_dj@yahoo.com) |
| 5 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | #ifndef _S390_PTRACE_H |
| 7 | #define _S390_PTRACE_H |
| 8 | |
David Howells | 9807f75 | 2012-10-09 09:47:31 +0100 | [diff] [blame^] | 9 | #include <uapi/asm/ptrace.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | |
| 11 | #ifndef __ASSEMBLY__ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #ifndef __s390x__ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #else /* __s390x__ */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #endif /* __s390x__ */ |
Gerald Schaefer | c1821c2 | 2007-02-05 21:18:17 +0100 | [diff] [blame] | 15 | extern long psw_kernel_bits; |
| 16 | extern long psw_user_bits; |
David Woodhouse | 274f594 | 2006-04-27 04:47:10 +0100 | [diff] [blame] | 17 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | /* |
| 19 | * The pt_regs struct defines the way the registers are stored on |
| 20 | * the stack during a system call. |
| 21 | */ |
| 22 | struct pt_regs |
| 23 | { |
| 24 | unsigned long args[1]; |
| 25 | psw_t psw; |
| 26 | unsigned long gprs[NUM_GPRS]; |
| 27 | unsigned long orig_gpr2; |
Martin Schwidefsky | aa33c8c | 2011-12-27 11:27:18 +0100 | [diff] [blame] | 28 | unsigned int int_code; |
| 29 | unsigned long int_parm_long; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | }; |
Martin Schwidefsky | 5e9a269 | 2011-01-05 12:48:10 +0100 | [diff] [blame] | 31 | |
| 32 | /* |
| 33 | * Program event recording (PER) register set. |
| 34 | */ |
| 35 | struct per_regs { |
| 36 | unsigned long control; /* PER control bits */ |
| 37 | unsigned long start; /* PER starting address */ |
| 38 | unsigned long end; /* PER ending address */ |
| 39 | }; |
| 40 | |
| 41 | /* |
| 42 | * PER event contains information about the cause of the last PER exception. |
| 43 | */ |
| 44 | struct per_event { |
| 45 | unsigned short cause; /* PER code, ATMID and AI */ |
| 46 | unsigned long address; /* PER address */ |
| 47 | unsigned char paid; /* PER access identification */ |
| 48 | }; |
| 49 | |
| 50 | /* |
| 51 | * Simplified per_info structure used to decode the ptrace user space ABI. |
| 52 | */ |
| 53 | struct per_struct_kernel { |
| 54 | unsigned long cr9; /* PER control bits */ |
| 55 | unsigned long cr10; /* PER starting address */ |
| 56 | unsigned long cr11; /* PER ending address */ |
| 57 | unsigned long bits; /* Obsolete software bits */ |
| 58 | unsigned long starting_addr; /* User specified start address */ |
| 59 | unsigned long ending_addr; /* User specified end address */ |
| 60 | unsigned short perc_atmid; /* PER trap ATMID */ |
| 61 | unsigned long address; /* PER trap instruction address */ |
| 62 | unsigned char access_id; /* PER trap access identification */ |
| 63 | }; |
| 64 | |
Martin Schwidefsky | d35339a | 2012-07-31 11:03:04 +0200 | [diff] [blame] | 65 | #define PER_EVENT_MASK 0xEB000000UL |
Martin Schwidefsky | 5e9a269 | 2011-01-05 12:48:10 +0100 | [diff] [blame] | 66 | |
| 67 | #define PER_EVENT_BRANCH 0x80000000UL |
| 68 | #define PER_EVENT_IFETCH 0x40000000UL |
| 69 | #define PER_EVENT_STORE 0x20000000UL |
| 70 | #define PER_EVENT_STORE_REAL 0x08000000UL |
Martin Schwidefsky | d35339a | 2012-07-31 11:03:04 +0200 | [diff] [blame] | 71 | #define PER_EVENT_TRANSACTION_END 0x02000000UL |
Martin Schwidefsky | 5e9a269 | 2011-01-05 12:48:10 +0100 | [diff] [blame] | 72 | #define PER_EVENT_NULLIFICATION 0x01000000UL |
| 73 | |
Martin Schwidefsky | d35339a | 2012-07-31 11:03:04 +0200 | [diff] [blame] | 74 | #define PER_CONTROL_MASK 0x00e00000UL |
Martin Schwidefsky | 5e9a269 | 2011-01-05 12:48:10 +0100 | [diff] [blame] | 75 | |
| 76 | #define PER_CONTROL_BRANCH_ADDRESS 0x00800000UL |
Martin Schwidefsky | d35339a | 2012-07-31 11:03:04 +0200 | [diff] [blame] | 77 | #define PER_CONTROL_SUSPENSION 0x00400000UL |
Martin Schwidefsky | 5e9a269 | 2011-01-05 12:48:10 +0100 | [diff] [blame] | 78 | #define PER_CONTROL_ALTERATION 0x00200000UL |
| 79 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | #ifdef __s390x__ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | #endif /* __s390x__ */ |
Roland McGrath | 0ac30be | 2008-01-26 14:11:22 +0100 | [diff] [blame] | 82 | /* |
| 83 | * These are defined as per linux/ptrace.h, which see. |
| 84 | */ |
| 85 | #define arch_has_single_step() (1) |
Roland McGrath | 0ac30be | 2008-01-26 14:11:22 +0100 | [diff] [blame] | 86 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | #define user_mode(regs) (((regs)->psw.mask & PSW_MASK_PSTATE) != 0) |
| 88 | #define instruction_pointer(regs) ((regs)->psw.addr & PSW_ADDR_INSN) |
Martin Schwidefsky | 753c4dd | 2008-10-10 21:33:20 +0200 | [diff] [blame] | 89 | #define user_stack_pointer(regs)((regs)->gprs[15]) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | #define profile_pc(regs) instruction_pointer(regs) |
Heiko Carstens | 952974ac6 | 2010-02-12 13:38:40 +0100 | [diff] [blame] | 91 | |
Eric Paris | d7e7528 | 2012-01-03 14:23:06 -0500 | [diff] [blame] | 92 | static inline long regs_return_value(struct pt_regs *regs) |
| 93 | { |
| 94 | return regs->gprs[2]; |
| 95 | } |
| 96 | |
Heiko Carstens | 952974ac6 | 2010-02-12 13:38:40 +0100 | [diff] [blame] | 97 | int regs_query_register_offset(const char *name); |
| 98 | const char *regs_query_register_name(unsigned int offset); |
| 99 | unsigned long regs_get_register(struct pt_regs *regs, unsigned int offset); |
| 100 | unsigned long regs_get_kernel_stack_nth(struct pt_regs *regs, unsigned int n); |
| 101 | |
| 102 | static inline unsigned long kernel_stack_pointer(struct pt_regs *regs) |
| 103 | { |
| 104 | return regs->gprs[15] & PSW_ADDR_INSN; |
| 105 | } |
| 106 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | #endif /* __ASSEMBLY__ */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | #endif /* _S390_PTRACE_H */ |