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>
14 #define VGABASE (__ISA_IO_base + 0xb8000)
16 #include <asm/bootsetup.h>
17 #define VGABASE ((void __iomem *)0xffffffff800b8000UL)
20 static int max_ypos
= 25, max_xpos
= 80;
21 static int current_ypos
= 25, current_xpos
= 0;
23 static void early_vga_write(struct console
*con
, const char *str
, unsigned n
)
28 while ((c
= *str
++) != '\0' && n
-- > 0) {
29 if (current_ypos
>= max_ypos
) {
30 /* scroll 1 line up */
31 for (k
= 1, j
= 0; k
< max_ypos
; k
++, j
++) {
32 for (i
= 0; i
< max_xpos
; i
++) {
33 writew(readw(VGABASE
+2*(max_xpos
*k
+i
)),
34 VGABASE
+ 2*(max_xpos
*j
+ i
));
37 for (i
= 0; i
< max_xpos
; i
++)
38 writew(0x720, VGABASE
+ 2*(max_xpos
*j
+ i
));
39 current_ypos
= max_ypos
-1;
44 } else if (c
!= '\r') {
45 writew(((0x7 << 8) | (unsigned short) c
),
46 VGABASE
+ 2*(max_xpos
*current_ypos
+
48 if (current_xpos
>= max_xpos
) {
56 static struct console early_vga_console
= {
58 .write
= early_vga_write
,
59 .flags
= CON_PRINTBUFFER
,
63 /* Serial functions loosely based on a similar package from Klaus P. Gerlicher */
65 static int early_serial_base
= 0x3f8; /* ttyS0 */
71 #define TXR 0 /* Transmit register (WRITE) */
72 #define RXR 0 /* Receive register (READ) */
73 #define IER 1 /* Interrupt Enable */
74 #define IIR 2 /* Interrupt ID */
75 #define FCR 2 /* FIFO control */
76 #define LCR 3 /* Line control */
77 #define MCR 4 /* Modem control */
78 #define LSR 5 /* Line Status */
79 #define MSR 6 /* Modem Status */
80 #define DLL 0 /* Divisor Latch Low */
81 #define DLH 1 /* Divisor latch High */
83 static int early_serial_putc(unsigned char ch
)
85 unsigned timeout
= 0xffff;
86 while ((inb(early_serial_base
+ LSR
) & XMTRDY
) == 0 && --timeout
)
88 outb(ch
, early_serial_base
+ TXR
);
89 return timeout
? 0 : -1;
92 static void early_serial_write(struct console
*con
, const char *s
, unsigned n
)
94 while (*s
&& n
-- > 0) {
95 early_serial_putc(*s
);
97 early_serial_putc('\r');
102 #define DEFAULT_BAUD 9600
104 static __init
void early_serial_init(char *s
)
108 unsigned baud
= DEFAULT_BAUD
;
116 if (!strncmp(s
,"0x",2)) {
117 early_serial_base
= simple_strtoul(s
, &e
, 16);
119 static int bases
[] = { 0x3f8, 0x2f8 };
121 if (!strncmp(s
,"ttyS",4))
123 port
= simple_strtoul(s
, &e
, 10);
124 if (port
> 1 || s
== e
)
126 early_serial_base
= bases
[port
];
128 s
+= strcspn(s
, ",");
133 outb(0x3, early_serial_base
+ LCR
); /* 8n1 */
134 outb(0, early_serial_base
+ IER
); /* no interrupt */
135 outb(0, early_serial_base
+ FCR
); /* no fifo */
136 outb(0x3, early_serial_base
+ MCR
); /* DTR + RTS */
139 baud
= simple_strtoul(s
, &e
, 0);
140 if (baud
== 0 || s
== e
)
144 divisor
= 115200 / baud
;
145 c
= inb(early_serial_base
+ LCR
);
146 outb(c
| DLAB
, early_serial_base
+ LCR
);
147 outb(divisor
& 0xff, early_serial_base
+ DLL
);
148 outb((divisor
>> 8) & 0xff, early_serial_base
+ DLH
);
149 outb(c
& ~DLAB
, early_serial_base
+ LCR
);
152 static struct console early_serial_console
= {
154 .write
= early_serial_write
,
155 .flags
= CON_PRINTBUFFER
,
159 /* Console interface to a host file on AMD's SimNow! */
161 static int simnow_fd
;
170 static noinline
long simnow(long cmd
, long a
, long b
, long c
)
173 asm volatile("cpuid" :
175 "b" (a
), "c" (b
), "d" (c
), "0" (MAGIC1
), "D" (cmd
+ MAGIC2
));
179 void __init
simnow_init(char *str
)
185 simnow_fd
= simnow(XOPEN
, (unsigned long)fn
, O_WRONLY
|O_APPEND
|O_CREAT
, 0644);
188 static void simnow_write(struct console
*con
, const char *s
, unsigned n
)
190 simnow(XWRITE
, simnow_fd
, (unsigned long)s
, n
);
193 static struct console simnow_console
= {
195 .write
= simnow_write
,
196 .flags
= CON_PRINTBUFFER
,
200 /* Direct interface for emergencies */
201 struct console
*early_console
= &early_vga_console
;
202 static int early_console_initialized
= 0;
204 void early_printk(const char *fmt
, ...)
211 n
= vscnprintf(buf
,512,fmt
,ap
);
212 early_console
->write(early_console
,buf
,n
);
216 static int __initdata keep_early
;
218 static int __init
setup_early_printk(char *buf
)
223 if (early_console_initialized
)
225 early_console_initialized
= 1;
227 if (!strcmp(buf
,"keep"))
230 if (!strncmp(buf
, "serial", 6)) {
231 early_serial_init(buf
+ 6);
232 early_console
= &early_serial_console
;
233 } else if (!strncmp(buf
, "ttyS", 4)) {
234 early_serial_init(buf
);
235 early_console
= &early_serial_console
;
236 } else if (!strncmp(buf
, "vga", 3)
237 && SCREEN_INFO
.orig_video_isVGA
== 1) {
238 max_xpos
= SCREEN_INFO
.orig_video_cols
;
239 max_ypos
= SCREEN_INFO
.orig_video_lines
;
240 current_ypos
= SCREEN_INFO
.orig_y
;
241 early_console
= &early_vga_console
;
242 } else if (!strncmp(buf
, "simnow", 6)) {
243 simnow_init(buf
+ 6);
244 early_console
= &simnow_console
;
247 register_console(early_console
);
251 early_param("earlyprintk", setup_early_printk
);
253 void __init
disable_early_printk(void)
255 if (!early_console_initialized
|| !early_console
)
258 printk("disabling early console\n");
259 unregister_console(early_console
);
260 early_console_initialized
= 0;
262 printk("keeping early console\n");