blob: d9eea8cfe6cb9a3bf8d0d4ce9198af9bccf9c757 [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);
Eric Dumazet26955782018-03-05 11:41:13 -0800318 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 int status;
320
Jussi Kivilinna7834ddb2009-08-11 22:57:16 +0300321 if (test_bit(EVENT_RX_PAUSED, &dev->flags)) {
322 skb_queue_tail(&dev->rxq_pause, skb);
323 return;
324 }
325
Bjørn Mork81e0ce72015-12-03 19:24:20 +0100326 /* only update if unset to allow minidriver rx_fixup override */
327 if (skb->protocol == 0)
328 skb->protocol = eth_type_trans (skb, dev->net);
329
Eric Dumazet26955782018-03-05 11:41:13 -0800330 flags = u64_stats_update_begin_irqsave(&stats64->syncp);
Greg Ungererc8b5d122017-04-03 15:50:03 +1000331 stats64->rx_packets++;
332 stats64->rx_bytes += skb->len;
Eric Dumazet26955782018-03-05 11:41:13 -0800333 u64_stats_update_end_irqrestore(&stats64->syncp, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Joe Perchesa475f602010-02-17 10:30:24 +0000335 netif_dbg(dev, rx_status, dev->net, "< rx, len %zu, type 0x%x\n",
336 skb->len + sizeof (struct ethhdr), skb->protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 memset (skb->cb, 0, sizeof (struct skb_data));
Michael Rieschf9b491e2011-09-29 04:06:26 +0000338
339 if (skb_defer_rx_timestamp(skb))
340 return;
341
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 status = netif_rx (skb);
Joe Perchesa475f602010-02-17 10:30:24 +0000343 if (status != NET_RX_SUCCESS)
344 netif_dbg(dev, rx_err, dev->net,
345 "netif_rx status %d\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346}
David Brownell2e55cc72005-08-31 09:53:10 -0700347EXPORT_SYMBOL_GPL(usbnet_skb_return);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Ming Leia88c32a2013-07-25 13:47:53 +0800349/* must be called if hard_mtu or rx_urb_size changed */
350void usbnet_update_max_qlen(struct usbnet *dev)
351{
352 enum usb_device_speed speed = dev->udev->speed;
353
354 switch (speed) {
355 case USB_SPEED_HIGH:
356 dev->rx_qlen = MAX_QUEUE_MEMORY / dev->rx_urb_size;
357 dev->tx_qlen = MAX_QUEUE_MEMORY / dev->hard_mtu;
358 break;
Ming Lei452c4472013-07-25 13:47:54 +0800359 case USB_SPEED_SUPER:
Oliver Neukumea079842016-05-02 13:06:13 +0200360 case USB_SPEED_SUPER_PLUS:
Ming Lei452c4472013-07-25 13:47:54 +0800361 /*
362 * Not take default 5ms qlen for super speed HC to
363 * save memory, and iperf tests show 2.5ms qlen can
364 * work well
365 */
366 dev->rx_qlen = 5 * MAX_QUEUE_MEMORY / dev->rx_urb_size;
367 dev->tx_qlen = 5 * MAX_QUEUE_MEMORY / dev->hard_mtu;
368 break;
Ming Leia88c32a2013-07-25 13:47:53 +0800369 default:
370 dev->rx_qlen = dev->tx_qlen = 4;
371 }
372}
373EXPORT_SYMBOL_GPL(usbnet_update_max_qlen);
374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376/*-------------------------------------------------------------------------
377 *
378 * Network Device Driver (peer link to "Host Device", from USB host)
379 *
380 *-------------------------------------------------------------------------*/
381
Stephen Hemminger777baa42009-03-20 19:35:54 +0000382int usbnet_change_mtu (struct net_device *net, int new_mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383{
384 struct usbnet *dev = netdev_priv(net);
David Brownellf29fc252005-08-31 09:52:31 -0700385 int ll_mtu = new_mtu + net->hard_header_len;
Jamie Paintera99c1942006-07-27 14:17:28 -0400386 int old_hard_mtu = dev->hard_mtu;
387 int old_rx_urb_size = dev->rx_urb_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 // no second zero-length packet read wanted after mtu-sized packets
David Brownellf29fc252005-08-31 09:52:31 -0700390 if ((ll_mtu % dev->maxpacket) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 return -EDOM;
392 net->mtu = new_mtu;
Jamie Paintera99c1942006-07-27 14:17:28 -0400393
394 dev->hard_mtu = net->mtu + net->hard_header_len;
395 if (dev->rx_urb_size == old_hard_mtu) {
396 dev->rx_urb_size = dev->hard_mtu;
Soohoon Lee43daa962016-06-29 15:07:21 -0400397 if (dev->rx_urb_size > old_rx_urb_size) {
398 usbnet_pause_rx(dev);
Jamie Paintera99c1942006-07-27 14:17:28 -0400399 usbnet_unlink_rx_urbs(dev);
Soohoon Lee43daa962016-06-29 15:07:21 -0400400 usbnet_resume_rx(dev);
401 }
Jamie Paintera99c1942006-07-27 14:17:28 -0400402 }
403
Ming Leia88c32a2013-07-25 13:47:53 +0800404 /* max qlen depend on hard_mtu and rx_urb_size */
405 usbnet_update_max_qlen(dev);
406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 return 0;
408}
Stephen Hemminger777baa42009-03-20 19:35:54 +0000409EXPORT_SYMBOL_GPL(usbnet_change_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800411/* The caller must hold list->lock */
412static void __usbnet_queue_skb(struct sk_buff_head *list,
413 struct sk_buff *newsk, enum skb_state state)
414{
415 struct skb_data *entry = (struct skb_data *) newsk->cb;
416
417 __skb_queue_tail(list, newsk);
418 entry->state = state;
419}
420
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421/*-------------------------------------------------------------------------*/
422
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423/* some LK 2.4 HCDs oopsed if we freed or resubmitted urbs from
424 * completion callbacks. 2.5 should have fixed those bugs...
425 */
426
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800427static enum skb_state defer_bh(struct usbnet *dev, struct sk_buff *skb,
428 struct sk_buff_head *list, enum skb_state state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 unsigned long flags;
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800431 enum skb_state old_state;
432 struct skb_data *entry = (struct skb_data *) skb->cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
David S. Miller8728b832005-08-09 19:25:21 -0700434 spin_lock_irqsave(&list->lock, flags);
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800435 old_state = entry->state;
436 entry->state = state;
David S. Miller8728b832005-08-09 19:25:21 -0700437 __skb_unlink(skb, list);
Eugene Shatokhinfcb0bb62015-09-01 17:05:33 +0300438
439 /* defer_bh() is never called with list == &dev->done.
440 * spin_lock_nested() tells lockdep that it is OK to take
441 * dev->done.lock here with list->lock held.
442 */
443 spin_lock_nested(&dev->done.lock, SINGLE_DEPTH_NESTING);
444
David S. Miller8728b832005-08-09 19:25:21 -0700445 __skb_queue_tail(&dev->done, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 if (dev->done.qlen == 1)
David S. Miller8728b832005-08-09 19:25:21 -0700447 tasklet_schedule(&dev->bh);
Eugene Shatokhinfcb0bb62015-09-01 17:05:33 +0300448 spin_unlock(&dev->done.lock);
449 spin_unlock_irqrestore(&list->lock, flags);
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800450 return old_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451}
452
453/* some work can't be done in tasklets, so we use keventd
454 *
455 * NOTE: annoying asymmetry: if it's active, schedule_work() fails,
456 * but tasklet_schedule() doesn't. hope the failure is rare.
457 */
David Brownell2e55cc72005-08-31 09:53:10 -0700458void usbnet_defer_kevent (struct usbnet *dev, int work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459{
460 set_bit (work, &dev->flags);
Oliver Neukumab18a9c2018-01-17 16:33:54 +0100461 if (!schedule_work (&dev->kevent))
462 netdev_dbg(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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465}
David Brownell2e55cc72005-08-31 09:53:10 -0700466EXPORT_SYMBOL_GPL(usbnet_defer_kevent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
468/*-------------------------------------------------------------------------*/
469
David Howells7d12e782006-10-05 14:55:46 +0100470static void rx_complete (struct urb *urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
David S. Millerdacb3972010-08-10 02:50:55 -0700472static int rx_submit (struct usbnet *dev, struct urb *urb, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473{
474 struct sk_buff *skb;
475 struct skb_data *entry;
476 int retval = 0;
477 unsigned long lockflags;
David Brownell2e55cc72005-08-31 09:53:10 -0700478 size_t size = dev->rx_urb_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Bjørn Mork70c37bf2013-01-28 23:51:28 +0000480 /* prevent rx skb allocation when error ratio is high */
481 if (test_bit(EVENT_RX_KILL, &dev->flags)) {
482 usb_free_urb(urb);
483 return -ENOLINK;
484 }
485
Bjørn Morka4abd7a2017-12-06 20:21:24 +0100486 if (test_bit(EVENT_NO_IP_ALIGN, &dev->flags))
487 skb = __netdev_alloc_skb(dev->net, size, flags);
488 else
489 skb = __netdev_alloc_skb_ip_align(dev->net, size, flags);
Eric Dumazet7bdd4022012-03-14 06:56:25 +0000490 if (!skb) {
Joe Perchesa475f602010-02-17 10:30:24 +0000491 netif_dbg(dev, rx_err, dev->net, "no rx skb\n");
David Brownell2e55cc72005-08-31 09:53:10 -0700492 usbnet_defer_kevent (dev, EVENT_RX_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 usb_free_urb (urb);
David S. Millerdacb3972010-08-10 02:50:55 -0700494 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
497 entry = (struct skb_data *) skb->cb;
498 entry->urb = urb;
499 entry->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 entry->length = 0;
501
502 usb_fill_bulk_urb (urb, dev->udev, dev->in,
503 skb->data, size, rx_complete, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
505 spin_lock_irqsave (&dev->rxq.lock, lockflags);
506
Joe Perches8e95a202009-12-03 07:58:21 +0000507 if (netif_running (dev->net) &&
508 netif_device_present (dev->net) &&
Oliver Neukum69ee472f2009-12-03 15:31:18 -0800509 !test_bit (EVENT_RX_HALT, &dev->flags) &&
510 !test_bit (EVENT_DEV_ASLEEP, &dev->flags)) {
David Brownell18ab4582007-05-25 12:31:32 -0700511 switch (retval = usb_submit_urb (urb, GFP_ATOMIC)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 case -EPIPE:
David Brownell2e55cc72005-08-31 09:53:10 -0700513 usbnet_defer_kevent (dev, EVENT_RX_HALT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 break;
515 case -ENOMEM:
David Brownell2e55cc72005-08-31 09:53:10 -0700516 usbnet_defer_kevent (dev, EVENT_RX_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 break;
518 case -ENODEV:
Joe Perchesa475f602010-02-17 10:30:24 +0000519 netif_dbg(dev, ifdown, dev->net, "device gone\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 netif_device_detach (dev->net);
521 break;
David S. Millerdacb3972010-08-10 02:50:55 -0700522 case -EHOSTUNREACH:
523 retval = -ENOLINK;
524 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 default:
Joe Perchesa475f602010-02-17 10:30:24 +0000526 netif_dbg(dev, rx_err, dev->net,
527 "rx submit, %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 tasklet_schedule (&dev->bh);
529 break;
530 case 0:
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800531 __usbnet_queue_skb(&dev->rxq, skb, rx_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 }
533 } else {
Joe Perchesa475f602010-02-17 10:30:24 +0000534 netif_dbg(dev, ifdown, dev->net, "rx: stopped\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 retval = -ENOLINK;
536 }
537 spin_unlock_irqrestore (&dev->rxq.lock, lockflags);
538 if (retval) {
539 dev_kfree_skb_any (skb);
540 usb_free_urb (urb);
541 }
David S. Millerdacb3972010-08-10 02:50:55 -0700542 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543}
544
545
546/*-------------------------------------------------------------------------*/
547
548static inline void rx_process (struct usbnet *dev, struct sk_buff *skb)
549{
Joe Perches8e95a202009-12-03 07:58:21 +0000550 if (dev->driver_info->rx_fixup &&
Andrzej Zaborowski7a635ea2011-03-28 12:56:33 +0000551 !dev->driver_info->rx_fixup (dev, skb)) {
552 /* With RX_ASSEMBLE, rx_fixup() must update counters */
553 if (!(dev->driver_info->flags & FLAG_RX_ASSEMBLE))
554 dev->net->stats.rx_errors++;
555 goto done;
556 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 // else network stack removes extra byte if we forced a short packet
558
Emil Goodeeb855692014-02-13 17:50:19 +0100559 /* all data was already cloned from skb inside the driver */
560 if (dev->driver_info->flags & FLAG_MULTI_PACKET)
561 goto done;
562
563 if (skb->len < ETH_HLEN) {
564 dev->net->stats.rx_errors++;
565 dev->net->stats.rx_length_errors++;
566 netif_dbg(dev, rx_err, dev->net, "rx length %d\n", skb->len);
567 } else {
568 usbnet_skb_return(dev, skb);
Alexey Orishko073285f2010-11-29 23:23:27 +0000569 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 }
Alexey Orishko073285f2010-11-29 23:23:27 +0000571
Andrzej Zaborowski7a635ea2011-03-28 12:56:33 +0000572done:
Alexey Orishko073285f2010-11-29 23:23:27 +0000573 skb_queue_tail(&dev->done, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574}
575
576/*-------------------------------------------------------------------------*/
577
David Howells7d12e782006-10-05 14:55:46 +0100578static void rx_complete (struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579{
580 struct sk_buff *skb = (struct sk_buff *) urb->context;
581 struct skb_data *entry = (struct skb_data *) skb->cb;
582 struct usbnet *dev = entry->dev;
583 int urb_status = urb->status;
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800584 enum skb_state state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
586 skb_put (skb, urb->actual_length);
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800587 state = rx_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 entry->urb = NULL;
589
590 switch (urb_status) {
David Brownell18ab4582007-05-25 12:31:32 -0700591 /* success */
592 case 0:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 break;
594
David Brownell18ab4582007-05-25 12:31:32 -0700595 /* stalls need manual reset. this is rare ... except that
596 * when going through USB 2.0 TTs, unplug appears this way.
Jean Delvare3ac49a12009-06-04 16:20:28 +0200597 * we avoid the highspeed version of the ETIMEDOUT/EILSEQ
David Brownell18ab4582007-05-25 12:31:32 -0700598 * storm, recovering as needed.
599 */
600 case -EPIPE:
Herbert Xu79638372009-06-29 16:53:28 +0000601 dev->net->stats.rx_errors++;
David Brownell2e55cc72005-08-31 09:53:10 -0700602 usbnet_defer_kevent (dev, EVENT_RX_HALT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 // FALLTHROUGH
604
David Brownell18ab4582007-05-25 12:31:32 -0700605 /* software-driven interface shutdown */
606 case -ECONNRESET: /* async unlink */
607 case -ESHUTDOWN: /* hardware gone */
Joe Perchesa475f602010-02-17 10:30:24 +0000608 netif_dbg(dev, ifdown, dev->net,
609 "rx shutdown, code %d\n", urb_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 goto block;
611
Petr Mladek37ebb542014-09-19 17:32:23 +0200612 /* we get controller i/o faults during hub_wq disconnect() delays.
David Brownell18ab4582007-05-25 12:31:32 -0700613 * throttle down resubmits, to avoid log floods; just temporarily,
Petr Mladek37ebb542014-09-19 17:32:23 +0200614 * so we still recover when the fault isn't a hub_wq delay.
David Brownell18ab4582007-05-25 12:31:32 -0700615 */
616 case -EPROTO:
617 case -ETIME:
618 case -EILSEQ:
Herbert Xu79638372009-06-29 16:53:28 +0000619 dev->net->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 if (!timer_pending (&dev->delay)) {
621 mod_timer (&dev->delay, jiffies + THROTTLE_JIFFIES);
Joe Perchesa475f602010-02-17 10:30:24 +0000622 netif_dbg(dev, link, dev->net,
623 "rx throttle %d\n", urb_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 }
625block:
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800626 state = rx_cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 entry->urb = urb;
628 urb = NULL;
629 break;
630
David Brownell18ab4582007-05-25 12:31:32 -0700631 /* data overrun ... flush fifo? */
632 case -EOVERFLOW:
Herbert Xu79638372009-06-29 16:53:28 +0000633 dev->net->stats.rx_over_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 // FALLTHROUGH
David Brownellcb1cebb2007-02-15 18:52:30 -0800635
David Brownell18ab4582007-05-25 12:31:32 -0700636 default:
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800637 state = rx_cleanup;
Herbert Xu79638372009-06-29 16:53:28 +0000638 dev->net->stats.rx_errors++;
Joe Perchesa475f602010-02-17 10:30:24 +0000639 netif_dbg(dev, rx_err, dev->net, "rx status %d\n", urb_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 break;
641 }
642
Bjørn Mork70c37bf2013-01-28 23:51:28 +0000643 /* stop rx if packet error rate is high */
644 if (++dev->pkt_cnt > 30) {
645 dev->pkt_cnt = 0;
646 dev->pkt_err = 0;
647 } else {
648 if (state == rx_cleanup)
649 dev->pkt_err++;
650 if (dev->pkt_err > 20)
651 set_bit(EVENT_RX_KILL, &dev->flags);
652 }
653
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800654 state = defer_bh(dev, skb, &dev->rxq, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
656 if (urb) {
Joe Perches8e95a202009-12-03 07:58:21 +0000657 if (netif_running (dev->net) &&
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800658 !test_bit (EVENT_RX_HALT, &dev->flags) &&
659 state != unlink_start) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 rx_submit (dev, urb, GFP_ATOMIC);
Oliver Neukum8a783352012-03-03 18:45:07 +0100661 usb_mark_last_busy(dev->udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 return;
663 }
664 usb_free_urb (urb);
665 }
Joe Perchesa475f602010-02-17 10:30:24 +0000666 netif_dbg(dev, rx_err, dev->net, "no read resubmitted\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667}
668
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669/*-------------------------------------------------------------------------*/
Jussi Kivilinna7834ddb2009-08-11 22:57:16 +0300670void usbnet_pause_rx(struct usbnet *dev)
671{
672 set_bit(EVENT_RX_PAUSED, &dev->flags);
673
Joe Perchesa475f602010-02-17 10:30:24 +0000674 netif_dbg(dev, rx_status, dev->net, "paused rx queue enabled\n");
Jussi Kivilinna7834ddb2009-08-11 22:57:16 +0300675}
676EXPORT_SYMBOL_GPL(usbnet_pause_rx);
677
678void usbnet_resume_rx(struct usbnet *dev)
679{
680 struct sk_buff *skb;
681 int num = 0;
682
683 clear_bit(EVENT_RX_PAUSED, &dev->flags);
684
685 while ((skb = skb_dequeue(&dev->rxq_pause)) != NULL) {
686 usbnet_skb_return(dev, skb);
687 num++;
688 }
689
690 tasklet_schedule(&dev->bh);
691
Joe Perchesa475f602010-02-17 10:30:24 +0000692 netif_dbg(dev, rx_status, dev->net,
693 "paused rx queue disabled, %d skbs requeued\n", num);
Jussi Kivilinna7834ddb2009-08-11 22:57:16 +0300694}
695EXPORT_SYMBOL_GPL(usbnet_resume_rx);
696
697void usbnet_purge_paused_rxq(struct usbnet *dev)
698{
699 skb_queue_purge(&dev->rxq_pause);
700}
701EXPORT_SYMBOL_GPL(usbnet_purge_paused_rxq);
702
703/*-------------------------------------------------------------------------*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
705// unlink pending rx/tx; completion handlers do all other cleanup
706
707static int unlink_urbs (struct usbnet *dev, struct sk_buff_head *q)
708{
709 unsigned long flags;
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800710 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 int count = 0;
712
713 spin_lock_irqsave (&q->lock, flags);
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800714 while (!skb_queue_empty(q)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 struct skb_data *entry;
716 struct urb *urb;
717 int retval;
718
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800719 skb_queue_walk(q, skb) {
720 entry = (struct skb_data *) skb->cb;
721 if (entry->state != unlink_start)
722 goto found;
723 }
724 break;
725found:
726 entry->state = unlink_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 urb = entry->urb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
tom.leiming@gmail.com0956a8c2012-03-22 03:22:18 +0000729 /*
730 * Get reference count of the URB to avoid it to be
731 * freed during usb_unlink_urb, which may trigger
732 * use-after-free problem inside usb_unlink_urb since
733 * usb_unlink_urb is always racing with .complete
734 * handler(include defer_bh).
735 */
736 usb_get_urb(urb);
Sebastian Siewior4231d472012-03-07 10:19:28 +0000737 spin_unlock_irqrestore(&q->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 // during some PM-driven resume scenarios,
739 // these (async) unlinks complete immediately
740 retval = usb_unlink_urb (urb);
741 if (retval != -EINPROGRESS && retval != 0)
Joe Perches60b86752010-02-17 10:30:23 +0000742 netdev_dbg(dev->net, "unlink urb err, %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 else
744 count++;
tom.leiming@gmail.com0956a8c2012-03-22 03:22:18 +0000745 usb_put_urb(urb);
Sebastian Siewior4231d472012-03-07 10:19:28 +0000746 spin_lock_irqsave(&q->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 }
748 spin_unlock_irqrestore (&q->lock, flags);
749 return count;
750}
751
Jamie Paintera99c1942006-07-27 14:17:28 -0400752// Flush all pending rx urbs
753// minidrivers may need to do this when the MTU changes
754
755void usbnet_unlink_rx_urbs(struct usbnet *dev)
756{
757 if (netif_running(dev->net)) {
758 (void) unlink_urbs (dev, &dev->rxq);
759 tasklet_schedule(&dev->bh);
760 }
761}
762EXPORT_SYMBOL_GPL(usbnet_unlink_rx_urbs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
764/*-------------------------------------------------------------------------*/
765
Eugene Shatokhinfcb0bb62015-09-01 17:05:33 +0300766static void wait_skb_queue_empty(struct sk_buff_head *q)
767{
768 unsigned long flags;
769
770 spin_lock_irqsave(&q->lock, flags);
771 while (!skb_queue_empty(q)) {
772 spin_unlock_irqrestore(&q->lock, flags);
773 schedule_timeout(msecs_to_jiffies(UNLINK_TIMEOUT_MS));
774 set_current_state(TASK_UNINTERRUPTIBLE);
775 spin_lock_irqsave(&q->lock, flags);
776 }
777 spin_unlock_irqrestore(&q->lock, flags);
778}
779
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780// precondition: never called in_interrupt
Oliver Neukum69ee472f2009-12-03 15:31:18 -0800781static void usbnet_terminate_urbs(struct usbnet *dev)
782{
Oliver Neukum69ee472f2009-12-03 15:31:18 -0800783 DECLARE_WAITQUEUE(wait, current);
784 int temp;
785
786 /* ensure there are no more active urbs */
Oliver Neukum14a0d632014-03-26 14:32:51 +0100787 add_wait_queue(&dev->wait, &wait);
Oliver Neukum69ee472f2009-12-03 15:31:18 -0800788 set_current_state(TASK_UNINTERRUPTIBLE);
Oliver Neukum69ee472f2009-12-03 15:31:18 -0800789 temp = unlink_urbs(dev, &dev->txq) +
790 unlink_urbs(dev, &dev->rxq);
791
792 /* maybe wait for deletions to finish. */
Eugene Shatokhinfcb0bb62015-09-01 17:05:33 +0300793 wait_skb_queue_empty(&dev->rxq);
794 wait_skb_queue_empty(&dev->txq);
795 wait_skb_queue_empty(&dev->done);
796 netif_dbg(dev, ifdown, dev->net,
797 "waited for %d urb completions\n", temp);
Oliver Neukum69ee472f2009-12-03 15:31:18 -0800798 set_current_state(TASK_RUNNING);
Oliver Neukum14a0d632014-03-26 14:32:51 +0100799 remove_wait_queue(&dev->wait, &wait);
Oliver Neukum69ee472f2009-12-03 15:31:18 -0800800}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
Stephen Hemminger777baa42009-03-20 19:35:54 +0000802int usbnet_stop (struct net_device *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803{
804 struct usbnet *dev = netdev_priv(net);
Jussi Kivilinnaa33e9e72009-06-16 17:17:27 +0300805 struct driver_info *info = dev->driver_info;
Eugene Shatokhinf50791a2015-08-24 23:13:42 +0300806 int retval, pm, mpn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
Ming Lei75bd0cb2011-04-28 22:37:09 +0000808 clear_bit(EVENT_DEV_OPEN, &dev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 netif_stop_queue (net);
810
Joe Perchesa475f602010-02-17 10:30:24 +0000811 netif_info(dev, ifdown, dev->net,
Ben Hutchings8ccef432010-06-08 08:20:59 +0000812 "stop stats: rx/tx %lu/%lu, errs %lu/%lu\n",
Joe Perchesa475f602010-02-17 10:30:24 +0000813 net->stats.rx_packets, net->stats.tx_packets,
814 net->stats.rx_errors, net->stats.tx_errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
Oliver Neukum14a0d632014-03-26 14:32:51 +0100816 /* to not race resume */
817 pm = usb_autopm_get_interface(dev->intf);
Jussi Kivilinnaa33e9e72009-06-16 17:17:27 +0300818 /* allow minidriver to stop correctly (wireless devices to turn off
819 * radio etc) */
820 if (info->stop) {
821 retval = info->stop(dev);
Joe Perchesa475f602010-02-17 10:30:24 +0000822 if (retval < 0)
823 netif_info(dev, ifdown, dev->net,
824 "stop fail (%d) usbnet usb-%s-%s, %s\n",
825 retval,
826 dev->udev->bus->bus_name, dev->udev->devpath,
827 info->description);
Jussi Kivilinnaa33e9e72009-06-16 17:17:27 +0300828 }
829
Oliver Neukum69ee472f2009-12-03 15:31:18 -0800830 if (!(info->flags & FLAG_AVOID_UNLINK_URBS))
831 usbnet_terminate_urbs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
Dan Williams6eecdc52013-05-06 11:29:23 +0000833 usbnet_status_stop(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
Jussi Kivilinna7834ddb2009-08-11 22:57:16 +0300835 usbnet_purge_paused_rxq(dev);
836
Eugene Shatokhinf50791a2015-08-24 23:13:42 +0300837 mpn = !test_and_clear_bit(EVENT_NO_RUNTIME_PM, &dev->flags);
838
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 /* deferred work (task, timer, softirq) must also stop.
840 * can't flush_scheduled_work() until we drop rtnl (later),
841 * else workers could deadlock; so make workers a NOP.
842 */
843 dev->flags = 0;
844 del_timer_sync (&dev->delay);
845 tasklet_kill (&dev->bh);
Oliver Neukum14a0d632014-03-26 14:32:51 +0100846 if (!pm)
847 usb_autopm_put_interface(dev->intf);
848
Eugene Shatokhinf50791a2015-08-24 23:13:42 +0300849 if (info->manage_power && mpn)
Oliver Neukum69ee472f2009-12-03 15:31:18 -0800850 info->manage_power(dev, 0);
851 else
852 usb_autopm_put_interface(dev->intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
854 return 0;
855}
Stephen Hemminger777baa42009-03-20 19:35:54 +0000856EXPORT_SYMBOL_GPL(usbnet_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
858/*-------------------------------------------------------------------------*/
859
860// posts reads, and enables write queuing
861
862// precondition: never called in_interrupt
863
Stephen Hemminger777baa42009-03-20 19:35:54 +0000864int usbnet_open (struct net_device *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865{
866 struct usbnet *dev = netdev_priv(net);
Oliver Neukuma11a6542007-08-03 13:52:19 +0200867 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 struct driver_info *info = dev->driver_info;
869
Oliver Neukuma11a6542007-08-03 13:52:19 +0200870 if ((retval = usb_autopm_get_interface(dev->intf)) < 0) {
Joe Perchesa475f602010-02-17 10:30:24 +0000871 netif_info(dev, ifup, dev->net,
872 "resumption fail (%d) usbnet usb-%s-%s, %s\n",
873 retval,
874 dev->udev->bus->bus_name,
875 dev->udev->devpath,
876 info->description);
Oliver Neukuma11a6542007-08-03 13:52:19 +0200877 goto done_nopm;
878 }
879
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 // put into "known safe" state
881 if (info->reset && (retval = info->reset (dev)) < 0) {
Joe Perchesa475f602010-02-17 10:30:24 +0000882 netif_info(dev, ifup, dev->net,
883 "open reset fail (%d) usbnet usb-%s-%s, %s\n",
884 retval,
885 dev->udev->bus->bus_name,
886 dev->udev->devpath,
887 info->description);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 goto done;
889 }
890
Ming Leia88c32a2013-07-25 13:47:53 +0800891 /* hard_mtu or rx_urb_size may change in reset() */
892 usbnet_update_max_qlen(dev);
893
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 // insist peer be connected
895 if (info->check_connect && (retval = info->check_connect (dev)) < 0) {
Joe Perchesa475f602010-02-17 10:30:24 +0000896 netif_dbg(dev, ifup, dev->net, "can't open; %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 goto done;
898 }
899
900 /* start any status interrupt transfer */
901 if (dev->interrupt) {
Dan Williams6eecdc52013-05-06 11:29:23 +0000902 retval = usbnet_status_start(dev, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 if (retval < 0) {
Joe Perchesa475f602010-02-17 10:30:24 +0000904 netif_err(dev, ifup, dev->net,
905 "intr submit %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 goto done;
907 }
908 }
909
Paul Stewart68972ef2011-04-28 05:43:37 +0000910 set_bit(EVENT_DEV_OPEN, &dev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 netif_start_queue (net);
Joe Perchesa475f602010-02-17 10:30:24 +0000912 netif_info(dev, ifup, dev->net,
913 "open: enable queueing (rx %d, tx %d) mtu %d %s framing\n",
914 (int)RX_QLEN(dev), (int)TX_QLEN(dev),
915 dev->net->mtu,
916 (dev->driver_info->flags & FLAG_FRAMING_NC) ? "NetChip" :
917 (dev->driver_info->flags & FLAG_FRAMING_GL) ? "GeneSys" :
918 (dev->driver_info->flags & FLAG_FRAMING_Z) ? "Zaurus" :
919 (dev->driver_info->flags & FLAG_FRAMING_RN) ? "RNDIS" :
920 (dev->driver_info->flags & FLAG_FRAMING_AX) ? "ASIX" :
921 "simple");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
Bjørn Mork70c37bf2013-01-28 23:51:28 +0000923 /* reset rx error state */
924 dev->pkt_cnt = 0;
925 dev->pkt_err = 0;
926 clear_bit(EVENT_RX_KILL, &dev->flags);
927
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 // delay posting reads until we're fully open
929 tasklet_schedule (&dev->bh);
Oliver Neukum69ee472f2009-12-03 15:31:18 -0800930 if (info->manage_power) {
931 retval = info->manage_power(dev, 1);
Oliver Neukuma1c088e2012-12-18 04:45:29 +0000932 if (retval < 0) {
933 retval = 0;
934 set_bit(EVENT_NO_RUNTIME_PM, &dev->flags);
935 } else {
936 usb_autopm_put_interface(dev->intf);
937 }
Oliver Neukum69ee472f2009-12-03 15:31:18 -0800938 }
Oliver Neukuma11a6542007-08-03 13:52:19 +0200939 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940done:
Oliver Neukuma11a6542007-08-03 13:52:19 +0200941 usb_autopm_put_interface(dev->intf);
942done_nopm:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 return retval;
944}
Stephen Hemminger777baa42009-03-20 19:35:54 +0000945EXPORT_SYMBOL_GPL(usbnet_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
947/*-------------------------------------------------------------------------*/
948
David Brownell2e55cc72005-08-31 09:53:10 -0700949/* ethtool methods; minidrivers may need to add some more, but
950 * they'll probably want to use this base set.
951 */
952
Philippe Reynes8bae3552017-03-16 23:18:47 +0100953int usbnet_get_link_ksettings(struct net_device *net,
954 struct ethtool_link_ksettings *cmd)
955{
956 struct usbnet *dev = netdev_priv(net);
957
958 if (!dev->mii.mdio_read)
959 return -EOPNOTSUPP;
960
yuval.shaia@oracle.com82c01a82017-06-04 20:22:00 +0300961 mii_ethtool_get_link_ksettings(&dev->mii, cmd);
962
963 return 0;
Philippe Reynes8bae3552017-03-16 23:18:47 +0100964}
965EXPORT_SYMBOL_GPL(usbnet_get_link_ksettings);
966
967int usbnet_set_link_ksettings(struct net_device *net,
968 const struct ethtool_link_ksettings *cmd)
969{
970 struct usbnet *dev = netdev_priv(net);
971 int retval;
972
973 if (!dev->mii.mdio_write)
974 return -EOPNOTSUPP;
975
976 retval = mii_ethtool_set_link_ksettings(&dev->mii, cmd);
977
978 /* link speed/duplex might have changed */
979 if (dev->driver_info->link_reset)
980 dev->driver_info->link_reset(dev);
981
982 /* hard_mtu or rx_urb_size may change in link_reset() */
983 usbnet_update_max_qlen(dev);
984
985 return retval;
986}
987EXPORT_SYMBOL_GPL(usbnet_set_link_ksettings);
988
Greg Ungererc8b5d122017-04-03 15:50:03 +1000989void usbnet_get_stats64(struct net_device *net, struct rtnl_link_stats64 *stats)
990{
991 struct usbnet *dev = netdev_priv(net);
992 unsigned int start;
993 int cpu;
994
995 netdev_stats_to_stats64(stats, &net->stats);
996
997 for_each_possible_cpu(cpu) {
998 struct pcpu_sw_netstats *stats64;
999 u64 rx_packets, rx_bytes;
1000 u64 tx_packets, tx_bytes;
1001
1002 stats64 = per_cpu_ptr(dev->stats64, cpu);
1003
1004 do {
1005 start = u64_stats_fetch_begin_irq(&stats64->syncp);
1006 rx_packets = stats64->rx_packets;
1007 rx_bytes = stats64->rx_bytes;
1008 tx_packets = stats64->tx_packets;
1009 tx_bytes = stats64->tx_bytes;
1010 } while (u64_stats_fetch_retry_irq(&stats64->syncp, start));
1011
1012 stats->rx_packets += rx_packets;
1013 stats->rx_bytes += rx_bytes;
1014 stats->tx_packets += tx_packets;
1015 stats->tx_bytes += tx_bytes;
1016 }
1017}
1018EXPORT_SYMBOL_GPL(usbnet_get_stats64);
1019
Arnd Bergmannc41286f2006-10-09 00:08:01 +02001020u32 usbnet_get_link (struct net_device *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021{
1022 struct usbnet *dev = netdev_priv(net);
1023
David Brownellf29fc252005-08-31 09:52:31 -07001024 /* If a check_connect is defined, return its result */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 if (dev->driver_info->check_connect)
1026 return dev->driver_info->check_connect (dev) == 0;
1027
Arnd Bergmannc41286f2006-10-09 00:08:01 +02001028 /* if the device has mii operations, use those */
1029 if (dev->mii.mdio_read)
1030 return mii_link_ok(&dev->mii);
1031
Bjørn Mork05ffb3e2009-03-01 20:45:40 -08001032 /* Otherwise, dtrt for drivers calling netif_carrier_{on,off} */
1033 return ethtool_op_get_link(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034}
Arnd Bergmannc41286f2006-10-09 00:08:01 +02001035EXPORT_SYMBOL_GPL(usbnet_get_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
David Brownell18ee91fa2006-11-02 12:29:12 -08001037int usbnet_nway_reset(struct net_device *net)
1038{
1039 struct usbnet *dev = netdev_priv(net);
1040
1041 if (!dev->mii.mdio_write)
1042 return -EOPNOTSUPP;
1043
1044 return mii_nway_restart(&dev->mii);
1045}
1046EXPORT_SYMBOL_GPL(usbnet_nway_reset);
1047
David Brownell18ee91fa2006-11-02 12:29:12 -08001048void usbnet_get_drvinfo (struct net_device *net, struct ethtool_drvinfo *info)
1049{
1050 struct usbnet *dev = netdev_priv(net);
1051
Phil Sutter86a2f412012-06-14 01:18:42 +00001052 strlcpy (info->driver, dev->driver_name, sizeof info->driver);
1053 strlcpy (info->version, DRIVER_VERSION, sizeof info->version);
1054 strlcpy (info->fw_version, dev->driver_info->description,
David Brownell18ee91fa2006-11-02 12:29:12 -08001055 sizeof info->fw_version);
1056 usb_make_path (dev->udev, info->bus_info, sizeof info->bus_info);
1057}
1058EXPORT_SYMBOL_GPL(usbnet_get_drvinfo);
1059
David Brownell2e55cc72005-08-31 09:53:10 -07001060u32 usbnet_get_msglevel (struct net_device *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061{
1062 struct usbnet *dev = netdev_priv(net);
1063
1064 return dev->msg_enable;
1065}
David Brownell2e55cc72005-08-31 09:53:10 -07001066EXPORT_SYMBOL_GPL(usbnet_get_msglevel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067
David Brownell2e55cc72005-08-31 09:53:10 -07001068void usbnet_set_msglevel (struct net_device *net, u32 level)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069{
1070 struct usbnet *dev = netdev_priv(net);
1071
1072 dev->msg_enable = level;
1073}
David Brownell2e55cc72005-08-31 09:53:10 -07001074EXPORT_SYMBOL_GPL(usbnet_set_msglevel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
David Brownell2e55cc72005-08-31 09:53:10 -07001076/* drivers may override default ethtool_ops in their bind() routine */
Stephen Hemminger0fc0b732009-09-02 01:03:33 -07001077static const struct ethtool_ops usbnet_ethtool_ops = {
David Brownell2e55cc72005-08-31 09:53:10 -07001078 .get_link = usbnet_get_link,
Arnd Bergmannc41286f2006-10-09 00:08:01 +02001079 .nway_reset = usbnet_nway_reset,
David Brownell18ee91fa2006-11-02 12:29:12 -08001080 .get_drvinfo = usbnet_get_drvinfo,
David Brownell2e55cc72005-08-31 09:53:10 -07001081 .get_msglevel = usbnet_get_msglevel,
1082 .set_msglevel = usbnet_set_msglevel,
Richard Cochran123edb12012-04-03 22:59:41 +00001083 .get_ts_info = ethtool_op_get_ts_info,
Philippe Reynes8bae3552017-03-16 23:18:47 +01001084 .get_link_ksettings = usbnet_get_link_ksettings,
1085 .set_link_ksettings = usbnet_set_link_ksettings,
David Brownell2e55cc72005-08-31 09:53:10 -07001086};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087
1088/*-------------------------------------------------------------------------*/
1089
Ming Lei4b49f582013-04-11 04:40:40 +00001090static void __handle_link_change(struct usbnet *dev)
1091{
1092 if (!test_bit(EVENT_DEV_OPEN, &dev->flags))
1093 return;
1094
1095 if (!netif_carrier_ok(dev->net)) {
1096 /* kill URBs for reading packets to save bus bandwidth */
1097 unlink_urbs(dev, &dev->rxq);
1098
1099 /*
1100 * tx_timeout will unlink URBs for sending packets and
1101 * tx queue is stopped by netcore after link becomes off
1102 */
1103 } else {
1104 /* submitting URBs for reading packets */
1105 tasklet_schedule(&dev->bh);
1106 }
1107
Ming Leia88c32a2013-07-25 13:47:53 +08001108 /* hard_mtu or rx_urb_size may change during link change */
1109 usbnet_update_max_qlen(dev);
1110
Ming Lei4b49f582013-04-11 04:40:40 +00001111 clear_bit(EVENT_LINK_CHANGE, &dev->flags);
1112}
1113
Olivier Blin1efed2d2014-10-24 19:43:00 +02001114static void usbnet_set_rx_mode(struct net_device *net)
1115{
1116 struct usbnet *dev = netdev_priv(net);
1117
1118 usbnet_defer_kevent(dev, EVENT_SET_RX_MODE);
1119}
1120
1121static void __handle_set_rx_mode(struct usbnet *dev)
1122{
1123 if (dev->driver_info->set_rx_mode)
1124 (dev->driver_info->set_rx_mode)(dev);
1125
1126 clear_bit(EVENT_SET_RX_MODE, &dev->flags);
1127}
1128
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129/* work that cannot be done in interrupt context uses keventd.
1130 *
1131 * NOTE: with 2.5 we could do more of this using completion callbacks,
1132 * especially now that control transfers can be queued.
1133 */
1134static void
Oliver Neukum11f17ef2015-04-09 10:09:04 +02001135usbnet_deferred_kevent (struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136{
David Howellsc4028952006-11-22 14:57:56 +00001137 struct usbnet *dev =
1138 container_of(work, struct usbnet, kevent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 int status;
1140
1141 /* usb_clear_halt() needs a thread context */
1142 if (test_bit (EVENT_TX_HALT, &dev->flags)) {
1143 unlink_urbs (dev, &dev->txq);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001144 status = usb_autopm_get_interface(dev->intf);
1145 if (status < 0)
1146 goto fail_pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 status = usb_clear_halt (dev->udev, dev->out);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001148 usb_autopm_put_interface(dev->intf);
Joe Perches8e95a202009-12-03 07:58:21 +00001149 if (status < 0 &&
1150 status != -EPIPE &&
1151 status != -ESHUTDOWN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 if (netif_msg_tx_err (dev))
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001153fail_pipe:
Joe Perches60b86752010-02-17 10:30:23 +00001154 netdev_err(dev->net, "can't clear tx halt, status %d\n",
1155 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 } else {
1157 clear_bit (EVENT_TX_HALT, &dev->flags);
David Brownellf29fc252005-08-31 09:52:31 -07001158 if (status != -ESHUTDOWN)
1159 netif_wake_queue (dev->net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 }
1161 }
1162 if (test_bit (EVENT_RX_HALT, &dev->flags)) {
1163 unlink_urbs (dev, &dev->rxq);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001164 status = usb_autopm_get_interface(dev->intf);
1165 if (status < 0)
1166 goto fail_halt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 status = usb_clear_halt (dev->udev, dev->in);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001168 usb_autopm_put_interface(dev->intf);
Joe Perches8e95a202009-12-03 07:58:21 +00001169 if (status < 0 &&
1170 status != -EPIPE &&
1171 status != -ESHUTDOWN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 if (netif_msg_rx_err (dev))
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001173fail_halt:
Joe Perches60b86752010-02-17 10:30:23 +00001174 netdev_err(dev->net, "can't clear rx halt, status %d\n",
1175 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 } else {
1177 clear_bit (EVENT_RX_HALT, &dev->flags);
1178 tasklet_schedule (&dev->bh);
1179 }
1180 }
1181
1182 /* tasklet could resubmit itself forever if memory is tight */
1183 if (test_bit (EVENT_RX_MEMORY, &dev->flags)) {
1184 struct urb *urb = NULL;
David S. Millerdacb3972010-08-10 02:50:55 -07001185 int resched = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186
1187 if (netif_running (dev->net))
1188 urb = usb_alloc_urb (0, GFP_KERNEL);
1189 else
1190 clear_bit (EVENT_RX_MEMORY, &dev->flags);
1191 if (urb != NULL) {
1192 clear_bit (EVENT_RX_MEMORY, &dev->flags);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001193 status = usb_autopm_get_interface(dev->intf);
Jesper Juhlab607072011-02-10 10:58:45 +00001194 if (status < 0) {
1195 usb_free_urb(urb);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001196 goto fail_lowmem;
Jesper Juhlab607072011-02-10 10:58:45 +00001197 }
David S. Millerdacb3972010-08-10 02:50:55 -07001198 if (rx_submit (dev, urb, GFP_KERNEL) == -ENOLINK)
1199 resched = 0;
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001200 usb_autopm_put_interface(dev->intf);
1201fail_lowmem:
David S. Millerdacb3972010-08-10 02:50:55 -07001202 if (resched)
1203 tasklet_schedule (&dev->bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 }
1205 }
1206
David Hollis7ea13c92005-04-22 15:07:02 -07001207 if (test_bit (EVENT_LINK_RESET, &dev->flags)) {
David Brownellcb1cebb2007-02-15 18:52:30 -08001208 struct driver_info *info = dev->driver_info;
David Hollis7ea13c92005-04-22 15:07:02 -07001209 int retval = 0;
1210
1211 clear_bit (EVENT_LINK_RESET, &dev->flags);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001212 status = usb_autopm_get_interface(dev->intf);
1213 if (status < 0)
1214 goto skip_reset;
David Hollis7ea13c92005-04-22 15:07:02 -07001215 if(info->link_reset && (retval = info->link_reset(dev)) < 0) {
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001216 usb_autopm_put_interface(dev->intf);
1217skip_reset:
Joe Perches60b86752010-02-17 10:30:23 +00001218 netdev_info(dev->net, "link reset failed (%d) usbnet usb-%s-%s, %s\n",
1219 retval,
1220 dev->udev->bus->bus_name,
1221 dev->udev->devpath,
1222 info->description);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001223 } else {
1224 usb_autopm_put_interface(dev->intf);
David Hollis7ea13c92005-04-22 15:07:02 -07001225 }
Ming Lei4b49f582013-04-11 04:40:40 +00001226
1227 /* handle link change from link resetting */
1228 __handle_link_change(dev);
David Hollis7ea13c92005-04-22 15:07:02 -07001229 }
1230
Ming Lei4b49f582013-04-11 04:40:40 +00001231 if (test_bit (EVENT_LINK_CHANGE, &dev->flags))
1232 __handle_link_change(dev);
1233
Olivier Blin1efed2d2014-10-24 19:43:00 +02001234 if (test_bit (EVENT_SET_RX_MODE, &dev->flags))
1235 __handle_set_rx_mode(dev);
1236
1237
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 if (dev->flags)
Joe Perches60b86752010-02-17 10:30:23 +00001239 netdev_dbg(dev->net, "kevent done, flags = 0x%lx\n", dev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240}
1241
1242/*-------------------------------------------------------------------------*/
1243
David Howells7d12e782006-10-05 14:55:46 +01001244static void tx_complete (struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245{
1246 struct sk_buff *skb = (struct sk_buff *) urb->context;
1247 struct skb_data *entry = (struct skb_data *) skb->cb;
1248 struct usbnet *dev = entry->dev;
1249
1250 if (urb->status == 0) {
Greg Ungererc8b5d122017-04-03 15:50:03 +10001251 struct pcpu_sw_netstats *stats64 = this_cpu_ptr(dev->stats64);
Eric Dumazet26955782018-03-05 11:41:13 -08001252 unsigned long flags;
Greg Ungererc8b5d122017-04-03 15:50:03 +10001253
Eric Dumazet26955782018-03-05 11:41:13 -08001254 flags = u64_stats_update_begin_irqsave(&stats64->syncp);
Greg Ungererc8b5d122017-04-03 15:50:03 +10001255 stats64->tx_packets += entry->packets;
1256 stats64->tx_bytes += entry->length;
Eric Dumazet26955782018-03-05 11:41:13 -08001257 u64_stats_update_end_irqrestore(&stats64->syncp, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 } else {
Herbert Xu79638372009-06-29 16:53:28 +00001259 dev->net->stats.tx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260
1261 switch (urb->status) {
1262 case -EPIPE:
David Brownell2e55cc72005-08-31 09:53:10 -07001263 usbnet_defer_kevent (dev, EVENT_TX_HALT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 break;
1265
1266 /* software-driven interface shutdown */
1267 case -ECONNRESET: // async unlink
1268 case -ESHUTDOWN: // hardware gone
1269 break;
1270
Petr Mladek37ebb542014-09-19 17:32:23 +02001271 /* like rx, tx gets controller i/o faults during hub_wq
1272 * delays and so it uses the same throttling mechanism.
1273 */
Pete Zaitcev38e2bfc2006-09-18 22:49:02 -07001274 case -EPROTO:
1275 case -ETIME:
1276 case -EILSEQ:
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001277 usb_mark_last_busy(dev->udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 if (!timer_pending (&dev->delay)) {
1279 mod_timer (&dev->delay,
1280 jiffies + THROTTLE_JIFFIES);
Joe Perchesa475f602010-02-17 10:30:24 +00001281 netif_dbg(dev, link, dev->net,
1282 "tx throttle %d\n", urb->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 }
1284 netif_stop_queue (dev->net);
1285 break;
1286 default:
Joe Perchesa475f602010-02-17 10:30:24 +00001287 netif_dbg(dev, tx_err, dev->net,
1288 "tx err %d\n", entry->urb->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 break;
1290 }
1291 }
1292
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001293 usb_autopm_put_interface_async(dev->intf);
Ming Lei5b6e9bc2012-04-26 11:33:46 +08001294 (void) defer_bh(dev, skb, &dev->txq, tx_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295}
1296
1297/*-------------------------------------------------------------------------*/
1298
Stephen Hemminger777baa42009-03-20 19:35:54 +00001299void usbnet_tx_timeout (struct net_device *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300{
1301 struct usbnet *dev = netdev_priv(net);
1302
1303 unlink_urbs (dev, &dev->txq);
1304 tasklet_schedule (&dev->bh);
Oliver Neukumdbcdd4d2014-08-01 14:01:51 +02001305 /* this needs to be handled individually because the generic layer
1306 * doesn't know what is sufficient and could not restore private
1307 * information if a remedy of an unconditional reset were used.
1308 */
1309 if (dev->driver_info->recover)
1310 (dev->driver_info->recover)(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311}
Stephen Hemminger777baa42009-03-20 19:35:54 +00001312EXPORT_SYMBOL_GPL(usbnet_tx_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
1314/*-------------------------------------------------------------------------*/
1315
Ming Lei638c5112013-08-08 21:48:24 +08001316static int build_dma_sg(const struct sk_buff *skb, struct urb *urb)
1317{
1318 unsigned num_sgs, total_len = 0;
1319 int i, s = 0;
1320
1321 num_sgs = skb_shinfo(skb)->nr_frags + 1;
1322 if (num_sgs == 1)
1323 return 0;
1324
Ming Lei60e453a2013-09-23 20:59:35 +08001325 /* reserve one for zero packet */
1326 urb->sg = kmalloc((num_sgs + 1) * sizeof(struct scatterlist),
1327 GFP_ATOMIC);
Ming Lei638c5112013-08-08 21:48:24 +08001328 if (!urb->sg)
1329 return -ENOMEM;
1330
1331 urb->num_sgs = num_sgs;
Bjørn Morkfdc34522014-01-10 23:10:17 +01001332 sg_init_table(urb->sg, urb->num_sgs + 1);
Ming Lei638c5112013-08-08 21:48:24 +08001333
1334 sg_set_buf(&urb->sg[s++], skb->data, skb_headlen(skb));
1335 total_len += skb_headlen(skb);
1336
1337 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1338 struct skb_frag_struct *f = &skb_shinfo(skb)->frags[i];
1339
1340 total_len += skb_frag_size(f);
1341 sg_set_page(&urb->sg[i + s], f->page.p, f->size,
1342 f->page_offset);
1343 }
1344 urb->transfer_buffer_length = total_len;
1345
1346 return 1;
1347}
1348
Stephen Hemminger25a79c42009-08-31 19:50:45 +00001349netdev_tx_t usbnet_start_xmit (struct sk_buff *skb,
1350 struct net_device *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351{
1352 struct usbnet *dev = netdev_priv(net);
Jason A. Donenfeld3e4336a2015-05-06 15:09:40 +02001353 unsigned int length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 struct urb *urb = NULL;
1355 struct skb_data *entry;
1356 struct driver_info *info = dev->driver_info;
1357 unsigned long flags;
Stephen Hemminger25a79c42009-08-31 19:50:45 +00001358 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
Konstantin Khlebnikov23ba0792011-11-07 05:54:58 +00001360 if (skb)
1361 skb_tx_timestamp(skb);
Michael Rieschf9b491e2011-09-29 04:06:26 +00001362
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 // some devices want funky USB-level framing, for
1364 // win32 driver (usually) and/or hardware quirks
1365 if (info->tx_fixup) {
1366 skb = info->tx_fixup (dev, skb, GFP_ATOMIC);
1367 if (!skb) {
Bjørn Morkbf414b32013-01-31 08:36:05 +00001368 /* packet collected; minidriver waiting for more */
1369 if (info->flags & FLAG_MULTI_PACKET)
Alexey Orishko073285f2010-11-29 23:23:27 +00001370 goto not_drop;
Bjørn Morkbf414b32013-01-31 08:36:05 +00001371 netif_dbg(dev, tx_err, dev->net, "can't tx_fixup skb\n");
1372 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 }
1374 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375
1376 if (!(urb = usb_alloc_urb (0, GFP_ATOMIC))) {
Joe Perchesa475f602010-02-17 10:30:24 +00001377 netif_dbg(dev, tx_err, dev->net, "no urb\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 goto drop;
1379 }
1380
1381 entry = (struct skb_data *) skb->cb;
1382 entry->urb = urb;
1383 entry->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 usb_fill_bulk_urb (urb, dev->udev, dev->out,
1386 skb->data, skb->len, tx_complete, skb);
Ming Lei638c5112013-08-08 21:48:24 +08001387 if (dev->can_dma_sg) {
1388 if (build_dma_sg(skb, urb) < 0)
1389 goto drop;
1390 }
Ming Lei60e453a2013-09-23 20:59:35 +08001391 length = urb->transfer_buffer_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392
1393 /* don't assume the hardware handles USB_ZERO_PACKET
1394 * NOTE: strictly conforming cdc-ether devices should expect
1395 * the ZLP here, but ignore the one-byte packet.
Alexey Orishko073285f2010-11-29 23:23:27 +00001396 * NOTE2: CDC NCM specification is different from CDC ECM when
1397 * handling ZLP/short packets, so cdc_ncm driver will make short
1398 * packet itself if needed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 */
Elina Pashevab4d562e32010-04-06 14:23:07 +00001400 if (length % dev->maxpacket == 0) {
1401 if (!(info->flags & FLAG_SEND_ZLP)) {
Alexey Orishko073285f2010-11-29 23:23:27 +00001402 if (!(info->flags & FLAG_MULTI_PACKET)) {
Ming Lei60e453a2013-09-23 20:59:35 +08001403 length++;
1404 if (skb_tailroom(skb) && !urb->num_sgs) {
Alexey Orishko073285f2010-11-29 23:23:27 +00001405 skb->data[skb->len] = 0;
1406 __skb_put(skb, 1);
Ming Lei60e453a2013-09-23 20:59:35 +08001407 } else if (urb->num_sgs)
1408 sg_set_buf(&urb->sg[urb->num_sgs++],
1409 dev->padding_pkt, 1);
Elina Pashevab4d562e32010-04-06 14:23:07 +00001410 }
1411 } else
1412 urb->transfer_flags |= URB_ZERO_PACKET;
Peter Korsgaard3e323f32007-06-27 08:48:15 +02001413 }
Ben Hutchings7a1e8902015-03-25 21:41:33 +01001414 urb->transfer_buffer_length = length;
1415
1416 if (info->flags & FLAG_MULTI_PACKET) {
1417 /* Driver has set number of packets and a length delta.
1418 * Calculate the complete length and ensure that it's
1419 * positive.
1420 */
1421 entry->length += length;
1422 if (WARN_ON_ONCE(entry->length <= 0))
1423 entry->length = length;
1424 } else {
1425 usbnet_set_skb_tx_stats(skb, 1, length);
1426 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001428 spin_lock_irqsave(&dev->txq.lock, flags);
1429 retval = usb_autopm_get_interface_async(dev->intf);
1430 if (retval < 0) {
1431 spin_unlock_irqrestore(&dev->txq.lock, flags);
1432 goto drop;
1433 }
1434
1435#ifdef CONFIG_PM
1436 /* if this triggers the device is still a sleep */
1437 if (test_bit(EVENT_DEV_ASLEEP, &dev->flags)) {
1438 /* transmission will be done in resume */
1439 usb_anchor_urb(urb, &dev->deferred);
1440 /* no use to process more packets */
1441 netif_stop_queue(net);
Hemant Kumar39707c22012-10-25 18:17:54 +00001442 usb_put_urb(urb);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001443 spin_unlock_irqrestore(&dev->txq.lock, flags);
Joe Perches60b86752010-02-17 10:30:23 +00001444 netdev_dbg(dev->net, "Delaying transmission for resumption\n");
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001445 goto deferred;
1446 }
1447#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 switch ((retval = usb_submit_urb (urb, GFP_ATOMIC))) {
1450 case -EPIPE:
1451 netif_stop_queue (net);
David Brownell2e55cc72005-08-31 09:53:10 -07001452 usbnet_defer_kevent (dev, EVENT_TX_HALT);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001453 usb_autopm_put_interface_async(dev->intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 break;
1455 default:
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001456 usb_autopm_put_interface_async(dev->intf);
Joe Perchesa475f602010-02-17 10:30:24 +00001457 netif_dbg(dev, tx_err, dev->net,
1458 "tx: submit urb err %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 break;
1460 case 0:
Florian Westphal860e9532016-05-03 16:33:13 +02001461 netif_trans_update(net);
Ming Lei5b6e9bc2012-04-26 11:33:46 +08001462 __usbnet_queue_skb(&dev->txq, skb, tx_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 if (dev->txq.qlen >= TX_QLEN (dev))
1464 netif_stop_queue (net);
1465 }
1466 spin_unlock_irqrestore (&dev->txq.lock, flags);
1467
1468 if (retval) {
Joe Perchesa475f602010-02-17 10:30:24 +00001469 netif_dbg(dev, tx_err, dev->net, "drop, code %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470drop:
Herbert Xu79638372009-06-29 16:53:28 +00001471 dev->net->stats.tx_dropped++;
Alexey Orishko073285f2010-11-29 23:23:27 +00001472not_drop:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 if (skb)
1474 dev_kfree_skb_any (skb);
Ming Lei638c5112013-08-08 21:48:24 +08001475 if (urb) {
1476 kfree(urb->sg);
1477 usb_free_urb(urb);
1478 }
Joe Perchesa475f602010-02-17 10:30:24 +00001479 } else
1480 netif_dbg(dev, tx_queued, dev->net,
Jason A. Donenfeld3e4336a2015-05-06 15:09:40 +02001481 "> tx, len %u, type 0x%x\n", length, skb->protocol);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001482#ifdef CONFIG_PM
1483deferred:
1484#endif
Stephen Hemminger25a79c42009-08-31 19:50:45 +00001485 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486}
Stephen Hemminger777baa42009-03-20 19:35:54 +00001487EXPORT_SYMBOL_GPL(usbnet_start_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488
Bjørn Mork85e87872012-09-02 22:26:18 +00001489static int rx_alloc_submit(struct usbnet *dev, gfp_t flags)
Ming Lei65841fd2012-06-19 21:15:53 +00001490{
1491 struct urb *urb;
1492 int i;
Bjørn Mork85e87872012-09-02 22:26:18 +00001493 int ret = 0;
Ming Lei65841fd2012-06-19 21:15:53 +00001494
1495 /* don't refill the queue all at once */
1496 for (i = 0; i < 10 && dev->rxq.qlen < RX_QLEN(dev); i++) {
1497 urb = usb_alloc_urb(0, flags);
1498 if (urb != NULL) {
Bjørn Mork85e87872012-09-02 22:26:18 +00001499 ret = rx_submit(dev, urb, flags);
1500 if (ret)
1501 goto err;
1502 } else {
1503 ret = -ENOMEM;
1504 goto err;
Ming Lei65841fd2012-06-19 21:15:53 +00001505 }
1506 }
Bjørn Mork85e87872012-09-02 22:26:18 +00001507err:
1508 return ret;
Ming Lei65841fd2012-06-19 21:15:53 +00001509}
1510
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511/*-------------------------------------------------------------------------*/
1512
1513// tasklet (work deferred from completions, in_irq) or timer
1514
Kees Cook2183c1a2017-10-16 17:28:51 -07001515static void usbnet_bh (struct timer_list *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516{
Kees Cook2183c1a2017-10-16 17:28:51 -07001517 struct usbnet *dev = from_timer(dev, t, delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 struct sk_buff *skb;
1519 struct skb_data *entry;
1520
1521 while ((skb = skb_dequeue (&dev->done))) {
1522 entry = (struct skb_data *) skb->cb;
1523 switch (entry->state) {
David Brownell18ab4582007-05-25 12:31:32 -07001524 case rx_done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 entry->state = rx_cleanup;
1526 rx_process (dev, skb);
1527 continue;
David Brownell18ab4582007-05-25 12:31:32 -07001528 case tx_done:
Ming Lei638c5112013-08-08 21:48:24 +08001529 kfree(entry->urb->sg);
David Brownell18ab4582007-05-25 12:31:32 -07001530 case rx_cleanup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 usb_free_urb (entry->urb);
1532 dev_kfree_skb (skb);
1533 continue;
David Brownell18ab4582007-05-25 12:31:32 -07001534 default:
Joe Perches60b86752010-02-17 10:30:23 +00001535 netdev_dbg(dev->net, "bogus skb state %d\n", entry->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 }
1537 }
1538
Bjørn Mork70c37bf2013-01-28 23:51:28 +00001539 /* restart RX again after disabling due to high error rate */
1540 clear_bit(EVENT_RX_KILL, &dev->flags);
1541
Oliver Neukum14a0d632014-03-26 14:32:51 +01001542 /* waiting for all pending urbs to complete?
1543 * only then can we forgo submitting anew
1544 */
1545 if (waitqueue_active(&dev->wait)) {
1546 if (dev->txq.qlen + dev->rxq.qlen + dev->done.qlen == 0)
1547 wake_up_all(&dev->wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548
1549 // or are we maybe short a few urbs?
Joe Perches8e95a202009-12-03 07:58:21 +00001550 } else if (netif_running (dev->net) &&
1551 netif_device_present (dev->net) &&
Ming Lei4b49f582013-04-11 04:40:40 +00001552 netif_carrier_ok(dev->net) &&
Soohoon Lee43daa962016-06-29 15:07:21 -04001553 !timer_pending(&dev->delay) &&
1554 !test_bit(EVENT_RX_PAUSED, &dev->flags) &&
1555 !test_bit(EVENT_RX_HALT, &dev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 int temp = dev->rxq.qlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
Ming Lei65841fd2012-06-19 21:15:53 +00001558 if (temp < RX_QLEN(dev)) {
Bjørn Mork85e87872012-09-02 22:26:18 +00001559 if (rx_alloc_submit(dev, GFP_ATOMIC) == -ENOLINK)
1560 return;
Joe Perchesa475f602010-02-17 10:30:24 +00001561 if (temp != dev->rxq.qlen)
1562 netif_dbg(dev, link, dev->net,
1563 "rxqlen %d --> %d\n",
1564 temp, dev->rxq.qlen);
Ming Lei65841fd2012-06-19 21:15:53 +00001565 if (dev->rxq.qlen < RX_QLEN(dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 tasklet_schedule (&dev->bh);
1567 }
1568 if (dev->txq.qlen < TX_QLEN (dev))
1569 netif_wake_queue (dev->net);
1570 }
1571}
1572
1573
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574/*-------------------------------------------------------------------------
1575 *
1576 * USB Device Driver support
1577 *
1578 *-------------------------------------------------------------------------*/
David Brownellcb1cebb2007-02-15 18:52:30 -08001579
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580// precondition: never called in_interrupt
1581
David Brownell38bde1d2005-08-31 09:52:45 -07001582void usbnet_disconnect (struct usb_interface *intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583{
1584 struct usbnet *dev;
1585 struct usb_device *xdev;
1586 struct net_device *net;
1587
1588 dev = usb_get_intfdata(intf);
1589 usb_set_intfdata(intf, NULL);
1590 if (!dev)
1591 return;
1592
1593 xdev = interface_to_usbdev (intf);
1594
Joe Perchesa475f602010-02-17 10:30:24 +00001595 netif_info(dev, probe, dev->net, "unregister '%s' usb-%s-%s, %s\n",
1596 intf->dev.driver->name,
1597 xdev->bus->bus_name, xdev->devpath,
1598 dev->driver_info->description);
David Brownellcb1cebb2007-02-15 18:52:30 -08001599
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 net = dev->net;
1601 unregister_netdev (net);
1602
Tejun Heo23f333a2010-12-12 16:45:14 +01001603 cancel_work_sync(&dev->kevent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604
Hemant Kumar39707c22012-10-25 18:17:54 +00001605 usb_scuttle_anchored_urbs(&dev->deferred);
1606
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 if (dev->driver_info->unbind)
1608 dev->driver_info->unbind (dev, intf);
1609
Paul Stewart68972ef2011-04-28 05:43:37 +00001610 usb_kill_urb(dev->interrupt);
1611 usb_free_urb(dev->interrupt);
Ming Lei60e453a2013-09-23 20:59:35 +08001612 kfree(dev->padding_pkt);
Paul Stewart68972ef2011-04-28 05:43:37 +00001613
Greg Ungererc8b5d122017-04-03 15:50:03 +10001614 free_percpu(dev->stats64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 free_netdev(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616}
David Brownell38bde1d2005-08-31 09:52:45 -07001617EXPORT_SYMBOL_GPL(usbnet_disconnect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618
Stephen Hemminger777baa42009-03-20 19:35:54 +00001619static const struct net_device_ops usbnet_netdev_ops = {
1620 .ndo_open = usbnet_open,
1621 .ndo_stop = usbnet_stop,
1622 .ndo_start_xmit = usbnet_start_xmit,
1623 .ndo_tx_timeout = usbnet_tx_timeout,
Olivier Blin1efed2d2014-10-24 19:43:00 +02001624 .ndo_set_rx_mode = usbnet_set_rx_mode,
Stephen Hemminger777baa42009-03-20 19:35:54 +00001625 .ndo_change_mtu = usbnet_change_mtu,
Greg Ungererc8b5d122017-04-03 15:50:03 +10001626 .ndo_get_stats64 = usbnet_get_stats64,
Stephen Hemminger777baa42009-03-20 19:35:54 +00001627 .ndo_set_mac_address = eth_mac_addr,
1628 .ndo_validate_addr = eth_validate_addr,
1629};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
1631/*-------------------------------------------------------------------------*/
1632
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633// precondition: never called in_interrupt
1634
Marcel Holtmann225794f2009-10-02 05:15:26 +00001635static struct device_type wlan_type = {
1636 .name = "wlan",
1637};
1638
1639static struct device_type wwan_type = {
1640 .name = "wwan",
1641};
1642
David Brownell38bde1d2005-08-31 09:52:45 -07001643int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644usbnet_probe (struct usb_interface *udev, const struct usb_device_id *prod)
1645{
1646 struct usbnet *dev;
David Brownellcb1cebb2007-02-15 18:52:30 -08001647 struct net_device *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 struct usb_host_interface *interface;
1649 struct driver_info *info;
1650 struct usb_device *xdev;
1651 int status;
David Brownell296c0242007-04-17 16:10:10 -07001652 const char *name;
Ming Leib0786b42010-11-01 07:11:54 -07001653 struct usb_driver *driver = to_usb_driver(udev->dev.driver);
1654
1655 /* usbnet already took usb runtime pm, so have to enable the feature
1656 * for usb interface, otherwise usb_autopm_get_interface may return
Alan Stern98f541c2013-05-01 12:13:54 -04001657 * failure if RUNTIME_PM is enabled.
Ming Leib0786b42010-11-01 07:11:54 -07001658 */
1659 if (!driver->supports_autosuspend) {
1660 driver->supports_autosuspend = 1;
1661 pm_runtime_enable(&udev->dev);
1662 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663
David Brownell296c0242007-04-17 16:10:10 -07001664 name = udev->dev.driver->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 info = (struct driver_info *) prod->driver_info;
1666 if (!info) {
David Brownell296c0242007-04-17 16:10:10 -07001667 dev_dbg (&udev->dev, "blacklisted by %s\n", name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 return -ENODEV;
1669 }
1670 xdev = interface_to_usbdev (udev);
1671 interface = udev->cur_altsetting;
1672
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 status = -ENOMEM;
1674
1675 // set up our own records
1676 net = alloc_etherdev(sizeof(*dev));
Joe Perches41de8d42012-01-29 13:47:52 +00001677 if (!net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679
Ben Hutchings0dacca72010-07-02 21:49:02 -07001680 /* netdev_printk() needs this so do it as early as possible */
1681 SET_NETDEV_DEV(net, &udev->dev);
1682
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 dev = netdev_priv(net);
1684 dev->udev = xdev;
Oliver Neukuma11a6542007-08-03 13:52:19 +02001685 dev->intf = udev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 dev->driver_info = info;
David Brownell296c0242007-04-17 16:10:10 -07001687 dev->driver_name = name;
Greg Ungererc8b5d122017-04-03 15:50:03 +10001688
1689 dev->stats64 = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
1690 if (!dev->stats64)
1691 goto out0;
1692
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 dev->msg_enable = netif_msg_init (msg_level, NETIF_MSG_DRV
1694 | NETIF_MSG_PROBE | NETIF_MSG_LINK);
Oliver Neukum14a0d632014-03-26 14:32:51 +01001695 init_waitqueue_head(&dev->wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 skb_queue_head_init (&dev->rxq);
1697 skb_queue_head_init (&dev->txq);
1698 skb_queue_head_init (&dev->done);
Jussi Kivilinna7834ddb2009-08-11 22:57:16 +03001699 skb_queue_head_init(&dev->rxq_pause);
Kees Cook2183c1a2017-10-16 17:28:51 -07001700 dev->bh.func = (void (*)(unsigned long))usbnet_bh;
1701 dev->bh.data = (unsigned long)&dev->delay;
Oliver Neukum11f17ef2015-04-09 10:09:04 +02001702 INIT_WORK (&dev->kevent, usbnet_deferred_kevent);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001703 init_usb_anchor(&dev->deferred);
Kees Cook2183c1a2017-10-16 17:28:51 -07001704 timer_setup(&dev->delay, usbnet_bh, 0);
Arnd Bergmanna9fc6332006-10-09 00:08:02 +02001705 mutex_init (&dev->phy_mutex);
Dan Williams6eecdc52013-05-06 11:29:23 +00001706 mutex_init(&dev->interrupt_mutex);
1707 dev->interrupt_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 dev->net = net;
1710 strcpy (net->name, "usb%d");
1711 memcpy (net->dev_addr, node_id, sizeof node_id);
1712
David Brownell2e55cc72005-08-31 09:53:10 -07001713 /* rx and tx sides can use different message sizes;
1714 * bind() should set rx_urb_size in that case.
1715 */
1716 dev->hard_mtu = net->mtu + net->hard_header_len;
Jarod Wilsonf77f0ae2016-10-20 13:55:17 -04001717 net->min_mtu = 0;
1718 net->max_mtu = ETH_MAX_MTU;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719
Stephen Hemminger777baa42009-03-20 19:35:54 +00001720 net->netdev_ops = &usbnet_netdev_ops;
Stephen Hemminger777baa42009-03-20 19:35:54 +00001721 net->watchdog_timeo = TX_TIMEOUT_JIFFIES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 net->ethtool_ops = &usbnet_ethtool_ops;
1723
1724 // allow device-specific bind/init procedures
1725 // NOTE net->name still not usable ...
1726 if (info->bind) {
1727 status = info->bind (dev, udev);
David Brownellcb1cebb2007-02-15 18:52:30 -08001728 if (status < 0)
1729 goto out1;
1730
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 // heuristic: "usb%d" for links we know are two-host,
1732 // else "eth%d" when there's reasonable doubt. userspace
1733 // can rename the link if it knows better.
Joe Perches8e95a202009-12-03 07:58:21 +00001734 if ((dev->driver_info->flags & FLAG_ETHER) != 0 &&
Arnd Bergmannc2613442011-04-01 20:12:02 -07001735 ((dev->driver_info->flags & FLAG_POINTTOPOINT) == 0 ||
1736 (net->dev_addr [0] & 0x02) == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 strcpy (net->name, "eth%d");
Jussi Kivilinna6e3bbcc2008-01-26 00:51:06 +02001738 /* WLAN devices should always be named "wlan%d" */
1739 if ((dev->driver_info->flags & FLAG_WLAN) != 0)
1740 strcpy(net->name, "wlan%d");
Marcel Holtmanne1e499e2009-10-02 05:15:25 +00001741 /* WWAN devices should always be named "wwan%d" */
1742 if ((dev->driver_info->flags & FLAG_WWAN) != 0)
1743 strcpy(net->name, "wwan%d");
David Brownellf29fc252005-08-31 09:52:31 -07001744
Wei Shuai65091412013-01-21 06:00:31 +00001745 /* devices that cannot do ARP */
1746 if ((dev->driver_info->flags & FLAG_NOARP) != 0)
1747 net->flags |= IFF_NOARP;
1748
David Brownellf29fc252005-08-31 09:52:31 -07001749 /* maybe the remote can't receive an Ethernet MTU */
1750 if (net->mtu > (dev->hard_mtu - net->hard_header_len))
1751 net->mtu = dev->hard_mtu - net->hard_header_len;
David Brownell2e55cc72005-08-31 09:53:10 -07001752 } else if (!info->in || !info->out)
1753 status = usbnet_get_endpoints (dev, udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 else {
1755 dev->in = usb_rcvbulkpipe (xdev, info->in);
1756 dev->out = usb_sndbulkpipe (xdev, info->out);
1757 if (!(info->flags & FLAG_NO_SETINT))
1758 status = usb_set_interface (xdev,
1759 interface->desc.bInterfaceNumber,
1760 interface->desc.bAlternateSetting);
1761 else
1762 status = 0;
1763
1764 }
Peter Korsgaard9514bfe2007-07-03 00:46:42 +02001765 if (status >= 0 && dev->status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 status = init_status (dev, udev);
1767 if (status < 0)
David Brownellcb1cebb2007-02-15 18:52:30 -08001768 goto out3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769
David Brownell2e55cc72005-08-31 09:53:10 -07001770 if (!dev->rx_urb_size)
1771 dev->rx_urb_size = dev->hard_mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 dev->maxpacket = usb_maxpacket (dev->udev, dev->out, 1);
David Brownellcb1cebb2007-02-15 18:52:30 -08001773
Bjørn Morkeef23b52013-09-04 09:42:32 +02001774 /* let userspace know we have a random address */
1775 if (ether_addr_equal(net->dev_addr, node_id))
1776 net->addr_assign_type = NET_ADDR_RANDOM;
1777
Marcel Holtmann225794f2009-10-02 05:15:26 +00001778 if ((dev->driver_info->flags & FLAG_WLAN) != 0)
1779 SET_NETDEV_DEVTYPE(net, &wlan_type);
1780 if ((dev->driver_info->flags & FLAG_WWAN) != 0)
1781 SET_NETDEV_DEVTYPE(net, &wwan_type);
1782
Ming Leia88c32a2013-07-25 13:47:53 +08001783 /* initialize max rx_qlen and tx_qlen */
1784 usbnet_update_max_qlen(dev);
1785
Ming Lei60e453a2013-09-23 20:59:35 +08001786 if (dev->can_dma_sg && !(info->flags & FLAG_SEND_ZLP) &&
1787 !(info->flags & FLAG_MULTI_PACKET)) {
1788 dev->padding_pkt = kzalloc(1, GFP_KERNEL);
Wei Yongjun09b69022013-10-12 14:24:08 +08001789 if (!dev->padding_pkt) {
1790 status = -ENOMEM;
Ming Lei60e453a2013-09-23 20:59:35 +08001791 goto out4;
Wei Yongjun09b69022013-10-12 14:24:08 +08001792 }
Ming Lei60e453a2013-09-23 20:59:35 +08001793 }
1794
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 status = register_netdev (net);
1796 if (status)
Ming Lei60e453a2013-09-23 20:59:35 +08001797 goto out5;
Joe Perchesa475f602010-02-17 10:30:24 +00001798 netif_info(dev, probe, dev->net,
1799 "register '%s' at usb-%s-%s, %s, %pM\n",
1800 udev->dev.driver->name,
1801 xdev->bus->bus_name, xdev->devpath,
1802 dev->driver_info->description,
1803 net->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804
1805 // ok, it's ready to go.
1806 usb_set_intfdata (udev, dev);
1807
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 netif_device_attach (net);
1809
Ben Hutchings37e82732009-11-04 15:29:52 +00001810 if (dev->driver_info->flags & FLAG_LINK_INTR)
Ming Lei0162c552013-04-11 04:40:39 +00001811 usbnet_link_change(dev, 0, 0);
Ben Hutchings37e82732009-11-04 15:29:52 +00001812
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 return 0;
1814
Ming Lei60e453a2013-09-23 20:59:35 +08001815out5:
1816 kfree(dev->padding_pkt);
tom.leiming@gmail.coma4723842012-04-29 22:51:03 +00001817out4:
1818 usb_free_urb(dev->interrupt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819out3:
1820 if (info->unbind)
1821 info->unbind (dev, udev);
1822out1:
Oliver Neukum16669842016-03-07 11:31:10 +01001823 /* subdrivers must undo all they did in bind() if they
1824 * fail it, but we may fail later and a deferred kevent
1825 * may trigger an error resubmitting itself and, worse,
1826 * schedule a timer. So we kill it all just in case.
1827 */
1828 cancel_work_sync(&dev->kevent);
1829 del_timer_sync(&dev->delay);
Greg Ungererc8b5d122017-04-03 15:50:03 +10001830 free_percpu(dev->stats64);
1831out0:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 free_netdev(net);
1833out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 return status;
1835}
David Brownell38bde1d2005-08-31 09:52:45 -07001836EXPORT_SYMBOL_GPL(usbnet_probe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837
1838/*-------------------------------------------------------------------------*/
1839
Oliver Neukum36433122007-04-30 01:37:44 -07001840/*
1841 * suspend the whole driver as soon as the first interface is suspended
1842 * resume only when the last interface is resumed
David Brownell38bde1d2005-08-31 09:52:45 -07001843 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844
David Brownell38bde1d2005-08-31 09:52:45 -07001845int usbnet_suspend (struct usb_interface *intf, pm_message_t message)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846{
1847 struct usbnet *dev = usb_get_intfdata(intf);
David Brownellcb1cebb2007-02-15 18:52:30 -08001848
Oliver Neukum36433122007-04-30 01:37:44 -07001849 if (!dev->suspend_count++) {
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001850 spin_lock_irq(&dev->txq.lock);
1851 /* don't autosuspend while transmitting */
Alan Stern5b1b0b82011-08-19 23:49:48 +02001852 if (dev->txq.qlen && PMSG_IS_AUTO(message)) {
Ming Lei5eeb3132012-06-19 21:15:52 +00001853 dev->suspend_count--;
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001854 spin_unlock_irq(&dev->txq.lock);
1855 return -EBUSY;
1856 } else {
1857 set_bit(EVENT_DEV_ASLEEP, &dev->flags);
1858 spin_unlock_irq(&dev->txq.lock);
1859 }
Oliver Neukuma11a6542007-08-03 13:52:19 +02001860 /*
1861 * accelerate emptying of the rx and queues, to avoid
Oliver Neukum36433122007-04-30 01:37:44 -07001862 * having everything error out.
1863 */
1864 netif_device_detach (dev->net);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001865 usbnet_terminate_urbs(dev);
Dan Williams6eecdc52013-05-06 11:29:23 +00001866 __usbnet_status_stop_force(dev);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001867
Oliver Neukuma11a6542007-08-03 13:52:19 +02001868 /*
1869 * reattach so runtime management can use and
1870 * wake the device
1871 */
1872 netif_device_attach (dev->net);
Oliver Neukum36433122007-04-30 01:37:44 -07001873 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 return 0;
1875}
David Brownell38bde1d2005-08-31 09:52:45 -07001876EXPORT_SYMBOL_GPL(usbnet_suspend);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877
David Brownell38bde1d2005-08-31 09:52:45 -07001878int usbnet_resume (struct usb_interface *intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879{
1880 struct usbnet *dev = usb_get_intfdata(intf);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001881 struct sk_buff *skb;
1882 struct urb *res;
1883 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001885 if (!--dev->suspend_count) {
Dan Williams6eecdc52013-05-06 11:29:23 +00001886 /* resume interrupt URB if it was previously submitted */
1887 __usbnet_status_start_force(dev, GFP_NOIO);
Paul Stewart68972ef2011-04-28 05:43:37 +00001888
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001889 spin_lock_irq(&dev->txq.lock);
1890 while ((res = usb_get_from_anchor(&dev->deferred))) {
1891
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001892 skb = (struct sk_buff *)res->context;
1893 retval = usb_submit_urb(res, GFP_ATOMIC);
1894 if (retval < 0) {
1895 dev_kfree_skb_any(skb);
Ming Lei638c5112013-08-08 21:48:24 +08001896 kfree(res->sg);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001897 usb_free_urb(res);
1898 usb_autopm_put_interface_async(dev->intf);
1899 } else {
Florian Westphal860e9532016-05-03 16:33:13 +02001900 netif_trans_update(dev->net);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001901 __skb_queue_tail(&dev->txq, skb);
1902 }
1903 }
1904
1905 smp_mb();
1906 clear_bit(EVENT_DEV_ASLEEP, &dev->flags);
1907 spin_unlock_irq(&dev->txq.lock);
Ming Lei75bd0cb2011-04-28 22:37:09 +00001908
1909 if (test_bit(EVENT_DEV_OPEN, &dev->flags)) {
Oliver Neukum14a0d632014-03-26 14:32:51 +01001910 /* handle remote wakeup ASAP
1911 * we cannot race against stop
1912 */
1913 if (netif_device_present(dev->net) &&
Ming Lei65841fd2012-06-19 21:15:53 +00001914 !timer_pending(&dev->delay) &&
1915 !test_bit(EVENT_RX_HALT, &dev->flags))
Oliver Neukumab6f1482012-08-26 20:41:38 +00001916 rx_alloc_submit(dev, GFP_NOIO);
Ming Lei65841fd2012-06-19 21:15:53 +00001917
Ming Lei75bd0cb2011-04-28 22:37:09 +00001918 if (!(dev->txq.qlen >= TX_QLEN(dev)))
Alexey Orishko1aa9bc52012-03-14 04:00:24 +00001919 netif_tx_wake_all_queues(dev->net);
Ming Lei75bd0cb2011-04-28 22:37:09 +00001920 tasklet_schedule (&dev->bh);
1921 }
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001922 }
Oliver Neukum5d9d01a2012-10-11 02:50:10 +00001923
1924 if (test_and_clear_bit(EVENT_DEVICE_REPORT_IDLE, &dev->flags))
1925 usb_autopm_get_interface_no_resume(intf);
1926
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 return 0;
1928}
David Brownell38bde1d2005-08-31 09:52:45 -07001929EXPORT_SYMBOL_GPL(usbnet_resume);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930
Oliver Neukum5d9d01a2012-10-11 02:50:10 +00001931/*
1932 * Either a subdriver implements manage_power, then it is assumed to always
1933 * be ready to be suspended or it reports the readiness to be suspended
1934 * explicitly
1935 */
1936void usbnet_device_suggests_idle(struct usbnet *dev)
1937{
1938 if (!test_and_set_bit(EVENT_DEVICE_REPORT_IDLE, &dev->flags)) {
1939 dev->intf->needs_remote_wakeup = 1;
1940 usb_autopm_put_interface_async(dev->intf);
1941 }
1942}
1943EXPORT_SYMBOL(usbnet_device_suggests_idle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944
Oliver Neukum2dd7c8c2012-12-18 04:45:52 +00001945/*
1946 * For devices that can do without special commands
1947 */
1948int usbnet_manage_power(struct usbnet *dev, int on)
1949{
1950 dev->intf->needs_remote_wakeup = on;
1951 return 0;
1952}
1953EXPORT_SYMBOL(usbnet_manage_power);
1954
Ming Leiac649952013-04-11 04:40:30 +00001955void usbnet_link_change(struct usbnet *dev, bool link, bool need_reset)
1956{
1957 /* update link after link is reseted */
1958 if (link && !need_reset)
1959 netif_carrier_on(dev->net);
1960 else
1961 netif_carrier_off(dev->net);
1962
1963 if (need_reset && link)
1964 usbnet_defer_kevent(dev, EVENT_LINK_RESET);
Ming Lei4b49f582013-04-11 04:40:40 +00001965 else
1966 usbnet_defer_kevent(dev, EVENT_LINK_CHANGE);
Ming Leiac649952013-04-11 04:40:30 +00001967}
1968EXPORT_SYMBOL(usbnet_link_change);
1969
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970/*-------------------------------------------------------------------------*/
Ming Lei0547fad2012-11-06 04:53:04 +00001971static int __usbnet_read_cmd(struct usbnet *dev, u8 cmd, u8 reqtype,
1972 u16 value, u16 index, void *data, u16 size)
Ming Lei877bd862012-10-24 19:46:54 +00001973{
1974 void *buf = NULL;
1975 int err = -ENOMEM;
1976
1977 netdev_dbg(dev->net, "usbnet_read_cmd cmd=0x%02x reqtype=%02x"
1978 " value=0x%04x index=0x%04x size=%d\n",
1979 cmd, reqtype, value, index, size);
1980
Oliver Neukum6c22fce2017-04-05 14:14:39 +02001981 if (size) {
Ming Lei877bd862012-10-24 19:46:54 +00001982 buf = kmalloc(size, GFP_KERNEL);
1983 if (!buf)
1984 goto out;
1985 }
1986
1987 err = usb_control_msg(dev->udev, usb_rcvctrlpipe(dev->udev, 0),
1988 cmd, reqtype, value, index, buf, size,
1989 USB_CTRL_GET_TIMEOUT);
Oliver Neukum6c22fce2017-04-05 14:14:39 +02001990 if (err > 0 && err <= size) {
1991 if (data)
1992 memcpy(data, buf, err);
1993 else
1994 netdev_dbg(dev->net,
1995 "Huh? Data requested but thrown away.\n");
1996 }
Ming Lei877bd862012-10-24 19:46:54 +00001997 kfree(buf);
1998out:
1999 return err;
2000}
Ming Lei877bd862012-10-24 19:46:54 +00002001
Ming Lei0547fad2012-11-06 04:53:04 +00002002static int __usbnet_write_cmd(struct usbnet *dev, u8 cmd, u8 reqtype,
2003 u16 value, u16 index, const void *data,
2004 u16 size)
Ming Lei877bd862012-10-24 19:46:54 +00002005{
2006 void *buf = NULL;
2007 int err = -ENOMEM;
2008
2009 netdev_dbg(dev->net, "usbnet_write_cmd cmd=0x%02x reqtype=%02x"
2010 " value=0x%04x index=0x%04x size=%d\n",
2011 cmd, reqtype, value, index, size);
2012
2013 if (data) {
2014 buf = kmemdup(data, size, GFP_KERNEL);
2015 if (!buf)
2016 goto out;
Oliver Neukum6c22fce2017-04-05 14:14:39 +02002017 } else {
2018 if (size) {
2019 WARN_ON_ONCE(1);
2020 err = -EINVAL;
2021 goto out;
2022 }
2023 }
Ming Lei877bd862012-10-24 19:46:54 +00002024
2025 err = usb_control_msg(dev->udev, usb_sndctrlpipe(dev->udev, 0),
2026 cmd, reqtype, value, index, buf, size,
2027 USB_CTRL_SET_TIMEOUT);
2028 kfree(buf);
2029
2030out:
2031 return err;
2032}
Ming Lei0547fad2012-11-06 04:53:04 +00002033
2034/*
2035 * The function can't be called inside suspend/resume callback,
2036 * otherwise deadlock will be caused.
2037 */
2038int usbnet_read_cmd(struct usbnet *dev, u8 cmd, u8 reqtype,
2039 u16 value, u16 index, void *data, u16 size)
2040{
Ming Lei6f0a0982012-11-06 04:53:08 +00002041 int ret;
2042
2043 if (usb_autopm_get_interface(dev->intf) < 0)
2044 return -ENODEV;
2045 ret = __usbnet_read_cmd(dev, cmd, reqtype, value, index,
2046 data, size);
2047 usb_autopm_put_interface(dev->intf);
2048 return ret;
Ming Lei0547fad2012-11-06 04:53:04 +00002049}
2050EXPORT_SYMBOL_GPL(usbnet_read_cmd);
2051
2052/*
2053 * The function can't be called inside suspend/resume callback,
2054 * otherwise deadlock will be caused.
2055 */
2056int usbnet_write_cmd(struct usbnet *dev, u8 cmd, u8 reqtype,
2057 u16 value, u16 index, const void *data, u16 size)
2058{
Ming Lei6f0a0982012-11-06 04:53:08 +00002059 int ret;
2060
2061 if (usb_autopm_get_interface(dev->intf) < 0)
2062 return -ENODEV;
2063 ret = __usbnet_write_cmd(dev, cmd, reqtype, value, index,
2064 data, size);
2065 usb_autopm_put_interface(dev->intf);
2066 return ret;
Ming Lei0547fad2012-11-06 04:53:04 +00002067}
Ming Lei877bd862012-10-24 19:46:54 +00002068EXPORT_SYMBOL_GPL(usbnet_write_cmd);
2069
Ming Lei0547fad2012-11-06 04:53:04 +00002070/*
2071 * The function can be called inside suspend/resume callback safely
2072 * and should only be called by suspend/resume callback generally.
2073 */
2074int usbnet_read_cmd_nopm(struct usbnet *dev, u8 cmd, u8 reqtype,
2075 u16 value, u16 index, void *data, u16 size)
2076{
2077 return __usbnet_read_cmd(dev, cmd, reqtype, value, index,
2078 data, size);
2079}
2080EXPORT_SYMBOL_GPL(usbnet_read_cmd_nopm);
2081
2082/*
2083 * The function can be called inside suspend/resume callback safely
2084 * and should only be called by suspend/resume callback generally.
2085 */
2086int usbnet_write_cmd_nopm(struct usbnet *dev, u8 cmd, u8 reqtype,
2087 u16 value, u16 index, const void *data,
2088 u16 size)
2089{
2090 return __usbnet_write_cmd(dev, cmd, reqtype, value, index,
2091 data, size);
2092}
2093EXPORT_SYMBOL_GPL(usbnet_write_cmd_nopm);
2094
Ming Lei877bd862012-10-24 19:46:54 +00002095static void usbnet_async_cmd_cb(struct urb *urb)
2096{
2097 struct usb_ctrlrequest *req = (struct usb_ctrlrequest *)urb->context;
2098 int status = urb->status;
2099
2100 if (status < 0)
2101 dev_dbg(&urb->dev->dev, "%s failed with %d",
2102 __func__, status);
2103
2104 kfree(req);
2105 usb_free_urb(urb);
2106}
2107
Ming Lei0547fad2012-11-06 04:53:04 +00002108/*
2109 * The caller must make sure that device can't be put into suspend
2110 * state until the control URB completes.
2111 */
Ming Lei877bd862012-10-24 19:46:54 +00002112int usbnet_write_cmd_async(struct usbnet *dev, u8 cmd, u8 reqtype,
2113 u16 value, u16 index, const void *data, u16 size)
2114{
2115 struct usb_ctrlrequest *req = NULL;
2116 struct urb *urb;
2117 int err = -ENOMEM;
2118 void *buf = NULL;
2119
2120 netdev_dbg(dev->net, "usbnet_write_cmd cmd=0x%02x reqtype=%02x"
2121 " value=0x%04x index=0x%04x size=%d\n",
2122 cmd, reqtype, value, index, size);
2123
2124 urb = usb_alloc_urb(0, GFP_ATOMIC);
Wolfram Sangef6cd132016-08-11 23:05:28 +02002125 if (!urb)
Ming Lei877bd862012-10-24 19:46:54 +00002126 goto fail;
Ming Lei877bd862012-10-24 19:46:54 +00002127
2128 if (data) {
2129 buf = kmemdup(data, size, GFP_ATOMIC);
2130 if (!buf) {
2131 netdev_err(dev->net, "Error allocating buffer"
2132 " in %s!\n", __func__);
2133 goto fail_free;
2134 }
2135 }
2136
2137 req = kmalloc(sizeof(struct usb_ctrlrequest), GFP_ATOMIC);
Joe Perches38673c82013-02-03 17:28:11 +00002138 if (!req)
Ming Lei877bd862012-10-24 19:46:54 +00002139 goto fail_free_buf;
Ming Lei877bd862012-10-24 19:46:54 +00002140
2141 req->bRequestType = reqtype;
2142 req->bRequest = cmd;
2143 req->wValue = cpu_to_le16(value);
2144 req->wIndex = cpu_to_le16(index);
2145 req->wLength = cpu_to_le16(size);
2146
2147 usb_fill_control_urb(urb, dev->udev,
2148 usb_sndctrlpipe(dev->udev, 0),
2149 (void *)req, buf, size,
2150 usbnet_async_cmd_cb, req);
2151 urb->transfer_flags |= URB_FREE_BUFFER;
2152
2153 err = usb_submit_urb(urb, GFP_ATOMIC);
2154 if (err < 0) {
2155 netdev_err(dev->net, "Error submitting the control"
2156 " message: status=%d\n", err);
2157 goto fail_free;
2158 }
2159 return 0;
2160
2161fail_free_buf:
2162 kfree(buf);
2163fail_free:
2164 kfree(req);
2165 usb_free_urb(urb);
2166fail:
2167 return err;
2168
2169}
2170EXPORT_SYMBOL_GPL(usbnet_write_cmd_async);
2171/*-------------------------------------------------------------------------*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172
David Brownellf29fc252005-08-31 09:52:31 -07002173static int __init usbnet_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174{
Thiago Farinac582a952011-04-17 17:49:21 -07002175 /* Compiler should optimize this out. */
2176 BUILD_BUG_ON(
2177 FIELD_SIZEOF(struct sk_buff, cb) < sizeof(struct skb_data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178
Joe Perchesc7e12ea2012-07-12 19:33:07 +00002179 eth_random_addr(node_id);
David Brownellcb1cebb2007-02-15 18:52:30 -08002180 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181}
David Brownellf29fc252005-08-31 09:52:31 -07002182module_init(usbnet_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183
David Brownellf29fc252005-08-31 09:52:31 -07002184static void __exit usbnet_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186}
David Brownellf29fc252005-08-31 09:52:31 -07002187module_exit(usbnet_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188
David Brownellf29fc252005-08-31 09:52:31 -07002189MODULE_AUTHOR("David Brownell");
David Brownell090ffa92005-08-31 09:54:50 -07002190MODULE_DESCRIPTION("USB network driver framework");
David Brownellf29fc252005-08-31 09:52:31 -07002191MODULE_LICENSE("GPL");