Merge remote-tracking branch 'kvm-ppc-paulus/kvm-ppc-next'
[deliverable/linux.git] / arch / um / drivers / ssl.c
CommitLineData
1da177e4
LT
1/*
2 * Copyright (C) 2000, 2002 Jeff Dike (jdike@karaya.com)
3 * Licensed under the GPL
4 */
5
37185b33
AV
6#include <linux/fs.h>
7#include <linux/tty.h>
8#include <linux/tty_driver.h>
9#include <linux/major.h>
10#include <linux/mm.h>
11#include <linux/init.h>
12#include <linux/console.h>
13#include <asm/termbits.h>
14#include <asm/irq.h>
1da177e4 15#include "ssl.h"
510c72a3 16#include "chan.h"
37185b33
AV
17#include <init.h>
18#include <irq_user.h>
1da177e4 19#include "mconsole_kern.h"
1da177e4 20
5e7672ec 21static const int ssl_version = 1;
1da177e4 22
1da177e4
LT
23#define NR_PORTS 64
24
42947cb9 25static void ssl_announce(char *dev_name, int dev)
1da177e4
LT
26{
27 printk(KERN_INFO "Serial line %d assigned device '%s'\n", dev,
28 dev_name);
29}
30
a52f362f 31/* Almost const, except that xterm_title may be changed in an initcall */
1da177e4
LT
32static struct chan_opts opts = {
33 .announce = ssl_announce,
34 .xterm_title = "Serial Line #%d",
35 .raw = 1,
1da177e4
LT
36};
37
f28169d2 38static int ssl_config(char *str, char **error_out);
1da177e4 39static int ssl_get_config(char *dev, char *str, int size, char **error_out);
f28169d2 40static int ssl_remove(int n, char **error_out);
1da177e4 41
d5c9ffc6
JD
42
43/* Const, except for .mc.list */
1da177e4
LT
44static struct line_driver driver = {
45 .name = "UML serial line",
46 .device_name = "ttyS",
1da177e4
LT
47 .major = TTY_MAJOR,
48 .minor_start = 64,
49 .type = TTY_DRIVER_TYPE_SERIAL,
50 .subtype = 0,
51 .read_irq = SSL_IRQ,
52 .read_irq_name = "ssl",
53 .write_irq = SSL_WRITE_IRQ,
54 .write_irq_name = "ssl-write",
1da177e4 55 .mc = {
84f48d4f 56 .list = LIST_HEAD_INIT(driver.mc.list),
1da177e4
LT
57 .name = "ssl",
58 .config = ssl_config,
59 .get_config = ssl_get_config,
d50084a2 60 .id = line_id,
1da177e4
LT
61 .remove = ssl_remove,
62 },
63};
64
d5c9ffc6
JD
65/* The array is initialized by line_init, at initcall time. The
66 * elements are locked individually as needed.
1da177e4 67 */
43574c1a
AV
68static char *conf[NR_PORTS];
69static char *def_conf = CONFIG_SSL_CHAN;
70static struct line serial_lines[NR_PORTS];
1da177e4 71
f28169d2 72static int ssl_config(char *str, char **error_out)
1da177e4 73{
f28169d2
JD
74 return line_config(serial_lines, ARRAY_SIZE(serial_lines), str, &opts,
75 error_out);
1da177e4
LT
76}
77
78static int ssl_get_config(char *dev, char *str, int size, char **error_out)
79{
0834cc77
JD
80 return line_get_config(dev, serial_lines, ARRAY_SIZE(serial_lines), str,
81 size, error_out);
1da177e4
LT
82}
83
f28169d2 84static int ssl_remove(int n, char **error_out)
1da177e4 85{
f28169d2
JD
86 return line_remove(serial_lines, ARRAY_SIZE(serial_lines), n,
87 error_out);
1da177e4
LT
88}
89
79e0273d 90static int ssl_install(struct tty_driver *driver, struct tty_struct *tty)
1da177e4 91{
79e0273d 92 return line_install(driver, tty, &serial_lines[tty->index]);
1da177e4
LT
93}
94
5e7672ec 95static const struct tty_operations ssl_ops = {
79e0273d 96 .open = line_open,
1da177e4
LT
97 .close = line_close,
98 .write = line_write,
99 .put_char = line_put_char,
100 .write_room = line_write_room,
101 .chars_in_buffer = line_chars_in_buffer,
b97b77cc
PBG
102 .flush_buffer = line_flush_buffer,
103 .flush_chars = line_flush_chars,
1da177e4 104 .set_termios = line_set_termios,
e4dcee80
JD
105 .throttle = line_throttle,
106 .unthrottle = line_unthrottle,
79e0273d 107 .install = ssl_install,
79e0273d 108 .hangup = line_hangup,
1da177e4
LT
109};
110
111/* Changed by ssl_init and referenced by ssl_exit, which are both serialized
112 * by being an initcall and exitcall, respectively.
113 */
114static int ssl_init_done = 0;
115
116static void ssl_console_write(struct console *c, const char *string,
117 unsigned len)
118{
119 struct line *line = &serial_lines[c->index];
b97b77cc 120 unsigned long flags;
1da177e4 121
b97b77cc 122 spin_lock_irqsave(&line->lock, flags);
bed5e39c 123 console_write_chan(line->chan_out, string, len);
b97b77cc 124 spin_unlock_irqrestore(&line->lock, flags);
1da177e4
LT
125}
126
127static struct tty_driver *ssl_console_device(struct console *c, int *index)
128{
129 *index = c->index;
cfe6b7c7 130 return driver.driver;
1da177e4
LT
131}
132
133static int ssl_console_setup(struct console *co, char *options)
134{
135 struct line *line = &serial_lines[co->index];
136
a52f362f 137 return console_open_chan(line, co);
1da177e4
LT
138}
139
d5c9ffc6 140/* No locking for register_console call - relies on single-threaded initcalls */
1da177e4
LT
141static struct console ssl_cons = {
142 .name = "ttyS",
143 .write = ssl_console_write,
144 .device = ssl_console_device,
145 .setup = ssl_console_setup,
b5337885 146 .flags = CON_PRINTBUFFER|CON_ANYTIME,
1da177e4
LT
147 .index = -1,
148};
149
42947cb9 150static int ssl_init(void)
1da177e4
LT
151{
152 char *new_title;
cfe6b7c7 153 int err;
43574c1a 154 int i;
1da177e4 155
d50084a2 156 printk(KERN_INFO "Initializing software serial port version %d\n",
1da177e4 157 ssl_version);
43574c1a 158
cfe6b7c7 159 err = register_lines(&driver, &ssl_ops, serial_lines,
d5c9ffc6 160 ARRAY_SIZE(serial_lines));
cfe6b7c7
AV
161 if (err)
162 return err;
1da177e4 163
1da177e4
LT
164 new_title = add_xterm_umid(opts.xterm_title);
165 if (new_title != NULL)
166 opts.xterm_title = new_title;
167
04292b2c
AV
168 for (i = 0; i < NR_PORTS; i++) {
169 char *error;
170 char *s = conf[i];
171 if (!s)
172 s = def_conf;
173 if (setup_one_line(serial_lines, 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 ssl_init_done = 1;
179 register_console(&ssl_cons);
d50084a2 180 return 0;
1da177e4
LT
181}
182late_initcall(ssl_init);
183
184static void ssl_exit(void)
185{
186 if (!ssl_init_done)
187 return;
0834cc77 188 close_lines(serial_lines, ARRAY_SIZE(serial_lines));
1da177e4
LT
189}
190__uml_exitcall(ssl_exit);
191
192static int ssl_chan_setup(char *str)
193{
43574c1a 194 line_setup(conf, NR_PORTS, &def_conf, str, "serial line");
f28169d2 195 return 1;
1da177e4
LT
196}
197
198__setup("ssl", ssl_chan_setup);
199__channel_help(ssl_chan_setup, "ssl");
This page took 0.884725 seconds and 5 git commands to generate.