This source file includes following definitions.
- arch_kgdb_breakpoint
1
2 #ifdef __KERNEL__
3 #ifndef __MICROBLAZE_KGDB_H__
4 #define __MICROBLAZE_KGDB_H__
5
6 #ifndef __ASSEMBLY__
7
8 #define CACHE_FLUSH_IS_SAFE 1
9 #define BUFMAX 2048
10
11
12
13
14
15
16
17
18
19 #define NUMREGBYTES (57 * 4)
20
21 #define BREAK_INSTR_SIZE 4
22 static inline void arch_kgdb_breakpoint(void)
23 {
24 __asm__ __volatile__("brki r16, 0x18;");
25 }
26
27 struct pt_regs;
28 asmlinkage void microblaze_kgdb_break(struct pt_regs *regs);
29
30 #endif
31 #endif
32 #endif