Merge branches 'core-fixes-for-linus' and 'irq-fixes-for-linus' of git://git.kernel...
[pandora-kernel.git] / arch / blackfin / include / asm / kgdb.h
1 /* Blackfin KGDB header
2  *
3  * Copyright 2005-2009 Analog Devices Inc.
4  *
5  * Licensed under the GPL-2 or later.
6  */
7
8 #ifndef __ASM_BLACKFIN_KGDB_H__
9 #define __ASM_BLACKFIN_KGDB_H__
10
11 #include <linux/ptrace.h>
12
13 /*
14  * BUFMAX defines the maximum number of characters in inbound/outbound buffers.
15  * At least NUMREGBYTES*2 are needed for register packets.
16  * Longer buffer is needed to list all threads.
17  */
18 #define BUFMAX 2048
19
20 /*
21  * Note that this register image is different from
22  * the register image that Linux produces at interrupt time.
23  *
24  * Linux's register image is defined by struct pt_regs in ptrace.h.
25  */
26 enum regnames {
27   /* Core Registers */
28   BFIN_R0 = 0,
29   BFIN_R1,
30   BFIN_R2,
31   BFIN_R3,
32   BFIN_R4,
33   BFIN_R5,
34   BFIN_R6,
35   BFIN_R7,
36   BFIN_P0,
37   BFIN_P1,
38   BFIN_P2,
39   BFIN_P3,
40   BFIN_P4,
41   BFIN_P5,
42   BFIN_SP,
43   BFIN_FP,
44   BFIN_I0,
45   BFIN_I1,
46   BFIN_I2,
47   BFIN_I3,
48   BFIN_M0,
49   BFIN_M1,
50   BFIN_M2,
51   BFIN_M3,
52   BFIN_B0,
53   BFIN_B1,
54   BFIN_B2,
55   BFIN_B3,
56   BFIN_L0,
57   BFIN_L1,
58   BFIN_L2,
59   BFIN_L3,
60   BFIN_A0_DOT_X,
61   BFIN_A0_DOT_W,
62   BFIN_A1_DOT_X,
63   BFIN_A1_DOT_W,
64   BFIN_ASTAT,
65   BFIN_RETS,
66   BFIN_LC0,
67   BFIN_LT0,
68   BFIN_LB0,
69   BFIN_LC1,
70   BFIN_LT1,
71   BFIN_LB1,
72   BFIN_CYCLES,
73   BFIN_CYCLES2,
74   BFIN_USP,
75   BFIN_SEQSTAT,
76   BFIN_SYSCFG,
77   BFIN_RETI,
78   BFIN_RETX,
79   BFIN_RETN,
80   BFIN_RETE,
81
82   /* Pseudo Registers */
83   BFIN_PC,
84   BFIN_CC,
85   BFIN_EXTRA1,          /* Address of .text section.  */
86   BFIN_EXTRA2,          /* Address of .data section.  */
87   BFIN_EXTRA3,          /* Address of .bss section.  */
88   BFIN_FDPIC_EXEC,
89   BFIN_FDPIC_INTERP,
90
91   /* MMRs */
92   BFIN_IPEND,
93
94   /* LAST ENTRY SHOULD NOT BE CHANGED.  */
95   BFIN_NUM_REGS         /* The number of all registers.  */
96 };
97
98 /* Number of bytes of registers.  */
99 #define NUMREGBYTES BFIN_NUM_REGS*4
100
101 static inline void arch_kgdb_breakpoint(void)
102 {
103         asm("EXCPT 2;");
104 }
105 #define BREAK_INSTR_SIZE        2
106 #ifdef CONFIG_SMP
107 # define CACHE_FLUSH_IS_SAFE    0
108 #else
109 # define CACHE_FLUSH_IS_SAFE    1
110 #endif
111 #define HW_INST_WATCHPOINT_NUM  6
112 #define HW_WATCHPOINT_NUM       8
113 #define TYPE_INST_WATCHPOINT    0
114 #define TYPE_DATA_WATCHPOINT    1
115
116 /* Instruction watchpoint address control register bits mask */
117 #define WPPWR           0x1
118 #define WPIREN01        0x2
119 #define WPIRINV01       0x4
120 #define WPIAEN0         0x8
121 #define WPIAEN1         0x10
122 #define WPICNTEN0       0x20
123 #define WPICNTEN1       0x40
124 #define EMUSW0          0x80
125 #define EMUSW1          0x100
126 #define WPIREN23        0x200
127 #define WPIRINV23       0x400
128 #define WPIAEN2         0x800
129 #define WPIAEN3         0x1000
130 #define WPICNTEN2       0x2000
131 #define WPICNTEN3       0x4000
132 #define EMUSW2          0x8000
133 #define EMUSW3          0x10000
134 #define WPIREN45        0x20000
135 #define WPIRINV45       0x40000
136 #define WPIAEN4         0x80000
137 #define WPIAEN5         0x100000
138 #define WPICNTEN4       0x200000
139 #define WPICNTEN5       0x400000
140 #define EMUSW4          0x800000
141 #define EMUSW5          0x1000000
142 #define WPAND           0x2000000
143
144 /* Data watchpoint address control register bits mask */
145 #define WPDREN01        0x1
146 #define WPDRINV01       0x2
147 #define WPDAEN0         0x4
148 #define WPDAEN1         0x8
149 #define WPDCNTEN0       0x10
150 #define WPDCNTEN1       0x20
151
152 #define WPDSRC0         0xc0
153 #define WPDACC0_OFFSET  8
154 #define WPDSRC1         0xc00
155 #define WPDACC1_OFFSET  12
156
157 /* Watchpoint status register bits mask */
158 #define STATIA0         0x1
159 #define STATIA1         0x2
160 #define STATIA2         0x4
161 #define STATIA3         0x8
162 #define STATIA4         0x10
163 #define STATIA5         0x20
164 #define STATDA0         0x40
165 #define STATDA1         0x80
166
167 #endif