plusb.c 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. /*
  2. * PL-2301/2302 USB host-to-host link cables
  3. * Copyright (C) 2000-2005 by David Brownell
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, see <http://www.gnu.org/licenses/>.
  17. */
  18. // #define DEBUG // error path messages, extra info
  19. // #define VERBOSE // more; success messages
  20. #include <linux/module.h>
  21. #include <linux/netdevice.h>
  22. #include <linux/etherdevice.h>
  23. #include <linux/ethtool.h>
  24. #include <linux/workqueue.h>
  25. #include <linux/mii.h>
  26. #include <linux/usb.h>
  27. #include <linux/usb/usbnet.h>
  28. /*
  29. * Prolific PL-2301/PL-2302 driver ... http://www.prolific.com.tw/
  30. *
  31. * The protocol and handshaking used here should be bug-compatible
  32. * with the Linux 2.2 "plusb" driver, by Deti Fliegl.
  33. *
  34. * HEADS UP: this handshaking isn't all that robust. This driver
  35. * gets confused easily if you unplug one end of the cable then
  36. * try to connect it again; you'll need to restart both ends. The
  37. * "naplink" software (used by some PlayStation/2 deveopers) does
  38. * the handshaking much better! Also, sometimes this hardware
  39. * seems to get wedged under load. Prolific docs are weak, and
  40. * don't identify differences between PL2301 and PL2302, much less
  41. * anything to explain the different PL2302 versions observed.
  42. *
  43. * NOTE: pl2501 has several modes, including pl2301 and pl2302
  44. * compatibility. Some docs suggest the difference between 2301
  45. * and 2302 is only to make MS-Windows use a different driver...
  46. *
  47. * pl25a1 glue based on patch from Tony Gibbs. Prolific "docs" on
  48. * this chip are as usual incomplete about what control messages
  49. * are supported.
  50. */
  51. /*
  52. * Bits 0-4 can be used for software handshaking; they're set from
  53. * one end, cleared from the other, "read" with the interrupt byte.
  54. */
  55. #define PL_S_EN (1<<7) /* (feature only) suspend enable */
  56. /* reserved bit -- rx ready (6) ? */
  57. #define PL_TX_READY (1<<5) /* (interrupt only) transmit ready */
  58. #define PL_RESET_OUT (1<<4) /* reset output pipe */
  59. #define PL_RESET_IN (1<<3) /* reset input pipe */
  60. #define PL_TX_C (1<<2) /* transmission complete */
  61. #define PL_TX_REQ (1<<1) /* transmission received */
  62. #define PL_PEER_E (1<<0) /* peer exists */
  63. static inline int
  64. pl_vendor_req(struct usbnet *dev, u8 req, u8 val, u8 index)
  65. {
  66. return usbnet_read_cmd(dev, req,
  67. USB_DIR_IN | USB_TYPE_VENDOR |
  68. USB_RECIP_DEVICE,
  69. val, index, NULL, 0);
  70. }
  71. static inline int
  72. pl_clear_QuickLink_features(struct usbnet *dev, int val)
  73. {
  74. return pl_vendor_req(dev, 1, (u8) val, 0);
  75. }
  76. static inline int
  77. pl_set_QuickLink_features(struct usbnet *dev, int val)
  78. {
  79. return pl_vendor_req(dev, 3, (u8) val, 0);
  80. }
  81. static int pl_reset(struct usbnet *dev)
  82. {
  83. int status;
  84. /* some units seem to need this reset, others reject it utterly.
  85. * FIXME be more like "naplink" or windows drivers.
  86. */
  87. status = pl_set_QuickLink_features(dev,
  88. PL_S_EN|PL_RESET_OUT|PL_RESET_IN|PL_PEER_E);
  89. if (status != 0 && netif_msg_probe(dev))
  90. netif_dbg(dev, link, dev->net, "pl_reset --> %d\n", status);
  91. return 0;
  92. }
  93. static const struct driver_info prolific_info = {
  94. .description = "Prolific PL-2301/PL-2302/PL-25A1/PL-27A1",
  95. .flags = FLAG_POINTTOPOINT | FLAG_NO_SETINT,
  96. /* some PL-2302 versions seem to fail usb_set_interface() */
  97. .reset = pl_reset,
  98. };
  99. /*-------------------------------------------------------------------------*/
  100. /*
  101. * Proilific's name won't normally be on the cables, and
  102. * may not be on the device.
  103. */
  104. static const struct usb_device_id products [] = {
  105. /* full speed cables */
  106. {
  107. USB_DEVICE(0x067b, 0x0000), // PL-2301
  108. .driver_info = (unsigned long) &prolific_info,
  109. }, {
  110. USB_DEVICE(0x067b, 0x0001), // PL-2302
  111. .driver_info = (unsigned long) &prolific_info,
  112. },
  113. /* high speed cables */
  114. {
  115. USB_DEVICE(0x067b, 0x25a1), /* PL-25A1, no eeprom */
  116. .driver_info = (unsigned long) &prolific_info,
  117. }, {
  118. USB_DEVICE(0x050d, 0x258a), /* Belkin F5U258/F5U279 (PL-25A1) */
  119. .driver_info = (unsigned long) &prolific_info,
  120. }, {
  121. USB_DEVICE(0x3923, 0x7825), /* National Instruments USB
  122. * Host-to-Host Cable
  123. */
  124. .driver_info = (unsigned long) &prolific_info,
  125. },
  126. /* super speed cables */
  127. {
  128. USB_DEVICE(0x067b, 0x27a1), /* PL-27A1, no eeprom
  129. * also: goobay Active USB 3.0
  130. * Data Link,
  131. * Unitek Y-3501
  132. */
  133. .driver_info = (unsigned long) &prolific_info,
  134. },
  135. { }, // END
  136. };
  137. MODULE_DEVICE_TABLE(usb, products);
  138. static struct usb_driver plusb_driver = {
  139. .name = "plusb",
  140. .id_table = products,
  141. .probe = usbnet_probe,
  142. .disconnect = usbnet_disconnect,
  143. .suspend = usbnet_suspend,
  144. .resume = usbnet_resume,
  145. .disable_hub_initiated_lpm = 1,
  146. };
  147. module_usb_driver(plusb_driver);
  148. MODULE_AUTHOR("David Brownell");
  149. MODULE_DESCRIPTION("Prolific PL-2301/2302/25A1/27A1 USB Host to Host Link Driver");
  150. MODULE_LICENSE("GPL");