blob: ff7b84d4c9fd0f8518d8d15fa4a6d62c9648689f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (c) 1999-2005 Petko Manolov (petkan@users.sourceforge.net)
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 *
8 * ChangeLog:
9 * .... Most of the time spent on reading sources & docs.
10 * v0.2.x First official release for the Linux kernel.
11 * v0.3.0 Beutified and structured, some bugs fixed.
12 * v0.3.x URBifying bulk requests and bugfixing. First relatively
13 * stable release. Still can touch device's registers only
14 * from top-halves.
15 * v0.4.0 Control messages remained unurbified are now URBs.
16 * Now we can touch the HW at any time.
17 * v0.4.9 Control urbs again use process context to wait. Argh...
18 * Some long standing bugs (enable_net_traffic) fixed.
19 * Also nasty trick about resubmiting control urb from
20 * interrupt context used. Please let me know how it
21 * behaves. Pegasus II support added since this version.
22 * TODO: suppressing HCD warnings spewage on disconnect.
23 * v0.4.13 Ethernet address is now set at probe(), not at open()
Nicolas Kaiser5a9dbfe2010-06-26 06:58:54 +000024 * time as this seems to break dhcpd.
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 * v0.5.0 branch to 2.5.x kernels
26 * v0.5.1 ethtool support added
27 * v0.5.5 rx socket buffers are in a pool and the their allocation
Nicolas Kaiser5a9dbfe2010-06-26 06:58:54 +000028 * is out of the interrupt routine.
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 */
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/sched.h>
32#include <linux/slab.h>
33#include <linux/init.h>
34#include <linux/delay.h>
35#include <linux/netdevice.h>
36#include <linux/etherdevice.h>
37#include <linux/ethtool.h>
38#include <linux/mii.h>
39#include <linux/usb.h>
40#include <linux/module.h>
41#include <asm/byteorder.h>
42#include <asm/uaccess.h>
43#include "pegasus.h"
44
45/*
46 * Version Information
47 */
Petko Manolov37cf3472006-09-27 14:25:37 -070048#define DRIVER_VERSION "v0.6.14 (2006/09/27)"
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#define DRIVER_AUTHOR "Petko Manolov <petkan@users.sourceforge.net>"
50#define DRIVER_DESC "Pegasus/Pegasus II USB Ethernet driver"
51
52static const char driver_name[] = "pegasus";
53
54#undef PEGASUS_WRITE_EEPROM
55#define BMSR_MEDIA (BMSR_10HALF | BMSR_10FULL | BMSR_100HALF | \
56 BMSR_100FULL | BMSR_ANEGCAPABLE)
57
Rusty Russelleb939922011-12-19 14:08:01 +000058static bool loopback;
59static bool mii_mode;
Nicolas Kaiser5a9dbfe2010-06-26 06:58:54 +000060static char *devid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62static struct usb_eth_dev usb_dev_id[] = {
63#define PEGASUS_DEV(pn, vid, pid, flags) \
64 {.name = pn, .vendor = vid, .device = pid, .private = flags},
Chris Rankinab854b22009-10-13 00:32:02 -070065#define PEGASUS_DEV_CLASS(pn, vid, pid, dclass, flags) \
66 PEGASUS_DEV(pn, vid, pid, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#include "pegasus.h"
68#undef PEGASUS_DEV
Chris Rankinab854b22009-10-13 00:32:02 -070069#undef PEGASUS_DEV_CLASS
A.YOSHIYAMAa4f81a62005-11-15 09:55:18 +020070 {NULL, 0, 0, 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 {NULL, 0, 0, 0}
72};
73
74static struct usb_device_id pegasus_ids[] = {
75#define PEGASUS_DEV(pn, vid, pid, flags) \
76 {.match_flags = USB_DEVICE_ID_MATCH_DEVICE, .idVendor = vid, .idProduct = pid},
Chris Rankinab854b22009-10-13 00:32:02 -070077/*
78 * The Belkin F8T012xx1 bluetooth adaptor has the same vendor and product
79 * IDs as the Belkin F5D5050, so we need to teach the pegasus driver to
80 * ignore adaptors belonging to the "Wireless" class 0xE0. For this one
81 * case anyway, seeing as the pegasus is for "Wired" adaptors.
82 */
83#define PEGASUS_DEV_CLASS(pn, vid, pid, dclass, flags) \
84 {.match_flags = (USB_DEVICE_ID_MATCH_DEVICE | USB_DEVICE_ID_MATCH_DEV_CLASS), \
85 .idVendor = vid, .idProduct = pid, .bDeviceClass = dclass},
Linus Torvalds1da177e2005-04-16 15:20:36 -070086#include "pegasus.h"
87#undef PEGASUS_DEV
Chris Rankinab854b22009-10-13 00:32:02 -070088#undef PEGASUS_DEV_CLASS
A.YOSHIYAMAa4f81a62005-11-15 09:55:18 +020089 {},
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 {}
91};
92
93MODULE_AUTHOR(DRIVER_AUTHOR);
94MODULE_DESCRIPTION(DRIVER_DESC);
95MODULE_LICENSE("GPL");
96module_param(loopback, bool, 0);
97module_param(mii_mode, bool, 0);
A.YOSHIYAMAa4f81a62005-11-15 09:55:18 +020098module_param(devid, charp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099MODULE_PARM_DESC(loopback, "Enable MAC loopback mode (bit 0)");
100MODULE_PARM_DESC(mii_mode, "Enable HomePNA mode (bit 0),default=MII mode = 0");
A.YOSHIYAMAa4f81a62005-11-15 09:55:18 +0200101MODULE_PARM_DESC(devid, "The format is: 'DEV_name:VendorID:DeviceID:Flags'");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
103/* use ethtool to change the level for any given device */
104static int msg_level = -1;
Nicolas Kaiser5a9dbfe2010-06-26 06:58:54 +0000105module_param(msg_level, int, 0);
106MODULE_PARM_DESC(msg_level, "Override default message level");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108MODULE_DEVICE_TABLE(usb, pegasus_ids);
Oliver Neukum8cb89572009-01-08 11:22:25 -0800109static const struct net_device_ops pegasus_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111static int update_eth_regs_async(pegasus_t *);
112/* Aargh!!! I _really_ hate such tweaks */
David Howells7d12e782006-10-05 14:55:46 +0100113static void ctrl_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114{
115 pegasus_t *pegasus = urb->context;
Oliver Neukumc94cb312008-12-18 23:00:59 -0800116 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
118 if (!pegasus)
119 return;
120
Oliver Neukumc94cb312008-12-18 23:00:59 -0800121 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 case 0:
123 if (pegasus->flags & ETH_REGS_CHANGE) {
124 pegasus->flags &= ~ETH_REGS_CHANGE;
125 pegasus->flags |= ETH_REGS_CHANGED;
126 update_eth_regs_async(pegasus);
127 return;
128 }
129 break;
130 case -EINPROGRESS:
131 return;
132 case -ENOENT:
133 break;
134 default:
Joe Perchesa475f602010-02-17 10:30:24 +0000135 if (net_ratelimit())
136 netif_dbg(pegasus, drv, pegasus->net,
137 "%s, status %d\n", __func__, status);
138 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 }
140 pegasus->flags &= ~ETH_REGS_CHANGED;
141 wake_up(&pegasus->ctrl_wait);
142}
143
Nicolas Kaiser5a9dbfe2010-06-26 06:58:54 +0000144static int get_registers(pegasus_t *pegasus, __u16 indx, __u16 size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 void *data)
146{
147 int ret;
148 char *buffer;
149 DECLARE_WAITQUEUE(wait, current);
150
151 buffer = kmalloc(size, GFP_KERNEL);
Joe Perches14f8dc42013-02-07 11:46:27 +0000152 if (!buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 return -ENOMEM;
Joe Perches14f8dc42013-02-07 11:46:27 +0000154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 add_wait_queue(&pegasus->ctrl_wait, &wait);
156 set_current_state(TASK_UNINTERRUPTIBLE);
157 while (pegasus->flags & ETH_REGS_CHANGED)
158 schedule();
159 remove_wait_queue(&pegasus->ctrl_wait, &wait);
160 set_current_state(TASK_RUNNING);
161
162 pegasus->dr.bRequestType = PEGASUS_REQT_READ;
163 pegasus->dr.bRequest = PEGASUS_REQ_GET_REGS;
164 pegasus->dr.wValue = cpu_to_le16(0);
Harvey Harrisonda2bbdc2008-10-29 14:25:51 -0700165 pegasus->dr.wIndex = cpu_to_le16(indx);
166 pegasus->dr.wLength = cpu_to_le16(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 pegasus->ctrl_urb->transfer_buffer_length = size;
168
169 usb_fill_control_urb(pegasus->ctrl_urb, pegasus->usb,
170 usb_rcvctrlpipe(pegasus->usb, 0),
171 (char *) &pegasus->dr,
172 buffer, size, ctrl_callback, pegasus);
173
174 add_wait_queue(&pegasus->ctrl_wait, &wait);
175 set_current_state(TASK_UNINTERRUPTIBLE);
176
177 /* using ATOMIC, we'd never wake up if we slept */
178 if ((ret = usb_submit_urb(pegasus->ctrl_urb, GFP_ATOMIC))) {
Oliver Neukum10c82112006-11-23 15:40:17 +0100179 set_current_state(TASK_RUNNING);
David Brownell955a2602006-05-26 10:17:03 -0700180 if (ret == -ENODEV)
181 netif_device_detach(pegasus->net);
Joe Perchesa475f602010-02-17 10:30:24 +0000182 if (net_ratelimit())
183 netif_err(pegasus, drv, pegasus->net,
184 "%s, status %d\n", __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 goto out;
186 }
187
188 schedule();
189out:
190 remove_wait_queue(&pegasus->ctrl_wait, &wait);
191 memcpy(data, buffer, size);
192 kfree(buffer);
193
194 return ret;
195}
196
Nicolas Kaiser5a9dbfe2010-06-26 06:58:54 +0000197static int set_registers(pegasus_t *pegasus, __u16 indx, __u16 size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 void *data)
199{
200 int ret;
201 char *buffer;
202 DECLARE_WAITQUEUE(wait, current);
203
Julia Lawall175c0442010-05-15 11:18:58 +0000204 buffer = kmemdup(data, size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 if (!buffer) {
Joe Perchesa475f602010-02-17 10:30:24 +0000206 netif_warn(pegasus, drv, pegasus->net,
207 "out of memory in %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 return -ENOMEM;
209 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
211 add_wait_queue(&pegasus->ctrl_wait, &wait);
212 set_current_state(TASK_UNINTERRUPTIBLE);
213 while (pegasus->flags & ETH_REGS_CHANGED)
214 schedule();
215 remove_wait_queue(&pegasus->ctrl_wait, &wait);
216 set_current_state(TASK_RUNNING);
217
218 pegasus->dr.bRequestType = PEGASUS_REQT_WRITE;
219 pegasus->dr.bRequest = PEGASUS_REQ_SET_REGS;
220 pegasus->dr.wValue = cpu_to_le16(0);
Harvey Harrisonda2bbdc2008-10-29 14:25:51 -0700221 pegasus->dr.wIndex = cpu_to_le16(indx);
222 pegasus->dr.wLength = cpu_to_le16(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 pegasus->ctrl_urb->transfer_buffer_length = size;
224
225 usb_fill_control_urb(pegasus->ctrl_urb, pegasus->usb,
226 usb_sndctrlpipe(pegasus->usb, 0),
227 (char *) &pegasus->dr,
228 buffer, size, ctrl_callback, pegasus);
229
230 add_wait_queue(&pegasus->ctrl_wait, &wait);
231 set_current_state(TASK_UNINTERRUPTIBLE);
232
233 if ((ret = usb_submit_urb(pegasus->ctrl_urb, GFP_ATOMIC))) {
David Brownell955a2602006-05-26 10:17:03 -0700234 if (ret == -ENODEV)
235 netif_device_detach(pegasus->net);
Joe Perchesa475f602010-02-17 10:30:24 +0000236 netif_err(pegasus, drv, pegasus->net,
237 "%s, status %d\n", __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 goto out;
239 }
240
241 schedule();
242out:
243 remove_wait_queue(&pegasus->ctrl_wait, &wait);
244 kfree(buffer);
245
246 return ret;
247}
248
Nicolas Kaiser5a9dbfe2010-06-26 06:58:54 +0000249static int set_register(pegasus_t *pegasus, __u16 indx, __u8 data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250{
251 int ret;
252 char *tmp;
253 DECLARE_WAITQUEUE(wait, current);
254
Julia Lawall175c0442010-05-15 11:18:58 +0000255 tmp = kmemdup(&data, 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 if (!tmp) {
Joe Perchesa475f602010-02-17 10:30:24 +0000257 netif_warn(pegasus, drv, pegasus->net,
258 "out of memory in %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 return -ENOMEM;
260 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 add_wait_queue(&pegasus->ctrl_wait, &wait);
262 set_current_state(TASK_UNINTERRUPTIBLE);
263 while (pegasus->flags & ETH_REGS_CHANGED)
264 schedule();
265 remove_wait_queue(&pegasus->ctrl_wait, &wait);
266 set_current_state(TASK_RUNNING);
267
268 pegasus->dr.bRequestType = PEGASUS_REQT_WRITE;
269 pegasus->dr.bRequest = PEGASUS_REQ_SET_REG;
270 pegasus->dr.wValue = cpu_to_le16(data);
Harvey Harrisonda2bbdc2008-10-29 14:25:51 -0700271 pegasus->dr.wIndex = cpu_to_le16(indx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 pegasus->dr.wLength = cpu_to_le16(1);
273 pegasus->ctrl_urb->transfer_buffer_length = 1;
274
275 usb_fill_control_urb(pegasus->ctrl_urb, pegasus->usb,
276 usb_sndctrlpipe(pegasus->usb, 0),
277 (char *) &pegasus->dr,
Petko Manolov016534c2006-03-30 09:59:22 +0300278 tmp, 1, ctrl_callback, pegasus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
280 add_wait_queue(&pegasus->ctrl_wait, &wait);
281 set_current_state(TASK_UNINTERRUPTIBLE);
282
283 if ((ret = usb_submit_urb(pegasus->ctrl_urb, GFP_ATOMIC))) {
David Brownell955a2602006-05-26 10:17:03 -0700284 if (ret == -ENODEV)
285 netif_device_detach(pegasus->net);
Joe Perchesa475f602010-02-17 10:30:24 +0000286 if (net_ratelimit())
287 netif_err(pegasus, drv, pegasus->net,
288 "%s, status %d\n", __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 goto out;
290 }
291
292 schedule();
293out:
294 remove_wait_queue(&pegasus->ctrl_wait, &wait);
295 kfree(tmp);
296
297 return ret;
298}
299
Nicolas Kaiser5a9dbfe2010-06-26 06:58:54 +0000300static int update_eth_regs_async(pegasus_t *pegasus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301{
302 int ret;
303
304 pegasus->dr.bRequestType = PEGASUS_REQT_WRITE;
305 pegasus->dr.bRequest = PEGASUS_REQ_SET_REGS;
Michael Buesche3453f62009-06-18 07:03:47 +0000306 pegasus->dr.wValue = cpu_to_le16(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 pegasus->dr.wIndex = cpu_to_le16(EthCtrl0);
308 pegasus->dr.wLength = cpu_to_le16(3);
309 pegasus->ctrl_urb->transfer_buffer_length = 3;
310
311 usb_fill_control_urb(pegasus->ctrl_urb, pegasus->usb,
312 usb_sndctrlpipe(pegasus->usb, 0),
313 (char *) &pegasus->dr,
314 pegasus->eth_regs, 3, ctrl_callback, pegasus);
315
David Brownell955a2602006-05-26 10:17:03 -0700316 if ((ret = usb_submit_urb(pegasus->ctrl_urb, GFP_ATOMIC))) {
317 if (ret == -ENODEV)
318 netif_device_detach(pegasus->net);
Joe Perchesa475f602010-02-17 10:30:24 +0000319 netif_err(pegasus, drv, pegasus->net,
320 "%s, status %d\n", __func__, ret);
David Brownell955a2602006-05-26 10:17:03 -0700321 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
323 return ret;
324}
325
Dan Williamsc43c49b2007-04-24 10:20:06 -0400326/* Returns 0 on success, error on failure */
Nicolas Kaiser5a9dbfe2010-06-26 06:58:54 +0000327static int read_mii_word(pegasus_t *pegasus, __u8 phy, __u8 indx, __u16 *regd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
329 int i;
330 __u8 data[4] = { phy, 0, 0, indx };
331 __le16 regdi;
332 int ret;
333
Petko Manolov4a1728a2005-11-15 09:48:23 +0200334 set_register(pegasus, PhyCtrl, 0);
Nicolas Kaiser5a9dbfe2010-06-26 06:58:54 +0000335 set_registers(pegasus, PhyAddr, sizeof(data), data);
Petko Manolov4a1728a2005-11-15 09:48:23 +0200336 set_register(pegasus, PhyCtrl, (indx | PHY_READ));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 for (i = 0; i < REG_TIMEOUT; i++) {
338 ret = get_registers(pegasus, PhyCtrl, 1, data);
David Brownell7e713b82006-05-01 14:02:45 -0700339 if (ret == -ESHUTDOWN)
340 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 if (data[0] & PHY_DONE)
342 break;
343 }
Joe Perchesa475f602010-02-17 10:30:24 +0000344
345 if (i >= REG_TIMEOUT)
346 goto fail;
347
348 ret = get_registers(pegasus, PhyData, 2, &regdi);
349 *regd = le16_to_cpu(regdi);
350 return ret;
351
David Brownell7e713b82006-05-01 14:02:45 -0700352fail:
Joe Perchesa475f602010-02-17 10:30:24 +0000353 netif_warn(pegasus, drv, pegasus->net, "%s failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Petko Manolov4a1728a2005-11-15 09:48:23 +0200355 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356}
357
358static int mdio_read(struct net_device *dev, int phy_id, int loc)
359{
Joe Perches8739cfe2010-11-15 11:12:29 +0000360 pegasus_t *pegasus = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 u16 res;
362
363 read_mii_word(pegasus, phy_id, loc, &res);
364 return (int)res;
365}
366
Nicolas Kaiser5a9dbfe2010-06-26 06:58:54 +0000367static int write_mii_word(pegasus_t *pegasus, __u8 phy, __u8 indx, __u16 regd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368{
369 int i;
370 __u8 data[4] = { phy, 0, 0, indx };
371 int ret;
372
373 data[1] = (u8) regd;
374 data[2] = (u8) (regd >> 8);
Petko Manolov4a1728a2005-11-15 09:48:23 +0200375 set_register(pegasus, PhyCtrl, 0);
376 set_registers(pegasus, PhyAddr, sizeof(data), data);
377 set_register(pegasus, PhyCtrl, (indx | PHY_WRITE));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 for (i = 0; i < REG_TIMEOUT; i++) {
379 ret = get_registers(pegasus, PhyCtrl, 1, data);
David Brownell7e713b82006-05-01 14:02:45 -0700380 if (ret == -ESHUTDOWN)
381 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 if (data[0] & PHY_DONE)
383 break;
384 }
Joe Perchesa475f602010-02-17 10:30:24 +0000385
386 if (i >= REG_TIMEOUT)
387 goto fail;
388
389 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
David Brownell7e713b82006-05-01 14:02:45 -0700391fail:
Joe Perchesa475f602010-02-17 10:30:24 +0000392 netif_warn(pegasus, drv, pegasus->net, "%s failed\n", __func__);
Petko Manolov4a1728a2005-11-15 09:48:23 +0200393 return -ETIMEDOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394}
395
396static void mdio_write(struct net_device *dev, int phy_id, int loc, int val)
397{
Joe Perches8739cfe2010-11-15 11:12:29 +0000398 pegasus_t *pegasus = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
400 write_mii_word(pegasus, phy_id, loc, val);
401}
402
Nicolas Kaiser5a9dbfe2010-06-26 06:58:54 +0000403static int read_eprom_word(pegasus_t *pegasus, __u8 index, __u16 *retdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404{
405 int i;
406 __u8 tmp;
407 __le16 retdatai;
408 int ret;
409
Petko Manolov4a1728a2005-11-15 09:48:23 +0200410 set_register(pegasus, EpromCtrl, 0);
411 set_register(pegasus, EpromOffset, index);
412 set_register(pegasus, EpromCtrl, EPROM_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
414 for (i = 0; i < REG_TIMEOUT; i++) {
415 ret = get_registers(pegasus, EpromCtrl, 1, &tmp);
416 if (tmp & EPROM_DONE)
417 break;
David Brownell7e713b82006-05-01 14:02:45 -0700418 if (ret == -ESHUTDOWN)
419 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 }
Joe Perchesa475f602010-02-17 10:30:24 +0000421 if (i >= REG_TIMEOUT)
422 goto fail;
423
424 ret = get_registers(pegasus, EpromData, 2, &retdatai);
425 *retdata = le16_to_cpu(retdatai);
426 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
David Brownell7e713b82006-05-01 14:02:45 -0700428fail:
Joe Perchesa475f602010-02-17 10:30:24 +0000429 netif_warn(pegasus, drv, pegasus->net, "%s failed\n", __func__);
Petko Manolov4a1728a2005-11-15 09:48:23 +0200430 return -ETIMEDOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431}
432
433#ifdef PEGASUS_WRITE_EEPROM
Nicolas Kaiser5a9dbfe2010-06-26 06:58:54 +0000434static inline void enable_eprom_write(pegasus_t *pegasus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435{
436 __u8 tmp;
437 int ret;
438
Petko Manolov4a1728a2005-11-15 09:48:23 +0200439 get_registers(pegasus, EthCtrl2, 1, &tmp);
440 set_register(pegasus, EthCtrl2, tmp | EPROM_WR_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441}
442
Nicolas Kaiser5a9dbfe2010-06-26 06:58:54 +0000443static inline void disable_eprom_write(pegasus_t *pegasus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444{
445 __u8 tmp;
446 int ret;
447
Petko Manolov4a1728a2005-11-15 09:48:23 +0200448 get_registers(pegasus, EthCtrl2, 1, &tmp);
449 set_register(pegasus, EpromCtrl, 0);
450 set_register(pegasus, EthCtrl2, tmp & ~EPROM_WR_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451}
452
Nicolas Kaiser5a9dbfe2010-06-26 06:58:54 +0000453static int write_eprom_word(pegasus_t *pegasus, __u8 index, __u16 data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454{
455 int i;
456 __u8 tmp, d[4] = { 0x3f, 0, 0, EPROM_WRITE };
457 int ret;
Michael Buesche3453f62009-06-18 07:03:47 +0000458 __le16 le_data = cpu_to_le16(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
Petko Manolov4a1728a2005-11-15 09:48:23 +0200460 set_registers(pegasus, EpromOffset, 4, d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 enable_eprom_write(pegasus);
Petko Manolov4a1728a2005-11-15 09:48:23 +0200462 set_register(pegasus, EpromOffset, index);
Michael Buesche3453f62009-06-18 07:03:47 +0000463 set_registers(pegasus, EpromData, 2, &le_data);
Petko Manolov4a1728a2005-11-15 09:48:23 +0200464 set_register(pegasus, EpromCtrl, EPROM_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
466 for (i = 0; i < REG_TIMEOUT; i++) {
467 ret = get_registers(pegasus, EpromCtrl, 1, &tmp);
David Brownell7e713b82006-05-01 14:02:45 -0700468 if (ret == -ESHUTDOWN)
469 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 if (tmp & EPROM_DONE)
471 break;
472 }
473 disable_eprom_write(pegasus);
Joe Perchesa475f602010-02-17 10:30:24 +0000474 if (i >= REG_TIMEOUT)
475 goto fail;
476
477 return ret;
478
David Brownell7e713b82006-05-01 14:02:45 -0700479fail:
Joe Perchesa475f602010-02-17 10:30:24 +0000480 netif_warn(pegasus, drv, pegasus->net, "%s failed\n", __func__);
Petko Manolov4a1728a2005-11-15 09:48:23 +0200481 return -ETIMEDOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482}
483#endif /* PEGASUS_WRITE_EEPROM */
484
Nicolas Kaiser5a9dbfe2010-06-26 06:58:54 +0000485static inline void get_node_id(pegasus_t *pegasus, __u8 *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486{
487 int i;
488 __u16 w16;
489
490 for (i = 0; i < 3; i++) {
491 read_eprom_word(pegasus, i, &w16);
Harvey Harrisonda2bbdc2008-10-29 14:25:51 -0700492 ((__le16 *) id)[i] = cpu_to_le16(w16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 }
494}
495
Nicolas Kaiser5a9dbfe2010-06-26 06:58:54 +0000496static void set_ethernet_addr(pegasus_t *pegasus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497{
498 __u8 node_id[6];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
Petko Manolov37cf3472006-09-27 14:25:37 -0700500 if (pegasus->features & PEGASUS_II) {
501 get_registers(pegasus, 0x10, sizeof(node_id), node_id);
502 } else {
503 get_node_id(pegasus, node_id);
Nicolas Kaiser5a9dbfe2010-06-26 06:58:54 +0000504 set_registers(pegasus, EthID, sizeof(node_id), node_id);
Petko Manolov37cf3472006-09-27 14:25:37 -0700505 }
Nicolas Kaiser5a9dbfe2010-06-26 06:58:54 +0000506 memcpy(pegasus->net->dev_addr, node_id, sizeof(node_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507}
508
Nicolas Kaiser5a9dbfe2010-06-26 06:58:54 +0000509static inline int reset_mac(pegasus_t *pegasus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510{
511 __u8 data = 0x8;
512 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
Petko Manolov4a1728a2005-11-15 09:48:23 +0200514 set_register(pegasus, EthCtrl1, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 for (i = 0; i < REG_TIMEOUT; i++) {
Petko Manolov4a1728a2005-11-15 09:48:23 +0200516 get_registers(pegasus, EthCtrl1, 1, &data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 if (~data & 0x08) {
Dan Carpenter681f1622011-12-23 00:44:36 +0000518 if (loopback)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 break;
520 if (mii_mode && (pegasus->features & HAS_HOME_PNA))
Petko Manolov4a1728a2005-11-15 09:48:23 +0200521 set_register(pegasus, Gpio1, 0x34);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 else
Petko Manolov4a1728a2005-11-15 09:48:23 +0200523 set_register(pegasus, Gpio1, 0x26);
524 set_register(pegasus, Gpio0, pegasus->features);
525 set_register(pegasus, Gpio0, DEFAULT_GPIO_SET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 break;
527 }
528 }
529 if (i == REG_TIMEOUT)
Petko Manolov4a1728a2005-11-15 09:48:23 +0200530 return -ETIMEDOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
532 if (usb_dev_id[pegasus->dev_index].vendor == VENDOR_LINKSYS ||
533 usb_dev_id[pegasus->dev_index].vendor == VENDOR_DLINK) {
Petko Manolov4a1728a2005-11-15 09:48:23 +0200534 set_register(pegasus, Gpio0, 0x24);
535 set_register(pegasus, Gpio0, 0x26);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 }
537 if (usb_dev_id[pegasus->dev_index].vendor == VENDOR_ELCON) {
538 __u16 auxmode;
539 read_mii_word(pegasus, 3, 0x1b, &auxmode);
540 write_mii_word(pegasus, 3, 0x1b, auxmode | 4);
541 }
542
543 return 0;
544}
545
546static int enable_net_traffic(struct net_device *dev, struct usb_device *usb)
547{
548 __u16 linkpart;
549 __u8 data[4];
550 pegasus_t *pegasus = netdev_priv(dev);
551 int ret;
552
553 read_mii_word(pegasus, pegasus->phy, MII_LPA, &linkpart);
554 data[0] = 0xc9;
555 data[1] = 0;
556 if (linkpart & (ADVERTISE_100FULL | ADVERTISE_10FULL))
557 data[1] |= 0x20; /* set full duplex */
558 if (linkpart & (ADVERTISE_100FULL | ADVERTISE_100HALF))
559 data[1] |= 0x10; /* set 100 Mbps */
560 if (mii_mode)
561 data[1] = 0;
Dan Carpenter681f1622011-12-23 00:44:36 +0000562 data[2] = loopback ? 0x09 : 0x01;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Nicolas Kaiser5a9dbfe2010-06-26 06:58:54 +0000564 memcpy(pegasus->eth_regs, data, sizeof(data));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 ret = set_registers(pegasus, EthCtrl0, 3, data);
566
567 if (usb_dev_id[pegasus->dev_index].vendor == VENDOR_LINKSYS ||
Malte Doersamefafe6f2006-01-28 17:48:33 +0100568 usb_dev_id[pegasus->dev_index].vendor == VENDOR_LINKSYS2 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 usb_dev_id[pegasus->dev_index].vendor == VENDOR_DLINK) {
570 u16 auxmode;
571 read_mii_word(pegasus, 0, 0x1b, &auxmode);
572 write_mii_word(pegasus, 0, 0x1b, auxmode | 4);
573 }
574
Petko Manolov4a1728a2005-11-15 09:48:23 +0200575 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576}
577
David Howells7d12e782006-10-05 14:55:46 +0100578static void read_bulk_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579{
580 pegasus_t *pegasus = urb->context;
581 struct net_device *net;
582 int rx_status, count = urb->actual_length;
Oliver Neukumc94cb312008-12-18 23:00:59 -0800583 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 u8 *buf = urb->transfer_buffer;
585 __u16 pkt_len;
586
587 if (!pegasus)
588 return;
589
590 net = pegasus->net;
591 if (!netif_device_present(net) || !netif_running(net))
592 return;
593
Oliver Neukumc94cb312008-12-18 23:00:59 -0800594 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 case 0:
596 break;
Pete Zaitcev38e2bfc2006-09-18 22:49:02 -0700597 case -ETIME:
Joe Perchesa475f602010-02-17 10:30:24 +0000598 netif_dbg(pegasus, rx_err, net, "reset MAC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 pegasus->flags &= ~PEGASUS_RX_BUSY;
600 break;
601 case -EPIPE: /* stall, or disconnect from TT */
602 /* FIXME schedule work to clear the halt */
Joe Perchesa475f602010-02-17 10:30:24 +0000603 netif_warn(pegasus, rx_err, net, "no rx stall recovery\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 return;
605 case -ENOENT:
606 case -ECONNRESET:
607 case -ESHUTDOWN:
Joe Perchesa475f602010-02-17 10:30:24 +0000608 netif_dbg(pegasus, ifdown, net, "rx unlink, %d\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 return;
610 default:
Joe Perchesa475f602010-02-17 10:30:24 +0000611 netif_dbg(pegasus, rx_err, net, "RX status %d\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 goto goon;
613 }
614
615 if (!count || count < 4)
616 goto goon;
617
618 rx_status = buf[count - 2];
619 if (rx_status & 0x1e) {
Joe Perchesa475f602010-02-17 10:30:24 +0000620 netif_dbg(pegasus, rx_err, net,
621 "RX packet error %x\n", rx_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 pegasus->stats.rx_errors++;
Nicolas Kaiser5a9dbfe2010-06-26 06:58:54 +0000623 if (rx_status & 0x06) /* long or runt */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 pegasus->stats.rx_length_errors++;
625 if (rx_status & 0x08)
626 pegasus->stats.rx_crc_errors++;
Nicolas Kaiser5a9dbfe2010-06-26 06:58:54 +0000627 if (rx_status & 0x10) /* extra bits */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 pegasus->stats.rx_frame_errors++;
629 goto goon;
630 }
631 if (pegasus->chip == 0x8513) {
632 pkt_len = le32_to_cpu(*(__le32 *)urb->transfer_buffer);
633 pkt_len &= 0x0fff;
634 pegasus->rx_skb->data += 2;
635 } else {
636 pkt_len = buf[count - 3] << 8;
637 pkt_len += buf[count - 4];
638 pkt_len &= 0xfff;
639 pkt_len -= 8;
640 }
641
642 /*
Kevin Vigora85a46f2005-09-22 00:49:24 -0700643 * If the packet is unreasonably long, quietly drop it rather than
644 * kernel panicing by calling skb_put.
645 */
646 if (pkt_len > PEGASUS_MTU)
647 goto goon;
648
649 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 * at this point we are sure pegasus->rx_skb != NULL
651 * so we go ahead and pass up the packet.
652 */
653 skb_put(pegasus->rx_skb, pkt_len);
654 pegasus->rx_skb->protocol = eth_type_trans(pegasus->rx_skb, net);
655 netif_rx(pegasus->rx_skb);
656 pegasus->stats.rx_packets++;
657 pegasus->stats.rx_bytes += pkt_len;
658
659 if (pegasus->flags & PEGASUS_UNPLUG)
660 return;
661
Petko Manolov313a58e2013-04-25 22:41:21 +0000662 pegasus->rx_skb = __netdev_alloc_skb_ip_align(pegasus->net, PEGASUS_MTU,
663 GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
665 if (pegasus->rx_skb == NULL)
666 goto tl_sched;
667goon:
668 usb_fill_bulk_urb(pegasus->rx_urb, pegasus->usb,
669 usb_rcvbulkpipe(pegasus->usb, 1),
670 pegasus->rx_skb->data, PEGASUS_MTU + 8,
671 read_bulk_callback, pegasus);
David Brownell955a2602006-05-26 10:17:03 -0700672 rx_status = usb_submit_urb(pegasus->rx_urb, GFP_ATOMIC);
673 if (rx_status == -ENODEV)
674 netif_device_detach(pegasus->net);
675 else if (rx_status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 pegasus->flags |= PEGASUS_RX_URB_FAIL;
677 goto tl_sched;
678 } else {
679 pegasus->flags &= ~PEGASUS_RX_URB_FAIL;
680 }
681
682 return;
683
684tl_sched:
685 tasklet_schedule(&pegasus->rx_tl);
686}
687
688static void rx_fixup(unsigned long data)
689{
690 pegasus_t *pegasus;
David Brownell955a2602006-05-26 10:17:03 -0700691 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
693 pegasus = (pegasus_t *) data;
694 if (pegasus->flags & PEGASUS_UNPLUG)
695 return;
696
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 if (pegasus->flags & PEGASUS_RX_URB_FAIL)
698 if (pegasus->rx_skb)
699 goto try_again;
Nicolas Kaiser5a9dbfe2010-06-26 06:58:54 +0000700 if (pegasus->rx_skb == NULL)
Petko Manolov313a58e2013-04-25 22:41:21 +0000701 pegasus->rx_skb = __netdev_alloc_skb_ip_align(pegasus->net,
702 PEGASUS_MTU,
703 GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 if (pegasus->rx_skb == NULL) {
Joe Perchesa475f602010-02-17 10:30:24 +0000705 netif_warn(pegasus, rx_err, pegasus->net, "low on memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 tasklet_schedule(&pegasus->rx_tl);
Petko Manolov313a58e2013-04-25 22:41:21 +0000707 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 }
709 usb_fill_bulk_urb(pegasus->rx_urb, pegasus->usb,
710 usb_rcvbulkpipe(pegasus->usb, 1),
711 pegasus->rx_skb->data, PEGASUS_MTU + 8,
712 read_bulk_callback, pegasus);
713try_again:
David Brownell955a2602006-05-26 10:17:03 -0700714 status = usb_submit_urb(pegasus->rx_urb, GFP_ATOMIC);
715 if (status == -ENODEV)
716 netif_device_detach(pegasus->net);
717 else if (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 pegasus->flags |= PEGASUS_RX_URB_FAIL;
719 tasklet_schedule(&pegasus->rx_tl);
720 } else {
721 pegasus->flags &= ~PEGASUS_RX_URB_FAIL;
722 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723}
724
David Howells7d12e782006-10-05 14:55:46 +0100725static void write_bulk_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726{
727 pegasus_t *pegasus = urb->context;
Micah Gruber93519822007-07-23 16:05:52 +0800728 struct net_device *net;
Oliver Neukumc94cb312008-12-18 23:00:59 -0800729 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
731 if (!pegasus)
732 return;
733
Micah Gruber93519822007-07-23 16:05:52 +0800734 net = pegasus->net;
735
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 if (!netif_device_present(net) || !netif_running(net))
737 return;
738
Oliver Neukumc94cb312008-12-18 23:00:59 -0800739 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 case -EPIPE:
741 /* FIXME schedule_work() to clear the tx halt */
742 netif_stop_queue(net);
Joe Perchesa475f602010-02-17 10:30:24 +0000743 netif_warn(pegasus, tx_err, net, "no tx stall recovery\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 return;
745 case -ENOENT:
746 case -ECONNRESET:
747 case -ESHUTDOWN:
Joe Perchesa475f602010-02-17 10:30:24 +0000748 netif_dbg(pegasus, ifdown, net, "tx unlink, %d\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 return;
750 default:
Joe Perchesa475f602010-02-17 10:30:24 +0000751 netif_info(pegasus, tx_err, net, "TX status %d\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 /* FALL THROUGH */
753 case 0:
754 break;
755 }
756
Eric Dumazet1ae5dc32010-05-10 05:01:31 -0700757 net->trans_start = jiffies; /* prevent tx timeout */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 netif_wake_queue(net);
759}
760
David Howells7d12e782006-10-05 14:55:46 +0100761static void intr_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762{
763 pegasus_t *pegasus = urb->context;
764 struct net_device *net;
Oliver Neukumc94cb312008-12-18 23:00:59 -0800765 int res, status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
767 if (!pegasus)
768 return;
769 net = pegasus->net;
770
Oliver Neukumc94cb312008-12-18 23:00:59 -0800771 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 case 0:
773 break;
774 case -ECONNRESET: /* unlink */
775 case -ENOENT:
776 case -ESHUTDOWN:
777 return;
778 default:
779 /* some Pegasus-I products report LOTS of data
780 * toggle errors... avoid log spamming
781 */
Joe Perchesa475f602010-02-17 10:30:24 +0000782 netif_dbg(pegasus, timer, net, "intr status %d\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 }
784
785 if (urb->actual_length >= 6) {
Nicolas Kaiser5a9dbfe2010-06-26 06:58:54 +0000786 u8 *d = urb->transfer_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
788 /* byte 0 == tx_status1, reg 2B */
789 if (d[0] & (TX_UNDERRUN|EXCESSIVE_COL
790 |LATE_COL|JABBER_TIMEOUT)) {
791 pegasus->stats.tx_errors++;
792 if (d[0] & TX_UNDERRUN)
793 pegasus->stats.tx_fifo_errors++;
794 if (d[0] & (EXCESSIVE_COL | JABBER_TIMEOUT))
795 pegasus->stats.tx_aborted_errors++;
796 if (d[0] & LATE_COL)
797 pegasus->stats.tx_window_errors++;
798 }
799
800 /* d[5].LINK_STATUS lies on some adapters.
801 * d[0].NO_CARRIER kicks in only with failed TX.
802 * ... so monitoring with MII may be safest.
803 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
805 /* bytes 3-4 == rx_lostpkt, reg 2E/2F */
806 pegasus->stats.rx_missed_errors += ((d[3] & 0x7f) << 8) | d[4];
807 }
808
Oliver Neukumc94cb312008-12-18 23:00:59 -0800809 res = usb_submit_urb(urb, GFP_ATOMIC);
810 if (res == -ENODEV)
David Brownell955a2602006-05-26 10:17:03 -0700811 netif_device_detach(pegasus->net);
Joe Perchesa475f602010-02-17 10:30:24 +0000812 if (res)
813 netif_err(pegasus, timer, net,
814 "can't resubmit interrupt urb, %d\n", res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815}
816
817static void pegasus_tx_timeout(struct net_device *net)
818{
819 pegasus_t *pegasus = netdev_priv(net);
Joe Perchesa475f602010-02-17 10:30:24 +0000820 netif_warn(pegasus, timer, net, "tx timeout\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 usb_unlink_urb(pegasus->tx_urb);
822 pegasus->stats.tx_errors++;
823}
824
Stephen Hemminger25a79c42009-08-31 19:50:45 +0000825static netdev_tx_t pegasus_start_xmit(struct sk_buff *skb,
826 struct net_device *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827{
828 pegasus_t *pegasus = netdev_priv(net);
829 int count = ((skb->len + 2) & 0x3f) ? skb->len + 2 : skb->len + 3;
830 int res;
831 __u16 l16 = skb->len;
832
833 netif_stop_queue(net);
834
835 ((__le16 *) pegasus->tx_buff)[0] = cpu_to_le16(l16);
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300836 skb_copy_from_linear_data(skb, pegasus->tx_buff + 2, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 usb_fill_bulk_urb(pegasus->tx_urb, pegasus->usb,
838 usb_sndbulkpipe(pegasus->usb, 2),
839 pegasus->tx_buff, count,
840 write_bulk_callback, pegasus);
841 if ((res = usb_submit_urb(pegasus->tx_urb, GFP_ATOMIC))) {
Joe Perchesa475f602010-02-17 10:30:24 +0000842 netif_warn(pegasus, tx_err, net, "fail tx, %d\n", res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 switch (res) {
844 case -EPIPE: /* stall, or disconnect from TT */
845 /* cleanup should already have been scheduled */
846 break;
847 case -ENODEV: /* disconnect() upcoming */
Oliver Neukum9dd014e2009-04-17 01:40:19 -0700848 case -EPERM:
David Brownell955a2602006-05-26 10:17:03 -0700849 netif_device_detach(pegasus->net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 break;
851 default:
852 pegasus->stats.tx_errors++;
853 netif_start_queue(net);
854 }
855 } else {
856 pegasus->stats.tx_packets++;
857 pegasus->stats.tx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 }
859 dev_kfree_skb(skb);
860
Patrick McHardy6ed10652009-06-23 06:03:08 +0000861 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862}
863
864static struct net_device_stats *pegasus_netdev_stats(struct net_device *dev)
865{
866 return &((pegasus_t *) netdev_priv(dev))->stats;
867}
868
Nicolas Kaiser5a9dbfe2010-06-26 06:58:54 +0000869static inline void disable_net_traffic(pegasus_t *pegasus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870{
Michael Buesche3453f62009-06-18 07:03:47 +0000871 __le16 tmp = cpu_to_le16(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
Michael Buesche3453f62009-06-18 07:03:47 +0000873 set_registers(pegasus, EthCtrl0, sizeof(tmp), &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874}
875
Nicolas Kaiser5a9dbfe2010-06-26 06:58:54 +0000876static inline void get_interrupt_interval(pegasus_t *pegasus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877{
Michael Buesche3453f62009-06-18 07:03:47 +0000878 u16 data;
879 u8 interval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
Michael Buesche3453f62009-06-18 07:03:47 +0000881 read_eprom_word(pegasus, 4, &data);
882 interval = data >> 8;
Kevin Vigora85a46f2005-09-22 00:49:24 -0700883 if (pegasus->usb->speed != USB_SPEED_HIGH) {
Michael Buesche3453f62009-06-18 07:03:47 +0000884 if (interval < 0x80) {
Joe Perchesa475f602010-02-17 10:30:24 +0000885 netif_info(pegasus, timer, pegasus->net,
886 "intr interval changed from %ums to %ums\n",
887 interval, 0x80);
Michael Buesche3453f62009-06-18 07:03:47 +0000888 interval = 0x80;
889 data = (data & 0x00FF) | ((u16)interval << 8);
Kevin Vigora85a46f2005-09-22 00:49:24 -0700890#ifdef PEGASUS_WRITE_EEPROM
Michael Buesche3453f62009-06-18 07:03:47 +0000891 write_eprom_word(pegasus, 4, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892#endif
Kevin Vigora85a46f2005-09-22 00:49:24 -0700893 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 }
Michael Buesche3453f62009-06-18 07:03:47 +0000895 pegasus->intr_interval = interval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896}
897
898static void set_carrier(struct net_device *net)
899{
900 pegasus_t *pegasus = netdev_priv(net);
901 u16 tmp;
902
Dan Williamsc43c49b2007-04-24 10:20:06 -0400903 if (read_mii_word(pegasus, pegasus->phy, MII_BMSR, &tmp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 return;
Kevin Vigora85a46f2005-09-22 00:49:24 -0700905
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 if (tmp & BMSR_LSTATUS)
907 netif_carrier_on(net);
908 else
909 netif_carrier_off(net);
910}
911
Nicolas Kaiser5a9dbfe2010-06-26 06:58:54 +0000912static void free_all_urbs(pegasus_t *pegasus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913{
914 usb_free_urb(pegasus->intr_urb);
915 usb_free_urb(pegasus->tx_urb);
916 usb_free_urb(pegasus->rx_urb);
917 usb_free_urb(pegasus->ctrl_urb);
918}
919
Nicolas Kaiser5a9dbfe2010-06-26 06:58:54 +0000920static void unlink_all_urbs(pegasus_t *pegasus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921{
922 usb_kill_urb(pegasus->intr_urb);
923 usb_kill_urb(pegasus->tx_urb);
924 usb_kill_urb(pegasus->rx_urb);
925 usb_kill_urb(pegasus->ctrl_urb);
926}
927
Nicolas Kaiser5a9dbfe2010-06-26 06:58:54 +0000928static int alloc_urbs(pegasus_t *pegasus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929{
930 pegasus->ctrl_urb = usb_alloc_urb(0, GFP_KERNEL);
Nicolas Kaiser5a9dbfe2010-06-26 06:58:54 +0000931 if (!pegasus->ctrl_urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 pegasus->rx_urb = usb_alloc_urb(0, GFP_KERNEL);
934 if (!pegasus->rx_urb) {
935 usb_free_urb(pegasus->ctrl_urb);
936 return 0;
937 }
938 pegasus->tx_urb = usb_alloc_urb(0, GFP_KERNEL);
939 if (!pegasus->tx_urb) {
940 usb_free_urb(pegasus->rx_urb);
941 usb_free_urb(pegasus->ctrl_urb);
942 return 0;
943 }
944 pegasus->intr_urb = usb_alloc_urb(0, GFP_KERNEL);
945 if (!pegasus->intr_urb) {
946 usb_free_urb(pegasus->tx_urb);
947 usb_free_urb(pegasus->rx_urb);
948 usb_free_urb(pegasus->ctrl_urb);
949 return 0;
950 }
951
952 return 1;
953}
954
955static int pegasus_open(struct net_device *net)
956{
957 pegasus_t *pegasus = netdev_priv(net);
958 int res;
959
960 if (pegasus->rx_skb == NULL)
Petko Manolov313a58e2013-04-25 22:41:21 +0000961 pegasus->rx_skb = __netdev_alloc_skb_ip_align(pegasus->net,
962 PEGASUS_MTU,
963 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 if (!pegasus->rx_skb)
965 return -ENOMEM;
966
967 res = set_registers(pegasus, EthID, 6, net->dev_addr);
Nicolas Kaiser5a9dbfe2010-06-26 06:58:54 +0000968
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 usb_fill_bulk_urb(pegasus->rx_urb, pegasus->usb,
970 usb_rcvbulkpipe(pegasus->usb, 1),
971 pegasus->rx_skb->data, PEGASUS_MTU + 8,
972 read_bulk_callback, pegasus);
973 if ((res = usb_submit_urb(pegasus->rx_urb, GFP_KERNEL))) {
David Brownell955a2602006-05-26 10:17:03 -0700974 if (res == -ENODEV)
975 netif_device_detach(pegasus->net);
Joe Perchesa475f602010-02-17 10:30:24 +0000976 netif_dbg(pegasus, ifup, net, "failed rx_urb, %d\n", res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 goto exit;
978 }
979
980 usb_fill_int_urb(pegasus->intr_urb, pegasus->usb,
981 usb_rcvintpipe(pegasus->usb, 3),
Nicolas Kaiser5a9dbfe2010-06-26 06:58:54 +0000982 pegasus->intr_buff, sizeof(pegasus->intr_buff),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 intr_callback, pegasus, pegasus->intr_interval);
984 if ((res = usb_submit_urb(pegasus->intr_urb, GFP_KERNEL))) {
David Brownell955a2602006-05-26 10:17:03 -0700985 if (res == -ENODEV)
986 netif_device_detach(pegasus->net);
Joe Perchesa475f602010-02-17 10:30:24 +0000987 netif_dbg(pegasus, ifup, net, "failed intr_urb, %d\n", res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 usb_kill_urb(pegasus->rx_urb);
989 goto exit;
990 }
991 if ((res = enable_net_traffic(net, pegasus->usb))) {
Joe Perchesa475f602010-02-17 10:30:24 +0000992 netif_dbg(pegasus, ifup, net,
993 "can't enable_net_traffic() - %d\n", res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 res = -EIO;
995 usb_kill_urb(pegasus->rx_urb);
996 usb_kill_urb(pegasus->intr_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 goto exit;
998 }
999 set_carrier(net);
1000 netif_start_queue(net);
Joe Perchesa475f602010-02-17 10:30:24 +00001001 netif_dbg(pegasus, ifup, net, "open\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 res = 0;
1003exit:
1004 return res;
1005}
1006
1007static int pegasus_close(struct net_device *net)
1008{
1009 pegasus_t *pegasus = netdev_priv(net);
1010
1011 netif_stop_queue(net);
1012 if (!(pegasus->flags & PEGASUS_UNPLUG))
1013 disable_net_traffic(pegasus);
1014 tasklet_kill(&pegasus->rx_tl);
1015 unlink_all_urbs(pegasus);
1016
1017 return 0;
1018}
1019
1020static void pegasus_get_drvinfo(struct net_device *dev,
1021 struct ethtool_drvinfo *info)
1022{
1023 pegasus_t *pegasus = netdev_priv(dev);
Jiri Pirko7826d432013-01-06 00:44:26 +00001024
1025 strlcpy(info->driver, driver_name, sizeof(info->driver));
1026 strlcpy(info->version, DRIVER_VERSION, sizeof(info->version));
Nicolas Kaiser5a9dbfe2010-06-26 06:58:54 +00001027 usb_make_path(pegasus->usb, info->bus_info, sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028}
1029
1030/* also handles three patterns of some kind in hardware */
1031#define WOL_SUPPORTED (WAKE_MAGIC|WAKE_PHY)
1032
1033static void
1034pegasus_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
1035{
1036 pegasus_t *pegasus = netdev_priv(dev);
1037
1038 wol->supported = WAKE_MAGIC | WAKE_PHY;
1039 wol->wolopts = pegasus->wolopts;
1040}
1041
1042static int
1043pegasus_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
1044{
1045 pegasus_t *pegasus = netdev_priv(dev);
1046 u8 reg78 = 0x04;
Ming Lei4fbc5b22013-01-19 01:32:01 +00001047 int ret;
Nicolas Kaiser5a9dbfe2010-06-26 06:58:54 +00001048
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 if (wol->wolopts & ~WOL_SUPPORTED)
1050 return -EINVAL;
1051
1052 if (wol->wolopts & WAKE_MAGIC)
1053 reg78 |= 0x80;
1054 if (wol->wolopts & WAKE_PHY)
1055 reg78 |= 0x40;
1056 /* FIXME this 0x10 bit still needs to get set in the chip... */
1057 if (wol->wolopts)
1058 pegasus->eth_regs[0] |= 0x10;
1059 else
1060 pegasus->eth_regs[0] &= ~0x10;
1061 pegasus->wolopts = wol->wolopts;
Ming Lei4fbc5b22013-01-19 01:32:01 +00001062
1063 ret = set_register(pegasus, WakeupControl, reg78);
1064 if (!ret)
1065 ret = device_set_wakeup_enable(&pegasus->usb->dev,
1066 wol->wolopts);
1067 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068}
1069
1070static inline void pegasus_reset_wol(struct net_device *dev)
1071{
1072 struct ethtool_wolinfo wol;
Nicolas Kaiser5a9dbfe2010-06-26 06:58:54 +00001073
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 memset(&wol, 0, sizeof wol);
1075 (void) pegasus_set_wol(dev, &wol);
1076}
1077
1078static int
1079pegasus_get_settings(struct net_device *dev, struct ethtool_cmd *ecmd)
1080{
1081 pegasus_t *pegasus;
1082
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 pegasus = netdev_priv(dev);
1084 mii_ethtool_gset(&pegasus->mii, ecmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 return 0;
1086}
1087
1088static int
1089pegasus_set_settings(struct net_device *dev, struct ethtool_cmd *ecmd)
1090{
1091 pegasus_t *pegasus = netdev_priv(dev);
1092 return mii_ethtool_sset(&pegasus->mii, ecmd);
1093}
1094
1095static int pegasus_nway_reset(struct net_device *dev)
1096{
1097 pegasus_t *pegasus = netdev_priv(dev);
1098 return mii_nway_restart(&pegasus->mii);
1099}
1100
1101static u32 pegasus_get_link(struct net_device *dev)
1102{
1103 pegasus_t *pegasus = netdev_priv(dev);
1104 return mii_link_ok(&pegasus->mii);
1105}
1106
1107static u32 pegasus_get_msglevel(struct net_device *dev)
1108{
1109 pegasus_t *pegasus = netdev_priv(dev);
1110 return pegasus->msg_enable;
1111}
1112
1113static void pegasus_set_msglevel(struct net_device *dev, u32 v)
1114{
1115 pegasus_t *pegasus = netdev_priv(dev);
1116 pegasus->msg_enable = v;
1117}
1118
Stephen Hemminger0fc0b732009-09-02 01:03:33 -07001119static const struct ethtool_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 .get_drvinfo = pegasus_get_drvinfo,
1121 .get_settings = pegasus_get_settings,
1122 .set_settings = pegasus_set_settings,
1123 .nway_reset = pegasus_nway_reset,
1124 .get_link = pegasus_get_link,
1125 .get_msglevel = pegasus_get_msglevel,
1126 .set_msglevel = pegasus_set_msglevel,
1127 .get_wol = pegasus_get_wol,
1128 .set_wol = pegasus_set_wol,
1129};
1130
1131static int pegasus_ioctl(struct net_device *net, struct ifreq *rq, int cmd)
1132{
Nicolas Kaiser5a9dbfe2010-06-26 06:58:54 +00001133 __u16 *data = (__u16 *) &rq->ifr_ifru;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 pegasus_t *pegasus = netdev_priv(net);
1135 int res;
1136
1137 switch (cmd) {
1138 case SIOCDEVPRIVATE:
1139 data[0] = pegasus->phy;
1140 case SIOCDEVPRIVATE + 1:
1141 read_mii_word(pegasus, data[0], data[1] & 0x1f, &data[3]);
1142 res = 0;
1143 break;
1144 case SIOCDEVPRIVATE + 2:
1145 if (!capable(CAP_NET_ADMIN))
1146 return -EPERM;
1147 write_mii_word(pegasus, pegasus->phy, data[1] & 0x1f, data[2]);
1148 res = 0;
1149 break;
1150 default:
1151 res = -EOPNOTSUPP;
1152 }
1153 return res;
1154}
1155
1156static void pegasus_set_multicast(struct net_device *net)
1157{
1158 pegasus_t *pegasus = netdev_priv(net);
1159
1160 if (net->flags & IFF_PROMISC) {
1161 pegasus->eth_regs[EthCtrl2] |= RX_PROMISCUOUS;
Joe Perchesa475f602010-02-17 10:30:24 +00001162 netif_info(pegasus, link, net, "Promiscuous mode enabled\n");
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001163 } else if (!netdev_mc_empty(net) || (net->flags & IFF_ALLMULTI)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 pegasus->eth_regs[EthCtrl0] |= RX_MULTICAST;
1165 pegasus->eth_regs[EthCtrl2] &= ~RX_PROMISCUOUS;
Joe Perchesa475f602010-02-17 10:30:24 +00001166 netif_dbg(pegasus, link, net, "set allmulti\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 } else {
1168 pegasus->eth_regs[EthCtrl0] &= ~RX_MULTICAST;
1169 pegasus->eth_regs[EthCtrl2] &= ~RX_PROMISCUOUS;
1170 }
1171
David Brownelle000ea12008-09-02 11:34:24 -07001172 pegasus->ctrl_urb->status = 0;
1173
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 pegasus->flags |= ETH_REGS_CHANGE;
David Howells7d12e782006-10-05 14:55:46 +01001175 ctrl_callback(pegasus->ctrl_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176}
1177
Nicolas Kaiser5a9dbfe2010-06-26 06:58:54 +00001178static __u8 mii_phy_probe(pegasus_t *pegasus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179{
1180 int i;
1181 __u16 tmp;
1182
1183 for (i = 0; i < 32; i++) {
1184 read_mii_word(pegasus, i, MII_BMSR, &tmp);
1185 if (tmp == 0 || tmp == 0xffff || (tmp & BMSR_MEDIA) == 0)
1186 continue;
1187 else
1188 return i;
1189 }
1190
1191 return 0xff;
1192}
1193
Nicolas Kaiser5a9dbfe2010-06-26 06:58:54 +00001194static inline void setup_pegasus_II(pegasus_t *pegasus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195{
1196 __u8 data = 0xa5;
Nicolas Kaiser5a9dbfe2010-06-26 06:58:54 +00001197
Petko Manolov4a1728a2005-11-15 09:48:23 +02001198 set_register(pegasus, Reg1d, 0);
1199 set_register(pegasus, Reg7b, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 mdelay(100);
1201 if ((pegasus->features & HAS_HOME_PNA) && mii_mode)
Petko Manolov4a1728a2005-11-15 09:48:23 +02001202 set_register(pegasus, Reg7b, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 else
Petko Manolov4a1728a2005-11-15 09:48:23 +02001204 set_register(pegasus, Reg7b, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205
Petko Manolov4a1728a2005-11-15 09:48:23 +02001206 set_register(pegasus, 0x83, data);
1207 get_registers(pegasus, 0x83, 1, &data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
Nicolas Kaiser5a9dbfe2010-06-26 06:58:54 +00001209 if (data == 0xa5)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 pegasus->chip = 0x8513;
Nicolas Kaiser5a9dbfe2010-06-26 06:58:54 +00001211 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 pegasus->chip = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
Petko Manolov4a1728a2005-11-15 09:48:23 +02001214 set_register(pegasus, 0x80, 0xc0);
1215 set_register(pegasus, 0x83, 0xff);
1216 set_register(pegasus, 0x84, 0x01);
Nicolas Kaiser5a9dbfe2010-06-26 06:58:54 +00001217
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 if (pegasus->features & HAS_HOME_PNA && mii_mode)
Petko Manolov4a1728a2005-11-15 09:48:23 +02001219 set_register(pegasus, Reg81, 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 else
Petko Manolov4a1728a2005-11-15 09:48:23 +02001221 set_register(pegasus, Reg81, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222}
1223
1224
David Brownellcda28362008-11-16 00:36:08 -08001225static int pegasus_count;
Nicolas Kaiser5a9dbfe2010-06-26 06:58:54 +00001226static struct workqueue_struct *pegasus_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227#define CARRIER_CHECK_DELAY (2 * HZ)
1228
David Howellsc4028952006-11-22 14:57:56 +00001229static void check_carrier(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230{
David Howellsc4028952006-11-22 14:57:56 +00001231 pegasus_t *pegasus = container_of(work, pegasus_t, carrier_check.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 set_carrier(pegasus->net);
1233 if (!(pegasus->flags & PEGASUS_UNPLUG)) {
1234 queue_delayed_work(pegasus_workqueue, &pegasus->carrier_check,
1235 CARRIER_CHECK_DELAY);
1236 }
1237}
1238
Ben Collins4f631352008-07-30 12:39:02 -07001239static int pegasus_blacklisted(struct usb_device *udev)
1240{
1241 struct usb_device_descriptor *udd = &udev->descriptor;
1242
1243 /* Special quirk to keep the driver from handling the Belkin Bluetooth
1244 * dongle which happens to have the same ID.
1245 */
Michael Buesche3453f62009-06-18 07:03:47 +00001246 if ((udd->idVendor == cpu_to_le16(VENDOR_BELKIN)) &&
1247 (udd->idProduct == cpu_to_le16(0x0121)) &&
Ben Collins4f631352008-07-30 12:39:02 -07001248 (udd->bDeviceClass == USB_CLASS_WIRELESS_CONTROLLER) &&
1249 (udd->bDeviceProtocol == 1))
1250 return 1;
1251
1252 return 0;
1253}
1254
David Brownellcda28362008-11-16 00:36:08 -08001255/* we rely on probe() and remove() being serialized so we
1256 * don't need extra locking on pegasus_count.
1257 */
1258static void pegasus_dec_workqueue(void)
1259{
1260 pegasus_count--;
1261 if (pegasus_count == 0) {
1262 destroy_workqueue(pegasus_workqueue);
1263 pegasus_workqueue = NULL;
1264 }
1265}
1266
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267static int pegasus_probe(struct usb_interface *intf,
1268 const struct usb_device_id *id)
1269{
1270 struct usb_device *dev = interface_to_usbdev(intf);
1271 struct net_device *net;
1272 pegasus_t *pegasus;
1273 int dev_index = id - pegasus_ids;
1274 int res = -ENOMEM;
1275
David Brownellcda28362008-11-16 00:36:08 -08001276 if (pegasus_blacklisted(dev))
1277 return -ENODEV;
Ben Collins4f631352008-07-30 12:39:02 -07001278
David Brownellcda28362008-11-16 00:36:08 -08001279 if (pegasus_count == 0) {
1280 pegasus_workqueue = create_singlethread_workqueue("pegasus");
1281 if (!pegasus_workqueue)
1282 return -ENOMEM;
Ben Collins4f631352008-07-30 12:39:02 -07001283 }
David Brownellcda28362008-11-16 00:36:08 -08001284 pegasus_count++;
1285
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 net = alloc_etherdev(sizeof(struct pegasus));
Joe Perches41de8d42012-01-29 13:47:52 +00001287 if (!net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
1290 pegasus = netdev_priv(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 pegasus->dev_index = dev_index;
1292 init_waitqueue_head(&pegasus->ctrl_wait);
1293
1294 if (!alloc_urbs(pegasus)) {
1295 dev_err(&intf->dev, "can't allocate %s\n", "urbs");
1296 goto out1;
1297 }
1298
1299 tasklet_init(&pegasus->rx_tl, rx_fixup, (unsigned long) pegasus);
1300
David Howellsc4028952006-11-22 14:57:56 +00001301 INIT_DELAYED_WORK(&pegasus->carrier_check, check_carrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
1303 pegasus->intf = intf;
1304 pegasus->usb = dev;
1305 pegasus->net = net;
Oliver Neukum8cb89572009-01-08 11:22:25 -08001306
1307
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 net->watchdog_timeo = PEGASUS_TX_TIMEOUT;
Oliver Neukum8cb89572009-01-08 11:22:25 -08001309 net->netdev_ops = &pegasus_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 SET_ETHTOOL_OPS(net, &ops);
1311 pegasus->mii.dev = net;
1312 pegasus->mii.mdio_read = mdio_read;
1313 pegasus->mii.mdio_write = mdio_write;
1314 pegasus->mii.phy_id_mask = 0x1f;
1315 pegasus->mii.reg_num_mask = 0x1f;
Nicolas Kaiser5a9dbfe2010-06-26 06:58:54 +00001316 pegasus->msg_enable = netif_msg_init(msg_level, NETIF_MSG_DRV
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 | NETIF_MSG_PROBE | NETIF_MSG_LINK);
1318
1319 pegasus->features = usb_dev_id[dev_index].private;
1320 get_interrupt_interval(pegasus);
1321 if (reset_mac(pegasus)) {
1322 dev_err(&intf->dev, "can't reset MAC\n");
1323 res = -EIO;
1324 goto out2;
1325 }
1326 set_ethernet_addr(pegasus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 if (pegasus->features & PEGASUS_II) {
1328 dev_info(&intf->dev, "setup Pegasus II specific registers\n");
1329 setup_pegasus_II(pegasus);
1330 }
1331 pegasus->phy = mii_phy_probe(pegasus);
1332 if (pegasus->phy == 0xff) {
1333 dev_warn(&intf->dev, "can't locate MII phy, using default\n");
1334 pegasus->phy = 1;
1335 }
1336 pegasus->mii.phy_id = pegasus->phy;
1337 usb_set_intfdata(intf, pegasus);
1338 SET_NETDEV_DEV(net, &intf->dev);
1339 pegasus_reset_wol(net);
1340 res = register_netdev(net);
1341 if (res)
1342 goto out3;
1343 queue_delayed_work(pegasus_workqueue, &pegasus->carrier_check,
1344 CARRIER_CHECK_DELAY);
1345
Johannes Berge1749612008-10-27 15:59:26 -07001346 dev_info(&intf->dev, "%s, %s, %pM\n",
Joe Perches0795af52007-10-03 17:59:30 -07001347 net->name,
1348 usb_dev_id[dev_index].name,
Johannes Berge1749612008-10-27 15:59:26 -07001349 net->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 return 0;
1351
1352out3:
1353 usb_set_intfdata(intf, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354out2:
1355 free_all_urbs(pegasus);
1356out1:
1357 free_netdev(net);
1358out:
David Brownellcda28362008-11-16 00:36:08 -08001359 pegasus_dec_workqueue();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 return res;
1361}
1362
1363static void pegasus_disconnect(struct usb_interface *intf)
1364{
1365 struct pegasus *pegasus = usb_get_intfdata(intf);
1366
1367 usb_set_intfdata(intf, NULL);
1368 if (!pegasus) {
1369 dev_dbg(&intf->dev, "unregistering non-bound device?\n");
1370 return;
1371 }
1372
1373 pegasus->flags |= PEGASUS_UNPLUG;
1374 cancel_delayed_work(&pegasus->carrier_check);
1375 unregister_netdev(pegasus->net);
Kevin Vigora85a46f2005-09-22 00:49:24 -07001376 unlink_all_urbs(pegasus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 free_all_urbs(pegasus);
Arnaldo Carvalho de Melo4c13eb62007-04-25 17:40:23 -07001378 if (pegasus->rx_skb != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 dev_kfree_skb(pegasus->rx_skb);
Arnaldo Carvalho de Melo4c13eb62007-04-25 17:40:23 -07001380 pegasus->rx_skb = NULL;
1381 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 free_netdev(pegasus->net);
David Brownellcda28362008-11-16 00:36:08 -08001383 pegasus_dec_workqueue();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384}
1385
Nicolas Kaiser5a9dbfe2010-06-26 06:58:54 +00001386static int pegasus_suspend(struct usb_interface *intf, pm_message_t message)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387{
1388 struct pegasus *pegasus = usb_get_intfdata(intf);
Nicolas Kaiser5a9dbfe2010-06-26 06:58:54 +00001389
1390 netif_device_detach(pegasus->net);
David Brownell7e713b82006-05-01 14:02:45 -07001391 cancel_delayed_work(&pegasus->carrier_check);
David Brownell27d72e82005-04-18 17:39:22 -07001392 if (netif_running(pegasus->net)) {
David Brownell27d72e82005-04-18 17:39:22 -07001393 usb_kill_urb(pegasus->rx_urb);
1394 usb_kill_urb(pegasus->intr_urb);
1395 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 return 0;
1397}
1398
Nicolas Kaiser5a9dbfe2010-06-26 06:58:54 +00001399static int pegasus_resume(struct usb_interface *intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400{
1401 struct pegasus *pegasus = usb_get_intfdata(intf);
1402
Nicolas Kaiser5a9dbfe2010-06-26 06:58:54 +00001403 netif_device_attach(pegasus->net);
David Brownell27d72e82005-04-18 17:39:22 -07001404 if (netif_running(pegasus->net)) {
1405 pegasus->rx_urb->status = 0;
1406 pegasus->rx_urb->actual_length = 0;
David Howells7d12e782006-10-05 14:55:46 +01001407 read_bulk_callback(pegasus->rx_urb);
David Brownell27d72e82005-04-18 17:39:22 -07001408
1409 pegasus->intr_urb->status = 0;
1410 pegasus->intr_urb->actual_length = 0;
David Howells7d12e782006-10-05 14:55:46 +01001411 intr_callback(pegasus->intr_urb);
David Brownell27d72e82005-04-18 17:39:22 -07001412 }
David Brownell7e713b82006-05-01 14:02:45 -07001413 queue_delayed_work(pegasus_workqueue, &pegasus->carrier_check,
1414 CARRIER_CHECK_DELAY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 return 0;
1416}
1417
Oliver Neukum8cb89572009-01-08 11:22:25 -08001418static const struct net_device_ops pegasus_netdev_ops = {
1419 .ndo_open = pegasus_open,
1420 .ndo_stop = pegasus_close,
1421 .ndo_do_ioctl = pegasus_ioctl,
1422 .ndo_start_xmit = pegasus_start_xmit,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00001423 .ndo_set_rx_mode = pegasus_set_multicast,
Oliver Neukum8cb89572009-01-08 11:22:25 -08001424 .ndo_get_stats = pegasus_netdev_stats,
1425 .ndo_tx_timeout = pegasus_tx_timeout,
Ben Hutchings635ecaa2009-07-09 17:59:01 +00001426 .ndo_change_mtu = eth_change_mtu,
Ben Hutchings240c1022009-07-09 17:54:35 +00001427 .ndo_set_mac_address = eth_mac_addr,
1428 .ndo_validate_addr = eth_validate_addr,
Oliver Neukum8cb89572009-01-08 11:22:25 -08001429};
1430
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431static struct usb_driver pegasus_driver = {
1432 .name = driver_name,
1433 .probe = pegasus_probe,
1434 .disconnect = pegasus_disconnect,
1435 .id_table = pegasus_ids,
1436 .suspend = pegasus_suspend,
1437 .resume = pegasus_resume,
Sarah Sharpe1f12eb2012-04-23 10:08:51 -07001438 .disable_hub_initiated_lpm = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439};
1440
David Brownellcda28362008-11-16 00:36:08 -08001441static void __init parse_id(char *id)
A.YOSHIYAMAa4f81a62005-11-15 09:55:18 +02001442{
Nicolas Kaiser5a9dbfe2010-06-26 06:58:54 +00001443 unsigned int vendor_id = 0, device_id = 0, flags = 0, i = 0;
1444 char *token, *name = NULL;
A.YOSHIYAMAa4f81a62005-11-15 09:55:18 +02001445
1446 if ((token = strsep(&id, ":")) != NULL)
1447 name = token;
1448 /* name now points to a null terminated string*/
1449 if ((token = strsep(&id, ":")) != NULL)
1450 vendor_id = simple_strtoul(token, NULL, 16);
1451 if ((token = strsep(&id, ":")) != NULL)
1452 device_id = simple_strtoul(token, NULL, 16);
1453 flags = simple_strtoul(id, NULL, 16);
1454 pr_info("%s: new device %s, vendor ID 0x%04x, device ID 0x%04x, flags: 0x%x\n",
Nicolas Kaiser5a9dbfe2010-06-26 06:58:54 +00001455 driver_name, name, vendor_id, device_id, flags);
A.YOSHIYAMAa4f81a62005-11-15 09:55:18 +02001456
1457 if (vendor_id > 0x10000 || vendor_id == 0)
1458 return;
1459 if (device_id > 0x10000 || device_id == 0)
1460 return;
1461
Nicolas Kaiser5a9dbfe2010-06-26 06:58:54 +00001462 for (i = 0; usb_dev_id[i].name; i++);
A.YOSHIYAMAa4f81a62005-11-15 09:55:18 +02001463 usb_dev_id[i].name = name;
1464 usb_dev_id[i].vendor = vendor_id;
1465 usb_dev_id[i].device = device_id;
1466 usb_dev_id[i].private = flags;
1467 pegasus_ids[i].match_flags = USB_DEVICE_ID_MATCH_DEVICE;
1468 pegasus_ids[i].idVendor = vendor_id;
1469 pegasus_ids[i].idProduct = device_id;
1470}
1471
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472static int __init pegasus_init(void)
1473{
1474 pr_info("%s: %s, " DRIVER_DESC "\n", driver_name, DRIVER_VERSION);
A.YOSHIYAMAa4f81a62005-11-15 09:55:18 +02001475 if (devid)
1476 parse_id(devid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 return usb_register(&pegasus_driver);
1478}
1479
1480static void __exit pegasus_exit(void)
1481{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 usb_deregister(&pegasus_driver);
1483}
1484
1485module_init(pegasus_init);
1486module_exit(pegasus_exit);