watchdog: Drop references to H8300 architecture
[linux-2.6/btrfs-unstable.git] / arch / powerpc / xmon / nonstdio.c
blobbce3dcfe50583440f09e7229e08305559acc12f9
1 /*
2 * Copyright (C) 1996-2005 Paul Mackerras.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
8 */
9 #include <linux/string.h>
10 #include <asm/udbg.h>
11 #include <asm/time.h>
12 #include "nonstdio.h"
15 static int xmon_write(const void *ptr, int nb)
17 return udbg_write(ptr, nb);
20 static int xmon_readchar(void)
22 if (udbg_getc)
23 return udbg_getc();
24 return -1;
27 int xmon_putchar(int c)
29 char ch = c;
31 if (c == '\n')
32 xmon_putchar('\r');
33 return xmon_write(&ch, 1) == 1? c: -1;
36 static char line[256];
37 static char *lineptr;
38 static int lineleft;
40 static int xmon_getchar(void)
42 int c;
44 if (lineleft == 0) {
45 lineptr = line;
46 for (;;) {
47 c = xmon_readchar();
48 if (c == -1 || c == 4)
49 break;
50 if (c == '\r' || c == '\n') {
51 *lineptr++ = '\n';
52 xmon_putchar('\n');
53 break;
55 switch (c) {
56 case 0177:
57 case '\b':
58 if (lineptr > line) {
59 xmon_putchar('\b');
60 xmon_putchar(' ');
61 xmon_putchar('\b');
62 --lineptr;
64 break;
65 case 'U' & 0x1F:
66 while (lineptr > line) {
67 xmon_putchar('\b');
68 xmon_putchar(' ');
69 xmon_putchar('\b');
70 --lineptr;
72 break;
73 default:
74 if (lineptr >= &line[sizeof(line) - 1])
75 xmon_putchar('\a');
76 else {
77 xmon_putchar(c);
78 *lineptr++ = c;
82 lineleft = lineptr - line;
83 lineptr = line;
85 if (lineleft == 0)
86 return -1;
87 --lineleft;
88 return *lineptr++;
91 char *xmon_gets(char *str, int nb)
93 char *p;
94 int c;
96 for (p = str; p < str + nb - 1; ) {
97 c = xmon_getchar();
98 if (c == -1) {
99 if (p == str)
100 return NULL;
101 break;
103 *p++ = c;
104 if (c == '\n')
105 break;
107 *p = 0;
108 return str;
111 void xmon_printf(const char *format, ...)
113 va_list args;
114 static char xmon_outbuf[1024];
115 int rc, n;
117 va_start(args, format);
118 n = vsnprintf(xmon_outbuf, sizeof(xmon_outbuf), format, args);
119 va_end(args);
121 rc = xmon_write(xmon_outbuf, n);
123 if (n && rc == 0) {
124 /* No udbg hooks, fallback to printk() - dangerous */
125 printk(xmon_outbuf);
129 void xmon_puts(const char *str)
131 xmon_write(str, strlen(str));