ptrace.h 7.5 KB
Newer Older
S
Stephen Rothwell 已提交
1 2
#ifndef _ASM_POWERPC_PTRACE_H
#define _ASM_POWERPC_PTRACE_H
L
Linus Torvalds 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18

/*
 * Copyright (C) 2001 PPC64 Team, IBM Corp
 *
 * This struct defines the way the registers are stored on the
 * kernel stack during a system call or other kernel entry.
 *
 * this should only contain volatile regs
 * since we can keep non-volatile in the thread_struct
 * should set this up when only volatiles are saved
 * by intr code.
 *
 * Since this is going on the stack, *CARE MUST BE TAKEN* to insure
 * that the overall structure is a multiple of 16 bytes in length.
 *
 * Note that the offsets of the fields in this struct correspond with
S
Stephen Rothwell 已提交
19
 * the PT_* values below.  This simplifies arch/powerpc/kernel/ptrace.c.
L
Linus Torvalds 已提交
20 21 22 23 24 25 26 27
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version
 * 2 of the License, or (at your option) any later version.
 */

#ifndef __ASSEMBLY__
A
Anton Blanchard 已提交
28

L
Linus Torvalds 已提交
29
struct pt_regs {
A
Anton Blanchard 已提交
30 31 32
	unsigned long gpr[32];
	unsigned long nip;
	unsigned long msr;
S
Stephen Rothwell 已提交
33
	unsigned long orig_gpr3;	/* Used for restarting system calls */
A
Anton Blanchard 已提交
34 35 36 37
	unsigned long ctr;
	unsigned long link;
	unsigned long xer;
	unsigned long ccr;
S
Stephen Rothwell 已提交
38 39 40 41 42 43 44 45 46 47 48 49
#ifdef __powerpc64__
	unsigned long softe;		/* Soft enabled/disabled */
#else
	unsigned long mq;		/* 601 only (not used at present) */
					/* Used on APUS to hold IPL value. */
#endif
	unsigned long trap;		/* Reason for being here */
	/* N.B. for critical exceptions on 4xx, the dar and dsisr
	   fields are overloaded to hold srr0 and srr1. */
	unsigned long dar;		/* Fault registers */
	unsigned long dsisr;		/* on 4xx/Book-E used for ESR */
	unsigned long result;		/* Result of a system call */
L
Linus Torvalds 已提交
50 51
};

S
Stephen Rothwell 已提交
52
#endif /* __ASSEMBLY__ */
L
Linus Torvalds 已提交
53

A
Anton Blanchard 已提交
54 55
#ifdef __KERNEL__

S
Stephen Rothwell 已提交
56 57
#ifdef __powerpc64__

58 59
#define __ARCH_WANT_COMPAT_SYS_PTRACE

S
Stephen Rothwell 已提交
60 61 62 63 64 65 66 67 68 69 70 71 72 73
#define STACK_FRAME_OVERHEAD	112	/* size of minimum stack frame */

/* Size of dummy stack frame allocated when calling signal handler. */
#define __SIGNAL_FRAMESIZE	128
#define __SIGNAL_FRAMESIZE32	64

#else /* __powerpc64__ */

#define STACK_FRAME_OVERHEAD	16	/* size of minimum stack frame */

/* Size of stack frame allocated when calling signal handler. */
#define __SIGNAL_FRAMESIZE	64

#endif /* __powerpc64__ */
A
Anton Blanchard 已提交
74

S
Stephen Rothwell 已提交
75 76 77
#ifndef __ASSEMBLY__

#define instruction_pointer(regs) ((regs)->nip)
78 79
#define regs_return_value(regs) ((regs)->gpr[3])

L
Linus Torvalds 已提交
80 81 82 83 84 85
#ifdef CONFIG_SMP
extern unsigned long profile_pc(struct pt_regs *regs);
#else
#define profile_pc(regs) instruction_pointer(regs)
#endif

S
Stephen Rothwell 已提交
86
#ifdef __powerpc64__
L
Linus Torvalds 已提交
87
#define user_mode(regs) ((((regs)->msr) >> MSR_PR_LG) & 0x1)
S
Stephen Rothwell 已提交
88 89 90
#else
#define user_mode(regs) (((regs)->msr & MSR_PR) != 0)
#endif
L
Linus Torvalds 已提交
91 92

#define force_successful_syscall_return()   \
S
Stephen Rothwell 已提交
93
	do { \
94
		set_thread_flag(TIF_NOERROR); \
S
Stephen Rothwell 已提交
95
	} while(0)
L
Linus Torvalds 已提交
96

97 98 99 100 101
struct task_struct;
extern unsigned long ptrace_get_reg(struct task_struct *task, int regno);
extern int ptrace_put_reg(struct task_struct *task, int regno,
			  unsigned long data);

L
Linus Torvalds 已提交
102 103 104 105
/*
 * We use the least-significant bit of the trap field to indicate
 * whether we have saved the full set of registers, or only a
 * partial set.  A 1 there means the partial set.
S
Stephen Rothwell 已提交
106 107
 * On 4xx we use the next bit to indicate whether the exception
 * is a critical exception (1 means it is).
L
Linus Torvalds 已提交
108 109
 */
#define FULL_REGS(regs)		(((regs)->trap & 1) == 0)
S
Stephen Rothwell 已提交
110
#ifndef __powerpc64__
111 112
#define IS_CRITICAL_EXC(regs)	(((regs)->trap & 2) != 0)
#define IS_MCHECK_EXC(regs)	(((regs)->trap & 4) != 0)
S
Stephen Rothwell 已提交
113
#endif /* ! __powerpc64__ */
L
Linus Torvalds 已提交
114
#define TRAP(regs)		((regs)->trap & ~0xF)
S
Stephen Rothwell 已提交
115
#ifdef __powerpc64__
L
Linus Torvalds 已提交
116
#define CHECK_FULL_REGS(regs)	BUG_ON(regs->trap & 1)
S
Stephen Rothwell 已提交
117 118 119 120 121 122 123
#else
#define CHECK_FULL_REGS(regs)						      \
do {									      \
	if ((regs)->trap & 1)						      \
		printk(KERN_CRIT "%s: partial register set\n", __FUNCTION__); \
} while (0)
#endif /* __powerpc64__ */
A
Anton Blanchard 已提交
124

R
Roland McGrath 已提交
125 126 127 128 129 130 131
/*
 * These are defined as per linux/ptrace.h, which see.
 */
#define arch_has_single_step()	(1)
extern void user_enable_single_step(struct task_struct *);
extern void user_disable_single_step(struct task_struct *);

A
Anton Blanchard 已提交
132 133
#endif /* __ASSEMBLY__ */

S
Stephen Rothwell 已提交
134
#endif /* __KERNEL__ */
A
Anton Blanchard 已提交
135

L
Linus Torvalds 已提交
136 137
/*
 * Offsets used by 'ptrace' system call interface.
S
Stephen Rothwell 已提交
138 139
 * These can't be changed without breaking binary compatibility
 * with MkLinux, etc.
L
Linus Torvalds 已提交
140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
 */
#define PT_R0	0
#define PT_R1	1
#define PT_R2	2
#define PT_R3	3
#define PT_R4	4
#define PT_R5	5
#define PT_R6	6
#define PT_R7	7
#define PT_R8	8
#define PT_R9	9
#define PT_R10	10
#define PT_R11	11
#define PT_R12	12
#define PT_R13	13
#define PT_R14	14
#define PT_R15	15
#define PT_R16	16
#define PT_R17	17
#define PT_R18	18
#define PT_R19	19
#define PT_R20	20
#define PT_R21	21
#define PT_R22	22
#define PT_R23	23
#define PT_R24	24
#define PT_R25	25
#define PT_R26	26
#define PT_R27	27
#define PT_R28	28
#define PT_R29	29
#define PT_R30	30
#define PT_R31	31

#define PT_NIP	32
#define PT_MSR	33
#define PT_ORIG_R3 34
#define PT_CTR	35
#define PT_LNK	36
#define PT_XER	37
#define PT_CCR	38
S
Stephen Rothwell 已提交
181 182 183
#ifndef __powerpc64__
#define PT_MQ	39
#else
L
Linus Torvalds 已提交
184
#define PT_SOFTE 39
185
#endif
A
Anton Blanchard 已提交
186 187 188
#define PT_TRAP	40
#define PT_DAR	41
#define PT_DSISR 42
L
Linus Torvalds 已提交
189
#define PT_RESULT 43
190
#define PT_REGS_COUNT 44
L
Linus Torvalds 已提交
191

S
Stephen Rothwell 已提交
192 193 194 195 196 197 198 199
#define PT_FPR0	48	/* each FP reg occupies 2 slots in this space */

#ifndef __powerpc64__

#define PT_FPR31 (PT_FPR0 + 2*31)
#define PT_FPSCR (PT_FPR0 + 2*32 + 1)

#else /* __powerpc64__ */
L
Linus Torvalds 已提交
200

A
Anton Blanchard 已提交
201
#define PT_FPSCR (PT_FPR0 + 32)	/* each FP reg occupies 1 slot in 64-bit space */
L
Linus Torvalds 已提交
202 203

#ifdef __KERNEL__
A
Anton Blanchard 已提交
204
#define PT_FPSCR32 (PT_FPR0 + 2*32 + 1)	/* each FP reg occupies 2 32-bit userspace slots */
L
Linus Torvalds 已提交
205 206 207 208 209 210 211 212 213 214 215 216
#endif

#define PT_VR0 82	/* each Vector reg occupies 2 slots in 64-bit */
#define PT_VSCR (PT_VR0 + 32*2 + 1)
#define PT_VRSAVE (PT_VR0 + 33*2)

#ifdef __KERNEL__
#define PT_VR0_32 164	/* each Vector reg occupies 4 slots in 32-bit */
#define PT_VSCR_32 (PT_VR0 + 32*4 + 3)
#define PT_VRSAVE_32 (PT_VR0 + 33*4)
#endif

S
Stephen Rothwell 已提交
217 218
#endif /* __powerpc64__ */

L
Linus Torvalds 已提交
219
/*
S
Stephen Rothwell 已提交
220 221 222 223
 * Get/set all the altivec registers vr0..vr31, vscr, vrsave, in one go.
 * The transfer totals 34 quadword.  Quadwords 0-31 contain the
 * corresponding vector registers.  Quadword 32 contains the vscr as the
 * last word (offset 12) within that quadword.  Quadword 33 contains the
L
Linus Torvalds 已提交
224 225
 * vrsave as the first word (offset 0) within the quadword.
 *
S
Stephen Rothwell 已提交
226 227 228
 * This definition of the VMX state is compatible with the current PPC32
 * ptrace interface.  This allows signal handling and ptrace to use the same
 * structures.  This also simplifies the implementation of a bi-arch
L
Linus Torvalds 已提交
229 230 231 232 233
 * (combined (32- and 64-bit) gdb.
 */
#define PTRACE_GETVRREGS	18
#define PTRACE_SETVRREGS	19

S
Stephen Rothwell 已提交
234 235 236 237
/* Get/set all the upper 32-bits of the SPE registers, accumulator, and
 * spefscr, in one go */
#define PTRACE_GETEVRREGS	20
#define PTRACE_SETEVRREGS	21
L
Linus Torvalds 已提交
238

239 240 241 242 243 244 245
/*
 * Get or set a debug register. The first 16 are DABR registers and the
 * second 16 are IABR registers.
 */
#define PTRACE_GET_DEBUGREG	25
#define PTRACE_SET_DEBUGREG	26

246 247 248 249 250 251 252 253 254 255 256
/* (new) PTRACE requests using the same numbers as x86 and the same
 * argument ordering. Additionally, they support more registers too
 */
#define PTRACE_GETREGS            12
#define PTRACE_SETREGS            13
#define PTRACE_GETFPREGS          14
#define PTRACE_SETFPREGS          15
#define PTRACE_GETREGS64	  22
#define PTRACE_SETREGS64	  23

/* (old) PTRACE requests with inverted arguments */
A
Anton Blanchard 已提交
257 258 259 260 261 262 263 264 265 266 267 268
#define PPC_PTRACE_GETREGS	0x99	/* Get GPRs 0 - 31 */
#define PPC_PTRACE_SETREGS	0x98	/* Set GPRs 0 - 31 */
#define PPC_PTRACE_GETFPREGS	0x97	/* Get FPRs 0 - 31 */
#define PPC_PTRACE_SETFPREGS	0x96	/* Set FPRs 0 - 31 */

/* Calls to trace a 64bit program from a 32bit program */
#define PPC_PTRACE_PEEKTEXT_3264 0x95
#define PPC_PTRACE_PEEKDATA_3264 0x94
#define PPC_PTRACE_POKETEXT_3264 0x93
#define PPC_PTRACE_POKEDATA_3264 0x92
#define PPC_PTRACE_PEEKUSR_3264  0x91
#define PPC_PTRACE_POKEUSR_3264  0x90
L
Linus Torvalds 已提交
269

S
Stephen Rothwell 已提交
270
#endif /* _ASM_POWERPC_PTRACE_H */