usb_debug.c 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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 const 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. static const struct usb_device_id dbc_id_table[] = {
  33. { USB_DEVICE(0x1d6b, 0x0004) },
  34. { },
  35. };
  36. static const struct usb_device_id id_table_combined[] = {
  37. { USB_DEVICE(0x0525, 0x127a) },
  38. { USB_DEVICE(0x1d6b, 0x0004) },
  39. { },
  40. };
  41. MODULE_DEVICE_TABLE(usb, id_table_combined);
  42. /* This HW really does not support a serial break, so one will be
  43. * emulated when ever the break state is set to true.
  44. */
  45. static void usb_debug_break_ctl(struct tty_struct *tty, int break_state)
  46. {
  47. struct usb_serial_port *port = tty->driver_data;
  48. if (!break_state)
  49. return;
  50. usb_serial_generic_write(tty, port, USB_DEBUG_BRK, USB_DEBUG_BRK_SIZE);
  51. }
  52. static void usb_debug_process_read_urb(struct urb *urb)
  53. {
  54. struct usb_serial_port *port = urb->context;
  55. if (urb->actual_length == USB_DEBUG_BRK_SIZE &&
  56. memcmp(urb->transfer_buffer, USB_DEBUG_BRK,
  57. USB_DEBUG_BRK_SIZE) == 0) {
  58. usb_serial_handle_break(port);
  59. return;
  60. }
  61. usb_serial_generic_process_read_urb(urb);
  62. }
  63. static struct usb_serial_driver debug_device = {
  64. .driver = {
  65. .owner = THIS_MODULE,
  66. .name = "debug",
  67. },
  68. .id_table = id_table,
  69. .num_ports = 1,
  70. .bulk_out_size = USB_DEBUG_MAX_PACKET_SIZE,
  71. .break_ctl = usb_debug_break_ctl,
  72. .process_read_urb = usb_debug_process_read_urb,
  73. };
  74. static struct usb_serial_driver dbc_device = {
  75. .driver = {
  76. .owner = THIS_MODULE,
  77. .name = "xhci_dbc",
  78. },
  79. .id_table = dbc_id_table,
  80. .num_ports = 1,
  81. .break_ctl = usb_debug_break_ctl,
  82. .process_read_urb = usb_debug_process_read_urb,
  83. };
  84. static struct usb_serial_driver * const serial_drivers[] = {
  85. &debug_device, &dbc_device, NULL
  86. };
  87. module_usb_serial_driver(serial_drivers, id_table_combined);
  88. MODULE_LICENSE("GPL");