]> rtime.felk.cvut.cz Git - mcf548x/linux.git/blob - arch/m68k/include/asm/ptrace.h
Current (FEC from 2.6.31 port, no CAN, no I2C, no PCI)
[mcf548x/linux.git] / arch / m68k / include / asm / ptrace.h
1 #ifndef _M68K_PTRACE_H
2 #define _M68K_PTRACE_H
3
4 #define PT_D1      0
5 #define PT_D2      1
6 #define PT_D3      2
7 #define PT_D4      3
8 #define PT_D5      4
9 #define PT_D6      5
10 #define PT_D7      6
11 #define PT_A0      7
12 #define PT_A1      8
13 #define PT_A2      9
14 #define PT_A3      10
15 #define PT_A4      11
16 #define PT_A5      12
17 #define PT_A6      13
18 #define PT_D0      14
19 #define PT_USP     15
20 #define PT_ORIG_D0 16
21 #define PT_SR      17
22 #define PT_PC      18
23
24 #ifndef __ASSEMBLY__
25
26 /* this struct defines the way the registers are stored on the
27    stack during a system call. */
28
29 struct pt_regs {
30   long     d1;
31   long     d2;
32   long     d3;
33   long     d4;
34   long     d5;
35   long     a0;
36   long     a1;
37   long     a2;
38   long     d0;
39   long     orig_d0;
40   long     stkadj;
41 #ifdef CONFIG_COLDFIRE
42         unsigned long mmuar;
43         unsigned long mmusr; 
44   unsigned format :  4; /* frame format specifier */
45   unsigned fs2 : 2; 
46   unsigned vector : 12; /* vector offset */
47   unsigned fs1 : 2; 
48   unsigned short sr;
49   unsigned long  pc;
50 #else
51   unsigned short sr;
52   unsigned long  pc;
53   unsigned format :  4; /* frame format specifier */
54   unsigned vector : 12; /* vector offset */
55 #endif
56 };
57
58 /*
59  * This is the extended stack used by signal handlers and the context
60  * switcher: it's pushed after the normal "struct pt_regs".
61  */
62 struct switch_stack {
63         unsigned long  d6;
64         unsigned long  d7;
65         unsigned long  a3;
66         unsigned long  a4;
67         unsigned long  a5;
68         unsigned long  a6;
69         unsigned long  retpc;
70 };
71
72 /* Arbitrarily choose the same ptrace numbers as used by the Sparc code. */
73 #define PTRACE_GETREGS            12
74 #define PTRACE_SETREGS            13
75 #define PTRACE_GETFPREGS          14
76 #define PTRACE_SETFPREGS          15
77
78 #define PTRACE_GET_THREAD_AREA    25
79
80 #define PTRACE_SINGLEBLOCK      33      /* resume execution until next branch */
81
82 #ifdef __KERNEL__
83
84 #ifndef PS_S
85 #define PS_S  (0x2000)
86 #define PS_M  (0x1000)
87 #endif
88
89 #define user_mode(regs) (!((regs)->sr & PS_S))
90 #define instruction_pointer(regs) ((regs)->pc)
91 #define profile_pc(regs) instruction_pointer(regs)
92 extern void show_regs(struct pt_regs *);
93
94 #define arch_has_single_step()  (1)
95
96 #ifdef CONFIG_MMU
97 #define arch_has_block_step()   (1)
98 #endif
99
100 #endif /* __KERNEL__ */
101 #endif /* __ASSEMBLY__ */
102 #endif /* _M68K_PTRACE_H */