[POWERPC] Fixup powermac enable device hook
[linux-2.6.git] / include / asm-sh / ptrace.h
blobb9789c8b4d15aa817d39913bfd075c265ab7efd1
1 #ifndef __ASM_SH_PTRACE_H
2 #define __ASM_SH_PTRACE_H
4 /*
5 * Copyright (C) 1999, 2000 Niibe Yutaka
7 */
9 /*
10 * GCC defines register number like this:
11 * -----------------------------
12 * 0 - 15 are integer registers
13 * 17 - 22 are control/special registers
14 * 24 - 39 fp registers
15 * 40 - 47 xd registers
16 * 48 - fpscr register
17 * -----------------------------
19 * We follows above, except:
20 * 16 --- program counter (PC)
21 * 22 --- syscall #
22 * 23 --- floating point communication register
24 #define REG_REG0 0
25 #define REG_REG15 15
27 #define REG_PC 16
29 #define REG_PR 17
30 #define REG_SR 18
31 #define REG_GBR 19
32 #define REG_MACH 20
33 #define REG_MACL 21
35 #define REG_SYSCALL 22
37 #define REG_FPREG0 23
38 #define REG_FPREG15 38
39 #define REG_XFREG0 39
40 #define REG_XFREG15 54
42 #define REG_FPSCR 55
43 #define REG_FPUL 56
46 * This struct defines the way the registers are stored on the
47 * kernel stack during a system call or other kernel entry.
49 struct pt_regs {
50 unsigned long regs[16];
51 unsigned long pc;
52 unsigned long pr;
53 unsigned long sr;
54 unsigned long gbr;
55 unsigned long mach;
56 unsigned long macl;
57 long tra;
61 * This struct defines the way the DSP registers are stored on the
62 * kernel stack during a system call or other kernel entry.
64 struct pt_dspregs {
65 unsigned long a1;
66 unsigned long a0g;
67 unsigned long a1g;
68 unsigned long m0;
69 unsigned long m1;
70 unsigned long a0;
71 unsigned long x0;
72 unsigned long x1;
73 unsigned long y0;
74 unsigned long y1;
75 unsigned long dsr;
76 unsigned long rs;
77 unsigned long re;
78 unsigned long mod;
81 #define PTRACE_GETDSPREGS 55
82 #define PTRACE_SETDSPREGS 56
84 #ifdef __KERNEL__
85 #define user_mode(regs) (((regs)->sr & 0x40000000)==0)
86 #define instruction_pointer(regs) ((regs)->pc)
87 extern void show_regs(struct pt_regs *);
89 #ifdef CONFIG_SH_DSP
90 #define task_pt_regs(task) \
91 ((struct pt_regs *) (task_stack_page(task) + THREAD_SIZE \
92 - sizeof(struct pt_dspregs) - sizeof(unsigned long)) - 1)
93 #else
94 #define task_pt_regs(task) \
95 ((struct pt_regs *) (task_stack_page(task) + THREAD_SIZE \
96 - sizeof(unsigned long)) - 1)
97 #endif
99 static inline unsigned long profile_pc(struct pt_regs *regs)
101 unsigned long pc = instruction_pointer(regs);
103 if (pc >= 0xa0000000UL && pc < 0xc0000000UL)
104 pc -= 0x20000000;
105 return pc;
107 #endif
109 #endif /* __ASM_SH_PTRACE_H */