blob: 9a4cd0a932b363f10b0e58760fb439dcfe5edead [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * USB Serial Console driver
3 *
4 * Copyright (C) 2001 - 2002 Greg Kroah-Hartman (greg@kroah.com)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License version
8 * 2 as published by the Free Software Foundation.
Alan Cox4dbd5a02008-07-22 11:09:57 +01009 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * Thanks to Randy Dunlap for the original version of this code.
11 *
12 */
13
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/kernel.h>
15#include <linux/init.h>
16#include <linux/slab.h>
17#include <linux/tty.h>
18#include <linux/console.h>
19#include <linux/usb.h>
Greg Kroah-Hartmana9698882006-07-11 21:22:58 -070020#include <linux/usb/serial.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22static int debug;
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024struct usbcons_info {
25 int magic;
26 int break_flag;
27 struct usb_serial_port *port;
28};
29
30static struct usbcons_info usbcons_info;
31static struct console usbcons;
32
33/*
34 * ------------------------------------------------------------
35 * USB Serial console driver
36 *
37 * Much of the code here is copied from drivers/char/serial.c
38 * and implements a phony serial console in the same way that
39 * serial.c does so that in case some software queries it,
40 * it will get the same results.
41 *
42 * Things that are different from the way the serial port code
43 * does things, is that we call the lower level usb-serial
44 * driver code to initialize the device, and we set the initial
45 * console speeds based on the command line arguments.
46 * ------------------------------------------------------------
47 */
48
49
50/*
51 * The parsing of the command line works exactly like the
52 * serial.c code, except that the specifier is "ttyUSB" instead
53 * of "ttyS".
54 */
Paul Fulghum69a4bf72006-04-12 23:41:59 +020055static int usb_console_setup(struct console *co, char *options)
Linus Torvalds1da177e2005-04-16 15:20:36 -070056{
57 struct usbcons_info *info = &usbcons_info;
58 int baud = 9600;
59 int bits = 8;
60 int parity = 'n';
61 int doflow = 0;
62 int cflag = CREAD | HUPCL | CLOCAL;
63 char *s;
64 struct usb_serial *serial;
65 struct usb_serial_port *port;
66 int retval = 0;
Aristeu Rozanskic87d6a42007-11-13 17:22:07 -050067 struct tty_struct *tty = NULL;
68 struct ktermios *termios = NULL, dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Alan Cox4dbd5a02008-07-22 11:09:57 +010070 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
72 if (options) {
73 baud = simple_strtoul(options, NULL, 10);
74 s = options;
75 while (*s >= '0' && *s <= '9')
76 s++;
77 if (*s)
78 parity = *s++;
79 if (*s)
80 bits = *s++ - '0';
81 if (*s)
82 doflow = (*s++ == 'r');
83 }
84
85 /* build a cflag setting */
86 switch (baud) {
Alan Cox4dbd5a02008-07-22 11:09:57 +010087 case 1200:
88 cflag |= B1200;
89 break;
90 case 2400:
91 cflag |= B2400;
92 break;
93 case 4800:
94 cflag |= B4800;
95 break;
96 case 19200:
97 cflag |= B19200;
98 break;
99 case 38400:
100 cflag |= B38400;
101 break;
102 case 57600:
103 cflag |= B57600;
104 break;
105 case 115200:
106 cflag |= B115200;
107 break;
108 case 9600:
109 default:
110 cflag |= B9600;
111 /*
112 * Set this to a sane value to prevent a divide error
113 */
114 baud = 9600;
115 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 }
117 switch (bits) {
Alan Cox4dbd5a02008-07-22 11:09:57 +0100118 case 7:
119 cflag |= CS7;
120 break;
121 default:
122 case 8:
123 cflag |= CS8;
124 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 }
126 switch (parity) {
Alan Cox4dbd5a02008-07-22 11:09:57 +0100127 case 'o': case 'O':
128 cflag |= PARODD;
129 break;
130 case 'e': case 'E':
131 cflag |= PARENB;
132 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 }
134 co->cflag = cflag;
135
Aristeu Rozanski27680d22007-11-12 15:14:49 -0500136 /*
137 * no need to check the index here: if the index is wrong, console
138 * code won't call us
139 */
140 serial = usb_serial_get_by_index(co->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 if (serial == NULL) {
142 /* no device is connected yet, sorry :( */
Alan Cox4dbd5a02008-07-22 11:09:57 +0100143 err("No USB device connected to ttyUSB%i", co->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 return -ENODEV;
145 }
146
147 port = serial->port[0];
Alan Cox95da3102008-07-22 11:09:07 +0100148 port->port.tty = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
150 info->port = port;
Alan Cox4dbd5a02008-07-22 11:09:57 +0100151
Alan Cox95da3102008-07-22 11:09:07 +0100152 ++port->port.count;
153 if (port->port.count == 1) {
Aristeu Rozanskic87d6a42007-11-13 17:22:07 -0500154 if (serial->type->set_termios) {
155 /*
156 * allocate a fake tty so the driver can initialize
157 * the termios structure, then later call set_termios to
158 * configure according to command line arguments
159 */
160 tty = kzalloc(sizeof(*tty), GFP_KERNEL);
161 if (!tty) {
162 retval = -ENOMEM;
163 err("no more memory");
164 goto reset_open_count;
165 }
166 termios = kzalloc(sizeof(*termios), GFP_KERNEL);
167 if (!termios) {
168 retval = -ENOMEM;
169 err("no more memory");
170 goto free_tty;
171 }
172 memset(&dummy, 0, sizeof(struct ktermios));
173 tty->termios = termios;
Alan Cox95da3102008-07-22 11:09:07 +0100174 port->port.tty = tty;
Aristeu Rozanskic87d6a42007-11-13 17:22:07 -0500175 }
176
Alan Cox4dbd5a02008-07-22 11:09:57 +0100177 /* only call the device specific open if this
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 * is the first time the port is opened */
179 if (serial->type->open)
Alan Cox95da3102008-07-22 11:09:07 +0100180 retval = serial->type->open(NULL, port, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 else
Alan Cox95da3102008-07-22 11:09:07 +0100182 retval = usb_serial_generic_open(NULL, port, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Aristeu Rozanskic87d6a42007-11-13 17:22:07 -0500184 if (retval) {
185 err("could not open USB console port");
186 goto free_termios;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Aristeu Rozanskic87d6a42007-11-13 17:22:07 -0500189 if (serial->type->set_termios) {
190 termios->c_cflag = cflag;
Alan Cox95da3102008-07-22 11:09:07 +0100191 serial->type->set_termios(NULL, port, &dummy);
Aristeu Rozanskic87d6a42007-11-13 17:22:07 -0500192
Alan Cox95da3102008-07-22 11:09:07 +0100193 port->port.tty = NULL;
Aristeu Rozanskic87d6a42007-11-13 17:22:07 -0500194 kfree(termios);
195 kfree(tty);
196 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 }
Aristeu Rozanskic87d6a42007-11-13 17:22:07 -0500198
Aristeu Rozanski9a6b1ef2007-11-12 15:15:02 -0500199 port->console = 1;
Aristeu Rozanskic87d6a42007-11-13 17:22:07 -0500200 retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Aristeu Rozanskic87d6a42007-11-13 17:22:07 -0500202out:
203 return retval;
204free_termios:
205 kfree(termios);
Alan Cox95da3102008-07-22 11:09:07 +0100206 port->port.tty = NULL;
Aristeu Rozanskic87d6a42007-11-13 17:22:07 -0500207free_tty:
208 kfree(tty);
209reset_open_count:
Alan Cox95da3102008-07-22 11:09:07 +0100210 port->port.count = 0;
Aristeu Rozanskic87d6a42007-11-13 17:22:07 -0500211goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212}
213
Alan Cox4dbd5a02008-07-22 11:09:57 +0100214static void usb_console_write(struct console *co,
215 const char *buf, unsigned count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216{
217 static struct usbcons_info *info = &usbcons_info;
218 struct usb_serial_port *port = info->port;
219 struct usb_serial *serial;
220 int retval = -ENODEV;
221
Guennadi Liakhovetski73e487f2006-04-25 07:46:17 +0200222 if (!port || port->serial->dev->state == USB_STATE_NOTATTACHED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 return;
224 serial = port->serial;
225
226 if (count == 0)
227 return;
228
Harvey Harrison441b62c2008-03-03 16:08:34 -0800229 dbg("%s - port %d, %d byte(s)", __func__, port->number, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Alan Cox95da3102008-07-22 11:09:07 +0100231 if (!port->port.count) {
Alan Cox4dbd5a02008-07-22 11:09:57 +0100232 dbg("%s - port not opened", __func__);
Paul Fulghumc10746d2006-04-13 22:26:35 +0200233 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 }
235
Paul Fulghumc10746d2006-04-13 22:26:35 +0200236 while (count) {
237 unsigned int i;
238 unsigned int lf;
239 /* search for LF so we can insert CR if necessary */
Alan Cox4dbd5a02008-07-22 11:09:57 +0100240 for (i = 0, lf = 0 ; i < count ; i++) {
Paul Fulghumc10746d2006-04-13 22:26:35 +0200241 if (*(buf + i) == 10) {
242 lf = 1;
243 i++;
244 break;
245 }
246 }
Alan Cox4dbd5a02008-07-22 11:09:57 +0100247 /* pass on to the driver specific version of this function if
248 it is available */
Paul Fulghumc10746d2006-04-13 22:26:35 +0200249 if (serial->type->write)
Alan Cox95da3102008-07-22 11:09:07 +0100250 retval = serial->type->write(NULL, port, buf, i);
Paul Fulghumc10746d2006-04-13 22:26:35 +0200251 else
Alan Cox95da3102008-07-22 11:09:07 +0100252 retval = usb_serial_generic_write(NULL, port, buf, i);
Harvey Harrison441b62c2008-03-03 16:08:34 -0800253 dbg("%s - return value : %d", __func__, retval);
Paul Fulghumc10746d2006-04-13 22:26:35 +0200254 if (lf) {
255 /* append CR after LF */
256 unsigned char cr = 13;
257 if (serial->type->write)
Alan Cox4dbd5a02008-07-22 11:09:57 +0100258 retval = serial->type->write(NULL,
259 port, &cr, 1);
Paul Fulghumc10746d2006-04-13 22:26:35 +0200260 else
Alan Cox4dbd5a02008-07-22 11:09:57 +0100261 retval = usb_serial_generic_write(NULL,
262 port, &cr, 1);
Harvey Harrison441b62c2008-03-03 16:08:34 -0800263 dbg("%s - return value : %d", __func__, retval);
Paul Fulghumc10746d2006-04-13 22:26:35 +0200264 }
265 buf += i;
266 count -= i;
267 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268}
269
270static struct console usbcons = {
271 .name = "ttyUSB",
272 .write = usb_console_write,
273 .setup = usb_console_setup,
274 .flags = CON_PRINTBUFFER,
275 .index = -1,
276};
277
Guennadi Liakhovetski73e487f2006-04-25 07:46:17 +0200278void usb_serial_console_disconnect(struct usb_serial *serial)
279{
Alan Cox4dbd5a02008-07-22 11:09:57 +0100280 if (serial && serial->port && serial->port[0]
281 && serial->port[0] == usbcons_info.port) {
Guennadi Liakhovetski73e487f2006-04-25 07:46:17 +0200282 usb_serial_console_exit();
283 usb_serial_put(serial);
284 }
285}
286
Alan Cox4dbd5a02008-07-22 11:09:57 +0100287void usb_serial_console_init(int serial_debug, int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
289 debug = serial_debug;
290
291 if (minor == 0) {
Alan Cox4dbd5a02008-07-22 11:09:57 +0100292 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 * Call register_console() if this is the first device plugged
294 * in. If we call it earlier, then the callback to
295 * console_setup() will fail, as there is not a device seen by
296 * the USB subsystem yet.
297 */
298 /*
299 * Register console.
300 * NOTES:
Alan Cox4dbd5a02008-07-22 11:09:57 +0100301 * console_setup() is called (back) immediately (from
302 * register_console). console_write() is called immediately
303 * from register_console iff CON_PRINTBUFFER is set in flags.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 */
Alan Cox4dbd5a02008-07-22 11:09:57 +0100305 dbg("registering the USB serial console.");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 register_console(&usbcons);
307 }
308}
309
Alan Cox4dbd5a02008-07-22 11:09:57 +0100310void usb_serial_console_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311{
Guennadi Liakhovetski73e487f2006-04-25 07:46:17 +0200312 if (usbcons_info.port) {
313 unregister_console(&usbcons);
Alan Cox95da3102008-07-22 11:09:07 +0100314 if (usbcons_info.port->port.count)
315 usbcons_info.port->port.count--;
Guennadi Liakhovetski73e487f2006-04-25 07:46:17 +0200316 usbcons_info.port = NULL;
317 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318}
319