usb_debug.c 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /*
  2. * USB Debug cable driver
  3. *
  4. * Copyright (C) 2006 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. #include <linux/gfp.h>
  11. #include <linux/kernel.h>
  12. #include <linux/init.h>
  13. #include <linux/tty.h>
  14. #include <linux/module.h>
  15. #include <linux/usb.h>
  16. #include <linux/usb/serial.h>
  17. #define USB_DEBUG_MAX_PACKET_SIZE 8
  18. #define USB_DEBUG_BRK_SIZE 8
  19. static char USB_DEBUG_BRK[USB_DEBUG_BRK_SIZE] = {
  20. 0x00,
  21. 0xff,
  22. 0x01,
  23. 0xfe,
  24. 0x00,
  25. 0xfe,
  26. 0x01,
  27. 0xff,
  28. };
  29. static const struct usb_device_id id_table[] = {
  30. { USB_DEVICE(0x0525, 0x127a) },
  31. { },
  32. };
  33. MODULE_DEVICE_TABLE(usb, id_table);
  34. static struct usb_driver debug_driver = {
  35. .name = "debug",
  36. .probe = usb_serial_probe,
  37. .disconnect = usb_serial_disconnect,
  38. .id_table = id_table,
  39. };
  40. /* This HW really does not support a serial break, so one will be
  41. * emulated when ever the break state is set to true.
  42. */
  43. static void usb_debug_break_ctl(struct tty_struct *tty, int break_state)
  44. {
  45. struct usb_serial_port *port = tty->driver_data;
  46. if (!break_state)
  47. return;
  48. usb_serial_generic_write(tty, port, USB_DEBUG_BRK, USB_DEBUG_BRK_SIZE);
  49. }
  50. static void usb_debug_process_read_urb(struct urb *urb)
  51. {
  52. struct usb_serial_port *port = urb->context;
  53. if (urb->actual_length == USB_DEBUG_BRK_SIZE &&
  54. memcmp(urb->transfer_buffer, USB_DEBUG_BRK,
  55. USB_DEBUG_BRK_SIZE) == 0) {
  56. usb_serial_handle_break(port);
  57. return;
  58. }
  59. usb_serial_generic_process_read_urb(urb);
  60. }
  61. static struct usb_serial_driver debug_device = {
  62. .driver = {
  63. .owner = THIS_MODULE,
  64. .name = "debug",
  65. },
  66. .id_table = id_table,
  67. .num_ports = 1,
  68. .bulk_out_size = USB_DEBUG_MAX_PACKET_SIZE,
  69. .break_ctl = usb_debug_break_ctl,
  70. .process_read_urb = usb_debug_process_read_urb,
  71. };
  72. static struct usb_serial_driver * const serial_drivers[] = {
  73. &debug_device, NULL
  74. };
  75. module_usb_serial_driver(debug_driver, serial_drivers);
  76. MODULE_LICENSE("GPL");