1
2
3
4
5
6
7
8
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
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48#define PL_S_EN (1<<7)
49
50#define PL_TX_READY (1<<5)
51#define PL_RESET_OUT (1<<4)
52#define PL_RESET_IN (1<<3)
53#define PL_TX_C (1<<2)
54#define PL_TX_REQ (1<<1)
55#define PL_PEER_E (1<<0)
56
57static inline int
58pl_vendor_req(struct usbnet *dev, u8 req, u8 val, u8 index)
59{
60 return usbnet_read_cmd(dev, req,
61 USB_DIR_IN | USB_TYPE_VENDOR |
62 USB_RECIP_DEVICE,
63 val, index, NULL, 0);
64}
65
66static inline int
67pl_clear_QuickLink_features(struct usbnet *dev, int val)
68{
69 return pl_vendor_req(dev, 1, (u8) val, 0);
70}
71
72static inline int
73pl_set_QuickLink_features(struct usbnet *dev, int val)
74{
75 return pl_vendor_req(dev, 3, (u8) val, 0);
76}
77
78static int pl_reset(struct usbnet *dev)
79{
80 int status;
81
82
83
84
85 status = pl_set_QuickLink_features(dev,
86 PL_S_EN|PL_RESET_OUT|PL_RESET_IN|PL_PEER_E);
87 if (status != 0 && netif_msg_probe(dev))
88 netif_dbg(dev, link, dev->net, "pl_reset --> %d\n", status);
89 return 0;
90}
91
92static const struct driver_info prolific_info = {
93 .description = "Prolific PL-2301/PL-2302/PL-25A1/PL-27A1",
94 .flags = FLAG_POINTTOPOINT | FLAG_NO_SETINT,
95
96 .reset = pl_reset,
97};
98
99
100
101
102
103
104
105
106
107static const struct usb_device_id products [] = {
108
109
110{
111 USB_DEVICE(0x067b, 0x0000),
112 .driver_info = (unsigned long) &prolific_info,
113}, {
114 USB_DEVICE(0x067b, 0x0001),
115 .driver_info = (unsigned long) &prolific_info,
116},
117
118
119{
120 USB_DEVICE(0x067b, 0x25a1),
121 .driver_info = (unsigned long) &prolific_info,
122}, {
123 USB_DEVICE(0x050d, 0x258a),
124 .driver_info = (unsigned long) &prolific_info,
125}, {
126 USB_DEVICE(0x3923, 0x7825),
127
128
129 .driver_info = (unsigned long) &prolific_info,
130
131},
132
133
134{
135 USB_DEVICE(0x067b, 0x27a1),
136
137
138
139
140 .driver_info = (unsigned long) &prolific_info,
141},
142
143 { },
144};
145MODULE_DEVICE_TABLE(usb, products);
146
147static struct usb_driver plusb_driver = {
148 .name = "plusb",
149 .id_table = products,
150 .probe = usbnet_probe,
151 .disconnect = usbnet_disconnect,
152 .suspend = usbnet_suspend,
153 .resume = usbnet_resume,
154 .disable_hub_initiated_lpm = 1,
155};
156
157module_usb_driver(plusb_driver);
158
159MODULE_AUTHOR("David Brownell");
160MODULE_DESCRIPTION("Prolific PL-2301/2302/25A1/27A1 USB Host to Host Link Driver");
161MODULE_LICENSE("GPL");
162