]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/net/usb/usbnet.c
Merge tag 'mlx5e-pedit' of git://git.kernel.org/pub/scm/linux/kernel/git/saeed/linux
[mirror_ubuntu-artful-kernel.git] / drivers / net / usb / usbnet.c
CommitLineData
1da177e4 1/*
090ffa9d 2 * USB Network driver infrastructure
f29fc259 3 * Copyright (C) 2000-2005 by David Brownell
1da177e4 4 * Copyright (C) 2003-2005 David Hollis <dhollis@davehollis.com>
1da177e4
LT
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
9cb00073 17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
1da177e4
LT
18 */
19
20/*
21 * This is a generic "USB networking" framework that works with several
090ffa9d
DB
22 * kinds of full and high speed networking devices: host-to-host cables,
23 * smart usb peripherals, and actual Ethernet adapters.
1da177e4 24 *
090ffa9d
DB
25 * These devices usually differ in terms of control protocols (if they
26 * even have one!) and sometimes they define new framing to wrap or batch
27 * Ethernet packets. Otherwise, they talk to USB pretty much the same,
28 * so interface (un)binding, endpoint I/O queues, fault handling, and other
29 * issues can usefully be addressed by this framework.
30 */
1da177e4
LT
31
32// #define DEBUG // error path messages, extra info
33// #define VERBOSE // more; success messages
34
1da177e4 35#include <linux/module.h>
1da177e4
LT
36#include <linux/init.h>
37#include <linux/netdevice.h>
38#include <linux/etherdevice.h>
03ad032b 39#include <linux/ctype.h>
1da177e4
LT
40#include <linux/ethtool.h>
41#include <linux/workqueue.h>
42#include <linux/mii.h>
1da177e4 43#include <linux/usb.h>
3692e94f 44#include <linux/usb/usbnet.h>
5a0e3ad6 45#include <linux/slab.h>
fd1f170d 46#include <linux/kernel.h>
b0786b43 47#include <linux/pm_runtime.h>
f29fc259
DB
48
49#define DRIVER_VERSION "22-Aug-2005"
1da177e4
LT
50
51
52/*-------------------------------------------------------------------------*/
53
54/*
55 * Nineteen USB 1.1 max size bulk transactions per frame (ms), max.
56 * Several dozen bytes of IPv4 data can fit in two such transactions.
57 * One maximum size Ethernet packet takes twenty four of them.
58 * For high speed, each frame comfortably fits almost 36 max size
59 * Ethernet packets (so queues should be bigger).
f29fc259 60 *
a88c32ae
ML
61 * The goal is to let the USB host controller be busy for 5msec or
62 * more before an irq is required, under load. Jumbograms change
63 * the equation.
1da177e4 64 */
a88c32ae
ML
65#define MAX_QUEUE_MEMORY (60 * 1518)
66#define RX_QLEN(dev) ((dev)->rx_qlen)
67#define TX_QLEN(dev) ((dev)->tx_qlen)
1da177e4 68
1da177e4
LT
69// reawaken network queue this soon after stopping; else watchdog barks
70#define TX_TIMEOUT_JIFFIES (5*HZ)
71
37ebb549
PM
72/* throttle rx/tx briefly after some faults, so hub_wq might disconnect()
73 * us (it polls at HZ/4 usually) before we report too many false errors.
74 */
1da177e4
LT
75#define THROTTLE_JIFFIES (HZ/8)
76
1da177e4
LT
77// between wakeups
78#define UNLINK_TIMEOUT_MS 3
79
80/*-------------------------------------------------------------------------*/
81
82// randomly generated ethernet address
83static u8 node_id [ETH_ALEN];
84
1da177e4
LT
85static const char driver_name [] = "usbnet";
86
87/* use ethtool to change the level for any given device */
88static int msg_level = -1;
89module_param (msg_level, int, 0);
90MODULE_PARM_DESC (msg_level, "Override default message level");
91
1da177e4
LT
92/*-------------------------------------------------------------------------*/
93
1da177e4 94/* handles CDC Ethernet and many other network "bulk data" interfaces */
2e55cc72 95int usbnet_get_endpoints(struct usbnet *dev, struct usb_interface *intf)
1da177e4
LT
96{
97 int tmp;
98 struct usb_host_interface *alt = NULL;
99 struct usb_host_endpoint *in = NULL, *out = NULL;
100 struct usb_host_endpoint *status = NULL;
101
102 for (tmp = 0; tmp < intf->num_altsetting; tmp++) {
103 unsigned ep;
104
105 in = out = status = NULL;
106 alt = intf->altsetting + tmp;
107
108 /* take the first altsetting with in-bulk + out-bulk;
109 * remember any status endpoint, just in case;
70f23fd6 110 * ignore other endpoints and altsettings.
1da177e4
LT
111 */
112 for (ep = 0; ep < alt->desc.bNumEndpoints; ep++) {
113 struct usb_host_endpoint *e;
114 int intr = 0;
115
116 e = alt->endpoint + ep;
117 switch (e->desc.bmAttributes) {
118 case USB_ENDPOINT_XFER_INT:
fc6e2544 119 if (!usb_endpoint_dir_in(&e->desc))
1da177e4
LT
120 continue;
121 intr = 1;
122 /* FALLTHROUGH */
123 case USB_ENDPOINT_XFER_BULK:
124 break;
125 default:
126 continue;
127 }
fc6e2544 128 if (usb_endpoint_dir_in(&e->desc)) {
1da177e4
LT
129 if (!intr && !in)
130 in = e;
131 else if (intr && !status)
132 status = e;
133 } else {
134 if (!out)
135 out = e;
136 }
137 }
138 if (in && out)
139 break;
140 }
141 if (!alt || !in || !out)
142 return -EINVAL;
143
8e95a202
JP
144 if (alt->desc.bAlternateSetting != 0 ||
145 !(dev->driver_info->flags & FLAG_NO_SETINT)) {
1da177e4
LT
146 tmp = usb_set_interface (dev->udev, alt->desc.bInterfaceNumber,
147 alt->desc.bAlternateSetting);
148 if (tmp < 0)
149 return tmp;
150 }
cb1cebbe 151
1da177e4
LT
152 dev->in = usb_rcvbulkpipe (dev->udev,
153 in->desc.bEndpointAddress & USB_ENDPOINT_NUMBER_MASK);
154 dev->out = usb_sndbulkpipe (dev->udev,
155 out->desc.bEndpointAddress & USB_ENDPOINT_NUMBER_MASK);
156 dev->status = status;
157 return 0;
158}
2e55cc72 159EXPORT_SYMBOL_GPL(usbnet_get_endpoints);
1da177e4 160
03ad032b
PH
161int usbnet_get_ethernet_addr(struct usbnet *dev, int iMACAddress)
162{
51487ae7 163 int tmp = -1, ret;
03ad032b
PH
164 unsigned char buf [13];
165
51487ae7
AS
166 ret = usb_string(dev->udev, iMACAddress, buf, sizeof buf);
167 if (ret == 12)
168 tmp = hex2bin(dev->net->dev_addr, buf, 6);
169 if (tmp < 0) {
03ad032b
PH
170 dev_dbg(&dev->udev->dev,
171 "bad MAC string %d fetch, %d\n", iMACAddress, tmp);
51487ae7
AS
172 if (ret >= 0)
173 ret = -EINVAL;
174 return ret;
03ad032b 175 }
03ad032b
PH
176 return 0;
177}
178EXPORT_SYMBOL_GPL(usbnet_get_ethernet_addr);
179
24ead299 180static void intr_complete (struct urb *urb)
181{
182 struct usbnet *dev = urb->context;
183 int status = urb->status;
184
185 switch (status) {
186 /* success */
187 case 0:
188 dev->driver_info->status(dev, urb);
189 break;
190
191 /* software-driven interface shutdown */
192 case -ENOENT: /* urb killed */
193 case -ESHUTDOWN: /* hardware gone */
194 netif_dbg(dev, ifdown, dev->net,
195 "intr shutdown, code %d\n", status);
196 return;
197
198 /* NOTE: not throttling like RX/TX, since this endpoint
199 * already polls infrequently
200 */
201 default:
202 netdev_dbg(dev->net, "intr status %d\n", status);
203 break;
204 }
205
24ead299 206 status = usb_submit_urb (urb, GFP_ATOMIC);
207 if (status != 0)
208 netif_err(dev, timer, dev->net,
209 "intr resubmit --> %d\n", status);
210}
1da177e4
LT
211
212static int init_status (struct usbnet *dev, struct usb_interface *intf)
213{
214 char *buf = NULL;
215 unsigned pipe = 0;
216 unsigned maxp;
217 unsigned period;
218
219 if (!dev->driver_info->status)
220 return 0;
221
222 pipe = usb_rcvintpipe (dev->udev,
223 dev->status->desc.bEndpointAddress
224 & USB_ENDPOINT_NUMBER_MASK);
225 maxp = usb_maxpacket (dev->udev, pipe, 0);
226
227 /* avoid 1 msec chatter: min 8 msec poll rate */
228 period = max ((int) dev->status->desc.bInterval,
229 (dev->udev->speed == USB_SPEED_HIGH) ? 7 : 3);
230
e94b1766 231 buf = kmalloc (maxp, GFP_KERNEL);
1da177e4 232 if (buf) {
e94b1766 233 dev->interrupt = usb_alloc_urb (0, GFP_KERNEL);
1da177e4
LT
234 if (!dev->interrupt) {
235 kfree (buf);
236 return -ENOMEM;
237 } else {
238 usb_fill_int_urb(dev->interrupt, dev->udev, pipe,
239 buf, maxp, intr_complete, dev, period);
720f3d7c 240 dev->interrupt->transfer_flags |= URB_FREE_BUFFER;
1da177e4
LT
241 dev_dbg(&intf->dev,
242 "status ep%din, %d bytes period %d\n",
243 usb_pipeendpoint(pipe), maxp, period);
244 }
245 }
18ab458f 246 return 0;
1da177e4
LT
247}
248
6eecdc5f
DW
249/* Submit the interrupt URB if not previously submitted, increasing refcount */
250int usbnet_status_start(struct usbnet *dev, gfp_t mem_flags)
251{
252 int ret = 0;
253
254 WARN_ON_ONCE(dev->interrupt == NULL);
255 if (dev->interrupt) {
256 mutex_lock(&dev->interrupt_mutex);
257
258 if (++dev->interrupt_count == 1)
259 ret = usb_submit_urb(dev->interrupt, mem_flags);
260
261 dev_dbg(&dev->udev->dev, "incremented interrupt URB count to %d\n",
262 dev->interrupt_count);
263 mutex_unlock(&dev->interrupt_mutex);
264 }
265 return ret;
266}
267EXPORT_SYMBOL_GPL(usbnet_status_start);
268
269/* For resume; submit interrupt URB if previously submitted */
270static int __usbnet_status_start_force(struct usbnet *dev, gfp_t mem_flags)
271{
272 int ret = 0;
273
274 mutex_lock(&dev->interrupt_mutex);
275 if (dev->interrupt_count) {
276 ret = usb_submit_urb(dev->interrupt, mem_flags);
277 dev_dbg(&dev->udev->dev,
278 "submitted interrupt URB for resume\n");
279 }
280 mutex_unlock(&dev->interrupt_mutex);
281 return ret;
282}
283
284/* Kill the interrupt URB if all submitters want it killed */
285void usbnet_status_stop(struct usbnet *dev)
286{
287 if (dev->interrupt) {
288 mutex_lock(&dev->interrupt_mutex);
289 WARN_ON(dev->interrupt_count == 0);
290
291 if (dev->interrupt_count && --dev->interrupt_count == 0)
292 usb_kill_urb(dev->interrupt);
293
294 dev_dbg(&dev->udev->dev,
295 "decremented interrupt URB count to %d\n",
296 dev->interrupt_count);
297 mutex_unlock(&dev->interrupt_mutex);
298 }
299}
300EXPORT_SYMBOL_GPL(usbnet_status_stop);
301
302/* For suspend; always kill interrupt URB */
303static void __usbnet_status_stop_force(struct usbnet *dev)
304{
305 if (dev->interrupt) {
306 mutex_lock(&dev->interrupt_mutex);
307 usb_kill_urb(dev->interrupt);
308 dev_dbg(&dev->udev->dev, "killed interrupt URB for suspend\n");
309 mutex_unlock(&dev->interrupt_mutex);
310 }
311}
312
2e55cc72
DB
313/* Passes this packet up the stack, updating its accounting.
314 * Some link protocols batch packets, so their rx_fixup paths
315 * can return clones as well as just modify the original skb.
316 */
317void usbnet_skb_return (struct usbnet *dev, struct sk_buff *skb)
1da177e4
LT
318{
319 int status;
320
7834ddbc
JK
321 if (test_bit(EVENT_RX_PAUSED, &dev->flags)) {
322 skb_queue_tail(&dev->rxq_pause, skb);
323 return;
324 }
325
81e0ce79
BM
326 /* only update if unset to allow minidriver rx_fixup override */
327 if (skb->protocol == 0)
328 skb->protocol = eth_type_trans (skb, dev->net);
329
7963837f
HX
330 dev->net->stats.rx_packets++;
331 dev->net->stats.rx_bytes += skb->len;
1da177e4 332
a475f603
JP
333 netif_dbg(dev, rx_status, dev->net, "< rx, len %zu, type 0x%x\n",
334 skb->len + sizeof (struct ethhdr), skb->protocol);
1da177e4 335 memset (skb->cb, 0, sizeof (struct skb_data));
f9b491ec
MR
336
337 if (skb_defer_rx_timestamp(skb))
338 return;
339
1da177e4 340 status = netif_rx (skb);
a475f603
JP
341 if (status != NET_RX_SUCCESS)
342 netif_dbg(dev, rx_err, dev->net,
343 "netif_rx status %d\n", status);
1da177e4 344}
2e55cc72 345EXPORT_SYMBOL_GPL(usbnet_skb_return);
1da177e4 346
a88c32ae
ML
347/* must be called if hard_mtu or rx_urb_size changed */
348void usbnet_update_max_qlen(struct usbnet *dev)
349{
350 enum usb_device_speed speed = dev->udev->speed;
351
352 switch (speed) {
353 case USB_SPEED_HIGH:
354 dev->rx_qlen = MAX_QUEUE_MEMORY / dev->rx_urb_size;
355 dev->tx_qlen = MAX_QUEUE_MEMORY / dev->hard_mtu;
356 break;
452c447a 357 case USB_SPEED_SUPER:
ea079842 358 case USB_SPEED_SUPER_PLUS:
452c447a
ML
359 /*
360 * Not take default 5ms qlen for super speed HC to
361 * save memory, and iperf tests show 2.5ms qlen can
362 * work well
363 */
364 dev->rx_qlen = 5 * MAX_QUEUE_MEMORY / dev->rx_urb_size;
365 dev->tx_qlen = 5 * MAX_QUEUE_MEMORY / dev->hard_mtu;
366 break;
a88c32ae
ML
367 default:
368 dev->rx_qlen = dev->tx_qlen = 4;
369 }
370}
371EXPORT_SYMBOL_GPL(usbnet_update_max_qlen);
372
1da177e4
LT
373\f
374/*-------------------------------------------------------------------------
375 *
376 * Network Device Driver (peer link to "Host Device", from USB host)
377 *
378 *-------------------------------------------------------------------------*/
379
777baa47 380int usbnet_change_mtu (struct net_device *net, int new_mtu)
1da177e4
LT
381{
382 struct usbnet *dev = netdev_priv(net);
f29fc259 383 int ll_mtu = new_mtu + net->hard_header_len;
a99c1949
JP
384 int old_hard_mtu = dev->hard_mtu;
385 int old_rx_urb_size = dev->rx_urb_size;
1da177e4 386
1da177e4 387 // no second zero-length packet read wanted after mtu-sized packets
f29fc259 388 if ((ll_mtu % dev->maxpacket) == 0)
1da177e4
LT
389 return -EDOM;
390 net->mtu = new_mtu;
a99c1949
JP
391
392 dev->hard_mtu = net->mtu + net->hard_header_len;
393 if (dev->rx_urb_size == old_hard_mtu) {
394 dev->rx_urb_size = dev->hard_mtu;
43daa96b
SL
395 if (dev->rx_urb_size > old_rx_urb_size) {
396 usbnet_pause_rx(dev);
a99c1949 397 usbnet_unlink_rx_urbs(dev);
43daa96b
SL
398 usbnet_resume_rx(dev);
399 }
a99c1949
JP
400 }
401
a88c32ae
ML
402 /* max qlen depend on hard_mtu and rx_urb_size */
403 usbnet_update_max_qlen(dev);
404
1da177e4
LT
405 return 0;
406}
777baa47 407EXPORT_SYMBOL_GPL(usbnet_change_mtu);
1da177e4 408
5b6e9bcd
ML
409/* The caller must hold list->lock */
410static void __usbnet_queue_skb(struct sk_buff_head *list,
411 struct sk_buff *newsk, enum skb_state state)
412{
413 struct skb_data *entry = (struct skb_data *) newsk->cb;
414
415 __skb_queue_tail(list, newsk);
416 entry->state = state;
417}
418
1da177e4
LT
419/*-------------------------------------------------------------------------*/
420
1da177e4
LT
421/* some LK 2.4 HCDs oopsed if we freed or resubmitted urbs from
422 * completion callbacks. 2.5 should have fixed those bugs...
423 */
424
5b6e9bcd
ML
425static enum skb_state defer_bh(struct usbnet *dev, struct sk_buff *skb,
426 struct sk_buff_head *list, enum skb_state state)
1da177e4 427{
1da177e4 428 unsigned long flags;
5b6e9bcd
ML
429 enum skb_state old_state;
430 struct skb_data *entry = (struct skb_data *) skb->cb;
1da177e4 431
8728b834 432 spin_lock_irqsave(&list->lock, flags);
5b6e9bcd
ML
433 old_state = entry->state;
434 entry->state = state;
8728b834 435 __skb_unlink(skb, list);
fcb0bb6a
ES
436
437 /* defer_bh() is never called with list == &dev->done.
438 * spin_lock_nested() tells lockdep that it is OK to take
439 * dev->done.lock here with list->lock held.
440 */
441 spin_lock_nested(&dev->done.lock, SINGLE_DEPTH_NESTING);
442
8728b834 443 __skb_queue_tail(&dev->done, skb);
1da177e4 444 if (dev->done.qlen == 1)
8728b834 445 tasklet_schedule(&dev->bh);
fcb0bb6a
ES
446 spin_unlock(&dev->done.lock);
447 spin_unlock_irqrestore(&list->lock, flags);
5b6e9bcd 448 return old_state;
1da177e4
LT
449}
450
451/* some work can't be done in tasklets, so we use keventd
452 *
453 * NOTE: annoying asymmetry: if it's active, schedule_work() fails,
454 * but tasklet_schedule() doesn't. hope the failure is rare.
455 */
2e55cc72 456void usbnet_defer_kevent (struct usbnet *dev, int work)
1da177e4
LT
457{
458 set_bit (work, &dev->flags);
9532021d
SG
459 if (!schedule_work (&dev->kevent)) {
460 if (net_ratelimit())
461 netdev_err(dev->net, "kevent %d may have been dropped\n", work);
462 } else {
60b86755 463 netdev_dbg(dev->net, "kevent %d scheduled\n", work);
9532021d 464 }
1da177e4 465}
2e55cc72 466EXPORT_SYMBOL_GPL(usbnet_defer_kevent);
1da177e4
LT
467
468/*-------------------------------------------------------------------------*/
469
7d12e780 470static void rx_complete (struct urb *urb);
1da177e4 471
dacb3975 472static int rx_submit (struct usbnet *dev, struct urb *urb, gfp_t flags)
1da177e4
LT
473{
474 struct sk_buff *skb;
475 struct skb_data *entry;
476 int retval = 0;
477 unsigned long lockflags;
2e55cc72 478 size_t size = dev->rx_urb_size;
1da177e4 479
70c37bf9
BM
480 /* prevent rx skb allocation when error ratio is high */
481 if (test_bit(EVENT_RX_KILL, &dev->flags)) {
482 usb_free_urb(urb);
483 return -ENOLINK;
484 }
485
7bdd4027
ED
486 skb = __netdev_alloc_skb_ip_align(dev->net, size, flags);
487 if (!skb) {
a475f603 488 netif_dbg(dev, rx_err, dev->net, "no rx skb\n");
2e55cc72 489 usbnet_defer_kevent (dev, EVENT_RX_MEMORY);
1da177e4 490 usb_free_urb (urb);
dacb3975 491 return -ENOMEM;
1da177e4 492 }
1da177e4
LT
493
494 entry = (struct skb_data *) skb->cb;
495 entry->urb = urb;
496 entry->dev = dev;
1da177e4
LT
497 entry->length = 0;
498
499 usb_fill_bulk_urb (urb, dev->udev, dev->in,
500 skb->data, size, rx_complete, skb);
1da177e4
LT
501
502 spin_lock_irqsave (&dev->rxq.lock, lockflags);
503
8e95a202
JP
504 if (netif_running (dev->net) &&
505 netif_device_present (dev->net) &&
69ee472f
ON
506 !test_bit (EVENT_RX_HALT, &dev->flags) &&
507 !test_bit (EVENT_DEV_ASLEEP, &dev->flags)) {
18ab458f 508 switch (retval = usb_submit_urb (urb, GFP_ATOMIC)) {
1da177e4 509 case -EPIPE:
2e55cc72 510 usbnet_defer_kevent (dev, EVENT_RX_HALT);
1da177e4
LT
511 break;
512 case -ENOMEM:
2e55cc72 513 usbnet_defer_kevent (dev, EVENT_RX_MEMORY);
1da177e4
LT
514 break;
515 case -ENODEV:
a475f603 516 netif_dbg(dev, ifdown, dev->net, "device gone\n");
1da177e4
LT
517 netif_device_detach (dev->net);
518 break;
dacb3975
DM
519 case -EHOSTUNREACH:
520 retval = -ENOLINK;
521 break;
1da177e4 522 default:
a475f603
JP
523 netif_dbg(dev, rx_err, dev->net,
524 "rx submit, %d\n", retval);
1da177e4
LT
525 tasklet_schedule (&dev->bh);
526 break;
527 case 0:
5b6e9bcd 528 __usbnet_queue_skb(&dev->rxq, skb, rx_start);
1da177e4
LT
529 }
530 } else {
a475f603 531 netif_dbg(dev, ifdown, dev->net, "rx: stopped\n");
1da177e4
LT
532 retval = -ENOLINK;
533 }
534 spin_unlock_irqrestore (&dev->rxq.lock, lockflags);
535 if (retval) {
536 dev_kfree_skb_any (skb);
537 usb_free_urb (urb);
538 }
dacb3975 539 return retval;
1da177e4
LT
540}
541
542
543/*-------------------------------------------------------------------------*/
544
545static inline void rx_process (struct usbnet *dev, struct sk_buff *skb)
546{
8e95a202 547 if (dev->driver_info->rx_fixup &&
7a635ea9
AZ
548 !dev->driver_info->rx_fixup (dev, skb)) {
549 /* With RX_ASSEMBLE, rx_fixup() must update counters */
550 if (!(dev->driver_info->flags & FLAG_RX_ASSEMBLE))
551 dev->net->stats.rx_errors++;
552 goto done;
553 }
1da177e4
LT
554 // else network stack removes extra byte if we forced a short packet
555
eb85569f
EG
556 /* all data was already cloned from skb inside the driver */
557 if (dev->driver_info->flags & FLAG_MULTI_PACKET)
558 goto done;
559
560 if (skb->len < ETH_HLEN) {
561 dev->net->stats.rx_errors++;
562 dev->net->stats.rx_length_errors++;
563 netif_dbg(dev, rx_err, dev->net, "rx length %d\n", skb->len);
564 } else {
565 usbnet_skb_return(dev, skb);
073285fd 566 return;
1da177e4 567 }
073285fd 568
7a635ea9 569done:
073285fd 570 skb_queue_tail(&dev->done, skb);
1da177e4
LT
571}
572
573/*-------------------------------------------------------------------------*/
574
7d12e780 575static void rx_complete (struct urb *urb)
1da177e4
LT
576{
577 struct sk_buff *skb = (struct sk_buff *) urb->context;
578 struct skb_data *entry = (struct skb_data *) skb->cb;
579 struct usbnet *dev = entry->dev;
580 int urb_status = urb->status;
5b6e9bcd 581 enum skb_state state;
1da177e4
LT
582
583 skb_put (skb, urb->actual_length);
5b6e9bcd 584 state = rx_done;
1da177e4
LT
585 entry->urb = NULL;
586
587 switch (urb_status) {
18ab458f
DB
588 /* success */
589 case 0:
1da177e4
LT
590 break;
591
18ab458f
DB
592 /* stalls need manual reset. this is rare ... except that
593 * when going through USB 2.0 TTs, unplug appears this way.
3ac49a1c 594 * we avoid the highspeed version of the ETIMEDOUT/EILSEQ
18ab458f
DB
595 * storm, recovering as needed.
596 */
597 case -EPIPE:
7963837f 598 dev->net->stats.rx_errors++;
2e55cc72 599 usbnet_defer_kevent (dev, EVENT_RX_HALT);
1da177e4
LT
600 // FALLTHROUGH
601
18ab458f
DB
602 /* software-driven interface shutdown */
603 case -ECONNRESET: /* async unlink */
604 case -ESHUTDOWN: /* hardware gone */
a475f603
JP
605 netif_dbg(dev, ifdown, dev->net,
606 "rx shutdown, code %d\n", urb_status);
1da177e4
LT
607 goto block;
608
37ebb549 609 /* we get controller i/o faults during hub_wq disconnect() delays.
18ab458f 610 * throttle down resubmits, to avoid log floods; just temporarily,
37ebb549 611 * so we still recover when the fault isn't a hub_wq delay.
18ab458f
DB
612 */
613 case -EPROTO:
614 case -ETIME:
615 case -EILSEQ:
7963837f 616 dev->net->stats.rx_errors++;
1da177e4
LT
617 if (!timer_pending (&dev->delay)) {
618 mod_timer (&dev->delay, jiffies + THROTTLE_JIFFIES);
a475f603
JP
619 netif_dbg(dev, link, dev->net,
620 "rx throttle %d\n", urb_status);
1da177e4
LT
621 }
622block:
5b6e9bcd 623 state = rx_cleanup;
1da177e4
LT
624 entry->urb = urb;
625 urb = NULL;
626 break;
627
18ab458f
DB
628 /* data overrun ... flush fifo? */
629 case -EOVERFLOW:
7963837f 630 dev->net->stats.rx_over_errors++;
1da177e4 631 // FALLTHROUGH
cb1cebbe 632
18ab458f 633 default:
5b6e9bcd 634 state = rx_cleanup;
7963837f 635 dev->net->stats.rx_errors++;
a475f603 636 netif_dbg(dev, rx_err, dev->net, "rx status %d\n", urb_status);
1da177e4
LT
637 break;
638 }
639
70c37bf9
BM
640 /* stop rx if packet error rate is high */
641 if (++dev->pkt_cnt > 30) {
642 dev->pkt_cnt = 0;
643 dev->pkt_err = 0;
644 } else {
645 if (state == rx_cleanup)
646 dev->pkt_err++;
647 if (dev->pkt_err > 20)
648 set_bit(EVENT_RX_KILL, &dev->flags);
649 }
650
5b6e9bcd 651 state = defer_bh(dev, skb, &dev->rxq, state);
1da177e4
LT
652
653 if (urb) {
8e95a202 654 if (netif_running (dev->net) &&
5b6e9bcd
ML
655 !test_bit (EVENT_RX_HALT, &dev->flags) &&
656 state != unlink_start) {
1da177e4 657 rx_submit (dev, urb, GFP_ATOMIC);
8a783354 658 usb_mark_last_busy(dev->udev);
1da177e4
LT
659 return;
660 }
661 usb_free_urb (urb);
662 }
a475f603 663 netif_dbg(dev, rx_err, dev->net, "no read resubmitted\n");
1da177e4
LT
664}
665
7834ddbc
JK
666/*-------------------------------------------------------------------------*/
667void usbnet_pause_rx(struct usbnet *dev)
668{
669 set_bit(EVENT_RX_PAUSED, &dev->flags);
670
a475f603 671 netif_dbg(dev, rx_status, dev->net, "paused rx queue enabled\n");
7834ddbc
JK
672}
673EXPORT_SYMBOL_GPL(usbnet_pause_rx);
674
675void usbnet_resume_rx(struct usbnet *dev)
676{
677 struct sk_buff *skb;
678 int num = 0;
679
680 clear_bit(EVENT_RX_PAUSED, &dev->flags);
681
682 while ((skb = skb_dequeue(&dev->rxq_pause)) != NULL) {
683 usbnet_skb_return(dev, skb);
684 num++;
685 }
686
687 tasklet_schedule(&dev->bh);
688
a475f603
JP
689 netif_dbg(dev, rx_status, dev->net,
690 "paused rx queue disabled, %d skbs requeued\n", num);
7834ddbc
JK
691}
692EXPORT_SYMBOL_GPL(usbnet_resume_rx);
693
694void usbnet_purge_paused_rxq(struct usbnet *dev)
695{
696 skb_queue_purge(&dev->rxq_pause);
697}
698EXPORT_SYMBOL_GPL(usbnet_purge_paused_rxq);
699
1da177e4
LT
700/*-------------------------------------------------------------------------*/
701
702// unlink pending rx/tx; completion handlers do all other cleanup
703
704static int unlink_urbs (struct usbnet *dev, struct sk_buff_head *q)
705{
706 unsigned long flags;
5b6e9bcd 707 struct sk_buff *skb;
1da177e4
LT
708 int count = 0;
709
710 spin_lock_irqsave (&q->lock, flags);
5b6e9bcd 711 while (!skb_queue_empty(q)) {
1da177e4
LT
712 struct skb_data *entry;
713 struct urb *urb;
714 int retval;
715
5b6e9bcd
ML
716 skb_queue_walk(q, skb) {
717 entry = (struct skb_data *) skb->cb;
718 if (entry->state != unlink_start)
719 goto found;
720 }
721 break;
722found:
723 entry->state = unlink_start;
1da177e4 724 urb = entry->urb;
1da177e4 725
0956a8c2 726 /*
727 * Get reference count of the URB to avoid it to be
728 * freed during usb_unlink_urb, which may trigger
729 * use-after-free problem inside usb_unlink_urb since
730 * usb_unlink_urb is always racing with .complete
731 * handler(include defer_bh).
732 */
733 usb_get_urb(urb);
4231d47e 734 spin_unlock_irqrestore(&q->lock, flags);
1da177e4
LT
735 // during some PM-driven resume scenarios,
736 // these (async) unlinks complete immediately
737 retval = usb_unlink_urb (urb);
738 if (retval != -EINPROGRESS && retval != 0)
60b86755 739 netdev_dbg(dev->net, "unlink urb err, %d\n", retval);
1da177e4
LT
740 else
741 count++;
0956a8c2 742 usb_put_urb(urb);
4231d47e 743 spin_lock_irqsave(&q->lock, flags);
1da177e4
LT
744 }
745 spin_unlock_irqrestore (&q->lock, flags);
746 return count;
747}
748
a99c1949
JP
749// Flush all pending rx urbs
750// minidrivers may need to do this when the MTU changes
751
752void usbnet_unlink_rx_urbs(struct usbnet *dev)
753{
754 if (netif_running(dev->net)) {
755 (void) unlink_urbs (dev, &dev->rxq);
756 tasklet_schedule(&dev->bh);
757 }
758}
759EXPORT_SYMBOL_GPL(usbnet_unlink_rx_urbs);
1da177e4
LT
760
761/*-------------------------------------------------------------------------*/
762
fcb0bb6a
ES
763static void wait_skb_queue_empty(struct sk_buff_head *q)
764{
765 unsigned long flags;
766
767 spin_lock_irqsave(&q->lock, flags);
768 while (!skb_queue_empty(q)) {
769 spin_unlock_irqrestore(&q->lock, flags);
770 schedule_timeout(msecs_to_jiffies(UNLINK_TIMEOUT_MS));
771 set_current_state(TASK_UNINTERRUPTIBLE);
772 spin_lock_irqsave(&q->lock, flags);
773 }
774 spin_unlock_irqrestore(&q->lock, flags);
775}
776
1da177e4 777// precondition: never called in_interrupt
69ee472f
ON
778static void usbnet_terminate_urbs(struct usbnet *dev)
779{
69ee472f
ON
780 DECLARE_WAITQUEUE(wait, current);
781 int temp;
782
783 /* ensure there are no more active urbs */
14a0d635 784 add_wait_queue(&dev->wait, &wait);
69ee472f 785 set_current_state(TASK_UNINTERRUPTIBLE);
69ee472f
ON
786 temp = unlink_urbs(dev, &dev->txq) +
787 unlink_urbs(dev, &dev->rxq);
788
789 /* maybe wait for deletions to finish. */
fcb0bb6a
ES
790 wait_skb_queue_empty(&dev->rxq);
791 wait_skb_queue_empty(&dev->txq);
792 wait_skb_queue_empty(&dev->done);
793 netif_dbg(dev, ifdown, dev->net,
794 "waited for %d urb completions\n", temp);
69ee472f 795 set_current_state(TASK_RUNNING);
14a0d635 796 remove_wait_queue(&dev->wait, &wait);
69ee472f 797}
1da177e4 798
777baa47 799int usbnet_stop (struct net_device *net)
1da177e4
LT
800{
801 struct usbnet *dev = netdev_priv(net);
a33e9e7f 802 struct driver_info *info = dev->driver_info;
f50791ac 803 int retval, pm, mpn;
1da177e4 804
75bd0cbd 805 clear_bit(EVENT_DEV_OPEN, &dev->flags);
1da177e4
LT
806 netif_stop_queue (net);
807
a475f603 808 netif_info(dev, ifdown, dev->net,
8ccef431 809 "stop stats: rx/tx %lu/%lu, errs %lu/%lu\n",
a475f603
JP
810 net->stats.rx_packets, net->stats.tx_packets,
811 net->stats.rx_errors, net->stats.tx_errors);
1da177e4 812
14a0d635
ON
813 /* to not race resume */
814 pm = usb_autopm_get_interface(dev->intf);
a33e9e7f
JK
815 /* allow minidriver to stop correctly (wireless devices to turn off
816 * radio etc) */
817 if (info->stop) {
818 retval = info->stop(dev);
a475f603
JP
819 if (retval < 0)
820 netif_info(dev, ifdown, dev->net,
821 "stop fail (%d) usbnet usb-%s-%s, %s\n",
822 retval,
823 dev->udev->bus->bus_name, dev->udev->devpath,
824 info->description);
a33e9e7f
JK
825 }
826
69ee472f
ON
827 if (!(info->flags & FLAG_AVOID_UNLINK_URBS))
828 usbnet_terminate_urbs(dev);
1da177e4 829
6eecdc5f 830 usbnet_status_stop(dev);
1da177e4 831
7834ddbc
JK
832 usbnet_purge_paused_rxq(dev);
833
f50791ac
ES
834 mpn = !test_and_clear_bit(EVENT_NO_RUNTIME_PM, &dev->flags);
835
1da177e4
LT
836 /* deferred work (task, timer, softirq) must also stop.
837 * can't flush_scheduled_work() until we drop rtnl (later),
838 * else workers could deadlock; so make workers a NOP.
839 */
840 dev->flags = 0;
841 del_timer_sync (&dev->delay);
842 tasklet_kill (&dev->bh);
14a0d635
ON
843 if (!pm)
844 usb_autopm_put_interface(dev->intf);
845
f50791ac 846 if (info->manage_power && mpn)
69ee472f
ON
847 info->manage_power(dev, 0);
848 else
849 usb_autopm_put_interface(dev->intf);
1da177e4
LT
850
851 return 0;
852}
777baa47 853EXPORT_SYMBOL_GPL(usbnet_stop);
1da177e4
LT
854
855/*-------------------------------------------------------------------------*/
856
857// posts reads, and enables write queuing
858
859// precondition: never called in_interrupt
860
777baa47 861int usbnet_open (struct net_device *net)
1da177e4
LT
862{
863 struct usbnet *dev = netdev_priv(net);
a11a6544 864 int retval;
1da177e4
LT
865 struct driver_info *info = dev->driver_info;
866
a11a6544 867 if ((retval = usb_autopm_get_interface(dev->intf)) < 0) {
a475f603
JP
868 netif_info(dev, ifup, dev->net,
869 "resumption fail (%d) usbnet usb-%s-%s, %s\n",
870 retval,
871 dev->udev->bus->bus_name,
872 dev->udev->devpath,
873 info->description);
a11a6544
ON
874 goto done_nopm;
875 }
876
1da177e4
LT
877 // put into "known safe" state
878 if (info->reset && (retval = info->reset (dev)) < 0) {
a475f603
JP
879 netif_info(dev, ifup, dev->net,
880 "open reset fail (%d) usbnet usb-%s-%s, %s\n",
881 retval,
882 dev->udev->bus->bus_name,
883 dev->udev->devpath,
884 info->description);
1da177e4
LT
885 goto done;
886 }
887
a88c32ae
ML
888 /* hard_mtu or rx_urb_size may change in reset() */
889 usbnet_update_max_qlen(dev);
890
1da177e4
LT
891 // insist peer be connected
892 if (info->check_connect && (retval = info->check_connect (dev)) < 0) {
a475f603 893 netif_dbg(dev, ifup, dev->net, "can't open; %d\n", retval);
1da177e4
LT
894 goto done;
895 }
896
897 /* start any status interrupt transfer */
898 if (dev->interrupt) {
6eecdc5f 899 retval = usbnet_status_start(dev, GFP_KERNEL);
1da177e4 900 if (retval < 0) {
a475f603
JP
901 netif_err(dev, ifup, dev->net,
902 "intr submit %d\n", retval);
1da177e4
LT
903 goto done;
904 }
905 }
906
68972efa 907 set_bit(EVENT_DEV_OPEN, &dev->flags);
1da177e4 908 netif_start_queue (net);
a475f603
JP
909 netif_info(dev, ifup, dev->net,
910 "open: enable queueing (rx %d, tx %d) mtu %d %s framing\n",
911 (int)RX_QLEN(dev), (int)TX_QLEN(dev),
912 dev->net->mtu,
913 (dev->driver_info->flags & FLAG_FRAMING_NC) ? "NetChip" :
914 (dev->driver_info->flags & FLAG_FRAMING_GL) ? "GeneSys" :
915 (dev->driver_info->flags & FLAG_FRAMING_Z) ? "Zaurus" :
916 (dev->driver_info->flags & FLAG_FRAMING_RN) ? "RNDIS" :
917 (dev->driver_info->flags & FLAG_FRAMING_AX) ? "ASIX" :
918 "simple");
1da177e4 919
70c37bf9
BM
920 /* reset rx error state */
921 dev->pkt_cnt = 0;
922 dev->pkt_err = 0;
923 clear_bit(EVENT_RX_KILL, &dev->flags);
924
1da177e4
LT
925 // delay posting reads until we're fully open
926 tasklet_schedule (&dev->bh);
69ee472f
ON
927 if (info->manage_power) {
928 retval = info->manage_power(dev, 1);
a1c088e0
ON
929 if (retval < 0) {
930 retval = 0;
931 set_bit(EVENT_NO_RUNTIME_PM, &dev->flags);
932 } else {
933 usb_autopm_put_interface(dev->intf);
934 }
69ee472f 935 }
a11a6544 936 return retval;
1da177e4 937done:
a11a6544
ON
938 usb_autopm_put_interface(dev->intf);
939done_nopm:
1da177e4
LT
940 return retval;
941}
777baa47 942EXPORT_SYMBOL_GPL(usbnet_open);
1da177e4
LT
943
944/*-------------------------------------------------------------------------*/
945
2e55cc72
DB
946/* ethtool methods; minidrivers may need to add some more, but
947 * they'll probably want to use this base set.
948 */
949
8bae3551
PR
950int usbnet_get_link_ksettings(struct net_device *net,
951 struct ethtool_link_ksettings *cmd)
952{
953 struct usbnet *dev = netdev_priv(net);
954
955 if (!dev->mii.mdio_read)
956 return -EOPNOTSUPP;
957
958 return mii_ethtool_get_link_ksettings(&dev->mii, cmd);
959}
960EXPORT_SYMBOL_GPL(usbnet_get_link_ksettings);
961
962int usbnet_set_link_ksettings(struct net_device *net,
963 const struct ethtool_link_ksettings *cmd)
964{
965 struct usbnet *dev = netdev_priv(net);
966 int retval;
967
968 if (!dev->mii.mdio_write)
969 return -EOPNOTSUPP;
970
971 retval = mii_ethtool_set_link_ksettings(&dev->mii, cmd);
972
973 /* link speed/duplex might have changed */
974 if (dev->driver_info->link_reset)
975 dev->driver_info->link_reset(dev);
976
977 /* hard_mtu or rx_urb_size may change in link_reset() */
978 usbnet_update_max_qlen(dev);
979
980 return retval;
981}
982EXPORT_SYMBOL_GPL(usbnet_set_link_ksettings);
983
c41286fd 984u32 usbnet_get_link (struct net_device *net)
1da177e4
LT
985{
986 struct usbnet *dev = netdev_priv(net);
987
f29fc259 988 /* If a check_connect is defined, return its result */
1da177e4
LT
989 if (dev->driver_info->check_connect)
990 return dev->driver_info->check_connect (dev) == 0;
991
c41286fd
AB
992 /* if the device has mii operations, use those */
993 if (dev->mii.mdio_read)
994 return mii_link_ok(&dev->mii);
995
05ffb3e2
BM
996 /* Otherwise, dtrt for drivers calling netif_carrier_{on,off} */
997 return ethtool_op_get_link(net);
1da177e4 998}
c41286fd 999EXPORT_SYMBOL_GPL(usbnet_get_link);
1da177e4 1000
18ee91fa 1001int usbnet_nway_reset(struct net_device *net)
1da177e4
LT
1002{
1003 struct usbnet *dev = netdev_priv(net);
1004
18ee91fa
DB
1005 if (!dev->mii.mdio_write)
1006 return -EOPNOTSUPP;
1007
1008 return mii_nway_restart(&dev->mii);
1da177e4 1009}
18ee91fa 1010EXPORT_SYMBOL_GPL(usbnet_nway_reset);
1da177e4 1011
18ee91fa 1012void usbnet_get_drvinfo (struct net_device *net, struct ethtool_drvinfo *info)
1da177e4
LT
1013{
1014 struct usbnet *dev = netdev_priv(net);
1015
86a2f415
PS
1016 strlcpy (info->driver, dev->driver_name, sizeof info->driver);
1017 strlcpy (info->version, DRIVER_VERSION, sizeof info->version);
1018 strlcpy (info->fw_version, dev->driver_info->description,
18ee91fa
DB
1019 sizeof info->fw_version);
1020 usb_make_path (dev->udev, info->bus_info, sizeof info->bus_info);
1da177e4 1021}
18ee91fa 1022EXPORT_SYMBOL_GPL(usbnet_get_drvinfo);
1da177e4 1023
18ee91fa 1024u32 usbnet_get_msglevel (struct net_device *net)
c41286fd
AB
1025{
1026 struct usbnet *dev = netdev_priv(net);
1027
18ee91fa
DB
1028 return dev->msg_enable;
1029}
1030EXPORT_SYMBOL_GPL(usbnet_get_msglevel);
c41286fd 1031
18ee91fa
DB
1032void usbnet_set_msglevel (struct net_device *net, u32 level)
1033{
1034 struct usbnet *dev = netdev_priv(net);
1035
1036 dev->msg_enable = level;
c41286fd 1037}
18ee91fa 1038EXPORT_SYMBOL_GPL(usbnet_set_msglevel);
c41286fd 1039
2e55cc72 1040/* drivers may override default ethtool_ops in their bind() routine */
0fc0b732 1041static const struct ethtool_ops usbnet_ethtool_ops = {
2e55cc72 1042 .get_link = usbnet_get_link,
c41286fd 1043 .nway_reset = usbnet_nway_reset,
18ee91fa 1044 .get_drvinfo = usbnet_get_drvinfo,
2e55cc72
DB
1045 .get_msglevel = usbnet_get_msglevel,
1046 .set_msglevel = usbnet_set_msglevel,
123edb18 1047 .get_ts_info = ethtool_op_get_ts_info,
8bae3551
PR
1048 .get_link_ksettings = usbnet_get_link_ksettings,
1049 .set_link_ksettings = usbnet_set_link_ksettings,
2e55cc72 1050};
1da177e4
LT
1051
1052/*-------------------------------------------------------------------------*/
1053
4b49f58f
ML
1054static void __handle_link_change(struct usbnet *dev)
1055{
1056 if (!test_bit(EVENT_DEV_OPEN, &dev->flags))
1057 return;
1058
1059 if (!netif_carrier_ok(dev->net)) {
1060 /* kill URBs for reading packets to save bus bandwidth */
1061 unlink_urbs(dev, &dev->rxq);
1062
1063 /*
1064 * tx_timeout will unlink URBs for sending packets and
1065 * tx queue is stopped by netcore after link becomes off
1066 */
1067 } else {
1068 /* submitting URBs for reading packets */
1069 tasklet_schedule(&dev->bh);
1070 }
1071
a88c32ae
ML
1072 /* hard_mtu or rx_urb_size may change during link change */
1073 usbnet_update_max_qlen(dev);
1074
4b49f58f
ML
1075 clear_bit(EVENT_LINK_CHANGE, &dev->flags);
1076}
1077
1efed2d0
OB
1078static void usbnet_set_rx_mode(struct net_device *net)
1079{
1080 struct usbnet *dev = netdev_priv(net);
1081
1082 usbnet_defer_kevent(dev, EVENT_SET_RX_MODE);
1083}
1084
1085static void __handle_set_rx_mode(struct usbnet *dev)
1086{
1087 if (dev->driver_info->set_rx_mode)
1088 (dev->driver_info->set_rx_mode)(dev);
1089
1090 clear_bit(EVENT_SET_RX_MODE, &dev->flags);
1091}
1092
1da177e4
LT
1093/* work that cannot be done in interrupt context uses keventd.
1094 *
1095 * NOTE: with 2.5 we could do more of this using completion callbacks,
1096 * especially now that control transfers can be queued.
1097 */
1098static void
11f17ef3 1099usbnet_deferred_kevent (struct work_struct *work)
1da177e4 1100{
c4028958
DH
1101 struct usbnet *dev =
1102 container_of(work, struct usbnet, kevent);
1da177e4
LT
1103 int status;
1104
1105 /* usb_clear_halt() needs a thread context */
1106 if (test_bit (EVENT_TX_HALT, &dev->flags)) {
1107 unlink_urbs (dev, &dev->txq);
69ee472f
ON
1108 status = usb_autopm_get_interface(dev->intf);
1109 if (status < 0)
1110 goto fail_pipe;
1da177e4 1111 status = usb_clear_halt (dev->udev, dev->out);
69ee472f 1112 usb_autopm_put_interface(dev->intf);
8e95a202
JP
1113 if (status < 0 &&
1114 status != -EPIPE &&
1115 status != -ESHUTDOWN) {
1da177e4 1116 if (netif_msg_tx_err (dev))
69ee472f 1117fail_pipe:
60b86755
JP
1118 netdev_err(dev->net, "can't clear tx halt, status %d\n",
1119 status);
1da177e4
LT
1120 } else {
1121 clear_bit (EVENT_TX_HALT, &dev->flags);
f29fc259
DB
1122 if (status != -ESHUTDOWN)
1123 netif_wake_queue (dev->net);
1da177e4
LT
1124 }
1125 }
1126 if (test_bit (EVENT_RX_HALT, &dev->flags)) {
1127 unlink_urbs (dev, &dev->rxq);
69ee472f
ON
1128 status = usb_autopm_get_interface(dev->intf);
1129 if (status < 0)
1130 goto fail_halt;
1da177e4 1131 status = usb_clear_halt (dev->udev, dev->in);
69ee472f 1132 usb_autopm_put_interface(dev->intf);
8e95a202
JP
1133 if (status < 0 &&
1134 status != -EPIPE &&
1135 status != -ESHUTDOWN) {
1da177e4 1136 if (netif_msg_rx_err (dev))
69ee472f 1137fail_halt:
60b86755
JP
1138 netdev_err(dev->net, "can't clear rx halt, status %d\n",
1139 status);
1da177e4
LT
1140 } else {
1141 clear_bit (EVENT_RX_HALT, &dev->flags);
1142 tasklet_schedule (&dev->bh);
1143 }
1144 }
1145
1146 /* tasklet could resubmit itself forever if memory is tight */
1147 if (test_bit (EVENT_RX_MEMORY, &dev->flags)) {
1148 struct urb *urb = NULL;
dacb3975 1149 int resched = 1;
1da177e4
LT
1150
1151 if (netif_running (dev->net))
1152 urb = usb_alloc_urb (0, GFP_KERNEL);
1153 else
1154 clear_bit (EVENT_RX_MEMORY, &dev->flags);
1155 if (urb != NULL) {
1156 clear_bit (EVENT_RX_MEMORY, &dev->flags);
69ee472f 1157 status = usb_autopm_get_interface(dev->intf);
ab60707f
JJ
1158 if (status < 0) {
1159 usb_free_urb(urb);
69ee472f 1160 goto fail_lowmem;
ab60707f 1161 }
dacb3975
DM
1162 if (rx_submit (dev, urb, GFP_KERNEL) == -ENOLINK)
1163 resched = 0;
69ee472f
ON
1164 usb_autopm_put_interface(dev->intf);
1165fail_lowmem:
dacb3975
DM
1166 if (resched)
1167 tasklet_schedule (&dev->bh);
1da177e4
LT
1168 }
1169 }
1170
7ea13c9c 1171 if (test_bit (EVENT_LINK_RESET, &dev->flags)) {
cb1cebbe 1172 struct driver_info *info = dev->driver_info;
7ea13c9c
DH
1173 int retval = 0;
1174
1175 clear_bit (EVENT_LINK_RESET, &dev->flags);
69ee472f
ON
1176 status = usb_autopm_get_interface(dev->intf);
1177 if (status < 0)
1178 goto skip_reset;
7ea13c9c 1179 if(info->link_reset && (retval = info->link_reset(dev)) < 0) {
69ee472f
ON
1180 usb_autopm_put_interface(dev->intf);
1181skip_reset:
60b86755
JP
1182 netdev_info(dev->net, "link reset failed (%d) usbnet usb-%s-%s, %s\n",
1183 retval,
1184 dev->udev->bus->bus_name,
1185 dev->udev->devpath,
1186 info->description);
69ee472f
ON
1187 } else {
1188 usb_autopm_put_interface(dev->intf);
7ea13c9c 1189 }
4b49f58f
ML
1190
1191 /* handle link change from link resetting */
1192 __handle_link_change(dev);
7ea13c9c
DH
1193 }
1194
4b49f58f
ML
1195 if (test_bit (EVENT_LINK_CHANGE, &dev->flags))
1196 __handle_link_change(dev);
1197
1efed2d0
OB
1198 if (test_bit (EVENT_SET_RX_MODE, &dev->flags))
1199 __handle_set_rx_mode(dev);
1200
1201
1da177e4 1202 if (dev->flags)
60b86755 1203 netdev_dbg(dev->net, "kevent done, flags = 0x%lx\n", dev->flags);
1da177e4
LT
1204}
1205
1206/*-------------------------------------------------------------------------*/
1207
7d12e780 1208static void tx_complete (struct urb *urb)
1da177e4
LT
1209{
1210 struct sk_buff *skb = (struct sk_buff *) urb->context;
1211 struct skb_data *entry = (struct skb_data *) skb->cb;
1212 struct usbnet *dev = entry->dev;
1213
1214 if (urb->status == 0) {
1e9e39f4 1215 dev->net->stats.tx_packets += entry->packets;
7963837f 1216 dev->net->stats.tx_bytes += entry->length;
1da177e4 1217 } else {
7963837f 1218 dev->net->stats.tx_errors++;
1da177e4
LT
1219
1220 switch (urb->status) {
1221 case -EPIPE:
2e55cc72 1222 usbnet_defer_kevent (dev, EVENT_TX_HALT);
1da177e4
LT
1223 break;
1224
1225 /* software-driven interface shutdown */
1226 case -ECONNRESET: // async unlink
1227 case -ESHUTDOWN: // hardware gone
1228 break;
1229
37ebb549
PM
1230 /* like rx, tx gets controller i/o faults during hub_wq
1231 * delays and so it uses the same throttling mechanism.
1232 */
38e2bfc9
PZ
1233 case -EPROTO:
1234 case -ETIME:
1235 case -EILSEQ:
69ee472f 1236 usb_mark_last_busy(dev->udev);
1da177e4
LT
1237 if (!timer_pending (&dev->delay)) {
1238 mod_timer (&dev->delay,
1239 jiffies + THROTTLE_JIFFIES);
a475f603
JP
1240 netif_dbg(dev, link, dev->net,
1241 "tx throttle %d\n", urb->status);
1da177e4
LT
1242 }
1243 netif_stop_queue (dev->net);
1244 break;
1245 default:
a475f603
JP
1246 netif_dbg(dev, tx_err, dev->net,
1247 "tx err %d\n", entry->urb->status);
1da177e4
LT
1248 break;
1249 }
1250 }
1251
69ee472f 1252 usb_autopm_put_interface_async(dev->intf);
5b6e9bcd 1253 (void) defer_bh(dev, skb, &dev->txq, tx_done);
1da177e4
LT
1254}
1255
1256/*-------------------------------------------------------------------------*/
1257
777baa47 1258void usbnet_tx_timeout (struct net_device *net)
1da177e4
LT
1259{
1260 struct usbnet *dev = netdev_priv(net);
1261
1262 unlink_urbs (dev, &dev->txq);
1263 tasklet_schedule (&dev->bh);
dbcdd4d5
ON
1264 /* this needs to be handled individually because the generic layer
1265 * doesn't know what is sufficient and could not restore private
1266 * information if a remedy of an unconditional reset were used.
1267 */
1268 if (dev->driver_info->recover)
1269 (dev->driver_info->recover)(dev);
1da177e4 1270}
777baa47 1271EXPORT_SYMBOL_GPL(usbnet_tx_timeout);
1da177e4
LT
1272
1273/*-------------------------------------------------------------------------*/
1274
638c5115
ML
1275static int build_dma_sg(const struct sk_buff *skb, struct urb *urb)
1276{
1277 unsigned num_sgs, total_len = 0;
1278 int i, s = 0;
1279
1280 num_sgs = skb_shinfo(skb)->nr_frags + 1;
1281 if (num_sgs == 1)
1282 return 0;
1283
60e453a9
ML
1284 /* reserve one for zero packet */
1285 urb->sg = kmalloc((num_sgs + 1) * sizeof(struct scatterlist),
1286 GFP_ATOMIC);
638c5115
ML
1287 if (!urb->sg)
1288 return -ENOMEM;
1289
1290 urb->num_sgs = num_sgs;
fdc3452c 1291 sg_init_table(urb->sg, urb->num_sgs + 1);
638c5115
ML
1292
1293 sg_set_buf(&urb->sg[s++], skb->data, skb_headlen(skb));
1294 total_len += skb_headlen(skb);
1295
1296 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1297 struct skb_frag_struct *f = &skb_shinfo(skb)->frags[i];
1298
1299 total_len += skb_frag_size(f);
1300 sg_set_page(&urb->sg[i + s], f->page.p, f->size,
1301 f->page_offset);
1302 }
1303 urb->transfer_buffer_length = total_len;
1304
1305 return 1;
1306}
1307
25a79c41
SH
1308netdev_tx_t usbnet_start_xmit (struct sk_buff *skb,
1309 struct net_device *net)
1da177e4
LT
1310{
1311 struct usbnet *dev = netdev_priv(net);
3e4336a6 1312 unsigned int length;
1da177e4
LT
1313 struct urb *urb = NULL;
1314 struct skb_data *entry;
1315 struct driver_info *info = dev->driver_info;
1316 unsigned long flags;
25a79c41 1317 int retval;
1da177e4 1318
23ba0799
KK
1319 if (skb)
1320 skb_tx_timestamp(skb);
f9b491ec 1321
1da177e4
LT
1322 // some devices want funky USB-level framing, for
1323 // win32 driver (usually) and/or hardware quirks
1324 if (info->tx_fixup) {
1325 skb = info->tx_fixup (dev, skb, GFP_ATOMIC);
1326 if (!skb) {
bf414b36
BM
1327 /* packet collected; minidriver waiting for more */
1328 if (info->flags & FLAG_MULTI_PACKET)
073285fd 1329 goto not_drop;
bf414b36
BM
1330 netif_dbg(dev, tx_err, dev->net, "can't tx_fixup skb\n");
1331 goto drop;
1da177e4
LT
1332 }
1333 }
1da177e4
LT
1334
1335 if (!(urb = usb_alloc_urb (0, GFP_ATOMIC))) {
a475f603 1336 netif_dbg(dev, tx_err, dev->net, "no urb\n");
1da177e4
LT
1337 goto drop;
1338 }
1339
1340 entry = (struct skb_data *) skb->cb;
1341 entry->urb = urb;
1342 entry->dev = dev;
1da177e4 1343
1da177e4
LT
1344 usb_fill_bulk_urb (urb, dev->udev, dev->out,
1345 skb->data, skb->len, tx_complete, skb);
638c5115
ML
1346 if (dev->can_dma_sg) {
1347 if (build_dma_sg(skb, urb) < 0)
1348 goto drop;
1349 }
60e453a9 1350 length = urb->transfer_buffer_length;
1da177e4
LT
1351
1352 /* don't assume the hardware handles USB_ZERO_PACKET
1353 * NOTE: strictly conforming cdc-ether devices should expect
1354 * the ZLP here, but ignore the one-byte packet.
073285fd
AO
1355 * NOTE2: CDC NCM specification is different from CDC ECM when
1356 * handling ZLP/short packets, so cdc_ncm driver will make short
1357 * packet itself if needed.
1da177e4 1358 */
b4d562e3
EP
1359 if (length % dev->maxpacket == 0) {
1360 if (!(info->flags & FLAG_SEND_ZLP)) {
073285fd 1361 if (!(info->flags & FLAG_MULTI_PACKET)) {
60e453a9
ML
1362 length++;
1363 if (skb_tailroom(skb) && !urb->num_sgs) {
073285fd
AO
1364 skb->data[skb->len] = 0;
1365 __skb_put(skb, 1);
60e453a9
ML
1366 } else if (urb->num_sgs)
1367 sg_set_buf(&urb->sg[urb->num_sgs++],
1368 dev->padding_pkt, 1);
b4d562e3
EP
1369 }
1370 } else
1371 urb->transfer_flags |= URB_ZERO_PACKET;
3e323f3e 1372 }
7a1e890e
BH
1373 urb->transfer_buffer_length = length;
1374
1375 if (info->flags & FLAG_MULTI_PACKET) {
1376 /* Driver has set number of packets and a length delta.
1377 * Calculate the complete length and ensure that it's
1378 * positive.
1379 */
1380 entry->length += length;
1381 if (WARN_ON_ONCE(entry->length <= 0))
1382 entry->length = length;
1383 } else {
1384 usbnet_set_skb_tx_stats(skb, 1, length);
1385 }
1da177e4 1386
69ee472f
ON
1387 spin_lock_irqsave(&dev->txq.lock, flags);
1388 retval = usb_autopm_get_interface_async(dev->intf);
1389 if (retval < 0) {
1390 spin_unlock_irqrestore(&dev->txq.lock, flags);
1391 goto drop;
1392 }
1393
1394#ifdef CONFIG_PM
1395 /* if this triggers the device is still a sleep */
1396 if (test_bit(EVENT_DEV_ASLEEP, &dev->flags)) {
1397 /* transmission will be done in resume */
1398 usb_anchor_urb(urb, &dev->deferred);
1399 /* no use to process more packets */
1400 netif_stop_queue(net);
39707c2a 1401 usb_put_urb(urb);
69ee472f 1402 spin_unlock_irqrestore(&dev->txq.lock, flags);
60b86755 1403 netdev_dbg(dev->net, "Delaying transmission for resumption\n");
69ee472f
ON
1404 goto deferred;
1405 }
1406#endif
1da177e4 1407
1da177e4
LT
1408 switch ((retval = usb_submit_urb (urb, GFP_ATOMIC))) {
1409 case -EPIPE:
1410 netif_stop_queue (net);
2e55cc72 1411 usbnet_defer_kevent (dev, EVENT_TX_HALT);
69ee472f 1412 usb_autopm_put_interface_async(dev->intf);
1da177e4
LT
1413 break;
1414 default:
69ee472f 1415 usb_autopm_put_interface_async(dev->intf);
a475f603
JP
1416 netif_dbg(dev, tx_err, dev->net,
1417 "tx: submit urb err %d\n", retval);
1da177e4
LT
1418 break;
1419 case 0:
860e9538 1420 netif_trans_update(net);
5b6e9bcd 1421 __usbnet_queue_skb(&dev->txq, skb, tx_start);
1da177e4
LT
1422 if (dev->txq.qlen >= TX_QLEN (dev))
1423 netif_stop_queue (net);
1424 }
1425 spin_unlock_irqrestore (&dev->txq.lock, flags);
1426
1427 if (retval) {
a475f603 1428 netif_dbg(dev, tx_err, dev->net, "drop, code %d\n", retval);
1da177e4 1429drop:
7963837f 1430 dev->net->stats.tx_dropped++;
073285fd 1431not_drop:
1da177e4
LT
1432 if (skb)
1433 dev_kfree_skb_any (skb);
638c5115
ML
1434 if (urb) {
1435 kfree(urb->sg);
1436 usb_free_urb(urb);
1437 }
a475f603
JP
1438 } else
1439 netif_dbg(dev, tx_queued, dev->net,
3e4336a6 1440 "> tx, len %u, type 0x%x\n", length, skb->protocol);
69ee472f
ON
1441#ifdef CONFIG_PM
1442deferred:
1443#endif
25a79c41 1444 return NETDEV_TX_OK;
1da177e4 1445}
777baa47 1446EXPORT_SYMBOL_GPL(usbnet_start_xmit);
1da177e4 1447
85e87870 1448static int rx_alloc_submit(struct usbnet *dev, gfp_t flags)
65841fd5
ML
1449{
1450 struct urb *urb;
1451 int i;
85e87870 1452 int ret = 0;
65841fd5
ML
1453
1454 /* don't refill the queue all at once */
1455 for (i = 0; i < 10 && dev->rxq.qlen < RX_QLEN(dev); i++) {
1456 urb = usb_alloc_urb(0, flags);
1457 if (urb != NULL) {
85e87870
BM
1458 ret = rx_submit(dev, urb, flags);
1459 if (ret)
1460 goto err;
1461 } else {
1462 ret = -ENOMEM;
1463 goto err;
65841fd5
ML
1464 }
1465 }
85e87870
BM
1466err:
1467 return ret;
65841fd5
ML
1468}
1469
1da177e4
LT
1470/*-------------------------------------------------------------------------*/
1471
1472// tasklet (work deferred from completions, in_irq) or timer
1473
1474static void usbnet_bh (unsigned long param)
1475{
1476 struct usbnet *dev = (struct usbnet *) param;
1477 struct sk_buff *skb;
1478 struct skb_data *entry;
1479
1480 while ((skb = skb_dequeue (&dev->done))) {
1481 entry = (struct skb_data *) skb->cb;
1482 switch (entry->state) {
18ab458f 1483 case rx_done:
1da177e4
LT
1484 entry->state = rx_cleanup;
1485 rx_process (dev, skb);
1486 continue;
18ab458f 1487 case tx_done:
638c5115 1488 kfree(entry->urb->sg);
18ab458f 1489 case rx_cleanup:
1da177e4
LT
1490 usb_free_urb (entry->urb);
1491 dev_kfree_skb (skb);
1492 continue;
18ab458f 1493 default:
60b86755 1494 netdev_dbg(dev->net, "bogus skb state %d\n", entry->state);
1da177e4
LT
1495 }
1496 }
1497
70c37bf9
BM
1498 /* restart RX again after disabling due to high error rate */
1499 clear_bit(EVENT_RX_KILL, &dev->flags);
1500
14a0d635
ON
1501 /* waiting for all pending urbs to complete?
1502 * only then can we forgo submitting anew
1503 */
1504 if (waitqueue_active(&dev->wait)) {
1505 if (dev->txq.qlen + dev->rxq.qlen + dev->done.qlen == 0)
1506 wake_up_all(&dev->wait);
1da177e4
LT
1507
1508 // or are we maybe short a few urbs?
8e95a202
JP
1509 } else if (netif_running (dev->net) &&
1510 netif_device_present (dev->net) &&
4b49f58f 1511 netif_carrier_ok(dev->net) &&
43daa96b
SL
1512 !timer_pending(&dev->delay) &&
1513 !test_bit(EVENT_RX_PAUSED, &dev->flags) &&
1514 !test_bit(EVENT_RX_HALT, &dev->flags)) {
1da177e4 1515 int temp = dev->rxq.qlen;
65841fd5
ML
1516
1517 if (temp < RX_QLEN(dev)) {
85e87870
BM
1518 if (rx_alloc_submit(dev, GFP_ATOMIC) == -ENOLINK)
1519 return;
a475f603
JP
1520 if (temp != dev->rxq.qlen)
1521 netif_dbg(dev, link, dev->net,
1522 "rxqlen %d --> %d\n",
1523 temp, dev->rxq.qlen);
65841fd5 1524 if (dev->rxq.qlen < RX_QLEN(dev))
1da177e4
LT
1525 tasklet_schedule (&dev->bh);
1526 }
1527 if (dev->txq.qlen < TX_QLEN (dev))
1528 netif_wake_queue (dev->net);
1529 }
1530}
1531
1532
1da177e4
LT
1533/*-------------------------------------------------------------------------
1534 *
1535 * USB Device Driver support
1536 *
1537 *-------------------------------------------------------------------------*/
cb1cebbe 1538
1da177e4
LT
1539// precondition: never called in_interrupt
1540
38bde1d4 1541void usbnet_disconnect (struct usb_interface *intf)
1da177e4
LT
1542{
1543 struct usbnet *dev;
1544 struct usb_device *xdev;
1545 struct net_device *net;
1546
1547 dev = usb_get_intfdata(intf);
1548 usb_set_intfdata(intf, NULL);
1549 if (!dev)
1550 return;
1551
1552 xdev = interface_to_usbdev (intf);
1553
a475f603
JP
1554 netif_info(dev, probe, dev->net, "unregister '%s' usb-%s-%s, %s\n",
1555 intf->dev.driver->name,
1556 xdev->bus->bus_name, xdev->devpath,
1557 dev->driver_info->description);
cb1cebbe 1558
1da177e4
LT
1559 net = dev->net;
1560 unregister_netdev (net);
1561
23f333a2 1562 cancel_work_sync(&dev->kevent);
1da177e4 1563
39707c2a
HK
1564 usb_scuttle_anchored_urbs(&dev->deferred);
1565
1da177e4
LT
1566 if (dev->driver_info->unbind)
1567 dev->driver_info->unbind (dev, intf);
1568
68972efa
PS
1569 usb_kill_urb(dev->interrupt);
1570 usb_free_urb(dev->interrupt);
60e453a9 1571 kfree(dev->padding_pkt);
68972efa 1572
1da177e4 1573 free_netdev(net);
1da177e4 1574}
38bde1d4 1575EXPORT_SYMBOL_GPL(usbnet_disconnect);
1da177e4 1576
777baa47
SH
1577static const struct net_device_ops usbnet_netdev_ops = {
1578 .ndo_open = usbnet_open,
1579 .ndo_stop = usbnet_stop,
1580 .ndo_start_xmit = usbnet_start_xmit,
1581 .ndo_tx_timeout = usbnet_tx_timeout,
1efed2d0 1582 .ndo_set_rx_mode = usbnet_set_rx_mode,
777baa47
SH
1583 .ndo_change_mtu = usbnet_change_mtu,
1584 .ndo_set_mac_address = eth_mac_addr,
1585 .ndo_validate_addr = eth_validate_addr,
1586};
1da177e4
LT
1587
1588/*-------------------------------------------------------------------------*/
1589
1da177e4
LT
1590// precondition: never called in_interrupt
1591
225794f8
MH
1592static struct device_type wlan_type = {
1593 .name = "wlan",
1594};
1595
1596static struct device_type wwan_type = {
1597 .name = "wwan",
1598};
1599
38bde1d4 1600int
1da177e4
LT
1601usbnet_probe (struct usb_interface *udev, const struct usb_device_id *prod)
1602{
1603 struct usbnet *dev;
cb1cebbe 1604 struct net_device *net;
1da177e4
LT
1605 struct usb_host_interface *interface;
1606 struct driver_info *info;
1607 struct usb_device *xdev;
1608 int status;
296c0242 1609 const char *name;
b0786b43
ML
1610 struct usb_driver *driver = to_usb_driver(udev->dev.driver);
1611
1612 /* usbnet already took usb runtime pm, so have to enable the feature
1613 * for usb interface, otherwise usb_autopm_get_interface may return
98f541c6 1614 * failure if RUNTIME_PM is enabled.
b0786b43
ML
1615 */
1616 if (!driver->supports_autosuspend) {
1617 driver->supports_autosuspend = 1;
1618 pm_runtime_enable(&udev->dev);
1619 }
1da177e4 1620
296c0242 1621 name = udev->dev.driver->name;
1da177e4
LT
1622 info = (struct driver_info *) prod->driver_info;
1623 if (!info) {
296c0242 1624 dev_dbg (&udev->dev, "blacklisted by %s\n", name);
1da177e4
LT
1625 return -ENODEV;
1626 }
1627 xdev = interface_to_usbdev (udev);
1628 interface = udev->cur_altsetting;
1629
1da177e4
LT
1630 status = -ENOMEM;
1631
1632 // set up our own records
1633 net = alloc_etherdev(sizeof(*dev));
41de8d4c 1634 if (!net)
1da177e4 1635 goto out;
1da177e4 1636
0dacca73
BH
1637 /* netdev_printk() needs this so do it as early as possible */
1638 SET_NETDEV_DEV(net, &udev->dev);
1639
1da177e4
LT
1640 dev = netdev_priv(net);
1641 dev->udev = xdev;
a11a6544 1642 dev->intf = udev;
1da177e4 1643 dev->driver_info = info;
296c0242 1644 dev->driver_name = name;
1da177e4
LT
1645 dev->msg_enable = netif_msg_init (msg_level, NETIF_MSG_DRV
1646 | NETIF_MSG_PROBE | NETIF_MSG_LINK);
14a0d635 1647 init_waitqueue_head(&dev->wait);
1da177e4
LT
1648 skb_queue_head_init (&dev->rxq);
1649 skb_queue_head_init (&dev->txq);
1650 skb_queue_head_init (&dev->done);
7834ddbc 1651 skb_queue_head_init(&dev->rxq_pause);
1da177e4
LT
1652 dev->bh.func = usbnet_bh;
1653 dev->bh.data = (unsigned long) dev;
11f17ef3 1654 INIT_WORK (&dev->kevent, usbnet_deferred_kevent);
69ee472f 1655 init_usb_anchor(&dev->deferred);
1da177e4
LT
1656 dev->delay.function = usbnet_bh;
1657 dev->delay.data = (unsigned long) dev;
1658 init_timer (&dev->delay);
a9fc6338 1659 mutex_init (&dev->phy_mutex);
6eecdc5f
DW
1660 mutex_init(&dev->interrupt_mutex);
1661 dev->interrupt_count = 0;
1da177e4 1662
1da177e4
LT
1663 dev->net = net;
1664 strcpy (net->name, "usb%d");
1665 memcpy (net->dev_addr, node_id, sizeof node_id);
1666
2e55cc72
DB
1667 /* rx and tx sides can use different message sizes;
1668 * bind() should set rx_urb_size in that case.
1669 */
1670 dev->hard_mtu = net->mtu + net->hard_header_len;
f77f0aee
JW
1671 net->min_mtu = 0;
1672 net->max_mtu = ETH_MAX_MTU;
1da177e4 1673
777baa47 1674 net->netdev_ops = &usbnet_netdev_ops;
777baa47 1675 net->watchdog_timeo = TX_TIMEOUT_JIFFIES;
1da177e4
LT
1676 net->ethtool_ops = &usbnet_ethtool_ops;
1677
1678 // allow device-specific bind/init procedures
1679 // NOTE net->name still not usable ...
1680 if (info->bind) {
1681 status = info->bind (dev, udev);
cb1cebbe
DB
1682 if (status < 0)
1683 goto out1;
1684
1da177e4
LT
1685 // heuristic: "usb%d" for links we know are two-host,
1686 // else "eth%d" when there's reasonable doubt. userspace
1687 // can rename the link if it knows better.
8e95a202 1688 if ((dev->driver_info->flags & FLAG_ETHER) != 0 &&
c261344d
AB
1689 ((dev->driver_info->flags & FLAG_POINTTOPOINT) == 0 ||
1690 (net->dev_addr [0] & 0x02) == 0))
1da177e4 1691 strcpy (net->name, "eth%d");
6e3bbcc5
JK
1692 /* WLAN devices should always be named "wlan%d" */
1693 if ((dev->driver_info->flags & FLAG_WLAN) != 0)
1694 strcpy(net->name, "wlan%d");
e1e499ee
MH
1695 /* WWAN devices should always be named "wwan%d" */
1696 if ((dev->driver_info->flags & FLAG_WWAN) != 0)
1697 strcpy(net->name, "wwan%d");
f29fc259 1698
6509141f
WS
1699 /* devices that cannot do ARP */
1700 if ((dev->driver_info->flags & FLAG_NOARP) != 0)
1701 net->flags |= IFF_NOARP;
1702
f29fc259
DB
1703 /* maybe the remote can't receive an Ethernet MTU */
1704 if (net->mtu > (dev->hard_mtu - net->hard_header_len))
1705 net->mtu = dev->hard_mtu - net->hard_header_len;
2e55cc72
DB
1706 } else if (!info->in || !info->out)
1707 status = usbnet_get_endpoints (dev, udev);
1da177e4
LT
1708 else {
1709 dev->in = usb_rcvbulkpipe (xdev, info->in);
1710 dev->out = usb_sndbulkpipe (xdev, info->out);
1711 if (!(info->flags & FLAG_NO_SETINT))
1712 status = usb_set_interface (xdev,
1713 interface->desc.bInterfaceNumber,
1714 interface->desc.bAlternateSetting);
1715 else
1716 status = 0;
1717
1718 }
9514bfe5 1719 if (status >= 0 && dev->status)
1da177e4
LT
1720 status = init_status (dev, udev);
1721 if (status < 0)
cb1cebbe 1722 goto out3;
1da177e4 1723
2e55cc72
DB
1724 if (!dev->rx_urb_size)
1725 dev->rx_urb_size = dev->hard_mtu;
1da177e4 1726 dev->maxpacket = usb_maxpacket (dev->udev, dev->out, 1);
cb1cebbe 1727
eef23b53
BM
1728 /* let userspace know we have a random address */
1729 if (ether_addr_equal(net->dev_addr, node_id))
1730 net->addr_assign_type = NET_ADDR_RANDOM;
1731
225794f8
MH
1732 if ((dev->driver_info->flags & FLAG_WLAN) != 0)
1733 SET_NETDEV_DEVTYPE(net, &wlan_type);
1734 if ((dev->driver_info->flags & FLAG_WWAN) != 0)
1735 SET_NETDEV_DEVTYPE(net, &wwan_type);
1736
a88c32ae
ML
1737 /* initialize max rx_qlen and tx_qlen */
1738 usbnet_update_max_qlen(dev);
1739
60e453a9
ML
1740 if (dev->can_dma_sg && !(info->flags & FLAG_SEND_ZLP) &&
1741 !(info->flags & FLAG_MULTI_PACKET)) {
1742 dev->padding_pkt = kzalloc(1, GFP_KERNEL);
09b69024
WY
1743 if (!dev->padding_pkt) {
1744 status = -ENOMEM;
60e453a9 1745 goto out4;
09b69024 1746 }
60e453a9
ML
1747 }
1748
1da177e4
LT
1749 status = register_netdev (net);
1750 if (status)
60e453a9 1751 goto out5;
a475f603
JP
1752 netif_info(dev, probe, dev->net,
1753 "register '%s' at usb-%s-%s, %s, %pM\n",
1754 udev->dev.driver->name,
1755 xdev->bus->bus_name, xdev->devpath,
1756 dev->driver_info->description,
1757 net->dev_addr);
1da177e4
LT
1758
1759 // ok, it's ready to go.
1760 usb_set_intfdata (udev, dev);
1761
1da177e4
LT
1762 netif_device_attach (net);
1763
37e8273c 1764 if (dev->driver_info->flags & FLAG_LINK_INTR)
0162c554 1765 usbnet_link_change(dev, 0, 0);
37e8273c 1766
1da177e4
LT
1767 return 0;
1768
60e453a9
ML
1769out5:
1770 kfree(dev->padding_pkt);
a4723848 1771out4:
1772 usb_free_urb(dev->interrupt);
1da177e4
LT
1773out3:
1774 if (info->unbind)
1775 info->unbind (dev, udev);
1776out1:
1666984c
ON
1777 /* subdrivers must undo all they did in bind() if they
1778 * fail it, but we may fail later and a deferred kevent
1779 * may trigger an error resubmitting itself and, worse,
1780 * schedule a timer. So we kill it all just in case.
1781 */
1782 cancel_work_sync(&dev->kevent);
1783 del_timer_sync(&dev->delay);
1da177e4
LT
1784 free_netdev(net);
1785out:
1da177e4
LT
1786 return status;
1787}
38bde1d4 1788EXPORT_SYMBOL_GPL(usbnet_probe);
1da177e4
LT
1789
1790/*-------------------------------------------------------------------------*/
1791
36433127
ON
1792/*
1793 * suspend the whole driver as soon as the first interface is suspended
1794 * resume only when the last interface is resumed
38bde1d4 1795 */
1da177e4 1796
38bde1d4 1797int usbnet_suspend (struct usb_interface *intf, pm_message_t message)
1da177e4
LT
1798{
1799 struct usbnet *dev = usb_get_intfdata(intf);
cb1cebbe 1800
36433127 1801 if (!dev->suspend_count++) {
69ee472f
ON
1802 spin_lock_irq(&dev->txq.lock);
1803 /* don't autosuspend while transmitting */
5b1b0b81 1804 if (dev->txq.qlen && PMSG_IS_AUTO(message)) {
5eeb3132 1805 dev->suspend_count--;
69ee472f
ON
1806 spin_unlock_irq(&dev->txq.lock);
1807 return -EBUSY;
1808 } else {
1809 set_bit(EVENT_DEV_ASLEEP, &dev->flags);
1810 spin_unlock_irq(&dev->txq.lock);
1811 }
a11a6544
ON
1812 /*
1813 * accelerate emptying of the rx and queues, to avoid
36433127
ON
1814 * having everything error out.
1815 */
1816 netif_device_detach (dev->net);
69ee472f 1817 usbnet_terminate_urbs(dev);
6eecdc5f 1818 __usbnet_status_stop_force(dev);
69ee472f 1819
a11a6544
ON
1820 /*
1821 * reattach so runtime management can use and
1822 * wake the device
1823 */
1824 netif_device_attach (dev->net);
36433127 1825 }
1da177e4
LT
1826 return 0;
1827}
38bde1d4 1828EXPORT_SYMBOL_GPL(usbnet_suspend);
1da177e4 1829
38bde1d4 1830int usbnet_resume (struct usb_interface *intf)
1da177e4
LT
1831{
1832 struct usbnet *dev = usb_get_intfdata(intf);
69ee472f
ON
1833 struct sk_buff *skb;
1834 struct urb *res;
1835 int retval;
1836
1837 if (!--dev->suspend_count) {
6eecdc5f
DW
1838 /* resume interrupt URB if it was previously submitted */
1839 __usbnet_status_start_force(dev, GFP_NOIO);
68972efa 1840
69ee472f
ON
1841 spin_lock_irq(&dev->txq.lock);
1842 while ((res = usb_get_from_anchor(&dev->deferred))) {
1843
69ee472f
ON
1844 skb = (struct sk_buff *)res->context;
1845 retval = usb_submit_urb(res, GFP_ATOMIC);
1846 if (retval < 0) {
1847 dev_kfree_skb_any(skb);
638c5115 1848 kfree(res->sg);
69ee472f
ON
1849 usb_free_urb(res);
1850 usb_autopm_put_interface_async(dev->intf);
1851 } else {
860e9538 1852 netif_trans_update(dev->net);
69ee472f
ON
1853 __skb_queue_tail(&dev->txq, skb);
1854 }
1855 }
1da177e4 1856
69ee472f
ON
1857 smp_mb();
1858 clear_bit(EVENT_DEV_ASLEEP, &dev->flags);
1859 spin_unlock_irq(&dev->txq.lock);
75bd0cbd
ML
1860
1861 if (test_bit(EVENT_DEV_OPEN, &dev->flags)) {
14a0d635
ON
1862 /* handle remote wakeup ASAP
1863 * we cannot race against stop
1864 */
1865 if (netif_device_present(dev->net) &&
65841fd5
ML
1866 !timer_pending(&dev->delay) &&
1867 !test_bit(EVENT_RX_HALT, &dev->flags))
ab6f148d 1868 rx_alloc_submit(dev, GFP_NOIO);
65841fd5 1869
75bd0cbd 1870 if (!(dev->txq.qlen >= TX_QLEN(dev)))
1aa9bc5b 1871 netif_tx_wake_all_queues(dev->net);
75bd0cbd
ML
1872 tasklet_schedule (&dev->bh);
1873 }
69ee472f 1874 }
5d9d01a3
ON
1875
1876 if (test_and_clear_bit(EVENT_DEVICE_REPORT_IDLE, &dev->flags))
1877 usb_autopm_get_interface_no_resume(intf);
1878
1da177e4
LT
1879 return 0;
1880}
38bde1d4 1881EXPORT_SYMBOL_GPL(usbnet_resume);
1da177e4 1882
5d9d01a3
ON
1883/*
1884 * Either a subdriver implements manage_power, then it is assumed to always
1885 * be ready to be suspended or it reports the readiness to be suspended
1886 * explicitly
1887 */
1888void usbnet_device_suggests_idle(struct usbnet *dev)
1889{
1890 if (!test_and_set_bit(EVENT_DEVICE_REPORT_IDLE, &dev->flags)) {
1891 dev->intf->needs_remote_wakeup = 1;
1892 usb_autopm_put_interface_async(dev->intf);
1893 }
1894}
1895EXPORT_SYMBOL(usbnet_device_suggests_idle);
1da177e4 1896
2dd7c8cf
ON
1897/*
1898 * For devices that can do without special commands
1899 */
1900int usbnet_manage_power(struct usbnet *dev, int on)
1901{
1902 dev->intf->needs_remote_wakeup = on;
1903 return 0;
1904}
1905EXPORT_SYMBOL(usbnet_manage_power);
1906
ac64995d
ML
1907void usbnet_link_change(struct usbnet *dev, bool link, bool need_reset)
1908{
1909 /* update link after link is reseted */
1910 if (link && !need_reset)
1911 netif_carrier_on(dev->net);
1912 else
1913 netif_carrier_off(dev->net);
1914
1915 if (need_reset && link)
1916 usbnet_defer_kevent(dev, EVENT_LINK_RESET);
4b49f58f
ML
1917 else
1918 usbnet_defer_kevent(dev, EVENT_LINK_CHANGE);
ac64995d
ML
1919}
1920EXPORT_SYMBOL(usbnet_link_change);
1921
877bd862 1922/*-------------------------------------------------------------------------*/
0547fad2
ML
1923static int __usbnet_read_cmd(struct usbnet *dev, u8 cmd, u8 reqtype,
1924 u16 value, u16 index, void *data, u16 size)
877bd862
ML
1925{
1926 void *buf = NULL;
1927 int err = -ENOMEM;
1928
1929 netdev_dbg(dev->net, "usbnet_read_cmd cmd=0x%02x reqtype=%02x"
1930 " value=0x%04x index=0x%04x size=%d\n",
1931 cmd, reqtype, value, index, size);
1932
1933 if (data) {
1934 buf = kmalloc(size, GFP_KERNEL);
1935 if (!buf)
1936 goto out;
1937 }
1938
1939 err = usb_control_msg(dev->udev, usb_rcvctrlpipe(dev->udev, 0),
1940 cmd, reqtype, value, index, buf, size,
1941 USB_CTRL_GET_TIMEOUT);
1942 if (err > 0 && err <= size)
1943 memcpy(data, buf, err);
1944 kfree(buf);
1945out:
1946 return err;
1947}
877bd862 1948
0547fad2
ML
1949static int __usbnet_write_cmd(struct usbnet *dev, u8 cmd, u8 reqtype,
1950 u16 value, u16 index, const void *data,
1951 u16 size)
877bd862
ML
1952{
1953 void *buf = NULL;
1954 int err = -ENOMEM;
1955
1956 netdev_dbg(dev->net, "usbnet_write_cmd cmd=0x%02x reqtype=%02x"
1957 " value=0x%04x index=0x%04x size=%d\n",
1958 cmd, reqtype, value, index, size);
1959
1960 if (data) {
1961 buf = kmemdup(data, size, GFP_KERNEL);
1962 if (!buf)
1963 goto out;
1964 }
1965
1966 err = usb_control_msg(dev->udev, usb_sndctrlpipe(dev->udev, 0),
1967 cmd, reqtype, value, index, buf, size,
1968 USB_CTRL_SET_TIMEOUT);
1969 kfree(buf);
1970
1971out:
1972 return err;
1973}
0547fad2
ML
1974
1975/*
1976 * The function can't be called inside suspend/resume callback,
1977 * otherwise deadlock will be caused.
1978 */
1979int usbnet_read_cmd(struct usbnet *dev, u8 cmd, u8 reqtype,
1980 u16 value, u16 index, void *data, u16 size)
1981{
6f0a0986
ML
1982 int ret;
1983
1984 if (usb_autopm_get_interface(dev->intf) < 0)
1985 return -ENODEV;
1986 ret = __usbnet_read_cmd(dev, cmd, reqtype, value, index,
1987 data, size);
1988 usb_autopm_put_interface(dev->intf);
1989 return ret;
0547fad2
ML
1990}
1991EXPORT_SYMBOL_GPL(usbnet_read_cmd);
1992
1993/*
1994 * The function can't be called inside suspend/resume callback,
1995 * otherwise deadlock will be caused.
1996 */
1997int usbnet_write_cmd(struct usbnet *dev, u8 cmd, u8 reqtype,
1998 u16 value, u16 index, const void *data, u16 size)
1999{
6f0a0986
ML
2000 int ret;
2001
2002 if (usb_autopm_get_interface(dev->intf) < 0)
2003 return -ENODEV;
2004 ret = __usbnet_write_cmd(dev, cmd, reqtype, value, index,
2005 data, size);
2006 usb_autopm_put_interface(dev->intf);
2007 return ret;
0547fad2 2008}
877bd862
ML
2009EXPORT_SYMBOL_GPL(usbnet_write_cmd);
2010
0547fad2
ML
2011/*
2012 * The function can be called inside suspend/resume callback safely
2013 * and should only be called by suspend/resume callback generally.
2014 */
2015int usbnet_read_cmd_nopm(struct usbnet *dev, u8 cmd, u8 reqtype,
2016 u16 value, u16 index, void *data, u16 size)
2017{
2018 return __usbnet_read_cmd(dev, cmd, reqtype, value, index,
2019 data, size);
2020}
2021EXPORT_SYMBOL_GPL(usbnet_read_cmd_nopm);
2022
2023/*
2024 * The function can be called inside suspend/resume callback safely
2025 * and should only be called by suspend/resume callback generally.
2026 */
2027int usbnet_write_cmd_nopm(struct usbnet *dev, u8 cmd, u8 reqtype,
2028 u16 value, u16 index, const void *data,
2029 u16 size)
2030{
2031 return __usbnet_write_cmd(dev, cmd, reqtype, value, index,
2032 data, size);
2033}
2034EXPORT_SYMBOL_GPL(usbnet_write_cmd_nopm);
2035
877bd862
ML
2036static void usbnet_async_cmd_cb(struct urb *urb)
2037{
2038 struct usb_ctrlrequest *req = (struct usb_ctrlrequest *)urb->context;
2039 int status = urb->status;
2040
2041 if (status < 0)
2042 dev_dbg(&urb->dev->dev, "%s failed with %d",
2043 __func__, status);
2044
2045 kfree(req);
2046 usb_free_urb(urb);
2047}
2048
0547fad2
ML
2049/*
2050 * The caller must make sure that device can't be put into suspend
2051 * state until the control URB completes.
2052 */
877bd862
ML
2053int usbnet_write_cmd_async(struct usbnet *dev, u8 cmd, u8 reqtype,
2054 u16 value, u16 index, const void *data, u16 size)
2055{
2056 struct usb_ctrlrequest *req = NULL;
2057 struct urb *urb;
2058 int err = -ENOMEM;
2059 void *buf = NULL;
2060
2061 netdev_dbg(dev->net, "usbnet_write_cmd cmd=0x%02x reqtype=%02x"
2062 " value=0x%04x index=0x%04x size=%d\n",
2063 cmd, reqtype, value, index, size);
2064
2065 urb = usb_alloc_urb(0, GFP_ATOMIC);
ef6cd130 2066 if (!urb)
877bd862 2067 goto fail;
877bd862
ML
2068
2069 if (data) {
2070 buf = kmemdup(data, size, GFP_ATOMIC);
2071 if (!buf) {
2072 netdev_err(dev->net, "Error allocating buffer"
2073 " in %s!\n", __func__);
2074 goto fail_free;
2075 }
2076 }
2077
2078 req = kmalloc(sizeof(struct usb_ctrlrequest), GFP_ATOMIC);
38673c82 2079 if (!req)
877bd862 2080 goto fail_free_buf;
877bd862
ML
2081
2082 req->bRequestType = reqtype;
2083 req->bRequest = cmd;
2084 req->wValue = cpu_to_le16(value);
2085 req->wIndex = cpu_to_le16(index);
2086 req->wLength = cpu_to_le16(size);
2087
2088 usb_fill_control_urb(urb, dev->udev,
2089 usb_sndctrlpipe(dev->udev, 0),
2090 (void *)req, buf, size,
2091 usbnet_async_cmd_cb, req);
2092 urb->transfer_flags |= URB_FREE_BUFFER;
2093
2094 err = usb_submit_urb(urb, GFP_ATOMIC);
2095 if (err < 0) {
2096 netdev_err(dev->net, "Error submitting the control"
2097 " message: status=%d\n", err);
2098 goto fail_free;
2099 }
2100 return 0;
2101
2102fail_free_buf:
2103 kfree(buf);
2104fail_free:
2105 kfree(req);
2106 usb_free_urb(urb);
2107fail:
2108 return err;
2109
2110}
2111EXPORT_SYMBOL_GPL(usbnet_write_cmd_async);
1da177e4
LT
2112/*-------------------------------------------------------------------------*/
2113
f29fc259 2114static int __init usbnet_init(void)
1da177e4 2115{
c582a950
TF
2116 /* Compiler should optimize this out. */
2117 BUILD_BUG_ON(
2118 FIELD_SIZEOF(struct sk_buff, cb) < sizeof(struct skb_data));
1da177e4 2119
c7e12ead 2120 eth_random_addr(node_id);
cb1cebbe 2121 return 0;
1da177e4 2122}
f29fc259 2123module_init(usbnet_init);
1da177e4 2124
f29fc259 2125static void __exit usbnet_exit(void)
1da177e4 2126{
1da177e4 2127}
f29fc259 2128module_exit(usbnet_exit);
1da177e4 2129
f29fc259 2130MODULE_AUTHOR("David Brownell");
090ffa9d 2131MODULE_DESCRIPTION("USB network driver framework");
f29fc259 2132MODULE_LICENSE("GPL");