usb_debug.c 2.4 KB

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