udbg.c 4.4 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
2
 * polling mode stateless debugging stuff, originally for NS16550 Serial Ports
L
Linus Torvalds 已提交
3 4 5 6 7 8 9 10 11 12 13
 *
 * c 2001 PPC 64 Team, IBM Corp
 *
 *      This program is free software; you can redistribute it and/or
 *      modify it under the terms of the GNU General Public License
 *      as published by the Free Software Foundation; either version
 *      2 of the License, or (at your option) any later version.
 */

#include <stdarg.h>
#include <linux/types.h>
14
#include <linux/sched.h>
15
#include <linux/console.h>
16
#include <linux/init.h>
L
Linus Torvalds 已提交
17
#include <asm/processor.h>
18
#include <asm/udbg.h>
L
Linus Torvalds 已提交
19

20
void (*udbg_putc)(char c);
21
void (*udbg_flush)(void);
22
int (*udbg_getc)(void);
23 24
int (*udbg_getc_poll)(void);

25 26 27 28 29 30 31 32 33
/*
 * Early debugging facilities. You can enable _one_ of these via .config,
 * if you do so your kernel _will not boot_ on anything else. Be careful.
 */
void __init udbg_early_init(void)
{
#if defined(CONFIG_PPC_EARLY_DEBUG_LPAR)
	/* For LPAR machines that have an HVC console on vterm 0 */
	udbg_init_debug_lpar();
34 35 36
#elif defined(CONFIG_PPC_EARLY_DEBUG_LPAR_HVSI)
	/* For LPAR machines that have an HVSI console on vterm 0 */
	udbg_init_debug_lpar_hvsi();
37 38 39
#elif defined(CONFIG_PPC_EARLY_DEBUG_G5)
	/* For use on Apple G5 machines */
	udbg_init_pmac_realmode();
40
#elif defined(CONFIG_PPC_EARLY_DEBUG_RTAS_PANEL)
41
	/* RTAS panel debug */
42 43 44 45
	udbg_init_rtas_panel();
#elif defined(CONFIG_PPC_EARLY_DEBUG_RTAS_CONSOLE)
	/* RTAS console debug */
	udbg_init_rtas_console();
46 47 48 49 50 51
#elif defined(CONFIG_PPC_EARLY_DEBUG_MAPLE)
	/* Maple real mode debug */
	udbg_init_maple_realmode();
#elif defined(CONFIG_PPC_EARLY_DEBUG_ISERIES)
	/* For iSeries - hit Ctrl-x Ctrl-x to see the output */
	udbg_init_iseries();
I
Ishizaki Kou 已提交
52 53
#elif defined(CONFIG_PPC_EARLY_DEBUG_BEAT)
	udbg_init_debug_beat();
54 55
#elif defined(CONFIG_PPC_EARLY_DEBUG_PAS_REALMODE)
	udbg_init_pas_realmode();
56 57
#elif defined(CONFIG_BOOTX_TEXT)
	udbg_init_btext();
58 59 60
#elif defined(CONFIG_PPC_EARLY_DEBUG_44x)
	/* PPC44x debug */
	udbg_init_44x_as1();
61 62 63
#elif defined(CONFIG_PPC_EARLY_DEBUG_40x)
	/* PPC40x debug */
	udbg_init_40x_realmode();
64 65
#elif defined(CONFIG_PPC_EARLY_DEBUG_CPM)
	udbg_init_cpm();
66 67
#elif defined(CONFIG_PPC_EARLY_DEBUG_USBGECKO)
	udbg_init_usbgecko();
68 69
#elif defined(CONFIG_PPC_EARLY_DEBUG_WSP)
	udbg_init_wsp();
70 71
#elif defined(CONFIG_PPC_EARLY_DEBUG_PS3GELIC)
	udbg_init_ps3gelic();
72
#endif
73 74 75

#ifdef CONFIG_PPC_EARLY_DEBUG
	console_loglevel = 10;
76 77

	register_early_udbg_console();
78
#endif
79 80
}

81
/* udbg library, used by xmon et al */
L
Linus Torvalds 已提交
82 83
void udbg_puts(const char *s)
{
84
	if (udbg_putc) {
L
Linus Torvalds 已提交
85 86 87 88
		char c;

		if (s && *s != '\0') {
			while ((c = *s++) != '\0')
89
				udbg_putc(c);
L
Linus Torvalds 已提交
90
		}
91 92 93

		if (udbg_flush)
			udbg_flush();
L
Linus Torvalds 已提交
94 95 96 97 98 99 100 101 102 103 104 105 106
	}
#if 0
	else {
		printk("%s", s);
	}
#endif
}

int udbg_write(const char *s, int n)
{
	int remain = n;
	char c;

107
	if (!udbg_putc)
L
Linus Torvalds 已提交
108 109 110 111
		return 0;

	if (s && *s != '\0') {
		while (((c = *s++) != '\0') && (remain-- > 0)) {
112
			udbg_putc(c);
L
Linus Torvalds 已提交
113 114 115
		}
	}

116 117 118
	if (udbg_flush)
		udbg_flush();

L
Linus Torvalds 已提交
119 120 121 122 123
	return n - remain;
}

int udbg_read(char *buf, int buflen)
{
124 125
	char *p = buf;
	int i, c;
L
Linus Torvalds 已提交
126

127
	if (!udbg_getc)
L
Linus Torvalds 已提交
128 129 130 131
		return 0;

	for (i = 0; i < buflen; ++i) {
		do {
132
			c = udbg_getc();
133 134 135
			if (c == -1 && i == 0)
				return -1;

L
Linus Torvalds 已提交
136
		} while (c == 0x11 || c == 0x13);
137
		if (c == 0 || c == -1)
L
Linus Torvalds 已提交
138 139 140 141 142 143 144 145 146 147
			break;
		*p++ = c;
	}

	return i;
}

#define UDBG_BUFSIZE 256
void udbg_printf(const char *fmt, ...)
{
148
	char buf[UDBG_BUFSIZE];
L
Linus Torvalds 已提交
149 150 151 152 153 154 155 156
	va_list args;

	va_start(args, fmt);
	vsnprintf(buf, UDBG_BUFSIZE, fmt, args);
	udbg_puts(buf);
	va_end(args);
}

157 158 159 160 161 162
void __init udbg_progress(char *s, unsigned short hex)
{
	udbg_puts(s);
	udbg_puts("\n");
}

163 164 165 166 167 168 169 170 171 172 173 174
/*
 * Early boot console based on udbg
 */
static void udbg_console_write(struct console *con, const char *s,
		unsigned int n)
{
	udbg_write(s, n);
}

static struct console udbg_console = {
	.name	= "udbg",
	.write	= udbg_console_write,
175
	.flags	= CON_PRINTBUFFER | CON_ENABLED | CON_BOOT | CON_ANYTIME,
176
	.index	= 0,
177 178
};

179 180
static int early_console_initialized;

181 182 183 184
/*
 * Called by setup_system after ppc_md->probe and ppc_md->early_init.
 * Call it again after setting udbg_putc in ppc_md->setup_arch.
 */
185
void __init register_early_udbg_console(void)
186
{
187 188
	if (early_console_initialized)
		return;
189

190 191 192
	if (!udbg_putc)
		return;

193 194 195 196
	if (strstr(boot_command_line, "udbg-immortal")) {
		printk(KERN_INFO "early console immortal !\n");
		udbg_console.flags &= ~CON_BOOT;
	}
197
	early_console_initialized = 1;
198 199 200 201 202 203
	register_console(&udbg_console);
}

#if 0   /* if you want to use this as a regular output console */
console_initcall(register_udbg_console);
#endif