2 * Misc. bootloader code (almost) all platforms can use
4 * Author: Johnnie Peters <jpeters@mvista.com>
5 * Editor: Tom Rini <trini@mvista.com>
7 * Derived from arch/ppc/boot/prep/misc.c
9 * 2000-2001 (c) MontaVista, Software, Inc. This file is licensed under
10 * the terms of the GNU General Public License version 2. This program
11 * is licensed "as is" without any warranty of any kind, whether express
15 #include <stdarg.h> /* for va_ bits */
16 #include <linux/string.h>
17 #include <linux/zlib.h>
20 /* If we're on a PReP, assume we have a keyboard controller
21 * Also note, if we're not PReP, we assume you are a serial
23 #if defined(CONFIG_PPC_PREP) && defined(CONFIG_VGA_CONSOLE)
24 extern void cursor(int x, int y);
25 extern void scroll(void);
27 extern int lines, cols;
28 extern int orig_x, orig_y;
29 extern int keyb_present;
30 extern int CRT_tstc(void);
31 extern int CRT_getc(void);
33 int cursor(int x, int y) {return 0;}
40 #define keyb_present 0
41 int CRT_tstc(void) {return 0;}
42 int CRT_getc(void) {return 0;}
45 extern char *avail_ram;
46 extern char *end_avail;
49 void puts(const char *);
50 void putc(const char c);
51 void puthex(unsigned long val);
52 void gunzip(void *, int, unsigned char *, int *);
53 static int _cvt(unsigned long val, char *buf, long radix, char *digits);
55 void _vprintk(void(*putc)(const char), const char *fmt0, va_list ap);
56 unsigned char *ISA_io = NULL;
58 #if defined(CONFIG_SERIAL_CPM_CONSOLE) || defined(CONFIG_SERIAL_8250_CONSOLE) \
59 || defined(CONFIG_SERIAL_MPC52xx_CONSOLE) \
60 || defined(CONFIG_SERIAL_MPSC_CONSOLE) \
61 || defined(CONFIG_SERIAL_UARTLITE_CONSOLE)
62 extern unsigned long com_port;
64 extern int serial_tstc(unsigned long com_port);
65 extern unsigned char serial_getc(unsigned long com_port);
66 extern void serial_putc(unsigned long com_port, unsigned char c);
82 #if defined(CONFIG_SERIAL_CPM_CONSOLE) || defined(CONFIG_SERIAL_8250_CONSOLE) \
83 || defined(CONFIG_SERIAL_MPC52xx_CONSOLE) \
84 || defined(CONFIG_SERIAL_MPSC_CONSOLE) \
85 || defined(CONFIG_SERIAL_UARTLITE_CONSOLE)
87 return (CRT_tstc() || serial_tstc(com_port));
89 return (serial_tstc(com_port));
98 #if defined(CONFIG_SERIAL_CPM_CONSOLE) || defined(CONFIG_SERIAL_8250_CONSOLE) \
99 || defined(CONFIG_SERIAL_MPC52xx_CONSOLE) \
100 || defined(CONFIG_SERIAL_MPSC_CONSOLE) \
101 || defined(CONFIG_SERIAL_UARTLITE_CONSOLE)
102 if (serial_tstc(com_port))
103 return (serial_getc(com_port));
104 #endif /* serial console */
116 #if defined(CONFIG_SERIAL_CPM_CONSOLE) || defined(CONFIG_SERIAL_8250_CONSOLE) \
117 || defined(CONFIG_SERIAL_MPC52xx_CONSOLE) \
118 || defined(CONFIG_SERIAL_MPSC_CONSOLE) \
119 || defined(CONFIG_SERIAL_UARTLITE_CONSOLE)
120 serial_putc(com_port, c);
122 serial_putc(com_port, '\r');
123 #endif /* serial console */
130 if ( ++y >= lines ) {
134 } else if (c == '\r') {
136 } else if (c == '\b') {
141 vidmem [ ( x + cols * y ) * 2 ] = c;
144 if ( ++y >= lines ) {
157 void puts(const char *s)
165 while ( ( c = *s++ ) != '\0' ) {
166 #if defined(CONFIG_SERIAL_CPM_CONSOLE) || defined(CONFIG_SERIAL_8250_CONSOLE) \
167 || defined(CONFIG_SERIAL_MPC52xx_CONSOLE) \
168 || defined(CONFIG_SERIAL_MPSC_CONSOLE) \
169 || defined(CONFIG_SERIAL_UARTLITE_CONSOLE)
170 serial_putc(com_port, c);
171 if ( c == '\n' ) serial_putc(com_port, '\r');
172 #endif /* serial console */
176 if ( ++y >= lines ) {
180 } else if (c == '\b') {
185 vidmem [ ( x + cols * y ) * 2 ] = c;
188 if ( ++y >= lines ) {
206 puts("\n\n -- System halted");
211 static void *zalloc(unsigned size)
215 size = (size + 7) & -8;
217 if (avail_ram > end_avail) {
218 puts("oops... out of memory\n");
225 #define EXTRA_FIELD 4
228 #define RESERVED 0xe0
230 void gunzip(void *dst, int dstlen, unsigned char *src, int *lenp)
238 if (src[2] != Z_DEFLATED || (flags & RESERVED) != 0) {
239 puts("bad gzipped data\n");
242 if ((flags & EXTRA_FIELD) != 0)
243 i = 12 + src[10] + (src[11] << 8);
244 if ((flags & ORIG_NAME) != 0)
245 while (src[i++] != 0)
247 if ((flags & COMMENT) != 0)
248 while (src[i++] != 0)
250 if ((flags & HEAD_CRC) != 0)
253 puts("gunzip: ran out of data in header\n");
257 /* Initialize ourself. */
258 s.workspace = zalloc(zlib_inflate_workspacesize());
259 r = zlib_inflateInit2(&s, -MAX_WBITS);
261 puts("zlib_inflateInit2 returned "); puthex(r); puts("\n");
265 s.avail_in = *lenp - i;
267 s.avail_out = dstlen;
268 r = zlib_inflate(&s, Z_FINISH);
269 if (r != Z_OK && r != Z_STREAM_END) {
270 puts("inflate returned "); puthex(r); puts("\n");
273 *lenp = s.next_out - (unsigned char *) dst;
278 puthex(unsigned long val)
281 unsigned char buf[10];
283 for (i = 7; i >= 0; i--)
285 buf[i] = "0123456789ABCDEF"[val & 0x0F];
296 _printk(char const *fmt, ...)
301 _vprintk(putc, fmt, ap);
306 #define is_digit(c) ((c >= '0') && (c <= '9'))
309 _vprintk(void(*putc)(const char), const char *fmt0, va_list ap)
311 char c, sign, *cp = 0;
312 int left_prec, right_prec, zero_fill, length = 0, pad, pad_on_right;
315 while ((c = *fmt0++))
320 left_prec = right_prec = pad_on_right = 0;
336 left_prec = (left_prec * 10) + (c - '0');
345 right_prec = (right_prec * 10) + (c - '0');
350 right_prec = left_prec;
358 val = va_arg(ap, long);
367 length = _cvt(val, buf, 10, "0123456789");
370 length = _cvt(val, buf, 16, "0123456789abcdef");
373 length = _cvt(val, buf, 16, "0123456789ABCDEF");
379 cp = va_arg(ap, char *);
383 c = va_arg(ap, long /*char*/);
389 pad = left_prec - length;
444 _cvt(unsigned long val, char *buf, long radix, char *digits)
455 *cp++ = digits[val % radix];
468 _dump_buf_with_offset(unsigned char *p, int s, unsigned char *base)
471 if ((unsigned int)s > (unsigned int)p)
473 s = (unsigned int)s - (unsigned int)p;
479 _printk("%06X: ", (int)p - (int)base);
482 _printk("%06X: ", p);
484 for (i = 0; i < 16; i++)
488 _printk("%02X", p[i] & 0xFF);
493 if ((i % 2) == 1) _printk(" ");
494 if ((i % 8) == 7) _printk(" ");
497 for (i = 0; i < 16; i++)
502 if ((c < 0x20) || (c >= 0x7F)) c = '.';
516 _dump_buf(unsigned char *p, int s)
519 _dump_buf_with_offset(p, s, 0);
522 /* Very simple inb/outb routines. We declare ISA_io to be 0 above, and
523 * then modify it on platforms which need to. We do it like this
524 * because on some platforms we give inb/outb an exact location, and
525 * on others it's an offset from a given location. -- Tom
528 void ISA_init(unsigned long base)
530 ISA_io = (unsigned char *)base;
534 outb(int port, unsigned char val)
536 /* Ensure I/O operations complete */
537 __asm__ volatile("eieio");
544 /* Ensure I/O operations complete */
545 __asm__ volatile("eieio");
546 return (ISA_io[port]);