diff options
| author | H. Peter Anvin <hpa@zytor.com> | 2007-07-11 15:18:45 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-12 13:55:55 -0400 |
| commit | 1543610ad79ac4cc61c26f8a29c84e4229faa9a3 (patch) | |
| tree | c7aac5c00be2e18eb2e966c3f12e7a8b69d00eb7 /arch | |
| parent | e44c22f65f96217692e1a915032fbe7d22236751 (diff) | |
Console-writing code for the new x86 setup code
This implements writing text to the console, including printf().
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch')
| -rw-r--r-- | arch/i386/boot/printf.c | 307 | ||||
| -rw-r--r-- | arch/i386/boot/tty.c | 112 |
2 files changed, 419 insertions, 0 deletions
diff --git a/arch/i386/boot/printf.c b/arch/i386/boot/printf.c new file mode 100644 index 000000000000..1a09f9309d3c --- /dev/null +++ b/arch/i386/boot/printf.c | |||
| @@ -0,0 +1,307 @@ | |||
| 1 | /* -*- linux-c -*- ------------------------------------------------------- * | ||
| 2 | * | ||
| 3 | * Copyright (C) 1991, 1992 Linus Torvalds | ||
| 4 | * Copyright 2007 rPath, Inc. - All Rights Reserved | ||
| 5 | * | ||
| 6 | * This file is part of the Linux kernel, and is made available under | ||
| 7 | * the terms of the GNU General Public License version 2. | ||
| 8 | * | ||
| 9 | * ----------------------------------------------------------------------- */ | ||
| 10 | |||
| 11 | /* | ||
| 12 | * arch/i386/boot/printf.c | ||
| 13 | * | ||
| 14 | * Oh, it's a waste of space, but oh-so-yummy for debugging. This | ||
| 15 | * version of printf() does not include 64-bit support. "Live with | ||
| 16 | * it." | ||
| 17 | * | ||
| 18 | */ | ||
| 19 | |||
| 20 | #include "boot.h" | ||
| 21 | |||
| 22 | static int skip_atoi(const char **s) | ||
| 23 | { | ||
| 24 | int i = 0; | ||
| 25 | |||
| 26 | while (isdigit(**s)) | ||
| 27 | i = i * 10 + *((*s)++) - '0'; | ||
| 28 | return i; | ||
| 29 | } | ||
| 30 | |||
| 31 | #define ZEROPAD 1 /* pad with zero */ | ||
| 32 | #define SIGN 2 /* unsigned/signed long */ | ||
| 33 | #define PLUS 4 /* show plus */ | ||
| 34 | #define SPACE 8 /* space if plus */ | ||
| 35 | #define LEFT 16 /* left justified */ | ||
| 36 | #define SPECIAL 32 /* 0x */ | ||
| 37 | #define LARGE 64 /* use 'ABCDEF' instead of 'abcdef' */ | ||
| 38 | |||
| 39 | #define do_div(n,base) ({ \ | ||
| 40 | int __res; \ | ||
| 41 | __res = ((unsigned long) n) % (unsigned) base; \ | ||
| 42 | n = ((unsigned long) n) / (unsigned) base; \ | ||
| 43 | __res; }) | ||
| 44 | |||
| 45 | static char *number(char *str, long num, int base, int size, int precision, | ||
| 46 | int type) | ||
| 47 | { | ||
| 48 | char c, sign, tmp[66]; | ||
| 49 | const char *digits = "0123456789abcdefghijklmnopqrstuvwxyz"; | ||
| 50 | int i; | ||
| 51 | |||
| 52 | if (type & LARGE) | ||
| 53 | digits = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"; | ||
| 54 | if (type & LEFT) | ||
| 55 | type &= ~ZEROPAD; | ||
| 56 | if (base < 2 || base > 36) | ||
| 57 | return 0; | ||
| 58 | c = (type & ZEROPAD) ? '0' : ' '; | ||
| 59 | sign = 0; | ||
| 60 | if (type & SIGN) { | ||
| 61 | if (num < 0) { | ||
| 62 | sign = '-'; | ||
| 63 | num = -num; | ||
| 64 | size--; | ||
| 65 | } else if (type & PLUS) { | ||
| 66 | sign = '+'; | ||
| 67 | size--; | ||
| 68 | } else if (type & SPACE) { | ||
| 69 | sign = ' '; | ||
| 70 | size--; | ||
| 71 | } | ||
| 72 | } | ||
| 73 | if (type & SPECIAL) { | ||
| 74 | if (base == 16) | ||
| 75 | size -= 2; | ||
| 76 | else if (base == 8) | ||
| 77 | size--; | ||
| 78 | } | ||
| 79 | i = 0; | ||
| 80 | if (num == 0) | ||
| 81 | tmp[i++] = '0'; | ||
| 82 | else | ||
| 83 | while (num != 0) | ||
| 84 | tmp[i++] = digits[do_div(num, base)]; | ||
| 85 | if (i > precision) | ||
| 86 | precision = i; | ||
| 87 | size -= precision; | ||
| 88 | if (!(type & (ZEROPAD + LEFT))) | ||
| 89 | while (size-- > 0) | ||
| 90 | *str++ = ' '; | ||
| 91 | if (sign) | ||
| 92 | *str++ = sign; | ||
| 93 | if (type & SPECIAL) { | ||
| 94 | if (base == 8) | ||
| 95 | *str++ = '0'; | ||
| 96 | else if (base == 16) { | ||
| 97 | *str++ = '0'; | ||
| 98 | *str++ = digits[33]; | ||
| 99 | } | ||
| 100 | } | ||
| 101 | if (!(type & LEFT)) | ||
| 102 | while (size-- > 0) | ||
| 103 | *str++ = c; | ||
| 104 | while (i < precision--) | ||
| 105 | *str++ = '0'; | ||
| 106 | while (i-- > 0) | ||
| 107 | *str++ = tmp[i]; | ||
| 108 | while (size-- > 0) | ||
| 109 | *str++ = ' '; | ||
| 110 | return str; | ||
| 111 | } | ||
| 112 | |||
| 113 | int vsprintf(char *buf, const char *fmt, va_list args) | ||
| 114 | { | ||
| 115 | int len; | ||
| 116 | unsigned long num; | ||
| 117 | int i, base; | ||
| 118 | char *str; | ||
| 119 | const char *s; | ||
| 120 | |||
| 121 | int flags; /* flags to number() */ | ||
| 122 | |||
| 123 | int field_width; /* width of output field */ | ||
| 124 | int precision; /* min. # of digits for integers; max | ||
| 125 | number of chars for from string */ | ||
| 126 | int qualifier; /* 'h', 'l', or 'L' for integer fields */ | ||
| 127 | |||
| 128 | for (str = buf; *fmt; ++fmt) { | ||
| 129 | if (*fmt != '%') { | ||
| 130 | *str++ = *fmt; | ||
| 131 | continue; | ||
| 132 | } | ||
| 133 | |||
| 134 | /* process flags */ | ||
| 135 | flags = 0; | ||
| 136 | repeat: | ||
| 137 | ++fmt; /* this also skips first '%' */ | ||
| 138 | switch (*fmt) { | ||
| 139 | case '-': | ||
| 140 | flags |= LEFT; | ||
| 141 | goto repeat; | ||
| 142 | case '+': | ||
| 143 | flags |= PLUS; | ||
| 144 | goto repeat; | ||
| 145 | case ' ': | ||
| 146 | flags |= SPACE; | ||
| 147 | goto repeat; | ||
| 148 | case '#': | ||
| 149 | flags |= SPECIAL; | ||
| 150 | goto repeat; | ||
| 151 | case '0': | ||
| 152 | flags |= ZEROPAD; | ||
| 153 | goto repeat; | ||
| 154 | } | ||
| 155 | |||
| 156 | /* get field width */ | ||
| 157 | field_width = -1; | ||
| 158 | if (isdigit(*fmt)) | ||
| 159 | field_width = skip_atoi(&fmt); | ||
| 160 | else if (*fmt == '*') { | ||
| 161 | ++fmt; | ||
| 162 | /* it's the next argument */ | ||
| 163 | field_width = va_arg(args, int); | ||
| 164 | if (field_width < 0) { | ||
| 165 | field_width = -field_width; | ||
| 166 | flags |= LEFT; | ||
| 167 | } | ||
| 168 | } | ||
| 169 | |||
| 170 | /* get the precision */ | ||
| 171 | precision = -1; | ||
| 172 | if (*fmt == '.') { | ||
| 173 | ++fmt; | ||
| 174 | if (isdigit(*fmt)) | ||
| 175 | precision = skip_atoi(&fmt); | ||
| 176 | else if (*fmt == '*') { | ||
| 177 | ++fmt; | ||
| 178 | /* it's the next argument */ | ||
| 179 | precision = va_arg(args, int); | ||
| 180 | } | ||
| 181 | if (precision < 0) | ||
| 182 | precision = 0; | ||
| 183 | } | ||
| 184 | |||
| 185 | /* get the conversion qualifier */ | ||
| 186 | qualifier = -1; | ||
| 187 | if (*fmt == 'h' || *fmt == 'l' || *fmt == 'L') { | ||
| 188 | qualifier = *fmt; | ||
| 189 | ++fmt; | ||
| 190 | } | ||
| 191 | |||
| 192 | /* default base */ | ||
| 193 | base = 10; | ||
| 194 | |||
| 195 | switch (*fmt) { | ||
| 196 | case 'c': | ||
| 197 | if (!(flags & LEFT)) | ||
| 198 | while (--field_width > 0) | ||
| 199 | *str++ = ' '; | ||
| 200 | *str++ = (unsigned char)va_arg(args, int); | ||
| 201 | while (--field_width > 0) | ||
| 202 | *str++ = ' '; | ||
| 203 | continue; | ||
| 204 | |||
| 205 | case 's': | ||
| 206 | s = va_arg(args, char *); | ||
| 207 | len = strnlen(s, precision); | ||
| 208 | |||
| 209 | if (!(flags & LEFT)) | ||
| 210 | while (len < field_width--) | ||
| 211 | *str++ = ' '; | ||
| 212 | for (i = 0; i < len; ++i) | ||
| 213 | *str++ = *s++; | ||
| 214 | while (len < field_width--) | ||
| 215 | *str++ = ' '; | ||
| 216 | continue; | ||
| 217 | |||
| 218 | case 'p': | ||
| 219 | if (field_width == -1) { | ||
| 220 | field_width = 2 * sizeof(void *); | ||
| 221 | flags |= ZEROPAD; | ||
| 222 | } | ||
| 223 | str = number(str, | ||
| 224 | (unsigned long)va_arg(args, void *), 16, | ||
| 225 | field_width, precision, flags); | ||
| 226 | continue; | ||
| 227 | |||
| 228 | case 'n': | ||
| 229 | if (qualifier == 'l') { | ||
| 230 | long *ip = va_arg(args, long *); | ||
| 231 | *ip = (str - buf); | ||
| 232 | } else { | ||
| 233 | int *ip = va_arg(args, int *); | ||
| 234 | *ip = (str - buf); | ||
| 235 | } | ||
| 236 | continue; | ||
| 237 | |||
| 238 | case '%': | ||
| 239 | *str++ = '%'; | ||
| 240 | continue; | ||
| 241 | |||
| 242 | /* integer number formats - set up the flags and "break" */ | ||
| 243 | case 'o': | ||
| 244 | base = 8; | ||
| 245 | break; | ||
| 246 | |||
| 247 | case 'X': | ||
| 248 | flags |= LARGE; | ||
| 249 | case 'x': | ||
| 250 | base = 16; | ||
| 251 | break; | ||
| 252 | |||
| 253 | case 'd': | ||
| 254 | case 'i': | ||
| 255 | flags |= SIGN; | ||
| 256 | case 'u': | ||
| 257 | break; | ||
| 258 | |||
| 259 | default: | ||
| 260 | *str++ = '%'; | ||
| 261 | if (*fmt) | ||
| 262 | *str++ = *fmt; | ||
| 263 | else | ||
| 264 | --fmt; | ||
| 265 | continue; | ||
| 266 | } | ||
| 267 | if (qualifier == 'l') | ||
| 268 | num = va_arg(args, unsigned long); | ||
| 269 | else if (qualifier == 'h') { | ||
| 270 | num = (unsigned short)va_arg(args, int); | ||
| 271 | if (flags & SIGN) | ||
| 272 | num = (short)num; | ||
| 273 | } else if (flags & SIGN) | ||
| 274 | num = va_arg(args, int); | ||
| 275 | else | ||
| 276 | num = va_arg(args, unsigned int); | ||
| 277 | str = number(str, num, base, field_width, precision, flags); | ||
| 278 | } | ||
| 279 | *str = '\0'; | ||
| 280 | return str - buf; | ||
| 281 | } | ||
| 282 | |||
| 283 | int sprintf(char *buf, const char *fmt, ...) | ||
| 284 | { | ||
| 285 | va_list args; | ||
| 286 | int i; | ||
| 287 | |||
| 288 | va_start(args, fmt); | ||
| 289 | i = vsprintf(buf, fmt, args); | ||
| 290 | va_end(args); | ||
| 291 | return i; | ||
| 292 | } | ||
| 293 | |||
| 294 | int printf(const char *fmt, ...) | ||
| 295 | { | ||
| 296 | char printf_buf[1024]; | ||
| 297 | va_list args; | ||
| 298 | int printed; | ||
| 299 | |||
| 300 | va_start(args, fmt); | ||
| 301 | printed = vsprintf(printf_buf, fmt, args); | ||
| 302 | va_end(args); | ||
| 303 | |||
| 304 | puts(printf_buf); | ||
| 305 | |||
| 306 | return printed; | ||
| 307 | } | ||
diff --git a/arch/i386/boot/tty.c b/arch/i386/boot/tty.c new file mode 100644 index 000000000000..a8db78736b02 --- /dev/null +++ b/arch/i386/boot/tty.c | |||
| @@ -0,0 +1,112 @@ | |||
| 1 | /* -*- linux-c -*- ------------------------------------------------------- * | ||
| 2 | * | ||
| 3 | * Copyright (C) 1991, 1992 Linus Torvalds | ||
| 4 | * Copyright 2007 rPath, Inc. - All Rights Reserved | ||
| 5 | * | ||
| 6 | * This file is part of the Linux kernel, and is made available under | ||
| 7 | * the terms of the GNU General Public License version 2. | ||
| 8 | * | ||
| 9 | * ----------------------------------------------------------------------- */ | ||
| 10 | |||
| 11 | /* | ||
| 12 | * arch/i386/boot/tty.c | ||
| 13 | * | ||
| 14 | * Very simple screen I/O | ||
| 15 | * XXX: Probably should add very simple serial I/O? | ||
| 16 | */ | ||
| 17 | |||
| 18 | #include "boot.h" | ||
| 19 | |||
| 20 | /* | ||
| 21 | * These functions are in .inittext so they can be used to signal | ||
| 22 | * error during initialization. | ||
| 23 | */ | ||
| 24 | |||
| 25 | void __attribute__((section(".inittext"))) putchar(int ch) | ||
| 26 | { | ||
| 27 | unsigned char c = ch; | ||
| 28 | |||
| 29 | if (c == '\n') | ||
| 30 | putchar('\r'); /* \n -> \r\n */ | ||
| 31 | |||
| 32 | /* int $0x10 is known to have bugs involving touching registers | ||
| 33 | it shouldn't. Be extra conservative... */ | ||
| 34 | asm volatile("pushal; int $0x10; popal" | ||
| 35 | : : "b" (0x0007), "c" (0x0001), "a" (0x0e00|ch)); | ||
| 36 | } | ||
| 37 | |||
| 38 | void __attribute__((section(".inittext"))) puts(const char *str) | ||
| 39 | { | ||
| 40 | int n = 0; | ||
| 41 | while (*str) { | ||
| 42 | putchar(*str++); | ||
| 43 | n++; | ||
| 44 | } | ||
| 45 | } | ||
| 46 | |||
| 47 | /* | ||
| 48 | * Read the CMOS clock through the BIOS, and return the | ||
| 49 | * seconds in BCD. | ||
| 50 | */ | ||
| 51 | |||
| 52 | static u8 gettime(void) | ||
| 53 | { | ||
| 54 | u16 ax = 0x0200; | ||
| 55 | u16 cx, dx; | ||
| 56 | |||
| 57 | asm("int $0x1a" | ||
| 58 | : "+a" (ax), "=c" (cx), "=d" (dx) | ||
| 59 | : : "ebx", "esi", "edi"); | ||
| 60 | |||
| 61 | return dx >> 8; | ||
| 62 | } | ||
| 63 | |||
| 64 | /* | ||
| 65 | * Read from the keyboard | ||
| 66 | */ | ||
| 67 | int getchar(void) | ||
| 68 | { | ||
| 69 | u16 ax = 0; | ||
| 70 | asm("int $0x16" : "+a" (ax)); | ||
| 71 | |||
| 72 | return ax & 0xff; | ||
| 73 | } | ||
| 74 | |||
| 75 | static int kbd_pending(void) | ||
| 76 | { | ||
| 77 | u8 pending; | ||
| 78 | asm("int $0x16; setnz %0" | ||
| 79 | : "=rm" (pending) | ||
| 80 | : "a" (0x0100)); | ||
| 81 | return pending; | ||
| 82 | } | ||
| 83 | |||
| 84 | void kbd_flush(void) | ||
| 85 | { | ||
| 86 | for (;;) { | ||
| 87 | if (!kbd_pending()) | ||
| 88 | break; | ||
| 89 | getchar(); | ||
| 90 | } | ||
| 91 | } | ||
| 92 | |||
| 93 | int getchar_timeout(void) | ||
| 94 | { | ||
| 95 | int cnt = 30; | ||
| 96 | int t0, t1; | ||
| 97 | |||
| 98 | t0 = gettime(); | ||
| 99 | |||
| 100 | while (cnt) { | ||
| 101 | if (kbd_pending()) | ||
| 102 | return getchar(); | ||
| 103 | |||
| 104 | t1 = gettime(); | ||
| 105 | if (t0 != t1) { | ||
| 106 | cnt--; | ||
| 107 | t0 = t1; | ||
| 108 | } | ||
| 109 | } | ||
| 110 | |||
| 111 | return 0; /* Timeout! */ | ||
| 112 | } | ||
