1 #include <linux/console.h>
2 #include <linux/kernel.h>
3 #include <linux/init.h>
4 #include <linux/string.h>
5 #include <linux/screen_info.h>
7 #include <asm/processor.h>
10 /* Simple VGA output */
13 #include <asm/setup.h>
15 #include <asm/bootsetup.h>
17 #define VGABASE (__ISA_IO_base + 0xb8000)
19 static int max_ypos = 25, max_xpos = 80;
20 static int current_ypos = 25, current_xpos = 0;
22 static void early_vga_write(struct console *con, const char *str, unsigned n)
27 while ((c = *str++) != '\0' && n-- > 0) {
28 if (current_ypos >= max_ypos) {
29 /* scroll 1 line up */
30 for (k = 1, j = 0; k < max_ypos; k++, j++) {
31 for (i = 0; i < max_xpos; i++) {
32 writew(readw(VGABASE+2*(max_xpos*k+i)),
33 VGABASE + 2*(max_xpos*j + i));
36 for (i = 0; i < max_xpos; i++)
37 writew(0x720, VGABASE + 2*(max_xpos*j + i));
38 current_ypos = max_ypos-1;
43 } else if (c != '\r') {
44 writew(((0x7 << 8) | (unsigned short) c),
45 VGABASE + 2*(max_xpos*current_ypos +
47 if (current_xpos >= max_xpos) {
55 static struct console early_vga_console = {
57 .write = early_vga_write,
58 .flags = CON_PRINTBUFFER,
62 /* Serial functions loosely based on a similar package from Klaus P. Gerlicher */
64 static int early_serial_base = 0x3f8; /* ttyS0 */
70 #define TXR 0 /* Transmit register (WRITE) */
71 #define RXR 0 /* Receive register (READ) */
72 #define IER 1 /* Interrupt Enable */
73 #define IIR 2 /* Interrupt ID */
74 #define FCR 2 /* FIFO control */
75 #define LCR 3 /* Line control */
76 #define MCR 4 /* Modem control */
77 #define LSR 5 /* Line Status */
78 #define MSR 6 /* Modem Status */
79 #define DLL 0 /* Divisor Latch Low */
80 #define DLH 1 /* Divisor latch High */
82 static int early_serial_putc(unsigned char ch)
84 unsigned timeout = 0xffff;
85 while ((inb(early_serial_base + LSR) & XMTRDY) == 0 && --timeout)
87 outb(ch, early_serial_base + TXR);
88 return timeout ? 0 : -1;
91 static void early_serial_write(struct console *con, const char *s, unsigned n)
93 while (*s && n-- > 0) {
94 early_serial_putc(*s);
96 early_serial_putc('\r');
101 #define DEFAULT_BAUD 9600
103 static __init void early_serial_init(char *s)
107 unsigned baud = DEFAULT_BAUD;
115 if (!strncmp(s,"0x",2)) {
116 early_serial_base = simple_strtoul(s, &e, 16);
118 static int bases[] = { 0x3f8, 0x2f8 };
120 if (!strncmp(s,"ttyS",4))
122 port = simple_strtoul(s, &e, 10);
123 if (port > 1 || s == e)
125 early_serial_base = bases[port];
127 s += strcspn(s, ",");
132 outb(0x3, early_serial_base + LCR); /* 8n1 */
133 outb(0, early_serial_base + IER); /* no interrupt */
134 outb(0, early_serial_base + FCR); /* no fifo */
135 outb(0x3, early_serial_base + MCR); /* DTR + RTS */
138 baud = simple_strtoul(s, &e, 0);
139 if (baud == 0 || s == e)
143 divisor = 115200 / baud;
144 c = inb(early_serial_base + LCR);
145 outb(c | DLAB, early_serial_base + LCR);
146 outb(divisor & 0xff, early_serial_base + DLL);
147 outb((divisor >> 8) & 0xff, early_serial_base + DLH);
148 outb(c & ~DLAB, early_serial_base + LCR);
151 static struct console early_serial_console = {
153 .write = early_serial_write,
154 .flags = CON_PRINTBUFFER,
158 /* Console interface to a host file on AMD's SimNow! */
160 static int simnow_fd;
169 static noinline long simnow(long cmd, long a, long b, long c)
172 asm volatile("cpuid" :
174 "b" (a), "c" (b), "d" (c), "0" (MAGIC1), "D" (cmd + MAGIC2));
178 static void __init simnow_init(char *str)
184 simnow_fd = simnow(XOPEN, (unsigned long)fn, O_WRONLY|O_APPEND|O_CREAT, 0644);
187 static void simnow_write(struct console *con, const char *s, unsigned n)
189 simnow(XWRITE, simnow_fd, (unsigned long)s, n);
192 static struct console simnow_console = {
194 .write = simnow_write,
195 .flags = CON_PRINTBUFFER,
199 /* Direct interface for emergencies */
200 struct console *early_console = &early_vga_console;
201 static int early_console_initialized = 0;
203 void early_printk(const char *fmt, ...)
210 n = vscnprintf(buf,512,fmt,ap);
211 early_console->write(early_console,buf,n);
215 static int __initdata keep_early;
217 static int __init setup_early_printk(char *buf)
222 if (early_console_initialized)
224 early_console_initialized = 1;
226 if (strstr(buf, "keep"))
229 if (!strncmp(buf, "serial", 6)) {
230 early_serial_init(buf + 6);
231 early_console = &early_serial_console;
232 } else if (!strncmp(buf, "ttyS", 4)) {
233 early_serial_init(buf);
234 early_console = &early_serial_console;
235 } else if (!strncmp(buf, "vga", 3)
236 && SCREEN_INFO.orig_video_isVGA == 1) {
237 max_xpos = SCREEN_INFO.orig_video_cols;
238 max_ypos = SCREEN_INFO.orig_video_lines;
239 current_ypos = SCREEN_INFO.orig_y;
240 early_console = &early_vga_console;
241 } else if (!strncmp(buf, "simnow", 6)) {
242 simnow_init(buf + 6);
243 early_console = &simnow_console;
246 register_console(early_console);
250 early_param("earlyprintk", setup_early_printk);
252 void __init disable_early_printk(void)
254 if (!early_console_initialized || !early_console)
257 printk("disabling early console\n");
258 unregister_console(early_console);
259 early_console_initialized = 0;
261 printk("keeping early console\n");