source: trunk/packages/xen-3.1/xen-3.1/linux-2.6-xen-sparse/arch/x86_64/kernel/early_printk-xen.c @ 34

Last change on this file since 34 was 34, checked in by hartmans, 18 years ago

Add xen and xen-common

File size: 6.9 KB
Line 
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>
9
10/* Simple VGA output */
11
12#ifdef __i386__
13#include <asm/setup.h>
14#define VGABASE         (__ISA_IO_base + 0xb8000)
15#else
16#include <asm/bootsetup.h>
17#define VGABASE         ((void __iomem *)0xffffffff800b8000UL)
18#endif
19
20#ifndef CONFIG_XEN
21static int max_ypos = 25, max_xpos = 80;
22static int current_ypos = 25, current_xpos = 0; 
23
24static void early_vga_write(struct console *con, const char *str, unsigned n)
25{
26        char c;
27        int  i, k, j;
28
29        while ((c = *str++) != '\0' && n-- > 0) {
30                if (current_ypos >= max_ypos) {
31                        /* scroll 1 line up */
32                        for (k = 1, j = 0; k < max_ypos; k++, j++) {
33                                for (i = 0; i < max_xpos; i++) {
34                                        writew(readw(VGABASE+2*(max_xpos*k+i)),
35                                               VGABASE + 2*(max_xpos*j + i));
36                                }
37                        }
38                        for (i = 0; i < max_xpos; i++)
39                                writew(0x720, VGABASE + 2*(max_xpos*j + i));
40                        current_ypos = max_ypos-1;
41                }
42                if (c == '\n') {
43                        current_xpos = 0;
44                        current_ypos++;
45                } else if (c != '\r')  {
46                        writew(((0x7 << 8) | (unsigned short) c),
47                               VGABASE + 2*(max_xpos*current_ypos +
48                                                current_xpos++));
49                        if (current_xpos >= max_xpos) {
50                                current_xpos = 0;
51                                current_ypos++;
52                        }
53                }
54        }
55}
56
57static struct console early_vga_console = {
58        .name =         "earlyvga",
59        .write =        early_vga_write,
60        .flags =        CON_PRINTBUFFER,
61        .index =        -1,
62};
63
64/* Serial functions loosely based on a similar package from Klaus P. Gerlicher */
65
66static int early_serial_base = 0x3f8;  /* ttyS0 */
67
68#define XMTRDY          0x20
69
70#define DLAB            0x80
71
72#define TXR             0       /*  Transmit register (WRITE) */
73#define RXR             0       /*  Receive register  (READ)  */
74#define IER             1       /*  Interrupt Enable          */
75#define IIR             2       /*  Interrupt ID              */
76#define FCR             2       /*  FIFO control              */
77#define LCR             3       /*  Line control              */
78#define MCR             4       /*  Modem control             */
79#define LSR             5       /*  Line Status               */
80#define MSR             6       /*  Modem Status              */
81#define DLL             0       /*  Divisor Latch Low         */
82#define DLH             1       /*  Divisor latch High        */
83
84static int early_serial_putc(unsigned char ch)
85{
86        unsigned timeout = 0xffff;
87        while ((inb(early_serial_base + LSR) & XMTRDY) == 0 && --timeout)
88                cpu_relax();
89        outb(ch, early_serial_base + TXR);
90        return timeout ? 0 : -1;
91}
92
93static void early_serial_write(struct console *con, const char *s, unsigned n)
94{
95        while (*s && n-- > 0) {
96                early_serial_putc(*s);
97                if (*s == '\n')
98                        early_serial_putc('\r');
99                s++;
100        }
101}
102
103#define DEFAULT_BAUD 9600
104
105static __init void early_serial_init(char *s)
106{
107        unsigned char c;
108        unsigned divisor;
109        unsigned baud = DEFAULT_BAUD;
110        char *e;
111
112        if (*s == ',')
113                ++s;
114
115        if (*s) {
116                unsigned port;
117                if (!strncmp(s,"0x",2)) {
118                        early_serial_base = simple_strtoul(s, &e, 16);
119                } else {
120                        static int bases[] = { 0x3f8, 0x2f8 };
121
122                        if (!strncmp(s,"ttyS",4))
123                                s += 4;
124                        port = simple_strtoul(s, &e, 10);
125                        if (port > 1 || s == e)
126                                port = 0;
127                        early_serial_base = bases[port];
128                }
129                s += strcspn(s, ",");
130                if (*s == ',')
131                        s++;
132        }
133
134        outb(0x3, early_serial_base + LCR);     /* 8n1 */
135        outb(0, early_serial_base + IER);       /* no interrupt */
136        outb(0, early_serial_base + FCR);       /* no fifo */
137        outb(0x3, early_serial_base + MCR);     /* DTR + RTS */
138
139        if (*s) {
140                baud = simple_strtoul(s, &e, 0);
141                if (baud == 0 || s == e)
142                        baud = DEFAULT_BAUD;
143        }
144
145        divisor = 115200 / baud;
146        c = inb(early_serial_base + LCR);
147        outb(c | DLAB, early_serial_base + LCR);
148        outb(divisor & 0xff, early_serial_base + DLL);
149        outb((divisor >> 8) & 0xff, early_serial_base + DLH);
150        outb(c & ~DLAB, early_serial_base + LCR);
151}
152
153#else /* CONFIG_XEN */
154
155static void
156early_serial_write(struct console *con, const char *s, unsigned count)
157{
158        int n;
159
160        while (count > 0) {
161                n = HYPERVISOR_console_io(CONSOLEIO_write, count, (char *)s);
162                if (n <= 0)
163                        break;
164                count -= n;
165                s += n;
166        }
167} 
168
169static __init void early_serial_init(char *s)
170{
171}
172
173/*
174 * No early VGA console on Xen, as we do not have convenient ISA-space
175 * mappings. Someone should fix this for domain 0. For now, use fake serial.
176 */
177#define early_vga_console early_serial_console
178
179#endif
180
181static struct console early_serial_console = {
182        .name =         "earlyser",
183        .write =        early_serial_write,
184        .flags =        CON_PRINTBUFFER,
185        .index =        -1,
186};
187
188/* Console interface to a host file on AMD's SimNow! */
189
190static int simnow_fd;
191
192enum {
193        MAGIC1 = 0xBACCD00A,
194        MAGIC2 = 0xCA110000,
195        XOPEN = 5,
196        XWRITE = 4,
197};
198
199static noinline long simnow(long cmd, long a, long b, long c)
200{
201        long ret;
202        asm volatile("cpuid" :
203                     "=a" (ret) :
204                     "b" (a), "c" (b), "d" (c), "0" (MAGIC1), "D" (cmd + MAGIC2));
205        return ret;
206}
207
208void __init simnow_init(char *str)
209{
210        char *fn = "klog";
211        if (*str == '=')
212                fn = ++str;
213        /* error ignored */
214        simnow_fd = simnow(XOPEN, (unsigned long)fn, O_WRONLY|O_APPEND|O_CREAT, 0644);
215}
216
217static void simnow_write(struct console *con, const char *s, unsigned n)
218{
219        simnow(XWRITE, simnow_fd, (unsigned long)s, n);
220}
221
222static struct console simnow_console = {
223        .name =         "simnow",
224        .write =        simnow_write,
225        .flags =        CON_PRINTBUFFER,
226        .index =        -1,
227};
228
229/* Direct interface for emergencies */
230struct console *early_console = &early_vga_console;
231static int early_console_initialized = 0;
232
233void early_printk(const char *fmt, ...)
234{
235        char buf[512];
236        int n;
237        va_list ap;
238
239        va_start(ap,fmt);
240        n = vscnprintf(buf,512,fmt,ap);
241        early_console->write(early_console,buf,n);
242        va_end(ap);
243}
244
245static int __initdata keep_early;
246
247int __init setup_early_printk(char *opt)
248{
249        char *space;
250        char buf[256];
251
252        if (early_console_initialized)
253                return 1;
254
255        strlcpy(buf,opt,sizeof(buf));
256        space = strchr(buf, ' ');
257        if (space)
258                *space = 0;
259
260        if (strstr(buf,"keep"))
261                keep_early = 1;
262
263        if (!strncmp(buf, "serial", 6)) {
264                early_serial_init(buf + 6);
265                early_console = &early_serial_console;
266        } else if (!strncmp(buf, "ttyS", 4)) {
267                early_serial_init(buf);
268                early_console = &early_serial_console;
269        } else if (!strncmp(buf, "vga", 3)
270#ifndef CONFIG_XEN
271                   && SCREEN_INFO.orig_video_isVGA == 1) {
272                max_xpos = SCREEN_INFO.orig_video_cols;
273                max_ypos = SCREEN_INFO.orig_video_lines;
274                current_ypos = SCREEN_INFO.orig_y;
275#else
276                   || !strncmp(buf, "xen", 3)) {
277#endif
278                early_console = &early_vga_console;
279        } else if (!strncmp(buf, "simnow", 6)) {
280                simnow_init(buf + 6);
281                early_console = &simnow_console;
282                keep_early = 1;
283        }
284        early_console_initialized = 1;
285        register_console(early_console);
286        return 0;
287}
288
289void __init disable_early_printk(void)
290{
291        if (!early_console_initialized || !early_console)
292                return;
293        if (!keep_early) {
294                printk("disabling early console\n");
295                unregister_console(early_console);
296                early_console_initialized = 0;
297        } else {
298                printk("keeping early console\n");
299        }
300}
301
302__setup("earlyprintk=", setup_early_printk);
Note: See TracBrowser for help on using the repository browser.