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