1 /* 2 * USB Serial Converter Generic functions 3 * 4 * Copyright (C) 1999 - 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. 9 * 10 */ 11 12 #include <linux/kernel.h> 13 #include <linux/errno.h> 14 #include <linux/slab.h> 15 #include <linux/sysrq.h> 16 #include <linux/tty.h> 17 #include <linux/tty_flip.h> 18 #include <linux/module.h> 19 #include <linux/moduleparam.h> 20 #include <linux/usb.h> 21 #include <linux/usb/serial.h> 22 #include <linux/uaccess.h> 23 #include <linux/kfifo.h> 24 #include <linux/serial.h> 25 26 static int debug; 27 28 #ifdef CONFIG_USB_SERIAL_GENERIC 29 30 static int generic_probe(struct usb_interface *interface, 31 const struct usb_device_id *id); 32 33 static __u16 vendor = 0x05f9; 34 static __u16 product = 0xffff; 35 36 module_param(vendor, ushort, 0); 37 MODULE_PARM_DESC(vendor, "User specified USB idVendor"); 38 39 module_param(product, ushort, 0); 40 MODULE_PARM_DESC(product, "User specified USB idProduct"); 41 42 static struct usb_device_id generic_device_ids[2]; /* Initially all zeroes. */ 43 44 /* we want to look at all devices, as the vendor/product id can change 45 * depending on the command line argument */ 46 static const struct usb_device_id generic_serial_ids[] = { 47 {.driver_info = 42}, 48 {} 49 }; 50 51 static struct usb_driver generic_driver = { 52 .name = "usbserial_generic", 53 .probe = generic_probe, 54 .disconnect = usb_serial_disconnect, 55 .id_table = generic_serial_ids, 56 .no_dynamic_id = 1, 57 }; 58 59 /* All of the device info needed for the Generic Serial Converter */ 60 struct usb_serial_driver usb_serial_generic_device = { 61 .driver = { 62 .owner = THIS_MODULE, 63 .name = "generic", 64 }, 65 .id_table = generic_device_ids, 66 .usb_driver = &generic_driver, 67 .num_ports = 1, 68 .disconnect = usb_serial_generic_disconnect, 69 .release = usb_serial_generic_release, 70 .throttle = usb_serial_generic_throttle, 71 .unthrottle = usb_serial_generic_unthrottle, 72 .resume = usb_serial_generic_resume, 73 }; 74 75 static int generic_probe(struct usb_interface *interface, 76 const struct usb_device_id *id) 77 { 78 const struct usb_device_id *id_pattern; 79 80 id_pattern = usb_match_id(interface, generic_device_ids); 81 if (id_pattern != NULL) 82 return usb_serial_probe(interface, id); 83 return -ENODEV; 84 } 85 #endif 86 87 int usb_serial_generic_register(int _debug) 88 { 89 int retval = 0; 90 91 debug = _debug; 92 #ifdef CONFIG_USB_SERIAL_GENERIC 93 generic_device_ids[0].idVendor = vendor; 94 generic_device_ids[0].idProduct = product; 95 generic_device_ids[0].match_flags = 96 USB_DEVICE_ID_MATCH_VENDOR | USB_DEVICE_ID_MATCH_PRODUCT; 97 98 /* register our generic driver with ourselves */ 99 retval = usb_serial_register(&usb_serial_generic_device); 100 if (retval) 101 goto exit; 102 retval = usb_register(&generic_driver); 103 if (retval) 104 usb_serial_deregister(&usb_serial_generic_device); 105 exit: 106 #endif 107 return retval; 108 } 109 110 void usb_serial_generic_deregister(void) 111 { 112 #ifdef CONFIG_USB_SERIAL_GENERIC 113 /* remove our generic driver */ 114 usb_deregister(&generic_driver); 115 usb_serial_deregister(&usb_serial_generic_device); 116 #endif 117 } 118 119 int usb_serial_generic_open(struct tty_struct *tty, struct usb_serial_port *port) 120 { 121 struct usb_serial *serial = port->serial; 122 int result = 0; 123 unsigned long flags; 124 125 dbg("%s - port %d", __func__, port->number); 126 127 /* clear the throttle flags */ 128 spin_lock_irqsave(&port->lock, flags); 129 port->throttled = 0; 130 port->throttle_req = 0; 131 spin_unlock_irqrestore(&port->lock, flags); 132 133 /* if we have a bulk endpoint, start reading from it */ 134 if (port->bulk_in_size) { 135 /* Start reading from the device */ 136 usb_fill_bulk_urb(port->read_urb, serial->dev, 137 usb_rcvbulkpipe(serial->dev, 138 port->bulk_in_endpointAddress), 139 port->read_urb->transfer_buffer, 140 port->read_urb->transfer_buffer_length, 141 ((serial->type->read_bulk_callback) ? 142 serial->type->read_bulk_callback : 143 usb_serial_generic_read_bulk_callback), 144 port); 145 result = usb_submit_urb(port->read_urb, GFP_KERNEL); 146 if (result) 147 dev_err(&port->dev, 148 "%s - failed resubmitting read urb, error %d\n", 149 __func__, result); 150 } 151 152 return result; 153 } 154 EXPORT_SYMBOL_GPL(usb_serial_generic_open); 155 156 static void generic_cleanup(struct usb_serial_port *port) 157 { 158 struct usb_serial *serial = port->serial; 159 unsigned long flags; 160 161 dbg("%s - port %d", __func__, port->number); 162 163 if (serial->dev) { 164 /* shutdown any bulk transfers that might be going on */ 165 if (port->bulk_out_size) { 166 usb_kill_urb(port->write_urb); 167 168 spin_lock_irqsave(&port->lock, flags); 169 kfifo_reset_out(&port->write_fifo); 170 spin_unlock_irqrestore(&port->lock, flags); 171 } 172 if (port->bulk_in_size) 173 usb_kill_urb(port->read_urb); 174 } 175 } 176 177 void usb_serial_generic_close(struct usb_serial_port *port) 178 { 179 dbg("%s - port %d", __func__, port->number); 180 generic_cleanup(port); 181 } 182 183 static int usb_serial_multi_urb_write(struct tty_struct *tty, 184 struct usb_serial_port *port, const unsigned char *buf, int count) 185 { 186 unsigned long flags; 187 struct urb *urb; 188 unsigned char *buffer; 189 int status; 190 int towrite; 191 int bwrite = 0; 192 193 dbg("%s - port %d", __func__, port->number); 194 195 if (count == 0) 196 dbg("%s - write request of 0 bytes", __func__); 197 198 while (count > 0) { 199 towrite = (count > port->bulk_out_size) ? 200 port->bulk_out_size : count; 201 spin_lock_irqsave(&port->lock, flags); 202 if (port->urbs_in_flight > 203 port->serial->type->max_in_flight_urbs) { 204 spin_unlock_irqrestore(&port->lock, flags); 205 dbg("%s - write limit hit", __func__); 206 return bwrite; 207 } 208 port->tx_bytes_flight += towrite; 209 port->urbs_in_flight++; 210 spin_unlock_irqrestore(&port->lock, flags); 211 212 buffer = kmalloc(towrite, GFP_ATOMIC); 213 if (!buffer) { 214 dev_err(&port->dev, 215 "%s ran out of kernel memory for urb ...\n", __func__); 216 goto error_no_buffer; 217 } 218 219 urb = usb_alloc_urb(0, GFP_ATOMIC); 220 if (!urb) { 221 dev_err(&port->dev, "%s - no more free urbs\n", 222 __func__); 223 goto error_no_urb; 224 } 225 226 /* Copy data */ 227 memcpy(buffer, buf + bwrite, towrite); 228 usb_serial_debug_data(debug, &port->dev, __func__, 229 towrite, buffer); 230 /* fill the buffer and send it */ 231 usb_fill_bulk_urb(urb, port->serial->dev, 232 usb_sndbulkpipe(port->serial->dev, 233 port->bulk_out_endpointAddress), 234 buffer, towrite, 235 usb_serial_generic_write_bulk_callback, port); 236 237 status = usb_submit_urb(urb, GFP_ATOMIC); 238 if (status) { 239 dev_err(&port->dev, 240 "%s - failed submitting write urb, error %d\n", 241 __func__, status); 242 goto error; 243 } 244 245 /* This urb is the responsibility of the host driver now */ 246 usb_free_urb(urb); 247 dbg("%s write: %d", __func__, towrite); 248 count -= towrite; 249 bwrite += towrite; 250 } 251 return bwrite; 252 253 error: 254 usb_free_urb(urb); 255 error_no_urb: 256 kfree(buffer); 257 error_no_buffer: 258 spin_lock_irqsave(&port->lock, flags); 259 port->urbs_in_flight--; 260 port->tx_bytes_flight -= towrite; 261 spin_unlock_irqrestore(&port->lock, flags); 262 return bwrite; 263 } 264 265 /** 266 * usb_serial_generic_write_start - kick off an URB write 267 * @port: Pointer to the &struct usb_serial_port data 268 * 269 * Returns the number of bytes queued on success. This will be zero if there 270 * was nothing to send. Otherwise, it returns a negative errno value 271 */ 272 static int usb_serial_generic_write_start(struct usb_serial_port *port) 273 { 274 struct usb_serial *serial = port->serial; 275 unsigned char *data; 276 int result; 277 int count; 278 unsigned long flags; 279 bool start_io; 280 281 /* Atomically determine whether we can and need to start a USB 282 * operation. */ 283 spin_lock_irqsave(&port->lock, flags); 284 if (port->write_urb_busy) 285 start_io = false; 286 else { 287 start_io = (kfifo_len(&port->write_fifo) != 0); 288 port->write_urb_busy = start_io; 289 } 290 spin_unlock_irqrestore(&port->lock, flags); 291 292 if (!start_io) 293 return 0; 294 295 data = port->write_urb->transfer_buffer; 296 count = kfifo_out_locked(&port->write_fifo, data, port->bulk_out_size, &port->lock); 297 usb_serial_debug_data(debug, &port->dev, __func__, count, data); 298 299 /* set up our urb */ 300 usb_fill_bulk_urb(port->write_urb, serial->dev, 301 usb_sndbulkpipe(serial->dev, 302 port->bulk_out_endpointAddress), 303 port->write_urb->transfer_buffer, count, 304 ((serial->type->write_bulk_callback) ? 305 serial->type->write_bulk_callback : 306 usb_serial_generic_write_bulk_callback), 307 port); 308 309 /* send the data out the bulk port */ 310 result = usb_submit_urb(port->write_urb, GFP_ATOMIC); 311 if (result) { 312 dev_err(&port->dev, 313 "%s - failed submitting write urb, error %d\n", 314 __func__, result); 315 /* don't have to grab the lock here, as we will 316 retry if != 0 */ 317 port->write_urb_busy = 0; 318 return result; 319 } 320 321 spin_lock_irqsave(&port->lock, flags); 322 port->tx_bytes_flight += count; 323 spin_unlock_irqrestore(&port->lock, flags); 324 325 return count; 326 } 327 328 /** 329 * usb_serial_generic_write - generic write function for serial USB devices 330 * @tty: Pointer to &struct tty_struct for the device 331 * @port: Pointer to the &usb_serial_port structure for the device 332 * @buf: Pointer to the data to write 333 * @count: Number of bytes to write 334 * 335 * Returns the number of characters actually written, which may be anything 336 * from zero to @count. If an error occurs, it returns the negative errno 337 * value. 338 */ 339 int usb_serial_generic_write(struct tty_struct *tty, 340 struct usb_serial_port *port, const unsigned char *buf, int count) 341 { 342 struct usb_serial *serial = port->serial; 343 int result; 344 345 dbg("%s - port %d", __func__, port->number); 346 347 /* only do something if we have a bulk out endpoint */ 348 if (!port->bulk_out_size) 349 return -ENODEV; 350 351 if (count == 0) { 352 dbg("%s - write request of 0 bytes", __func__); 353 return 0; 354 } 355 356 if (serial->type->max_in_flight_urbs) 357 return usb_serial_multi_urb_write(tty, port, 358 buf, count); 359 360 count = kfifo_in_locked(&port->write_fifo, buf, count, &port->lock); 361 result = usb_serial_generic_write_start(port); 362 363 if (result >= 0) 364 result = count; 365 366 return result; 367 } 368 EXPORT_SYMBOL_GPL(usb_serial_generic_write); 369 370 int usb_serial_generic_write_room(struct tty_struct *tty) 371 { 372 struct usb_serial_port *port = tty->driver_data; 373 struct usb_serial *serial = port->serial; 374 unsigned long flags; 375 int room = 0; 376 377 dbg("%s - port %d", __func__, port->number); 378 379 if (!port->bulk_out_size) 380 return 0; 381 382 spin_lock_irqsave(&port->lock, flags); 383 if (serial->type->max_in_flight_urbs) { 384 if (port->urbs_in_flight < serial->type->max_in_flight_urbs) 385 room = port->bulk_out_size * 386 (serial->type->max_in_flight_urbs - 387 port->urbs_in_flight); 388 } else { 389 room = kfifo_avail(&port->write_fifo); 390 } 391 spin_unlock_irqrestore(&port->lock, flags); 392 393 dbg("%s - returns %d", __func__, room); 394 return room; 395 } 396 397 int usb_serial_generic_chars_in_buffer(struct tty_struct *tty) 398 { 399 struct usb_serial_port *port = tty->driver_data; 400 struct usb_serial *serial = port->serial; 401 unsigned long flags; 402 int chars; 403 404 dbg("%s - port %d", __func__, port->number); 405 406 if (!port->bulk_out_size) 407 return 0; 408 409 spin_lock_irqsave(&port->lock, flags); 410 if (serial->type->max_in_flight_urbs) 411 chars = port->tx_bytes_flight; 412 else 413 chars = kfifo_len(&port->write_fifo) + port->tx_bytes_flight; 414 spin_unlock_irqrestore(&port->lock, flags); 415 416 dbg("%s - returns %d", __func__, chars); 417 return chars; 418 } 419 420 421 void usb_serial_generic_resubmit_read_urb(struct usb_serial_port *port, 422 gfp_t mem_flags) 423 { 424 struct urb *urb = port->read_urb; 425 struct usb_serial *serial = port->serial; 426 int result; 427 428 /* Continue reading from device */ 429 usb_fill_bulk_urb(urb, serial->dev, 430 usb_rcvbulkpipe(serial->dev, 431 port->bulk_in_endpointAddress), 432 urb->transfer_buffer, 433 urb->transfer_buffer_length, 434 ((serial->type->read_bulk_callback) ? 435 serial->type->read_bulk_callback : 436 usb_serial_generic_read_bulk_callback), port); 437 438 result = usb_submit_urb(urb, mem_flags); 439 if (result && result != -EPERM) { 440 dev_err(&port->dev, 441 "%s - failed resubmitting read urb, error %d\n", 442 __func__, result); 443 } 444 } 445 EXPORT_SYMBOL_GPL(usb_serial_generic_resubmit_read_urb); 446 447 /* Push data to tty layer and resubmit the bulk read URB */ 448 static void flush_and_resubmit_read_urb(struct usb_serial_port *port) 449 { 450 struct urb *urb = port->read_urb; 451 struct tty_struct *tty = tty_port_tty_get(&port->port); 452 char *ch = (char *)urb->transfer_buffer; 453 int i; 454 455 if (!tty) 456 goto done; 457 458 /* The per character mucking around with sysrq path it too slow for 459 stuff like 3G modems, so shortcircuit it in the 99.9999999% of cases 460 where the USB serial is not a console anyway */ 461 if (!port->port.console || !port->sysrq) 462 tty_insert_flip_string(tty, ch, urb->actual_length); 463 else { 464 /* Push data to tty */ 465 for (i = 0; i < urb->actual_length; i++, ch++) { 466 if (!usb_serial_handle_sysrq_char(tty, port, *ch)) 467 tty_insert_flip_char(tty, *ch, TTY_NORMAL); 468 } 469 } 470 tty_flip_buffer_push(tty); 471 tty_kref_put(tty); 472 done: 473 usb_serial_generic_resubmit_read_urb(port, GFP_ATOMIC); 474 } 475 476 void usb_serial_generic_read_bulk_callback(struct urb *urb) 477 { 478 struct usb_serial_port *port = urb->context; 479 unsigned char *data = urb->transfer_buffer; 480 int status = urb->status; 481 unsigned long flags; 482 483 dbg("%s - port %d", __func__, port->number); 484 485 if (unlikely(status != 0)) { 486 dbg("%s - nonzero read bulk status received: %d", 487 __func__, status); 488 return; 489 } 490 491 usb_serial_debug_data(debug, &port->dev, __func__, 492 urb->actual_length, data); 493 494 /* Throttle the device if requested by tty */ 495 spin_lock_irqsave(&port->lock, flags); 496 port->throttled = port->throttle_req; 497 if (!port->throttled) { 498 spin_unlock_irqrestore(&port->lock, flags); 499 flush_and_resubmit_read_urb(port); 500 } else 501 spin_unlock_irqrestore(&port->lock, flags); 502 } 503 EXPORT_SYMBOL_GPL(usb_serial_generic_read_bulk_callback); 504 505 void usb_serial_generic_write_bulk_callback(struct urb *urb) 506 { 507 unsigned long flags; 508 struct usb_serial_port *port = urb->context; 509 int status = urb->status; 510 511 dbg("%s - port %d", __func__, port->number); 512 513 if (port->serial->type->max_in_flight_urbs) { 514 kfree(urb->transfer_buffer); 515 516 spin_lock_irqsave(&port->lock, flags); 517 --port->urbs_in_flight; 518 port->tx_bytes_flight -= urb->transfer_buffer_length; 519 if (port->urbs_in_flight < 0) 520 port->urbs_in_flight = 0; 521 spin_unlock_irqrestore(&port->lock, flags); 522 } else { 523 spin_lock_irqsave(&port->lock, flags); 524 port->tx_bytes_flight -= urb->transfer_buffer_length; 525 port->write_urb_busy = 0; 526 spin_unlock_irqrestore(&port->lock, flags); 527 528 if (status) { 529 spin_lock_irqsave(&port->lock, flags); 530 kfifo_reset_out(&port->write_fifo); 531 spin_unlock_irqrestore(&port->lock, flags); 532 } else { 533 usb_serial_generic_write_start(port); 534 } 535 } 536 537 if (status) 538 dbg("%s - non-zero urb status: %d", __func__, status); 539 540 usb_serial_port_softint(port); 541 } 542 EXPORT_SYMBOL_GPL(usb_serial_generic_write_bulk_callback); 543 544 void usb_serial_generic_throttle(struct tty_struct *tty) 545 { 546 struct usb_serial_port *port = tty->driver_data; 547 unsigned long flags; 548 549 dbg("%s - port %d", __func__, port->number); 550 551 /* Set the throttle request flag. It will be picked up 552 * by usb_serial_generic_read_bulk_callback(). */ 553 spin_lock_irqsave(&port->lock, flags); 554 port->throttle_req = 1; 555 spin_unlock_irqrestore(&port->lock, flags); 556 } 557 558 void usb_serial_generic_unthrottle(struct tty_struct *tty) 559 { 560 struct usb_serial_port *port = tty->driver_data; 561 int was_throttled; 562 unsigned long flags; 563 564 dbg("%s - port %d", __func__, port->number); 565 566 /* Clear the throttle flags */ 567 spin_lock_irqsave(&port->lock, flags); 568 was_throttled = port->throttled; 569 port->throttled = port->throttle_req = 0; 570 spin_unlock_irqrestore(&port->lock, flags); 571 572 if (was_throttled) { 573 /* Resume reading from device */ 574 flush_and_resubmit_read_urb(port); 575 } 576 } 577 578 #ifdef CONFIG_MAGIC_SYSRQ 579 int usb_serial_handle_sysrq_char(struct tty_struct *tty, 580 struct usb_serial_port *port, unsigned int ch) 581 { 582 if (port->sysrq && port->port.console) { 583 if (ch && time_before(jiffies, port->sysrq)) { 584 handle_sysrq(ch, tty); 585 port->sysrq = 0; 586 return 1; 587 } 588 port->sysrq = 0; 589 } 590 return 0; 591 } 592 #else 593 int usb_serial_handle_sysrq_char(struct tty_struct *tty, 594 struct usb_serial_port *port, unsigned int ch) 595 { 596 return 0; 597 } 598 #endif 599 EXPORT_SYMBOL_GPL(usb_serial_handle_sysrq_char); 600 601 int usb_serial_handle_break(struct usb_serial_port *port) 602 { 603 if (!port->sysrq) { 604 port->sysrq = jiffies + HZ*5; 605 return 1; 606 } 607 port->sysrq = 0; 608 return 0; 609 } 610 EXPORT_SYMBOL_GPL(usb_serial_handle_break); 611 612 int usb_serial_generic_resume(struct usb_serial *serial) 613 { 614 struct usb_serial_port *port; 615 int i, c = 0, r; 616 617 for (i = 0; i < serial->num_ports; i++) { 618 port = serial->port[i]; 619 if (!test_bit(ASYNCB_INITIALIZED, &port->port.flags)) 620 continue; 621 622 if (port->read_urb) { 623 r = usb_submit_urb(port->read_urb, GFP_NOIO); 624 if (r < 0) 625 c++; 626 } 627 628 if (port->write_urb) { 629 r = usb_serial_generic_write_start(port); 630 if (r < 0) 631 c++; 632 } 633 } 634 635 return c ? -EIO : 0; 636 } 637 EXPORT_SYMBOL_GPL(usb_serial_generic_resume); 638 639 void usb_serial_generic_disconnect(struct usb_serial *serial) 640 { 641 int i; 642 643 dbg("%s", __func__); 644 645 /* stop reads and writes on all ports */ 646 for (i = 0; i < serial->num_ports; ++i) 647 generic_cleanup(serial->port[i]); 648 } 649 650 void usb_serial_generic_release(struct usb_serial *serial) 651 { 652 dbg("%s", __func__); 653 } 654