Linux-2.6.12-rc2
[pandora-kernel.git] / arch / ia64 / hp / sim / hpsim_console.c
1 /*
2  * Platform dependent support for HP simulator.
3  *
4  * Copyright (C) 1998, 1999, 2002 Hewlett-Packard Co
5  *      David Mosberger-Tang <davidm@hpl.hp.com>
6  * Copyright (C) 1999 Vijay Chander <vijay@engr.sgi.com>
7  */
8 #include <linux/config.h>
9
10 #include <linux/init.h>
11 #include <linux/kernel.h>
12 #include <linux/param.h>
13 #include <linux/string.h>
14 #include <linux/types.h>
15 #include <linux/tty.h>
16 #include <linux/kdev_t.h>
17 #include <linux/console.h>
18
19 #include <asm/delay.h>
20 #include <asm/irq.h>
21 #include <asm/pal.h>
22 #include <asm/machvec.h>
23 #include <asm/pgtable.h>
24 #include <asm/sal.h>
25
26 #include "hpsim_ssc.h"
27
28 static int simcons_init (struct console *, char *);
29 static void simcons_write (struct console *, const char *, unsigned);
30 static struct tty_driver *simcons_console_device (struct console *, int *);
31
32 struct console hpsim_cons = {
33         .name =         "simcons",
34         .write =        simcons_write,
35         .device =       simcons_console_device,
36         .setup =        simcons_init,
37         .flags =        CON_PRINTBUFFER,
38         .index =        -1,
39 };
40
41 static int
42 simcons_init (struct console *cons, char *options)
43 {
44         return 0;
45 }
46
47 static void
48 simcons_write (struct console *cons, const char *buf, unsigned count)
49 {
50         unsigned long ch;
51
52         while (count-- > 0) {
53                 ch = *buf++;
54                 ia64_ssc(ch, 0, 0, 0, SSC_PUTCHAR);
55                 if (ch == '\n')
56                   ia64_ssc('\r', 0, 0, 0, SSC_PUTCHAR);
57         }
58 }
59
60 static struct tty_driver *simcons_console_device (struct console *c, int *index)
61 {
62         extern struct tty_driver *hp_simserial_driver;
63         *index = c->index;
64         return hp_simserial_driver;
65 }