blob: 74a8e3c6edfc3ff9f02b41b11fadc0afc1e11474 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
David Brownell090ffa92005-08-31 09:54:50 -07002 * USB Network driver infrastructure
David Brownellf29fc252005-08-31 09:52:31 -07003 * Copyright (C) 2000-2005 by David Brownell
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Copyright (C) 2003-2005 David Hollis <dhollis@davehollis.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
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
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
21/*
22 * This is a generic "USB networking" framework that works with several
David Brownell090ffa92005-08-31 09:54:50 -070023 * kinds of full and high speed networking devices: host-to-host cables,
24 * smart usb peripherals, and actual Ethernet adapters.
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 *
David Brownell090ffa92005-08-31 09:54:50 -070026 * These devices usually differ in terms of control protocols (if they
27 * even have one!) and sometimes they define new framing to wrap or batch
28 * Ethernet packets. Otherwise, they talk to USB pretty much the same,
29 * so interface (un)binding, endpoint I/O queues, fault handling, and other
30 * issues can usefully be addressed by this framework.
31 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33// #define DEBUG // error path messages, extra info
34// #define VERBOSE // more; success messages
35
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/init.h>
38#include <linux/netdevice.h>
39#include <linux/etherdevice.h>
Peter Holik03ad0322009-04-18 07:24:17 +000040#include <linux/ctype.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/ethtool.h>
42#include <linux/workqueue.h>
43#include <linux/mii.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <linux/usb.h>
Jussi Kivilinna3692e942008-01-26 00:51:45 +020045#include <linux/usb/usbnet.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090046#include <linux/slab.h>
Andy Shevchenkofd1f1702010-07-23 03:18:08 +000047#include <linux/kernel.h>
Ming Leib0786b42010-11-01 07:11:54 -070048#include <linux/pm_runtime.h>
David Brownellf29fc252005-08-31 09:52:31 -070049
50#define DRIVER_VERSION "22-Aug-2005"
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52
53/*-------------------------------------------------------------------------*/
54
55/*
56 * Nineteen USB 1.1 max size bulk transactions per frame (ms), max.
57 * Several dozen bytes of IPv4 data can fit in two such transactions.
58 * One maximum size Ethernet packet takes twenty four of them.
59 * For high speed, each frame comfortably fits almost 36 max size
60 * Ethernet packets (so queues should be bigger).
David Brownellf29fc252005-08-31 09:52:31 -070061 *
Ming Leia88c32a2013-07-25 13:47:53 +080062 * The goal is to let the USB host controller be busy for 5msec or
63 * more before an irq is required, under load. Jumbograms change
64 * the equation.
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 */
Ming Leia88c32a2013-07-25 13:47:53 +080066#define MAX_QUEUE_MEMORY (60 * 1518)
67#define RX_QLEN(dev) ((dev)->rx_qlen)
68#define TX_QLEN(dev) ((dev)->tx_qlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Linus Torvalds1da177e2005-04-16 15:20:36 -070070// reawaken network queue this soon after stopping; else watchdog barks
71#define TX_TIMEOUT_JIFFIES (5*HZ)
72
73// throttle rx/tx briefly after some faults, so khubd might disconnect()
74// us (it polls at HZ/4 usually) before we report too many false errors.
75#define THROTTLE_JIFFIES (HZ/8)
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077// between wakeups
78#define UNLINK_TIMEOUT_MS 3
79
80/*-------------------------------------------------------------------------*/
81
82// randomly generated ethernet address
83static u8 node_id [ETH_ALEN];
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085static 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070092/*-------------------------------------------------------------------------*/
93
Linus Torvalds1da177e2005-04-16 15:20:36 -070094/* handles CDC Ethernet and many other network "bulk data" interfaces */
David Brownell2e55cc72005-08-31 09:53:10 -070095int usbnet_get_endpoints(struct usbnet *dev, struct usb_interface *intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096{
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;
Justin P. Mattock70f23fd2011-05-10 10:16:21 +0200110 * ignore other endpoints and altsettings.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 */
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:
Luiz Fernando N. Capitulinofc6e2542006-10-26 13:03:01 -0300119 if (!usb_endpoint_dir_in(&e->desc))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 continue;
121 intr = 1;
122 /* FALLTHROUGH */
123 case USB_ENDPOINT_XFER_BULK:
124 break;
125 default:
126 continue;
127 }
Luiz Fernando N. Capitulinofc6e2542006-10-26 13:03:01 -0300128 if (usb_endpoint_dir_in(&e->desc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 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
Joe Perches8e95a202009-12-03 07:58:21 +0000144 if (alt->desc.bAlternateSetting != 0 ||
145 !(dev->driver_info->flags & FLAG_NO_SETINT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 tmp = usb_set_interface (dev->udev, alt->desc.bInterfaceNumber,
147 alt->desc.bAlternateSetting);
148 if (tmp < 0)
149 return tmp;
150 }
David Brownellcb1cebb2007-02-15 18:52:30 -0800151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 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}
David Brownell2e55cc72005-08-31 09:53:10 -0700159EXPORT_SYMBOL_GPL(usbnet_get_endpoints);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Peter Holik03ad0322009-04-18 07:24:17 +0000161int usbnet_get_ethernet_addr(struct usbnet *dev, int iMACAddress)
162{
163 int tmp, i;
164 unsigned char buf [13];
165
166 tmp = usb_string(dev->udev, iMACAddress, buf, sizeof buf);
167 if (tmp != 12) {
168 dev_dbg(&dev->udev->dev,
169 "bad MAC string %d fetch, %d\n", iMACAddress, tmp);
170 if (tmp >= 0)
171 tmp = -EINVAL;
172 return tmp;
173 }
174 for (i = tmp = 0; i < 6; i++, tmp += 2)
175 dev->net->dev_addr [i] =
Andy Shevchenkofd1f1702010-07-23 03:18:08 +0000176 (hex_to_bin(buf[tmp]) << 4) + hex_to_bin(buf[tmp + 1]);
Peter Holik03ad0322009-04-18 07:24:17 +0000177 return 0;
178}
179EXPORT_SYMBOL_GPL(usbnet_get_ethernet_addr);
180
tom.leiming@gmail.com24ead292012-06-11 15:19:44 +0000181static void intr_complete (struct urb *urb)
182{
183 struct usbnet *dev = urb->context;
184 int status = urb->status;
185
186 switch (status) {
187 /* success */
188 case 0:
189 dev->driver_info->status(dev, urb);
190 break;
191
192 /* software-driven interface shutdown */
193 case -ENOENT: /* urb killed */
194 case -ESHUTDOWN: /* hardware gone */
195 netif_dbg(dev, ifdown, dev->net,
196 "intr shutdown, code %d\n", status);
197 return;
198
199 /* NOTE: not throttling like RX/TX, since this endpoint
200 * already polls infrequently
201 */
202 default:
203 netdev_dbg(dev->net, "intr status %d\n", status);
204 break;
205 }
206
207 if (!netif_running (dev->net))
208 return;
209
tom.leiming@gmail.com24ead292012-06-11 15:19:44 +0000210 status = usb_submit_urb (urb, GFP_ATOMIC);
211 if (status != 0)
212 netif_err(dev, timer, dev->net,
213 "intr resubmit --> %d\n", status);
214}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
216static int init_status (struct usbnet *dev, struct usb_interface *intf)
217{
218 char *buf = NULL;
219 unsigned pipe = 0;
220 unsigned maxp;
221 unsigned period;
222
223 if (!dev->driver_info->status)
224 return 0;
225
226 pipe = usb_rcvintpipe (dev->udev,
227 dev->status->desc.bEndpointAddress
228 & USB_ENDPOINT_NUMBER_MASK);
229 maxp = usb_maxpacket (dev->udev, pipe, 0);
230
231 /* avoid 1 msec chatter: min 8 msec poll rate */
232 period = max ((int) dev->status->desc.bInterval,
233 (dev->udev->speed == USB_SPEED_HIGH) ? 7 : 3);
234
Christoph Lametere94b1762006-12-06 20:33:17 -0800235 buf = kmalloc (maxp, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 if (buf) {
Christoph Lametere94b1762006-12-06 20:33:17 -0800237 dev->interrupt = usb_alloc_urb (0, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 if (!dev->interrupt) {
239 kfree (buf);
240 return -ENOMEM;
241 } else {
242 usb_fill_int_urb(dev->interrupt, dev->udev, pipe,
243 buf, maxp, intr_complete, dev, period);
tom.leiming@gmail.com720f3d72012-04-29 22:51:02 +0000244 dev->interrupt->transfer_flags |= URB_FREE_BUFFER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 dev_dbg(&intf->dev,
246 "status ep%din, %d bytes period %d\n",
247 usb_pipeendpoint(pipe), maxp, period);
248 }
249 }
David Brownell18ab4582007-05-25 12:31:32 -0700250 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251}
252
Dan Williams6eecdc52013-05-06 11:29:23 +0000253/* Submit the interrupt URB if not previously submitted, increasing refcount */
254int usbnet_status_start(struct usbnet *dev, gfp_t mem_flags)
255{
256 int ret = 0;
257
258 WARN_ON_ONCE(dev->interrupt == NULL);
259 if (dev->interrupt) {
260 mutex_lock(&dev->interrupt_mutex);
261
262 if (++dev->interrupt_count == 1)
263 ret = usb_submit_urb(dev->interrupt, mem_flags);
264
265 dev_dbg(&dev->udev->dev, "incremented interrupt URB count to %d\n",
266 dev->interrupt_count);
267 mutex_unlock(&dev->interrupt_mutex);
268 }
269 return ret;
270}
271EXPORT_SYMBOL_GPL(usbnet_status_start);
272
273/* For resume; submit interrupt URB if previously submitted */
274static int __usbnet_status_start_force(struct usbnet *dev, gfp_t mem_flags)
275{
276 int ret = 0;
277
278 mutex_lock(&dev->interrupt_mutex);
279 if (dev->interrupt_count) {
280 ret = usb_submit_urb(dev->interrupt, mem_flags);
281 dev_dbg(&dev->udev->dev,
282 "submitted interrupt URB for resume\n");
283 }
284 mutex_unlock(&dev->interrupt_mutex);
285 return ret;
286}
287
288/* Kill the interrupt URB if all submitters want it killed */
289void usbnet_status_stop(struct usbnet *dev)
290{
291 if (dev->interrupt) {
292 mutex_lock(&dev->interrupt_mutex);
293 WARN_ON(dev->interrupt_count == 0);
294
295 if (dev->interrupt_count && --dev->interrupt_count == 0)
296 usb_kill_urb(dev->interrupt);
297
298 dev_dbg(&dev->udev->dev,
299 "decremented interrupt URB count to %d\n",
300 dev->interrupt_count);
301 mutex_unlock(&dev->interrupt_mutex);
302 }
303}
304EXPORT_SYMBOL_GPL(usbnet_status_stop);
305
306/* For suspend; always kill interrupt URB */
307static void __usbnet_status_stop_force(struct usbnet *dev)
308{
309 if (dev->interrupt) {
310 mutex_lock(&dev->interrupt_mutex);
311 usb_kill_urb(dev->interrupt);
312 dev_dbg(&dev->udev->dev, "killed interrupt URB for suspend\n");
313 mutex_unlock(&dev->interrupt_mutex);
314 }
315}
316
David Brownell2e55cc72005-08-31 09:53:10 -0700317/* Passes this packet up the stack, updating its accounting.
318 * Some link protocols batch packets, so their rx_fixup paths
319 * can return clones as well as just modify the original skb.
320 */
321void usbnet_skb_return (struct usbnet *dev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
323 int status;
324
Jussi Kivilinna7834ddb2009-08-11 22:57:16 +0300325 if (test_bit(EVENT_RX_PAUSED, &dev->flags)) {
326 skb_queue_tail(&dev->rxq_pause, skb);
327 return;
328 }
329
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 skb->protocol = eth_type_trans (skb, dev->net);
Herbert Xu79638372009-06-29 16:53:28 +0000331 dev->net->stats.rx_packets++;
332 dev->net->stats.rx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Joe Perchesa475f602010-02-17 10:30:24 +0000334 netif_dbg(dev, rx_status, dev->net, "< rx, len %zu, type 0x%x\n",
335 skb->len + sizeof (struct ethhdr), skb->protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 memset (skb->cb, 0, sizeof (struct skb_data));
Michael Rieschf9b491e2011-09-29 04:06:26 +0000337
338 if (skb_defer_rx_timestamp(skb))
339 return;
340
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 status = netif_rx (skb);
Joe Perchesa475f602010-02-17 10:30:24 +0000342 if (status != NET_RX_SUCCESS)
343 netif_dbg(dev, rx_err, dev->net,
344 "netif_rx status %d\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345}
David Brownell2e55cc72005-08-31 09:53:10 -0700346EXPORT_SYMBOL_GPL(usbnet_skb_return);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
Ming Leia88c32a2013-07-25 13:47:53 +0800348/* must be called if hard_mtu or rx_urb_size changed */
349void usbnet_update_max_qlen(struct usbnet *dev)
350{
351 enum usb_device_speed speed = dev->udev->speed;
352
353 switch (speed) {
354 case USB_SPEED_HIGH:
355 dev->rx_qlen = MAX_QUEUE_MEMORY / dev->rx_urb_size;
356 dev->tx_qlen = MAX_QUEUE_MEMORY / dev->hard_mtu;
357 break;
Ming Lei452c4472013-07-25 13:47:54 +0800358 case USB_SPEED_SUPER:
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;
Ming Leia88c32a2013-07-25 13:47:53 +0800367 default:
368 dev->rx_qlen = dev->tx_qlen = 4;
369 }
370}
371EXPORT_SYMBOL_GPL(usbnet_update_max_qlen);
372
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374/*-------------------------------------------------------------------------
375 *
376 * Network Device Driver (peer link to "Host Device", from USB host)
377 *
378 *-------------------------------------------------------------------------*/
379
Stephen Hemminger777baa42009-03-20 19:35:54 +0000380int usbnet_change_mtu (struct net_device *net, int new_mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381{
382 struct usbnet *dev = netdev_priv(net);
David Brownellf29fc252005-08-31 09:52:31 -0700383 int ll_mtu = new_mtu + net->hard_header_len;
Jamie Paintera99c1942006-07-27 14:17:28 -0400384 int old_hard_mtu = dev->hard_mtu;
385 int old_rx_urb_size = dev->rx_urb_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Jamie Paintera99c1942006-07-27 14:17:28 -0400387 if (new_mtu <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 // no second zero-length packet read wanted after mtu-sized packets
David Brownellf29fc252005-08-31 09:52:31 -0700390 if ((ll_mtu % dev->maxpacket) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 return -EDOM;
392 net->mtu = new_mtu;
Jamie Paintera99c1942006-07-27 14:17:28 -0400393
394 dev->hard_mtu = net->mtu + net->hard_header_len;
395 if (dev->rx_urb_size == old_hard_mtu) {
396 dev->rx_urb_size = dev->hard_mtu;
397 if (dev->rx_urb_size > old_rx_urb_size)
398 usbnet_unlink_rx_urbs(dev);
399 }
400
Ming Leia88c32a2013-07-25 13:47:53 +0800401 /* max qlen depend on hard_mtu and rx_urb_size */
402 usbnet_update_max_qlen(dev);
403
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 return 0;
405}
Stephen Hemminger777baa42009-03-20 19:35:54 +0000406EXPORT_SYMBOL_GPL(usbnet_change_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800408/* The caller must hold list->lock */
409static void __usbnet_queue_skb(struct sk_buff_head *list,
410 struct sk_buff *newsk, enum skb_state state)
411{
412 struct skb_data *entry = (struct skb_data *) newsk->cb;
413
414 __skb_queue_tail(list, newsk);
415 entry->state = state;
416}
417
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418/*-------------------------------------------------------------------------*/
419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420/* some LK 2.4 HCDs oopsed if we freed or resubmitted urbs from
421 * completion callbacks. 2.5 should have fixed those bugs...
422 */
423
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800424static enum skb_state defer_bh(struct usbnet *dev, struct sk_buff *skb,
425 struct sk_buff_head *list, enum skb_state state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 unsigned long flags;
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800428 enum skb_state old_state;
429 struct skb_data *entry = (struct skb_data *) skb->cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
David S. Miller8728b832005-08-09 19:25:21 -0700431 spin_lock_irqsave(&list->lock, flags);
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800432 old_state = entry->state;
433 entry->state = state;
David S. Miller8728b832005-08-09 19:25:21 -0700434 __skb_unlink(skb, list);
435 spin_unlock(&list->lock);
436 spin_lock(&dev->done.lock);
437 __skb_queue_tail(&dev->done, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 if (dev->done.qlen == 1)
David S. Miller8728b832005-08-09 19:25:21 -0700439 tasklet_schedule(&dev->bh);
440 spin_unlock_irqrestore(&dev->done.lock, flags);
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800441 return old_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442}
443
444/* some work can't be done in tasklets, so we use keventd
445 *
446 * NOTE: annoying asymmetry: if it's active, schedule_work() fails,
447 * but tasklet_schedule() doesn't. hope the failure is rare.
448 */
David Brownell2e55cc72005-08-31 09:53:10 -0700449void usbnet_defer_kevent (struct usbnet *dev, int work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450{
451 set_bit (work, &dev->flags);
Steve Glendinning95320212012-11-08 06:26:21 +0000452 if (!schedule_work (&dev->kevent)) {
453 if (net_ratelimit())
454 netdev_err(dev->net, "kevent %d may have been dropped\n", work);
455 } else {
Joe Perches60b86752010-02-17 10:30:23 +0000456 netdev_dbg(dev->net, "kevent %d scheduled\n", work);
Steve Glendinning95320212012-11-08 06:26:21 +0000457 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458}
David Brownell2e55cc72005-08-31 09:53:10 -0700459EXPORT_SYMBOL_GPL(usbnet_defer_kevent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
461/*-------------------------------------------------------------------------*/
462
David Howells7d12e782006-10-05 14:55:46 +0100463static void rx_complete (struct urb *urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
David S. Millerdacb3972010-08-10 02:50:55 -0700465static int rx_submit (struct usbnet *dev, struct urb *urb, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466{
467 struct sk_buff *skb;
468 struct skb_data *entry;
469 int retval = 0;
470 unsigned long lockflags;
David Brownell2e55cc72005-08-31 09:53:10 -0700471 size_t size = dev->rx_urb_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
Bjørn Mork70c37bf2013-01-28 23:51:28 +0000473 /* prevent rx skb allocation when error ratio is high */
474 if (test_bit(EVENT_RX_KILL, &dev->flags)) {
475 usb_free_urb(urb);
476 return -ENOLINK;
477 }
478
Eric Dumazet7bdd4022012-03-14 06:56:25 +0000479 skb = __netdev_alloc_skb_ip_align(dev->net, size, flags);
480 if (!skb) {
Joe Perchesa475f602010-02-17 10:30:24 +0000481 netif_dbg(dev, rx_err, dev->net, "no rx skb\n");
David Brownell2e55cc72005-08-31 09:53:10 -0700482 usbnet_defer_kevent (dev, EVENT_RX_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 usb_free_urb (urb);
David S. Millerdacb3972010-08-10 02:50:55 -0700484 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
487 entry = (struct skb_data *) skb->cb;
488 entry->urb = urb;
489 entry->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 entry->length = 0;
491
492 usb_fill_bulk_urb (urb, dev->udev, dev->in,
493 skb->data, size, rx_complete, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
495 spin_lock_irqsave (&dev->rxq.lock, lockflags);
496
Joe Perches8e95a202009-12-03 07:58:21 +0000497 if (netif_running (dev->net) &&
498 netif_device_present (dev->net) &&
Oliver Neukum69ee472f2009-12-03 15:31:18 -0800499 !test_bit (EVENT_RX_HALT, &dev->flags) &&
500 !test_bit (EVENT_DEV_ASLEEP, &dev->flags)) {
David Brownell18ab4582007-05-25 12:31:32 -0700501 switch (retval = usb_submit_urb (urb, GFP_ATOMIC)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 case -EPIPE:
David Brownell2e55cc72005-08-31 09:53:10 -0700503 usbnet_defer_kevent (dev, EVENT_RX_HALT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 break;
505 case -ENOMEM:
David Brownell2e55cc72005-08-31 09:53:10 -0700506 usbnet_defer_kevent (dev, EVENT_RX_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 break;
508 case -ENODEV:
Joe Perchesa475f602010-02-17 10:30:24 +0000509 netif_dbg(dev, ifdown, dev->net, "device gone\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 netif_device_detach (dev->net);
511 break;
David S. Millerdacb3972010-08-10 02:50:55 -0700512 case -EHOSTUNREACH:
513 retval = -ENOLINK;
514 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 default:
Joe Perchesa475f602010-02-17 10:30:24 +0000516 netif_dbg(dev, rx_err, dev->net,
517 "rx submit, %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 tasklet_schedule (&dev->bh);
519 break;
520 case 0:
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800521 __usbnet_queue_skb(&dev->rxq, skb, rx_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 }
523 } else {
Joe Perchesa475f602010-02-17 10:30:24 +0000524 netif_dbg(dev, ifdown, dev->net, "rx: stopped\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 retval = -ENOLINK;
526 }
527 spin_unlock_irqrestore (&dev->rxq.lock, lockflags);
528 if (retval) {
529 dev_kfree_skb_any (skb);
530 usb_free_urb (urb);
531 }
David S. Millerdacb3972010-08-10 02:50:55 -0700532 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533}
534
535
536/*-------------------------------------------------------------------------*/
537
538static inline void rx_process (struct usbnet *dev, struct sk_buff *skb)
539{
Joe Perches8e95a202009-12-03 07:58:21 +0000540 if (dev->driver_info->rx_fixup &&
Andrzej Zaborowski7a635ea2011-03-28 12:56:33 +0000541 !dev->driver_info->rx_fixup (dev, skb)) {
542 /* With RX_ASSEMBLE, rx_fixup() must update counters */
543 if (!(dev->driver_info->flags & FLAG_RX_ASSEMBLE))
544 dev->net->stats.rx_errors++;
545 goto done;
546 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 // else network stack removes extra byte if we forced a short packet
548
Alexey Orishko073285f2010-11-29 23:23:27 +0000549 if (skb->len) {
550 /* all data was already cloned from skb inside the driver */
551 if (dev->driver_info->flags & FLAG_MULTI_PACKET)
552 dev_kfree_skb_any(skb);
553 else
554 usbnet_skb_return(dev, skb);
555 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 }
Alexey Orishko073285f2010-11-29 23:23:27 +0000557
558 netif_dbg(dev, rx_err, dev->net, "drop\n");
Alexey Orishko073285f2010-11-29 23:23:27 +0000559 dev->net->stats.rx_errors++;
Andrzej Zaborowski7a635ea2011-03-28 12:56:33 +0000560done:
Alexey Orishko073285f2010-11-29 23:23:27 +0000561 skb_queue_tail(&dev->done, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562}
563
564/*-------------------------------------------------------------------------*/
565
David Howells7d12e782006-10-05 14:55:46 +0100566static void rx_complete (struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567{
568 struct sk_buff *skb = (struct sk_buff *) urb->context;
569 struct skb_data *entry = (struct skb_data *) skb->cb;
570 struct usbnet *dev = entry->dev;
571 int urb_status = urb->status;
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800572 enum skb_state state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
574 skb_put (skb, urb->actual_length);
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800575 state = rx_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 entry->urb = NULL;
577
578 switch (urb_status) {
David Brownell18ab4582007-05-25 12:31:32 -0700579 /* success */
580 case 0:
David Brownellf29fc252005-08-31 09:52:31 -0700581 if (skb->len < dev->net->hard_header_len) {
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800582 state = rx_cleanup;
Herbert Xu79638372009-06-29 16:53:28 +0000583 dev->net->stats.rx_errors++;
584 dev->net->stats.rx_length_errors++;
Joe Perchesa475f602010-02-17 10:30:24 +0000585 netif_dbg(dev, rx_err, dev->net,
586 "rx length %d\n", skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 }
588 break;
589
David Brownell18ab4582007-05-25 12:31:32 -0700590 /* stalls need manual reset. this is rare ... except that
591 * when going through USB 2.0 TTs, unplug appears this way.
Jean Delvare3ac49a12009-06-04 16:20:28 +0200592 * we avoid the highspeed version of the ETIMEDOUT/EILSEQ
David Brownell18ab4582007-05-25 12:31:32 -0700593 * storm, recovering as needed.
594 */
595 case -EPIPE:
Herbert Xu79638372009-06-29 16:53:28 +0000596 dev->net->stats.rx_errors++;
David Brownell2e55cc72005-08-31 09:53:10 -0700597 usbnet_defer_kevent (dev, EVENT_RX_HALT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 // FALLTHROUGH
599
David Brownell18ab4582007-05-25 12:31:32 -0700600 /* software-driven interface shutdown */
601 case -ECONNRESET: /* async unlink */
602 case -ESHUTDOWN: /* hardware gone */
Joe Perchesa475f602010-02-17 10:30:24 +0000603 netif_dbg(dev, ifdown, dev->net,
604 "rx shutdown, code %d\n", urb_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 goto block;
606
David Brownell18ab4582007-05-25 12:31:32 -0700607 /* we get controller i/o faults during khubd disconnect() delays.
608 * throttle down resubmits, to avoid log floods; just temporarily,
609 * so we still recover when the fault isn't a khubd delay.
610 */
611 case -EPROTO:
612 case -ETIME:
613 case -EILSEQ:
Herbert Xu79638372009-06-29 16:53:28 +0000614 dev->net->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 if (!timer_pending (&dev->delay)) {
616 mod_timer (&dev->delay, jiffies + THROTTLE_JIFFIES);
Joe Perchesa475f602010-02-17 10:30:24 +0000617 netif_dbg(dev, link, dev->net,
618 "rx throttle %d\n", urb_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 }
620block:
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800621 state = rx_cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 entry->urb = urb;
623 urb = NULL;
624 break;
625
David Brownell18ab4582007-05-25 12:31:32 -0700626 /* data overrun ... flush fifo? */
627 case -EOVERFLOW:
Herbert Xu79638372009-06-29 16:53:28 +0000628 dev->net->stats.rx_over_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 // FALLTHROUGH
David Brownellcb1cebb2007-02-15 18:52:30 -0800630
David Brownell18ab4582007-05-25 12:31:32 -0700631 default:
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800632 state = rx_cleanup;
Herbert Xu79638372009-06-29 16:53:28 +0000633 dev->net->stats.rx_errors++;
Joe Perchesa475f602010-02-17 10:30:24 +0000634 netif_dbg(dev, rx_err, dev->net, "rx status %d\n", urb_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 break;
636 }
637
Bjørn Mork70c37bf2013-01-28 23:51:28 +0000638 /* stop rx if packet error rate is high */
639 if (++dev->pkt_cnt > 30) {
640 dev->pkt_cnt = 0;
641 dev->pkt_err = 0;
642 } else {
643 if (state == rx_cleanup)
644 dev->pkt_err++;
645 if (dev->pkt_err > 20)
646 set_bit(EVENT_RX_KILL, &dev->flags);
647 }
648
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800649 state = defer_bh(dev, skb, &dev->rxq, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
651 if (urb) {
Joe Perches8e95a202009-12-03 07:58:21 +0000652 if (netif_running (dev->net) &&
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800653 !test_bit (EVENT_RX_HALT, &dev->flags) &&
654 state != unlink_start) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 rx_submit (dev, urb, GFP_ATOMIC);
Oliver Neukum8a783352012-03-03 18:45:07 +0100656 usb_mark_last_busy(dev->udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 return;
658 }
659 usb_free_urb (urb);
660 }
Joe Perchesa475f602010-02-17 10:30:24 +0000661 netif_dbg(dev, rx_err, dev->net, "no read resubmitted\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662}
663
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664/*-------------------------------------------------------------------------*/
Jussi Kivilinna7834ddb2009-08-11 22:57:16 +0300665void usbnet_pause_rx(struct usbnet *dev)
666{
667 set_bit(EVENT_RX_PAUSED, &dev->flags);
668
Joe Perchesa475f602010-02-17 10:30:24 +0000669 netif_dbg(dev, rx_status, dev->net, "paused rx queue enabled\n");
Jussi Kivilinna7834ddb2009-08-11 22:57:16 +0300670}
671EXPORT_SYMBOL_GPL(usbnet_pause_rx);
672
673void usbnet_resume_rx(struct usbnet *dev)
674{
675 struct sk_buff *skb;
676 int num = 0;
677
678 clear_bit(EVENT_RX_PAUSED, &dev->flags);
679
680 while ((skb = skb_dequeue(&dev->rxq_pause)) != NULL) {
681 usbnet_skb_return(dev, skb);
682 num++;
683 }
684
685 tasklet_schedule(&dev->bh);
686
Joe Perchesa475f602010-02-17 10:30:24 +0000687 netif_dbg(dev, rx_status, dev->net,
688 "paused rx queue disabled, %d skbs requeued\n", num);
Jussi Kivilinna7834ddb2009-08-11 22:57:16 +0300689}
690EXPORT_SYMBOL_GPL(usbnet_resume_rx);
691
692void usbnet_purge_paused_rxq(struct usbnet *dev)
693{
694 skb_queue_purge(&dev->rxq_pause);
695}
696EXPORT_SYMBOL_GPL(usbnet_purge_paused_rxq);
697
698/*-------------------------------------------------------------------------*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
700// unlink pending rx/tx; completion handlers do all other cleanup
701
702static int unlink_urbs (struct usbnet *dev, struct sk_buff_head *q)
703{
704 unsigned long flags;
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800705 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 int count = 0;
707
708 spin_lock_irqsave (&q->lock, flags);
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800709 while (!skb_queue_empty(q)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 struct skb_data *entry;
711 struct urb *urb;
712 int retval;
713
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800714 skb_queue_walk(q, skb) {
715 entry = (struct skb_data *) skb->cb;
716 if (entry->state != unlink_start)
717 goto found;
718 }
719 break;
720found:
721 entry->state = unlink_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 urb = entry->urb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
tom.leiming@gmail.com0956a8c2012-03-22 03:22:18 +0000724 /*
725 * Get reference count of the URB to avoid it to be
726 * freed during usb_unlink_urb, which may trigger
727 * use-after-free problem inside usb_unlink_urb since
728 * usb_unlink_urb is always racing with .complete
729 * handler(include defer_bh).
730 */
731 usb_get_urb(urb);
Sebastian Siewior4231d472012-03-07 10:19:28 +0000732 spin_unlock_irqrestore(&q->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 // during some PM-driven resume scenarios,
734 // these (async) unlinks complete immediately
735 retval = usb_unlink_urb (urb);
736 if (retval != -EINPROGRESS && retval != 0)
Joe Perches60b86752010-02-17 10:30:23 +0000737 netdev_dbg(dev->net, "unlink urb err, %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 else
739 count++;
tom.leiming@gmail.com0956a8c2012-03-22 03:22:18 +0000740 usb_put_urb(urb);
Sebastian Siewior4231d472012-03-07 10:19:28 +0000741 spin_lock_irqsave(&q->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 }
743 spin_unlock_irqrestore (&q->lock, flags);
744 return count;
745}
746
Jamie Paintera99c1942006-07-27 14:17:28 -0400747// Flush all pending rx urbs
748// minidrivers may need to do this when the MTU changes
749
750void usbnet_unlink_rx_urbs(struct usbnet *dev)
751{
752 if (netif_running(dev->net)) {
753 (void) unlink_urbs (dev, &dev->rxq);
754 tasklet_schedule(&dev->bh);
755 }
756}
757EXPORT_SYMBOL_GPL(usbnet_unlink_rx_urbs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
759/*-------------------------------------------------------------------------*/
760
761// precondition: never called in_interrupt
Oliver Neukum69ee472f2009-12-03 15:31:18 -0800762static void usbnet_terminate_urbs(struct usbnet *dev)
763{
764 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(unlink_wakeup);
765 DECLARE_WAITQUEUE(wait, current);
766 int temp;
767
768 /* ensure there are no more active urbs */
769 add_wait_queue(&unlink_wakeup, &wait);
770 set_current_state(TASK_UNINTERRUPTIBLE);
771 dev->wait = &unlink_wakeup;
772 temp = unlink_urbs(dev, &dev->txq) +
773 unlink_urbs(dev, &dev->rxq);
774
775 /* maybe wait for deletions to finish. */
776 while (!skb_queue_empty(&dev->rxq)
777 && !skb_queue_empty(&dev->txq)
778 && !skb_queue_empty(&dev->done)) {
Kulikov Vasiliy66cc42a2010-07-25 22:25:42 +0000779 schedule_timeout(msecs_to_jiffies(UNLINK_TIMEOUT_MS));
Oliver Neukum69ee472f2009-12-03 15:31:18 -0800780 set_current_state(TASK_UNINTERRUPTIBLE);
Joe Perchesa475f602010-02-17 10:30:24 +0000781 netif_dbg(dev, ifdown, dev->net,
782 "waited for %d urb completions\n", temp);
Oliver Neukum69ee472f2009-12-03 15:31:18 -0800783 }
784 set_current_state(TASK_RUNNING);
785 dev->wait = NULL;
786 remove_wait_queue(&unlink_wakeup, &wait);
787}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
Stephen Hemminger777baa42009-03-20 19:35:54 +0000789int usbnet_stop (struct net_device *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790{
791 struct usbnet *dev = netdev_priv(net);
Jussi Kivilinnaa33e9e72009-06-16 17:17:27 +0300792 struct driver_info *info = dev->driver_info;
Jussi Kivilinnaa33e9e72009-06-16 17:17:27 +0300793 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
Ming Lei75bd0cb2011-04-28 22:37:09 +0000795 clear_bit(EVENT_DEV_OPEN, &dev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 netif_stop_queue (net);
797
Joe Perchesa475f602010-02-17 10:30:24 +0000798 netif_info(dev, ifdown, dev->net,
Ben Hutchings8ccef432010-06-08 08:20:59 +0000799 "stop stats: rx/tx %lu/%lu, errs %lu/%lu\n",
Joe Perchesa475f602010-02-17 10:30:24 +0000800 net->stats.rx_packets, net->stats.tx_packets,
801 net->stats.rx_errors, net->stats.tx_errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
Jussi Kivilinnaa33e9e72009-06-16 17:17:27 +0300803 /* allow minidriver to stop correctly (wireless devices to turn off
804 * radio etc) */
805 if (info->stop) {
806 retval = info->stop(dev);
Joe Perchesa475f602010-02-17 10:30:24 +0000807 if (retval < 0)
808 netif_info(dev, ifdown, dev->net,
809 "stop fail (%d) usbnet usb-%s-%s, %s\n",
810 retval,
811 dev->udev->bus->bus_name, dev->udev->devpath,
812 info->description);
Jussi Kivilinnaa33e9e72009-06-16 17:17:27 +0300813 }
814
Oliver Neukum69ee472f2009-12-03 15:31:18 -0800815 if (!(info->flags & FLAG_AVOID_UNLINK_URBS))
816 usbnet_terminate_urbs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
Dan Williams6eecdc52013-05-06 11:29:23 +0000818 usbnet_status_stop(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
Jussi Kivilinna7834ddb2009-08-11 22:57:16 +0300820 usbnet_purge_paused_rxq(dev);
821
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 /* deferred work (task, timer, softirq) must also stop.
823 * can't flush_scheduled_work() until we drop rtnl (later),
824 * else workers could deadlock; so make workers a NOP.
825 */
826 dev->flags = 0;
827 del_timer_sync (&dev->delay);
828 tasklet_kill (&dev->bh);
Oliver Neukuma1c088e2012-12-18 04:45:29 +0000829 if (info->manage_power &&
830 !test_and_clear_bit(EVENT_NO_RUNTIME_PM, &dev->flags))
Oliver Neukum69ee472f2009-12-03 15:31:18 -0800831 info->manage_power(dev, 0);
832 else
833 usb_autopm_put_interface(dev->intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
835 return 0;
836}
Stephen Hemminger777baa42009-03-20 19:35:54 +0000837EXPORT_SYMBOL_GPL(usbnet_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
839/*-------------------------------------------------------------------------*/
840
841// posts reads, and enables write queuing
842
843// precondition: never called in_interrupt
844
Stephen Hemminger777baa42009-03-20 19:35:54 +0000845int usbnet_open (struct net_device *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846{
847 struct usbnet *dev = netdev_priv(net);
Oliver Neukuma11a6542007-08-03 13:52:19 +0200848 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 struct driver_info *info = dev->driver_info;
850
Oliver Neukuma11a6542007-08-03 13:52:19 +0200851 if ((retval = usb_autopm_get_interface(dev->intf)) < 0) {
Joe Perchesa475f602010-02-17 10:30:24 +0000852 netif_info(dev, ifup, dev->net,
853 "resumption fail (%d) usbnet usb-%s-%s, %s\n",
854 retval,
855 dev->udev->bus->bus_name,
856 dev->udev->devpath,
857 info->description);
Oliver Neukuma11a6542007-08-03 13:52:19 +0200858 goto done_nopm;
859 }
860
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 // put into "known safe" state
862 if (info->reset && (retval = info->reset (dev)) < 0) {
Joe Perchesa475f602010-02-17 10:30:24 +0000863 netif_info(dev, ifup, dev->net,
864 "open reset fail (%d) usbnet usb-%s-%s, %s\n",
865 retval,
866 dev->udev->bus->bus_name,
867 dev->udev->devpath,
868 info->description);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 goto done;
870 }
871
Ming Leia88c32a2013-07-25 13:47:53 +0800872 /* hard_mtu or rx_urb_size may change in reset() */
873 usbnet_update_max_qlen(dev);
874
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 // insist peer be connected
876 if (info->check_connect && (retval = info->check_connect (dev)) < 0) {
Joe Perchesa475f602010-02-17 10:30:24 +0000877 netif_dbg(dev, ifup, dev->net, "can't open; %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 goto done;
879 }
880
881 /* start any status interrupt transfer */
882 if (dev->interrupt) {
Dan Williams6eecdc52013-05-06 11:29:23 +0000883 retval = usbnet_status_start(dev, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 if (retval < 0) {
Joe Perchesa475f602010-02-17 10:30:24 +0000885 netif_err(dev, ifup, dev->net,
886 "intr submit %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 goto done;
888 }
889 }
890
Paul Stewart68972ef2011-04-28 05:43:37 +0000891 set_bit(EVENT_DEV_OPEN, &dev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 netif_start_queue (net);
Joe Perchesa475f602010-02-17 10:30:24 +0000893 netif_info(dev, ifup, dev->net,
894 "open: enable queueing (rx %d, tx %d) mtu %d %s framing\n",
895 (int)RX_QLEN(dev), (int)TX_QLEN(dev),
896 dev->net->mtu,
897 (dev->driver_info->flags & FLAG_FRAMING_NC) ? "NetChip" :
898 (dev->driver_info->flags & FLAG_FRAMING_GL) ? "GeneSys" :
899 (dev->driver_info->flags & FLAG_FRAMING_Z) ? "Zaurus" :
900 (dev->driver_info->flags & FLAG_FRAMING_RN) ? "RNDIS" :
901 (dev->driver_info->flags & FLAG_FRAMING_AX) ? "ASIX" :
902 "simple");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
Bjørn Mork70c37bf2013-01-28 23:51:28 +0000904 /* reset rx error state */
905 dev->pkt_cnt = 0;
906 dev->pkt_err = 0;
907 clear_bit(EVENT_RX_KILL, &dev->flags);
908
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 // delay posting reads until we're fully open
910 tasklet_schedule (&dev->bh);
Oliver Neukum69ee472f2009-12-03 15:31:18 -0800911 if (info->manage_power) {
912 retval = info->manage_power(dev, 1);
Oliver Neukuma1c088e2012-12-18 04:45:29 +0000913 if (retval < 0) {
914 retval = 0;
915 set_bit(EVENT_NO_RUNTIME_PM, &dev->flags);
916 } else {
917 usb_autopm_put_interface(dev->intf);
918 }
Oliver Neukum69ee472f2009-12-03 15:31:18 -0800919 }
Oliver Neukuma11a6542007-08-03 13:52:19 +0200920 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921done:
Oliver Neukuma11a6542007-08-03 13:52:19 +0200922 usb_autopm_put_interface(dev->intf);
923done_nopm:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 return retval;
925}
Stephen Hemminger777baa42009-03-20 19:35:54 +0000926EXPORT_SYMBOL_GPL(usbnet_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
928/*-------------------------------------------------------------------------*/
929
David Brownell2e55cc72005-08-31 09:53:10 -0700930/* ethtool methods; minidrivers may need to add some more, but
931 * they'll probably want to use this base set.
932 */
933
Arnd Bergmannc41286f2006-10-09 00:08:01 +0200934int usbnet_get_settings (struct net_device *net, struct ethtool_cmd *cmd)
935{
936 struct usbnet *dev = netdev_priv(net);
937
938 if (!dev->mii.mdio_read)
939 return -EOPNOTSUPP;
940
941 return mii_ethtool_gset(&dev->mii, cmd);
942}
943EXPORT_SYMBOL_GPL(usbnet_get_settings);
944
945int usbnet_set_settings (struct net_device *net, struct ethtool_cmd *cmd)
946{
947 struct usbnet *dev = netdev_priv(net);
948 int retval;
949
950 if (!dev->mii.mdio_write)
951 return -EOPNOTSUPP;
952
953 retval = mii_ethtool_sset(&dev->mii, cmd);
954
955 /* link speed/duplex might have changed */
956 if (dev->driver_info->link_reset)
957 dev->driver_info->link_reset(dev);
958
Ming Leia88c32a2013-07-25 13:47:53 +0800959 /* hard_mtu or rx_urb_size may change in link_reset() */
960 usbnet_update_max_qlen(dev);
961
Arnd Bergmannc41286f2006-10-09 00:08:01 +0200962 return retval;
963
964}
965EXPORT_SYMBOL_GPL(usbnet_set_settings);
966
Arnd Bergmannc41286f2006-10-09 00:08:01 +0200967u32 usbnet_get_link (struct net_device *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968{
969 struct usbnet *dev = netdev_priv(net);
970
David Brownellf29fc252005-08-31 09:52:31 -0700971 /* If a check_connect is defined, return its result */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 if (dev->driver_info->check_connect)
973 return dev->driver_info->check_connect (dev) == 0;
974
Arnd Bergmannc41286f2006-10-09 00:08:01 +0200975 /* if the device has mii operations, use those */
976 if (dev->mii.mdio_read)
977 return mii_link_ok(&dev->mii);
978
Bjørn Mork05ffb3e2009-03-01 20:45:40 -0800979 /* Otherwise, dtrt for drivers calling netif_carrier_{on,off} */
980 return ethtool_op_get_link(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981}
Arnd Bergmannc41286f2006-10-09 00:08:01 +0200982EXPORT_SYMBOL_GPL(usbnet_get_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
David Brownell18ee91fa2006-11-02 12:29:12 -0800984int usbnet_nway_reset(struct net_device *net)
985{
986 struct usbnet *dev = netdev_priv(net);
987
988 if (!dev->mii.mdio_write)
989 return -EOPNOTSUPP;
990
991 return mii_nway_restart(&dev->mii);
992}
993EXPORT_SYMBOL_GPL(usbnet_nway_reset);
994
David Brownell18ee91fa2006-11-02 12:29:12 -0800995void usbnet_get_drvinfo (struct net_device *net, struct ethtool_drvinfo *info)
996{
997 struct usbnet *dev = netdev_priv(net);
998
Phil Sutter86a2f412012-06-14 01:18:42 +0000999 strlcpy (info->driver, dev->driver_name, sizeof info->driver);
1000 strlcpy (info->version, DRIVER_VERSION, sizeof info->version);
1001 strlcpy (info->fw_version, dev->driver_info->description,
David Brownell18ee91fa2006-11-02 12:29:12 -08001002 sizeof info->fw_version);
1003 usb_make_path (dev->udev, info->bus_info, sizeof info->bus_info);
1004}
1005EXPORT_SYMBOL_GPL(usbnet_get_drvinfo);
1006
David Brownell2e55cc72005-08-31 09:53:10 -07001007u32 usbnet_get_msglevel (struct net_device *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008{
1009 struct usbnet *dev = netdev_priv(net);
1010
1011 return dev->msg_enable;
1012}
David Brownell2e55cc72005-08-31 09:53:10 -07001013EXPORT_SYMBOL_GPL(usbnet_get_msglevel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
David Brownell2e55cc72005-08-31 09:53:10 -07001015void usbnet_set_msglevel (struct net_device *net, u32 level)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016{
1017 struct usbnet *dev = netdev_priv(net);
1018
1019 dev->msg_enable = level;
1020}
David Brownell2e55cc72005-08-31 09:53:10 -07001021EXPORT_SYMBOL_GPL(usbnet_set_msglevel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
David Brownell2e55cc72005-08-31 09:53:10 -07001023/* drivers may override default ethtool_ops in their bind() routine */
Stephen Hemminger0fc0b732009-09-02 01:03:33 -07001024static const struct ethtool_ops usbnet_ethtool_ops = {
Arnd Bergmannc41286f2006-10-09 00:08:01 +02001025 .get_settings = usbnet_get_settings,
1026 .set_settings = usbnet_set_settings,
David Brownell2e55cc72005-08-31 09:53:10 -07001027 .get_link = usbnet_get_link,
Arnd Bergmannc41286f2006-10-09 00:08:01 +02001028 .nway_reset = usbnet_nway_reset,
David Brownell18ee91fa2006-11-02 12:29:12 -08001029 .get_drvinfo = usbnet_get_drvinfo,
David Brownell2e55cc72005-08-31 09:53:10 -07001030 .get_msglevel = usbnet_get_msglevel,
1031 .set_msglevel = usbnet_set_msglevel,
Richard Cochran123edb12012-04-03 22:59:41 +00001032 .get_ts_info = ethtool_op_get_ts_info,
David Brownell2e55cc72005-08-31 09:53:10 -07001033};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034
1035/*-------------------------------------------------------------------------*/
1036
Ming Lei4b49f582013-04-11 04:40:40 +00001037static void __handle_link_change(struct usbnet *dev)
1038{
1039 if (!test_bit(EVENT_DEV_OPEN, &dev->flags))
1040 return;
1041
1042 if (!netif_carrier_ok(dev->net)) {
1043 /* kill URBs for reading packets to save bus bandwidth */
1044 unlink_urbs(dev, &dev->rxq);
1045
1046 /*
1047 * tx_timeout will unlink URBs for sending packets and
1048 * tx queue is stopped by netcore after link becomes off
1049 */
1050 } else {
1051 /* submitting URBs for reading packets */
1052 tasklet_schedule(&dev->bh);
1053 }
1054
Ming Leia88c32a2013-07-25 13:47:53 +08001055 /* hard_mtu or rx_urb_size may change during link change */
1056 usbnet_update_max_qlen(dev);
1057
Ming Lei4b49f582013-04-11 04:40:40 +00001058 clear_bit(EVENT_LINK_CHANGE, &dev->flags);
1059}
1060
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061/* work that cannot be done in interrupt context uses keventd.
1062 *
1063 * NOTE: with 2.5 we could do more of this using completion callbacks,
1064 * especially now that control transfers can be queued.
1065 */
1066static void
David Howellsc4028952006-11-22 14:57:56 +00001067kevent (struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068{
David Howellsc4028952006-11-22 14:57:56 +00001069 struct usbnet *dev =
1070 container_of(work, struct usbnet, kevent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 int status;
1072
1073 /* usb_clear_halt() needs a thread context */
1074 if (test_bit (EVENT_TX_HALT, &dev->flags)) {
1075 unlink_urbs (dev, &dev->txq);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001076 status = usb_autopm_get_interface(dev->intf);
1077 if (status < 0)
1078 goto fail_pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 status = usb_clear_halt (dev->udev, dev->out);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001080 usb_autopm_put_interface(dev->intf);
Joe Perches8e95a202009-12-03 07:58:21 +00001081 if (status < 0 &&
1082 status != -EPIPE &&
1083 status != -ESHUTDOWN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 if (netif_msg_tx_err (dev))
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001085fail_pipe:
Joe Perches60b86752010-02-17 10:30:23 +00001086 netdev_err(dev->net, "can't clear tx halt, status %d\n",
1087 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 } else {
1089 clear_bit (EVENT_TX_HALT, &dev->flags);
David Brownellf29fc252005-08-31 09:52:31 -07001090 if (status != -ESHUTDOWN)
1091 netif_wake_queue (dev->net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 }
1093 }
1094 if (test_bit (EVENT_RX_HALT, &dev->flags)) {
1095 unlink_urbs (dev, &dev->rxq);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001096 status = usb_autopm_get_interface(dev->intf);
1097 if (status < 0)
1098 goto fail_halt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 status = usb_clear_halt (dev->udev, dev->in);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001100 usb_autopm_put_interface(dev->intf);
Joe Perches8e95a202009-12-03 07:58:21 +00001101 if (status < 0 &&
1102 status != -EPIPE &&
1103 status != -ESHUTDOWN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 if (netif_msg_rx_err (dev))
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001105fail_halt:
Joe Perches60b86752010-02-17 10:30:23 +00001106 netdev_err(dev->net, "can't clear rx halt, status %d\n",
1107 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 } else {
1109 clear_bit (EVENT_RX_HALT, &dev->flags);
1110 tasklet_schedule (&dev->bh);
1111 }
1112 }
1113
1114 /* tasklet could resubmit itself forever if memory is tight */
1115 if (test_bit (EVENT_RX_MEMORY, &dev->flags)) {
1116 struct urb *urb = NULL;
David S. Millerdacb3972010-08-10 02:50:55 -07001117 int resched = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118
1119 if (netif_running (dev->net))
1120 urb = usb_alloc_urb (0, GFP_KERNEL);
1121 else
1122 clear_bit (EVENT_RX_MEMORY, &dev->flags);
1123 if (urb != NULL) {
1124 clear_bit (EVENT_RX_MEMORY, &dev->flags);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001125 status = usb_autopm_get_interface(dev->intf);
Jesper Juhlab607072011-02-10 10:58:45 +00001126 if (status < 0) {
1127 usb_free_urb(urb);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001128 goto fail_lowmem;
Jesper Juhlab607072011-02-10 10:58:45 +00001129 }
David S. Millerdacb3972010-08-10 02:50:55 -07001130 if (rx_submit (dev, urb, GFP_KERNEL) == -ENOLINK)
1131 resched = 0;
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001132 usb_autopm_put_interface(dev->intf);
1133fail_lowmem:
David S. Millerdacb3972010-08-10 02:50:55 -07001134 if (resched)
1135 tasklet_schedule (&dev->bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 }
1137 }
1138
David Hollis7ea13c92005-04-22 15:07:02 -07001139 if (test_bit (EVENT_LINK_RESET, &dev->flags)) {
David Brownellcb1cebb2007-02-15 18:52:30 -08001140 struct driver_info *info = dev->driver_info;
David Hollis7ea13c92005-04-22 15:07:02 -07001141 int retval = 0;
1142
1143 clear_bit (EVENT_LINK_RESET, &dev->flags);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001144 status = usb_autopm_get_interface(dev->intf);
1145 if (status < 0)
1146 goto skip_reset;
David Hollis7ea13c92005-04-22 15:07:02 -07001147 if(info->link_reset && (retval = info->link_reset(dev)) < 0) {
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001148 usb_autopm_put_interface(dev->intf);
1149skip_reset:
Joe Perches60b86752010-02-17 10:30:23 +00001150 netdev_info(dev->net, "link reset failed (%d) usbnet usb-%s-%s, %s\n",
1151 retval,
1152 dev->udev->bus->bus_name,
1153 dev->udev->devpath,
1154 info->description);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001155 } else {
1156 usb_autopm_put_interface(dev->intf);
David Hollis7ea13c92005-04-22 15:07:02 -07001157 }
Ming Lei4b49f582013-04-11 04:40:40 +00001158
1159 /* handle link change from link resetting */
1160 __handle_link_change(dev);
David Hollis7ea13c92005-04-22 15:07:02 -07001161 }
1162
Ming Lei4b49f582013-04-11 04:40:40 +00001163 if (test_bit (EVENT_LINK_CHANGE, &dev->flags))
1164 __handle_link_change(dev);
1165
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 if (dev->flags)
Joe Perches60b86752010-02-17 10:30:23 +00001167 netdev_dbg(dev->net, "kevent done, flags = 0x%lx\n", dev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168}
1169
1170/*-------------------------------------------------------------------------*/
1171
David Howells7d12e782006-10-05 14:55:46 +01001172static void tx_complete (struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173{
1174 struct sk_buff *skb = (struct sk_buff *) urb->context;
1175 struct skb_data *entry = (struct skb_data *) skb->cb;
1176 struct usbnet *dev = entry->dev;
1177
1178 if (urb->status == 0) {
Alexey Orishko073285f2010-11-29 23:23:27 +00001179 if (!(dev->driver_info->flags & FLAG_MULTI_PACKET))
1180 dev->net->stats.tx_packets++;
Herbert Xu79638372009-06-29 16:53:28 +00001181 dev->net->stats.tx_bytes += entry->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 } else {
Herbert Xu79638372009-06-29 16:53:28 +00001183 dev->net->stats.tx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184
1185 switch (urb->status) {
1186 case -EPIPE:
David Brownell2e55cc72005-08-31 09:53:10 -07001187 usbnet_defer_kevent (dev, EVENT_TX_HALT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 break;
1189
1190 /* software-driven interface shutdown */
1191 case -ECONNRESET: // async unlink
1192 case -ESHUTDOWN: // hardware gone
1193 break;
1194
1195 // like rx, tx gets controller i/o faults during khubd delays
1196 // and so it uses the same throttling mechanism.
Pete Zaitcev38e2bfc2006-09-18 22:49:02 -07001197 case -EPROTO:
1198 case -ETIME:
1199 case -EILSEQ:
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001200 usb_mark_last_busy(dev->udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 if (!timer_pending (&dev->delay)) {
1202 mod_timer (&dev->delay,
1203 jiffies + THROTTLE_JIFFIES);
Joe Perchesa475f602010-02-17 10:30:24 +00001204 netif_dbg(dev, link, dev->net,
1205 "tx throttle %d\n", urb->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 }
1207 netif_stop_queue (dev->net);
1208 break;
1209 default:
Joe Perchesa475f602010-02-17 10:30:24 +00001210 netif_dbg(dev, tx_err, dev->net,
1211 "tx err %d\n", entry->urb->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 break;
1213 }
1214 }
1215
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001216 usb_autopm_put_interface_async(dev->intf);
Ming Lei5b6e9bc2012-04-26 11:33:46 +08001217 (void) defer_bh(dev, skb, &dev->txq, tx_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218}
1219
1220/*-------------------------------------------------------------------------*/
1221
Stephen Hemminger777baa42009-03-20 19:35:54 +00001222void usbnet_tx_timeout (struct net_device *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223{
1224 struct usbnet *dev = netdev_priv(net);
1225
1226 unlink_urbs (dev, &dev->txq);
1227 tasklet_schedule (&dev->bh);
1228
1229 // FIXME: device recovery -- reset?
1230}
Stephen Hemminger777baa42009-03-20 19:35:54 +00001231EXPORT_SYMBOL_GPL(usbnet_tx_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
1233/*-------------------------------------------------------------------------*/
1234
Stephen Hemminger25a79c42009-08-31 19:50:45 +00001235netdev_tx_t usbnet_start_xmit (struct sk_buff *skb,
1236 struct net_device *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237{
1238 struct usbnet *dev = netdev_priv(net);
1239 int length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 struct urb *urb = NULL;
1241 struct skb_data *entry;
1242 struct driver_info *info = dev->driver_info;
1243 unsigned long flags;
Stephen Hemminger25a79c42009-08-31 19:50:45 +00001244 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
Konstantin Khlebnikov23ba0792011-11-07 05:54:58 +00001246 if (skb)
1247 skb_tx_timestamp(skb);
Michael Rieschf9b491e2011-09-29 04:06:26 +00001248
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 // some devices want funky USB-level framing, for
1250 // win32 driver (usually) and/or hardware quirks
1251 if (info->tx_fixup) {
1252 skb = info->tx_fixup (dev, skb, GFP_ATOMIC);
1253 if (!skb) {
Bjørn Morkbf414b32013-01-31 08:36:05 +00001254 /* packet collected; minidriver waiting for more */
1255 if (info->flags & FLAG_MULTI_PACKET)
Alexey Orishko073285f2010-11-29 23:23:27 +00001256 goto not_drop;
Bjørn Morkbf414b32013-01-31 08:36:05 +00001257 netif_dbg(dev, tx_err, dev->net, "can't tx_fixup skb\n");
1258 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 }
1260 }
1261 length = skb->len;
1262
1263 if (!(urb = usb_alloc_urb (0, GFP_ATOMIC))) {
Joe Perchesa475f602010-02-17 10:30:24 +00001264 netif_dbg(dev, tx_err, dev->net, "no urb\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 goto drop;
1266 }
1267
1268 entry = (struct skb_data *) skb->cb;
1269 entry->urb = urb;
1270 entry->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 entry->length = length;
1272
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 usb_fill_bulk_urb (urb, dev->udev, dev->out,
1274 skb->data, skb->len, tx_complete, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
1276 /* don't assume the hardware handles USB_ZERO_PACKET
1277 * NOTE: strictly conforming cdc-ether devices should expect
1278 * the ZLP here, but ignore the one-byte packet.
Alexey Orishko073285f2010-11-29 23:23:27 +00001279 * NOTE2: CDC NCM specification is different from CDC ECM when
1280 * handling ZLP/short packets, so cdc_ncm driver will make short
1281 * packet itself if needed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 */
Elina Pashevab4d562e32010-04-06 14:23:07 +00001283 if (length % dev->maxpacket == 0) {
1284 if (!(info->flags & FLAG_SEND_ZLP)) {
Alexey Orishko073285f2010-11-29 23:23:27 +00001285 if (!(info->flags & FLAG_MULTI_PACKET)) {
1286 urb->transfer_buffer_length++;
1287 if (skb_tailroom(skb)) {
1288 skb->data[skb->len] = 0;
1289 __skb_put(skb, 1);
1290 }
Elina Pashevab4d562e32010-04-06 14:23:07 +00001291 }
1292 } else
1293 urb->transfer_flags |= URB_ZERO_PACKET;
Peter Korsgaard3e323f32007-06-27 08:48:15 +02001294 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001296 spin_lock_irqsave(&dev->txq.lock, flags);
1297 retval = usb_autopm_get_interface_async(dev->intf);
1298 if (retval < 0) {
1299 spin_unlock_irqrestore(&dev->txq.lock, flags);
1300 goto drop;
1301 }
1302
1303#ifdef CONFIG_PM
1304 /* if this triggers the device is still a sleep */
1305 if (test_bit(EVENT_DEV_ASLEEP, &dev->flags)) {
1306 /* transmission will be done in resume */
1307 usb_anchor_urb(urb, &dev->deferred);
1308 /* no use to process more packets */
1309 netif_stop_queue(net);
Hemant Kumar39707c22012-10-25 18:17:54 +00001310 usb_put_urb(urb);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001311 spin_unlock_irqrestore(&dev->txq.lock, flags);
Joe Perches60b86752010-02-17 10:30:23 +00001312 netdev_dbg(dev->net, "Delaying transmission for resumption\n");
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001313 goto deferred;
1314 }
1315#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 switch ((retval = usb_submit_urb (urb, GFP_ATOMIC))) {
1318 case -EPIPE:
1319 netif_stop_queue (net);
David Brownell2e55cc72005-08-31 09:53:10 -07001320 usbnet_defer_kevent (dev, EVENT_TX_HALT);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001321 usb_autopm_put_interface_async(dev->intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 break;
1323 default:
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001324 usb_autopm_put_interface_async(dev->intf);
Joe Perchesa475f602010-02-17 10:30:24 +00001325 netif_dbg(dev, tx_err, dev->net,
1326 "tx: submit urb err %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 break;
1328 case 0:
1329 net->trans_start = jiffies;
Ming Lei5b6e9bc2012-04-26 11:33:46 +08001330 __usbnet_queue_skb(&dev->txq, skb, tx_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 if (dev->txq.qlen >= TX_QLEN (dev))
1332 netif_stop_queue (net);
1333 }
1334 spin_unlock_irqrestore (&dev->txq.lock, flags);
1335
1336 if (retval) {
Joe Perchesa475f602010-02-17 10:30:24 +00001337 netif_dbg(dev, tx_err, dev->net, "drop, code %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338drop:
Herbert Xu79638372009-06-29 16:53:28 +00001339 dev->net->stats.tx_dropped++;
Alexey Orishko073285f2010-11-29 23:23:27 +00001340not_drop:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 if (skb)
1342 dev_kfree_skb_any (skb);
1343 usb_free_urb (urb);
Joe Perchesa475f602010-02-17 10:30:24 +00001344 } else
1345 netif_dbg(dev, tx_queued, dev->net,
1346 "> tx, len %d, type 0x%x\n", length, skb->protocol);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001347#ifdef CONFIG_PM
1348deferred:
1349#endif
Stephen Hemminger25a79c42009-08-31 19:50:45 +00001350 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351}
Stephen Hemminger777baa42009-03-20 19:35:54 +00001352EXPORT_SYMBOL_GPL(usbnet_start_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
Bjørn Mork85e87872012-09-02 22:26:18 +00001354static int rx_alloc_submit(struct usbnet *dev, gfp_t flags)
Ming Lei65841fd2012-06-19 21:15:53 +00001355{
1356 struct urb *urb;
1357 int i;
Bjørn Mork85e87872012-09-02 22:26:18 +00001358 int ret = 0;
Ming Lei65841fd2012-06-19 21:15:53 +00001359
1360 /* don't refill the queue all at once */
1361 for (i = 0; i < 10 && dev->rxq.qlen < RX_QLEN(dev); i++) {
1362 urb = usb_alloc_urb(0, flags);
1363 if (urb != NULL) {
Bjørn Mork85e87872012-09-02 22:26:18 +00001364 ret = rx_submit(dev, urb, flags);
1365 if (ret)
1366 goto err;
1367 } else {
1368 ret = -ENOMEM;
1369 goto err;
Ming Lei65841fd2012-06-19 21:15:53 +00001370 }
1371 }
Bjørn Mork85e87872012-09-02 22:26:18 +00001372err:
1373 return ret;
Ming Lei65841fd2012-06-19 21:15:53 +00001374}
1375
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376/*-------------------------------------------------------------------------*/
1377
1378// tasklet (work deferred from completions, in_irq) or timer
1379
1380static void usbnet_bh (unsigned long param)
1381{
1382 struct usbnet *dev = (struct usbnet *) param;
1383 struct sk_buff *skb;
1384 struct skb_data *entry;
1385
1386 while ((skb = skb_dequeue (&dev->done))) {
1387 entry = (struct skb_data *) skb->cb;
1388 switch (entry->state) {
David Brownell18ab4582007-05-25 12:31:32 -07001389 case rx_done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 entry->state = rx_cleanup;
1391 rx_process (dev, skb);
1392 continue;
David Brownell18ab4582007-05-25 12:31:32 -07001393 case tx_done:
1394 case rx_cleanup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 usb_free_urb (entry->urb);
1396 dev_kfree_skb (skb);
1397 continue;
David Brownell18ab4582007-05-25 12:31:32 -07001398 default:
Joe Perches60b86752010-02-17 10:30:23 +00001399 netdev_dbg(dev->net, "bogus skb state %d\n", entry->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 }
1401 }
1402
Bjørn Mork70c37bf2013-01-28 23:51:28 +00001403 /* restart RX again after disabling due to high error rate */
1404 clear_bit(EVENT_RX_KILL, &dev->flags);
1405
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 // waiting for all pending urbs to complete?
1407 if (dev->wait) {
1408 if ((dev->txq.qlen + dev->rxq.qlen + dev->done.qlen) == 0) {
1409 wake_up (dev->wait);
1410 }
1411
1412 // or are we maybe short a few urbs?
Joe Perches8e95a202009-12-03 07:58:21 +00001413 } else if (netif_running (dev->net) &&
1414 netif_device_present (dev->net) &&
Ming Lei4b49f582013-04-11 04:40:40 +00001415 netif_carrier_ok(dev->net) &&
Joe Perches8e95a202009-12-03 07:58:21 +00001416 !timer_pending (&dev->delay) &&
1417 !test_bit (EVENT_RX_HALT, &dev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 int temp = dev->rxq.qlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419
Ming Lei65841fd2012-06-19 21:15:53 +00001420 if (temp < RX_QLEN(dev)) {
Bjørn Mork85e87872012-09-02 22:26:18 +00001421 if (rx_alloc_submit(dev, GFP_ATOMIC) == -ENOLINK)
1422 return;
Joe Perchesa475f602010-02-17 10:30:24 +00001423 if (temp != dev->rxq.qlen)
1424 netif_dbg(dev, link, dev->net,
1425 "rxqlen %d --> %d\n",
1426 temp, dev->rxq.qlen);
Ming Lei65841fd2012-06-19 21:15:53 +00001427 if (dev->rxq.qlen < RX_QLEN(dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 tasklet_schedule (&dev->bh);
1429 }
1430 if (dev->txq.qlen < TX_QLEN (dev))
1431 netif_wake_queue (dev->net);
1432 }
1433}
1434
1435
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436/*-------------------------------------------------------------------------
1437 *
1438 * USB Device Driver support
1439 *
1440 *-------------------------------------------------------------------------*/
David Brownellcb1cebb2007-02-15 18:52:30 -08001441
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442// precondition: never called in_interrupt
1443
David Brownell38bde1d2005-08-31 09:52:45 -07001444void usbnet_disconnect (struct usb_interface *intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445{
1446 struct usbnet *dev;
1447 struct usb_device *xdev;
1448 struct net_device *net;
1449
1450 dev = usb_get_intfdata(intf);
1451 usb_set_intfdata(intf, NULL);
1452 if (!dev)
1453 return;
1454
1455 xdev = interface_to_usbdev (intf);
1456
Joe Perchesa475f602010-02-17 10:30:24 +00001457 netif_info(dev, probe, dev->net, "unregister '%s' usb-%s-%s, %s\n",
1458 intf->dev.driver->name,
1459 xdev->bus->bus_name, xdev->devpath,
1460 dev->driver_info->description);
David Brownellcb1cebb2007-02-15 18:52:30 -08001461
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 net = dev->net;
1463 unregister_netdev (net);
1464
Tejun Heo23f333a2010-12-12 16:45:14 +01001465 cancel_work_sync(&dev->kevent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466
Hemant Kumar39707c22012-10-25 18:17:54 +00001467 usb_scuttle_anchored_urbs(&dev->deferred);
1468
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 if (dev->driver_info->unbind)
1470 dev->driver_info->unbind (dev, intf);
1471
Paul Stewart68972ef2011-04-28 05:43:37 +00001472 usb_kill_urb(dev->interrupt);
1473 usb_free_urb(dev->interrupt);
1474
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 free_netdev(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476}
David Brownell38bde1d2005-08-31 09:52:45 -07001477EXPORT_SYMBOL_GPL(usbnet_disconnect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478
Stephen Hemminger777baa42009-03-20 19:35:54 +00001479static const struct net_device_ops usbnet_netdev_ops = {
1480 .ndo_open = usbnet_open,
1481 .ndo_stop = usbnet_stop,
1482 .ndo_start_xmit = usbnet_start_xmit,
1483 .ndo_tx_timeout = usbnet_tx_timeout,
1484 .ndo_change_mtu = usbnet_change_mtu,
1485 .ndo_set_mac_address = eth_mac_addr,
1486 .ndo_validate_addr = eth_validate_addr,
1487};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488
1489/*-------------------------------------------------------------------------*/
1490
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491// precondition: never called in_interrupt
1492
Marcel Holtmann225794f2009-10-02 05:15:26 +00001493static struct device_type wlan_type = {
1494 .name = "wlan",
1495};
1496
1497static struct device_type wwan_type = {
1498 .name = "wwan",
1499};
1500
David Brownell38bde1d2005-08-31 09:52:45 -07001501int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502usbnet_probe (struct usb_interface *udev, const struct usb_device_id *prod)
1503{
1504 struct usbnet *dev;
David Brownellcb1cebb2007-02-15 18:52:30 -08001505 struct net_device *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 struct usb_host_interface *interface;
1507 struct driver_info *info;
1508 struct usb_device *xdev;
1509 int status;
David Brownell296c0242007-04-17 16:10:10 -07001510 const char *name;
Ming Leib0786b42010-11-01 07:11:54 -07001511 struct usb_driver *driver = to_usb_driver(udev->dev.driver);
1512
1513 /* usbnet already took usb runtime pm, so have to enable the feature
1514 * for usb interface, otherwise usb_autopm_get_interface may return
Alan Stern98f541c2013-05-01 12:13:54 -04001515 * failure if RUNTIME_PM is enabled.
Ming Leib0786b42010-11-01 07:11:54 -07001516 */
1517 if (!driver->supports_autosuspend) {
1518 driver->supports_autosuspend = 1;
1519 pm_runtime_enable(&udev->dev);
1520 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521
David Brownell296c0242007-04-17 16:10:10 -07001522 name = udev->dev.driver->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 info = (struct driver_info *) prod->driver_info;
1524 if (!info) {
David Brownell296c0242007-04-17 16:10:10 -07001525 dev_dbg (&udev->dev, "blacklisted by %s\n", name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 return -ENODEV;
1527 }
1528 xdev = interface_to_usbdev (udev);
1529 interface = udev->cur_altsetting;
1530
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 status = -ENOMEM;
1532
1533 // set up our own records
1534 net = alloc_etherdev(sizeof(*dev));
Joe Perches41de8d42012-01-29 13:47:52 +00001535 if (!net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537
Ben Hutchings0dacca72010-07-02 21:49:02 -07001538 /* netdev_printk() needs this so do it as early as possible */
1539 SET_NETDEV_DEV(net, &udev->dev);
1540
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 dev = netdev_priv(net);
1542 dev->udev = xdev;
Oliver Neukuma11a6542007-08-03 13:52:19 +02001543 dev->intf = udev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 dev->driver_info = info;
David Brownell296c0242007-04-17 16:10:10 -07001545 dev->driver_name = name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 dev->msg_enable = netif_msg_init (msg_level, NETIF_MSG_DRV
1547 | NETIF_MSG_PROBE | NETIF_MSG_LINK);
1548 skb_queue_head_init (&dev->rxq);
1549 skb_queue_head_init (&dev->txq);
1550 skb_queue_head_init (&dev->done);
Jussi Kivilinna7834ddb2009-08-11 22:57:16 +03001551 skb_queue_head_init(&dev->rxq_pause);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 dev->bh.func = usbnet_bh;
1553 dev->bh.data = (unsigned long) dev;
David Howellsc4028952006-11-22 14:57:56 +00001554 INIT_WORK (&dev->kevent, kevent);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001555 init_usb_anchor(&dev->deferred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 dev->delay.function = usbnet_bh;
1557 dev->delay.data = (unsigned long) dev;
1558 init_timer (&dev->delay);
Arnd Bergmanna9fc6332006-10-09 00:08:02 +02001559 mutex_init (&dev->phy_mutex);
Dan Williams6eecdc52013-05-06 11:29:23 +00001560 mutex_init(&dev->interrupt_mutex);
1561 dev->interrupt_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 dev->net = net;
1564 strcpy (net->name, "usb%d");
1565 memcpy (net->dev_addr, node_id, sizeof node_id);
1566
David Brownell2e55cc72005-08-31 09:53:10 -07001567 /* rx and tx sides can use different message sizes;
1568 * bind() should set rx_urb_size in that case.
1569 */
1570 dev->hard_mtu = net->mtu + net->hard_header_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571#if 0
1572// dma_supported() is deeply broken on almost all architectures
1573 // possible with some EHCI controllers
Yang Hongyang6a355282009-04-06 19:01:13 -07001574 if (dma_supported (&udev->dev, DMA_BIT_MASK(64)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 net->features |= NETIF_F_HIGHDMA;
1576#endif
1577
Stephen Hemminger777baa42009-03-20 19:35:54 +00001578 net->netdev_ops = &usbnet_netdev_ops;
Stephen Hemminger777baa42009-03-20 19:35:54 +00001579 net->watchdog_timeo = TX_TIMEOUT_JIFFIES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 net->ethtool_ops = &usbnet_ethtool_ops;
1581
1582 // allow device-specific bind/init procedures
1583 // NOTE net->name still not usable ...
1584 if (info->bind) {
1585 status = info->bind (dev, udev);
David Brownellcb1cebb2007-02-15 18:52:30 -08001586 if (status < 0)
1587 goto out1;
1588
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 // heuristic: "usb%d" for links we know are two-host,
1590 // else "eth%d" when there's reasonable doubt. userspace
1591 // can rename the link if it knows better.
Joe Perches8e95a202009-12-03 07:58:21 +00001592 if ((dev->driver_info->flags & FLAG_ETHER) != 0 &&
Arnd Bergmannc2613442011-04-01 20:12:02 -07001593 ((dev->driver_info->flags & FLAG_POINTTOPOINT) == 0 ||
1594 (net->dev_addr [0] & 0x02) == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 strcpy (net->name, "eth%d");
Jussi Kivilinna6e3bbcc2008-01-26 00:51:06 +02001596 /* WLAN devices should always be named "wlan%d" */
1597 if ((dev->driver_info->flags & FLAG_WLAN) != 0)
1598 strcpy(net->name, "wlan%d");
Marcel Holtmanne1e499e2009-10-02 05:15:25 +00001599 /* WWAN devices should always be named "wwan%d" */
1600 if ((dev->driver_info->flags & FLAG_WWAN) != 0)
1601 strcpy(net->name, "wwan%d");
David Brownellf29fc252005-08-31 09:52:31 -07001602
Wei Shuai65091412013-01-21 06:00:31 +00001603 /* devices that cannot do ARP */
1604 if ((dev->driver_info->flags & FLAG_NOARP) != 0)
1605 net->flags |= IFF_NOARP;
1606
David Brownellf29fc252005-08-31 09:52:31 -07001607 /* maybe the remote can't receive an Ethernet MTU */
1608 if (net->mtu > (dev->hard_mtu - net->hard_header_len))
1609 net->mtu = dev->hard_mtu - net->hard_header_len;
David Brownell2e55cc72005-08-31 09:53:10 -07001610 } else if (!info->in || !info->out)
1611 status = usbnet_get_endpoints (dev, udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 else {
1613 dev->in = usb_rcvbulkpipe (xdev, info->in);
1614 dev->out = usb_sndbulkpipe (xdev, info->out);
1615 if (!(info->flags & FLAG_NO_SETINT))
1616 status = usb_set_interface (xdev,
1617 interface->desc.bInterfaceNumber,
1618 interface->desc.bAlternateSetting);
1619 else
1620 status = 0;
1621
1622 }
Peter Korsgaard9514bfe2007-07-03 00:46:42 +02001623 if (status >= 0 && dev->status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 status = init_status (dev, udev);
1625 if (status < 0)
David Brownellcb1cebb2007-02-15 18:52:30 -08001626 goto out3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627
David Brownell2e55cc72005-08-31 09:53:10 -07001628 if (!dev->rx_urb_size)
1629 dev->rx_urb_size = dev->hard_mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 dev->maxpacket = usb_maxpacket (dev->udev, dev->out, 1);
David Brownellcb1cebb2007-02-15 18:52:30 -08001631
Bjørn Morkeef23b52013-09-04 09:42:32 +02001632 /* let userspace know we have a random address */
1633 if (ether_addr_equal(net->dev_addr, node_id))
1634 net->addr_assign_type = NET_ADDR_RANDOM;
1635
Marcel Holtmann225794f2009-10-02 05:15:26 +00001636 if ((dev->driver_info->flags & FLAG_WLAN) != 0)
1637 SET_NETDEV_DEVTYPE(net, &wlan_type);
1638 if ((dev->driver_info->flags & FLAG_WWAN) != 0)
1639 SET_NETDEV_DEVTYPE(net, &wwan_type);
1640
Ming Leia88c32a2013-07-25 13:47:53 +08001641 /* initialize max rx_qlen and tx_qlen */
1642 usbnet_update_max_qlen(dev);
1643
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 status = register_netdev (net);
1645 if (status)
tom.leiming@gmail.coma4723842012-04-29 22:51:03 +00001646 goto out4;
Joe Perchesa475f602010-02-17 10:30:24 +00001647 netif_info(dev, probe, dev->net,
1648 "register '%s' at usb-%s-%s, %s, %pM\n",
1649 udev->dev.driver->name,
1650 xdev->bus->bus_name, xdev->devpath,
1651 dev->driver_info->description,
1652 net->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653
1654 // ok, it's ready to go.
1655 usb_set_intfdata (udev, dev);
1656
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 netif_device_attach (net);
1658
Ben Hutchings37e82732009-11-04 15:29:52 +00001659 if (dev->driver_info->flags & FLAG_LINK_INTR)
Ming Lei0162c552013-04-11 04:40:39 +00001660 usbnet_link_change(dev, 0, 0);
Ben Hutchings37e82732009-11-04 15:29:52 +00001661
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 return 0;
1663
tom.leiming@gmail.coma4723842012-04-29 22:51:03 +00001664out4:
1665 usb_free_urb(dev->interrupt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666out3:
1667 if (info->unbind)
1668 info->unbind (dev, udev);
1669out1:
1670 free_netdev(net);
1671out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 return status;
1673}
David Brownell38bde1d2005-08-31 09:52:45 -07001674EXPORT_SYMBOL_GPL(usbnet_probe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675
1676/*-------------------------------------------------------------------------*/
1677
Oliver Neukum36433122007-04-30 01:37:44 -07001678/*
1679 * suspend the whole driver as soon as the first interface is suspended
1680 * resume only when the last interface is resumed
David Brownell38bde1d2005-08-31 09:52:45 -07001681 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682
David Brownell38bde1d2005-08-31 09:52:45 -07001683int usbnet_suspend (struct usb_interface *intf, pm_message_t message)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684{
1685 struct usbnet *dev = usb_get_intfdata(intf);
David Brownellcb1cebb2007-02-15 18:52:30 -08001686
Oliver Neukum36433122007-04-30 01:37:44 -07001687 if (!dev->suspend_count++) {
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001688 spin_lock_irq(&dev->txq.lock);
1689 /* don't autosuspend while transmitting */
Alan Stern5b1b0b82011-08-19 23:49:48 +02001690 if (dev->txq.qlen && PMSG_IS_AUTO(message)) {
Ming Lei5eeb3132012-06-19 21:15:52 +00001691 dev->suspend_count--;
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001692 spin_unlock_irq(&dev->txq.lock);
1693 return -EBUSY;
1694 } else {
1695 set_bit(EVENT_DEV_ASLEEP, &dev->flags);
1696 spin_unlock_irq(&dev->txq.lock);
1697 }
Oliver Neukuma11a6542007-08-03 13:52:19 +02001698 /*
1699 * accelerate emptying of the rx and queues, to avoid
Oliver Neukum36433122007-04-30 01:37:44 -07001700 * having everything error out.
1701 */
1702 netif_device_detach (dev->net);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001703 usbnet_terminate_urbs(dev);
Dan Williams6eecdc52013-05-06 11:29:23 +00001704 __usbnet_status_stop_force(dev);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001705
Oliver Neukuma11a6542007-08-03 13:52:19 +02001706 /*
1707 * reattach so runtime management can use and
1708 * wake the device
1709 */
1710 netif_device_attach (dev->net);
Oliver Neukum36433122007-04-30 01:37:44 -07001711 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 return 0;
1713}
David Brownell38bde1d2005-08-31 09:52:45 -07001714EXPORT_SYMBOL_GPL(usbnet_suspend);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715
David Brownell38bde1d2005-08-31 09:52:45 -07001716int usbnet_resume (struct usb_interface *intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717{
1718 struct usbnet *dev = usb_get_intfdata(intf);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001719 struct sk_buff *skb;
1720 struct urb *res;
1721 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001723 if (!--dev->suspend_count) {
Dan Williams6eecdc52013-05-06 11:29:23 +00001724 /* resume interrupt URB if it was previously submitted */
1725 __usbnet_status_start_force(dev, GFP_NOIO);
Paul Stewart68972ef2011-04-28 05:43:37 +00001726
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001727 spin_lock_irq(&dev->txq.lock);
1728 while ((res = usb_get_from_anchor(&dev->deferred))) {
1729
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001730 skb = (struct sk_buff *)res->context;
1731 retval = usb_submit_urb(res, GFP_ATOMIC);
1732 if (retval < 0) {
1733 dev_kfree_skb_any(skb);
1734 usb_free_urb(res);
1735 usb_autopm_put_interface_async(dev->intf);
1736 } else {
1737 dev->net->trans_start = jiffies;
1738 __skb_queue_tail(&dev->txq, skb);
1739 }
1740 }
1741
1742 smp_mb();
1743 clear_bit(EVENT_DEV_ASLEEP, &dev->flags);
1744 spin_unlock_irq(&dev->txq.lock);
Ming Lei75bd0cb2011-04-28 22:37:09 +00001745
1746 if (test_bit(EVENT_DEV_OPEN, &dev->flags)) {
Ming Lei65841fd2012-06-19 21:15:53 +00001747 /* handle remote wakeup ASAP */
1748 if (!dev->wait &&
1749 netif_device_present(dev->net) &&
1750 !timer_pending(&dev->delay) &&
1751 !test_bit(EVENT_RX_HALT, &dev->flags))
Oliver Neukumab6f1482012-08-26 20:41:38 +00001752 rx_alloc_submit(dev, GFP_NOIO);
Ming Lei65841fd2012-06-19 21:15:53 +00001753
Ming Lei75bd0cb2011-04-28 22:37:09 +00001754 if (!(dev->txq.qlen >= TX_QLEN(dev)))
Alexey Orishko1aa9bc52012-03-14 04:00:24 +00001755 netif_tx_wake_all_queues(dev->net);
Ming Lei75bd0cb2011-04-28 22:37:09 +00001756 tasklet_schedule (&dev->bh);
1757 }
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001758 }
Oliver Neukum5d9d01a2012-10-11 02:50:10 +00001759
1760 if (test_and_clear_bit(EVENT_DEVICE_REPORT_IDLE, &dev->flags))
1761 usb_autopm_get_interface_no_resume(intf);
1762
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 return 0;
1764}
David Brownell38bde1d2005-08-31 09:52:45 -07001765EXPORT_SYMBOL_GPL(usbnet_resume);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766
Oliver Neukum5d9d01a2012-10-11 02:50:10 +00001767/*
1768 * Either a subdriver implements manage_power, then it is assumed to always
1769 * be ready to be suspended or it reports the readiness to be suspended
1770 * explicitly
1771 */
1772void usbnet_device_suggests_idle(struct usbnet *dev)
1773{
1774 if (!test_and_set_bit(EVENT_DEVICE_REPORT_IDLE, &dev->flags)) {
1775 dev->intf->needs_remote_wakeup = 1;
1776 usb_autopm_put_interface_async(dev->intf);
1777 }
1778}
1779EXPORT_SYMBOL(usbnet_device_suggests_idle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780
Oliver Neukum2dd7c8c2012-12-18 04:45:52 +00001781/*
1782 * For devices that can do without special commands
1783 */
1784int usbnet_manage_power(struct usbnet *dev, int on)
1785{
1786 dev->intf->needs_remote_wakeup = on;
1787 return 0;
1788}
1789EXPORT_SYMBOL(usbnet_manage_power);
1790
Ming Leiac649952013-04-11 04:40:30 +00001791void usbnet_link_change(struct usbnet *dev, bool link, bool need_reset)
1792{
1793 /* update link after link is reseted */
1794 if (link && !need_reset)
1795 netif_carrier_on(dev->net);
1796 else
1797 netif_carrier_off(dev->net);
1798
1799 if (need_reset && link)
1800 usbnet_defer_kevent(dev, EVENT_LINK_RESET);
Ming Lei4b49f582013-04-11 04:40:40 +00001801 else
1802 usbnet_defer_kevent(dev, EVENT_LINK_CHANGE);
Ming Leiac649952013-04-11 04:40:30 +00001803}
1804EXPORT_SYMBOL(usbnet_link_change);
1805
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806/*-------------------------------------------------------------------------*/
Ming Lei0547fad2012-11-06 04:53:04 +00001807static int __usbnet_read_cmd(struct usbnet *dev, u8 cmd, u8 reqtype,
1808 u16 value, u16 index, void *data, u16 size)
Ming Lei877bd862012-10-24 19:46:54 +00001809{
1810 void *buf = NULL;
1811 int err = -ENOMEM;
1812
1813 netdev_dbg(dev->net, "usbnet_read_cmd cmd=0x%02x reqtype=%02x"
1814 " value=0x%04x index=0x%04x size=%d\n",
1815 cmd, reqtype, value, index, size);
1816
1817 if (data) {
1818 buf = kmalloc(size, GFP_KERNEL);
1819 if (!buf)
1820 goto out;
1821 }
1822
1823 err = usb_control_msg(dev->udev, usb_rcvctrlpipe(dev->udev, 0),
1824 cmd, reqtype, value, index, buf, size,
1825 USB_CTRL_GET_TIMEOUT);
1826 if (err > 0 && err <= size)
1827 memcpy(data, buf, err);
1828 kfree(buf);
1829out:
1830 return err;
1831}
Ming Lei877bd862012-10-24 19:46:54 +00001832
Ming Lei0547fad2012-11-06 04:53:04 +00001833static int __usbnet_write_cmd(struct usbnet *dev, u8 cmd, u8 reqtype,
1834 u16 value, u16 index, const void *data,
1835 u16 size)
Ming Lei877bd862012-10-24 19:46:54 +00001836{
1837 void *buf = NULL;
1838 int err = -ENOMEM;
1839
1840 netdev_dbg(dev->net, "usbnet_write_cmd cmd=0x%02x reqtype=%02x"
1841 " value=0x%04x index=0x%04x size=%d\n",
1842 cmd, reqtype, value, index, size);
1843
1844 if (data) {
1845 buf = kmemdup(data, size, GFP_KERNEL);
1846 if (!buf)
1847 goto out;
1848 }
1849
1850 err = usb_control_msg(dev->udev, usb_sndctrlpipe(dev->udev, 0),
1851 cmd, reqtype, value, index, buf, size,
1852 USB_CTRL_SET_TIMEOUT);
1853 kfree(buf);
1854
1855out:
1856 return err;
1857}
Ming Lei0547fad2012-11-06 04:53:04 +00001858
1859/*
1860 * The function can't be called inside suspend/resume callback,
1861 * otherwise deadlock will be caused.
1862 */
1863int usbnet_read_cmd(struct usbnet *dev, u8 cmd, u8 reqtype,
1864 u16 value, u16 index, void *data, u16 size)
1865{
Ming Lei6f0a0982012-11-06 04:53:08 +00001866 int ret;
1867
1868 if (usb_autopm_get_interface(dev->intf) < 0)
1869 return -ENODEV;
1870 ret = __usbnet_read_cmd(dev, cmd, reqtype, value, index,
1871 data, size);
1872 usb_autopm_put_interface(dev->intf);
1873 return ret;
Ming Lei0547fad2012-11-06 04:53:04 +00001874}
1875EXPORT_SYMBOL_GPL(usbnet_read_cmd);
1876
1877/*
1878 * The function can't be called inside suspend/resume callback,
1879 * otherwise deadlock will be caused.
1880 */
1881int usbnet_write_cmd(struct usbnet *dev, u8 cmd, u8 reqtype,
1882 u16 value, u16 index, const void *data, u16 size)
1883{
Ming Lei6f0a0982012-11-06 04:53:08 +00001884 int ret;
1885
1886 if (usb_autopm_get_interface(dev->intf) < 0)
1887 return -ENODEV;
1888 ret = __usbnet_write_cmd(dev, cmd, reqtype, value, index,
1889 data, size);
1890 usb_autopm_put_interface(dev->intf);
1891 return ret;
Ming Lei0547fad2012-11-06 04:53:04 +00001892}
Ming Lei877bd862012-10-24 19:46:54 +00001893EXPORT_SYMBOL_GPL(usbnet_write_cmd);
1894
Ming Lei0547fad2012-11-06 04:53:04 +00001895/*
1896 * The function can be called inside suspend/resume callback safely
1897 * and should only be called by suspend/resume callback generally.
1898 */
1899int usbnet_read_cmd_nopm(struct usbnet *dev, u8 cmd, u8 reqtype,
1900 u16 value, u16 index, void *data, u16 size)
1901{
1902 return __usbnet_read_cmd(dev, cmd, reqtype, value, index,
1903 data, size);
1904}
1905EXPORT_SYMBOL_GPL(usbnet_read_cmd_nopm);
1906
1907/*
1908 * The function can be called inside suspend/resume callback safely
1909 * and should only be called by suspend/resume callback generally.
1910 */
1911int usbnet_write_cmd_nopm(struct usbnet *dev, u8 cmd, u8 reqtype,
1912 u16 value, u16 index, const void *data,
1913 u16 size)
1914{
1915 return __usbnet_write_cmd(dev, cmd, reqtype, value, index,
1916 data, size);
1917}
1918EXPORT_SYMBOL_GPL(usbnet_write_cmd_nopm);
1919
Ming Lei877bd862012-10-24 19:46:54 +00001920static void usbnet_async_cmd_cb(struct urb *urb)
1921{
1922 struct usb_ctrlrequest *req = (struct usb_ctrlrequest *)urb->context;
1923 int status = urb->status;
1924
1925 if (status < 0)
1926 dev_dbg(&urb->dev->dev, "%s failed with %d",
1927 __func__, status);
1928
1929 kfree(req);
1930 usb_free_urb(urb);
1931}
1932
Ming Lei0547fad2012-11-06 04:53:04 +00001933/*
1934 * The caller must make sure that device can't be put into suspend
1935 * state until the control URB completes.
1936 */
Ming Lei877bd862012-10-24 19:46:54 +00001937int usbnet_write_cmd_async(struct usbnet *dev, u8 cmd, u8 reqtype,
1938 u16 value, u16 index, const void *data, u16 size)
1939{
1940 struct usb_ctrlrequest *req = NULL;
1941 struct urb *urb;
1942 int err = -ENOMEM;
1943 void *buf = NULL;
1944
1945 netdev_dbg(dev->net, "usbnet_write_cmd cmd=0x%02x reqtype=%02x"
1946 " value=0x%04x index=0x%04x size=%d\n",
1947 cmd, reqtype, value, index, size);
1948
1949 urb = usb_alloc_urb(0, GFP_ATOMIC);
1950 if (!urb) {
1951 netdev_err(dev->net, "Error allocating URB in"
1952 " %s!\n", __func__);
1953 goto fail;
1954 }
1955
1956 if (data) {
1957 buf = kmemdup(data, size, GFP_ATOMIC);
1958 if (!buf) {
1959 netdev_err(dev->net, "Error allocating buffer"
1960 " in %s!\n", __func__);
1961 goto fail_free;
1962 }
1963 }
1964
1965 req = kmalloc(sizeof(struct usb_ctrlrequest), GFP_ATOMIC);
Joe Perches38673c82013-02-03 17:28:11 +00001966 if (!req)
Ming Lei877bd862012-10-24 19:46:54 +00001967 goto fail_free_buf;
Ming Lei877bd862012-10-24 19:46:54 +00001968
1969 req->bRequestType = reqtype;
1970 req->bRequest = cmd;
1971 req->wValue = cpu_to_le16(value);
1972 req->wIndex = cpu_to_le16(index);
1973 req->wLength = cpu_to_le16(size);
1974
1975 usb_fill_control_urb(urb, dev->udev,
1976 usb_sndctrlpipe(dev->udev, 0),
1977 (void *)req, buf, size,
1978 usbnet_async_cmd_cb, req);
1979 urb->transfer_flags |= URB_FREE_BUFFER;
1980
1981 err = usb_submit_urb(urb, GFP_ATOMIC);
1982 if (err < 0) {
1983 netdev_err(dev->net, "Error submitting the control"
1984 " message: status=%d\n", err);
1985 goto fail_free;
1986 }
1987 return 0;
1988
1989fail_free_buf:
1990 kfree(buf);
1991fail_free:
1992 kfree(req);
1993 usb_free_urb(urb);
1994fail:
1995 return err;
1996
1997}
1998EXPORT_SYMBOL_GPL(usbnet_write_cmd_async);
1999/*-------------------------------------------------------------------------*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000
David Brownellf29fc252005-08-31 09:52:31 -07002001static int __init usbnet_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002{
Thiago Farinac582a952011-04-17 17:49:21 -07002003 /* Compiler should optimize this out. */
2004 BUILD_BUG_ON(
2005 FIELD_SIZEOF(struct sk_buff, cb) < sizeof(struct skb_data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006
Joe Perchesc7e12ea2012-07-12 19:33:07 +00002007 eth_random_addr(node_id);
David Brownellcb1cebb2007-02-15 18:52:30 -08002008 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009}
David Brownellf29fc252005-08-31 09:52:31 -07002010module_init(usbnet_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011
David Brownellf29fc252005-08-31 09:52:31 -07002012static void __exit usbnet_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014}
David Brownellf29fc252005-08-31 09:52:31 -07002015module_exit(usbnet_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016
David Brownellf29fc252005-08-31 09:52:31 -07002017MODULE_AUTHOR("David Brownell");
David Brownell090ffa92005-08-31 09:54:50 -07002018MODULE_DESCRIPTION("USB network driver framework");
David Brownellf29fc252005-08-31 09:52:31 -07002019MODULE_LICENSE("GPL");