blob: 76d1f1c980ef45154e717720e8a83a9ba1c2410c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2000, 2001 Jeff Dike (jdike@karaya.com)
3 * Licensed under the GPL
4 */
5
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#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 "user_util.h"
26#include "kern_util.h"
27#include "irq_user.h"
28#include "mconsole_kern.h"
29#include "init.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31#define MAX_TTYS (16)
32
Linus Torvalds1da177e2005-04-16 15:20:36 -070033/* Referenced only by tty_driver below - presumably it's locked correctly
34 * by the tty driver.
35 */
36
37static struct tty_driver *console_driver;
38
39void stdio_announce(char *dev_name, int dev)
40{
41 printk(KERN_INFO "Virtual console %d assigned device '%s'\n", dev,
42 dev_name);
43}
44
Jeff Dikea52f3622007-02-10 01:44:06 -080045/* Almost const, except that xterm_title may be changed in an initcall */
Linus Torvalds1da177e2005-04-16 15:20:36 -070046static struct chan_opts opts = {
47 .announce = stdio_announce,
48 .xterm_title = "Virtual Console #%d",
49 .raw = 1,
50 .tramp_stack = 0,
51 .in_kernel = 1,
52};
53
Jeff Dikef28169d2007-02-10 01:43:53 -080054static int con_config(char *str, char **error_out);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055static int con_get_config(char *dev, char *str, int size, char **error_out);
Jeff Dikef28169d2007-02-10 01:43:53 -080056static int con_remove(int n, char **con_remove);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Jeff Diked5c9ffc2007-02-10 01:44:08 -080058
59/* Const, except for .mc.list */
Linus Torvalds1da177e2005-04-16 15:20:36 -070060static struct line_driver driver = {
61 .name = "UML console",
62 .device_name = "tty",
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 .major = TTY_MAJOR,
64 .minor_start = 0,
65 .type = TTY_DRIVER_TYPE_CONSOLE,
66 .subtype = SYSTEM_TYPE_CONSOLE,
67 .read_irq = CONSOLE_IRQ,
68 .read_irq_name = "console",
69 .write_irq = CONSOLE_WRITE_IRQ,
70 .write_irq_name = "console-write",
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 .mc = {
Jeff Dikec0961c12007-02-10 01:44:11 -080072 .list = LIST_HEAD_INIT(driver.mc.list),
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 .name = "con",
74 .config = con_config,
75 .get_config = con_get_config,
Jeff Diked50084a2006-01-06 00:18:50 -080076 .id = line_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 .remove = con_remove,
78 },
79};
80
Jeff Diked5c9ffc2007-02-10 01:44:08 -080081/* The array is initialized by line_init, at initcall time. The
82 * elements are locked individually as needed.
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 */
Jeff Diked79a5802007-02-10 01:43:52 -080084static struct line vts[MAX_TTYS] = { LINE_INIT(CONFIG_CON_ZERO_CHAN, &driver),
85 [ 1 ... MAX_TTYS - 1 ] =
86 LINE_INIT(CONFIG_CON_CHAN, &driver) };
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Jeff Dikef28169d2007-02-10 01:43:53 -080088static int con_config(char *str, char **error_out)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089{
Jeff Dikef28169d2007-02-10 01:43:53 -080090 return line_config(vts, ARRAY_SIZE(vts), str, &opts, error_out);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091}
92
93static int con_get_config(char *dev, char *str, int size, char **error_out)
94{
Jeff Dike0834cc72006-01-06 00:18:51 -080095 return line_get_config(dev, vts, ARRAY_SIZE(vts), str, size, error_out);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096}
97
Jeff Dikef28169d2007-02-10 01:43:53 -080098static int con_remove(int n, char **error_out)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099{
Jeff Dikef28169d2007-02-10 01:43:53 -0800100 return line_remove(vts, ARRAY_SIZE(vts), n, error_out);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101}
102
103static int con_open(struct tty_struct *tty, struct file *filp)
104{
Jeff Dike1f801712006-01-06 00:18:55 -0800105 return line_open(vts, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106}
107
Jeff Dike730760e2006-09-29 01:58:50 -0700108/* Set in an initcall, checked in an exitcall */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109static int con_init_done = 0;
110
Jeff Dike5e7672e2006-09-27 01:50:33 -0700111static const struct tty_operations console_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 .open = con_open,
113 .close = line_close,
114 .write = line_write,
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700115 .put_char = line_put_char,
Jeff Diked50084a2006-01-06 00:18:50 -0800116 .write_room = line_write_room,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 .chars_in_buffer = line_chars_in_buffer,
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700118 .flush_buffer = line_flush_buffer,
119 .flush_chars = line_flush_chars,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 .set_termios = line_set_termios,
121 .ioctl = line_ioctl,
Jeff Dikee4dcee82006-01-06 00:18:58 -0800122 .throttle = line_throttle,
123 .unthrottle = line_unthrottle,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124};
125
126static void uml_console_write(struct console *console, const char *string,
Jeff Diked50084a2006-01-06 00:18:50 -0800127 unsigned len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128{
129 struct line *line = &vts[console->index];
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700130 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700132 spin_lock_irqsave(&line->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 console_write_chan(&line->chan_list, string, len);
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700134 spin_unlock_irqrestore(&line->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135}
136
137static struct tty_driver *uml_console_device(struct console *c, int *index)
138{
139 *index = c->index;
140 return console_driver;
141}
142
143static int uml_console_setup(struct console *co, char *options)
144{
145 struct line *line = &vts[co->index];
146
Jeff Dikea52f3622007-02-10 01:44:06 -0800147 return console_open_chan(line, co);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148}
149
Jeff Diked5c9ffc2007-02-10 01:44:08 -0800150/* No locking for register_console call - relies on single-threaded initcalls */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151static struct console stdiocons = {
152 .name = "tty",
153 .write = uml_console_write,
154 .device = uml_console_device,
155 .setup = uml_console_setup,
Paolo 'Blaisorblade' Giarrussob5337882007-03-07 20:41:11 -0800156 .flags = CON_PRINTBUFFER|CON_ANYTIME,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 .index = -1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158};
159
160int stdio_init(void)
161{
162 char *new_title;
163
Jeff Diked5c9ffc2007-02-10 01:44:08 -0800164 console_driver = register_lines(&driver, &console_ops, vts,
165 ARRAY_SIZE(vts));
Jeff Diked50084a2006-01-06 00:18:50 -0800166 if (console_driver == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 return -1;
168 printk(KERN_INFO "Initialized stdio console driver\n");
169
Jeff Dike1f801712006-01-06 00:18:55 -0800170 lines_init(vts, ARRAY_SIZE(vts), &opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
172 new_title = add_xterm_umid(opts.xterm_title);
173 if(new_title != NULL)
174 opts.xterm_title = new_title;
175
176 con_init_done = 1;
177 register_console(&stdiocons);
Jeff Diked50084a2006-01-06 00:18:50 -0800178 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179}
180late_initcall(stdio_init);
181
182static void console_exit(void)
183{
184 if (!con_init_done)
185 return;
Jeff Dike0834cc72006-01-06 00:18:51 -0800186 close_lines(vts, ARRAY_SIZE(vts));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187}
188__uml_exitcall(console_exit);
189
190static int console_chan_setup(char *str)
191{
Jeff Dikef28169d2007-02-10 01:43:53 -0800192 char *error;
193 int ret;
194
195 ret = line_setup(vts, ARRAY_SIZE(vts), str, &error);
196 if(ret < 0)
197 printk(KERN_ERR "Failed to set up console with "
198 "configuration string \"%s\" : %s\n", str, error);
199
200 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201}
202__setup("con", console_chan_setup);
203__channel_help(console_chan_setup, "con");