usb_debug.c 1.8 KB

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