uml: xterm driver tidying
[linux-2.6] / arch / um / drivers / stdio_console.c
1 /* 
2  * Copyright (C) 2000, 2001 Jeff Dike (jdike@karaya.com)
3  * Licensed under the GPL
4  */
5
6 #include "linux/posix_types.h"
7 #include "linux/tty.h"
8 #include "linux/tty_flip.h"
9 #include "linux/types.h"
10 #include "linux/major.h"
11 #include "linux/kdev_t.h"
12 #include "linux/console.h"
13 #include "linux/string.h"
14 #include "linux/sched.h"
15 #include "linux/list.h"
16 #include "linux/init.h"
17 #include "linux/interrupt.h"
18 #include "linux/slab.h"
19 #include "linux/hardirq.h"
20 #include "asm/current.h"
21 #include "asm/irq.h"
22 #include "stdio_console.h"
23 #include "line.h"
24 #include "chan_kern.h"
25 #include "kern_util.h"
26 #include "irq_user.h"
27 #include "mconsole_kern.h"
28 #include "init.h"
29
30 #define MAX_TTYS (16)
31
32 /* Referenced only by tty_driver below - presumably it's locked correctly
33  * by the tty driver.
34  */
35
36 static struct tty_driver *console_driver;
37
38 void stdio_announce(char *dev_name, int dev)
39 {
40         printk(KERN_INFO "Virtual console %d assigned device '%s'\n", dev,
41                dev_name);
42 }
43
44 /* Almost const, except that xterm_title may be changed in an initcall */
45 static struct chan_opts opts = {
46         .announce       = stdio_announce,
47         .xterm_title    = "Virtual Console #%d",
48         .raw            = 1,
49 };
50
51 static int con_config(char *str, char **error_out);
52 static int con_get_config(char *dev, char *str, int size, char **error_out);
53 static int con_remove(int n, char **con_remove);
54
55
56 /* Const, except for .mc.list */
57 static struct line_driver driver = {
58         .name                   = "UML console",
59         .device_name            = "tty",
60         .major                  = TTY_MAJOR,
61         .minor_start            = 0,
62         .type                   = TTY_DRIVER_TYPE_CONSOLE,
63         .subtype                = SYSTEM_TYPE_CONSOLE,
64         .read_irq               = CONSOLE_IRQ,
65         .read_irq_name          = "console",
66         .write_irq              = CONSOLE_WRITE_IRQ,
67         .write_irq_name         = "console-write",
68         .mc  = {
69                 .list           = LIST_HEAD_INIT(driver.mc.list),
70                 .name           = "con",
71                 .config         = con_config,
72                 .get_config     = con_get_config,
73                 .id             = line_id,
74                 .remove         = con_remove,
75         },
76 };
77
78 /* The array is initialized by line_init, at initcall time.  The
79  * elements are locked individually as needed.
80  */
81 static struct line vts[MAX_TTYS] = { LINE_INIT(CONFIG_CON_ZERO_CHAN, &driver),
82                                      [ 1 ... MAX_TTYS - 1 ] =
83                                      LINE_INIT(CONFIG_CON_CHAN, &driver) };
84
85 static int con_config(char *str, char **error_out)
86 {
87         return line_config(vts, ARRAY_SIZE(vts), str, &opts, error_out);
88 }
89
90 static int con_get_config(char *dev, char *str, int size, char **error_out)
91 {
92         return line_get_config(dev, vts, ARRAY_SIZE(vts), str, size, error_out);
93 }
94
95 static int con_remove(int n, char **error_out)
96 {
97         return line_remove(vts, ARRAY_SIZE(vts), n, error_out);
98 }
99
100 static int con_open(struct tty_struct *tty, struct file *filp)
101 {
102         return line_open(vts, tty);
103 }
104
105 /* Set in an initcall, checked in an exitcall */
106 static int con_init_done = 0;
107
108 static const struct tty_operations console_ops = {
109         .open                   = con_open,
110         .close                  = line_close,
111         .write                  = line_write,
112         .put_char               = line_put_char,
113         .write_room             = line_write_room,
114         .chars_in_buffer        = line_chars_in_buffer,
115         .flush_buffer           = line_flush_buffer,
116         .flush_chars            = line_flush_chars,
117         .set_termios            = line_set_termios,
118         .ioctl                  = line_ioctl,
119         .throttle               = line_throttle,
120         .unthrottle             = line_unthrottle,
121 };
122
123 static void uml_console_write(struct console *console, const char *string,
124                               unsigned len)
125 {
126         struct line *line = &vts[console->index];
127         unsigned long flags;
128
129         spin_lock_irqsave(&line->lock, flags);
130         console_write_chan(&line->chan_list, string, len);
131         spin_unlock_irqrestore(&line->lock, flags);
132 }
133
134 static struct tty_driver *uml_console_device(struct console *c, int *index)
135 {
136         *index = c->index;
137         return console_driver;
138 }
139
140 static int uml_console_setup(struct console *co, char *options)
141 {
142         struct line *line = &vts[co->index];
143
144         return console_open_chan(line, co);
145 }
146
147 /* No locking for register_console call - relies on single-threaded initcalls */
148 static struct console stdiocons = {
149         .name           = "tty",
150         .write          = uml_console_write,
151         .device         = uml_console_device,
152         .setup          = uml_console_setup,
153         .flags          = CON_PRINTBUFFER|CON_ANYTIME,
154         .index          = -1,
155 };
156
157 int stdio_init(void)
158 {
159         char *new_title;
160
161         console_driver = register_lines(&driver, &console_ops, vts,
162                                         ARRAY_SIZE(vts));
163         if (console_driver == NULL)
164                 return -1;
165         printk(KERN_INFO "Initialized stdio console driver\n");
166
167         new_title = add_xterm_umid(opts.xterm_title);
168         if(new_title != NULL)
169                 opts.xterm_title = new_title;
170
171         lines_init(vts, ARRAY_SIZE(vts), &opts);
172
173         con_init_done = 1;
174         register_console(&stdiocons);
175         return 0;
176 }
177 late_initcall(stdio_init);
178
179 static void console_exit(void)
180 {
181         if (!con_init_done)
182                 return;
183         close_lines(vts, ARRAY_SIZE(vts));
184 }
185 __uml_exitcall(console_exit);
186
187 static int console_chan_setup(char *str)
188 {
189         char *error;
190         int ret;
191
192         ret = line_setup(vts, ARRAY_SIZE(vts), str, &error);
193         if(ret < 0)
194                 printk(KERN_ERR "Failed to set up console with "
195                        "configuration string \"%s\" : %s\n", str, error);
196
197         return 1;
198 }
199 __setup("con", console_chan_setup);
200 __channel_help(console_chan_setup, "con");