2 * linux/arch/arm/kernel/debug.S
4 * Copyright (C) 1994-1999 Russell King
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
10 * 32-bit debugging code
12 #include <linux/linkage.h>
17 * Some debugging routines (useful if you've got MM problems and
18 * printk isn't working). For DEBUGGING ONLY!!! Do not leave
19 * references to these in a production kernel!
22 #if defined(CONFIG_DEBUG_ICEDCC)
23 @@ debug using ARM EmbeddedICE DCC channel
25 #if defined(CONFIG_CPU_V6)
30 .macro senduart, rd, rx
31 mcr p14, 0, \rd, c0, c5, 0
34 .macro busyuart, rd, rx
36 mrc p14, 0, \rx, c0, c1, 0
41 .macro waituart, rd, rx
46 mrc p14, 0, \rx, c0, c1, 0
52 #elif defined(CONFIG_CPU_V7)
57 .macro senduart, rd, rx
58 mcr p14, 0, \rd, c0, c5, 0
61 .macro busyuart, rd, rx
62 busy: mrc p14, 0, pc, c0, c1, 0
66 .macro waituart, rd, rx
67 wait: mrc p14, 0, pc, c0, c1, 0
72 #elif defined(CONFIG_CPU_XSCALE)
77 .macro senduart, rd, rx
78 mcr p14, 0, \rd, c8, c0, 0
81 .macro busyuart, rd, rx
83 mrc p14, 0, \rx, c14, c0, 0
88 .macro waituart, rd, rx
93 mrc p14, 0, \rx, c14, c0, 0
104 .macro senduart, rd, rx
105 mcr p14, 0, \rd, c1, c0, 0
108 .macro busyuart, rd, rx
110 mrc p14, 0, \rx, c0, c0, 0
116 .macro waituart, rd, rx
121 mrc p14, 0, \rx, c0, c0, 0
127 #endif /* CONFIG_CPU_V6 */
130 #include <mach/debug-macro.S>
131 #endif /* CONFIG_DEBUG_ICEDCC */
134 * Useful debugging routines
148 printhex: adr r2, hexbuf
156 addge r1, r1, #'a' - 10