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__ |
Heiko Carstens | 63dd9b4 | 2013-04-20 14:07:29 +0200 | [diff] [blame] | 12 | |
Martin Schwidefsky | e258d71 | 2013-09-24 09:14:56 +0200 | [diff] [blame] | 13 | #define PSW_KERNEL_BITS (PSW_DEFAULT_KEY | PSW_MASK_BASE | PSW_ASC_HOME | \ |
| 14 | PSW_MASK_EA | PSW_MASK_BA) |
| 15 | #define PSW_USER_BITS (PSW_MASK_DAT | PSW_MASK_IO | PSW_MASK_EXT | \ |
| 16 | PSW_DEFAULT_KEY | PSW_MASK_BASE | PSW_MASK_MCHECK | \ |
| 17 | PSW_MASK_PSTATE | PSW_ASC_PRIMARY) |
David Woodhouse | 274f594 | 2006-04-27 04:47:10 +0100 | [diff] [blame] | 18 | |
Heiko Carstens | 1365632 | 2014-01-01 16:08:06 +0100 | [diff] [blame^] | 19 | struct psw_bits { |
| 20 | unsigned long long : 1; |
| 21 | unsigned long long r : 1; /* PER-Mask */ |
| 22 | unsigned long long : 3; |
| 23 | unsigned long long t : 1; /* DAT Mode */ |
| 24 | unsigned long long i : 1; /* Input/Output Mask */ |
| 25 | unsigned long long e : 1; /* External Mask */ |
| 26 | unsigned long long key : 4; /* PSW Key */ |
| 27 | unsigned long long : 1; |
| 28 | unsigned long long m : 1; /* Machine-Check Mask */ |
| 29 | unsigned long long w : 1; /* Wait State */ |
| 30 | unsigned long long p : 1; /* Problem State */ |
| 31 | unsigned long long as : 2; /* Address Space Control */ |
| 32 | unsigned long long cc : 2; /* Condition Code */ |
| 33 | unsigned long long pm : 4; /* Program Mask */ |
| 34 | unsigned long long ri : 1; /* Runtime Instrumentation */ |
| 35 | unsigned long long : 6; |
| 36 | unsigned long long eaba : 2; /* Addressing Mode */ |
| 37 | #ifdef CONFIG_64BIT |
| 38 | unsigned long long : 31; |
| 39 | unsigned long long ia : 64;/* Instruction Address */ |
| 40 | #else |
| 41 | unsigned long long ia : 31;/* Instruction Address */ |
| 42 | #endif |
| 43 | }; |
| 44 | |
| 45 | enum { |
| 46 | PSW_AMODE_24BIT = 0, |
| 47 | PSW_AMODE_31BIT = 1, |
| 48 | PSW_AMODE_64BIT = 3 |
| 49 | }; |
| 50 | |
| 51 | enum { |
| 52 | PSW_AS_PRIMARY = 0, |
| 53 | PSW_AS_ACCREG = 1, |
| 54 | PSW_AS_SECONDARY = 2, |
| 55 | PSW_AS_HOME = 3 |
| 56 | }; |
| 57 | |
| 58 | #define psw_bits(__psw) (*({ \ |
| 59 | typecheck(psw_t, __psw); \ |
| 60 | &(*(struct psw_bits *)(&(__psw))); \ |
| 61 | })) |
| 62 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | /* |
| 64 | * The pt_regs struct defines the way the registers are stored on |
| 65 | * the stack during a system call. |
| 66 | */ |
| 67 | struct pt_regs |
| 68 | { |
| 69 | unsigned long args[1]; |
| 70 | psw_t psw; |
| 71 | unsigned long gprs[NUM_GPRS]; |
| 72 | unsigned long orig_gpr2; |
Martin Schwidefsky | aa33c8c | 2011-12-27 11:27:18 +0100 | [diff] [blame] | 73 | unsigned int int_code; |
Martin Schwidefsky | 48f6b00 | 2013-06-17 14:54:02 +0200 | [diff] [blame] | 74 | unsigned int int_parm; |
Martin Schwidefsky | aa33c8c | 2011-12-27 11:27:18 +0100 | [diff] [blame] | 75 | unsigned long int_parm_long; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | }; |
Martin Schwidefsky | 5e9a269 | 2011-01-05 12:48:10 +0100 | [diff] [blame] | 77 | |
| 78 | /* |
| 79 | * Program event recording (PER) register set. |
| 80 | */ |
| 81 | struct per_regs { |
| 82 | unsigned long control; /* PER control bits */ |
| 83 | unsigned long start; /* PER starting address */ |
| 84 | unsigned long end; /* PER ending address */ |
| 85 | }; |
| 86 | |
| 87 | /* |
| 88 | * PER event contains information about the cause of the last PER exception. |
| 89 | */ |
| 90 | struct per_event { |
| 91 | unsigned short cause; /* PER code, ATMID and AI */ |
| 92 | unsigned long address; /* PER address */ |
| 93 | unsigned char paid; /* PER access identification */ |
| 94 | }; |
| 95 | |
| 96 | /* |
| 97 | * Simplified per_info structure used to decode the ptrace user space ABI. |
| 98 | */ |
| 99 | struct per_struct_kernel { |
| 100 | unsigned long cr9; /* PER control bits */ |
| 101 | unsigned long cr10; /* PER starting address */ |
| 102 | unsigned long cr11; /* PER ending address */ |
| 103 | unsigned long bits; /* Obsolete software bits */ |
| 104 | unsigned long starting_addr; /* User specified start address */ |
| 105 | unsigned long ending_addr; /* User specified end address */ |
| 106 | unsigned short perc_atmid; /* PER trap ATMID */ |
| 107 | unsigned long address; /* PER trap instruction address */ |
| 108 | unsigned char access_id; /* PER trap access identification */ |
| 109 | }; |
| 110 | |
Martin Schwidefsky | d35339a | 2012-07-31 11:03:04 +0200 | [diff] [blame] | 111 | #define PER_EVENT_MASK 0xEB000000UL |
Martin Schwidefsky | 5e9a269 | 2011-01-05 12:48:10 +0100 | [diff] [blame] | 112 | |
| 113 | #define PER_EVENT_BRANCH 0x80000000UL |
| 114 | #define PER_EVENT_IFETCH 0x40000000UL |
| 115 | #define PER_EVENT_STORE 0x20000000UL |
| 116 | #define PER_EVENT_STORE_REAL 0x08000000UL |
Martin Schwidefsky | d35339a | 2012-07-31 11:03:04 +0200 | [diff] [blame] | 117 | #define PER_EVENT_TRANSACTION_END 0x02000000UL |
Martin Schwidefsky | 5e9a269 | 2011-01-05 12:48:10 +0100 | [diff] [blame] | 118 | #define PER_EVENT_NULLIFICATION 0x01000000UL |
| 119 | |
Martin Schwidefsky | d35339a | 2012-07-31 11:03:04 +0200 | [diff] [blame] | 120 | #define PER_CONTROL_MASK 0x00e00000UL |
Martin Schwidefsky | 5e9a269 | 2011-01-05 12:48:10 +0100 | [diff] [blame] | 121 | |
| 122 | #define PER_CONTROL_BRANCH_ADDRESS 0x00800000UL |
Martin Schwidefsky | d35339a | 2012-07-31 11:03:04 +0200 | [diff] [blame] | 123 | #define PER_CONTROL_SUSPENSION 0x00400000UL |
Martin Schwidefsky | 5e9a269 | 2011-01-05 12:48:10 +0100 | [diff] [blame] | 124 | #define PER_CONTROL_ALTERATION 0x00200000UL |
| 125 | |
Roland McGrath | 0ac30be | 2008-01-26 14:11:22 +0100 | [diff] [blame] | 126 | /* |
| 127 | * These are defined as per linux/ptrace.h, which see. |
| 128 | */ |
| 129 | #define arch_has_single_step() (1) |
Martin Schwidefsky | 818a330 | 2014-03-14 12:01:08 +0100 | [diff] [blame] | 130 | #define arch_has_block_step() (1) |
Roland McGrath | 0ac30be | 2008-01-26 14:11:22 +0100 | [diff] [blame] | 131 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | #define user_mode(regs) (((regs)->psw.mask & PSW_MASK_PSTATE) != 0) |
| 133 | #define instruction_pointer(regs) ((regs)->psw.addr & PSW_ADDR_INSN) |
Martin Schwidefsky | 753c4dd | 2008-10-10 21:33:20 +0200 | [diff] [blame] | 134 | #define user_stack_pointer(regs)((regs)->gprs[15]) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | #define profile_pc(regs) instruction_pointer(regs) |
Heiko Carstens | 952974ac6 | 2010-02-12 13:38:40 +0100 | [diff] [blame] | 136 | |
Eric Paris | d7e7528 | 2012-01-03 14:23:06 -0500 | [diff] [blame] | 137 | static inline long regs_return_value(struct pt_regs *regs) |
| 138 | { |
| 139 | return regs->gprs[2]; |
| 140 | } |
| 141 | |
Heiko Carstens | 952974ac6 | 2010-02-12 13:38:40 +0100 | [diff] [blame] | 142 | int regs_query_register_offset(const char *name); |
| 143 | const char *regs_query_register_name(unsigned int offset); |
| 144 | unsigned long regs_get_register(struct pt_regs *regs, unsigned int offset); |
| 145 | unsigned long regs_get_kernel_stack_nth(struct pt_regs *regs, unsigned int n); |
| 146 | |
| 147 | static inline unsigned long kernel_stack_pointer(struct pt_regs *regs) |
| 148 | { |
| 149 | return regs->gprs[15] & PSW_ADDR_INSN; |
| 150 | } |
| 151 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | #endif /* __ASSEMBLY__ */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | #endif /* _S390_PTRACE_H */ |