powerpc: Improve (in|out)_[bl]eXX() asm code
[linux-2.6/verdex.git] / arch / ppc / boot / common / misc-common.c
blob9589969cec725d86b1817d0248efc244ec8b73ae
1 /*
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
12 * or implied.
15 #include <stdarg.h> /* for va_ bits */
16 #include <linux/string.h>
17 #include <linux/zlib.h>
18 #include "nonstdio.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
22 * console - Tom */
23 #if defined(CONFIG_PPC_PREP) && defined(CONFIG_VGA_CONSOLE)
24 extern void cursor(int x, int y);
25 extern void scroll(void);
26 extern char *vidmem;
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);
32 #else
33 int cursor(int x, int y) {return 0;}
34 void scroll(void) {}
35 char vidmem[1];
36 #define lines 0
37 #define cols 0
38 int orig_x = 0;
39 int orig_y = 0;
40 #define keyb_present 0
41 int CRT_tstc(void) {return 0;}
42 int CRT_getc(void) {return 0;}
43 #endif
45 extern char *avail_ram;
46 extern char *end_avail;
47 extern char _end[];
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);
67 #endif
69 void pause(void)
71 puts("pause\n");
74 void exit(void)
76 puts("exit\n");
77 while(1);
80 int tstc(void)
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)
86 if(keyb_present)
87 return (CRT_tstc() || serial_tstc(com_port));
88 else
89 return (serial_tstc(com_port));
90 #else
91 return CRT_tstc();
92 #endif
95 int getc(void)
97 while (1) {
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 */
105 if (keyb_present)
106 if(CRT_tstc())
107 return (CRT_getc());
111 void
112 putc(const char c)
114 int x,y;
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);
121 if ( c == '\n' )
122 serial_putc(com_port, '\r');
123 #endif /* serial console */
125 x = orig_x;
126 y = orig_y;
128 if ( c == '\n' ) {
129 x = 0;
130 if ( ++y >= lines ) {
131 scroll();
132 y--;
134 } else if (c == '\r') {
135 x = 0;
136 } else if (c == '\b') {
137 if (x > 0) {
138 x--;
140 } else {
141 vidmem [ ( x + cols * y ) * 2 ] = c;
142 if ( ++x >= cols ) {
143 x = 0;
144 if ( ++y >= lines ) {
145 scroll();
146 y--;
151 cursor(x, y);
153 orig_x = x;
154 orig_y = y;
157 void puts(const char *s)
159 int x,y;
160 char c;
162 x = orig_x;
163 y = orig_y;
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 */
174 if ( c == '\n' ) {
175 x = 0;
176 if ( ++y >= lines ) {
177 scroll();
178 y--;
180 } else if (c == '\b') {
181 if (x > 0) {
182 x--;
184 } else {
185 vidmem [ ( x + cols * y ) * 2 ] = c;
186 if ( ++x >= cols ) {
187 x = 0;
188 if ( ++y >= lines ) {
189 scroll();
190 y--;
196 cursor(x, y);
198 orig_x = x;
199 orig_y = y;
202 void error(char *x)
204 puts("\n\n");
205 puts(x);
206 puts("\n\n -- System halted");
208 while(1); /* Halt */
211 static void *zalloc(unsigned size)
213 void *p = avail_ram;
215 size = (size + 7) & -8;
216 avail_ram += size;
217 if (avail_ram > end_avail) {
218 puts("oops... out of memory\n");
219 pause();
221 return p;
224 #define HEAD_CRC 2
225 #define EXTRA_FIELD 4
226 #define ORIG_NAME 8
227 #define COMMENT 0x10
228 #define RESERVED 0xe0
230 void gunzip(void *dst, int dstlen, unsigned char *src, int *lenp)
232 z_stream s;
233 int r, i, flags;
235 /* skip header */
236 i = 10;
237 flags = src[3];
238 if (src[2] != Z_DEFLATED || (flags & RESERVED) != 0) {
239 puts("bad gzipped data\n");
240 exit();
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)
251 i += 2;
252 if (i >= *lenp) {
253 puts("gunzip: ran out of data in header\n");
254 exit();
257 /* Initialize ourself. */
258 s.workspace = zalloc(zlib_inflate_workspacesize());
259 r = zlib_inflateInit2(&s, -MAX_WBITS);
260 if (r != Z_OK) {
261 puts("zlib_inflateInit2 returned "); puthex(r); puts("\n");
262 exit();
264 s.next_in = src + i;
265 s.avail_in = *lenp - i;
266 s.next_out = dst;
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");
271 exit();
273 *lenp = s.next_out - (unsigned char *) dst;
274 zlib_inflateEnd(&s);
277 void
278 puthex(unsigned long val)
281 unsigned char buf[10];
282 int i;
283 for (i = 7; i >= 0; i--)
285 buf[i] = "0123456789ABCDEF"[val & 0x0F];
286 val >>= 4;
288 buf[8] = '\0';
289 puts(buf);
292 #define FALSE 0
293 #define TRUE 1
295 void
296 _printk(char const *fmt, ...)
298 va_list ap;
300 va_start(ap, fmt);
301 _vprintk(putc, fmt, ap);
302 va_end(ap);
303 return;
306 #define is_digit(c) ((c >= '0') && (c <= '9'))
308 void
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;
313 char buf[32];
314 long val;
315 while ((c = *fmt0++))
317 if (c == '%')
319 c = *fmt0++;
320 left_prec = right_prec = pad_on_right = 0;
321 if (c == '-')
323 c = *fmt0++;
324 pad_on_right++;
326 if (c == '0')
328 zero_fill = TRUE;
329 c = *fmt0++;
330 } else
332 zero_fill = FALSE;
334 while (is_digit(c))
336 left_prec = (left_prec * 10) + (c - '0');
337 c = *fmt0++;
339 if (c == '.')
341 c = *fmt0++;
342 zero_fill++;
343 while (is_digit(c))
345 right_prec = (right_prec * 10) + (c - '0');
346 c = *fmt0++;
348 } else
350 right_prec = left_prec;
352 sign = '\0';
353 switch (c)
355 case 'd':
356 case 'x':
357 case 'X':
358 val = va_arg(ap, long);
359 switch (c)
361 case 'd':
362 if (val < 0)
364 sign = '-';
365 val = -val;
367 length = _cvt(val, buf, 10, "0123456789");
368 break;
369 case 'x':
370 length = _cvt(val, buf, 16, "0123456789abcdef");
371 break;
372 case 'X':
373 length = _cvt(val, buf, 16, "0123456789ABCDEF");
374 break;
376 cp = buf;
377 break;
378 case 's':
379 cp = va_arg(ap, char *);
380 length = strlen(cp);
381 break;
382 case 'c':
383 c = va_arg(ap, long /*char*/);
384 (*putc)(c);
385 continue;
386 default:
387 (*putc)('?');
389 pad = left_prec - length;
390 if (sign != '\0')
392 pad--;
394 if (zero_fill)
396 c = '0';
397 if (sign != '\0')
399 (*putc)(sign);
400 sign = '\0';
402 } else
404 c = ' ';
406 if (!pad_on_right)
408 while (pad-- > 0)
410 (*putc)(c);
413 if (sign != '\0')
415 (*putc)(sign);
417 while (length-- > 0)
419 (*putc)(c = *cp++);
420 if (c == '\n')
422 (*putc)('\r');
425 if (pad_on_right)
427 while (pad-- > 0)
429 (*putc)(c);
432 } else
434 (*putc)(c);
435 if (c == '\n')
437 (*putc)('\r');
444 _cvt(unsigned long val, char *buf, long radix, char *digits)
446 char temp[80];
447 char *cp = temp;
448 int length = 0;
449 if (val == 0)
450 { /* Special case */
451 *cp++ = '0';
452 } else
453 while (val)
455 *cp++ = digits[val % radix];
456 val /= radix;
458 while (cp != temp)
460 *buf++ = *--cp;
461 length++;
463 *buf = '\0';
464 return (length);
467 void
468 _dump_buf_with_offset(unsigned char *p, int s, unsigned char *base)
470 int i, c;
471 if ((unsigned int)s > (unsigned int)p)
473 s = (unsigned int)s - (unsigned int)p;
475 while (s > 0)
477 if (base)
479 _printk("%06X: ", (int)p - (int)base);
480 } else
482 _printk("%06X: ", p);
484 for (i = 0; i < 16; i++)
486 if (i < s)
488 _printk("%02X", p[i] & 0xFF);
489 } else
491 _printk(" ");
493 if ((i % 2) == 1) _printk(" ");
494 if ((i % 8) == 7) _printk(" ");
496 _printk(" |");
497 for (i = 0; i < 16; i++)
499 if (i < s)
501 c = p[i] & 0xFF;
502 if ((c < 0x20) || (c >= 0x7F)) c = '.';
503 } else
505 c = ' ';
507 _printk("%c", c);
509 _printk("|\n");
510 s -= 16;
511 p += 16;
515 void
516 _dump_buf(unsigned char *p, int s)
518 _printk("\n");
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;
533 void
534 outb(int port, unsigned char val)
536 /* Ensure I/O operations complete */
537 __asm__ volatile("eieio");
538 ISA_io[port] = val;
541 unsigned char
542 inb(int port)
544 /* Ensure I/O operations complete */
545 __asm__ volatile("eieio");
546 return (ISA_io[port]);
550 * Local variables:
551 * c-indent-level: 8
552 * c-basic-offset: 8
553 * tab-width: 8
554 * End: