]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - arch/um/drivers/stdio_console.c
Merge tag 'for-5.10-rc5-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/kdave...
[mirror_ubuntu-jammy-kernel.git] / arch / um / drivers / stdio_console.c
CommitLineData
dbddf429 1// SPDX-License-Identifier: GPL-2.0
1da177e4
LT
2/*
3 * Copyright (C) 2000, 2001 Jeff Dike (jdike@karaya.com)
1da177e4
LT
4 */
5
37185b33
AV
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>
1da177e4 22#include "stdio_console.h"
510c72a3 23#include "chan.h"
37185b33 24#include <irq_user.h>
1da177e4 25#include "mconsole_kern.h"
37185b33 26#include <init.h>
1da177e4
LT
27
28#define MAX_TTYS (16)
29
074a0db8 30static void stdio_announce(char *dev_name, int dev)
1da177e4
LT
31{
32 printk(KERN_INFO "Virtual console %d assigned device '%s'\n", dev,
33 dev_name);
34}
35
a52f362f 36/* Almost const, except that xterm_title may be changed in an initcall */
1da177e4
LT
37static struct chan_opts opts = {
38 .announce = stdio_announce,
39 .xterm_title = "Virtual Console #%d",
40 .raw = 1,
1da177e4
LT
41};
42
f28169d2 43static int con_config(char *str, char **error_out);
1da177e4 44static int con_get_config(char *dev, char *str, int size, char **error_out);
f28169d2 45static int con_remove(int n, char **con_remove);
1da177e4 46
d5c9ffc6
JD
47
48/* Const, except for .mc.list */
1da177e4
LT
49static struct line_driver driver = {
50 .name = "UML console",
51 .device_name = "tty",
1da177e4
LT
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",
1da177e4 60 .mc = {
c0961c18 61 .list = LIST_HEAD_INIT(driver.mc.list),
1da177e4
LT
62 .name = "con",
63 .config = con_config,
64 .get_config = con_get_config,
d50084a2 65 .id = line_id,
1da177e4
LT
66 .remove = con_remove,
67 },
68};
69
d5c9ffc6
JD
70/* The array is initialized by line_init, at initcall time. The
71 * elements are locked individually as needed.
1da177e4 72 */
43574c1a
AV
73static char *vt_conf[MAX_TTYS];
74static char *def_conf;
75static struct line vts[MAX_TTYS];
1da177e4 76
f28169d2 77static int con_config(char *str, char **error_out)
1da177e4 78{
f28169d2 79 return line_config(vts, ARRAY_SIZE(vts), str, &opts, error_out);
1da177e4
LT
80}
81
82static int con_get_config(char *dev, char *str, int size, char **error_out)
83{
0834cc77 84 return line_get_config(dev, vts, ARRAY_SIZE(vts), str, size, error_out);
1da177e4
LT
85}
86
f28169d2 87static int con_remove(int n, char **error_out)
1da177e4 88{
f28169d2 89 return line_remove(vts, ARRAY_SIZE(vts), n, error_out);
1da177e4
LT
90}
91
730760e9 92/* Set in an initcall, checked in an exitcall */
1da177e4
LT
93static int con_init_done = 0;
94
79e0273d
RW
95static int con_install(struct tty_driver *driver, struct tty_struct *tty)
96{
97 return line_install(driver, tty, &vts[tty->index]);
98}
99
5e7672ec 100static const struct tty_operations console_ops = {
79e0273d
RW
101 .open = line_open,
102 .install = con_install,
1da177e4
LT
103 .close = line_close,
104 .write = line_write,
d50084a2 105 .write_room = line_write_room,
1da177e4 106 .chars_in_buffer = line_chars_in_buffer,
b97b77cc
PBG
107 .flush_buffer = line_flush_buffer,
108 .flush_chars = line_flush_chars,
1da177e4 109 .set_termios = line_set_termios,
e4dcee80
JD
110 .throttle = line_throttle,
111 .unthrottle = line_unthrottle,
79e0273d 112 .hangup = line_hangup,
1da177e4
LT
113};
114
115static void uml_console_write(struct console *console, const char *string,
d50084a2 116 unsigned len)
1da177e4
LT
117{
118 struct line *line = &vts[console->index];
b97b77cc 119 unsigned long flags;
1da177e4 120
b97b77cc 121 spin_lock_irqsave(&line->lock, flags);
bed5e39c 122 console_write_chan(line->chan_out, string, len);
b97b77cc 123 spin_unlock_irqrestore(&line->lock, flags);
1da177e4
LT
124}
125
126static struct tty_driver *uml_console_device(struct console *c, int *index)
127{
128 *index = c->index;
cfe6b7c7 129 return driver.driver;
1da177e4
LT
130}
131
132static int uml_console_setup(struct console *co, char *options)
133{
134 struct line *line = &vts[co->index];
135
a52f362f 136 return console_open_chan(line, co);
1da177e4
LT
137}
138
d5c9ffc6 139/* No locking for register_console call - relies on single-threaded initcalls */
1da177e4
LT
140static struct console stdiocons = {
141 .name = "tty",
142 .write = uml_console_write,
143 .device = uml_console_device,
144 .setup = uml_console_setup,
b5337885 145 .flags = CON_PRINTBUFFER|CON_ANYTIME,
1da177e4 146 .index = -1,
1da177e4
LT
147};
148
074a0db8 149static int stdio_init(void)
1da177e4
LT
150{
151 char *new_title;
cfe6b7c7 152 int err;
43574c1a
AV
153 int i;
154
cfe6b7c7 155 err = register_lines(&driver, &console_ops, vts,
d5c9ffc6 156 ARRAY_SIZE(vts));
cfe6b7c7
AV
157 if (err)
158 return err;
04292b2c 159
1da177e4
LT
160 printk(KERN_INFO "Initialized stdio console driver\n");
161
1da177e4
LT
162 new_title = add_xterm_umid(opts.xterm_title);
163 if(new_title != NULL)
164 opts.xterm_title = new_title;
165
04292b2c
AV
166 for (i = 0; i < MAX_TTYS; i++) {
167 char *error;
168 char *s = vt_conf[i];
169 if (!s)
170 s = def_conf;
171 if (!s)
172 s = i ? CONFIG_CON_CHAN : CONFIG_CON_ZERO_CHAN;
173 if (setup_one_line(vts, i, s, &opts, &error))
174 printk(KERN_ERR "setup_one_line failed for "
175 "device %d : %s\n", i, error);
176 }
57ac895a 177
1da177e4
LT
178 con_init_done = 1;
179 register_console(&stdiocons);
d50084a2 180 return 0;
1da177e4
LT
181}
182late_initcall(stdio_init);
183
184static void console_exit(void)
185{
186 if (!con_init_done)
187 return;
0834cc77 188 close_lines(vts, ARRAY_SIZE(vts));
1da177e4
LT
189}
190__uml_exitcall(console_exit);
191
192static int console_chan_setup(char *str)
193{
745a600c
MH
194 if (!strncmp(str, "sole=", 5)) /* console= option specifies tty */
195 return 0;
196
43574c1a 197 line_setup(vt_conf, MAX_TTYS, &def_conf, str, "console");
f28169d2 198 return 1;
1da177e4
LT
199}
200__setup("con", console_chan_setup);
201__channel_help(console_chan_setup, "con");