Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Cox | 4dbd5a0 | 2008-07-22 11:09:57 +0100 | [diff] [blame] | 9 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | * Thanks to Randy Dunlap for the original version of this code. |
| 11 | * |
| 12 | */ |
| 13 | |
Greg Kroah-Hartman | 92931d2 | 2012-09-13 16:30:31 -0700 | [diff] [blame] | 14 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 15 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/slab.h> |
| 18 | #include <linux/tty.h> |
| 19 | #include <linux/console.h> |
Alan Stern | 7bd032d | 2009-09-04 15:29:59 -0400 | [diff] [blame] | 20 | #include <linux/serial.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <linux/usb.h> |
Greg Kroah-Hartman | a969888 | 2006-07-11 21:22:58 -0700 | [diff] [blame] | 22 | #include <linux/usb/serial.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | struct usbcons_info { |
| 25 | int magic; |
| 26 | int break_flag; |
| 27 | struct usb_serial_port *port; |
| 28 | }; |
| 29 | |
| 30 | static struct usbcons_info usbcons_info; |
| 31 | static 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 Fulghum | 69a4bf7 | 2006-04-12 23:41:59 +0200 | [diff] [blame] | 55 | static int usb_console_setup(struct console *co, char *options) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | { |
| 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; |
Alan Stern | 7bd032d | 2009-09-04 15:29:59 -0400 | [diff] [blame] | 66 | int retval; |
Aristeu Rozanski | c87d6a4 | 2007-11-13 17:22:07 -0500 | [diff] [blame] | 67 | struct tty_struct *tty = NULL; |
Jason Wessel | 92d2c5e | 2010-03-16 16:05:44 -0500 | [diff] [blame] | 68 | struct ktermios dummy; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | if (options) { |
| 71 | baud = simple_strtoul(options, NULL, 10); |
| 72 | s = options; |
| 73 | while (*s >= '0' && *s <= '9') |
| 74 | s++; |
| 75 | if (*s) |
| 76 | parity = *s++; |
| 77 | if (*s) |
| 78 | bits = *s++ - '0'; |
| 79 | if (*s) |
| 80 | doflow = (*s++ == 'r'); |
| 81 | } |
Alan Cox | c17ee88 | 2008-07-22 11:10:08 +0100 | [diff] [blame] | 82 | |
| 83 | /* Sane default */ |
| 84 | if (baud == 0) |
| 85 | baud = 9600; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | switch (bits) { |
Alan Cox | 4dbd5a0 | 2008-07-22 11:09:57 +0100 | [diff] [blame] | 88 | case 7: |
| 89 | cflag |= CS7; |
| 90 | break; |
| 91 | default: |
| 92 | case 8: |
| 93 | cflag |= CS8; |
| 94 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | } |
| 96 | switch (parity) { |
Alan Cox | 4dbd5a0 | 2008-07-22 11:09:57 +0100 | [diff] [blame] | 97 | case 'o': case 'O': |
| 98 | cflag |= PARODD; |
| 99 | break; |
| 100 | case 'e': case 'E': |
| 101 | cflag |= PARENB; |
| 102 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | } |
| 104 | co->cflag = cflag; |
| 105 | |
Aristeu Rozanski | 27680d2 | 2007-11-12 15:14:49 -0500 | [diff] [blame] | 106 | /* |
| 107 | * no need to check the index here: if the index is wrong, console |
| 108 | * code won't call us |
| 109 | */ |
Greg Kroah-Hartman | e5b1e20 | 2013-06-07 11:04:28 -0700 | [diff] [blame] | 110 | port = usb_serial_port_get_by_minor(co->index); |
| 111 | if (port == NULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | /* no device is connected yet, sorry :( */ |
Greg Kroah-Hartman | 92931d2 | 2012-09-13 16:30:31 -0700 | [diff] [blame] | 113 | pr_err("No USB device connected to ttyUSB%i\n", co->index); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | return -ENODEV; |
| 115 | } |
Greg Kroah-Hartman | e5b1e20 | 2013-06-07 11:04:28 -0700 | [diff] [blame] | 116 | serial = port->serial; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | |
Alan Stern | 7bd032d | 2009-09-04 15:29:59 -0400 | [diff] [blame] | 118 | retval = usb_autopm_get_interface(serial->interface); |
| 119 | if (retval) |
| 120 | goto error_get_interface; |
| 121 | |
Alan Cox | 4a90f09 | 2008-10-13 10:39:46 +0100 | [diff] [blame] | 122 | tty_port_tty_set(&port->port, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | |
| 124 | info->port = port; |
Alan Cox | 4dbd5a0 | 2008-07-22 11:09:57 +0100 | [diff] [blame] | 125 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 126 | ++port->port.count; |
Alan Stern | 7bd032d | 2009-09-04 15:29:59 -0400 | [diff] [blame] | 127 | if (!test_bit(ASYNCB_INITIALIZED, &port->port.flags)) { |
Aristeu Rozanski | c87d6a4 | 2007-11-13 17:22:07 -0500 | [diff] [blame] | 128 | if (serial->type->set_termios) { |
| 129 | /* |
| 130 | * allocate a fake tty so the driver can initialize |
| 131 | * the termios structure, then later call set_termios to |
| 132 | * configure according to command line arguments |
| 133 | */ |
| 134 | tty = kzalloc(sizeof(*tty), GFP_KERNEL); |
| 135 | if (!tty) { |
| 136 | retval = -ENOMEM; |
Aristeu Rozanski | c87d6a4 | 2007-11-13 17:22:07 -0500 | [diff] [blame] | 137 | goto reset_open_count; |
| 138 | } |
Kevin Hao | e540458 | 2008-12-01 11:36:16 +0000 | [diff] [blame] | 139 | kref_init(&tty->kref); |
Jason Wessel | 92d2c5e | 2010-03-16 16:05:44 -0500 | [diff] [blame] | 140 | tty_port_tty_set(&port->port, tty); |
| 141 | tty->driver = usb_serial_tty_driver; |
| 142 | tty->index = co->index; |
Johan Hovold | d269d44 | 2015-01-05 16:04:12 +0100 | [diff] [blame^] | 143 | init_ldsem(&tty->ldisc_sem); |
Jason Wessel | 92d2c5e | 2010-03-16 16:05:44 -0500 | [diff] [blame] | 144 | if (tty_init_termios(tty)) { |
Aristeu Rozanski | c87d6a4 | 2007-11-13 17:22:07 -0500 | [diff] [blame] | 145 | retval = -ENOMEM; |
Aristeu Rozanski | c87d6a4 | 2007-11-13 17:22:07 -0500 | [diff] [blame] | 146 | goto free_tty; |
| 147 | } |
Aristeu Rozanski | c87d6a4 | 2007-11-13 17:22:07 -0500 | [diff] [blame] | 148 | } |
| 149 | |
Alan Cox | 4dbd5a0 | 2008-07-22 11:09:57 +0100 | [diff] [blame] | 150 | /* only call the device specific open if this |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | * is the first time the port is opened */ |
Johan Hovold | c7b1347 | 2013-06-26 16:47:26 +0200 | [diff] [blame] | 152 | retval = serial->type->open(NULL, port); |
Aristeu Rozanski | c87d6a4 | 2007-11-13 17:22:07 -0500 | [diff] [blame] | 153 | if (retval) { |
Greg Kroah-Hartman | 085fb96 | 2012-04-20 16:53:58 -0700 | [diff] [blame] | 154 | dev_err(&port->dev, "could not open USB console port\n"); |
Jason Wessel | 92d2c5e | 2010-03-16 16:05:44 -0500 | [diff] [blame] | 155 | goto fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | |
Aristeu Rozanski | c87d6a4 | 2007-11-13 17:22:07 -0500 | [diff] [blame] | 158 | if (serial->type->set_termios) { |
Stephen Rothwell | 2d8a100 | 2012-07-20 14:58:31 +1000 | [diff] [blame] | 159 | tty->termios.c_cflag = cflag; |
| 160 | tty_termios_encode_baud_rate(&tty->termios, baud, baud); |
Jason Wessel | 92d2c5e | 2010-03-16 16:05:44 -0500 | [diff] [blame] | 161 | memset(&dummy, 0, sizeof(struct ktermios)); |
Jason Wessel | 06dd881 | 2008-09-08 14:53:37 +0100 | [diff] [blame] | 162 | serial->type->set_termios(tty, port, &dummy); |
Aristeu Rozanski | c87d6a4 | 2007-11-13 17:22:07 -0500 | [diff] [blame] | 163 | |
Alan Cox | 4a90f09 | 2008-10-13 10:39:46 +0100 | [diff] [blame] | 164 | tty_port_tty_set(&port->port, NULL); |
Aristeu Rozanski | c87d6a4 | 2007-11-13 17:22:07 -0500 | [diff] [blame] | 165 | kfree(tty); |
| 166 | } |
Alan Stern | 7bd032d | 2009-09-04 15:29:59 -0400 | [diff] [blame] | 167 | set_bit(ASYNCB_INITIALIZED, &port->port.flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | } |
Jason Wessel | 6e40612 | 2009-06-22 11:32:20 -0500 | [diff] [blame] | 169 | /* Now that any required fake tty operations are completed restore |
| 170 | * the tty port count */ |
| 171 | --port->port.count; |
| 172 | /* The console is special in terms of closing the device so |
| 173 | * indicate this port is now acting as a system console. */ |
Jason Wessel | 336cee4 | 2010-03-08 21:50:11 -0600 | [diff] [blame] | 174 | port->port.console = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | |
Alan Stern | 7bd032d | 2009-09-04 15:29:59 -0400 | [diff] [blame] | 176 | mutex_unlock(&serial->disc_mutex); |
Aristeu Rozanski | c87d6a4 | 2007-11-13 17:22:07 -0500 | [diff] [blame] | 177 | return retval; |
Alan Stern | 7bd032d | 2009-09-04 15:29:59 -0400 | [diff] [blame] | 178 | |
Jason Wessel | 92d2c5e | 2010-03-16 16:05:44 -0500 | [diff] [blame] | 179 | fail: |
Alan Cox | 4a90f09 | 2008-10-13 10:39:46 +0100 | [diff] [blame] | 180 | tty_port_tty_set(&port->port, NULL); |
Alan Stern | 7bd032d | 2009-09-04 15:29:59 -0400 | [diff] [blame] | 181 | free_tty: |
Aristeu Rozanski | c87d6a4 | 2007-11-13 17:22:07 -0500 | [diff] [blame] | 182 | kfree(tty); |
Alan Stern | 7bd032d | 2009-09-04 15:29:59 -0400 | [diff] [blame] | 183 | reset_open_count: |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 184 | port->port.count = 0; |
Alan Stern | 7bd032d | 2009-09-04 15:29:59 -0400 | [diff] [blame] | 185 | usb_autopm_put_interface(serial->interface); |
| 186 | error_get_interface: |
| 187 | usb_serial_put(serial); |
| 188 | mutex_unlock(&serial->disc_mutex); |
| 189 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | } |
| 191 | |
Alan Cox | 4dbd5a0 | 2008-07-22 11:09:57 +0100 | [diff] [blame] | 192 | static void usb_console_write(struct console *co, |
| 193 | const char *buf, unsigned count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | { |
| 195 | static struct usbcons_info *info = &usbcons_info; |
| 196 | struct usb_serial_port *port = info->port; |
| 197 | struct usb_serial *serial; |
| 198 | int retval = -ENODEV; |
| 199 | |
Guennadi Liakhovetski | 73e487f | 2006-04-25 07:46:17 +0200 | [diff] [blame] | 200 | if (!port || port->serial->dev->state == USB_STATE_NOTATTACHED) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | return; |
| 202 | serial = port->serial; |
| 203 | |
| 204 | if (count == 0) |
| 205 | return; |
| 206 | |
Johan Hovold | 7b94cae | 2013-06-26 16:47:25 +0200 | [diff] [blame] | 207 | dev_dbg(&port->dev, "%s - %d byte(s)\n", __func__, count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | |
Jason Wessel | bd5afa9 | 2010-03-08 21:50:12 -0600 | [diff] [blame] | 209 | if (!port->port.console) { |
Johan Hovold | 7b94cae | 2013-06-26 16:47:25 +0200 | [diff] [blame] | 210 | dev_dbg(&port->dev, "%s - port not opened\n", __func__); |
Paul Fulghum | c10746d | 2006-04-13 22:26:35 +0200 | [diff] [blame] | 211 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | } |
| 213 | |
Paul Fulghum | c10746d | 2006-04-13 22:26:35 +0200 | [diff] [blame] | 214 | while (count) { |
| 215 | unsigned int i; |
| 216 | unsigned int lf; |
| 217 | /* search for LF so we can insert CR if necessary */ |
Alan Cox | 4dbd5a0 | 2008-07-22 11:09:57 +0100 | [diff] [blame] | 218 | for (i = 0, lf = 0 ; i < count ; i++) { |
Paul Fulghum | c10746d | 2006-04-13 22:26:35 +0200 | [diff] [blame] | 219 | if (*(buf + i) == 10) { |
| 220 | lf = 1; |
| 221 | i++; |
| 222 | break; |
| 223 | } |
| 224 | } |
Alan Cox | 4dbd5a0 | 2008-07-22 11:09:57 +0100 | [diff] [blame] | 225 | /* pass on to the driver specific version of this function if |
| 226 | it is available */ |
Johan Hovold | c7b1347 | 2013-06-26 16:47:26 +0200 | [diff] [blame] | 227 | retval = serial->type->write(NULL, port, buf, i); |
Johan Hovold | 7b94cae | 2013-06-26 16:47:25 +0200 | [diff] [blame] | 228 | dev_dbg(&port->dev, "%s - write: %d\n", __func__, retval); |
Paul Fulghum | c10746d | 2006-04-13 22:26:35 +0200 | [diff] [blame] | 229 | if (lf) { |
| 230 | /* append CR after LF */ |
| 231 | unsigned char cr = 13; |
Johan Hovold | c7b1347 | 2013-06-26 16:47:26 +0200 | [diff] [blame] | 232 | retval = serial->type->write(NULL, port, &cr, 1); |
Johan Hovold | 7b94cae | 2013-06-26 16:47:25 +0200 | [diff] [blame] | 233 | dev_dbg(&port->dev, "%s - write cr: %d\n", |
| 234 | __func__, retval); |
Paul Fulghum | c10746d | 2006-04-13 22:26:35 +0200 | [diff] [blame] | 235 | } |
| 236 | buf += i; |
| 237 | count -= i; |
| 238 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | } |
| 240 | |
Kevin Hao | 39efd19 | 2009-01-02 13:44:34 +0000 | [diff] [blame] | 241 | static struct tty_driver *usb_console_device(struct console *co, int *index) |
| 242 | { |
| 243 | struct tty_driver **p = (struct tty_driver **)co->data; |
| 244 | |
| 245 | if (!*p) |
| 246 | return NULL; |
| 247 | |
| 248 | *index = co->index; |
| 249 | return *p; |
| 250 | } |
| 251 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | static struct console usbcons = { |
| 253 | .name = "ttyUSB", |
| 254 | .write = usb_console_write, |
Kevin Hao | 39efd19 | 2009-01-02 13:44:34 +0000 | [diff] [blame] | 255 | .device = usb_console_device, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | .setup = usb_console_setup, |
| 257 | .flags = CON_PRINTBUFFER, |
| 258 | .index = -1, |
Kevin Hao | 39efd19 | 2009-01-02 13:44:34 +0000 | [diff] [blame] | 259 | .data = &usb_serial_tty_driver, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | }; |
| 261 | |
Guennadi Liakhovetski | 73e487f | 2006-04-25 07:46:17 +0200 | [diff] [blame] | 262 | void usb_serial_console_disconnect(struct usb_serial *serial) |
| 263 | { |
Alan Cox | 4dbd5a0 | 2008-07-22 11:09:57 +0100 | [diff] [blame] | 264 | if (serial && serial->port && serial->port[0] |
| 265 | && serial->port[0] == usbcons_info.port) { |
Guennadi Liakhovetski | 73e487f | 2006-04-25 07:46:17 +0200 | [diff] [blame] | 266 | usb_serial_console_exit(); |
| 267 | usb_serial_put(serial); |
| 268 | } |
| 269 | } |
| 270 | |
Greg Kroah-Hartman | 3033bc8 | 2012-09-18 16:05:17 +0100 | [diff] [blame] | 271 | void usb_serial_console_init(int minor) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | if (minor == 0) { |
Alan Cox | 4dbd5a0 | 2008-07-22 11:09:57 +0100 | [diff] [blame] | 274 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | * Call register_console() if this is the first device plugged |
| 276 | * in. If we call it earlier, then the callback to |
| 277 | * console_setup() will fail, as there is not a device seen by |
| 278 | * the USB subsystem yet. |
| 279 | */ |
| 280 | /* |
| 281 | * Register console. |
| 282 | * NOTES: |
Alan Cox | 4dbd5a0 | 2008-07-22 11:09:57 +0100 | [diff] [blame] | 283 | * console_setup() is called (back) immediately (from |
| 284 | * register_console). console_write() is called immediately |
| 285 | * from register_console iff CON_PRINTBUFFER is set in flags. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | */ |
Greg Kroah-Hartman | 92931d2 | 2012-09-13 16:30:31 -0700 | [diff] [blame] | 287 | pr_debug("registering the USB serial console.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | register_console(&usbcons); |
| 289 | } |
| 290 | } |
| 291 | |
Alan Cox | 4dbd5a0 | 2008-07-22 11:09:57 +0100 | [diff] [blame] | 292 | void usb_serial_console_exit(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | { |
Guennadi Liakhovetski | 73e487f | 2006-04-25 07:46:17 +0200 | [diff] [blame] | 294 | if (usbcons_info.port) { |
| 295 | unregister_console(&usbcons); |
Jason Wessel | bd5afa9 | 2010-03-08 21:50:12 -0600 | [diff] [blame] | 296 | usbcons_info.port->port.console = 0; |
Guennadi Liakhovetski | 73e487f | 2006-04-25 07:46:17 +0200 | [diff] [blame] | 297 | usbcons_info.port = NULL; |
| 298 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | } |
| 300 | |