blob: 79048e72c1bd7d2f6c54b1a17efadc283571c408 [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
959 return mii_ethtool_get_link_ksettings(&dev->mii, cmd);
960}
961EXPORT_SYMBOL_GPL(usbnet_get_link_ksettings);
962
963int usbnet_set_link_ksettings(struct net_device *net,
964 const struct ethtool_link_ksettings *cmd)
965{
966 struct usbnet *dev = netdev_priv(net);
967 int retval;
968
969 if (!dev->mii.mdio_write)
970 return -EOPNOTSUPP;
971
972 retval = mii_ethtool_set_link_ksettings(&dev->mii, cmd);
973
974 /* link speed/duplex might have changed */
975 if (dev->driver_info->link_reset)
976 dev->driver_info->link_reset(dev);
977
978 /* hard_mtu or rx_urb_size may change in link_reset() */
979 usbnet_update_max_qlen(dev);
980
981 return retval;
982}
983EXPORT_SYMBOL_GPL(usbnet_set_link_ksettings);
984
Greg Ungererc8b5d122017-04-03 15:50:03 +1000985void usbnet_get_stats64(struct net_device *net, struct rtnl_link_stats64 *stats)
986{
987 struct usbnet *dev = netdev_priv(net);
988 unsigned int start;
989 int cpu;
990
991 netdev_stats_to_stats64(stats, &net->stats);
992
993 for_each_possible_cpu(cpu) {
994 struct pcpu_sw_netstats *stats64;
995 u64 rx_packets, rx_bytes;
996 u64 tx_packets, tx_bytes;
997
998 stats64 = per_cpu_ptr(dev->stats64, cpu);
999
1000 do {
1001 start = u64_stats_fetch_begin_irq(&stats64->syncp);
1002 rx_packets = stats64->rx_packets;
1003 rx_bytes = stats64->rx_bytes;
1004 tx_packets = stats64->tx_packets;
1005 tx_bytes = stats64->tx_bytes;
1006 } while (u64_stats_fetch_retry_irq(&stats64->syncp, start));
1007
1008 stats->rx_packets += rx_packets;
1009 stats->rx_bytes += rx_bytes;
1010 stats->tx_packets += tx_packets;
1011 stats->tx_bytes += tx_bytes;
1012 }
1013}
1014EXPORT_SYMBOL_GPL(usbnet_get_stats64);
1015
Arnd Bergmannc41286f2006-10-09 00:08:01 +02001016u32 usbnet_get_link (struct net_device *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017{
1018 struct usbnet *dev = netdev_priv(net);
1019
David Brownellf29fc252005-08-31 09:52:31 -07001020 /* If a check_connect is defined, return its result */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 if (dev->driver_info->check_connect)
1022 return dev->driver_info->check_connect (dev) == 0;
1023
Arnd Bergmannc41286f2006-10-09 00:08:01 +02001024 /* if the device has mii operations, use those */
1025 if (dev->mii.mdio_read)
1026 return mii_link_ok(&dev->mii);
1027
Bjørn Mork05ffb3e2009-03-01 20:45:40 -08001028 /* Otherwise, dtrt for drivers calling netif_carrier_{on,off} */
1029 return ethtool_op_get_link(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030}
Arnd Bergmannc41286f2006-10-09 00:08:01 +02001031EXPORT_SYMBOL_GPL(usbnet_get_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
David Brownell18ee91fa2006-11-02 12:29:12 -08001033int usbnet_nway_reset(struct net_device *net)
1034{
1035 struct usbnet *dev = netdev_priv(net);
1036
1037 if (!dev->mii.mdio_write)
1038 return -EOPNOTSUPP;
1039
1040 return mii_nway_restart(&dev->mii);
1041}
1042EXPORT_SYMBOL_GPL(usbnet_nway_reset);
1043
David Brownell18ee91fa2006-11-02 12:29:12 -08001044void usbnet_get_drvinfo (struct net_device *net, struct ethtool_drvinfo *info)
1045{
1046 struct usbnet *dev = netdev_priv(net);
1047
Phil Sutter86a2f412012-06-14 01:18:42 +00001048 strlcpy (info->driver, dev->driver_name, sizeof info->driver);
1049 strlcpy (info->version, DRIVER_VERSION, sizeof info->version);
1050 strlcpy (info->fw_version, dev->driver_info->description,
David Brownell18ee91fa2006-11-02 12:29:12 -08001051 sizeof info->fw_version);
1052 usb_make_path (dev->udev, info->bus_info, sizeof info->bus_info);
1053}
1054EXPORT_SYMBOL_GPL(usbnet_get_drvinfo);
1055
David Brownell2e55cc72005-08-31 09:53:10 -07001056u32 usbnet_get_msglevel (struct net_device *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057{
1058 struct usbnet *dev = netdev_priv(net);
1059
1060 return dev->msg_enable;
1061}
David Brownell2e55cc72005-08-31 09:53:10 -07001062EXPORT_SYMBOL_GPL(usbnet_get_msglevel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063
David Brownell2e55cc72005-08-31 09:53:10 -07001064void usbnet_set_msglevel (struct net_device *net, u32 level)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065{
1066 struct usbnet *dev = netdev_priv(net);
1067
1068 dev->msg_enable = level;
1069}
David Brownell2e55cc72005-08-31 09:53:10 -07001070EXPORT_SYMBOL_GPL(usbnet_set_msglevel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
David Brownell2e55cc72005-08-31 09:53:10 -07001072/* drivers may override default ethtool_ops in their bind() routine */
Stephen Hemminger0fc0b732009-09-02 01:03:33 -07001073static const struct ethtool_ops usbnet_ethtool_ops = {
David Brownell2e55cc72005-08-31 09:53:10 -07001074 .get_link = usbnet_get_link,
Arnd Bergmannc41286f2006-10-09 00:08:01 +02001075 .nway_reset = usbnet_nway_reset,
David Brownell18ee91fa2006-11-02 12:29:12 -08001076 .get_drvinfo = usbnet_get_drvinfo,
David Brownell2e55cc72005-08-31 09:53:10 -07001077 .get_msglevel = usbnet_get_msglevel,
1078 .set_msglevel = usbnet_set_msglevel,
Richard Cochran123edb12012-04-03 22:59:41 +00001079 .get_ts_info = ethtool_op_get_ts_info,
Philippe Reynes8bae3552017-03-16 23:18:47 +01001080 .get_link_ksettings = usbnet_get_link_ksettings,
1081 .set_link_ksettings = usbnet_set_link_ksettings,
David Brownell2e55cc72005-08-31 09:53:10 -07001082};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083
1084/*-------------------------------------------------------------------------*/
1085
Ming Lei4b49f582013-04-11 04:40:40 +00001086static void __handle_link_change(struct usbnet *dev)
1087{
1088 if (!test_bit(EVENT_DEV_OPEN, &dev->flags))
1089 return;
1090
1091 if (!netif_carrier_ok(dev->net)) {
1092 /* kill URBs for reading packets to save bus bandwidth */
1093 unlink_urbs(dev, &dev->rxq);
1094
1095 /*
1096 * tx_timeout will unlink URBs for sending packets and
1097 * tx queue is stopped by netcore after link becomes off
1098 */
1099 } else {
1100 /* submitting URBs for reading packets */
1101 tasklet_schedule(&dev->bh);
1102 }
1103
Ming Leia88c32a2013-07-25 13:47:53 +08001104 /* hard_mtu or rx_urb_size may change during link change */
1105 usbnet_update_max_qlen(dev);
1106
Ming Lei4b49f582013-04-11 04:40:40 +00001107 clear_bit(EVENT_LINK_CHANGE, &dev->flags);
1108}
1109
Olivier Blin1efed2d2014-10-24 19:43:00 +02001110static void usbnet_set_rx_mode(struct net_device *net)
1111{
1112 struct usbnet *dev = netdev_priv(net);
1113
1114 usbnet_defer_kevent(dev, EVENT_SET_RX_MODE);
1115}
1116
1117static void __handle_set_rx_mode(struct usbnet *dev)
1118{
1119 if (dev->driver_info->set_rx_mode)
1120 (dev->driver_info->set_rx_mode)(dev);
1121
1122 clear_bit(EVENT_SET_RX_MODE, &dev->flags);
1123}
1124
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125/* work that cannot be done in interrupt context uses keventd.
1126 *
1127 * NOTE: with 2.5 we could do more of this using completion callbacks,
1128 * especially now that control transfers can be queued.
1129 */
1130static void
Oliver Neukum11f17ef2015-04-09 10:09:04 +02001131usbnet_deferred_kevent (struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132{
David Howellsc4028952006-11-22 14:57:56 +00001133 struct usbnet *dev =
1134 container_of(work, struct usbnet, kevent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 int status;
1136
1137 /* usb_clear_halt() needs a thread context */
1138 if (test_bit (EVENT_TX_HALT, &dev->flags)) {
1139 unlink_urbs (dev, &dev->txq);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001140 status = usb_autopm_get_interface(dev->intf);
1141 if (status < 0)
1142 goto fail_pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 status = usb_clear_halt (dev->udev, dev->out);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001144 usb_autopm_put_interface(dev->intf);
Joe Perches8e95a202009-12-03 07:58:21 +00001145 if (status < 0 &&
1146 status != -EPIPE &&
1147 status != -ESHUTDOWN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 if (netif_msg_tx_err (dev))
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001149fail_pipe:
Joe Perches60b86752010-02-17 10:30:23 +00001150 netdev_err(dev->net, "can't clear tx halt, status %d\n",
1151 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 } else {
1153 clear_bit (EVENT_TX_HALT, &dev->flags);
David Brownellf29fc252005-08-31 09:52:31 -07001154 if (status != -ESHUTDOWN)
1155 netif_wake_queue (dev->net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 }
1157 }
1158 if (test_bit (EVENT_RX_HALT, &dev->flags)) {
1159 unlink_urbs (dev, &dev->rxq);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001160 status = usb_autopm_get_interface(dev->intf);
1161 if (status < 0)
1162 goto fail_halt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 status = usb_clear_halt (dev->udev, dev->in);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001164 usb_autopm_put_interface(dev->intf);
Joe Perches8e95a202009-12-03 07:58:21 +00001165 if (status < 0 &&
1166 status != -EPIPE &&
1167 status != -ESHUTDOWN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 if (netif_msg_rx_err (dev))
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001169fail_halt:
Joe Perches60b86752010-02-17 10:30:23 +00001170 netdev_err(dev->net, "can't clear rx halt, status %d\n",
1171 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 } else {
1173 clear_bit (EVENT_RX_HALT, &dev->flags);
1174 tasklet_schedule (&dev->bh);
1175 }
1176 }
1177
1178 /* tasklet could resubmit itself forever if memory is tight */
1179 if (test_bit (EVENT_RX_MEMORY, &dev->flags)) {
1180 struct urb *urb = NULL;
David S. Millerdacb3972010-08-10 02:50:55 -07001181 int resched = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182
1183 if (netif_running (dev->net))
1184 urb = usb_alloc_urb (0, GFP_KERNEL);
1185 else
1186 clear_bit (EVENT_RX_MEMORY, &dev->flags);
1187 if (urb != NULL) {
1188 clear_bit (EVENT_RX_MEMORY, &dev->flags);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001189 status = usb_autopm_get_interface(dev->intf);
Jesper Juhlab607072011-02-10 10:58:45 +00001190 if (status < 0) {
1191 usb_free_urb(urb);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001192 goto fail_lowmem;
Jesper Juhlab607072011-02-10 10:58:45 +00001193 }
David S. Millerdacb3972010-08-10 02:50:55 -07001194 if (rx_submit (dev, urb, GFP_KERNEL) == -ENOLINK)
1195 resched = 0;
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001196 usb_autopm_put_interface(dev->intf);
1197fail_lowmem:
David S. Millerdacb3972010-08-10 02:50:55 -07001198 if (resched)
1199 tasklet_schedule (&dev->bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 }
1201 }
1202
David Hollis7ea13c92005-04-22 15:07:02 -07001203 if (test_bit (EVENT_LINK_RESET, &dev->flags)) {
David Brownellcb1cebb2007-02-15 18:52:30 -08001204 struct driver_info *info = dev->driver_info;
David Hollis7ea13c92005-04-22 15:07:02 -07001205 int retval = 0;
1206
1207 clear_bit (EVENT_LINK_RESET, &dev->flags);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001208 status = usb_autopm_get_interface(dev->intf);
1209 if (status < 0)
1210 goto skip_reset;
David Hollis7ea13c92005-04-22 15:07:02 -07001211 if(info->link_reset && (retval = info->link_reset(dev)) < 0) {
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001212 usb_autopm_put_interface(dev->intf);
1213skip_reset:
Joe Perches60b86752010-02-17 10:30:23 +00001214 netdev_info(dev->net, "link reset failed (%d) usbnet usb-%s-%s, %s\n",
1215 retval,
1216 dev->udev->bus->bus_name,
1217 dev->udev->devpath,
1218 info->description);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001219 } else {
1220 usb_autopm_put_interface(dev->intf);
David Hollis7ea13c92005-04-22 15:07:02 -07001221 }
Ming Lei4b49f582013-04-11 04:40:40 +00001222
1223 /* handle link change from link resetting */
1224 __handle_link_change(dev);
David Hollis7ea13c92005-04-22 15:07:02 -07001225 }
1226
Ming Lei4b49f582013-04-11 04:40:40 +00001227 if (test_bit (EVENT_LINK_CHANGE, &dev->flags))
1228 __handle_link_change(dev);
1229
Olivier Blin1efed2d2014-10-24 19:43:00 +02001230 if (test_bit (EVENT_SET_RX_MODE, &dev->flags))
1231 __handle_set_rx_mode(dev);
1232
1233
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 if (dev->flags)
Joe Perches60b86752010-02-17 10:30:23 +00001235 netdev_dbg(dev->net, "kevent done, flags = 0x%lx\n", dev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236}
1237
1238/*-------------------------------------------------------------------------*/
1239
David Howells7d12e782006-10-05 14:55:46 +01001240static void tx_complete (struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241{
1242 struct sk_buff *skb = (struct sk_buff *) urb->context;
1243 struct skb_data *entry = (struct skb_data *) skb->cb;
1244 struct usbnet *dev = entry->dev;
1245
1246 if (urb->status == 0) {
Greg Ungererc8b5d122017-04-03 15:50:03 +10001247 struct pcpu_sw_netstats *stats64 = this_cpu_ptr(dev->stats64);
1248
1249 u64_stats_update_begin(&stats64->syncp);
1250 stats64->tx_packets += entry->packets;
1251 stats64->tx_bytes += entry->length;
1252 u64_stats_update_end(&stats64->syncp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 } else {
Herbert Xu79638372009-06-29 16:53:28 +00001254 dev->net->stats.tx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
1256 switch (urb->status) {
1257 case -EPIPE:
David Brownell2e55cc72005-08-31 09:53:10 -07001258 usbnet_defer_kevent (dev, EVENT_TX_HALT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 break;
1260
1261 /* software-driven interface shutdown */
1262 case -ECONNRESET: // async unlink
1263 case -ESHUTDOWN: // hardware gone
1264 break;
1265
Petr Mladek37ebb542014-09-19 17:32:23 +02001266 /* like rx, tx gets controller i/o faults during hub_wq
1267 * delays and so it uses the same throttling mechanism.
1268 */
Pete Zaitcev38e2bfc2006-09-18 22:49:02 -07001269 case -EPROTO:
1270 case -ETIME:
1271 case -EILSEQ:
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001272 usb_mark_last_busy(dev->udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 if (!timer_pending (&dev->delay)) {
1274 mod_timer (&dev->delay,
1275 jiffies + THROTTLE_JIFFIES);
Joe Perchesa475f602010-02-17 10:30:24 +00001276 netif_dbg(dev, link, dev->net,
1277 "tx throttle %d\n", urb->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 }
1279 netif_stop_queue (dev->net);
1280 break;
1281 default:
Joe Perchesa475f602010-02-17 10:30:24 +00001282 netif_dbg(dev, tx_err, dev->net,
1283 "tx err %d\n", entry->urb->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 break;
1285 }
1286 }
1287
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001288 usb_autopm_put_interface_async(dev->intf);
Ming Lei5b6e9bc2012-04-26 11:33:46 +08001289 (void) defer_bh(dev, skb, &dev->txq, tx_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290}
1291
1292/*-------------------------------------------------------------------------*/
1293
Stephen Hemminger777baa42009-03-20 19:35:54 +00001294void usbnet_tx_timeout (struct net_device *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295{
1296 struct usbnet *dev = netdev_priv(net);
1297
1298 unlink_urbs (dev, &dev->txq);
1299 tasklet_schedule (&dev->bh);
Oliver Neukumdbcdd4d2014-08-01 14:01:51 +02001300 /* this needs to be handled individually because the generic layer
1301 * doesn't know what is sufficient and could not restore private
1302 * information if a remedy of an unconditional reset were used.
1303 */
1304 if (dev->driver_info->recover)
1305 (dev->driver_info->recover)(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306}
Stephen Hemminger777baa42009-03-20 19:35:54 +00001307EXPORT_SYMBOL_GPL(usbnet_tx_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
1309/*-------------------------------------------------------------------------*/
1310
Ming Lei638c5112013-08-08 21:48:24 +08001311static int build_dma_sg(const struct sk_buff *skb, struct urb *urb)
1312{
1313 unsigned num_sgs, total_len = 0;
1314 int i, s = 0;
1315
1316 num_sgs = skb_shinfo(skb)->nr_frags + 1;
1317 if (num_sgs == 1)
1318 return 0;
1319
Ming Lei60e453a2013-09-23 20:59:35 +08001320 /* reserve one for zero packet */
1321 urb->sg = kmalloc((num_sgs + 1) * sizeof(struct scatterlist),
1322 GFP_ATOMIC);
Ming Lei638c5112013-08-08 21:48:24 +08001323 if (!urb->sg)
1324 return -ENOMEM;
1325
1326 urb->num_sgs = num_sgs;
Bjørn Morkfdc34522014-01-10 23:10:17 +01001327 sg_init_table(urb->sg, urb->num_sgs + 1);
Ming Lei638c5112013-08-08 21:48:24 +08001328
1329 sg_set_buf(&urb->sg[s++], skb->data, skb_headlen(skb));
1330 total_len += skb_headlen(skb);
1331
1332 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1333 struct skb_frag_struct *f = &skb_shinfo(skb)->frags[i];
1334
1335 total_len += skb_frag_size(f);
1336 sg_set_page(&urb->sg[i + s], f->page.p, f->size,
1337 f->page_offset);
1338 }
1339 urb->transfer_buffer_length = total_len;
1340
1341 return 1;
1342}
1343
Stephen Hemminger25a79c42009-08-31 19:50:45 +00001344netdev_tx_t usbnet_start_xmit (struct sk_buff *skb,
1345 struct net_device *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346{
1347 struct usbnet *dev = netdev_priv(net);
Jason A. Donenfeld3e4336a2015-05-06 15:09:40 +02001348 unsigned int length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 struct urb *urb = NULL;
1350 struct skb_data *entry;
1351 struct driver_info *info = dev->driver_info;
1352 unsigned long flags;
Stephen Hemminger25a79c42009-08-31 19:50:45 +00001353 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354
Konstantin Khlebnikov23ba0792011-11-07 05:54:58 +00001355 if (skb)
1356 skb_tx_timestamp(skb);
Michael Rieschf9b491e2011-09-29 04:06:26 +00001357
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 // some devices want funky USB-level framing, for
1359 // win32 driver (usually) and/or hardware quirks
1360 if (info->tx_fixup) {
1361 skb = info->tx_fixup (dev, skb, GFP_ATOMIC);
1362 if (!skb) {
Bjørn Morkbf414b32013-01-31 08:36:05 +00001363 /* packet collected; minidriver waiting for more */
1364 if (info->flags & FLAG_MULTI_PACKET)
Alexey Orishko073285f2010-11-29 23:23:27 +00001365 goto not_drop;
Bjørn Morkbf414b32013-01-31 08:36:05 +00001366 netif_dbg(dev, tx_err, dev->net, "can't tx_fixup skb\n");
1367 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 }
1369 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
1371 if (!(urb = usb_alloc_urb (0, GFP_ATOMIC))) {
Joe Perchesa475f602010-02-17 10:30:24 +00001372 netif_dbg(dev, tx_err, dev->net, "no urb\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 goto drop;
1374 }
1375
1376 entry = (struct skb_data *) skb->cb;
1377 entry->urb = urb;
1378 entry->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 usb_fill_bulk_urb (urb, dev->udev, dev->out,
1381 skb->data, skb->len, tx_complete, skb);
Ming Lei638c5112013-08-08 21:48:24 +08001382 if (dev->can_dma_sg) {
1383 if (build_dma_sg(skb, urb) < 0)
1384 goto drop;
1385 }
Ming Lei60e453a2013-09-23 20:59:35 +08001386 length = urb->transfer_buffer_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387
1388 /* don't assume the hardware handles USB_ZERO_PACKET
1389 * NOTE: strictly conforming cdc-ether devices should expect
1390 * the ZLP here, but ignore the one-byte packet.
Alexey Orishko073285f2010-11-29 23:23:27 +00001391 * NOTE2: CDC NCM specification is different from CDC ECM when
1392 * handling ZLP/short packets, so cdc_ncm driver will make short
1393 * packet itself if needed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 */
Elina Pashevab4d562e32010-04-06 14:23:07 +00001395 if (length % dev->maxpacket == 0) {
1396 if (!(info->flags & FLAG_SEND_ZLP)) {
Alexey Orishko073285f2010-11-29 23:23:27 +00001397 if (!(info->flags & FLAG_MULTI_PACKET)) {
Ming Lei60e453a2013-09-23 20:59:35 +08001398 length++;
1399 if (skb_tailroom(skb) && !urb->num_sgs) {
Alexey Orishko073285f2010-11-29 23:23:27 +00001400 skb->data[skb->len] = 0;
1401 __skb_put(skb, 1);
Ming Lei60e453a2013-09-23 20:59:35 +08001402 } else if (urb->num_sgs)
1403 sg_set_buf(&urb->sg[urb->num_sgs++],
1404 dev->padding_pkt, 1);
Elina Pashevab4d562e32010-04-06 14:23:07 +00001405 }
1406 } else
1407 urb->transfer_flags |= URB_ZERO_PACKET;
Peter Korsgaard3e323f32007-06-27 08:48:15 +02001408 }
Ben Hutchings7a1e8902015-03-25 21:41:33 +01001409 urb->transfer_buffer_length = length;
1410
1411 if (info->flags & FLAG_MULTI_PACKET) {
1412 /* Driver has set number of packets and a length delta.
1413 * Calculate the complete length and ensure that it's
1414 * positive.
1415 */
1416 entry->length += length;
1417 if (WARN_ON_ONCE(entry->length <= 0))
1418 entry->length = length;
1419 } else {
1420 usbnet_set_skb_tx_stats(skb, 1, length);
1421 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001423 spin_lock_irqsave(&dev->txq.lock, flags);
1424 retval = usb_autopm_get_interface_async(dev->intf);
1425 if (retval < 0) {
1426 spin_unlock_irqrestore(&dev->txq.lock, flags);
1427 goto drop;
1428 }
1429
1430#ifdef CONFIG_PM
1431 /* if this triggers the device is still a sleep */
1432 if (test_bit(EVENT_DEV_ASLEEP, &dev->flags)) {
1433 /* transmission will be done in resume */
1434 usb_anchor_urb(urb, &dev->deferred);
1435 /* no use to process more packets */
1436 netif_stop_queue(net);
Hemant Kumar39707c22012-10-25 18:17:54 +00001437 usb_put_urb(urb);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001438 spin_unlock_irqrestore(&dev->txq.lock, flags);
Joe Perches60b86752010-02-17 10:30:23 +00001439 netdev_dbg(dev->net, "Delaying transmission for resumption\n");
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001440 goto deferred;
1441 }
1442#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 switch ((retval = usb_submit_urb (urb, GFP_ATOMIC))) {
1445 case -EPIPE:
1446 netif_stop_queue (net);
David Brownell2e55cc72005-08-31 09:53:10 -07001447 usbnet_defer_kevent (dev, EVENT_TX_HALT);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001448 usb_autopm_put_interface_async(dev->intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 break;
1450 default:
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001451 usb_autopm_put_interface_async(dev->intf);
Joe Perchesa475f602010-02-17 10:30:24 +00001452 netif_dbg(dev, tx_err, dev->net,
1453 "tx: submit urb err %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 break;
1455 case 0:
Florian Westphal860e9532016-05-03 16:33:13 +02001456 netif_trans_update(net);
Ming Lei5b6e9bc2012-04-26 11:33:46 +08001457 __usbnet_queue_skb(&dev->txq, skb, tx_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 if (dev->txq.qlen >= TX_QLEN (dev))
1459 netif_stop_queue (net);
1460 }
1461 spin_unlock_irqrestore (&dev->txq.lock, flags);
1462
1463 if (retval) {
Joe Perchesa475f602010-02-17 10:30:24 +00001464 netif_dbg(dev, tx_err, dev->net, "drop, code %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465drop:
Herbert Xu79638372009-06-29 16:53:28 +00001466 dev->net->stats.tx_dropped++;
Alexey Orishko073285f2010-11-29 23:23:27 +00001467not_drop:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 if (skb)
1469 dev_kfree_skb_any (skb);
Ming Lei638c5112013-08-08 21:48:24 +08001470 if (urb) {
1471 kfree(urb->sg);
1472 usb_free_urb(urb);
1473 }
Joe Perchesa475f602010-02-17 10:30:24 +00001474 } else
1475 netif_dbg(dev, tx_queued, dev->net,
Jason A. Donenfeld3e4336a2015-05-06 15:09:40 +02001476 "> tx, len %u, type 0x%x\n", length, skb->protocol);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001477#ifdef CONFIG_PM
1478deferred:
1479#endif
Stephen Hemminger25a79c42009-08-31 19:50:45 +00001480 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481}
Stephen Hemminger777baa42009-03-20 19:35:54 +00001482EXPORT_SYMBOL_GPL(usbnet_start_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483
Bjørn Mork85e87872012-09-02 22:26:18 +00001484static int rx_alloc_submit(struct usbnet *dev, gfp_t flags)
Ming Lei65841fd2012-06-19 21:15:53 +00001485{
1486 struct urb *urb;
1487 int i;
Bjørn Mork85e87872012-09-02 22:26:18 +00001488 int ret = 0;
Ming Lei65841fd2012-06-19 21:15:53 +00001489
1490 /* don't refill the queue all at once */
1491 for (i = 0; i < 10 && dev->rxq.qlen < RX_QLEN(dev); i++) {
1492 urb = usb_alloc_urb(0, flags);
1493 if (urb != NULL) {
Bjørn Mork85e87872012-09-02 22:26:18 +00001494 ret = rx_submit(dev, urb, flags);
1495 if (ret)
1496 goto err;
1497 } else {
1498 ret = -ENOMEM;
1499 goto err;
Ming Lei65841fd2012-06-19 21:15:53 +00001500 }
1501 }
Bjørn Mork85e87872012-09-02 22:26:18 +00001502err:
1503 return ret;
Ming Lei65841fd2012-06-19 21:15:53 +00001504}
1505
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506/*-------------------------------------------------------------------------*/
1507
1508// tasklet (work deferred from completions, in_irq) or timer
1509
1510static void usbnet_bh (unsigned long param)
1511{
1512 struct usbnet *dev = (struct usbnet *) param;
1513 struct sk_buff *skb;
1514 struct skb_data *entry;
1515
1516 while ((skb = skb_dequeue (&dev->done))) {
1517 entry = (struct skb_data *) skb->cb;
1518 switch (entry->state) {
David Brownell18ab4582007-05-25 12:31:32 -07001519 case rx_done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 entry->state = rx_cleanup;
1521 rx_process (dev, skb);
1522 continue;
David Brownell18ab4582007-05-25 12:31:32 -07001523 case tx_done:
Ming Lei638c5112013-08-08 21:48:24 +08001524 kfree(entry->urb->sg);
David Brownell18ab4582007-05-25 12:31:32 -07001525 case rx_cleanup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 usb_free_urb (entry->urb);
1527 dev_kfree_skb (skb);
1528 continue;
David Brownell18ab4582007-05-25 12:31:32 -07001529 default:
Joe Perches60b86752010-02-17 10:30:23 +00001530 netdev_dbg(dev->net, "bogus skb state %d\n", entry->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 }
1532 }
1533
Bjørn Mork70c37bf2013-01-28 23:51:28 +00001534 /* restart RX again after disabling due to high error rate */
1535 clear_bit(EVENT_RX_KILL, &dev->flags);
1536
Oliver Neukum14a0d632014-03-26 14:32:51 +01001537 /* waiting for all pending urbs to complete?
1538 * only then can we forgo submitting anew
1539 */
1540 if (waitqueue_active(&dev->wait)) {
1541 if (dev->txq.qlen + dev->rxq.qlen + dev->done.qlen == 0)
1542 wake_up_all(&dev->wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543
1544 // or are we maybe short a few urbs?
Joe Perches8e95a202009-12-03 07:58:21 +00001545 } else if (netif_running (dev->net) &&
1546 netif_device_present (dev->net) &&
Ming Lei4b49f582013-04-11 04:40:40 +00001547 netif_carrier_ok(dev->net) &&
Soohoon Lee43daa962016-06-29 15:07:21 -04001548 !timer_pending(&dev->delay) &&
1549 !test_bit(EVENT_RX_PAUSED, &dev->flags) &&
1550 !test_bit(EVENT_RX_HALT, &dev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 int temp = dev->rxq.qlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552
Ming Lei65841fd2012-06-19 21:15:53 +00001553 if (temp < RX_QLEN(dev)) {
Bjørn Mork85e87872012-09-02 22:26:18 +00001554 if (rx_alloc_submit(dev, GFP_ATOMIC) == -ENOLINK)
1555 return;
Joe Perchesa475f602010-02-17 10:30:24 +00001556 if (temp != dev->rxq.qlen)
1557 netif_dbg(dev, link, dev->net,
1558 "rxqlen %d --> %d\n",
1559 temp, dev->rxq.qlen);
Ming Lei65841fd2012-06-19 21:15:53 +00001560 if (dev->rxq.qlen < RX_QLEN(dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 tasklet_schedule (&dev->bh);
1562 }
1563 if (dev->txq.qlen < TX_QLEN (dev))
1564 netif_wake_queue (dev->net);
1565 }
1566}
1567
1568
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569/*-------------------------------------------------------------------------
1570 *
1571 * USB Device Driver support
1572 *
1573 *-------------------------------------------------------------------------*/
David Brownellcb1cebb2007-02-15 18:52:30 -08001574
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575// precondition: never called in_interrupt
1576
David Brownell38bde1d2005-08-31 09:52:45 -07001577void usbnet_disconnect (struct usb_interface *intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578{
1579 struct usbnet *dev;
1580 struct usb_device *xdev;
1581 struct net_device *net;
1582
1583 dev = usb_get_intfdata(intf);
1584 usb_set_intfdata(intf, NULL);
1585 if (!dev)
1586 return;
1587
1588 xdev = interface_to_usbdev (intf);
1589
Joe Perchesa475f602010-02-17 10:30:24 +00001590 netif_info(dev, probe, dev->net, "unregister '%s' usb-%s-%s, %s\n",
1591 intf->dev.driver->name,
1592 xdev->bus->bus_name, xdev->devpath,
1593 dev->driver_info->description);
David Brownellcb1cebb2007-02-15 18:52:30 -08001594
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 net = dev->net;
1596 unregister_netdev (net);
1597
Tejun Heo23f333a2010-12-12 16:45:14 +01001598 cancel_work_sync(&dev->kevent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599
Hemant Kumar39707c22012-10-25 18:17:54 +00001600 usb_scuttle_anchored_urbs(&dev->deferred);
1601
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 if (dev->driver_info->unbind)
1603 dev->driver_info->unbind (dev, intf);
1604
Paul Stewart68972ef2011-04-28 05:43:37 +00001605 usb_kill_urb(dev->interrupt);
1606 usb_free_urb(dev->interrupt);
Ming Lei60e453a2013-09-23 20:59:35 +08001607 kfree(dev->padding_pkt);
Paul Stewart68972ef2011-04-28 05:43:37 +00001608
Greg Ungererc8b5d122017-04-03 15:50:03 +10001609 free_percpu(dev->stats64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 free_netdev(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611}
David Brownell38bde1d2005-08-31 09:52:45 -07001612EXPORT_SYMBOL_GPL(usbnet_disconnect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613
Stephen Hemminger777baa42009-03-20 19:35:54 +00001614static const struct net_device_ops usbnet_netdev_ops = {
1615 .ndo_open = usbnet_open,
1616 .ndo_stop = usbnet_stop,
1617 .ndo_start_xmit = usbnet_start_xmit,
1618 .ndo_tx_timeout = usbnet_tx_timeout,
Olivier Blin1efed2d2014-10-24 19:43:00 +02001619 .ndo_set_rx_mode = usbnet_set_rx_mode,
Stephen Hemminger777baa42009-03-20 19:35:54 +00001620 .ndo_change_mtu = usbnet_change_mtu,
Greg Ungererc8b5d122017-04-03 15:50:03 +10001621 .ndo_get_stats64 = usbnet_get_stats64,
Stephen Hemminger777baa42009-03-20 19:35:54 +00001622 .ndo_set_mac_address = eth_mac_addr,
1623 .ndo_validate_addr = eth_validate_addr,
1624};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625
1626/*-------------------------------------------------------------------------*/
1627
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628// precondition: never called in_interrupt
1629
Marcel Holtmann225794f2009-10-02 05:15:26 +00001630static struct device_type wlan_type = {
1631 .name = "wlan",
1632};
1633
1634static struct device_type wwan_type = {
1635 .name = "wwan",
1636};
1637
David Brownell38bde1d2005-08-31 09:52:45 -07001638int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639usbnet_probe (struct usb_interface *udev, const struct usb_device_id *prod)
1640{
1641 struct usbnet *dev;
David Brownellcb1cebb2007-02-15 18:52:30 -08001642 struct net_device *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 struct usb_host_interface *interface;
1644 struct driver_info *info;
1645 struct usb_device *xdev;
1646 int status;
David Brownell296c0242007-04-17 16:10:10 -07001647 const char *name;
Ming Leib0786b42010-11-01 07:11:54 -07001648 struct usb_driver *driver = to_usb_driver(udev->dev.driver);
1649
1650 /* usbnet already took usb runtime pm, so have to enable the feature
1651 * for usb interface, otherwise usb_autopm_get_interface may return
Alan Stern98f541c2013-05-01 12:13:54 -04001652 * failure if RUNTIME_PM is enabled.
Ming Leib0786b42010-11-01 07:11:54 -07001653 */
1654 if (!driver->supports_autosuspend) {
1655 driver->supports_autosuspend = 1;
1656 pm_runtime_enable(&udev->dev);
1657 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658
David Brownell296c0242007-04-17 16:10:10 -07001659 name = udev->dev.driver->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 info = (struct driver_info *) prod->driver_info;
1661 if (!info) {
David Brownell296c0242007-04-17 16:10:10 -07001662 dev_dbg (&udev->dev, "blacklisted by %s\n", name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 return -ENODEV;
1664 }
1665 xdev = interface_to_usbdev (udev);
1666 interface = udev->cur_altsetting;
1667
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 status = -ENOMEM;
1669
1670 // set up our own records
1671 net = alloc_etherdev(sizeof(*dev));
Joe Perches41de8d42012-01-29 13:47:52 +00001672 if (!net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674
Ben Hutchings0dacca72010-07-02 21:49:02 -07001675 /* netdev_printk() needs this so do it as early as possible */
1676 SET_NETDEV_DEV(net, &udev->dev);
1677
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 dev = netdev_priv(net);
1679 dev->udev = xdev;
Oliver Neukuma11a6542007-08-03 13:52:19 +02001680 dev->intf = udev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 dev->driver_info = info;
David Brownell296c0242007-04-17 16:10:10 -07001682 dev->driver_name = name;
Greg Ungererc8b5d122017-04-03 15:50:03 +10001683
1684 dev->stats64 = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
1685 if (!dev->stats64)
1686 goto out0;
1687
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 dev->msg_enable = netif_msg_init (msg_level, NETIF_MSG_DRV
1689 | NETIF_MSG_PROBE | NETIF_MSG_LINK);
Oliver Neukum14a0d632014-03-26 14:32:51 +01001690 init_waitqueue_head(&dev->wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 skb_queue_head_init (&dev->rxq);
1692 skb_queue_head_init (&dev->txq);
1693 skb_queue_head_init (&dev->done);
Jussi Kivilinna7834ddb2009-08-11 22:57:16 +03001694 skb_queue_head_init(&dev->rxq_pause);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 dev->bh.func = usbnet_bh;
1696 dev->bh.data = (unsigned long) dev;
Oliver Neukum11f17ef2015-04-09 10:09:04 +02001697 INIT_WORK (&dev->kevent, usbnet_deferred_kevent);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001698 init_usb_anchor(&dev->deferred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 dev->delay.function = usbnet_bh;
1700 dev->delay.data = (unsigned long) dev;
1701 init_timer (&dev->delay);
Arnd Bergmanna9fc6332006-10-09 00:08:02 +02001702 mutex_init (&dev->phy_mutex);
Dan Williams6eecdc52013-05-06 11:29:23 +00001703 mutex_init(&dev->interrupt_mutex);
1704 dev->interrupt_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 dev->net = net;
1707 strcpy (net->name, "usb%d");
1708 memcpy (net->dev_addr, node_id, sizeof node_id);
1709
David Brownell2e55cc72005-08-31 09:53:10 -07001710 /* rx and tx sides can use different message sizes;
1711 * bind() should set rx_urb_size in that case.
1712 */
1713 dev->hard_mtu = net->mtu + net->hard_header_len;
Jarod Wilsonf77f0ae2016-10-20 13:55:17 -04001714 net->min_mtu = 0;
1715 net->max_mtu = ETH_MAX_MTU;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716
Stephen Hemminger777baa42009-03-20 19:35:54 +00001717 net->netdev_ops = &usbnet_netdev_ops;
Stephen Hemminger777baa42009-03-20 19:35:54 +00001718 net->watchdog_timeo = TX_TIMEOUT_JIFFIES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 net->ethtool_ops = &usbnet_ethtool_ops;
1720
1721 // allow device-specific bind/init procedures
1722 // NOTE net->name still not usable ...
1723 if (info->bind) {
1724 status = info->bind (dev, udev);
David Brownellcb1cebb2007-02-15 18:52:30 -08001725 if (status < 0)
1726 goto out1;
1727
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 // heuristic: "usb%d" for links we know are two-host,
1729 // else "eth%d" when there's reasonable doubt. userspace
1730 // can rename the link if it knows better.
Joe Perches8e95a202009-12-03 07:58:21 +00001731 if ((dev->driver_info->flags & FLAG_ETHER) != 0 &&
Arnd Bergmannc2613442011-04-01 20:12:02 -07001732 ((dev->driver_info->flags & FLAG_POINTTOPOINT) == 0 ||
1733 (net->dev_addr [0] & 0x02) == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 strcpy (net->name, "eth%d");
Jussi Kivilinna6e3bbcc2008-01-26 00:51:06 +02001735 /* WLAN devices should always be named "wlan%d" */
1736 if ((dev->driver_info->flags & FLAG_WLAN) != 0)
1737 strcpy(net->name, "wlan%d");
Marcel Holtmanne1e499e2009-10-02 05:15:25 +00001738 /* WWAN devices should always be named "wwan%d" */
1739 if ((dev->driver_info->flags & FLAG_WWAN) != 0)
1740 strcpy(net->name, "wwan%d");
David Brownellf29fc252005-08-31 09:52:31 -07001741
Wei Shuai65091412013-01-21 06:00:31 +00001742 /* devices that cannot do ARP */
1743 if ((dev->driver_info->flags & FLAG_NOARP) != 0)
1744 net->flags |= IFF_NOARP;
1745
David Brownellf29fc252005-08-31 09:52:31 -07001746 /* maybe the remote can't receive an Ethernet MTU */
1747 if (net->mtu > (dev->hard_mtu - net->hard_header_len))
1748 net->mtu = dev->hard_mtu - net->hard_header_len;
David Brownell2e55cc72005-08-31 09:53:10 -07001749 } else if (!info->in || !info->out)
1750 status = usbnet_get_endpoints (dev, udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 else {
1752 dev->in = usb_rcvbulkpipe (xdev, info->in);
1753 dev->out = usb_sndbulkpipe (xdev, info->out);
1754 if (!(info->flags & FLAG_NO_SETINT))
1755 status = usb_set_interface (xdev,
1756 interface->desc.bInterfaceNumber,
1757 interface->desc.bAlternateSetting);
1758 else
1759 status = 0;
1760
1761 }
Peter Korsgaard9514bfe2007-07-03 00:46:42 +02001762 if (status >= 0 && dev->status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 status = init_status (dev, udev);
1764 if (status < 0)
David Brownellcb1cebb2007-02-15 18:52:30 -08001765 goto out3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766
David Brownell2e55cc72005-08-31 09:53:10 -07001767 if (!dev->rx_urb_size)
1768 dev->rx_urb_size = dev->hard_mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 dev->maxpacket = usb_maxpacket (dev->udev, dev->out, 1);
David Brownellcb1cebb2007-02-15 18:52:30 -08001770
Bjørn Morkeef23b52013-09-04 09:42:32 +02001771 /* let userspace know we have a random address */
1772 if (ether_addr_equal(net->dev_addr, node_id))
1773 net->addr_assign_type = NET_ADDR_RANDOM;
1774
Marcel Holtmann225794f2009-10-02 05:15:26 +00001775 if ((dev->driver_info->flags & FLAG_WLAN) != 0)
1776 SET_NETDEV_DEVTYPE(net, &wlan_type);
1777 if ((dev->driver_info->flags & FLAG_WWAN) != 0)
1778 SET_NETDEV_DEVTYPE(net, &wwan_type);
1779
Ming Leia88c32a2013-07-25 13:47:53 +08001780 /* initialize max rx_qlen and tx_qlen */
1781 usbnet_update_max_qlen(dev);
1782
Ming Lei60e453a2013-09-23 20:59:35 +08001783 if (dev->can_dma_sg && !(info->flags & FLAG_SEND_ZLP) &&
1784 !(info->flags & FLAG_MULTI_PACKET)) {
1785 dev->padding_pkt = kzalloc(1, GFP_KERNEL);
Wei Yongjun09b69022013-10-12 14:24:08 +08001786 if (!dev->padding_pkt) {
1787 status = -ENOMEM;
Ming Lei60e453a2013-09-23 20:59:35 +08001788 goto out4;
Wei Yongjun09b69022013-10-12 14:24:08 +08001789 }
Ming Lei60e453a2013-09-23 20:59:35 +08001790 }
1791
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 status = register_netdev (net);
1793 if (status)
Ming Lei60e453a2013-09-23 20:59:35 +08001794 goto out5;
Joe Perchesa475f602010-02-17 10:30:24 +00001795 netif_info(dev, probe, dev->net,
1796 "register '%s' at usb-%s-%s, %s, %pM\n",
1797 udev->dev.driver->name,
1798 xdev->bus->bus_name, xdev->devpath,
1799 dev->driver_info->description,
1800 net->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801
1802 // ok, it's ready to go.
1803 usb_set_intfdata (udev, dev);
1804
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 netif_device_attach (net);
1806
Ben Hutchings37e82732009-11-04 15:29:52 +00001807 if (dev->driver_info->flags & FLAG_LINK_INTR)
Ming Lei0162c552013-04-11 04:40:39 +00001808 usbnet_link_change(dev, 0, 0);
Ben Hutchings37e82732009-11-04 15:29:52 +00001809
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 return 0;
1811
Ming Lei60e453a2013-09-23 20:59:35 +08001812out5:
1813 kfree(dev->padding_pkt);
tom.leiming@gmail.coma4723842012-04-29 22:51:03 +00001814out4:
1815 usb_free_urb(dev->interrupt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816out3:
1817 if (info->unbind)
1818 info->unbind (dev, udev);
1819out1:
Oliver Neukum16669842016-03-07 11:31:10 +01001820 /* subdrivers must undo all they did in bind() if they
1821 * fail it, but we may fail later and a deferred kevent
1822 * may trigger an error resubmitting itself and, worse,
1823 * schedule a timer. So we kill it all just in case.
1824 */
1825 cancel_work_sync(&dev->kevent);
1826 del_timer_sync(&dev->delay);
Greg Ungererc8b5d122017-04-03 15:50:03 +10001827 free_percpu(dev->stats64);
1828out0:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 free_netdev(net);
1830out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 return status;
1832}
David Brownell38bde1d2005-08-31 09:52:45 -07001833EXPORT_SYMBOL_GPL(usbnet_probe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834
1835/*-------------------------------------------------------------------------*/
1836
Oliver Neukum36433122007-04-30 01:37:44 -07001837/*
1838 * suspend the whole driver as soon as the first interface is suspended
1839 * resume only when the last interface is resumed
David Brownell38bde1d2005-08-31 09:52:45 -07001840 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841
David Brownell38bde1d2005-08-31 09:52:45 -07001842int usbnet_suspend (struct usb_interface *intf, pm_message_t message)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843{
1844 struct usbnet *dev = usb_get_intfdata(intf);
David Brownellcb1cebb2007-02-15 18:52:30 -08001845
Oliver Neukum36433122007-04-30 01:37:44 -07001846 if (!dev->suspend_count++) {
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001847 spin_lock_irq(&dev->txq.lock);
1848 /* don't autosuspend while transmitting */
Alan Stern5b1b0b82011-08-19 23:49:48 +02001849 if (dev->txq.qlen && PMSG_IS_AUTO(message)) {
Ming Lei5eeb3132012-06-19 21:15:52 +00001850 dev->suspend_count--;
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001851 spin_unlock_irq(&dev->txq.lock);
1852 return -EBUSY;
1853 } else {
1854 set_bit(EVENT_DEV_ASLEEP, &dev->flags);
1855 spin_unlock_irq(&dev->txq.lock);
1856 }
Oliver Neukuma11a6542007-08-03 13:52:19 +02001857 /*
1858 * accelerate emptying of the rx and queues, to avoid
Oliver Neukum36433122007-04-30 01:37:44 -07001859 * having everything error out.
1860 */
1861 netif_device_detach (dev->net);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001862 usbnet_terminate_urbs(dev);
Dan Williams6eecdc52013-05-06 11:29:23 +00001863 __usbnet_status_stop_force(dev);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001864
Oliver Neukuma11a6542007-08-03 13:52:19 +02001865 /*
1866 * reattach so runtime management can use and
1867 * wake the device
1868 */
1869 netif_device_attach (dev->net);
Oliver Neukum36433122007-04-30 01:37:44 -07001870 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 return 0;
1872}
David Brownell38bde1d2005-08-31 09:52:45 -07001873EXPORT_SYMBOL_GPL(usbnet_suspend);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874
David Brownell38bde1d2005-08-31 09:52:45 -07001875int usbnet_resume (struct usb_interface *intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876{
1877 struct usbnet *dev = usb_get_intfdata(intf);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001878 struct sk_buff *skb;
1879 struct urb *res;
1880 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001882 if (!--dev->suspend_count) {
Dan Williams6eecdc52013-05-06 11:29:23 +00001883 /* resume interrupt URB if it was previously submitted */
1884 __usbnet_status_start_force(dev, GFP_NOIO);
Paul Stewart68972ef2011-04-28 05:43:37 +00001885
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001886 spin_lock_irq(&dev->txq.lock);
1887 while ((res = usb_get_from_anchor(&dev->deferred))) {
1888
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001889 skb = (struct sk_buff *)res->context;
1890 retval = usb_submit_urb(res, GFP_ATOMIC);
1891 if (retval < 0) {
1892 dev_kfree_skb_any(skb);
Ming Lei638c5112013-08-08 21:48:24 +08001893 kfree(res->sg);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001894 usb_free_urb(res);
1895 usb_autopm_put_interface_async(dev->intf);
1896 } else {
Florian Westphal860e9532016-05-03 16:33:13 +02001897 netif_trans_update(dev->net);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001898 __skb_queue_tail(&dev->txq, skb);
1899 }
1900 }
1901
1902 smp_mb();
1903 clear_bit(EVENT_DEV_ASLEEP, &dev->flags);
1904 spin_unlock_irq(&dev->txq.lock);
Ming Lei75bd0cb2011-04-28 22:37:09 +00001905
1906 if (test_bit(EVENT_DEV_OPEN, &dev->flags)) {
Oliver Neukum14a0d632014-03-26 14:32:51 +01001907 /* handle remote wakeup ASAP
1908 * we cannot race against stop
1909 */
1910 if (netif_device_present(dev->net) &&
Ming Lei65841fd2012-06-19 21:15:53 +00001911 !timer_pending(&dev->delay) &&
1912 !test_bit(EVENT_RX_HALT, &dev->flags))
Oliver Neukumab6f1482012-08-26 20:41:38 +00001913 rx_alloc_submit(dev, GFP_NOIO);
Ming Lei65841fd2012-06-19 21:15:53 +00001914
Ming Lei75bd0cb2011-04-28 22:37:09 +00001915 if (!(dev->txq.qlen >= TX_QLEN(dev)))
Alexey Orishko1aa9bc52012-03-14 04:00:24 +00001916 netif_tx_wake_all_queues(dev->net);
Ming Lei75bd0cb2011-04-28 22:37:09 +00001917 tasklet_schedule (&dev->bh);
1918 }
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001919 }
Oliver Neukum5d9d01a2012-10-11 02:50:10 +00001920
1921 if (test_and_clear_bit(EVENT_DEVICE_REPORT_IDLE, &dev->flags))
1922 usb_autopm_get_interface_no_resume(intf);
1923
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 return 0;
1925}
David Brownell38bde1d2005-08-31 09:52:45 -07001926EXPORT_SYMBOL_GPL(usbnet_resume);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927
Oliver Neukum5d9d01a2012-10-11 02:50:10 +00001928/*
1929 * Either a subdriver implements manage_power, then it is assumed to always
1930 * be ready to be suspended or it reports the readiness to be suspended
1931 * explicitly
1932 */
1933void usbnet_device_suggests_idle(struct usbnet *dev)
1934{
1935 if (!test_and_set_bit(EVENT_DEVICE_REPORT_IDLE, &dev->flags)) {
1936 dev->intf->needs_remote_wakeup = 1;
1937 usb_autopm_put_interface_async(dev->intf);
1938 }
1939}
1940EXPORT_SYMBOL(usbnet_device_suggests_idle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941
Oliver Neukum2dd7c8c2012-12-18 04:45:52 +00001942/*
1943 * For devices that can do without special commands
1944 */
1945int usbnet_manage_power(struct usbnet *dev, int on)
1946{
1947 dev->intf->needs_remote_wakeup = on;
1948 return 0;
1949}
1950EXPORT_SYMBOL(usbnet_manage_power);
1951
Ming Leiac649952013-04-11 04:40:30 +00001952void usbnet_link_change(struct usbnet *dev, bool link, bool need_reset)
1953{
1954 /* update link after link is reseted */
1955 if (link && !need_reset)
1956 netif_carrier_on(dev->net);
1957 else
1958 netif_carrier_off(dev->net);
1959
1960 if (need_reset && link)
1961 usbnet_defer_kevent(dev, EVENT_LINK_RESET);
Ming Lei4b49f582013-04-11 04:40:40 +00001962 else
1963 usbnet_defer_kevent(dev, EVENT_LINK_CHANGE);
Ming Leiac649952013-04-11 04:40:30 +00001964}
1965EXPORT_SYMBOL(usbnet_link_change);
1966
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967/*-------------------------------------------------------------------------*/
Ming Lei0547fad2012-11-06 04:53:04 +00001968static int __usbnet_read_cmd(struct usbnet *dev, u8 cmd, u8 reqtype,
1969 u16 value, u16 index, void *data, u16 size)
Ming Lei877bd862012-10-24 19:46:54 +00001970{
1971 void *buf = NULL;
1972 int err = -ENOMEM;
1973
1974 netdev_dbg(dev->net, "usbnet_read_cmd cmd=0x%02x reqtype=%02x"
1975 " value=0x%04x index=0x%04x size=%d\n",
1976 cmd, reqtype, value, index, size);
1977
Oliver Neukum6c22fce2017-04-05 14:14:39 +02001978 if (size) {
Ming Lei877bd862012-10-24 19:46:54 +00001979 buf = kmalloc(size, GFP_KERNEL);
1980 if (!buf)
1981 goto out;
1982 }
1983
1984 err = usb_control_msg(dev->udev, usb_rcvctrlpipe(dev->udev, 0),
1985 cmd, reqtype, value, index, buf, size,
1986 USB_CTRL_GET_TIMEOUT);
Oliver Neukum6c22fce2017-04-05 14:14:39 +02001987 if (err > 0 && err <= size) {
1988 if (data)
1989 memcpy(data, buf, err);
1990 else
1991 netdev_dbg(dev->net,
1992 "Huh? Data requested but thrown away.\n");
1993 }
Ming Lei877bd862012-10-24 19:46:54 +00001994 kfree(buf);
1995out:
1996 return err;
1997}
Ming Lei877bd862012-10-24 19:46:54 +00001998
Ming Lei0547fad2012-11-06 04:53:04 +00001999static int __usbnet_write_cmd(struct usbnet *dev, u8 cmd, u8 reqtype,
2000 u16 value, u16 index, const void *data,
2001 u16 size)
Ming Lei877bd862012-10-24 19:46:54 +00002002{
2003 void *buf = NULL;
2004 int err = -ENOMEM;
2005
2006 netdev_dbg(dev->net, "usbnet_write_cmd cmd=0x%02x reqtype=%02x"
2007 " value=0x%04x index=0x%04x size=%d\n",
2008 cmd, reqtype, value, index, size);
2009
2010 if (data) {
2011 buf = kmemdup(data, size, GFP_KERNEL);
2012 if (!buf)
2013 goto out;
Oliver Neukum6c22fce2017-04-05 14:14:39 +02002014 } else {
2015 if (size) {
2016 WARN_ON_ONCE(1);
2017 err = -EINVAL;
2018 goto out;
2019 }
2020 }
Ming Lei877bd862012-10-24 19:46:54 +00002021
2022 err = usb_control_msg(dev->udev, usb_sndctrlpipe(dev->udev, 0),
2023 cmd, reqtype, value, index, buf, size,
2024 USB_CTRL_SET_TIMEOUT);
2025 kfree(buf);
2026
2027out:
2028 return err;
2029}
Ming Lei0547fad2012-11-06 04:53:04 +00002030
2031/*
2032 * The function can't be called inside suspend/resume callback,
2033 * otherwise deadlock will be caused.
2034 */
2035int usbnet_read_cmd(struct usbnet *dev, u8 cmd, u8 reqtype,
2036 u16 value, u16 index, void *data, u16 size)
2037{
Ming Lei6f0a0982012-11-06 04:53:08 +00002038 int ret;
2039
2040 if (usb_autopm_get_interface(dev->intf) < 0)
2041 return -ENODEV;
2042 ret = __usbnet_read_cmd(dev, cmd, reqtype, value, index,
2043 data, size);
2044 usb_autopm_put_interface(dev->intf);
2045 return ret;
Ming Lei0547fad2012-11-06 04:53:04 +00002046}
2047EXPORT_SYMBOL_GPL(usbnet_read_cmd);
2048
2049/*
2050 * The function can't be called inside suspend/resume callback,
2051 * otherwise deadlock will be caused.
2052 */
2053int usbnet_write_cmd(struct usbnet *dev, u8 cmd, u8 reqtype,
2054 u16 value, u16 index, const void *data, u16 size)
2055{
Ming Lei6f0a0982012-11-06 04:53:08 +00002056 int ret;
2057
2058 if (usb_autopm_get_interface(dev->intf) < 0)
2059 return -ENODEV;
2060 ret = __usbnet_write_cmd(dev, cmd, reqtype, value, index,
2061 data, size);
2062 usb_autopm_put_interface(dev->intf);
2063 return ret;
Ming Lei0547fad2012-11-06 04:53:04 +00002064}
Ming Lei877bd862012-10-24 19:46:54 +00002065EXPORT_SYMBOL_GPL(usbnet_write_cmd);
2066
Ming Lei0547fad2012-11-06 04:53:04 +00002067/*
2068 * The function can be called inside suspend/resume callback safely
2069 * and should only be called by suspend/resume callback generally.
2070 */
2071int usbnet_read_cmd_nopm(struct usbnet *dev, u8 cmd, u8 reqtype,
2072 u16 value, u16 index, void *data, u16 size)
2073{
2074 return __usbnet_read_cmd(dev, cmd, reqtype, value, index,
2075 data, size);
2076}
2077EXPORT_SYMBOL_GPL(usbnet_read_cmd_nopm);
2078
2079/*
2080 * The function can be called inside suspend/resume callback safely
2081 * and should only be called by suspend/resume callback generally.
2082 */
2083int usbnet_write_cmd_nopm(struct usbnet *dev, u8 cmd, u8 reqtype,
2084 u16 value, u16 index, const void *data,
2085 u16 size)
2086{
2087 return __usbnet_write_cmd(dev, cmd, reqtype, value, index,
2088 data, size);
2089}
2090EXPORT_SYMBOL_GPL(usbnet_write_cmd_nopm);
2091
Ming Lei877bd862012-10-24 19:46:54 +00002092static void usbnet_async_cmd_cb(struct urb *urb)
2093{
2094 struct usb_ctrlrequest *req = (struct usb_ctrlrequest *)urb->context;
2095 int status = urb->status;
2096
2097 if (status < 0)
2098 dev_dbg(&urb->dev->dev, "%s failed with %d",
2099 __func__, status);
2100
2101 kfree(req);
2102 usb_free_urb(urb);
2103}
2104
Ming Lei0547fad2012-11-06 04:53:04 +00002105/*
2106 * The caller must make sure that device can't be put into suspend
2107 * state until the control URB completes.
2108 */
Ming Lei877bd862012-10-24 19:46:54 +00002109int usbnet_write_cmd_async(struct usbnet *dev, u8 cmd, u8 reqtype,
2110 u16 value, u16 index, const void *data, u16 size)
2111{
2112 struct usb_ctrlrequest *req = NULL;
2113 struct urb *urb;
2114 int err = -ENOMEM;
2115 void *buf = NULL;
2116
2117 netdev_dbg(dev->net, "usbnet_write_cmd cmd=0x%02x reqtype=%02x"
2118 " value=0x%04x index=0x%04x size=%d\n",
2119 cmd, reqtype, value, index, size);
2120
2121 urb = usb_alloc_urb(0, GFP_ATOMIC);
Wolfram Sangef6cd132016-08-11 23:05:28 +02002122 if (!urb)
Ming Lei877bd862012-10-24 19:46:54 +00002123 goto fail;
Ming Lei877bd862012-10-24 19:46:54 +00002124
2125 if (data) {
2126 buf = kmemdup(data, size, GFP_ATOMIC);
2127 if (!buf) {
2128 netdev_err(dev->net, "Error allocating buffer"
2129 " in %s!\n", __func__);
2130 goto fail_free;
2131 }
2132 }
2133
2134 req = kmalloc(sizeof(struct usb_ctrlrequest), GFP_ATOMIC);
Joe Perches38673c82013-02-03 17:28:11 +00002135 if (!req)
Ming Lei877bd862012-10-24 19:46:54 +00002136 goto fail_free_buf;
Ming Lei877bd862012-10-24 19:46:54 +00002137
2138 req->bRequestType = reqtype;
2139 req->bRequest = cmd;
2140 req->wValue = cpu_to_le16(value);
2141 req->wIndex = cpu_to_le16(index);
2142 req->wLength = cpu_to_le16(size);
2143
2144 usb_fill_control_urb(urb, dev->udev,
2145 usb_sndctrlpipe(dev->udev, 0),
2146 (void *)req, buf, size,
2147 usbnet_async_cmd_cb, req);
2148 urb->transfer_flags |= URB_FREE_BUFFER;
2149
2150 err = usb_submit_urb(urb, GFP_ATOMIC);
2151 if (err < 0) {
2152 netdev_err(dev->net, "Error submitting the control"
2153 " message: status=%d\n", err);
2154 goto fail_free;
2155 }
2156 return 0;
2157
2158fail_free_buf:
2159 kfree(buf);
2160fail_free:
2161 kfree(req);
2162 usb_free_urb(urb);
2163fail:
2164 return err;
2165
2166}
2167EXPORT_SYMBOL_GPL(usbnet_write_cmd_async);
2168/*-------------------------------------------------------------------------*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169
David Brownellf29fc252005-08-31 09:52:31 -07002170static int __init usbnet_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171{
Thiago Farinac582a952011-04-17 17:49:21 -07002172 /* Compiler should optimize this out. */
2173 BUILD_BUG_ON(
2174 FIELD_SIZEOF(struct sk_buff, cb) < sizeof(struct skb_data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175
Joe Perchesc7e12ea2012-07-12 19:33:07 +00002176 eth_random_addr(node_id);
David Brownellcb1cebb2007-02-15 18:52:30 -08002177 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178}
David Brownellf29fc252005-08-31 09:52:31 -07002179module_init(usbnet_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180
David Brownellf29fc252005-08-31 09:52:31 -07002181static void __exit usbnet_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183}
David Brownellf29fc252005-08-31 09:52:31 -07002184module_exit(usbnet_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185
David Brownellf29fc252005-08-31 09:52:31 -07002186MODULE_AUTHOR("David Brownell");
David Brownell090ffa92005-08-31 09:54:50 -07002187MODULE_DESCRIPTION("USB network driver framework");
David Brownellf29fc252005-08-31 09:52:31 -07002188MODULE_LICENSE("GPL");