blob: 6510e5cc1817cf560c1e4cd6fe5791f8f4b48bc5 [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
Jeff Kirsher9cb00072013-12-06 06:28:46 -080017 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 */
19
20/*
21 * This is a generic "USB networking" framework that works with several
David Brownell090ffa92005-08-31 09:54:50 -070022 * kinds of full and high speed networking devices: host-to-host cables,
23 * smart usb peripherals, and actual Ethernet adapters.
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 *
David Brownell090ffa92005-08-31 09:54:50 -070025 * 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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32// #define DEBUG // error path messages, extra info
33// #define VERBOSE // more; success messages
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/init.h>
37#include <linux/netdevice.h>
38#include <linux/etherdevice.h>
Peter Holik03ad0322009-04-18 07:24:17 +000039#include <linux/ctype.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/ethtool.h>
41#include <linux/workqueue.h>
42#include <linux/mii.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/usb.h>
Jussi Kivilinna3692e942008-01-26 00:51:45 +020044#include <linux/usb/usbnet.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090045#include <linux/slab.h>
Andy Shevchenkofd1f1702010-07-23 03:18:08 +000046#include <linux/kernel.h>
Ming Leib0786b42010-11-01 07:11:54 -070047#include <linux/pm_runtime.h>
David Brownellf29fc252005-08-31 09:52:31 -070048
49#define DRIVER_VERSION "22-Aug-2005"
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
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).
David Brownellf29fc252005-08-31 09:52:31 -070060 *
Ming Leia88c32a2013-07-25 13:47:53 +080061 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 */
Ming Leia88c32a2013-07-25 13:47:53 +080065#define MAX_QUEUE_MEMORY (60 * 1518)
66#define RX_QLEN(dev) ((dev)->rx_qlen)
67#define TX_QLEN(dev) ((dev)->tx_qlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Linus Torvalds1da177e2005-04-16 15:20:36 -070069// reawaken network queue this soon after stopping; else watchdog barks
70#define TX_TIMEOUT_JIFFIES (5*HZ)
71
Petr Mladek37ebb542014-09-19 17:32:23 +020072/* 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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070075#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 -070085/* use ethtool to change the level for any given device */
86static int msg_level = -1;
87module_param (msg_level, int, 0);
88MODULE_PARM_DESC (msg_level, "Override default message level");
89
Linus Torvalds1da177e2005-04-16 15:20:36 -070090/*-------------------------------------------------------------------------*/
91
Linus Torvalds1da177e2005-04-16 15:20:36 -070092/* handles CDC Ethernet and many other network "bulk data" interfaces */
David Brownell2e55cc72005-08-31 09:53:10 -070093int usbnet_get_endpoints(struct usbnet *dev, struct usb_interface *intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094{
95 int tmp;
96 struct usb_host_interface *alt = NULL;
97 struct usb_host_endpoint *in = NULL, *out = NULL;
98 struct usb_host_endpoint *status = NULL;
99
100 for (tmp = 0; tmp < intf->num_altsetting; tmp++) {
101 unsigned ep;
102
103 in = out = status = NULL;
104 alt = intf->altsetting + tmp;
105
106 /* take the first altsetting with in-bulk + out-bulk;
107 * remember any status endpoint, just in case;
Justin P. Mattock70f23fd2011-05-10 10:16:21 +0200108 * ignore other endpoints and altsettings.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 */
110 for (ep = 0; ep < alt->desc.bNumEndpoints; ep++) {
111 struct usb_host_endpoint *e;
112 int intr = 0;
113
114 e = alt->endpoint + ep;
115 switch (e->desc.bmAttributes) {
116 case USB_ENDPOINT_XFER_INT:
Luiz Fernando N. Capitulinofc6e2542006-10-26 13:03:01 -0300117 if (!usb_endpoint_dir_in(&e->desc))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 continue;
119 intr = 1;
120 /* FALLTHROUGH */
121 case USB_ENDPOINT_XFER_BULK:
122 break;
123 default:
124 continue;
125 }
Luiz Fernando N. Capitulinofc6e2542006-10-26 13:03:01 -0300126 if (usb_endpoint_dir_in(&e->desc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 if (!intr && !in)
128 in = e;
129 else if (intr && !status)
130 status = e;
131 } else {
132 if (!out)
133 out = e;
134 }
135 }
136 if (in && out)
137 break;
138 }
139 if (!alt || !in || !out)
140 return -EINVAL;
141
Joe Perches8e95a202009-12-03 07:58:21 +0000142 if (alt->desc.bAlternateSetting != 0 ||
143 !(dev->driver_info->flags & FLAG_NO_SETINT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 tmp = usb_set_interface (dev->udev, alt->desc.bInterfaceNumber,
145 alt->desc.bAlternateSetting);
146 if (tmp < 0)
147 return tmp;
148 }
David Brownellcb1cebb2007-02-15 18:52:30 -0800149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 dev->in = usb_rcvbulkpipe (dev->udev,
151 in->desc.bEndpointAddress & USB_ENDPOINT_NUMBER_MASK);
152 dev->out = usb_sndbulkpipe (dev->udev,
153 out->desc.bEndpointAddress & USB_ENDPOINT_NUMBER_MASK);
154 dev->status = status;
155 return 0;
156}
David Brownell2e55cc72005-08-31 09:53:10 -0700157EXPORT_SYMBOL_GPL(usbnet_get_endpoints);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Peter Holik03ad0322009-04-18 07:24:17 +0000159int usbnet_get_ethernet_addr(struct usbnet *dev, int iMACAddress)
160{
Andy Shevchenko51487ae2015-01-22 23:27:12 +0200161 int tmp = -1, ret;
Peter Holik03ad0322009-04-18 07:24:17 +0000162 unsigned char buf [13];
163
Andy Shevchenko51487ae2015-01-22 23:27:12 +0200164 ret = usb_string(dev->udev, iMACAddress, buf, sizeof buf);
165 if (ret == 12)
166 tmp = hex2bin(dev->net->dev_addr, buf, 6);
167 if (tmp < 0) {
Peter Holik03ad0322009-04-18 07:24:17 +0000168 dev_dbg(&dev->udev->dev,
169 "bad MAC string %d fetch, %d\n", iMACAddress, tmp);
Andy Shevchenko51487ae2015-01-22 23:27:12 +0200170 if (ret >= 0)
171 ret = -EINVAL;
172 return ret;
Peter Holik03ad0322009-04-18 07:24:17 +0000173 }
Peter Holik03ad0322009-04-18 07:24:17 +0000174 return 0;
175}
176EXPORT_SYMBOL_GPL(usbnet_get_ethernet_addr);
177
tom.leiming@gmail.com24ead292012-06-11 15:19:44 +0000178static void intr_complete (struct urb *urb)
179{
180 struct usbnet *dev = urb->context;
181 int status = urb->status;
182
183 switch (status) {
184 /* success */
185 case 0:
186 dev->driver_info->status(dev, urb);
187 break;
188
189 /* software-driven interface shutdown */
190 case -ENOENT: /* urb killed */
191 case -ESHUTDOWN: /* hardware gone */
192 netif_dbg(dev, ifdown, dev->net,
193 "intr shutdown, code %d\n", status);
194 return;
195
196 /* NOTE: not throttling like RX/TX, since this endpoint
197 * already polls infrequently
198 */
199 default:
200 netdev_dbg(dev->net, "intr status %d\n", status);
201 break;
202 }
203
tom.leiming@gmail.com24ead292012-06-11 15:19:44 +0000204 status = usb_submit_urb (urb, GFP_ATOMIC);
205 if (status != 0)
206 netif_err(dev, timer, dev->net,
207 "intr resubmit --> %d\n", status);
208}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210static int init_status (struct usbnet *dev, struct usb_interface *intf)
211{
212 char *buf = NULL;
213 unsigned pipe = 0;
214 unsigned maxp;
215 unsigned period;
216
217 if (!dev->driver_info->status)
218 return 0;
219
220 pipe = usb_rcvintpipe (dev->udev,
221 dev->status->desc.bEndpointAddress
222 & USB_ENDPOINT_NUMBER_MASK);
223 maxp = usb_maxpacket (dev->udev, pipe, 0);
224
225 /* avoid 1 msec chatter: min 8 msec poll rate */
226 period = max ((int) dev->status->desc.bInterval,
227 (dev->udev->speed == USB_SPEED_HIGH) ? 7 : 3);
228
Christoph Lametere94b1762006-12-06 20:33:17 -0800229 buf = kmalloc (maxp, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 if (buf) {
Christoph Lametere94b1762006-12-06 20:33:17 -0800231 dev->interrupt = usb_alloc_urb (0, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 if (!dev->interrupt) {
233 kfree (buf);
234 return -ENOMEM;
235 } else {
236 usb_fill_int_urb(dev->interrupt, dev->udev, pipe,
237 buf, maxp, intr_complete, dev, period);
tom.leiming@gmail.com720f3d72012-04-29 22:51:02 +0000238 dev->interrupt->transfer_flags |= URB_FREE_BUFFER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 dev_dbg(&intf->dev,
240 "status ep%din, %d bytes period %d\n",
241 usb_pipeendpoint(pipe), maxp, period);
242 }
243 }
David Brownell18ab4582007-05-25 12:31:32 -0700244 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245}
246
Dan Williams6eecdc52013-05-06 11:29:23 +0000247/* Submit the interrupt URB if not previously submitted, increasing refcount */
248int usbnet_status_start(struct usbnet *dev, gfp_t mem_flags)
249{
250 int ret = 0;
251
252 WARN_ON_ONCE(dev->interrupt == NULL);
253 if (dev->interrupt) {
254 mutex_lock(&dev->interrupt_mutex);
255
256 if (++dev->interrupt_count == 1)
257 ret = usb_submit_urb(dev->interrupt, mem_flags);
258
259 dev_dbg(&dev->udev->dev, "incremented interrupt URB count to %d\n",
260 dev->interrupt_count);
261 mutex_unlock(&dev->interrupt_mutex);
262 }
263 return ret;
264}
265EXPORT_SYMBOL_GPL(usbnet_status_start);
266
267/* For resume; submit interrupt URB if previously submitted */
268static int __usbnet_status_start_force(struct usbnet *dev, gfp_t mem_flags)
269{
270 int ret = 0;
271
272 mutex_lock(&dev->interrupt_mutex);
273 if (dev->interrupt_count) {
274 ret = usb_submit_urb(dev->interrupt, mem_flags);
275 dev_dbg(&dev->udev->dev,
276 "submitted interrupt URB for resume\n");
277 }
278 mutex_unlock(&dev->interrupt_mutex);
279 return ret;
280}
281
282/* Kill the interrupt URB if all submitters want it killed */
283void usbnet_status_stop(struct usbnet *dev)
284{
285 if (dev->interrupt) {
286 mutex_lock(&dev->interrupt_mutex);
287 WARN_ON(dev->interrupt_count == 0);
288
289 if (dev->interrupt_count && --dev->interrupt_count == 0)
290 usb_kill_urb(dev->interrupt);
291
292 dev_dbg(&dev->udev->dev,
293 "decremented interrupt URB count to %d\n",
294 dev->interrupt_count);
295 mutex_unlock(&dev->interrupt_mutex);
296 }
297}
298EXPORT_SYMBOL_GPL(usbnet_status_stop);
299
300/* For suspend; always kill interrupt URB */
301static void __usbnet_status_stop_force(struct usbnet *dev)
302{
303 if (dev->interrupt) {
304 mutex_lock(&dev->interrupt_mutex);
305 usb_kill_urb(dev->interrupt);
306 dev_dbg(&dev->udev->dev, "killed interrupt URB for suspend\n");
307 mutex_unlock(&dev->interrupt_mutex);
308 }
309}
310
David Brownell2e55cc72005-08-31 09:53:10 -0700311/* Passes this packet up the stack, updating its accounting.
312 * Some link protocols batch packets, so their rx_fixup paths
313 * can return clones as well as just modify the original skb.
314 */
315void usbnet_skb_return (struct usbnet *dev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316{
Greg Ungererc8b5d122017-04-03 15:50:03 +1000317 struct pcpu_sw_netstats *stats64 = this_cpu_ptr(dev->stats64);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 int status;
319
Jussi Kivilinna7834ddb2009-08-11 22:57:16 +0300320 if (test_bit(EVENT_RX_PAUSED, &dev->flags)) {
321 skb_queue_tail(&dev->rxq_pause, skb);
322 return;
323 }
324
Bjørn Mork81e0ce72015-12-03 19:24:20 +0100325 /* only update if unset to allow minidriver rx_fixup override */
326 if (skb->protocol == 0)
327 skb->protocol = eth_type_trans (skb, dev->net);
328
Greg Ungererc8b5d122017-04-03 15:50:03 +1000329 u64_stats_update_begin(&stats64->syncp);
330 stats64->rx_packets++;
331 stats64->rx_bytes += skb->len;
332 u64_stats_update_end(&stats64->syncp);
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:
Oliver Neukumea079842016-05-02 13:06:13 +0200359 case USB_SPEED_SUPER_PLUS:
Ming Lei452c4472013-07-25 13:47:54 +0800360 /*
361 * Not take default 5ms qlen for super speed HC to
362 * save memory, and iperf tests show 2.5ms qlen can
363 * work well
364 */
365 dev->rx_qlen = 5 * MAX_QUEUE_MEMORY / dev->rx_urb_size;
366 dev->tx_qlen = 5 * MAX_QUEUE_MEMORY / dev->hard_mtu;
367 break;
Ming Leia88c32a2013-07-25 13:47:53 +0800368 default:
369 dev->rx_qlen = dev->tx_qlen = 4;
370 }
371}
372EXPORT_SYMBOL_GPL(usbnet_update_max_qlen);
373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375/*-------------------------------------------------------------------------
376 *
377 * Network Device Driver (peer link to "Host Device", from USB host)
378 *
379 *-------------------------------------------------------------------------*/
380
Stephen Hemminger777baa42009-03-20 19:35:54 +0000381int usbnet_change_mtu (struct net_device *net, int new_mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382{
383 struct usbnet *dev = netdev_priv(net);
David Brownellf29fc252005-08-31 09:52:31 -0700384 int ll_mtu = new_mtu + net->hard_header_len;
Jamie Paintera99c1942006-07-27 14:17:28 -0400385 int old_hard_mtu = dev->hard_mtu;
386 int old_rx_urb_size = dev->rx_urb_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 // no second zero-length packet read wanted after mtu-sized packets
David Brownellf29fc252005-08-31 09:52:31 -0700389 if ((ll_mtu % dev->maxpacket) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 return -EDOM;
391 net->mtu = new_mtu;
Jamie Paintera99c1942006-07-27 14:17:28 -0400392
393 dev->hard_mtu = net->mtu + net->hard_header_len;
394 if (dev->rx_urb_size == old_hard_mtu) {
395 dev->rx_urb_size = dev->hard_mtu;
Soohoon Lee43daa962016-06-29 15:07:21 -0400396 if (dev->rx_urb_size > old_rx_urb_size) {
397 usbnet_pause_rx(dev);
Jamie Paintera99c1942006-07-27 14:17:28 -0400398 usbnet_unlink_rx_urbs(dev);
Soohoon Lee43daa962016-06-29 15:07:21 -0400399 usbnet_resume_rx(dev);
400 }
Jamie Paintera99c1942006-07-27 14:17:28 -0400401 }
402
Ming Leia88c32a2013-07-25 13:47:53 +0800403 /* max qlen depend on hard_mtu and rx_urb_size */
404 usbnet_update_max_qlen(dev);
405
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 return 0;
407}
Stephen Hemminger777baa42009-03-20 19:35:54 +0000408EXPORT_SYMBOL_GPL(usbnet_change_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800410/* The caller must hold list->lock */
411static void __usbnet_queue_skb(struct sk_buff_head *list,
412 struct sk_buff *newsk, enum skb_state state)
413{
414 struct skb_data *entry = (struct skb_data *) newsk->cb;
415
416 __skb_queue_tail(list, newsk);
417 entry->state = state;
418}
419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420/*-------------------------------------------------------------------------*/
421
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422/* some LK 2.4 HCDs oopsed if we freed or resubmitted urbs from
423 * completion callbacks. 2.5 should have fixed those bugs...
424 */
425
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800426static enum skb_state defer_bh(struct usbnet *dev, struct sk_buff *skb,
427 struct sk_buff_head *list, enum skb_state state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 unsigned long flags;
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800430 enum skb_state old_state;
431 struct skb_data *entry = (struct skb_data *) skb->cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
David S. Miller8728b832005-08-09 19:25:21 -0700433 spin_lock_irqsave(&list->lock, flags);
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800434 old_state = entry->state;
435 entry->state = state;
David S. Miller8728b832005-08-09 19:25:21 -0700436 __skb_unlink(skb, list);
Eugene Shatokhinfcb0bb62015-09-01 17:05:33 +0300437
438 /* defer_bh() is never called with list == &dev->done.
439 * spin_lock_nested() tells lockdep that it is OK to take
440 * dev->done.lock here with list->lock held.
441 */
442 spin_lock_nested(&dev->done.lock, SINGLE_DEPTH_NESTING);
443
David S. Miller8728b832005-08-09 19:25:21 -0700444 __skb_queue_tail(&dev->done, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 if (dev->done.qlen == 1)
David S. Miller8728b832005-08-09 19:25:21 -0700446 tasklet_schedule(&dev->bh);
Eugene Shatokhinfcb0bb62015-09-01 17:05:33 +0300447 spin_unlock(&dev->done.lock);
448 spin_unlock_irqrestore(&list->lock, flags);
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800449 return old_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450}
451
452/* some work can't be done in tasklets, so we use keventd
453 *
454 * NOTE: annoying asymmetry: if it's active, schedule_work() fails,
455 * but tasklet_schedule() doesn't. hope the failure is rare.
456 */
David Brownell2e55cc72005-08-31 09:53:10 -0700457void usbnet_defer_kevent (struct usbnet *dev, int work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458{
459 set_bit (work, &dev->flags);
Steve Glendinning95320212012-11-08 06:26:21 +0000460 if (!schedule_work (&dev->kevent)) {
461 if (net_ratelimit())
462 netdev_err(dev->net, "kevent %d may have been dropped\n", work);
463 } else {
Joe Perches60b86752010-02-17 10:30:23 +0000464 netdev_dbg(dev->net, "kevent %d scheduled\n", work);
Steve Glendinning95320212012-11-08 06:26:21 +0000465 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466}
David Brownell2e55cc72005-08-31 09:53:10 -0700467EXPORT_SYMBOL_GPL(usbnet_defer_kevent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
469/*-------------------------------------------------------------------------*/
470
David Howells7d12e782006-10-05 14:55:46 +0100471static void rx_complete (struct urb *urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
David S. Millerdacb3972010-08-10 02:50:55 -0700473static int rx_submit (struct usbnet *dev, struct urb *urb, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474{
475 struct sk_buff *skb;
476 struct skb_data *entry;
477 int retval = 0;
478 unsigned long lockflags;
David Brownell2e55cc72005-08-31 09:53:10 -0700479 size_t size = dev->rx_urb_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
Bjørn Mork70c37bf2013-01-28 23:51:28 +0000481 /* prevent rx skb allocation when error ratio is high */
482 if (test_bit(EVENT_RX_KILL, &dev->flags)) {
483 usb_free_urb(urb);
484 return -ENOLINK;
485 }
486
Eric Dumazet7bdd4022012-03-14 06:56:25 +0000487 skb = __netdev_alloc_skb_ip_align(dev->net, size, flags);
488 if (!skb) {
Joe Perchesa475f602010-02-17 10:30:24 +0000489 netif_dbg(dev, rx_err, dev->net, "no rx skb\n");
David Brownell2e55cc72005-08-31 09:53:10 -0700490 usbnet_defer_kevent (dev, EVENT_RX_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 usb_free_urb (urb);
David S. Millerdacb3972010-08-10 02:50:55 -0700492 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
495 entry = (struct skb_data *) skb->cb;
496 entry->urb = urb;
497 entry->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 entry->length = 0;
499
500 usb_fill_bulk_urb (urb, dev->udev, dev->in,
501 skb->data, size, rx_complete, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
503 spin_lock_irqsave (&dev->rxq.lock, lockflags);
504
Joe Perches8e95a202009-12-03 07:58:21 +0000505 if (netif_running (dev->net) &&
506 netif_device_present (dev->net) &&
Oliver Neukum69ee472f2009-12-03 15:31:18 -0800507 !test_bit (EVENT_RX_HALT, &dev->flags) &&
508 !test_bit (EVENT_DEV_ASLEEP, &dev->flags)) {
David Brownell18ab4582007-05-25 12:31:32 -0700509 switch (retval = usb_submit_urb (urb, GFP_ATOMIC)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 case -EPIPE:
David Brownell2e55cc72005-08-31 09:53:10 -0700511 usbnet_defer_kevent (dev, EVENT_RX_HALT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 break;
513 case -ENOMEM:
David Brownell2e55cc72005-08-31 09:53:10 -0700514 usbnet_defer_kevent (dev, EVENT_RX_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 break;
516 case -ENODEV:
Joe Perchesa475f602010-02-17 10:30:24 +0000517 netif_dbg(dev, ifdown, dev->net, "device gone\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 netif_device_detach (dev->net);
519 break;
David S. Millerdacb3972010-08-10 02:50:55 -0700520 case -EHOSTUNREACH:
521 retval = -ENOLINK;
522 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 default:
Joe Perchesa475f602010-02-17 10:30:24 +0000524 netif_dbg(dev, rx_err, dev->net,
525 "rx submit, %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 tasklet_schedule (&dev->bh);
527 break;
528 case 0:
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800529 __usbnet_queue_skb(&dev->rxq, skb, rx_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 }
531 } else {
Joe Perchesa475f602010-02-17 10:30:24 +0000532 netif_dbg(dev, ifdown, dev->net, "rx: stopped\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 retval = -ENOLINK;
534 }
535 spin_unlock_irqrestore (&dev->rxq.lock, lockflags);
536 if (retval) {
537 dev_kfree_skb_any (skb);
538 usb_free_urb (urb);
539 }
David S. Millerdacb3972010-08-10 02:50:55 -0700540 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541}
542
543
544/*-------------------------------------------------------------------------*/
545
546static inline void rx_process (struct usbnet *dev, struct sk_buff *skb)
547{
Joe Perches8e95a202009-12-03 07:58:21 +0000548 if (dev->driver_info->rx_fixup &&
Andrzej Zaborowski7a635ea2011-03-28 12:56:33 +0000549 !dev->driver_info->rx_fixup (dev, skb)) {
550 /* With RX_ASSEMBLE, rx_fixup() must update counters */
551 if (!(dev->driver_info->flags & FLAG_RX_ASSEMBLE))
552 dev->net->stats.rx_errors++;
553 goto done;
554 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 // else network stack removes extra byte if we forced a short packet
556
Emil Goodeeb855692014-02-13 17:50:19 +0100557 /* all data was already cloned from skb inside the driver */
558 if (dev->driver_info->flags & FLAG_MULTI_PACKET)
559 goto done;
560
561 if (skb->len < ETH_HLEN) {
562 dev->net->stats.rx_errors++;
563 dev->net->stats.rx_length_errors++;
564 netif_dbg(dev, rx_err, dev->net, "rx length %d\n", skb->len);
565 } else {
566 usbnet_skb_return(dev, skb);
Alexey Orishko073285f2010-11-29 23:23:27 +0000567 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 }
Alexey Orishko073285f2010-11-29 23:23:27 +0000569
Andrzej Zaborowski7a635ea2011-03-28 12:56:33 +0000570done:
Alexey Orishko073285f2010-11-29 23:23:27 +0000571 skb_queue_tail(&dev->done, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572}
573
574/*-------------------------------------------------------------------------*/
575
David Howells7d12e782006-10-05 14:55:46 +0100576static void rx_complete (struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577{
578 struct sk_buff *skb = (struct sk_buff *) urb->context;
579 struct skb_data *entry = (struct skb_data *) skb->cb;
580 struct usbnet *dev = entry->dev;
581 int urb_status = urb->status;
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800582 enum skb_state state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
584 skb_put (skb, urb->actual_length);
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800585 state = rx_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 entry->urb = NULL;
587
588 switch (urb_status) {
David Brownell18ab4582007-05-25 12:31:32 -0700589 /* success */
590 case 0:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 break;
592
David Brownell18ab4582007-05-25 12:31:32 -0700593 /* stalls need manual reset. this is rare ... except that
594 * when going through USB 2.0 TTs, unplug appears this way.
Jean Delvare3ac49a12009-06-04 16:20:28 +0200595 * we avoid the highspeed version of the ETIMEDOUT/EILSEQ
David Brownell18ab4582007-05-25 12:31:32 -0700596 * storm, recovering as needed.
597 */
598 case -EPIPE:
Herbert Xu79638372009-06-29 16:53:28 +0000599 dev->net->stats.rx_errors++;
David Brownell2e55cc72005-08-31 09:53:10 -0700600 usbnet_defer_kevent (dev, EVENT_RX_HALT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 // FALLTHROUGH
602
David Brownell18ab4582007-05-25 12:31:32 -0700603 /* software-driven interface shutdown */
604 case -ECONNRESET: /* async unlink */
605 case -ESHUTDOWN: /* hardware gone */
Joe Perchesa475f602010-02-17 10:30:24 +0000606 netif_dbg(dev, ifdown, dev->net,
607 "rx shutdown, code %d\n", urb_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 goto block;
609
Petr Mladek37ebb542014-09-19 17:32:23 +0200610 /* we get controller i/o faults during hub_wq disconnect() delays.
David Brownell18ab4582007-05-25 12:31:32 -0700611 * throttle down resubmits, to avoid log floods; just temporarily,
Petr Mladek37ebb542014-09-19 17:32:23 +0200612 * so we still recover when the fault isn't a hub_wq delay.
David Brownell18ab4582007-05-25 12:31:32 -0700613 */
614 case -EPROTO:
615 case -ETIME:
616 case -EILSEQ:
Herbert Xu79638372009-06-29 16:53:28 +0000617 dev->net->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 if (!timer_pending (&dev->delay)) {
619 mod_timer (&dev->delay, jiffies + THROTTLE_JIFFIES);
Joe Perchesa475f602010-02-17 10:30:24 +0000620 netif_dbg(dev, link, dev->net,
621 "rx throttle %d\n", urb_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 }
623block:
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800624 state = rx_cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 entry->urb = urb;
626 urb = NULL;
627 break;
628
David Brownell18ab4582007-05-25 12:31:32 -0700629 /* data overrun ... flush fifo? */
630 case -EOVERFLOW:
Herbert Xu79638372009-06-29 16:53:28 +0000631 dev->net->stats.rx_over_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 // FALLTHROUGH
David Brownellcb1cebb2007-02-15 18:52:30 -0800633
David Brownell18ab4582007-05-25 12:31:32 -0700634 default:
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800635 state = rx_cleanup;
Herbert Xu79638372009-06-29 16:53:28 +0000636 dev->net->stats.rx_errors++;
Joe Perchesa475f602010-02-17 10:30:24 +0000637 netif_dbg(dev, rx_err, dev->net, "rx status %d\n", urb_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 break;
639 }
640
Bjørn Mork70c37bf2013-01-28 23:51:28 +0000641 /* stop rx if packet error rate is high */
642 if (++dev->pkt_cnt > 30) {
643 dev->pkt_cnt = 0;
644 dev->pkt_err = 0;
645 } else {
646 if (state == rx_cleanup)
647 dev->pkt_err++;
648 if (dev->pkt_err > 20)
649 set_bit(EVENT_RX_KILL, &dev->flags);
650 }
651
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800652 state = defer_bh(dev, skb, &dev->rxq, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
654 if (urb) {
Joe Perches8e95a202009-12-03 07:58:21 +0000655 if (netif_running (dev->net) &&
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800656 !test_bit (EVENT_RX_HALT, &dev->flags) &&
657 state != unlink_start) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 rx_submit (dev, urb, GFP_ATOMIC);
Oliver Neukum8a783352012-03-03 18:45:07 +0100659 usb_mark_last_busy(dev->udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 return;
661 }
662 usb_free_urb (urb);
663 }
Joe Perchesa475f602010-02-17 10:30:24 +0000664 netif_dbg(dev, rx_err, dev->net, "no read resubmitted\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665}
666
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667/*-------------------------------------------------------------------------*/
Jussi Kivilinna7834ddb2009-08-11 22:57:16 +0300668void usbnet_pause_rx(struct usbnet *dev)
669{
670 set_bit(EVENT_RX_PAUSED, &dev->flags);
671
Joe Perchesa475f602010-02-17 10:30:24 +0000672 netif_dbg(dev, rx_status, dev->net, "paused rx queue enabled\n");
Jussi Kivilinna7834ddb2009-08-11 22:57:16 +0300673}
674EXPORT_SYMBOL_GPL(usbnet_pause_rx);
675
676void usbnet_resume_rx(struct usbnet *dev)
677{
678 struct sk_buff *skb;
679 int num = 0;
680
681 clear_bit(EVENT_RX_PAUSED, &dev->flags);
682
683 while ((skb = skb_dequeue(&dev->rxq_pause)) != NULL) {
684 usbnet_skb_return(dev, skb);
685 num++;
686 }
687
688 tasklet_schedule(&dev->bh);
689
Joe Perchesa475f602010-02-17 10:30:24 +0000690 netif_dbg(dev, rx_status, dev->net,
691 "paused rx queue disabled, %d skbs requeued\n", num);
Jussi Kivilinna7834ddb2009-08-11 22:57:16 +0300692}
693EXPORT_SYMBOL_GPL(usbnet_resume_rx);
694
695void usbnet_purge_paused_rxq(struct usbnet *dev)
696{
697 skb_queue_purge(&dev->rxq_pause);
698}
699EXPORT_SYMBOL_GPL(usbnet_purge_paused_rxq);
700
701/*-------------------------------------------------------------------------*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
703// unlink pending rx/tx; completion handlers do all other cleanup
704
705static int unlink_urbs (struct usbnet *dev, struct sk_buff_head *q)
706{
707 unsigned long flags;
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800708 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 int count = 0;
710
711 spin_lock_irqsave (&q->lock, flags);
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800712 while (!skb_queue_empty(q)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 struct skb_data *entry;
714 struct urb *urb;
715 int retval;
716
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800717 skb_queue_walk(q, skb) {
718 entry = (struct skb_data *) skb->cb;
719 if (entry->state != unlink_start)
720 goto found;
721 }
722 break;
723found:
724 entry->state = unlink_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 urb = entry->urb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
tom.leiming@gmail.com0956a8c2012-03-22 03:22:18 +0000727 /*
728 * Get reference count of the URB to avoid it to be
729 * freed during usb_unlink_urb, which may trigger
730 * use-after-free problem inside usb_unlink_urb since
731 * usb_unlink_urb is always racing with .complete
732 * handler(include defer_bh).
733 */
734 usb_get_urb(urb);
Sebastian Siewior4231d472012-03-07 10:19:28 +0000735 spin_unlock_irqrestore(&q->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 // during some PM-driven resume scenarios,
737 // these (async) unlinks complete immediately
738 retval = usb_unlink_urb (urb);
739 if (retval != -EINPROGRESS && retval != 0)
Joe Perches60b86752010-02-17 10:30:23 +0000740 netdev_dbg(dev->net, "unlink urb err, %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 else
742 count++;
tom.leiming@gmail.com0956a8c2012-03-22 03:22:18 +0000743 usb_put_urb(urb);
Sebastian Siewior4231d472012-03-07 10:19:28 +0000744 spin_lock_irqsave(&q->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 }
746 spin_unlock_irqrestore (&q->lock, flags);
747 return count;
748}
749
Jamie Paintera99c1942006-07-27 14:17:28 -0400750// Flush all pending rx urbs
751// minidrivers may need to do this when the MTU changes
752
753void usbnet_unlink_rx_urbs(struct usbnet *dev)
754{
755 if (netif_running(dev->net)) {
756 (void) unlink_urbs (dev, &dev->rxq);
757 tasklet_schedule(&dev->bh);
758 }
759}
760EXPORT_SYMBOL_GPL(usbnet_unlink_rx_urbs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
762/*-------------------------------------------------------------------------*/
763
Eugene Shatokhinfcb0bb62015-09-01 17:05:33 +0300764static void wait_skb_queue_empty(struct sk_buff_head *q)
765{
766 unsigned long flags;
767
768 spin_lock_irqsave(&q->lock, flags);
769 while (!skb_queue_empty(q)) {
770 spin_unlock_irqrestore(&q->lock, flags);
771 schedule_timeout(msecs_to_jiffies(UNLINK_TIMEOUT_MS));
772 set_current_state(TASK_UNINTERRUPTIBLE);
773 spin_lock_irqsave(&q->lock, flags);
774 }
775 spin_unlock_irqrestore(&q->lock, flags);
776}
777
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778// precondition: never called in_interrupt
Oliver Neukum69ee472f2009-12-03 15:31:18 -0800779static void usbnet_terminate_urbs(struct usbnet *dev)
780{
Oliver Neukum69ee472f2009-12-03 15:31:18 -0800781 DECLARE_WAITQUEUE(wait, current);
782 int temp;
783
784 /* ensure there are no more active urbs */
Oliver Neukum14a0d632014-03-26 14:32:51 +0100785 add_wait_queue(&dev->wait, &wait);
Oliver Neukum69ee472f2009-12-03 15:31:18 -0800786 set_current_state(TASK_UNINTERRUPTIBLE);
Oliver Neukum69ee472f2009-12-03 15:31:18 -0800787 temp = unlink_urbs(dev, &dev->txq) +
788 unlink_urbs(dev, &dev->rxq);
789
790 /* maybe wait for deletions to finish. */
Eugene Shatokhinfcb0bb62015-09-01 17:05:33 +0300791 wait_skb_queue_empty(&dev->rxq);
792 wait_skb_queue_empty(&dev->txq);
793 wait_skb_queue_empty(&dev->done);
794 netif_dbg(dev, ifdown, dev->net,
795 "waited for %d urb completions\n", temp);
Oliver Neukum69ee472f2009-12-03 15:31:18 -0800796 set_current_state(TASK_RUNNING);
Oliver Neukum14a0d632014-03-26 14:32:51 +0100797 remove_wait_queue(&dev->wait, &wait);
Oliver Neukum69ee472f2009-12-03 15:31:18 -0800798}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
Stephen Hemminger777baa42009-03-20 19:35:54 +0000800int usbnet_stop (struct net_device *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801{
802 struct usbnet *dev = netdev_priv(net);
Jussi Kivilinnaa33e9e72009-06-16 17:17:27 +0300803 struct driver_info *info = dev->driver_info;
Eugene Shatokhinf50791a2015-08-24 23:13:42 +0300804 int retval, pm, mpn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
Ming Lei75bd0cb2011-04-28 22:37:09 +0000806 clear_bit(EVENT_DEV_OPEN, &dev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 netif_stop_queue (net);
808
Joe Perchesa475f602010-02-17 10:30:24 +0000809 netif_info(dev, ifdown, dev->net,
Ben Hutchings8ccef432010-06-08 08:20:59 +0000810 "stop stats: rx/tx %lu/%lu, errs %lu/%lu\n",
Joe Perchesa475f602010-02-17 10:30:24 +0000811 net->stats.rx_packets, net->stats.tx_packets,
812 net->stats.rx_errors, net->stats.tx_errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
Oliver Neukum14a0d632014-03-26 14:32:51 +0100814 /* to not race resume */
815 pm = usb_autopm_get_interface(dev->intf);
Jussi Kivilinnaa33e9e72009-06-16 17:17:27 +0300816 /* allow minidriver to stop correctly (wireless devices to turn off
817 * radio etc) */
818 if (info->stop) {
819 retval = info->stop(dev);
Joe Perchesa475f602010-02-17 10:30:24 +0000820 if (retval < 0)
821 netif_info(dev, ifdown, dev->net,
822 "stop fail (%d) usbnet usb-%s-%s, %s\n",
823 retval,
824 dev->udev->bus->bus_name, dev->udev->devpath,
825 info->description);
Jussi Kivilinnaa33e9e72009-06-16 17:17:27 +0300826 }
827
Oliver Neukum69ee472f2009-12-03 15:31:18 -0800828 if (!(info->flags & FLAG_AVOID_UNLINK_URBS))
829 usbnet_terminate_urbs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
Dan Williams6eecdc52013-05-06 11:29:23 +0000831 usbnet_status_stop(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
Jussi Kivilinna7834ddb2009-08-11 22:57:16 +0300833 usbnet_purge_paused_rxq(dev);
834
Eugene Shatokhinf50791a2015-08-24 23:13:42 +0300835 mpn = !test_and_clear_bit(EVENT_NO_RUNTIME_PM, &dev->flags);
836
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 /* deferred work (task, timer, softirq) must also stop.
838 * can't flush_scheduled_work() until we drop rtnl (later),
839 * else workers could deadlock; so make workers a NOP.
840 */
841 dev->flags = 0;
842 del_timer_sync (&dev->delay);
843 tasklet_kill (&dev->bh);
Oliver Neukum14a0d632014-03-26 14:32:51 +0100844 if (!pm)
845 usb_autopm_put_interface(dev->intf);
846
Eugene Shatokhinf50791a2015-08-24 23:13:42 +0300847 if (info->manage_power && mpn)
Oliver Neukum69ee472f2009-12-03 15:31:18 -0800848 info->manage_power(dev, 0);
849 else
850 usb_autopm_put_interface(dev->intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
852 return 0;
853}
Stephen Hemminger777baa42009-03-20 19:35:54 +0000854EXPORT_SYMBOL_GPL(usbnet_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
856/*-------------------------------------------------------------------------*/
857
858// posts reads, and enables write queuing
859
860// precondition: never called in_interrupt
861
Stephen Hemminger777baa42009-03-20 19:35:54 +0000862int usbnet_open (struct net_device *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863{
864 struct usbnet *dev = netdev_priv(net);
Oliver Neukuma11a6542007-08-03 13:52:19 +0200865 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 struct driver_info *info = dev->driver_info;
867
Oliver Neukuma11a6542007-08-03 13:52:19 +0200868 if ((retval = usb_autopm_get_interface(dev->intf)) < 0) {
Joe Perchesa475f602010-02-17 10:30:24 +0000869 netif_info(dev, ifup, dev->net,
870 "resumption fail (%d) usbnet usb-%s-%s, %s\n",
871 retval,
872 dev->udev->bus->bus_name,
873 dev->udev->devpath,
874 info->description);
Oliver Neukuma11a6542007-08-03 13:52:19 +0200875 goto done_nopm;
876 }
877
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 // put into "known safe" state
879 if (info->reset && (retval = info->reset (dev)) < 0) {
Joe Perchesa475f602010-02-17 10:30:24 +0000880 netif_info(dev, ifup, dev->net,
881 "open reset fail (%d) usbnet usb-%s-%s, %s\n",
882 retval,
883 dev->udev->bus->bus_name,
884 dev->udev->devpath,
885 info->description);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 goto done;
887 }
888
Ming Leia88c32a2013-07-25 13:47:53 +0800889 /* hard_mtu or rx_urb_size may change in reset() */
890 usbnet_update_max_qlen(dev);
891
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 // insist peer be connected
893 if (info->check_connect && (retval = info->check_connect (dev)) < 0) {
Joe Perchesa475f602010-02-17 10:30:24 +0000894 netif_dbg(dev, ifup, dev->net, "can't open; %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 goto done;
896 }
897
898 /* start any status interrupt transfer */
899 if (dev->interrupt) {
Dan Williams6eecdc52013-05-06 11:29:23 +0000900 retval = usbnet_status_start(dev, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 if (retval < 0) {
Joe Perchesa475f602010-02-17 10:30:24 +0000902 netif_err(dev, ifup, dev->net,
903 "intr submit %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 goto done;
905 }
906 }
907
Paul Stewart68972ef2011-04-28 05:43:37 +0000908 set_bit(EVENT_DEV_OPEN, &dev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 netif_start_queue (net);
Joe Perchesa475f602010-02-17 10:30:24 +0000910 netif_info(dev, ifup, dev->net,
911 "open: enable queueing (rx %d, tx %d) mtu %d %s framing\n",
912 (int)RX_QLEN(dev), (int)TX_QLEN(dev),
913 dev->net->mtu,
914 (dev->driver_info->flags & FLAG_FRAMING_NC) ? "NetChip" :
915 (dev->driver_info->flags & FLAG_FRAMING_GL) ? "GeneSys" :
916 (dev->driver_info->flags & FLAG_FRAMING_Z) ? "Zaurus" :
917 (dev->driver_info->flags & FLAG_FRAMING_RN) ? "RNDIS" :
918 (dev->driver_info->flags & FLAG_FRAMING_AX) ? "ASIX" :
919 "simple");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920
Bjørn Mork70c37bf2013-01-28 23:51:28 +0000921 /* reset rx error state */
922 dev->pkt_cnt = 0;
923 dev->pkt_err = 0;
924 clear_bit(EVENT_RX_KILL, &dev->flags);
925
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 // delay posting reads until we're fully open
927 tasklet_schedule (&dev->bh);
Oliver Neukum69ee472f2009-12-03 15:31:18 -0800928 if (info->manage_power) {
929 retval = info->manage_power(dev, 1);
Oliver Neukuma1c088e2012-12-18 04:45:29 +0000930 if (retval < 0) {
931 retval = 0;
932 set_bit(EVENT_NO_RUNTIME_PM, &dev->flags);
933 } else {
934 usb_autopm_put_interface(dev->intf);
935 }
Oliver Neukum69ee472f2009-12-03 15:31:18 -0800936 }
Oliver Neukuma11a6542007-08-03 13:52:19 +0200937 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938done:
Oliver Neukuma11a6542007-08-03 13:52:19 +0200939 usb_autopm_put_interface(dev->intf);
940done_nopm:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 return retval;
942}
Stephen Hemminger777baa42009-03-20 19:35:54 +0000943EXPORT_SYMBOL_GPL(usbnet_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
945/*-------------------------------------------------------------------------*/
946
David Brownell2e55cc72005-08-31 09:53:10 -0700947/* ethtool methods; minidrivers may need to add some more, but
948 * they'll probably want to use this base set.
949 */
950
Philippe Reynes8bae3552017-03-16 23:18:47 +0100951int usbnet_get_link_ksettings(struct net_device *net,
952 struct ethtool_link_ksettings *cmd)
953{
954 struct usbnet *dev = netdev_priv(net);
955
956 if (!dev->mii.mdio_read)
957 return -EOPNOTSUPP;
958
yuval.shaia@oracle.com82c01a82017-06-04 20:22:00 +0300959 mii_ethtool_get_link_ksettings(&dev->mii, cmd);
960
961 return 0;
Philippe Reynes8bae3552017-03-16 23:18:47 +0100962}
963EXPORT_SYMBOL_GPL(usbnet_get_link_ksettings);
964
965int usbnet_set_link_ksettings(struct net_device *net,
966 const struct ethtool_link_ksettings *cmd)
967{
968 struct usbnet *dev = netdev_priv(net);
969 int retval;
970
971 if (!dev->mii.mdio_write)
972 return -EOPNOTSUPP;
973
974 retval = mii_ethtool_set_link_ksettings(&dev->mii, cmd);
975
976 /* link speed/duplex might have changed */
977 if (dev->driver_info->link_reset)
978 dev->driver_info->link_reset(dev);
979
980 /* hard_mtu or rx_urb_size may change in link_reset() */
981 usbnet_update_max_qlen(dev);
982
983 return retval;
984}
985EXPORT_SYMBOL_GPL(usbnet_set_link_ksettings);
986
Greg Ungererc8b5d122017-04-03 15:50:03 +1000987void usbnet_get_stats64(struct net_device *net, struct rtnl_link_stats64 *stats)
988{
989 struct usbnet *dev = netdev_priv(net);
990 unsigned int start;
991 int cpu;
992
993 netdev_stats_to_stats64(stats, &net->stats);
994
995 for_each_possible_cpu(cpu) {
996 struct pcpu_sw_netstats *stats64;
997 u64 rx_packets, rx_bytes;
998 u64 tx_packets, tx_bytes;
999
1000 stats64 = per_cpu_ptr(dev->stats64, cpu);
1001
1002 do {
1003 start = u64_stats_fetch_begin_irq(&stats64->syncp);
1004 rx_packets = stats64->rx_packets;
1005 rx_bytes = stats64->rx_bytes;
1006 tx_packets = stats64->tx_packets;
1007 tx_bytes = stats64->tx_bytes;
1008 } while (u64_stats_fetch_retry_irq(&stats64->syncp, start));
1009
1010 stats->rx_packets += rx_packets;
1011 stats->rx_bytes += rx_bytes;
1012 stats->tx_packets += tx_packets;
1013 stats->tx_bytes += tx_bytes;
1014 }
1015}
1016EXPORT_SYMBOL_GPL(usbnet_get_stats64);
1017
Arnd Bergmannc41286f2006-10-09 00:08:01 +02001018u32 usbnet_get_link (struct net_device *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019{
1020 struct usbnet *dev = netdev_priv(net);
1021
David Brownellf29fc252005-08-31 09:52:31 -07001022 /* If a check_connect is defined, return its result */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 if (dev->driver_info->check_connect)
1024 return dev->driver_info->check_connect (dev) == 0;
1025
Arnd Bergmannc41286f2006-10-09 00:08:01 +02001026 /* if the device has mii operations, use those */
1027 if (dev->mii.mdio_read)
1028 return mii_link_ok(&dev->mii);
1029
Bjørn Mork05ffb3e2009-03-01 20:45:40 -08001030 /* Otherwise, dtrt for drivers calling netif_carrier_{on,off} */
1031 return ethtool_op_get_link(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032}
Arnd Bergmannc41286f2006-10-09 00:08:01 +02001033EXPORT_SYMBOL_GPL(usbnet_get_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034
David Brownell18ee91fa2006-11-02 12:29:12 -08001035int usbnet_nway_reset(struct net_device *net)
1036{
1037 struct usbnet *dev = netdev_priv(net);
1038
1039 if (!dev->mii.mdio_write)
1040 return -EOPNOTSUPP;
1041
1042 return mii_nway_restart(&dev->mii);
1043}
1044EXPORT_SYMBOL_GPL(usbnet_nway_reset);
1045
David Brownell18ee91fa2006-11-02 12:29:12 -08001046void usbnet_get_drvinfo (struct net_device *net, struct ethtool_drvinfo *info)
1047{
1048 struct usbnet *dev = netdev_priv(net);
1049
Phil Sutter86a2f412012-06-14 01:18:42 +00001050 strlcpy (info->driver, dev->driver_name, sizeof info->driver);
1051 strlcpy (info->version, DRIVER_VERSION, sizeof info->version);
1052 strlcpy (info->fw_version, dev->driver_info->description,
David Brownell18ee91fa2006-11-02 12:29:12 -08001053 sizeof info->fw_version);
1054 usb_make_path (dev->udev, info->bus_info, sizeof info->bus_info);
1055}
1056EXPORT_SYMBOL_GPL(usbnet_get_drvinfo);
1057
David Brownell2e55cc72005-08-31 09:53:10 -07001058u32 usbnet_get_msglevel (struct net_device *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059{
1060 struct usbnet *dev = netdev_priv(net);
1061
1062 return dev->msg_enable;
1063}
David Brownell2e55cc72005-08-31 09:53:10 -07001064EXPORT_SYMBOL_GPL(usbnet_get_msglevel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065
David Brownell2e55cc72005-08-31 09:53:10 -07001066void usbnet_set_msglevel (struct net_device *net, u32 level)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067{
1068 struct usbnet *dev = netdev_priv(net);
1069
1070 dev->msg_enable = level;
1071}
David Brownell2e55cc72005-08-31 09:53:10 -07001072EXPORT_SYMBOL_GPL(usbnet_set_msglevel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
David Brownell2e55cc72005-08-31 09:53:10 -07001074/* drivers may override default ethtool_ops in their bind() routine */
Stephen Hemminger0fc0b732009-09-02 01:03:33 -07001075static const struct ethtool_ops usbnet_ethtool_ops = {
David Brownell2e55cc72005-08-31 09:53:10 -07001076 .get_link = usbnet_get_link,
Arnd Bergmannc41286f2006-10-09 00:08:01 +02001077 .nway_reset = usbnet_nway_reset,
David Brownell18ee91fa2006-11-02 12:29:12 -08001078 .get_drvinfo = usbnet_get_drvinfo,
David Brownell2e55cc72005-08-31 09:53:10 -07001079 .get_msglevel = usbnet_get_msglevel,
1080 .set_msglevel = usbnet_set_msglevel,
Richard Cochran123edb12012-04-03 22:59:41 +00001081 .get_ts_info = ethtool_op_get_ts_info,
Philippe Reynes8bae3552017-03-16 23:18:47 +01001082 .get_link_ksettings = usbnet_get_link_ksettings,
1083 .set_link_ksettings = usbnet_set_link_ksettings,
David Brownell2e55cc72005-08-31 09:53:10 -07001084};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085
1086/*-------------------------------------------------------------------------*/
1087
Ming Lei4b49f582013-04-11 04:40:40 +00001088static void __handle_link_change(struct usbnet *dev)
1089{
1090 if (!test_bit(EVENT_DEV_OPEN, &dev->flags))
1091 return;
1092
1093 if (!netif_carrier_ok(dev->net)) {
1094 /* kill URBs for reading packets to save bus bandwidth */
1095 unlink_urbs(dev, &dev->rxq);
1096
1097 /*
1098 * tx_timeout will unlink URBs for sending packets and
1099 * tx queue is stopped by netcore after link becomes off
1100 */
1101 } else {
1102 /* submitting URBs for reading packets */
1103 tasklet_schedule(&dev->bh);
1104 }
1105
Ming Leia88c32a2013-07-25 13:47:53 +08001106 /* hard_mtu or rx_urb_size may change during link change */
1107 usbnet_update_max_qlen(dev);
1108
Ming Lei4b49f582013-04-11 04:40:40 +00001109 clear_bit(EVENT_LINK_CHANGE, &dev->flags);
1110}
1111
Olivier Blin1efed2d2014-10-24 19:43:00 +02001112static void usbnet_set_rx_mode(struct net_device *net)
1113{
1114 struct usbnet *dev = netdev_priv(net);
1115
1116 usbnet_defer_kevent(dev, EVENT_SET_RX_MODE);
1117}
1118
1119static void __handle_set_rx_mode(struct usbnet *dev)
1120{
1121 if (dev->driver_info->set_rx_mode)
1122 (dev->driver_info->set_rx_mode)(dev);
1123
1124 clear_bit(EVENT_SET_RX_MODE, &dev->flags);
1125}
1126
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127/* work that cannot be done in interrupt context uses keventd.
1128 *
1129 * NOTE: with 2.5 we could do more of this using completion callbacks,
1130 * especially now that control transfers can be queued.
1131 */
1132static void
Oliver Neukum11f17ef2015-04-09 10:09:04 +02001133usbnet_deferred_kevent (struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134{
David Howellsc4028952006-11-22 14:57:56 +00001135 struct usbnet *dev =
1136 container_of(work, struct usbnet, kevent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 int status;
1138
1139 /* usb_clear_halt() needs a thread context */
1140 if (test_bit (EVENT_TX_HALT, &dev->flags)) {
1141 unlink_urbs (dev, &dev->txq);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001142 status = usb_autopm_get_interface(dev->intf);
1143 if (status < 0)
1144 goto fail_pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 status = usb_clear_halt (dev->udev, dev->out);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001146 usb_autopm_put_interface(dev->intf);
Joe Perches8e95a202009-12-03 07:58:21 +00001147 if (status < 0 &&
1148 status != -EPIPE &&
1149 status != -ESHUTDOWN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 if (netif_msg_tx_err (dev))
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001151fail_pipe:
Joe Perches60b86752010-02-17 10:30:23 +00001152 netdev_err(dev->net, "can't clear tx halt, status %d\n",
1153 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 } else {
1155 clear_bit (EVENT_TX_HALT, &dev->flags);
David Brownellf29fc252005-08-31 09:52:31 -07001156 if (status != -ESHUTDOWN)
1157 netif_wake_queue (dev->net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 }
1159 }
1160 if (test_bit (EVENT_RX_HALT, &dev->flags)) {
1161 unlink_urbs (dev, &dev->rxq);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001162 status = usb_autopm_get_interface(dev->intf);
1163 if (status < 0)
1164 goto fail_halt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 status = usb_clear_halt (dev->udev, dev->in);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001166 usb_autopm_put_interface(dev->intf);
Joe Perches8e95a202009-12-03 07:58:21 +00001167 if (status < 0 &&
1168 status != -EPIPE &&
1169 status != -ESHUTDOWN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 if (netif_msg_rx_err (dev))
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001171fail_halt:
Joe Perches60b86752010-02-17 10:30:23 +00001172 netdev_err(dev->net, "can't clear rx halt, status %d\n",
1173 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 } else {
1175 clear_bit (EVENT_RX_HALT, &dev->flags);
1176 tasklet_schedule (&dev->bh);
1177 }
1178 }
1179
1180 /* tasklet could resubmit itself forever if memory is tight */
1181 if (test_bit (EVENT_RX_MEMORY, &dev->flags)) {
1182 struct urb *urb = NULL;
David S. Millerdacb3972010-08-10 02:50:55 -07001183 int resched = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184
1185 if (netif_running (dev->net))
1186 urb = usb_alloc_urb (0, GFP_KERNEL);
1187 else
1188 clear_bit (EVENT_RX_MEMORY, &dev->flags);
1189 if (urb != NULL) {
1190 clear_bit (EVENT_RX_MEMORY, &dev->flags);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001191 status = usb_autopm_get_interface(dev->intf);
Jesper Juhlab607072011-02-10 10:58:45 +00001192 if (status < 0) {
1193 usb_free_urb(urb);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001194 goto fail_lowmem;
Jesper Juhlab607072011-02-10 10:58:45 +00001195 }
David S. Millerdacb3972010-08-10 02:50:55 -07001196 if (rx_submit (dev, urb, GFP_KERNEL) == -ENOLINK)
1197 resched = 0;
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001198 usb_autopm_put_interface(dev->intf);
1199fail_lowmem:
David S. Millerdacb3972010-08-10 02:50:55 -07001200 if (resched)
1201 tasklet_schedule (&dev->bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 }
1203 }
1204
David Hollis7ea13c92005-04-22 15:07:02 -07001205 if (test_bit (EVENT_LINK_RESET, &dev->flags)) {
David Brownellcb1cebb2007-02-15 18:52:30 -08001206 struct driver_info *info = dev->driver_info;
David Hollis7ea13c92005-04-22 15:07:02 -07001207 int retval = 0;
1208
1209 clear_bit (EVENT_LINK_RESET, &dev->flags);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001210 status = usb_autopm_get_interface(dev->intf);
1211 if (status < 0)
1212 goto skip_reset;
David Hollis7ea13c92005-04-22 15:07:02 -07001213 if(info->link_reset && (retval = info->link_reset(dev)) < 0) {
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001214 usb_autopm_put_interface(dev->intf);
1215skip_reset:
Joe Perches60b86752010-02-17 10:30:23 +00001216 netdev_info(dev->net, "link reset failed (%d) usbnet usb-%s-%s, %s\n",
1217 retval,
1218 dev->udev->bus->bus_name,
1219 dev->udev->devpath,
1220 info->description);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001221 } else {
1222 usb_autopm_put_interface(dev->intf);
David Hollis7ea13c92005-04-22 15:07:02 -07001223 }
Ming Lei4b49f582013-04-11 04:40:40 +00001224
1225 /* handle link change from link resetting */
1226 __handle_link_change(dev);
David Hollis7ea13c92005-04-22 15:07:02 -07001227 }
1228
Ming Lei4b49f582013-04-11 04:40:40 +00001229 if (test_bit (EVENT_LINK_CHANGE, &dev->flags))
1230 __handle_link_change(dev);
1231
Olivier Blin1efed2d2014-10-24 19:43:00 +02001232 if (test_bit (EVENT_SET_RX_MODE, &dev->flags))
1233 __handle_set_rx_mode(dev);
1234
1235
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 if (dev->flags)
Joe Perches60b86752010-02-17 10:30:23 +00001237 netdev_dbg(dev->net, "kevent done, flags = 0x%lx\n", dev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238}
1239
1240/*-------------------------------------------------------------------------*/
1241
David Howells7d12e782006-10-05 14:55:46 +01001242static void tx_complete (struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243{
1244 struct sk_buff *skb = (struct sk_buff *) urb->context;
1245 struct skb_data *entry = (struct skb_data *) skb->cb;
1246 struct usbnet *dev = entry->dev;
1247
1248 if (urb->status == 0) {
Greg Ungererc8b5d122017-04-03 15:50:03 +10001249 struct pcpu_sw_netstats *stats64 = this_cpu_ptr(dev->stats64);
1250
1251 u64_stats_update_begin(&stats64->syncp);
1252 stats64->tx_packets += entry->packets;
1253 stats64->tx_bytes += entry->length;
1254 u64_stats_update_end(&stats64->syncp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 } else {
Herbert Xu79638372009-06-29 16:53:28 +00001256 dev->net->stats.tx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257
1258 switch (urb->status) {
1259 case -EPIPE:
David Brownell2e55cc72005-08-31 09:53:10 -07001260 usbnet_defer_kevent (dev, EVENT_TX_HALT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 break;
1262
1263 /* software-driven interface shutdown */
1264 case -ECONNRESET: // async unlink
1265 case -ESHUTDOWN: // hardware gone
1266 break;
1267
Petr Mladek37ebb542014-09-19 17:32:23 +02001268 /* like rx, tx gets controller i/o faults during hub_wq
1269 * delays and so it uses the same throttling mechanism.
1270 */
Pete Zaitcev38e2bfc2006-09-18 22:49:02 -07001271 case -EPROTO:
1272 case -ETIME:
1273 case -EILSEQ:
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001274 usb_mark_last_busy(dev->udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 if (!timer_pending (&dev->delay)) {
1276 mod_timer (&dev->delay,
1277 jiffies + THROTTLE_JIFFIES);
Joe Perchesa475f602010-02-17 10:30:24 +00001278 netif_dbg(dev, link, dev->net,
1279 "tx throttle %d\n", urb->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 }
1281 netif_stop_queue (dev->net);
1282 break;
1283 default:
Joe Perchesa475f602010-02-17 10:30:24 +00001284 netif_dbg(dev, tx_err, dev->net,
1285 "tx err %d\n", entry->urb->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 break;
1287 }
1288 }
1289
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001290 usb_autopm_put_interface_async(dev->intf);
Ming Lei5b6e9bc2012-04-26 11:33:46 +08001291 (void) defer_bh(dev, skb, &dev->txq, tx_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292}
1293
1294/*-------------------------------------------------------------------------*/
1295
Stephen Hemminger777baa42009-03-20 19:35:54 +00001296void usbnet_tx_timeout (struct net_device *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297{
1298 struct usbnet *dev = netdev_priv(net);
1299
1300 unlink_urbs (dev, &dev->txq);
1301 tasklet_schedule (&dev->bh);
Oliver Neukumdbcdd4d2014-08-01 14:01:51 +02001302 /* this needs to be handled individually because the generic layer
1303 * doesn't know what is sufficient and could not restore private
1304 * information if a remedy of an unconditional reset were used.
1305 */
1306 if (dev->driver_info->recover)
1307 (dev->driver_info->recover)(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308}
Stephen Hemminger777baa42009-03-20 19:35:54 +00001309EXPORT_SYMBOL_GPL(usbnet_tx_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310
1311/*-------------------------------------------------------------------------*/
1312
Ming Lei638c5112013-08-08 21:48:24 +08001313static int build_dma_sg(const struct sk_buff *skb, struct urb *urb)
1314{
1315 unsigned num_sgs, total_len = 0;
1316 int i, s = 0;
1317
1318 num_sgs = skb_shinfo(skb)->nr_frags + 1;
1319 if (num_sgs == 1)
1320 return 0;
1321
Ming Lei60e453a2013-09-23 20:59:35 +08001322 /* reserve one for zero packet */
1323 urb->sg = kmalloc((num_sgs + 1) * sizeof(struct scatterlist),
1324 GFP_ATOMIC);
Ming Lei638c5112013-08-08 21:48:24 +08001325 if (!urb->sg)
1326 return -ENOMEM;
1327
1328 urb->num_sgs = num_sgs;
Bjørn Morkfdc34522014-01-10 23:10:17 +01001329 sg_init_table(urb->sg, urb->num_sgs + 1);
Ming Lei638c5112013-08-08 21:48:24 +08001330
1331 sg_set_buf(&urb->sg[s++], skb->data, skb_headlen(skb));
1332 total_len += skb_headlen(skb);
1333
1334 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1335 struct skb_frag_struct *f = &skb_shinfo(skb)->frags[i];
1336
1337 total_len += skb_frag_size(f);
1338 sg_set_page(&urb->sg[i + s], f->page.p, f->size,
1339 f->page_offset);
1340 }
1341 urb->transfer_buffer_length = total_len;
1342
1343 return 1;
1344}
1345
Stephen Hemminger25a79c42009-08-31 19:50:45 +00001346netdev_tx_t usbnet_start_xmit (struct sk_buff *skb,
1347 struct net_device *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348{
1349 struct usbnet *dev = netdev_priv(net);
Jason A. Donenfeld3e4336a2015-05-06 15:09:40 +02001350 unsigned int length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 struct urb *urb = NULL;
1352 struct skb_data *entry;
1353 struct driver_info *info = dev->driver_info;
1354 unsigned long flags;
Stephen Hemminger25a79c42009-08-31 19:50:45 +00001355 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
Konstantin Khlebnikov23ba0792011-11-07 05:54:58 +00001357 if (skb)
1358 skb_tx_timestamp(skb);
Michael Rieschf9b491e2011-09-29 04:06:26 +00001359
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 // some devices want funky USB-level framing, for
1361 // win32 driver (usually) and/or hardware quirks
1362 if (info->tx_fixup) {
1363 skb = info->tx_fixup (dev, skb, GFP_ATOMIC);
1364 if (!skb) {
Bjørn Morkbf414b32013-01-31 08:36:05 +00001365 /* packet collected; minidriver waiting for more */
1366 if (info->flags & FLAG_MULTI_PACKET)
Alexey Orishko073285f2010-11-29 23:23:27 +00001367 goto not_drop;
Bjørn Morkbf414b32013-01-31 08:36:05 +00001368 netif_dbg(dev, tx_err, dev->net, "can't tx_fixup skb\n");
1369 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 }
1371 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
1373 if (!(urb = usb_alloc_urb (0, GFP_ATOMIC))) {
Joe Perchesa475f602010-02-17 10:30:24 +00001374 netif_dbg(dev, tx_err, dev->net, "no urb\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 goto drop;
1376 }
1377
1378 entry = (struct skb_data *) skb->cb;
1379 entry->urb = urb;
1380 entry->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 usb_fill_bulk_urb (urb, dev->udev, dev->out,
1383 skb->data, skb->len, tx_complete, skb);
Ming Lei638c5112013-08-08 21:48:24 +08001384 if (dev->can_dma_sg) {
1385 if (build_dma_sg(skb, urb) < 0)
1386 goto drop;
1387 }
Ming Lei60e453a2013-09-23 20:59:35 +08001388 length = urb->transfer_buffer_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389
1390 /* don't assume the hardware handles USB_ZERO_PACKET
1391 * NOTE: strictly conforming cdc-ether devices should expect
1392 * the ZLP here, but ignore the one-byte packet.
Alexey Orishko073285f2010-11-29 23:23:27 +00001393 * NOTE2: CDC NCM specification is different from CDC ECM when
1394 * handling ZLP/short packets, so cdc_ncm driver will make short
1395 * packet itself if needed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 */
Elina Pashevab4d562e32010-04-06 14:23:07 +00001397 if (length % dev->maxpacket == 0) {
1398 if (!(info->flags & FLAG_SEND_ZLP)) {
Alexey Orishko073285f2010-11-29 23:23:27 +00001399 if (!(info->flags & FLAG_MULTI_PACKET)) {
Ming Lei60e453a2013-09-23 20:59:35 +08001400 length++;
1401 if (skb_tailroom(skb) && !urb->num_sgs) {
Alexey Orishko073285f2010-11-29 23:23:27 +00001402 skb->data[skb->len] = 0;
1403 __skb_put(skb, 1);
Ming Lei60e453a2013-09-23 20:59:35 +08001404 } else if (urb->num_sgs)
1405 sg_set_buf(&urb->sg[urb->num_sgs++],
1406 dev->padding_pkt, 1);
Elina Pashevab4d562e32010-04-06 14:23:07 +00001407 }
1408 } else
1409 urb->transfer_flags |= URB_ZERO_PACKET;
Peter Korsgaard3e323f32007-06-27 08:48:15 +02001410 }
Ben Hutchings7a1e8902015-03-25 21:41:33 +01001411 urb->transfer_buffer_length = length;
1412
1413 if (info->flags & FLAG_MULTI_PACKET) {
1414 /* Driver has set number of packets and a length delta.
1415 * Calculate the complete length and ensure that it's
1416 * positive.
1417 */
1418 entry->length += length;
1419 if (WARN_ON_ONCE(entry->length <= 0))
1420 entry->length = length;
1421 } else {
1422 usbnet_set_skb_tx_stats(skb, 1, length);
1423 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001425 spin_lock_irqsave(&dev->txq.lock, flags);
1426 retval = usb_autopm_get_interface_async(dev->intf);
1427 if (retval < 0) {
1428 spin_unlock_irqrestore(&dev->txq.lock, flags);
1429 goto drop;
1430 }
1431
1432#ifdef CONFIG_PM
1433 /* if this triggers the device is still a sleep */
1434 if (test_bit(EVENT_DEV_ASLEEP, &dev->flags)) {
1435 /* transmission will be done in resume */
1436 usb_anchor_urb(urb, &dev->deferred);
1437 /* no use to process more packets */
1438 netif_stop_queue(net);
Hemant Kumar39707c22012-10-25 18:17:54 +00001439 usb_put_urb(urb);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001440 spin_unlock_irqrestore(&dev->txq.lock, flags);
Joe Perches60b86752010-02-17 10:30:23 +00001441 netdev_dbg(dev->net, "Delaying transmission for resumption\n");
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001442 goto deferred;
1443 }
1444#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 switch ((retval = usb_submit_urb (urb, GFP_ATOMIC))) {
1447 case -EPIPE:
1448 netif_stop_queue (net);
David Brownell2e55cc72005-08-31 09:53:10 -07001449 usbnet_defer_kevent (dev, EVENT_TX_HALT);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001450 usb_autopm_put_interface_async(dev->intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 break;
1452 default:
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001453 usb_autopm_put_interface_async(dev->intf);
Joe Perchesa475f602010-02-17 10:30:24 +00001454 netif_dbg(dev, tx_err, dev->net,
1455 "tx: submit urb err %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 break;
1457 case 0:
Florian Westphal860e9532016-05-03 16:33:13 +02001458 netif_trans_update(net);
Ming Lei5b6e9bc2012-04-26 11:33:46 +08001459 __usbnet_queue_skb(&dev->txq, skb, tx_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 if (dev->txq.qlen >= TX_QLEN (dev))
1461 netif_stop_queue (net);
1462 }
1463 spin_unlock_irqrestore (&dev->txq.lock, flags);
1464
1465 if (retval) {
Joe Perchesa475f602010-02-17 10:30:24 +00001466 netif_dbg(dev, tx_err, dev->net, "drop, code %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467drop:
Herbert Xu79638372009-06-29 16:53:28 +00001468 dev->net->stats.tx_dropped++;
Alexey Orishko073285f2010-11-29 23:23:27 +00001469not_drop:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 if (skb)
1471 dev_kfree_skb_any (skb);
Ming Lei638c5112013-08-08 21:48:24 +08001472 if (urb) {
1473 kfree(urb->sg);
1474 usb_free_urb(urb);
1475 }
Joe Perchesa475f602010-02-17 10:30:24 +00001476 } else
1477 netif_dbg(dev, tx_queued, dev->net,
Jason A. Donenfeld3e4336a2015-05-06 15:09:40 +02001478 "> tx, len %u, type 0x%x\n", length, skb->protocol);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001479#ifdef CONFIG_PM
1480deferred:
1481#endif
Stephen Hemminger25a79c42009-08-31 19:50:45 +00001482 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483}
Stephen Hemminger777baa42009-03-20 19:35:54 +00001484EXPORT_SYMBOL_GPL(usbnet_start_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485
Bjørn Mork85e87872012-09-02 22:26:18 +00001486static int rx_alloc_submit(struct usbnet *dev, gfp_t flags)
Ming Lei65841fd2012-06-19 21:15:53 +00001487{
1488 struct urb *urb;
1489 int i;
Bjørn Mork85e87872012-09-02 22:26:18 +00001490 int ret = 0;
Ming Lei65841fd2012-06-19 21:15:53 +00001491
1492 /* don't refill the queue all at once */
1493 for (i = 0; i < 10 && dev->rxq.qlen < RX_QLEN(dev); i++) {
1494 urb = usb_alloc_urb(0, flags);
1495 if (urb != NULL) {
Bjørn Mork85e87872012-09-02 22:26:18 +00001496 ret = rx_submit(dev, urb, flags);
1497 if (ret)
1498 goto err;
1499 } else {
1500 ret = -ENOMEM;
1501 goto err;
Ming Lei65841fd2012-06-19 21:15:53 +00001502 }
1503 }
Bjørn Mork85e87872012-09-02 22:26:18 +00001504err:
1505 return ret;
Ming Lei65841fd2012-06-19 21:15:53 +00001506}
1507
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508/*-------------------------------------------------------------------------*/
1509
1510// tasklet (work deferred from completions, in_irq) or timer
1511
1512static void usbnet_bh (unsigned long param)
1513{
1514 struct usbnet *dev = (struct usbnet *) param;
1515 struct sk_buff *skb;
1516 struct skb_data *entry;
1517
1518 while ((skb = skb_dequeue (&dev->done))) {
1519 entry = (struct skb_data *) skb->cb;
1520 switch (entry->state) {
David Brownell18ab4582007-05-25 12:31:32 -07001521 case rx_done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 entry->state = rx_cleanup;
1523 rx_process (dev, skb);
1524 continue;
David Brownell18ab4582007-05-25 12:31:32 -07001525 case tx_done:
Ming Lei638c5112013-08-08 21:48:24 +08001526 kfree(entry->urb->sg);
David Brownell18ab4582007-05-25 12:31:32 -07001527 case rx_cleanup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 usb_free_urb (entry->urb);
1529 dev_kfree_skb (skb);
1530 continue;
David Brownell18ab4582007-05-25 12:31:32 -07001531 default:
Joe Perches60b86752010-02-17 10:30:23 +00001532 netdev_dbg(dev->net, "bogus skb state %d\n", entry->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 }
1534 }
1535
Bjørn Mork70c37bf2013-01-28 23:51:28 +00001536 /* restart RX again after disabling due to high error rate */
1537 clear_bit(EVENT_RX_KILL, &dev->flags);
1538
Oliver Neukum14a0d632014-03-26 14:32:51 +01001539 /* waiting for all pending urbs to complete?
1540 * only then can we forgo submitting anew
1541 */
1542 if (waitqueue_active(&dev->wait)) {
1543 if (dev->txq.qlen + dev->rxq.qlen + dev->done.qlen == 0)
1544 wake_up_all(&dev->wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545
1546 // or are we maybe short a few urbs?
Joe Perches8e95a202009-12-03 07:58:21 +00001547 } else if (netif_running (dev->net) &&
1548 netif_device_present (dev->net) &&
Ming Lei4b49f582013-04-11 04:40:40 +00001549 netif_carrier_ok(dev->net) &&
Soohoon Lee43daa962016-06-29 15:07:21 -04001550 !timer_pending(&dev->delay) &&
1551 !test_bit(EVENT_RX_PAUSED, &dev->flags) &&
1552 !test_bit(EVENT_RX_HALT, &dev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 int temp = dev->rxq.qlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554
Ming Lei65841fd2012-06-19 21:15:53 +00001555 if (temp < RX_QLEN(dev)) {
Bjørn Mork85e87872012-09-02 22:26:18 +00001556 if (rx_alloc_submit(dev, GFP_ATOMIC) == -ENOLINK)
1557 return;
Joe Perchesa475f602010-02-17 10:30:24 +00001558 if (temp != dev->rxq.qlen)
1559 netif_dbg(dev, link, dev->net,
1560 "rxqlen %d --> %d\n",
1561 temp, dev->rxq.qlen);
Ming Lei65841fd2012-06-19 21:15:53 +00001562 if (dev->rxq.qlen < RX_QLEN(dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 tasklet_schedule (&dev->bh);
1564 }
1565 if (dev->txq.qlen < TX_QLEN (dev))
1566 netif_wake_queue (dev->net);
1567 }
1568}
1569
1570
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571/*-------------------------------------------------------------------------
1572 *
1573 * USB Device Driver support
1574 *
1575 *-------------------------------------------------------------------------*/
David Brownellcb1cebb2007-02-15 18:52:30 -08001576
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577// precondition: never called in_interrupt
1578
David Brownell38bde1d2005-08-31 09:52:45 -07001579void usbnet_disconnect (struct usb_interface *intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580{
1581 struct usbnet *dev;
1582 struct usb_device *xdev;
1583 struct net_device *net;
1584
1585 dev = usb_get_intfdata(intf);
1586 usb_set_intfdata(intf, NULL);
1587 if (!dev)
1588 return;
1589
1590 xdev = interface_to_usbdev (intf);
1591
Joe Perchesa475f602010-02-17 10:30:24 +00001592 netif_info(dev, probe, dev->net, "unregister '%s' usb-%s-%s, %s\n",
1593 intf->dev.driver->name,
1594 xdev->bus->bus_name, xdev->devpath,
1595 dev->driver_info->description);
David Brownellcb1cebb2007-02-15 18:52:30 -08001596
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 net = dev->net;
1598 unregister_netdev (net);
1599
Tejun Heo23f333a2010-12-12 16:45:14 +01001600 cancel_work_sync(&dev->kevent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601
Hemant Kumar39707c22012-10-25 18:17:54 +00001602 usb_scuttle_anchored_urbs(&dev->deferred);
1603
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 if (dev->driver_info->unbind)
1605 dev->driver_info->unbind (dev, intf);
1606
Paul Stewart68972ef2011-04-28 05:43:37 +00001607 usb_kill_urb(dev->interrupt);
1608 usb_free_urb(dev->interrupt);
Ming Lei60e453a2013-09-23 20:59:35 +08001609 kfree(dev->padding_pkt);
Paul Stewart68972ef2011-04-28 05:43:37 +00001610
Greg Ungererc8b5d122017-04-03 15:50:03 +10001611 free_percpu(dev->stats64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 free_netdev(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613}
David Brownell38bde1d2005-08-31 09:52:45 -07001614EXPORT_SYMBOL_GPL(usbnet_disconnect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615
Stephen Hemminger777baa42009-03-20 19:35:54 +00001616static const struct net_device_ops usbnet_netdev_ops = {
1617 .ndo_open = usbnet_open,
1618 .ndo_stop = usbnet_stop,
1619 .ndo_start_xmit = usbnet_start_xmit,
1620 .ndo_tx_timeout = usbnet_tx_timeout,
Olivier Blin1efed2d2014-10-24 19:43:00 +02001621 .ndo_set_rx_mode = usbnet_set_rx_mode,
Stephen Hemminger777baa42009-03-20 19:35:54 +00001622 .ndo_change_mtu = usbnet_change_mtu,
Greg Ungererc8b5d122017-04-03 15:50:03 +10001623 .ndo_get_stats64 = usbnet_get_stats64,
Stephen Hemminger777baa42009-03-20 19:35:54 +00001624 .ndo_set_mac_address = eth_mac_addr,
1625 .ndo_validate_addr = eth_validate_addr,
1626};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627
1628/*-------------------------------------------------------------------------*/
1629
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630// precondition: never called in_interrupt
1631
Marcel Holtmann225794f2009-10-02 05:15:26 +00001632static struct device_type wlan_type = {
1633 .name = "wlan",
1634};
1635
1636static struct device_type wwan_type = {
1637 .name = "wwan",
1638};
1639
David Brownell38bde1d2005-08-31 09:52:45 -07001640int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641usbnet_probe (struct usb_interface *udev, const struct usb_device_id *prod)
1642{
1643 struct usbnet *dev;
David Brownellcb1cebb2007-02-15 18:52:30 -08001644 struct net_device *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 struct usb_host_interface *interface;
1646 struct driver_info *info;
1647 struct usb_device *xdev;
1648 int status;
David Brownell296c0242007-04-17 16:10:10 -07001649 const char *name;
Ming Leib0786b42010-11-01 07:11:54 -07001650 struct usb_driver *driver = to_usb_driver(udev->dev.driver);
1651
1652 /* usbnet already took usb runtime pm, so have to enable the feature
1653 * for usb interface, otherwise usb_autopm_get_interface may return
Alan Stern98f541c2013-05-01 12:13:54 -04001654 * failure if RUNTIME_PM is enabled.
Ming Leib0786b42010-11-01 07:11:54 -07001655 */
1656 if (!driver->supports_autosuspend) {
1657 driver->supports_autosuspend = 1;
1658 pm_runtime_enable(&udev->dev);
1659 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660
David Brownell296c0242007-04-17 16:10:10 -07001661 name = udev->dev.driver->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 info = (struct driver_info *) prod->driver_info;
1663 if (!info) {
David Brownell296c0242007-04-17 16:10:10 -07001664 dev_dbg (&udev->dev, "blacklisted by %s\n", name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 return -ENODEV;
1666 }
1667 xdev = interface_to_usbdev (udev);
1668 interface = udev->cur_altsetting;
1669
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 status = -ENOMEM;
1671
1672 // set up our own records
1673 net = alloc_etherdev(sizeof(*dev));
Joe Perches41de8d42012-01-29 13:47:52 +00001674 if (!net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676
Ben Hutchings0dacca72010-07-02 21:49:02 -07001677 /* netdev_printk() needs this so do it as early as possible */
1678 SET_NETDEV_DEV(net, &udev->dev);
1679
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 dev = netdev_priv(net);
1681 dev->udev = xdev;
Oliver Neukuma11a6542007-08-03 13:52:19 +02001682 dev->intf = udev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 dev->driver_info = info;
David Brownell296c0242007-04-17 16:10:10 -07001684 dev->driver_name = name;
Greg Ungererc8b5d122017-04-03 15:50:03 +10001685
1686 dev->stats64 = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
1687 if (!dev->stats64)
1688 goto out0;
1689
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 dev->msg_enable = netif_msg_init (msg_level, NETIF_MSG_DRV
1691 | NETIF_MSG_PROBE | NETIF_MSG_LINK);
Oliver Neukum14a0d632014-03-26 14:32:51 +01001692 init_waitqueue_head(&dev->wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 skb_queue_head_init (&dev->rxq);
1694 skb_queue_head_init (&dev->txq);
1695 skb_queue_head_init (&dev->done);
Jussi Kivilinna7834ddb2009-08-11 22:57:16 +03001696 skb_queue_head_init(&dev->rxq_pause);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 dev->bh.func = usbnet_bh;
1698 dev->bh.data = (unsigned long) dev;
Oliver Neukum11f17ef2015-04-09 10:09:04 +02001699 INIT_WORK (&dev->kevent, usbnet_deferred_kevent);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001700 init_usb_anchor(&dev->deferred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 dev->delay.function = usbnet_bh;
1702 dev->delay.data = (unsigned long) dev;
1703 init_timer (&dev->delay);
Arnd Bergmanna9fc6332006-10-09 00:08:02 +02001704 mutex_init (&dev->phy_mutex);
Dan Williams6eecdc52013-05-06 11:29:23 +00001705 mutex_init(&dev->interrupt_mutex);
1706 dev->interrupt_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 dev->net = net;
1709 strcpy (net->name, "usb%d");
1710 memcpy (net->dev_addr, node_id, sizeof node_id);
1711
David Brownell2e55cc72005-08-31 09:53:10 -07001712 /* rx and tx sides can use different message sizes;
1713 * bind() should set rx_urb_size in that case.
1714 */
1715 dev->hard_mtu = net->mtu + net->hard_header_len;
Jarod Wilsonf77f0ae2016-10-20 13:55:17 -04001716 net->min_mtu = 0;
1717 net->max_mtu = ETH_MAX_MTU;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718
Stephen Hemminger777baa42009-03-20 19:35:54 +00001719 net->netdev_ops = &usbnet_netdev_ops;
Stephen Hemminger777baa42009-03-20 19:35:54 +00001720 net->watchdog_timeo = TX_TIMEOUT_JIFFIES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 net->ethtool_ops = &usbnet_ethtool_ops;
1722
1723 // allow device-specific bind/init procedures
1724 // NOTE net->name still not usable ...
1725 if (info->bind) {
1726 status = info->bind (dev, udev);
David Brownellcb1cebb2007-02-15 18:52:30 -08001727 if (status < 0)
1728 goto out1;
1729
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 // heuristic: "usb%d" for links we know are two-host,
1731 // else "eth%d" when there's reasonable doubt. userspace
1732 // can rename the link if it knows better.
Joe Perches8e95a202009-12-03 07:58:21 +00001733 if ((dev->driver_info->flags & FLAG_ETHER) != 0 &&
Arnd Bergmannc2613442011-04-01 20:12:02 -07001734 ((dev->driver_info->flags & FLAG_POINTTOPOINT) == 0 ||
1735 (net->dev_addr [0] & 0x02) == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 strcpy (net->name, "eth%d");
Jussi Kivilinna6e3bbcc2008-01-26 00:51:06 +02001737 /* WLAN devices should always be named "wlan%d" */
1738 if ((dev->driver_info->flags & FLAG_WLAN) != 0)
1739 strcpy(net->name, "wlan%d");
Marcel Holtmanne1e499e2009-10-02 05:15:25 +00001740 /* WWAN devices should always be named "wwan%d" */
1741 if ((dev->driver_info->flags & FLAG_WWAN) != 0)
1742 strcpy(net->name, "wwan%d");
David Brownellf29fc252005-08-31 09:52:31 -07001743
Wei Shuai65091412013-01-21 06:00:31 +00001744 /* devices that cannot do ARP */
1745 if ((dev->driver_info->flags & FLAG_NOARP) != 0)
1746 net->flags |= IFF_NOARP;
1747
David Brownellf29fc252005-08-31 09:52:31 -07001748 /* maybe the remote can't receive an Ethernet MTU */
1749 if (net->mtu > (dev->hard_mtu - net->hard_header_len))
1750 net->mtu = dev->hard_mtu - net->hard_header_len;
David Brownell2e55cc72005-08-31 09:53:10 -07001751 } else if (!info->in || !info->out)
1752 status = usbnet_get_endpoints (dev, udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 else {
1754 dev->in = usb_rcvbulkpipe (xdev, info->in);
1755 dev->out = usb_sndbulkpipe (xdev, info->out);
1756 if (!(info->flags & FLAG_NO_SETINT))
1757 status = usb_set_interface (xdev,
1758 interface->desc.bInterfaceNumber,
1759 interface->desc.bAlternateSetting);
1760 else
1761 status = 0;
1762
1763 }
Peter Korsgaard9514bfe2007-07-03 00:46:42 +02001764 if (status >= 0 && dev->status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 status = init_status (dev, udev);
1766 if (status < 0)
David Brownellcb1cebb2007-02-15 18:52:30 -08001767 goto out3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768
David Brownell2e55cc72005-08-31 09:53:10 -07001769 if (!dev->rx_urb_size)
1770 dev->rx_urb_size = dev->hard_mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 dev->maxpacket = usb_maxpacket (dev->udev, dev->out, 1);
David Brownellcb1cebb2007-02-15 18:52:30 -08001772
Bjørn Morkeef23b52013-09-04 09:42:32 +02001773 /* let userspace know we have a random address */
1774 if (ether_addr_equal(net->dev_addr, node_id))
1775 net->addr_assign_type = NET_ADDR_RANDOM;
1776
Marcel Holtmann225794f2009-10-02 05:15:26 +00001777 if ((dev->driver_info->flags & FLAG_WLAN) != 0)
1778 SET_NETDEV_DEVTYPE(net, &wlan_type);
1779 if ((dev->driver_info->flags & FLAG_WWAN) != 0)
1780 SET_NETDEV_DEVTYPE(net, &wwan_type);
1781
Ming Leia88c32a2013-07-25 13:47:53 +08001782 /* initialize max rx_qlen and tx_qlen */
1783 usbnet_update_max_qlen(dev);
1784
Ming Lei60e453a2013-09-23 20:59:35 +08001785 if (dev->can_dma_sg && !(info->flags & FLAG_SEND_ZLP) &&
1786 !(info->flags & FLAG_MULTI_PACKET)) {
1787 dev->padding_pkt = kzalloc(1, GFP_KERNEL);
Wei Yongjun09b69022013-10-12 14:24:08 +08001788 if (!dev->padding_pkt) {
1789 status = -ENOMEM;
Ming Lei60e453a2013-09-23 20:59:35 +08001790 goto out4;
Wei Yongjun09b69022013-10-12 14:24:08 +08001791 }
Ming Lei60e453a2013-09-23 20:59:35 +08001792 }
1793
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 status = register_netdev (net);
1795 if (status)
Ming Lei60e453a2013-09-23 20:59:35 +08001796 goto out5;
Joe Perchesa475f602010-02-17 10:30:24 +00001797 netif_info(dev, probe, dev->net,
1798 "register '%s' at usb-%s-%s, %s, %pM\n",
1799 udev->dev.driver->name,
1800 xdev->bus->bus_name, xdev->devpath,
1801 dev->driver_info->description,
1802 net->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803
1804 // ok, it's ready to go.
1805 usb_set_intfdata (udev, dev);
1806
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 netif_device_attach (net);
1808
Ben Hutchings37e82732009-11-04 15:29:52 +00001809 if (dev->driver_info->flags & FLAG_LINK_INTR)
Ming Lei0162c552013-04-11 04:40:39 +00001810 usbnet_link_change(dev, 0, 0);
Ben Hutchings37e82732009-11-04 15:29:52 +00001811
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 return 0;
1813
Ming Lei60e453a2013-09-23 20:59:35 +08001814out5:
1815 kfree(dev->padding_pkt);
tom.leiming@gmail.coma4723842012-04-29 22:51:03 +00001816out4:
1817 usb_free_urb(dev->interrupt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818out3:
1819 if (info->unbind)
1820 info->unbind (dev, udev);
1821out1:
Oliver Neukum16669842016-03-07 11:31:10 +01001822 /* subdrivers must undo all they did in bind() if they
1823 * fail it, but we may fail later and a deferred kevent
1824 * may trigger an error resubmitting itself and, worse,
1825 * schedule a timer. So we kill it all just in case.
1826 */
1827 cancel_work_sync(&dev->kevent);
1828 del_timer_sync(&dev->delay);
Greg Ungererc8b5d122017-04-03 15:50:03 +10001829 free_percpu(dev->stats64);
1830out0:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 free_netdev(net);
1832out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 return status;
1834}
David Brownell38bde1d2005-08-31 09:52:45 -07001835EXPORT_SYMBOL_GPL(usbnet_probe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836
1837/*-------------------------------------------------------------------------*/
1838
Oliver Neukum36433122007-04-30 01:37:44 -07001839/*
1840 * suspend the whole driver as soon as the first interface is suspended
1841 * resume only when the last interface is resumed
David Brownell38bde1d2005-08-31 09:52:45 -07001842 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843
David Brownell38bde1d2005-08-31 09:52:45 -07001844int usbnet_suspend (struct usb_interface *intf, pm_message_t message)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845{
1846 struct usbnet *dev = usb_get_intfdata(intf);
David Brownellcb1cebb2007-02-15 18:52:30 -08001847
Oliver Neukum36433122007-04-30 01:37:44 -07001848 if (!dev->suspend_count++) {
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001849 spin_lock_irq(&dev->txq.lock);
1850 /* don't autosuspend while transmitting */
Alan Stern5b1b0b82011-08-19 23:49:48 +02001851 if (dev->txq.qlen && PMSG_IS_AUTO(message)) {
Ming Lei5eeb3132012-06-19 21:15:52 +00001852 dev->suspend_count--;
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001853 spin_unlock_irq(&dev->txq.lock);
1854 return -EBUSY;
1855 } else {
1856 set_bit(EVENT_DEV_ASLEEP, &dev->flags);
1857 spin_unlock_irq(&dev->txq.lock);
1858 }
Oliver Neukuma11a6542007-08-03 13:52:19 +02001859 /*
1860 * accelerate emptying of the rx and queues, to avoid
Oliver Neukum36433122007-04-30 01:37:44 -07001861 * having everything error out.
1862 */
1863 netif_device_detach (dev->net);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001864 usbnet_terminate_urbs(dev);
Dan Williams6eecdc52013-05-06 11:29:23 +00001865 __usbnet_status_stop_force(dev);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001866
Oliver Neukuma11a6542007-08-03 13:52:19 +02001867 /*
1868 * reattach so runtime management can use and
1869 * wake the device
1870 */
1871 netif_device_attach (dev->net);
Oliver Neukum36433122007-04-30 01:37:44 -07001872 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 return 0;
1874}
David Brownell38bde1d2005-08-31 09:52:45 -07001875EXPORT_SYMBOL_GPL(usbnet_suspend);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876
David Brownell38bde1d2005-08-31 09:52:45 -07001877int usbnet_resume (struct usb_interface *intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878{
1879 struct usbnet *dev = usb_get_intfdata(intf);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001880 struct sk_buff *skb;
1881 struct urb *res;
1882 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001884 if (!--dev->suspend_count) {
Dan Williams6eecdc52013-05-06 11:29:23 +00001885 /* resume interrupt URB if it was previously submitted */
1886 __usbnet_status_start_force(dev, GFP_NOIO);
Paul Stewart68972ef2011-04-28 05:43:37 +00001887
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001888 spin_lock_irq(&dev->txq.lock);
1889 while ((res = usb_get_from_anchor(&dev->deferred))) {
1890
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001891 skb = (struct sk_buff *)res->context;
1892 retval = usb_submit_urb(res, GFP_ATOMIC);
1893 if (retval < 0) {
1894 dev_kfree_skb_any(skb);
Ming Lei638c5112013-08-08 21:48:24 +08001895 kfree(res->sg);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001896 usb_free_urb(res);
1897 usb_autopm_put_interface_async(dev->intf);
1898 } else {
Florian Westphal860e9532016-05-03 16:33:13 +02001899 netif_trans_update(dev->net);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001900 __skb_queue_tail(&dev->txq, skb);
1901 }
1902 }
1903
1904 smp_mb();
1905 clear_bit(EVENT_DEV_ASLEEP, &dev->flags);
1906 spin_unlock_irq(&dev->txq.lock);
Ming Lei75bd0cb2011-04-28 22:37:09 +00001907
1908 if (test_bit(EVENT_DEV_OPEN, &dev->flags)) {
Oliver Neukum14a0d632014-03-26 14:32:51 +01001909 /* handle remote wakeup ASAP
1910 * we cannot race against stop
1911 */
1912 if (netif_device_present(dev->net) &&
Ming Lei65841fd2012-06-19 21:15:53 +00001913 !timer_pending(&dev->delay) &&
1914 !test_bit(EVENT_RX_HALT, &dev->flags))
Oliver Neukumab6f1482012-08-26 20:41:38 +00001915 rx_alloc_submit(dev, GFP_NOIO);
Ming Lei65841fd2012-06-19 21:15:53 +00001916
Ming Lei75bd0cb2011-04-28 22:37:09 +00001917 if (!(dev->txq.qlen >= TX_QLEN(dev)))
Alexey Orishko1aa9bc52012-03-14 04:00:24 +00001918 netif_tx_wake_all_queues(dev->net);
Ming Lei75bd0cb2011-04-28 22:37:09 +00001919 tasklet_schedule (&dev->bh);
1920 }
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001921 }
Oliver Neukum5d9d01a2012-10-11 02:50:10 +00001922
1923 if (test_and_clear_bit(EVENT_DEVICE_REPORT_IDLE, &dev->flags))
1924 usb_autopm_get_interface_no_resume(intf);
1925
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 return 0;
1927}
David Brownell38bde1d2005-08-31 09:52:45 -07001928EXPORT_SYMBOL_GPL(usbnet_resume);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929
Oliver Neukum5d9d01a2012-10-11 02:50:10 +00001930/*
1931 * Either a subdriver implements manage_power, then it is assumed to always
1932 * be ready to be suspended or it reports the readiness to be suspended
1933 * explicitly
1934 */
1935void usbnet_device_suggests_idle(struct usbnet *dev)
1936{
1937 if (!test_and_set_bit(EVENT_DEVICE_REPORT_IDLE, &dev->flags)) {
1938 dev->intf->needs_remote_wakeup = 1;
1939 usb_autopm_put_interface_async(dev->intf);
1940 }
1941}
1942EXPORT_SYMBOL(usbnet_device_suggests_idle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943
Oliver Neukum2dd7c8c2012-12-18 04:45:52 +00001944/*
1945 * For devices that can do without special commands
1946 */
1947int usbnet_manage_power(struct usbnet *dev, int on)
1948{
1949 dev->intf->needs_remote_wakeup = on;
1950 return 0;
1951}
1952EXPORT_SYMBOL(usbnet_manage_power);
1953
Ming Leiac649952013-04-11 04:40:30 +00001954void usbnet_link_change(struct usbnet *dev, bool link, bool need_reset)
1955{
1956 /* update link after link is reseted */
1957 if (link && !need_reset)
1958 netif_carrier_on(dev->net);
1959 else
1960 netif_carrier_off(dev->net);
1961
1962 if (need_reset && link)
1963 usbnet_defer_kevent(dev, EVENT_LINK_RESET);
Ming Lei4b49f582013-04-11 04:40:40 +00001964 else
1965 usbnet_defer_kevent(dev, EVENT_LINK_CHANGE);
Ming Leiac649952013-04-11 04:40:30 +00001966}
1967EXPORT_SYMBOL(usbnet_link_change);
1968
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969/*-------------------------------------------------------------------------*/
Ming Lei0547fad2012-11-06 04:53:04 +00001970static int __usbnet_read_cmd(struct usbnet *dev, u8 cmd, u8 reqtype,
1971 u16 value, u16 index, void *data, u16 size)
Ming Lei877bd862012-10-24 19:46:54 +00001972{
1973 void *buf = NULL;
1974 int err = -ENOMEM;
1975
1976 netdev_dbg(dev->net, "usbnet_read_cmd cmd=0x%02x reqtype=%02x"
1977 " value=0x%04x index=0x%04x size=%d\n",
1978 cmd, reqtype, value, index, size);
1979
Oliver Neukum6c22fce2017-04-05 14:14:39 +02001980 if (size) {
Ming Lei877bd862012-10-24 19:46:54 +00001981 buf = kmalloc(size, GFP_KERNEL);
1982 if (!buf)
1983 goto out;
1984 }
1985
1986 err = usb_control_msg(dev->udev, usb_rcvctrlpipe(dev->udev, 0),
1987 cmd, reqtype, value, index, buf, size,
1988 USB_CTRL_GET_TIMEOUT);
Oliver Neukum6c22fce2017-04-05 14:14:39 +02001989 if (err > 0 && err <= size) {
1990 if (data)
1991 memcpy(data, buf, err);
1992 else
1993 netdev_dbg(dev->net,
1994 "Huh? Data requested but thrown away.\n");
1995 }
Ming Lei877bd862012-10-24 19:46:54 +00001996 kfree(buf);
1997out:
1998 return err;
1999}
Ming Lei877bd862012-10-24 19:46:54 +00002000
Ming Lei0547fad2012-11-06 04:53:04 +00002001static int __usbnet_write_cmd(struct usbnet *dev, u8 cmd, u8 reqtype,
2002 u16 value, u16 index, const void *data,
2003 u16 size)
Ming Lei877bd862012-10-24 19:46:54 +00002004{
2005 void *buf = NULL;
2006 int err = -ENOMEM;
2007
2008 netdev_dbg(dev->net, "usbnet_write_cmd cmd=0x%02x reqtype=%02x"
2009 " value=0x%04x index=0x%04x size=%d\n",
2010 cmd, reqtype, value, index, size);
2011
2012 if (data) {
2013 buf = kmemdup(data, size, GFP_KERNEL);
2014 if (!buf)
2015 goto out;
Oliver Neukum6c22fce2017-04-05 14:14:39 +02002016 } else {
2017 if (size) {
2018 WARN_ON_ONCE(1);
2019 err = -EINVAL;
2020 goto out;
2021 }
2022 }
Ming Lei877bd862012-10-24 19:46:54 +00002023
2024 err = usb_control_msg(dev->udev, usb_sndctrlpipe(dev->udev, 0),
2025 cmd, reqtype, value, index, buf, size,
2026 USB_CTRL_SET_TIMEOUT);
2027 kfree(buf);
2028
2029out:
2030 return err;
2031}
Ming Lei0547fad2012-11-06 04:53:04 +00002032
2033/*
2034 * The function can't be called inside suspend/resume callback,
2035 * otherwise deadlock will be caused.
2036 */
2037int usbnet_read_cmd(struct usbnet *dev, u8 cmd, u8 reqtype,
2038 u16 value, u16 index, void *data, u16 size)
2039{
Ming Lei6f0a0982012-11-06 04:53:08 +00002040 int ret;
2041
2042 if (usb_autopm_get_interface(dev->intf) < 0)
2043 return -ENODEV;
2044 ret = __usbnet_read_cmd(dev, cmd, reqtype, value, index,
2045 data, size);
2046 usb_autopm_put_interface(dev->intf);
2047 return ret;
Ming Lei0547fad2012-11-06 04:53:04 +00002048}
2049EXPORT_SYMBOL_GPL(usbnet_read_cmd);
2050
2051/*
2052 * The function can't be called inside suspend/resume callback,
2053 * otherwise deadlock will be caused.
2054 */
2055int usbnet_write_cmd(struct usbnet *dev, u8 cmd, u8 reqtype,
2056 u16 value, u16 index, const void *data, u16 size)
2057{
Ming Lei6f0a0982012-11-06 04:53:08 +00002058 int ret;
2059
2060 if (usb_autopm_get_interface(dev->intf) < 0)
2061 return -ENODEV;
2062 ret = __usbnet_write_cmd(dev, cmd, reqtype, value, index,
2063 data, size);
2064 usb_autopm_put_interface(dev->intf);
2065 return ret;
Ming Lei0547fad2012-11-06 04:53:04 +00002066}
Ming Lei877bd862012-10-24 19:46:54 +00002067EXPORT_SYMBOL_GPL(usbnet_write_cmd);
2068
Ming Lei0547fad2012-11-06 04:53:04 +00002069/*
2070 * The function can be called inside suspend/resume callback safely
2071 * and should only be called by suspend/resume callback generally.
2072 */
2073int usbnet_read_cmd_nopm(struct usbnet *dev, u8 cmd, u8 reqtype,
2074 u16 value, u16 index, void *data, u16 size)
2075{
2076 return __usbnet_read_cmd(dev, cmd, reqtype, value, index,
2077 data, size);
2078}
2079EXPORT_SYMBOL_GPL(usbnet_read_cmd_nopm);
2080
2081/*
2082 * The function can be called inside suspend/resume callback safely
2083 * and should only be called by suspend/resume callback generally.
2084 */
2085int usbnet_write_cmd_nopm(struct usbnet *dev, u8 cmd, u8 reqtype,
2086 u16 value, u16 index, const void *data,
2087 u16 size)
2088{
2089 return __usbnet_write_cmd(dev, cmd, reqtype, value, index,
2090 data, size);
2091}
2092EXPORT_SYMBOL_GPL(usbnet_write_cmd_nopm);
2093
Ming Lei877bd862012-10-24 19:46:54 +00002094static void usbnet_async_cmd_cb(struct urb *urb)
2095{
2096 struct usb_ctrlrequest *req = (struct usb_ctrlrequest *)urb->context;
2097 int status = urb->status;
2098
2099 if (status < 0)
2100 dev_dbg(&urb->dev->dev, "%s failed with %d",
2101 __func__, status);
2102
2103 kfree(req);
2104 usb_free_urb(urb);
2105}
2106
Ming Lei0547fad2012-11-06 04:53:04 +00002107/*
2108 * The caller must make sure that device can't be put into suspend
2109 * state until the control URB completes.
2110 */
Ming Lei877bd862012-10-24 19:46:54 +00002111int usbnet_write_cmd_async(struct usbnet *dev, u8 cmd, u8 reqtype,
2112 u16 value, u16 index, const void *data, u16 size)
2113{
2114 struct usb_ctrlrequest *req = NULL;
2115 struct urb *urb;
2116 int err = -ENOMEM;
2117 void *buf = NULL;
2118
2119 netdev_dbg(dev->net, "usbnet_write_cmd cmd=0x%02x reqtype=%02x"
2120 " value=0x%04x index=0x%04x size=%d\n",
2121 cmd, reqtype, value, index, size);
2122
2123 urb = usb_alloc_urb(0, GFP_ATOMIC);
Wolfram Sangef6cd132016-08-11 23:05:28 +02002124 if (!urb)
Ming Lei877bd862012-10-24 19:46:54 +00002125 goto fail;
Ming Lei877bd862012-10-24 19:46:54 +00002126
2127 if (data) {
2128 buf = kmemdup(data, size, GFP_ATOMIC);
2129 if (!buf) {
2130 netdev_err(dev->net, "Error allocating buffer"
2131 " in %s!\n", __func__);
2132 goto fail_free;
2133 }
2134 }
2135
2136 req = kmalloc(sizeof(struct usb_ctrlrequest), GFP_ATOMIC);
Joe Perches38673c82013-02-03 17:28:11 +00002137 if (!req)
Ming Lei877bd862012-10-24 19:46:54 +00002138 goto fail_free_buf;
Ming Lei877bd862012-10-24 19:46:54 +00002139
2140 req->bRequestType = reqtype;
2141 req->bRequest = cmd;
2142 req->wValue = cpu_to_le16(value);
2143 req->wIndex = cpu_to_le16(index);
2144 req->wLength = cpu_to_le16(size);
2145
2146 usb_fill_control_urb(urb, dev->udev,
2147 usb_sndctrlpipe(dev->udev, 0),
2148 (void *)req, buf, size,
2149 usbnet_async_cmd_cb, req);
2150 urb->transfer_flags |= URB_FREE_BUFFER;
2151
2152 err = usb_submit_urb(urb, GFP_ATOMIC);
2153 if (err < 0) {
2154 netdev_err(dev->net, "Error submitting the control"
2155 " message: status=%d\n", err);
2156 goto fail_free;
2157 }
2158 return 0;
2159
2160fail_free_buf:
2161 kfree(buf);
2162fail_free:
2163 kfree(req);
2164 usb_free_urb(urb);
2165fail:
2166 return err;
2167
2168}
2169EXPORT_SYMBOL_GPL(usbnet_write_cmd_async);
2170/*-------------------------------------------------------------------------*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171
David Brownellf29fc252005-08-31 09:52:31 -07002172static int __init usbnet_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173{
Thiago Farinac582a952011-04-17 17:49:21 -07002174 /* Compiler should optimize this out. */
2175 BUILD_BUG_ON(
2176 FIELD_SIZEOF(struct sk_buff, cb) < sizeof(struct skb_data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177
Joe Perchesc7e12ea2012-07-12 19:33:07 +00002178 eth_random_addr(node_id);
David Brownellcb1cebb2007-02-15 18:52:30 -08002179 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180}
David Brownellf29fc252005-08-31 09:52:31 -07002181module_init(usbnet_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182
David Brownellf29fc252005-08-31 09:52:31 -07002183static void __exit usbnet_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185}
David Brownellf29fc252005-08-31 09:52:31 -07002186module_exit(usbnet_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187
David Brownellf29fc252005-08-31 09:52:31 -07002188MODULE_AUTHOR("David Brownell");
David Brownell090ffa92005-08-31 09:54:50 -07002189MODULE_DESCRIPTION("USB network driver framework");
David Brownellf29fc252005-08-31 09:52:31 -07002190MODULE_LICENSE("GPL");