Do not disable interrupts when reading min_free_kbytes
[linux-2.6/mini2440.git] / arch / x86_64 / kernel / early_printk.c
blob92213d2b7c110ef070edfdb14313e6fc2c9ad2cd
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>
6 #include <asm/io.h>
7 #include <asm/processor.h>
8 #include <asm/fcntl.h>
10 /* Simple VGA output */
12 #ifdef __i386__
13 #include <asm/setup.h>
14 #else
15 #include <asm/bootsetup.h>
16 #endif
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)
24 char c;
25 int i, k, j;
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;
40 if (c == '\n') {
41 current_xpos = 0;
42 current_ypos++;
43 } else if (c != '\r') {
44 writew(((0x7 << 8) | (unsigned short) c),
45 VGABASE + 2*(max_xpos*current_ypos +
46 current_xpos++));
47 if (current_xpos >= max_xpos) {
48 current_xpos = 0;
49 current_ypos++;
55 static struct console early_vga_console = {
56 .name = "earlyvga",
57 .write = early_vga_write,
58 .flags = CON_PRINTBUFFER,
59 .index = -1,
62 /* Serial functions loosely based on a similar package from Klaus P. Gerlicher */
64 static int early_serial_base = 0x3f8; /* ttyS0 */
66 #define XMTRDY 0x20
68 #define DLAB 0x80
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)
86 cpu_relax();
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);
95 if (*s == '\n')
96 early_serial_putc('\r');
97 s++;
101 #define DEFAULT_BAUD 9600
103 static __init void early_serial_init(char *s)
105 unsigned char c;
106 unsigned divisor;
107 unsigned baud = DEFAULT_BAUD;
108 char *e;
110 if (*s == ',')
111 ++s;
113 if (*s) {
114 unsigned port;
115 if (!strncmp(s,"0x",2)) {
116 early_serial_base = simple_strtoul(s, &e, 16);
117 } else {
118 static int bases[] = { 0x3f8, 0x2f8 };
120 if (!strncmp(s,"ttyS",4))
121 s += 4;
122 port = simple_strtoul(s, &e, 10);
123 if (port > 1 || s == e)
124 port = 0;
125 early_serial_base = bases[port];
127 s += strcspn(s, ",");
128 if (*s == ',')
129 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 */
137 if (*s) {
138 baud = simple_strtoul(s, &e, 0);
139 if (baud == 0 || s == e)
140 baud = DEFAULT_BAUD;
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 = {
152 .name = "earlyser",
153 .write = early_serial_write,
154 .flags = CON_PRINTBUFFER,
155 .index = -1,
158 /* Console interface to a host file on AMD's SimNow! */
160 static int simnow_fd;
162 enum {
163 MAGIC1 = 0xBACCD00A,
164 MAGIC2 = 0xCA110000,
165 XOPEN = 5,
166 XWRITE = 4,
169 static noinline long simnow(long cmd, long a, long b, long c)
171 long ret;
172 asm volatile("cpuid" :
173 "=a" (ret) :
174 "b" (a), "c" (b), "d" (c), "0" (MAGIC1), "D" (cmd + MAGIC2));
175 return ret;
178 static void __init simnow_init(char *str)
180 char *fn = "klog";
181 if (*str == '=')
182 fn = ++str;
183 /* error ignored */
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 = {
193 .name = "simnow",
194 .write = simnow_write,
195 .flags = CON_PRINTBUFFER,
196 .index = -1,
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, ...)
205 char buf[512];
206 int n;
207 va_list ap;
209 va_start(ap,fmt);
210 n = vscnprintf(buf,512,fmt,ap);
211 early_console->write(early_console,buf,n);
212 va_end(ap);
215 static int __initdata keep_early;
217 static int __init setup_early_printk(char *buf)
219 if (!buf)
220 return 0;
222 if (early_console_initialized)
223 return 0;
224 early_console_initialized = 1;
226 if (strstr(buf, "keep"))
227 keep_early = 1;
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;
244 keep_early = 1;
246 register_console(early_console);
247 return 0;
250 early_param("earlyprintk", setup_early_printk);
252 void __init disable_early_printk(void)
254 if (!early_console_initialized || !early_console)
255 return;
256 if (!keep_early) {
257 printk("disabling early console\n");
258 unregister_console(early_console);
259 early_console_initialized = 0;
260 } else {
261 printk("keeping early console\n");