Linux-2.6.12-rc2
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / ppc / syslib / gen550_kgdb.c
blob7239d5d7ddcdca1d469dbb55d3e3f69f69c63359
1 /*
2 * arch/ppc/syslib/gen550_kgdb.c
4 * Generic 16550 kgdb support intended to be useful on a variety
5 * of platforms. To enable this support, it is necessary to set
6 * the CONFIG_GEN550 option. Any virtual mapping of the serial
7 * port(s) to be used can be accomplished by setting
8 * ppc_md.early_serial_map to a platform-specific mapping function.
10 * Adapted from ppc4xx_kgdb.c.
12 * Author: Matt Porter <mporter@kernel.crashing.org>
14 * 2002-2004 (c) MontaVista Software, Inc. This file is licensed under
15 * the terms of the GNU General Public License version 2. This program
16 * is licensed "as is" without any warranty of any kind, whether express
17 * or implied.
20 #include <linux/config.h>
21 #include <linux/types.h>
22 #include <linux/kernel.h>
24 #include <asm/machdep.h>
26 extern unsigned long serial_init(int, void *);
27 extern unsigned long serial_getc(unsigned long);
28 extern unsigned long serial_putc(unsigned long, unsigned char);
30 #if defined(CONFIG_KGDB_TTYS0)
31 #define KGDB_PORT 0
32 #elif defined(CONFIG_KGDB_TTYS1)
33 #define KGDB_PORT 1
34 #elif defined(CONFIG_KGDB_TTYS2)
35 #define KGDB_PORT 2
36 #elif defined(CONFIG_KGDB_TTYS3)
37 #define KGDB_PORT 3
38 #else
39 #error "invalid kgdb_tty port"
40 #endif
42 static volatile unsigned int kgdb_debugport;
44 void putDebugChar(unsigned char c)
46 if (kgdb_debugport == 0)
47 kgdb_debugport = serial_init(KGDB_PORT, NULL);
49 serial_putc(kgdb_debugport, c);
52 int getDebugChar(void)
54 if (kgdb_debugport == 0)
55 kgdb_debugport = serial_init(KGDB_PORT, NULL);
57 return(serial_getc(kgdb_debugport));
60 void kgdb_interruptible(int enable)
62 return;
65 void putDebugString(char* str)
67 while (*str != '\0') {
68 putDebugChar(*str);
69 str++;
71 putDebugChar('\r');
72 return;
76 * Note: gen550_init() must be called already on the port we are going
77 * to use.
79 void
80 gen550_kgdb_map_scc(void)
82 printk(KERN_DEBUG "kgdb init\n");
83 if (ppc_md.early_serial_map)
84 ppc_md.early_serial_map();
85 kgdb_debugport = serial_init(KGDB_PORT, NULL);