diff options
author | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2005-11-23 01:57:25 -0500 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2006-01-08 22:49:54 -0500 |
commit | 51d3082fe6e55aecfa17113dbe98077c749f724c (patch) | |
tree | 9a1e2355d5988d8cc1ca511d53c1bb24b0baa17f /include/asm-powerpc/udbg.h | |
parent | 463ce0e103f419f51b1769111e73fe8bb305d0ec (diff) |
[PATCH] powerpc: Unify udbg (#2)
This patch unifies udbg for both ppc32 and ppc64 when building the
merged achitecture. xmon now has a single "back end". The powermac udbg
stuff gets enriched with some ADB capabilities and btext output. In
addition, the early_init callback is now called on ppc32 as well,
approx. in the same order as ppc64 regarding device-tree manipulations.
The init sequences of ppc32 and ppc64 are getting closer, I'll unify
them in a later patch.
For now, you can force udbg to the scc using "sccdbg" or to btext using
"btextdbg" on powermacs. I'll implement a cleaner way of forcing udbg
output to something else than the autodetected OF output device in a
later patch.
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'include/asm-powerpc/udbg.h')
-rw-r--r-- | include/asm-powerpc/udbg.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/include/asm-powerpc/udbg.h b/include/asm-powerpc/udbg.h index 4049a96dc43d..8d6b44c8f35d 100644 --- a/include/asm-powerpc/udbg.h +++ b/include/asm-powerpc/udbg.h | |||
@@ -13,8 +13,8 @@ | |||
13 | #include <linux/compiler.h> | 13 | #include <linux/compiler.h> |
14 | #include <linux/init.h> | 14 | #include <linux/init.h> |
15 | 15 | ||
16 | extern void (*udbg_putc)(unsigned char c); | 16 | extern void (*udbg_putc)(char c); |
17 | extern unsigned char (*udbg_getc)(void); | 17 | extern char (*udbg_getc)(void); |
18 | extern int (*udbg_getc_poll)(void); | 18 | extern int (*udbg_getc_poll)(void); |
19 | 19 | ||
20 | extern void udbg_puts(const char *s); | 20 | extern void udbg_puts(const char *s); |
@@ -30,5 +30,8 @@ extern unsigned int udbg_probe_uart_speed(void __iomem *comport, | |||
30 | unsigned int clock); | 30 | unsigned int clock); |
31 | 31 | ||
32 | struct device_node; | 32 | struct device_node; |
33 | extern void udbg_init_scc(struct device_node *np); | 33 | extern void udbg_scc_init(int force_scc); |
34 | extern int udbg_adb_init(int force_btext); | ||
35 | extern void udbg_adb_init_early(void); | ||
36 | |||
34 | #endif /* _ASM_POWERPC_UDBG_H */ | 37 | #endif /* _ASM_POWERPC_UDBG_H */ |