Linux 2.6.17.7
[linux/fpc-iii.git] / arch / mips / cobalt / console.c
blob45c2d27c7564f4fabc2579c8529bd808af7e5ed0
1 /*
2 * (C) P. Horton 2006
3 */
5 #include <linux/config.h>
6 #include <linux/init.h>
7 #include <linux/kernel.h>
8 #include <linux/console.h>
9 #include <linux/serial_reg.h>
10 #include <asm/addrspace.h>
11 #include <asm/mach-cobalt/cobalt.h>
13 static void putchar(int c)
15 if(c == '\n')
16 putchar('\r');
18 while(!(COBALT_UART[UART_LSR] & UART_LSR_THRE))
21 COBALT_UART[UART_TX] = c;
24 static void cons_write(struct console *c, const char *s, unsigned n)
26 while(n-- && *s)
27 putchar(*s++);
30 static struct console cons_info =
32 .name = "uart",
33 .write = cons_write,
34 .flags = CON_PRINTBUFFER | CON_BOOT,
35 .index = -1,
38 void __init cobalt_early_console(void)
40 register_console(&cons_info);
42 printk("Cobalt: early console registered\n");