2 * arch/ppc/boot/common/misc-common.c
4 * Misc. bootloader code (almost) all platforms can use
6 * Author: Johnnie Peters <jpeters@mvista.com>
7 * Editor: Tom Rini <trini@mvista.com>
9 * Derived from arch/ppc/boot/prep/misc.c
11 * 2000-2001 (c) MontaVista, Software, Inc. This file is licensed under
12 * the terms of the GNU General Public License version 2. This program
13 * is licensed "as is" without any warranty of any kind, whether express
17 #include <stdarg.h> /* for va_ bits */
18 #include <linux/config.h>
19 #include <linux/string.h>
20 #include <linux/zlib.h>
23 /* If we're on a PReP, assume we have a keyboard controller
24 * Also note, if we're not PReP, we assume you are a serial
26 #if defined(CONFIG_PPC_PREP) && defined(CONFIG_VGA_CONSOLE)
27 extern void cursor(int x
, int y
);
28 extern void scroll(void);
30 extern int lines
, cols
;
31 extern int orig_x
, orig_y
;
32 extern int keyb_present
;
33 extern int CRT_tstc(void);
34 extern int CRT_getc(void);
36 int cursor(int x
, int y
) {return 0;}
43 #define keyb_present 0
44 int CRT_tstc(void) {return 0;}
45 int CRT_getc(void) {return 0;}
48 extern char *avail_ram
;
49 extern char *end_avail
;
52 void puts(const char *);
53 void putc(const char c
);
54 void puthex(unsigned long val
);
55 void gunzip(void *, int, unsigned char *, int *);
56 static int _cvt(unsigned long val
, char *buf
, long radix
, char *digits
);
58 void _vprintk(void(*putc
)(const char), const char *fmt0
, va_list ap
);
59 unsigned char *ISA_io
= NULL
;
61 #if defined(CONFIG_SERIAL_CPM_CONSOLE) || defined(CONFIG_SERIAL_8250_CONSOLE) \
62 || defined(CONFIG_SERIAL_MPC52xx_CONSOLE) \
63 || defined(CONFIG_SERIAL_MPSC_CONSOLE)
64 extern unsigned long com_port
;
66 extern int serial_tstc(unsigned long com_port
);
67 extern unsigned char serial_getc(unsigned long com_port
);
68 extern void serial_putc(unsigned long com_port
, unsigned char c
);
84 #if defined(CONFIG_SERIAL_CPM_CONSOLE) || defined(CONFIG_SERIAL_8250_CONSOLE) \
85 || defined(CONFIG_SERIAL_MPC52xx_CONSOLE) \
86 || defined(CONFIG_SERIAL_MPSC_CONSOLE)
88 return (CRT_tstc() || serial_tstc(com_port
));
90 return (serial_tstc(com_port
));
99 #if defined(CONFIG_SERIAL_CPM_CONSOLE) || defined(CONFIG_SERIAL_8250_CONSOLE) \
100 || defined(CONFIG_SERIAL_MPC52xx_CONSOLE) \
101 || defined(CONFIG_SERIAL_MPSC_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 serial_putc(com_port
, c
);
121 serial_putc(com_port
, '\r');
122 #endif /* serial console */
129 if ( ++y
>= lines
) {
133 } else if (c
== '\r') {
135 } else if (c
== '\b') {
140 vidmem
[ ( x
+ cols
* y
) * 2 ] = c
;
143 if ( ++y
>= lines
) {
156 void puts(const char *s
)
164 while ( ( c
= *s
++ ) != '\0' ) {
165 #if defined(CONFIG_SERIAL_CPM_CONSOLE) || defined(CONFIG_SERIAL_8250_CONSOLE) \
166 || defined(CONFIG_SERIAL_MPC52xx_CONSOLE) \
167 || defined(CONFIG_SERIAL_MPSC_CONSOLE)
168 serial_putc(com_port
, c
);
169 if ( c
== '\n' ) serial_putc(com_port
, '\r');
170 #endif /* serial console */
174 if ( ++y
>= lines
) {
178 } else if (c
== '\b') {
183 vidmem
[ ( x
+ cols
* y
) * 2 ] = c
;
186 if ( ++y
>= lines
) {
204 puts("\n\n -- System halted");
209 static void *zalloc(unsigned size
)
213 size
= (size
+ 7) & -8;
215 if (avail_ram
> end_avail
) {
216 puts("oops... out of memory\n");
223 #define EXTRA_FIELD 4
226 #define RESERVED 0xe0
228 void gunzip(void *dst
, int dstlen
, unsigned char *src
, int *lenp
)
236 if (src
[2] != Z_DEFLATED
|| (flags
& RESERVED
) != 0) {
237 puts("bad gzipped data\n");
240 if ((flags
& EXTRA_FIELD
) != 0)
241 i
= 12 + src
[10] + (src
[11] << 8);
242 if ((flags
& ORIG_NAME
) != 0)
243 while (src
[i
++] != 0)
245 if ((flags
& COMMENT
) != 0)
246 while (src
[i
++] != 0)
248 if ((flags
& HEAD_CRC
) != 0)
251 puts("gunzip: ran out of data in header\n");
255 /* Initialize ourself. */
256 s
.workspace
= zalloc(zlib_inflate_workspacesize());
257 r
= zlib_inflateInit2(&s
, -MAX_WBITS
);
259 puts("zlib_inflateInit2 returned "); puthex(r
); puts("\n");
263 s
.avail_in
= *lenp
- i
;
265 s
.avail_out
= dstlen
;
266 r
= zlib_inflate(&s
, Z_FINISH
);
267 if (r
!= Z_OK
&& r
!= Z_STREAM_END
) {
268 puts("inflate returned "); puthex(r
); puts("\n");
271 *lenp
= s
.next_out
- (unsigned char *) dst
;
276 puthex(unsigned long val
)
279 unsigned char buf
[10];
281 for (i
= 7; i
>= 0; i
--)
283 buf
[i
] = "0123456789ABCDEF"[val
& 0x0F];
294 _printk(char const *fmt
, ...)
299 _vprintk(putc
, fmt
, ap
);
304 #define is_digit(c) ((c >= '0') && (c <= '9'))
307 _vprintk(void(*putc
)(const char), const char *fmt0
, va_list ap
)
309 char c
, sign
, *cp
= 0;
310 int left_prec
, right_prec
, zero_fill
, length
= 0, pad
, pad_on_right
;
313 while ((c
= *fmt0
++))
318 left_prec
= right_prec
= pad_on_right
= 0;
334 left_prec
= (left_prec
* 10) + (c
- '0');
343 right_prec
= (right_prec
* 10) + (c
- '0');
348 right_prec
= left_prec
;
356 val
= va_arg(ap
, long);
365 length
= _cvt(val
, buf
, 10, "0123456789");
368 length
= _cvt(val
, buf
, 16, "0123456789abcdef");
371 length
= _cvt(val
, buf
, 16, "0123456789ABCDEF");
377 cp
= va_arg(ap
, char *);
381 c
= va_arg(ap
, long /*char*/);
387 pad
= left_prec
- length
;
442 _cvt(unsigned long val
, char *buf
, long radix
, char *digits
)
453 *cp
++ = digits
[val
% radix
];
466 _dump_buf_with_offset(unsigned char *p
, int s
, unsigned char *base
)
469 if ((unsigned int)s
> (unsigned int)p
)
471 s
= (unsigned int)s
- (unsigned int)p
;
477 _printk("%06X: ", (int)p
- (int)base
);
480 _printk("%06X: ", p
);
482 for (i
= 0; i
< 16; i
++)
486 _printk("%02X", p
[i
] & 0xFF);
491 if ((i
% 2) == 1) _printk(" ");
492 if ((i
% 8) == 7) _printk(" ");
495 for (i
= 0; i
< 16; i
++)
500 if ((c
< 0x20) || (c
>= 0x7F)) c
= '.';
514 _dump_buf(unsigned char *p
, int s
)
517 _dump_buf_with_offset(p
, s
, 0);
520 /* Very simple inb/outb routines. We declare ISA_io to be 0 above, and
521 * then modify it on platforms which need to. We do it like this
522 * because on some platforms we give inb/outb an exact location, and
523 * on others it's an offset from a given location. -- Tom
526 void ISA_init(unsigned long base
)
528 ISA_io
= (unsigned char *)base
;
532 outb(int port
, unsigned char val
)
534 /* Ensure I/O operations complete */
535 __asm__
volatile("eieio");
542 /* Ensure I/O operations complete */
543 __asm__
volatile("eieio");
544 return (ISA_io
[port
]);