usb_debug.c 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. .id_table = id_table,
  37. };
  38. /* This HW really does not support a serial break, so one will be
  39. * emulated when ever the break state is set to true.
  40. */
  41. static void usb_debug_break_ctl(struct tty_struct *tty, int break_state)
  42. {
  43. struct usb_serial_port *port = tty->driver_data;
  44. if (!break_state)
  45. return;
  46. usb_serial_generic_write(tty, port, USB_DEBUG_BRK, USB_DEBUG_BRK_SIZE);
  47. }
  48. static void usb_debug_process_read_urb(struct urb *urb)
  49. {
  50. struct usb_serial_port *port = urb->context;
  51. if (urb->actual_length == USB_DEBUG_BRK_SIZE &&
  52. memcmp(urb->transfer_buffer, USB_DEBUG_BRK,
  53. USB_DEBUG_BRK_SIZE) == 0) {
  54. usb_serial_handle_break(port);
  55. return;
  56. }
  57. usb_serial_generic_process_read_urb(urb);
  58. }
  59. static struct usb_serial_driver debug_device = {
  60. .driver = {
  61. .owner = THIS_MODULE,
  62. .name = "debug",
  63. },
  64. .id_table = id_table,
  65. .num_ports = 1,
  66. .bulk_out_size = USB_DEBUG_MAX_PACKET_SIZE,
  67. .break_ctl = usb_debug_break_ctl,
  68. .process_read_urb = usb_debug_process_read_urb,
  69. };
  70. static struct usb_serial_driver * const serial_drivers[] = {
  71. &debug_device, NULL
  72. };
  73. module_usb_serial_driver(debug_driver, serial_drivers);
  74. MODULE_LICENSE("GPL");