Linux Audio

Check our new training course

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