Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2000, 2001 Jeff Dike (jdike@karaya.com) |
| 3 | * Licensed under the GPL |
| 4 | */ |
| 5 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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" |
Al Viro | 510c72a3 | 2011-08-18 20:08:29 +0100 | [diff] [blame] | 23 | #include "chan.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include "irq_user.h" |
| 25 | #include "mconsole_kern.h" |
| 26 | #include "init.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | |
| 28 | #define MAX_TTYS (16) |
| 29 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | /* Referenced only by tty_driver below - presumably it's locked correctly |
| 31 | * by the tty driver. |
| 32 | */ |
| 33 | |
| 34 | static struct tty_driver *console_driver; |
| 35 | |
WANG Cong | 074a0db | 2008-04-28 02:13:57 -0700 | [diff] [blame] | 36 | static void stdio_announce(char *dev_name, int dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | { |
| 38 | printk(KERN_INFO "Virtual console %d assigned device '%s'\n", dev, |
| 39 | dev_name); |
| 40 | } |
| 41 | |
Jeff Dike | a52f362 | 2007-02-10 01:44:06 -0800 | [diff] [blame] | 42 | /* Almost const, except that xterm_title may be changed in an initcall */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | static struct chan_opts opts = { |
| 44 | .announce = stdio_announce, |
| 45 | .xterm_title = "Virtual Console #%d", |
| 46 | .raw = 1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | }; |
| 48 | |
Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 49 | static int con_config(char *str, char **error_out); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | static int con_get_config(char *dev, char *str, int size, char **error_out); |
Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 51 | static int con_remove(int n, char **con_remove); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | |
Jeff Dike | d5c9ffc | 2007-02-10 01:44:08 -0800 | [diff] [blame] | 53 | |
| 54 | /* Const, except for .mc.list */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | static struct line_driver driver = { |
| 56 | .name = "UML console", |
| 57 | .device_name = "tty", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | .major = TTY_MAJOR, |
| 59 | .minor_start = 0, |
| 60 | .type = TTY_DRIVER_TYPE_CONSOLE, |
| 61 | .subtype = SYSTEM_TYPE_CONSOLE, |
| 62 | .read_irq = CONSOLE_IRQ, |
| 63 | .read_irq_name = "console", |
| 64 | .write_irq = CONSOLE_WRITE_IRQ, |
| 65 | .write_irq_name = "console-write", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | .mc = { |
Jeff Dike | c0961c1 | 2007-02-10 01:44:11 -0800 | [diff] [blame] | 67 | .list = LIST_HEAD_INIT(driver.mc.list), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | .name = "con", |
| 69 | .config = con_config, |
| 70 | .get_config = con_get_config, |
Jeff Dike | d50084a | 2006-01-06 00:18:50 -0800 | [diff] [blame] | 71 | .id = line_id, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | .remove = con_remove, |
| 73 | }, |
| 74 | }; |
| 75 | |
Jeff Dike | d5c9ffc | 2007-02-10 01:44:08 -0800 | [diff] [blame] | 76 | /* The array is initialized by line_init, at initcall time. The |
| 77 | * elements are locked individually as needed. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | */ |
Al Viro | 43574c1 | 2011-09-09 17:25:00 -0400 | [diff] [blame] | 79 | static char *vt_conf[MAX_TTYS]; |
| 80 | static char *def_conf; |
| 81 | static struct line vts[MAX_TTYS]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | |
Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 83 | static int con_config(char *str, char **error_out) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | { |
Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 85 | return line_config(vts, ARRAY_SIZE(vts), str, &opts, error_out); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | } |
| 87 | |
| 88 | static int con_get_config(char *dev, char *str, int size, char **error_out) |
| 89 | { |
Jeff Dike | 0834cc7 | 2006-01-06 00:18:51 -0800 | [diff] [blame] | 90 | return line_get_config(dev, vts, ARRAY_SIZE(vts), str, size, error_out); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | } |
| 92 | |
Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 93 | static int con_remove(int n, char **error_out) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | { |
Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 95 | return line_remove(vts, ARRAY_SIZE(vts), n, error_out); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | } |
| 97 | |
| 98 | static int con_open(struct tty_struct *tty, struct file *filp) |
| 99 | { |
Jeff Dike | d14ad81 | 2007-07-15 23:38:54 -0700 | [diff] [blame] | 100 | int err = line_open(vts, tty); |
| 101 | if (err) |
| 102 | printk(KERN_ERR "Failed to open console %d, err = %d\n", |
| 103 | tty->index, err); |
| 104 | |
| 105 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | } |
| 107 | |
Jeff Dike | 730760e | 2006-09-29 01:58:50 -0700 | [diff] [blame] | 108 | /* Set in an initcall, checked in an exitcall */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | static int con_init_done = 0; |
| 110 | |
Jeff Dike | 5e7672e | 2006-09-27 01:50:33 -0700 | [diff] [blame] | 111 | static const struct tty_operations console_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | .open = con_open, |
| 113 | .close = line_close, |
| 114 | .write = line_write, |
Paolo 'Blaisorblade' Giarrusso | b97b77c | 2005-05-01 08:58:56 -0700 | [diff] [blame] | 115 | .put_char = line_put_char, |
Jeff Dike | d50084a | 2006-01-06 00:18:50 -0800 | [diff] [blame] | 116 | .write_room = line_write_room, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | .chars_in_buffer = line_chars_in_buffer, |
Paolo 'Blaisorblade' Giarrusso | b97b77c | 2005-05-01 08:58:56 -0700 | [diff] [blame] | 118 | .flush_buffer = line_flush_buffer, |
| 119 | .flush_chars = line_flush_chars, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | .set_termios = line_set_termios, |
| 121 | .ioctl = line_ioctl, |
Jeff Dike | e4dcee8 | 2006-01-06 00:18:58 -0800 | [diff] [blame] | 122 | .throttle = line_throttle, |
| 123 | .unthrottle = line_unthrottle, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | }; |
| 125 | |
| 126 | static void uml_console_write(struct console *console, const char *string, |
Jeff Dike | d50084a | 2006-01-06 00:18:50 -0800 | [diff] [blame] | 127 | unsigned len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | { |
| 129 | struct line *line = &vts[console->index]; |
Paolo 'Blaisorblade' Giarrusso | b97b77c | 2005-05-01 08:58:56 -0700 | [diff] [blame] | 130 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | |
Paolo 'Blaisorblade' Giarrusso | b97b77c | 2005-05-01 08:58:56 -0700 | [diff] [blame] | 132 | spin_lock_irqsave(&line->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | console_write_chan(&line->chan_list, string, len); |
Paolo 'Blaisorblade' Giarrusso | b97b77c | 2005-05-01 08:58:56 -0700 | [diff] [blame] | 134 | spin_unlock_irqrestore(&line->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | } |
| 136 | |
| 137 | static struct tty_driver *uml_console_device(struct console *c, int *index) |
| 138 | { |
| 139 | *index = c->index; |
| 140 | return console_driver; |
| 141 | } |
| 142 | |
| 143 | static int uml_console_setup(struct console *co, char *options) |
| 144 | { |
| 145 | struct line *line = &vts[co->index]; |
| 146 | |
Jeff Dike | a52f362 | 2007-02-10 01:44:06 -0800 | [diff] [blame] | 147 | return console_open_chan(line, co); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | } |
| 149 | |
Jeff Dike | d5c9ffc | 2007-02-10 01:44:08 -0800 | [diff] [blame] | 150 | /* No locking for register_console call - relies on single-threaded initcalls */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | static struct console stdiocons = { |
| 152 | .name = "tty", |
| 153 | .write = uml_console_write, |
| 154 | .device = uml_console_device, |
| 155 | .setup = uml_console_setup, |
Paolo 'Blaisorblade' Giarrusso | b533788 | 2007-03-07 20:41:11 -0800 | [diff] [blame] | 156 | .flags = CON_PRINTBUFFER|CON_ANYTIME, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | .index = -1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | }; |
| 159 | |
WANG Cong | 074a0db | 2008-04-28 02:13:57 -0700 | [diff] [blame] | 160 | static int stdio_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | { |
| 162 | char *new_title; |
Al Viro | 43574c1 | 2011-09-09 17:25:00 -0400 | [diff] [blame] | 163 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | |
Al Viro | 43574c1 | 2011-09-09 17:25:00 -0400 | [diff] [blame] | 165 | for (i = 0; i < MAX_TTYS; i++) { |
| 166 | char *s = vt_conf[i]; |
| 167 | if (!s) |
| 168 | s = def_conf; |
| 169 | if (!s) |
| 170 | s = i ? CONFIG_CON_CHAN : CONFIG_CON_ZERO_CHAN; |
| 171 | if (s && strcmp(s, "none") != 0) { |
| 172 | vts[i].init_str = s; |
| 173 | vts[i].valid = 1; |
| 174 | } |
| 175 | spin_lock_init(&vts[i].lock); |
Al Viro | d8c215a | 2011-09-09 17:36:37 -0400 | [diff] [blame] | 176 | mutex_init(&vts[i].count_lock); |
Al Viro | 43574c1 | 2011-09-09 17:25:00 -0400 | [diff] [blame] | 177 | vts[i].driver = &driver; |
| 178 | } |
Jeff Dike | d5c9ffc | 2007-02-10 01:44:08 -0800 | [diff] [blame] | 179 | console_driver = register_lines(&driver, &console_ops, vts, |
| 180 | ARRAY_SIZE(vts)); |
Jeff Dike | d50084a | 2006-01-06 00:18:50 -0800 | [diff] [blame] | 181 | if (console_driver == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | return -1; |
| 183 | printk(KERN_INFO "Initialized stdio console driver\n"); |
| 184 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | new_title = add_xterm_umid(opts.xterm_title); |
| 186 | if(new_title != NULL) |
| 187 | opts.xterm_title = new_title; |
| 188 | |
Davide Brini | 57ac895 | 2007-05-06 14:51:16 -0700 | [diff] [blame] | 189 | lines_init(vts, ARRAY_SIZE(vts), &opts); |
| 190 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | con_init_done = 1; |
| 192 | register_console(&stdiocons); |
Jeff Dike | d50084a | 2006-01-06 00:18:50 -0800 | [diff] [blame] | 193 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | } |
| 195 | late_initcall(stdio_init); |
| 196 | |
| 197 | static void console_exit(void) |
| 198 | { |
| 199 | if (!con_init_done) |
| 200 | return; |
Jeff Dike | 0834cc7 | 2006-01-06 00:18:51 -0800 | [diff] [blame] | 201 | close_lines(vts, ARRAY_SIZE(vts)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | } |
| 203 | __uml_exitcall(console_exit); |
| 204 | |
| 205 | static int console_chan_setup(char *str) |
| 206 | { |
Al Viro | 43574c1 | 2011-09-09 17:25:00 -0400 | [diff] [blame] | 207 | line_setup(vt_conf, MAX_TTYS, &def_conf, str, "console"); |
Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 208 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | } |
| 210 | __setup("con", console_chan_setup); |
| 211 | __channel_help(console_chan_setup, "con"); |