blob: 1b40b189435ad9580944e838e8821007a51f3d67 [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 -070085static const char driver_name [] = "usbnet";
86
87/* use ethtool to change the level for any given device */
88static int msg_level = -1;
89module_param (msg_level, int, 0);
90MODULE_PARM_DESC (msg_level, "Override default message level");
91
Linus Torvalds1da177e2005-04-16 15:20:36 -070092/*-------------------------------------------------------------------------*/
93
Linus Torvalds1da177e2005-04-16 15:20:36 -070094/* handles CDC Ethernet and many other network "bulk data" interfaces */
David Brownell2e55cc72005-08-31 09:53:10 -070095int usbnet_get_endpoints(struct usbnet *dev, struct usb_interface *intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096{
97 int tmp;
98 struct usb_host_interface *alt = NULL;
99 struct usb_host_endpoint *in = NULL, *out = NULL;
100 struct usb_host_endpoint *status = NULL;
101
102 for (tmp = 0; tmp < intf->num_altsetting; tmp++) {
103 unsigned ep;
104
105 in = out = status = NULL;
106 alt = intf->altsetting + tmp;
107
108 /* take the first altsetting with in-bulk + out-bulk;
109 * remember any status endpoint, just in case;
Justin P. Mattock70f23fd2011-05-10 10:16:21 +0200110 * ignore other endpoints and altsettings.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 */
112 for (ep = 0; ep < alt->desc.bNumEndpoints; ep++) {
113 struct usb_host_endpoint *e;
114 int intr = 0;
115
116 e = alt->endpoint + ep;
117 switch (e->desc.bmAttributes) {
118 case USB_ENDPOINT_XFER_INT:
Luiz Fernando N. Capitulinofc6e2542006-10-26 13:03:01 -0300119 if (!usb_endpoint_dir_in(&e->desc))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 continue;
121 intr = 1;
122 /* FALLTHROUGH */
123 case USB_ENDPOINT_XFER_BULK:
124 break;
125 default:
126 continue;
127 }
Luiz Fernando N. Capitulinofc6e2542006-10-26 13:03:01 -0300128 if (usb_endpoint_dir_in(&e->desc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 if (!intr && !in)
130 in = e;
131 else if (intr && !status)
132 status = e;
133 } else {
134 if (!out)
135 out = e;
136 }
137 }
138 if (in && out)
139 break;
140 }
141 if (!alt || !in || !out)
142 return -EINVAL;
143
Joe Perches8e95a202009-12-03 07:58:21 +0000144 if (alt->desc.bAlternateSetting != 0 ||
145 !(dev->driver_info->flags & FLAG_NO_SETINT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 tmp = usb_set_interface (dev->udev, alt->desc.bInterfaceNumber,
147 alt->desc.bAlternateSetting);
148 if (tmp < 0)
149 return tmp;
150 }
David Brownellcb1cebb2007-02-15 18:52:30 -0800151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 dev->in = usb_rcvbulkpipe (dev->udev,
153 in->desc.bEndpointAddress & USB_ENDPOINT_NUMBER_MASK);
154 dev->out = usb_sndbulkpipe (dev->udev,
155 out->desc.bEndpointAddress & USB_ENDPOINT_NUMBER_MASK);
156 dev->status = status;
157 return 0;
158}
David Brownell2e55cc72005-08-31 09:53:10 -0700159EXPORT_SYMBOL_GPL(usbnet_get_endpoints);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Peter Holik03ad0322009-04-18 07:24:17 +0000161int usbnet_get_ethernet_addr(struct usbnet *dev, int iMACAddress)
162{
Andy Shevchenko51487ae2015-01-22 23:27:12 +0200163 int tmp = -1, ret;
Peter Holik03ad0322009-04-18 07:24:17 +0000164 unsigned char buf [13];
165
Andy Shevchenko51487ae2015-01-22 23:27:12 +0200166 ret = usb_string(dev->udev, iMACAddress, buf, sizeof buf);
167 if (ret == 12)
168 tmp = hex2bin(dev->net->dev_addr, buf, 6);
169 if (tmp < 0) {
Peter Holik03ad0322009-04-18 07:24:17 +0000170 dev_dbg(&dev->udev->dev,
171 "bad MAC string %d fetch, %d\n", iMACAddress, tmp);
Andy Shevchenko51487ae2015-01-22 23:27:12 +0200172 if (ret >= 0)
173 ret = -EINVAL;
174 return ret;
Peter Holik03ad0322009-04-18 07:24:17 +0000175 }
Peter Holik03ad0322009-04-18 07:24:17 +0000176 return 0;
177}
178EXPORT_SYMBOL_GPL(usbnet_get_ethernet_addr);
179
tom.leiming@gmail.com24ead292012-06-11 15:19:44 +0000180static void intr_complete (struct urb *urb)
181{
182 struct usbnet *dev = urb->context;
183 int status = urb->status;
184
185 switch (status) {
186 /* success */
187 case 0:
188 dev->driver_info->status(dev, urb);
189 break;
190
191 /* software-driven interface shutdown */
192 case -ENOENT: /* urb killed */
193 case -ESHUTDOWN: /* hardware gone */
194 netif_dbg(dev, ifdown, dev->net,
195 "intr shutdown, code %d\n", status);
196 return;
197
198 /* NOTE: not throttling like RX/TX, since this endpoint
199 * already polls infrequently
200 */
201 default:
202 netdev_dbg(dev->net, "intr status %d\n", status);
203 break;
204 }
205
tom.leiming@gmail.com24ead292012-06-11 15:19:44 +0000206 status = usb_submit_urb (urb, GFP_ATOMIC);
207 if (status != 0)
208 netif_err(dev, timer, dev->net,
209 "intr resubmit --> %d\n", status);
210}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
212static int init_status (struct usbnet *dev, struct usb_interface *intf)
213{
214 char *buf = NULL;
215 unsigned pipe = 0;
216 unsigned maxp;
217 unsigned period;
218
219 if (!dev->driver_info->status)
220 return 0;
221
222 pipe = usb_rcvintpipe (dev->udev,
223 dev->status->desc.bEndpointAddress
224 & USB_ENDPOINT_NUMBER_MASK);
225 maxp = usb_maxpacket (dev->udev, pipe, 0);
226
227 /* avoid 1 msec chatter: min 8 msec poll rate */
228 period = max ((int) dev->status->desc.bInterval,
229 (dev->udev->speed == USB_SPEED_HIGH) ? 7 : 3);
230
Christoph Lametere94b1762006-12-06 20:33:17 -0800231 buf = kmalloc (maxp, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 if (buf) {
Christoph Lametere94b1762006-12-06 20:33:17 -0800233 dev->interrupt = usb_alloc_urb (0, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 if (!dev->interrupt) {
235 kfree (buf);
236 return -ENOMEM;
237 } else {
238 usb_fill_int_urb(dev->interrupt, dev->udev, pipe,
239 buf, maxp, intr_complete, dev, period);
tom.leiming@gmail.com720f3d72012-04-29 22:51:02 +0000240 dev->interrupt->transfer_flags |= URB_FREE_BUFFER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 dev_dbg(&intf->dev,
242 "status ep%din, %d bytes period %d\n",
243 usb_pipeendpoint(pipe), maxp, period);
244 }
245 }
David Brownell18ab4582007-05-25 12:31:32 -0700246 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247}
248
Dan Williams6eecdc52013-05-06 11:29:23 +0000249/* Submit the interrupt URB if not previously submitted, increasing refcount */
250int usbnet_status_start(struct usbnet *dev, gfp_t mem_flags)
251{
252 int ret = 0;
253
254 WARN_ON_ONCE(dev->interrupt == NULL);
255 if (dev->interrupt) {
256 mutex_lock(&dev->interrupt_mutex);
257
258 if (++dev->interrupt_count == 1)
259 ret = usb_submit_urb(dev->interrupt, mem_flags);
260
261 dev_dbg(&dev->udev->dev, "incremented interrupt URB count to %d\n",
262 dev->interrupt_count);
263 mutex_unlock(&dev->interrupt_mutex);
264 }
265 return ret;
266}
267EXPORT_SYMBOL_GPL(usbnet_status_start);
268
269/* For resume; submit interrupt URB if previously submitted */
270static int __usbnet_status_start_force(struct usbnet *dev, gfp_t mem_flags)
271{
272 int ret = 0;
273
274 mutex_lock(&dev->interrupt_mutex);
275 if (dev->interrupt_count) {
276 ret = usb_submit_urb(dev->interrupt, mem_flags);
277 dev_dbg(&dev->udev->dev,
278 "submitted interrupt URB for resume\n");
279 }
280 mutex_unlock(&dev->interrupt_mutex);
281 return ret;
282}
283
284/* Kill the interrupt URB if all submitters want it killed */
285void usbnet_status_stop(struct usbnet *dev)
286{
287 if (dev->interrupt) {
288 mutex_lock(&dev->interrupt_mutex);
289 WARN_ON(dev->interrupt_count == 0);
290
291 if (dev->interrupt_count && --dev->interrupt_count == 0)
292 usb_kill_urb(dev->interrupt);
293
294 dev_dbg(&dev->udev->dev,
295 "decremented interrupt URB count to %d\n",
296 dev->interrupt_count);
297 mutex_unlock(&dev->interrupt_mutex);
298 }
299}
300EXPORT_SYMBOL_GPL(usbnet_status_stop);
301
302/* For suspend; always kill interrupt URB */
303static void __usbnet_status_stop_force(struct usbnet *dev)
304{
305 if (dev->interrupt) {
306 mutex_lock(&dev->interrupt_mutex);
307 usb_kill_urb(dev->interrupt);
308 dev_dbg(&dev->udev->dev, "killed interrupt URB for suspend\n");
309 mutex_unlock(&dev->interrupt_mutex);
310 }
311}
312
David Brownell2e55cc72005-08-31 09:53:10 -0700313/* Passes this packet up the stack, updating its accounting.
314 * Some link protocols batch packets, so their rx_fixup paths
315 * can return clones as well as just modify the original skb.
316 */
317void usbnet_skb_return (struct usbnet *dev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318{
319 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
Herbert Xu79638372009-06-29 16:53:28 +0000330 dev->net->stats.rx_packets++;
331 dev->net->stats.rx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Joe Perchesa475f602010-02-17 10:30:24 +0000333 netif_dbg(dev, rx_status, dev->net, "< rx, len %zu, type 0x%x\n",
334 skb->len + sizeof (struct ethhdr), skb->protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 memset (skb->cb, 0, sizeof (struct skb_data));
Michael Rieschf9b491e2011-09-29 04:06:26 +0000336
337 if (skb_defer_rx_timestamp(skb))
338 return;
339
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 status = netif_rx (skb);
Joe Perchesa475f602010-02-17 10:30:24 +0000341 if (status != NET_RX_SUCCESS)
342 netif_dbg(dev, rx_err, dev->net,
343 "netif_rx status %d\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344}
David Brownell2e55cc72005-08-31 09:53:10 -0700345EXPORT_SYMBOL_GPL(usbnet_skb_return);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Ming Leia88c32a2013-07-25 13:47:53 +0800347/* must be called if hard_mtu or rx_urb_size changed */
348void usbnet_update_max_qlen(struct usbnet *dev)
349{
350 enum usb_device_speed speed = dev->udev->speed;
351
352 switch (speed) {
353 case USB_SPEED_HIGH:
354 dev->rx_qlen = MAX_QUEUE_MEMORY / dev->rx_urb_size;
355 dev->tx_qlen = MAX_QUEUE_MEMORY / dev->hard_mtu;
356 break;
Ming Lei452c4472013-07-25 13:47:54 +0800357 case USB_SPEED_SUPER:
Oliver Neukumea079842016-05-02 13:06:13 +0200358 case USB_SPEED_SUPER_PLUS:
Ming Lei452c4472013-07-25 13:47:54 +0800359 /*
360 * Not take default 5ms qlen for super speed HC to
361 * save memory, and iperf tests show 2.5ms qlen can
362 * work well
363 */
364 dev->rx_qlen = 5 * MAX_QUEUE_MEMORY / dev->rx_urb_size;
365 dev->tx_qlen = 5 * MAX_QUEUE_MEMORY / dev->hard_mtu;
366 break;
Ming Leia88c32a2013-07-25 13:47:53 +0800367 default:
368 dev->rx_qlen = dev->tx_qlen = 4;
369 }
370}
371EXPORT_SYMBOL_GPL(usbnet_update_max_qlen);
372
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374/*-------------------------------------------------------------------------
375 *
376 * Network Device Driver (peer link to "Host Device", from USB host)
377 *
378 *-------------------------------------------------------------------------*/
379
Stephen Hemminger777baa42009-03-20 19:35:54 +0000380int usbnet_change_mtu (struct net_device *net, int new_mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381{
382 struct usbnet *dev = netdev_priv(net);
David Brownellf29fc252005-08-31 09:52:31 -0700383 int ll_mtu = new_mtu + net->hard_header_len;
Jamie Paintera99c1942006-07-27 14:17:28 -0400384 int old_hard_mtu = dev->hard_mtu;
385 int old_rx_urb_size = dev->rx_urb_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 // no second zero-length packet read wanted after mtu-sized packets
David Brownellf29fc252005-08-31 09:52:31 -0700388 if ((ll_mtu % dev->maxpacket) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 return -EDOM;
390 net->mtu = new_mtu;
Jamie Paintera99c1942006-07-27 14:17:28 -0400391
392 dev->hard_mtu = net->mtu + net->hard_header_len;
393 if (dev->rx_urb_size == old_hard_mtu) {
394 dev->rx_urb_size = dev->hard_mtu;
Soohoon Lee43daa962016-06-29 15:07:21 -0400395 if (dev->rx_urb_size > old_rx_urb_size) {
396 usbnet_pause_rx(dev);
Jamie Paintera99c1942006-07-27 14:17:28 -0400397 usbnet_unlink_rx_urbs(dev);
Soohoon Lee43daa962016-06-29 15:07:21 -0400398 usbnet_resume_rx(dev);
399 }
Jamie Paintera99c1942006-07-27 14:17:28 -0400400 }
401
Ming Leia88c32a2013-07-25 13:47:53 +0800402 /* max qlen depend on hard_mtu and rx_urb_size */
403 usbnet_update_max_qlen(dev);
404
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 return 0;
406}
Stephen Hemminger777baa42009-03-20 19:35:54 +0000407EXPORT_SYMBOL_GPL(usbnet_change_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800409/* The caller must hold list->lock */
410static void __usbnet_queue_skb(struct sk_buff_head *list,
411 struct sk_buff *newsk, enum skb_state state)
412{
413 struct skb_data *entry = (struct skb_data *) newsk->cb;
414
415 __skb_queue_tail(list, newsk);
416 entry->state = state;
417}
418
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419/*-------------------------------------------------------------------------*/
420
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421/* some LK 2.4 HCDs oopsed if we freed or resubmitted urbs from
422 * completion callbacks. 2.5 should have fixed those bugs...
423 */
424
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800425static enum skb_state defer_bh(struct usbnet *dev, struct sk_buff *skb,
426 struct sk_buff_head *list, enum skb_state state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 unsigned long flags;
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800429 enum skb_state old_state;
430 struct skb_data *entry = (struct skb_data *) skb->cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
David S. Miller8728b832005-08-09 19:25:21 -0700432 spin_lock_irqsave(&list->lock, flags);
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800433 old_state = entry->state;
434 entry->state = state;
David S. Miller8728b832005-08-09 19:25:21 -0700435 __skb_unlink(skb, list);
Eugene Shatokhinfcb0bb62015-09-01 17:05:33 +0300436
437 /* defer_bh() is never called with list == &dev->done.
438 * spin_lock_nested() tells lockdep that it is OK to take
439 * dev->done.lock here with list->lock held.
440 */
441 spin_lock_nested(&dev->done.lock, SINGLE_DEPTH_NESTING);
442
David S. Miller8728b832005-08-09 19:25:21 -0700443 __skb_queue_tail(&dev->done, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 if (dev->done.qlen == 1)
David S. Miller8728b832005-08-09 19:25:21 -0700445 tasklet_schedule(&dev->bh);
Eugene Shatokhinfcb0bb62015-09-01 17:05:33 +0300446 spin_unlock(&dev->done.lock);
447 spin_unlock_irqrestore(&list->lock, flags);
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800448 return old_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449}
450
451/* some work can't be done in tasklets, so we use keventd
452 *
453 * NOTE: annoying asymmetry: if it's active, schedule_work() fails,
454 * but tasklet_schedule() doesn't. hope the failure is rare.
455 */
David Brownell2e55cc72005-08-31 09:53:10 -0700456void usbnet_defer_kevent (struct usbnet *dev, int work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457{
458 set_bit (work, &dev->flags);
Steve Glendinning95320212012-11-08 06:26:21 +0000459 if (!schedule_work (&dev->kevent)) {
460 if (net_ratelimit())
461 netdev_err(dev->net, "kevent %d may have been dropped\n", work);
462 } else {
Joe Perches60b86752010-02-17 10:30:23 +0000463 netdev_dbg(dev->net, "kevent %d scheduled\n", work);
Steve Glendinning95320212012-11-08 06:26:21 +0000464 }
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
Eric Dumazet7bdd4022012-03-14 06:56:25 +0000486 skb = __netdev_alloc_skb_ip_align(dev->net, size, flags);
487 if (!skb) {
Joe Perchesa475f602010-02-17 10:30:24 +0000488 netif_dbg(dev, rx_err, dev->net, "no rx skb\n");
David Brownell2e55cc72005-08-31 09:53:10 -0700489 usbnet_defer_kevent (dev, EVENT_RX_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 usb_free_urb (urb);
David S. Millerdacb3972010-08-10 02:50:55 -0700491 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
494 entry = (struct skb_data *) skb->cb;
495 entry->urb = urb;
496 entry->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 entry->length = 0;
498
499 usb_fill_bulk_urb (urb, dev->udev, dev->in,
500 skb->data, size, rx_complete, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
502 spin_lock_irqsave (&dev->rxq.lock, lockflags);
503
Joe Perches8e95a202009-12-03 07:58:21 +0000504 if (netif_running (dev->net) &&
505 netif_device_present (dev->net) &&
Oliver Neukum69ee472f2009-12-03 15:31:18 -0800506 !test_bit (EVENT_RX_HALT, &dev->flags) &&
507 !test_bit (EVENT_DEV_ASLEEP, &dev->flags)) {
David Brownell18ab4582007-05-25 12:31:32 -0700508 switch (retval = usb_submit_urb (urb, GFP_ATOMIC)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 case -EPIPE:
David Brownell2e55cc72005-08-31 09:53:10 -0700510 usbnet_defer_kevent (dev, EVENT_RX_HALT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 break;
512 case -ENOMEM:
David Brownell2e55cc72005-08-31 09:53:10 -0700513 usbnet_defer_kevent (dev, EVENT_RX_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 break;
515 case -ENODEV:
Joe Perchesa475f602010-02-17 10:30:24 +0000516 netif_dbg(dev, ifdown, dev->net, "device gone\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 netif_device_detach (dev->net);
518 break;
David S. Millerdacb3972010-08-10 02:50:55 -0700519 case -EHOSTUNREACH:
520 retval = -ENOLINK;
521 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 default:
Joe Perchesa475f602010-02-17 10:30:24 +0000523 netif_dbg(dev, rx_err, dev->net,
524 "rx submit, %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 tasklet_schedule (&dev->bh);
526 break;
527 case 0:
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800528 __usbnet_queue_skb(&dev->rxq, skb, rx_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 }
530 } else {
Joe Perchesa475f602010-02-17 10:30:24 +0000531 netif_dbg(dev, ifdown, dev->net, "rx: stopped\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 retval = -ENOLINK;
533 }
534 spin_unlock_irqrestore (&dev->rxq.lock, lockflags);
535 if (retval) {
536 dev_kfree_skb_any (skb);
537 usb_free_urb (urb);
538 }
David S. Millerdacb3972010-08-10 02:50:55 -0700539 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540}
541
542
543/*-------------------------------------------------------------------------*/
544
545static inline void rx_process (struct usbnet *dev, struct sk_buff *skb)
546{
Joe Perches8e95a202009-12-03 07:58:21 +0000547 if (dev->driver_info->rx_fixup &&
Andrzej Zaborowski7a635ea2011-03-28 12:56:33 +0000548 !dev->driver_info->rx_fixup (dev, skb)) {
549 /* With RX_ASSEMBLE, rx_fixup() must update counters */
550 if (!(dev->driver_info->flags & FLAG_RX_ASSEMBLE))
551 dev->net->stats.rx_errors++;
552 goto done;
553 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 // else network stack removes extra byte if we forced a short packet
555
Emil Goodeeb855692014-02-13 17:50:19 +0100556 /* all data was already cloned from skb inside the driver */
557 if (dev->driver_info->flags & FLAG_MULTI_PACKET)
558 goto done;
559
560 if (skb->len < ETH_HLEN) {
561 dev->net->stats.rx_errors++;
562 dev->net->stats.rx_length_errors++;
563 netif_dbg(dev, rx_err, dev->net, "rx length %d\n", skb->len);
564 } else {
565 usbnet_skb_return(dev, skb);
Alexey Orishko073285f2010-11-29 23:23:27 +0000566 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 }
Alexey Orishko073285f2010-11-29 23:23:27 +0000568
Andrzej Zaborowski7a635ea2011-03-28 12:56:33 +0000569done:
Alexey Orishko073285f2010-11-29 23:23:27 +0000570 skb_queue_tail(&dev->done, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571}
572
573/*-------------------------------------------------------------------------*/
574
David Howells7d12e782006-10-05 14:55:46 +0100575static void rx_complete (struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576{
577 struct sk_buff *skb = (struct sk_buff *) urb->context;
578 struct skb_data *entry = (struct skb_data *) skb->cb;
579 struct usbnet *dev = entry->dev;
580 int urb_status = urb->status;
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800581 enum skb_state state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
583 skb_put (skb, urb->actual_length);
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800584 state = rx_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 entry->urb = NULL;
586
587 switch (urb_status) {
David Brownell18ab4582007-05-25 12:31:32 -0700588 /* success */
589 case 0:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 break;
591
David Brownell18ab4582007-05-25 12:31:32 -0700592 /* stalls need manual reset. this is rare ... except that
593 * when going through USB 2.0 TTs, unplug appears this way.
Jean Delvare3ac49a12009-06-04 16:20:28 +0200594 * we avoid the highspeed version of the ETIMEDOUT/EILSEQ
David Brownell18ab4582007-05-25 12:31:32 -0700595 * storm, recovering as needed.
596 */
597 case -EPIPE:
Herbert Xu79638372009-06-29 16:53:28 +0000598 dev->net->stats.rx_errors++;
David Brownell2e55cc72005-08-31 09:53:10 -0700599 usbnet_defer_kevent (dev, EVENT_RX_HALT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 // FALLTHROUGH
601
David Brownell18ab4582007-05-25 12:31:32 -0700602 /* software-driven interface shutdown */
603 case -ECONNRESET: /* async unlink */
604 case -ESHUTDOWN: /* hardware gone */
Joe Perchesa475f602010-02-17 10:30:24 +0000605 netif_dbg(dev, ifdown, dev->net,
606 "rx shutdown, code %d\n", urb_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 goto block;
608
Petr Mladek37ebb542014-09-19 17:32:23 +0200609 /* we get controller i/o faults during hub_wq disconnect() delays.
David Brownell18ab4582007-05-25 12:31:32 -0700610 * throttle down resubmits, to avoid log floods; just temporarily,
Petr Mladek37ebb542014-09-19 17:32:23 +0200611 * so we still recover when the fault isn't a hub_wq delay.
David Brownell18ab4582007-05-25 12:31:32 -0700612 */
613 case -EPROTO:
614 case -ETIME:
615 case -EILSEQ:
Herbert Xu79638372009-06-29 16:53:28 +0000616 dev->net->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 if (!timer_pending (&dev->delay)) {
618 mod_timer (&dev->delay, jiffies + THROTTLE_JIFFIES);
Joe Perchesa475f602010-02-17 10:30:24 +0000619 netif_dbg(dev, link, dev->net,
620 "rx throttle %d\n", urb_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 }
622block:
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800623 state = rx_cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 entry->urb = urb;
625 urb = NULL;
626 break;
627
David Brownell18ab4582007-05-25 12:31:32 -0700628 /* data overrun ... flush fifo? */
629 case -EOVERFLOW:
Herbert Xu79638372009-06-29 16:53:28 +0000630 dev->net->stats.rx_over_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 // FALLTHROUGH
David Brownellcb1cebb2007-02-15 18:52:30 -0800632
David Brownell18ab4582007-05-25 12:31:32 -0700633 default:
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800634 state = rx_cleanup;
Herbert Xu79638372009-06-29 16:53:28 +0000635 dev->net->stats.rx_errors++;
Joe Perchesa475f602010-02-17 10:30:24 +0000636 netif_dbg(dev, rx_err, dev->net, "rx status %d\n", urb_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 break;
638 }
639
Bjørn Mork70c37bf2013-01-28 23:51:28 +0000640 /* stop rx if packet error rate is high */
641 if (++dev->pkt_cnt > 30) {
642 dev->pkt_cnt = 0;
643 dev->pkt_err = 0;
644 } else {
645 if (state == rx_cleanup)
646 dev->pkt_err++;
647 if (dev->pkt_err > 20)
648 set_bit(EVENT_RX_KILL, &dev->flags);
649 }
650
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800651 state = defer_bh(dev, skb, &dev->rxq, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
653 if (urb) {
Joe Perches8e95a202009-12-03 07:58:21 +0000654 if (netif_running (dev->net) &&
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800655 !test_bit (EVENT_RX_HALT, &dev->flags) &&
656 state != unlink_start) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 rx_submit (dev, urb, GFP_ATOMIC);
Oliver Neukum8a783352012-03-03 18:45:07 +0100658 usb_mark_last_busy(dev->udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 return;
660 }
661 usb_free_urb (urb);
662 }
Joe Perchesa475f602010-02-17 10:30:24 +0000663 netif_dbg(dev, rx_err, dev->net, "no read resubmitted\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664}
665
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666/*-------------------------------------------------------------------------*/
Jussi Kivilinna7834ddb2009-08-11 22:57:16 +0300667void usbnet_pause_rx(struct usbnet *dev)
668{
669 set_bit(EVENT_RX_PAUSED, &dev->flags);
670
Joe Perchesa475f602010-02-17 10:30:24 +0000671 netif_dbg(dev, rx_status, dev->net, "paused rx queue enabled\n");
Jussi Kivilinna7834ddb2009-08-11 22:57:16 +0300672}
673EXPORT_SYMBOL_GPL(usbnet_pause_rx);
674
675void usbnet_resume_rx(struct usbnet *dev)
676{
677 struct sk_buff *skb;
678 int num = 0;
679
680 clear_bit(EVENT_RX_PAUSED, &dev->flags);
681
682 while ((skb = skb_dequeue(&dev->rxq_pause)) != NULL) {
683 usbnet_skb_return(dev, skb);
684 num++;
685 }
686
687 tasklet_schedule(&dev->bh);
688
Joe Perchesa475f602010-02-17 10:30:24 +0000689 netif_dbg(dev, rx_status, dev->net,
690 "paused rx queue disabled, %d skbs requeued\n", num);
Jussi Kivilinna7834ddb2009-08-11 22:57:16 +0300691}
692EXPORT_SYMBOL_GPL(usbnet_resume_rx);
693
694void usbnet_purge_paused_rxq(struct usbnet *dev)
695{
696 skb_queue_purge(&dev->rxq_pause);
697}
698EXPORT_SYMBOL_GPL(usbnet_purge_paused_rxq);
699
700/*-------------------------------------------------------------------------*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
702// unlink pending rx/tx; completion handlers do all other cleanup
703
704static int unlink_urbs (struct usbnet *dev, struct sk_buff_head *q)
705{
706 unsigned long flags;
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800707 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 int count = 0;
709
710 spin_lock_irqsave (&q->lock, flags);
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800711 while (!skb_queue_empty(q)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 struct skb_data *entry;
713 struct urb *urb;
714 int retval;
715
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800716 skb_queue_walk(q, skb) {
717 entry = (struct skb_data *) skb->cb;
718 if (entry->state != unlink_start)
719 goto found;
720 }
721 break;
722found:
723 entry->state = unlink_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 urb = entry->urb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
tom.leiming@gmail.com0956a8c2012-03-22 03:22:18 +0000726 /*
727 * Get reference count of the URB to avoid it to be
728 * freed during usb_unlink_urb, which may trigger
729 * use-after-free problem inside usb_unlink_urb since
730 * usb_unlink_urb is always racing with .complete
731 * handler(include defer_bh).
732 */
733 usb_get_urb(urb);
Sebastian Siewior4231d472012-03-07 10:19:28 +0000734 spin_unlock_irqrestore(&q->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 // during some PM-driven resume scenarios,
736 // these (async) unlinks complete immediately
737 retval = usb_unlink_urb (urb);
738 if (retval != -EINPROGRESS && retval != 0)
Joe Perches60b86752010-02-17 10:30:23 +0000739 netdev_dbg(dev->net, "unlink urb err, %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 else
741 count++;
tom.leiming@gmail.com0956a8c2012-03-22 03:22:18 +0000742 usb_put_urb(urb);
Sebastian Siewior4231d472012-03-07 10:19:28 +0000743 spin_lock_irqsave(&q->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 }
745 spin_unlock_irqrestore (&q->lock, flags);
746 return count;
747}
748
Jamie Paintera99c1942006-07-27 14:17:28 -0400749// Flush all pending rx urbs
750// minidrivers may need to do this when the MTU changes
751
752void usbnet_unlink_rx_urbs(struct usbnet *dev)
753{
754 if (netif_running(dev->net)) {
755 (void) unlink_urbs (dev, &dev->rxq);
756 tasklet_schedule(&dev->bh);
757 }
758}
759EXPORT_SYMBOL_GPL(usbnet_unlink_rx_urbs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
761/*-------------------------------------------------------------------------*/
762
Eugene Shatokhinfcb0bb62015-09-01 17:05:33 +0300763static void wait_skb_queue_empty(struct sk_buff_head *q)
764{
765 unsigned long flags;
766
767 spin_lock_irqsave(&q->lock, flags);
768 while (!skb_queue_empty(q)) {
769 spin_unlock_irqrestore(&q->lock, flags);
770 schedule_timeout(msecs_to_jiffies(UNLINK_TIMEOUT_MS));
771 set_current_state(TASK_UNINTERRUPTIBLE);
772 spin_lock_irqsave(&q->lock, flags);
773 }
774 spin_unlock_irqrestore(&q->lock, flags);
775}
776
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777// precondition: never called in_interrupt
Oliver Neukum69ee472f2009-12-03 15:31:18 -0800778static void usbnet_terminate_urbs(struct usbnet *dev)
779{
Oliver Neukum69ee472f2009-12-03 15:31:18 -0800780 DECLARE_WAITQUEUE(wait, current);
781 int temp;
782
783 /* ensure there are no more active urbs */
Oliver Neukum14a0d632014-03-26 14:32:51 +0100784 add_wait_queue(&dev->wait, &wait);
Oliver Neukum69ee472f2009-12-03 15:31:18 -0800785 set_current_state(TASK_UNINTERRUPTIBLE);
Oliver Neukum69ee472f2009-12-03 15:31:18 -0800786 temp = unlink_urbs(dev, &dev->txq) +
787 unlink_urbs(dev, &dev->rxq);
788
789 /* maybe wait for deletions to finish. */
Eugene Shatokhinfcb0bb62015-09-01 17:05:33 +0300790 wait_skb_queue_empty(&dev->rxq);
791 wait_skb_queue_empty(&dev->txq);
792 wait_skb_queue_empty(&dev->done);
793 netif_dbg(dev, ifdown, dev->net,
794 "waited for %d urb completions\n", temp);
Oliver Neukum69ee472f2009-12-03 15:31:18 -0800795 set_current_state(TASK_RUNNING);
Oliver Neukum14a0d632014-03-26 14:32:51 +0100796 remove_wait_queue(&dev->wait, &wait);
Oliver Neukum69ee472f2009-12-03 15:31:18 -0800797}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
Stephen Hemminger777baa42009-03-20 19:35:54 +0000799int usbnet_stop (struct net_device *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800{
801 struct usbnet *dev = netdev_priv(net);
Jussi Kivilinnaa33e9e72009-06-16 17:17:27 +0300802 struct driver_info *info = dev->driver_info;
Eugene Shatokhinf50791a2015-08-24 23:13:42 +0300803 int retval, pm, mpn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
Ming Lei75bd0cb2011-04-28 22:37:09 +0000805 clear_bit(EVENT_DEV_OPEN, &dev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 netif_stop_queue (net);
807
Joe Perchesa475f602010-02-17 10:30:24 +0000808 netif_info(dev, ifdown, dev->net,
Ben Hutchings8ccef432010-06-08 08:20:59 +0000809 "stop stats: rx/tx %lu/%lu, errs %lu/%lu\n",
Joe Perchesa475f602010-02-17 10:30:24 +0000810 net->stats.rx_packets, net->stats.tx_packets,
811 net->stats.rx_errors, net->stats.tx_errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
Oliver Neukum14a0d632014-03-26 14:32:51 +0100813 /* to not race resume */
814 pm = usb_autopm_get_interface(dev->intf);
Jussi Kivilinnaa33e9e72009-06-16 17:17:27 +0300815 /* allow minidriver to stop correctly (wireless devices to turn off
816 * radio etc) */
817 if (info->stop) {
818 retval = info->stop(dev);
Joe Perchesa475f602010-02-17 10:30:24 +0000819 if (retval < 0)
820 netif_info(dev, ifdown, dev->net,
821 "stop fail (%d) usbnet usb-%s-%s, %s\n",
822 retval,
823 dev->udev->bus->bus_name, dev->udev->devpath,
824 info->description);
Jussi Kivilinnaa33e9e72009-06-16 17:17:27 +0300825 }
826
Oliver Neukum69ee472f2009-12-03 15:31:18 -0800827 if (!(info->flags & FLAG_AVOID_UNLINK_URBS))
828 usbnet_terminate_urbs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
Dan Williams6eecdc52013-05-06 11:29:23 +0000830 usbnet_status_stop(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
Jussi Kivilinna7834ddb2009-08-11 22:57:16 +0300832 usbnet_purge_paused_rxq(dev);
833
Eugene Shatokhinf50791a2015-08-24 23:13:42 +0300834 mpn = !test_and_clear_bit(EVENT_NO_RUNTIME_PM, &dev->flags);
835
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 /* deferred work (task, timer, softirq) must also stop.
837 * can't flush_scheduled_work() until we drop rtnl (later),
838 * else workers could deadlock; so make workers a NOP.
839 */
840 dev->flags = 0;
841 del_timer_sync (&dev->delay);
842 tasklet_kill (&dev->bh);
Oliver Neukum14a0d632014-03-26 14:32:51 +0100843 if (!pm)
844 usb_autopm_put_interface(dev->intf);
845
Eugene Shatokhinf50791a2015-08-24 23:13:42 +0300846 if (info->manage_power && mpn)
Oliver Neukum69ee472f2009-12-03 15:31:18 -0800847 info->manage_power(dev, 0);
848 else
849 usb_autopm_put_interface(dev->intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
851 return 0;
852}
Stephen Hemminger777baa42009-03-20 19:35:54 +0000853EXPORT_SYMBOL_GPL(usbnet_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
855/*-------------------------------------------------------------------------*/
856
857// posts reads, and enables write queuing
858
859// precondition: never called in_interrupt
860
Stephen Hemminger777baa42009-03-20 19:35:54 +0000861int usbnet_open (struct net_device *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862{
863 struct usbnet *dev = netdev_priv(net);
Oliver Neukuma11a6542007-08-03 13:52:19 +0200864 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 struct driver_info *info = dev->driver_info;
866
Oliver Neukuma11a6542007-08-03 13:52:19 +0200867 if ((retval = usb_autopm_get_interface(dev->intf)) < 0) {
Joe Perchesa475f602010-02-17 10:30:24 +0000868 netif_info(dev, ifup, dev->net,
869 "resumption fail (%d) usbnet usb-%s-%s, %s\n",
870 retval,
871 dev->udev->bus->bus_name,
872 dev->udev->devpath,
873 info->description);
Oliver Neukuma11a6542007-08-03 13:52:19 +0200874 goto done_nopm;
875 }
876
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 // put into "known safe" state
878 if (info->reset && (retval = info->reset (dev)) < 0) {
Joe Perchesa475f602010-02-17 10:30:24 +0000879 netif_info(dev, ifup, dev->net,
880 "open reset fail (%d) usbnet usb-%s-%s, %s\n",
881 retval,
882 dev->udev->bus->bus_name,
883 dev->udev->devpath,
884 info->description);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 goto done;
886 }
887
Ming Leia88c32a2013-07-25 13:47:53 +0800888 /* hard_mtu or rx_urb_size may change in reset() */
889 usbnet_update_max_qlen(dev);
890
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 // insist peer be connected
892 if (info->check_connect && (retval = info->check_connect (dev)) < 0) {
Joe Perchesa475f602010-02-17 10:30:24 +0000893 netif_dbg(dev, ifup, dev->net, "can't open; %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 goto done;
895 }
896
897 /* start any status interrupt transfer */
898 if (dev->interrupt) {
Dan Williams6eecdc52013-05-06 11:29:23 +0000899 retval = usbnet_status_start(dev, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 if (retval < 0) {
Joe Perchesa475f602010-02-17 10:30:24 +0000901 netif_err(dev, ifup, dev->net,
902 "intr submit %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 goto done;
904 }
905 }
906
Paul Stewart68972ef2011-04-28 05:43:37 +0000907 set_bit(EVENT_DEV_OPEN, &dev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 netif_start_queue (net);
Joe Perchesa475f602010-02-17 10:30:24 +0000909 netif_info(dev, ifup, dev->net,
910 "open: enable queueing (rx %d, tx %d) mtu %d %s framing\n",
911 (int)RX_QLEN(dev), (int)TX_QLEN(dev),
912 dev->net->mtu,
913 (dev->driver_info->flags & FLAG_FRAMING_NC) ? "NetChip" :
914 (dev->driver_info->flags & FLAG_FRAMING_GL) ? "GeneSys" :
915 (dev->driver_info->flags & FLAG_FRAMING_Z) ? "Zaurus" :
916 (dev->driver_info->flags & FLAG_FRAMING_RN) ? "RNDIS" :
917 (dev->driver_info->flags & FLAG_FRAMING_AX) ? "ASIX" :
918 "simple");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
Bjørn Mork70c37bf2013-01-28 23:51:28 +0000920 /* reset rx error state */
921 dev->pkt_cnt = 0;
922 dev->pkt_err = 0;
923 clear_bit(EVENT_RX_KILL, &dev->flags);
924
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 // delay posting reads until we're fully open
926 tasklet_schedule (&dev->bh);
Oliver Neukum69ee472f2009-12-03 15:31:18 -0800927 if (info->manage_power) {
928 retval = info->manage_power(dev, 1);
Oliver Neukuma1c088e2012-12-18 04:45:29 +0000929 if (retval < 0) {
930 retval = 0;
931 set_bit(EVENT_NO_RUNTIME_PM, &dev->flags);
932 } else {
933 usb_autopm_put_interface(dev->intf);
934 }
Oliver Neukum69ee472f2009-12-03 15:31:18 -0800935 }
Oliver Neukuma11a6542007-08-03 13:52:19 +0200936 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937done:
Oliver Neukuma11a6542007-08-03 13:52:19 +0200938 usb_autopm_put_interface(dev->intf);
939done_nopm:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 return retval;
941}
Stephen Hemminger777baa42009-03-20 19:35:54 +0000942EXPORT_SYMBOL_GPL(usbnet_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
944/*-------------------------------------------------------------------------*/
945
David Brownell2e55cc72005-08-31 09:53:10 -0700946/* ethtool methods; minidrivers may need to add some more, but
947 * they'll probably want to use this base set.
948 */
949
Arnd Bergmannc41286f2006-10-09 00:08:01 +0200950int usbnet_get_settings (struct net_device *net, struct ethtool_cmd *cmd)
951{
952 struct usbnet *dev = netdev_priv(net);
953
954 if (!dev->mii.mdio_read)
955 return -EOPNOTSUPP;
956
957 return mii_ethtool_gset(&dev->mii, cmd);
958}
959EXPORT_SYMBOL_GPL(usbnet_get_settings);
960
961int usbnet_set_settings (struct net_device *net, struct ethtool_cmd *cmd)
962{
963 struct usbnet *dev = netdev_priv(net);
964 int retval;
965
966 if (!dev->mii.mdio_write)
967 return -EOPNOTSUPP;
968
969 retval = mii_ethtool_sset(&dev->mii, cmd);
970
971 /* link speed/duplex might have changed */
972 if (dev->driver_info->link_reset)
973 dev->driver_info->link_reset(dev);
974
Ming Leia88c32a2013-07-25 13:47:53 +0800975 /* hard_mtu or rx_urb_size may change in link_reset() */
976 usbnet_update_max_qlen(dev);
977
Arnd Bergmannc41286f2006-10-09 00:08:01 +0200978 return retval;
979
980}
981EXPORT_SYMBOL_GPL(usbnet_set_settings);
982
Philippe Reynes8bae3552017-03-16 23:18:47 +0100983int usbnet_get_link_ksettings(struct net_device *net,
984 struct ethtool_link_ksettings *cmd)
985{
986 struct usbnet *dev = netdev_priv(net);
987
988 if (!dev->mii.mdio_read)
989 return -EOPNOTSUPP;
990
991 return mii_ethtool_get_link_ksettings(&dev->mii, cmd);
992}
993EXPORT_SYMBOL_GPL(usbnet_get_link_ksettings);
994
995int usbnet_set_link_ksettings(struct net_device *net,
996 const struct ethtool_link_ksettings *cmd)
997{
998 struct usbnet *dev = netdev_priv(net);
999 int retval;
1000
1001 if (!dev->mii.mdio_write)
1002 return -EOPNOTSUPP;
1003
1004 retval = mii_ethtool_set_link_ksettings(&dev->mii, cmd);
1005
1006 /* link speed/duplex might have changed */
1007 if (dev->driver_info->link_reset)
1008 dev->driver_info->link_reset(dev);
1009
1010 /* hard_mtu or rx_urb_size may change in link_reset() */
1011 usbnet_update_max_qlen(dev);
1012
1013 return retval;
1014}
1015EXPORT_SYMBOL_GPL(usbnet_set_link_ksettings);
1016
Arnd Bergmannc41286f2006-10-09 00:08:01 +02001017u32 usbnet_get_link (struct net_device *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018{
1019 struct usbnet *dev = netdev_priv(net);
1020
David Brownellf29fc252005-08-31 09:52:31 -07001021 /* If a check_connect is defined, return its result */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 if (dev->driver_info->check_connect)
1023 return dev->driver_info->check_connect (dev) == 0;
1024
Arnd Bergmannc41286f2006-10-09 00:08:01 +02001025 /* if the device has mii operations, use those */
1026 if (dev->mii.mdio_read)
1027 return mii_link_ok(&dev->mii);
1028
Bjørn Mork05ffb3e2009-03-01 20:45:40 -08001029 /* Otherwise, dtrt for drivers calling netif_carrier_{on,off} */
1030 return ethtool_op_get_link(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031}
Arnd Bergmannc41286f2006-10-09 00:08:01 +02001032EXPORT_SYMBOL_GPL(usbnet_get_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
David Brownell18ee91fa2006-11-02 12:29:12 -08001034int usbnet_nway_reset(struct net_device *net)
1035{
1036 struct usbnet *dev = netdev_priv(net);
1037
1038 if (!dev->mii.mdio_write)
1039 return -EOPNOTSUPP;
1040
1041 return mii_nway_restart(&dev->mii);
1042}
1043EXPORT_SYMBOL_GPL(usbnet_nway_reset);
1044
David Brownell18ee91fa2006-11-02 12:29:12 -08001045void usbnet_get_drvinfo (struct net_device *net, struct ethtool_drvinfo *info)
1046{
1047 struct usbnet *dev = netdev_priv(net);
1048
Phil Sutter86a2f412012-06-14 01:18:42 +00001049 strlcpy (info->driver, dev->driver_name, sizeof info->driver);
1050 strlcpy (info->version, DRIVER_VERSION, sizeof info->version);
1051 strlcpy (info->fw_version, dev->driver_info->description,
David Brownell18ee91fa2006-11-02 12:29:12 -08001052 sizeof info->fw_version);
1053 usb_make_path (dev->udev, info->bus_info, sizeof info->bus_info);
1054}
1055EXPORT_SYMBOL_GPL(usbnet_get_drvinfo);
1056
David Brownell2e55cc72005-08-31 09:53:10 -07001057u32 usbnet_get_msglevel (struct net_device *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058{
1059 struct usbnet *dev = netdev_priv(net);
1060
1061 return dev->msg_enable;
1062}
David Brownell2e55cc72005-08-31 09:53:10 -07001063EXPORT_SYMBOL_GPL(usbnet_get_msglevel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
David Brownell2e55cc72005-08-31 09:53:10 -07001065void usbnet_set_msglevel (struct net_device *net, u32 level)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066{
1067 struct usbnet *dev = netdev_priv(net);
1068
1069 dev->msg_enable = level;
1070}
David Brownell2e55cc72005-08-31 09:53:10 -07001071EXPORT_SYMBOL_GPL(usbnet_set_msglevel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
David Brownell2e55cc72005-08-31 09:53:10 -07001073/* drivers may override default ethtool_ops in their bind() routine */
Stephen Hemminger0fc0b732009-09-02 01:03:33 -07001074static const struct ethtool_ops usbnet_ethtool_ops = {
Arnd Bergmannc41286f2006-10-09 00:08:01 +02001075 .get_settings = usbnet_get_settings,
1076 .set_settings = usbnet_set_settings,
David Brownell2e55cc72005-08-31 09:53:10 -07001077 .get_link = usbnet_get_link,
Arnd Bergmannc41286f2006-10-09 00:08:01 +02001078 .nway_reset = usbnet_nway_reset,
David Brownell18ee91fa2006-11-02 12:29:12 -08001079 .get_drvinfo = usbnet_get_drvinfo,
David Brownell2e55cc72005-08-31 09:53:10 -07001080 .get_msglevel = usbnet_get_msglevel,
1081 .set_msglevel = usbnet_set_msglevel,
Richard Cochran123edb12012-04-03 22:59:41 +00001082 .get_ts_info = ethtool_op_get_ts_info,
Philippe Reynes8bae3552017-03-16 23:18:47 +01001083 .get_link_ksettings = usbnet_get_link_ksettings,
1084 .set_link_ksettings = usbnet_set_link_ksettings,
David Brownell2e55cc72005-08-31 09:53:10 -07001085};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086
1087/*-------------------------------------------------------------------------*/
1088
Ming Lei4b49f582013-04-11 04:40:40 +00001089static void __handle_link_change(struct usbnet *dev)
1090{
1091 if (!test_bit(EVENT_DEV_OPEN, &dev->flags))
1092 return;
1093
1094 if (!netif_carrier_ok(dev->net)) {
1095 /* kill URBs for reading packets to save bus bandwidth */
1096 unlink_urbs(dev, &dev->rxq);
1097
1098 /*
1099 * tx_timeout will unlink URBs for sending packets and
1100 * tx queue is stopped by netcore after link becomes off
1101 */
1102 } else {
1103 /* submitting URBs for reading packets */
1104 tasklet_schedule(&dev->bh);
1105 }
1106
Ming Leia88c32a2013-07-25 13:47:53 +08001107 /* hard_mtu or rx_urb_size may change during link change */
1108 usbnet_update_max_qlen(dev);
1109
Ming Lei4b49f582013-04-11 04:40:40 +00001110 clear_bit(EVENT_LINK_CHANGE, &dev->flags);
1111}
1112
Olivier Blin1efed2d2014-10-24 19:43:00 +02001113static void usbnet_set_rx_mode(struct net_device *net)
1114{
1115 struct usbnet *dev = netdev_priv(net);
1116
1117 usbnet_defer_kevent(dev, EVENT_SET_RX_MODE);
1118}
1119
1120static void __handle_set_rx_mode(struct usbnet *dev)
1121{
1122 if (dev->driver_info->set_rx_mode)
1123 (dev->driver_info->set_rx_mode)(dev);
1124
1125 clear_bit(EVENT_SET_RX_MODE, &dev->flags);
1126}
1127
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128/* work that cannot be done in interrupt context uses keventd.
1129 *
1130 * NOTE: with 2.5 we could do more of this using completion callbacks,
1131 * especially now that control transfers can be queued.
1132 */
1133static void
Oliver Neukum11f17ef2015-04-09 10:09:04 +02001134usbnet_deferred_kevent (struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135{
David Howellsc4028952006-11-22 14:57:56 +00001136 struct usbnet *dev =
1137 container_of(work, struct usbnet, kevent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 int status;
1139
1140 /* usb_clear_halt() needs a thread context */
1141 if (test_bit (EVENT_TX_HALT, &dev->flags)) {
1142 unlink_urbs (dev, &dev->txq);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001143 status = usb_autopm_get_interface(dev->intf);
1144 if (status < 0)
1145 goto fail_pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 status = usb_clear_halt (dev->udev, dev->out);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001147 usb_autopm_put_interface(dev->intf);
Joe Perches8e95a202009-12-03 07:58:21 +00001148 if (status < 0 &&
1149 status != -EPIPE &&
1150 status != -ESHUTDOWN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 if (netif_msg_tx_err (dev))
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001152fail_pipe:
Joe Perches60b86752010-02-17 10:30:23 +00001153 netdev_err(dev->net, "can't clear tx halt, status %d\n",
1154 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 } else {
1156 clear_bit (EVENT_TX_HALT, &dev->flags);
David Brownellf29fc252005-08-31 09:52:31 -07001157 if (status != -ESHUTDOWN)
1158 netif_wake_queue (dev->net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 }
1160 }
1161 if (test_bit (EVENT_RX_HALT, &dev->flags)) {
1162 unlink_urbs (dev, &dev->rxq);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001163 status = usb_autopm_get_interface(dev->intf);
1164 if (status < 0)
1165 goto fail_halt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 status = usb_clear_halt (dev->udev, dev->in);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001167 usb_autopm_put_interface(dev->intf);
Joe Perches8e95a202009-12-03 07:58:21 +00001168 if (status < 0 &&
1169 status != -EPIPE &&
1170 status != -ESHUTDOWN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 if (netif_msg_rx_err (dev))
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001172fail_halt:
Joe Perches60b86752010-02-17 10:30:23 +00001173 netdev_err(dev->net, "can't clear rx halt, status %d\n",
1174 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 } else {
1176 clear_bit (EVENT_RX_HALT, &dev->flags);
1177 tasklet_schedule (&dev->bh);
1178 }
1179 }
1180
1181 /* tasklet could resubmit itself forever if memory is tight */
1182 if (test_bit (EVENT_RX_MEMORY, &dev->flags)) {
1183 struct urb *urb = NULL;
David S. Millerdacb3972010-08-10 02:50:55 -07001184 int resched = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185
1186 if (netif_running (dev->net))
1187 urb = usb_alloc_urb (0, GFP_KERNEL);
1188 else
1189 clear_bit (EVENT_RX_MEMORY, &dev->flags);
1190 if (urb != NULL) {
1191 clear_bit (EVENT_RX_MEMORY, &dev->flags);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001192 status = usb_autopm_get_interface(dev->intf);
Jesper Juhlab607072011-02-10 10:58:45 +00001193 if (status < 0) {
1194 usb_free_urb(urb);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001195 goto fail_lowmem;
Jesper Juhlab607072011-02-10 10:58:45 +00001196 }
David S. Millerdacb3972010-08-10 02:50:55 -07001197 if (rx_submit (dev, urb, GFP_KERNEL) == -ENOLINK)
1198 resched = 0;
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001199 usb_autopm_put_interface(dev->intf);
1200fail_lowmem:
David S. Millerdacb3972010-08-10 02:50:55 -07001201 if (resched)
1202 tasklet_schedule (&dev->bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 }
1204 }
1205
David Hollis7ea13c92005-04-22 15:07:02 -07001206 if (test_bit (EVENT_LINK_RESET, &dev->flags)) {
David Brownellcb1cebb2007-02-15 18:52:30 -08001207 struct driver_info *info = dev->driver_info;
David Hollis7ea13c92005-04-22 15:07:02 -07001208 int retval = 0;
1209
1210 clear_bit (EVENT_LINK_RESET, &dev->flags);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001211 status = usb_autopm_get_interface(dev->intf);
1212 if (status < 0)
1213 goto skip_reset;
David Hollis7ea13c92005-04-22 15:07:02 -07001214 if(info->link_reset && (retval = info->link_reset(dev)) < 0) {
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001215 usb_autopm_put_interface(dev->intf);
1216skip_reset:
Joe Perches60b86752010-02-17 10:30:23 +00001217 netdev_info(dev->net, "link reset failed (%d) usbnet usb-%s-%s, %s\n",
1218 retval,
1219 dev->udev->bus->bus_name,
1220 dev->udev->devpath,
1221 info->description);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001222 } else {
1223 usb_autopm_put_interface(dev->intf);
David Hollis7ea13c92005-04-22 15:07:02 -07001224 }
Ming Lei4b49f582013-04-11 04:40:40 +00001225
1226 /* handle link change from link resetting */
1227 __handle_link_change(dev);
David Hollis7ea13c92005-04-22 15:07:02 -07001228 }
1229
Ming Lei4b49f582013-04-11 04:40:40 +00001230 if (test_bit (EVENT_LINK_CHANGE, &dev->flags))
1231 __handle_link_change(dev);
1232
Olivier Blin1efed2d2014-10-24 19:43:00 +02001233 if (test_bit (EVENT_SET_RX_MODE, &dev->flags))
1234 __handle_set_rx_mode(dev);
1235
1236
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 if (dev->flags)
Joe Perches60b86752010-02-17 10:30:23 +00001238 netdev_dbg(dev->net, "kevent done, flags = 0x%lx\n", dev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239}
1240
1241/*-------------------------------------------------------------------------*/
1242
David Howells7d12e782006-10-05 14:55:46 +01001243static void tx_complete (struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244{
1245 struct sk_buff *skb = (struct sk_buff *) urb->context;
1246 struct skb_data *entry = (struct skb_data *) skb->cb;
1247 struct usbnet *dev = entry->dev;
1248
1249 if (urb->status == 0) {
Ben Hutchings1e9e39f2015-02-26 19:34:37 +00001250 dev->net->stats.tx_packets += entry->packets;
Herbert Xu79638372009-06-29 16:53:28 +00001251 dev->net->stats.tx_bytes += entry->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 } else {
Herbert Xu79638372009-06-29 16:53:28 +00001253 dev->net->stats.tx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254
1255 switch (urb->status) {
1256 case -EPIPE:
David Brownell2e55cc72005-08-31 09:53:10 -07001257 usbnet_defer_kevent (dev, EVENT_TX_HALT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 break;
1259
1260 /* software-driven interface shutdown */
1261 case -ECONNRESET: // async unlink
1262 case -ESHUTDOWN: // hardware gone
1263 break;
1264
Petr Mladek37ebb542014-09-19 17:32:23 +02001265 /* like rx, tx gets controller i/o faults during hub_wq
1266 * delays and so it uses the same throttling mechanism.
1267 */
Pete Zaitcev38e2bfc2006-09-18 22:49:02 -07001268 case -EPROTO:
1269 case -ETIME:
1270 case -EILSEQ:
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001271 usb_mark_last_busy(dev->udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 if (!timer_pending (&dev->delay)) {
1273 mod_timer (&dev->delay,
1274 jiffies + THROTTLE_JIFFIES);
Joe Perchesa475f602010-02-17 10:30:24 +00001275 netif_dbg(dev, link, dev->net,
1276 "tx throttle %d\n", urb->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 }
1278 netif_stop_queue (dev->net);
1279 break;
1280 default:
Joe Perchesa475f602010-02-17 10:30:24 +00001281 netif_dbg(dev, tx_err, dev->net,
1282 "tx err %d\n", entry->urb->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 break;
1284 }
1285 }
1286
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001287 usb_autopm_put_interface_async(dev->intf);
Ming Lei5b6e9bc2012-04-26 11:33:46 +08001288 (void) defer_bh(dev, skb, &dev->txq, tx_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289}
1290
1291/*-------------------------------------------------------------------------*/
1292
Stephen Hemminger777baa42009-03-20 19:35:54 +00001293void usbnet_tx_timeout (struct net_device *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294{
1295 struct usbnet *dev = netdev_priv(net);
1296
1297 unlink_urbs (dev, &dev->txq);
1298 tasklet_schedule (&dev->bh);
Oliver Neukumdbcdd4d2014-08-01 14:01:51 +02001299 /* this needs to be handled individually because the generic layer
1300 * doesn't know what is sufficient and could not restore private
1301 * information if a remedy of an unconditional reset were used.
1302 */
1303 if (dev->driver_info->recover)
1304 (dev->driver_info->recover)(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305}
Stephen Hemminger777baa42009-03-20 19:35:54 +00001306EXPORT_SYMBOL_GPL(usbnet_tx_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
1308/*-------------------------------------------------------------------------*/
1309
Ming Lei638c5112013-08-08 21:48:24 +08001310static int build_dma_sg(const struct sk_buff *skb, struct urb *urb)
1311{
1312 unsigned num_sgs, total_len = 0;
1313 int i, s = 0;
1314
1315 num_sgs = skb_shinfo(skb)->nr_frags + 1;
1316 if (num_sgs == 1)
1317 return 0;
1318
Ming Lei60e453a2013-09-23 20:59:35 +08001319 /* reserve one for zero packet */
1320 urb->sg = kmalloc((num_sgs + 1) * sizeof(struct scatterlist),
1321 GFP_ATOMIC);
Ming Lei638c5112013-08-08 21:48:24 +08001322 if (!urb->sg)
1323 return -ENOMEM;
1324
1325 urb->num_sgs = num_sgs;
Bjørn Morkfdc34522014-01-10 23:10:17 +01001326 sg_init_table(urb->sg, urb->num_sgs + 1);
Ming Lei638c5112013-08-08 21:48:24 +08001327
1328 sg_set_buf(&urb->sg[s++], skb->data, skb_headlen(skb));
1329 total_len += skb_headlen(skb);
1330
1331 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1332 struct skb_frag_struct *f = &skb_shinfo(skb)->frags[i];
1333
1334 total_len += skb_frag_size(f);
1335 sg_set_page(&urb->sg[i + s], f->page.p, f->size,
1336 f->page_offset);
1337 }
1338 urb->transfer_buffer_length = total_len;
1339
1340 return 1;
1341}
1342
Stephen Hemminger25a79c42009-08-31 19:50:45 +00001343netdev_tx_t usbnet_start_xmit (struct sk_buff *skb,
1344 struct net_device *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345{
1346 struct usbnet *dev = netdev_priv(net);
Jason A. Donenfeld3e4336a2015-05-06 15:09:40 +02001347 unsigned int length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 struct urb *urb = NULL;
1349 struct skb_data *entry;
1350 struct driver_info *info = dev->driver_info;
1351 unsigned long flags;
Stephen Hemminger25a79c42009-08-31 19:50:45 +00001352 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
Konstantin Khlebnikov23ba0792011-11-07 05:54:58 +00001354 if (skb)
1355 skb_tx_timestamp(skb);
Michael Rieschf9b491e2011-09-29 04:06:26 +00001356
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 // some devices want funky USB-level framing, for
1358 // win32 driver (usually) and/or hardware quirks
1359 if (info->tx_fixup) {
1360 skb = info->tx_fixup (dev, skb, GFP_ATOMIC);
1361 if (!skb) {
Bjørn Morkbf414b32013-01-31 08:36:05 +00001362 /* packet collected; minidriver waiting for more */
1363 if (info->flags & FLAG_MULTI_PACKET)
Alexey Orishko073285f2010-11-29 23:23:27 +00001364 goto not_drop;
Bjørn Morkbf414b32013-01-31 08:36:05 +00001365 netif_dbg(dev, tx_err, dev->net, "can't tx_fixup skb\n");
1366 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 }
1368 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
1370 if (!(urb = usb_alloc_urb (0, GFP_ATOMIC))) {
Joe Perchesa475f602010-02-17 10:30:24 +00001371 netif_dbg(dev, tx_err, dev->net, "no urb\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 goto drop;
1373 }
1374
1375 entry = (struct skb_data *) skb->cb;
1376 entry->urb = urb;
1377 entry->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 usb_fill_bulk_urb (urb, dev->udev, dev->out,
1380 skb->data, skb->len, tx_complete, skb);
Ming Lei638c5112013-08-08 21:48:24 +08001381 if (dev->can_dma_sg) {
1382 if (build_dma_sg(skb, urb) < 0)
1383 goto drop;
1384 }
Ming Lei60e453a2013-09-23 20:59:35 +08001385 length = urb->transfer_buffer_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386
1387 /* don't assume the hardware handles USB_ZERO_PACKET
1388 * NOTE: strictly conforming cdc-ether devices should expect
1389 * the ZLP here, but ignore the one-byte packet.
Alexey Orishko073285f2010-11-29 23:23:27 +00001390 * NOTE2: CDC NCM specification is different from CDC ECM when
1391 * handling ZLP/short packets, so cdc_ncm driver will make short
1392 * packet itself if needed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 */
Elina Pashevab4d562e32010-04-06 14:23:07 +00001394 if (length % dev->maxpacket == 0) {
1395 if (!(info->flags & FLAG_SEND_ZLP)) {
Alexey Orishko073285f2010-11-29 23:23:27 +00001396 if (!(info->flags & FLAG_MULTI_PACKET)) {
Ming Lei60e453a2013-09-23 20:59:35 +08001397 length++;
1398 if (skb_tailroom(skb) && !urb->num_sgs) {
Alexey Orishko073285f2010-11-29 23:23:27 +00001399 skb->data[skb->len] = 0;
1400 __skb_put(skb, 1);
Ming Lei60e453a2013-09-23 20:59:35 +08001401 } else if (urb->num_sgs)
1402 sg_set_buf(&urb->sg[urb->num_sgs++],
1403 dev->padding_pkt, 1);
Elina Pashevab4d562e32010-04-06 14:23:07 +00001404 }
1405 } else
1406 urb->transfer_flags |= URB_ZERO_PACKET;
Peter Korsgaard3e323f32007-06-27 08:48:15 +02001407 }
Ben Hutchings7a1e8902015-03-25 21:41:33 +01001408 urb->transfer_buffer_length = length;
1409
1410 if (info->flags & FLAG_MULTI_PACKET) {
1411 /* Driver has set number of packets and a length delta.
1412 * Calculate the complete length and ensure that it's
1413 * positive.
1414 */
1415 entry->length += length;
1416 if (WARN_ON_ONCE(entry->length <= 0))
1417 entry->length = length;
1418 } else {
1419 usbnet_set_skb_tx_stats(skb, 1, length);
1420 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001422 spin_lock_irqsave(&dev->txq.lock, flags);
1423 retval = usb_autopm_get_interface_async(dev->intf);
1424 if (retval < 0) {
1425 spin_unlock_irqrestore(&dev->txq.lock, flags);
1426 goto drop;
1427 }
1428
1429#ifdef CONFIG_PM
1430 /* if this triggers the device is still a sleep */
1431 if (test_bit(EVENT_DEV_ASLEEP, &dev->flags)) {
1432 /* transmission will be done in resume */
1433 usb_anchor_urb(urb, &dev->deferred);
1434 /* no use to process more packets */
1435 netif_stop_queue(net);
Hemant Kumar39707c22012-10-25 18:17:54 +00001436 usb_put_urb(urb);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001437 spin_unlock_irqrestore(&dev->txq.lock, flags);
Joe Perches60b86752010-02-17 10:30:23 +00001438 netdev_dbg(dev->net, "Delaying transmission for resumption\n");
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001439 goto deferred;
1440 }
1441#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 switch ((retval = usb_submit_urb (urb, GFP_ATOMIC))) {
1444 case -EPIPE:
1445 netif_stop_queue (net);
David Brownell2e55cc72005-08-31 09:53:10 -07001446 usbnet_defer_kevent (dev, EVENT_TX_HALT);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001447 usb_autopm_put_interface_async(dev->intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 break;
1449 default:
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001450 usb_autopm_put_interface_async(dev->intf);
Joe Perchesa475f602010-02-17 10:30:24 +00001451 netif_dbg(dev, tx_err, dev->net,
1452 "tx: submit urb err %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 break;
1454 case 0:
Florian Westphal860e9532016-05-03 16:33:13 +02001455 netif_trans_update(net);
Ming Lei5b6e9bc2012-04-26 11:33:46 +08001456 __usbnet_queue_skb(&dev->txq, skb, tx_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 if (dev->txq.qlen >= TX_QLEN (dev))
1458 netif_stop_queue (net);
1459 }
1460 spin_unlock_irqrestore (&dev->txq.lock, flags);
1461
1462 if (retval) {
Joe Perchesa475f602010-02-17 10:30:24 +00001463 netif_dbg(dev, tx_err, dev->net, "drop, code %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464drop:
Herbert Xu79638372009-06-29 16:53:28 +00001465 dev->net->stats.tx_dropped++;
Alexey Orishko073285f2010-11-29 23:23:27 +00001466not_drop:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 if (skb)
1468 dev_kfree_skb_any (skb);
Ming Lei638c5112013-08-08 21:48:24 +08001469 if (urb) {
1470 kfree(urb->sg);
1471 usb_free_urb(urb);
1472 }
Joe Perchesa475f602010-02-17 10:30:24 +00001473 } else
1474 netif_dbg(dev, tx_queued, dev->net,
Jason A. Donenfeld3e4336a2015-05-06 15:09:40 +02001475 "> tx, len %u, type 0x%x\n", length, skb->protocol);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001476#ifdef CONFIG_PM
1477deferred:
1478#endif
Stephen Hemminger25a79c42009-08-31 19:50:45 +00001479 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480}
Stephen Hemminger777baa42009-03-20 19:35:54 +00001481EXPORT_SYMBOL_GPL(usbnet_start_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482
Bjørn Mork85e87872012-09-02 22:26:18 +00001483static int rx_alloc_submit(struct usbnet *dev, gfp_t flags)
Ming Lei65841fd2012-06-19 21:15:53 +00001484{
1485 struct urb *urb;
1486 int i;
Bjørn Mork85e87872012-09-02 22:26:18 +00001487 int ret = 0;
Ming Lei65841fd2012-06-19 21:15:53 +00001488
1489 /* don't refill the queue all at once */
1490 for (i = 0; i < 10 && dev->rxq.qlen < RX_QLEN(dev); i++) {
1491 urb = usb_alloc_urb(0, flags);
1492 if (urb != NULL) {
Bjørn Mork85e87872012-09-02 22:26:18 +00001493 ret = rx_submit(dev, urb, flags);
1494 if (ret)
1495 goto err;
1496 } else {
1497 ret = -ENOMEM;
1498 goto err;
Ming Lei65841fd2012-06-19 21:15:53 +00001499 }
1500 }
Bjørn Mork85e87872012-09-02 22:26:18 +00001501err:
1502 return ret;
Ming Lei65841fd2012-06-19 21:15:53 +00001503}
1504
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505/*-------------------------------------------------------------------------*/
1506
1507// tasklet (work deferred from completions, in_irq) or timer
1508
1509static void usbnet_bh (unsigned long param)
1510{
1511 struct usbnet *dev = (struct usbnet *) param;
1512 struct sk_buff *skb;
1513 struct skb_data *entry;
1514
1515 while ((skb = skb_dequeue (&dev->done))) {
1516 entry = (struct skb_data *) skb->cb;
1517 switch (entry->state) {
David Brownell18ab4582007-05-25 12:31:32 -07001518 case rx_done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 entry->state = rx_cleanup;
1520 rx_process (dev, skb);
1521 continue;
David Brownell18ab4582007-05-25 12:31:32 -07001522 case tx_done:
Ming Lei638c5112013-08-08 21:48:24 +08001523 kfree(entry->urb->sg);
David Brownell18ab4582007-05-25 12:31:32 -07001524 case rx_cleanup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 usb_free_urb (entry->urb);
1526 dev_kfree_skb (skb);
1527 continue;
David Brownell18ab4582007-05-25 12:31:32 -07001528 default:
Joe Perches60b86752010-02-17 10:30:23 +00001529 netdev_dbg(dev->net, "bogus skb state %d\n", entry->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 }
1531 }
1532
Bjørn Mork70c37bf2013-01-28 23:51:28 +00001533 /* restart RX again after disabling due to high error rate */
1534 clear_bit(EVENT_RX_KILL, &dev->flags);
1535
Oliver Neukum14a0d632014-03-26 14:32:51 +01001536 /* waiting for all pending urbs to complete?
1537 * only then can we forgo submitting anew
1538 */
1539 if (waitqueue_active(&dev->wait)) {
1540 if (dev->txq.qlen + dev->rxq.qlen + dev->done.qlen == 0)
1541 wake_up_all(&dev->wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542
1543 // or are we maybe short a few urbs?
Joe Perches8e95a202009-12-03 07:58:21 +00001544 } else if (netif_running (dev->net) &&
1545 netif_device_present (dev->net) &&
Ming Lei4b49f582013-04-11 04:40:40 +00001546 netif_carrier_ok(dev->net) &&
Soohoon Lee43daa962016-06-29 15:07:21 -04001547 !timer_pending(&dev->delay) &&
1548 !test_bit(EVENT_RX_PAUSED, &dev->flags) &&
1549 !test_bit(EVENT_RX_HALT, &dev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 int temp = dev->rxq.qlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551
Ming Lei65841fd2012-06-19 21:15:53 +00001552 if (temp < RX_QLEN(dev)) {
Bjørn Mork85e87872012-09-02 22:26:18 +00001553 if (rx_alloc_submit(dev, GFP_ATOMIC) == -ENOLINK)
1554 return;
Joe Perchesa475f602010-02-17 10:30:24 +00001555 if (temp != dev->rxq.qlen)
1556 netif_dbg(dev, link, dev->net,
1557 "rxqlen %d --> %d\n",
1558 temp, dev->rxq.qlen);
Ming Lei65841fd2012-06-19 21:15:53 +00001559 if (dev->rxq.qlen < RX_QLEN(dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 tasklet_schedule (&dev->bh);
1561 }
1562 if (dev->txq.qlen < TX_QLEN (dev))
1563 netif_wake_queue (dev->net);
1564 }
1565}
1566
1567
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568/*-------------------------------------------------------------------------
1569 *
1570 * USB Device Driver support
1571 *
1572 *-------------------------------------------------------------------------*/
David Brownellcb1cebb2007-02-15 18:52:30 -08001573
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574// precondition: never called in_interrupt
1575
David Brownell38bde1d2005-08-31 09:52:45 -07001576void usbnet_disconnect (struct usb_interface *intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577{
1578 struct usbnet *dev;
1579 struct usb_device *xdev;
1580 struct net_device *net;
1581
1582 dev = usb_get_intfdata(intf);
1583 usb_set_intfdata(intf, NULL);
1584 if (!dev)
1585 return;
1586
1587 xdev = interface_to_usbdev (intf);
1588
Joe Perchesa475f602010-02-17 10:30:24 +00001589 netif_info(dev, probe, dev->net, "unregister '%s' usb-%s-%s, %s\n",
1590 intf->dev.driver->name,
1591 xdev->bus->bus_name, xdev->devpath,
1592 dev->driver_info->description);
David Brownellcb1cebb2007-02-15 18:52:30 -08001593
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 net = dev->net;
1595 unregister_netdev (net);
1596
Tejun Heo23f333a2010-12-12 16:45:14 +01001597 cancel_work_sync(&dev->kevent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598
Hemant Kumar39707c22012-10-25 18:17:54 +00001599 usb_scuttle_anchored_urbs(&dev->deferred);
1600
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 if (dev->driver_info->unbind)
1602 dev->driver_info->unbind (dev, intf);
1603
Paul Stewart68972ef2011-04-28 05:43:37 +00001604 usb_kill_urb(dev->interrupt);
1605 usb_free_urb(dev->interrupt);
Ming Lei60e453a2013-09-23 20:59:35 +08001606 kfree(dev->padding_pkt);
Paul Stewart68972ef2011-04-28 05:43:37 +00001607
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 free_netdev(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609}
David Brownell38bde1d2005-08-31 09:52:45 -07001610EXPORT_SYMBOL_GPL(usbnet_disconnect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611
Stephen Hemminger777baa42009-03-20 19:35:54 +00001612static const struct net_device_ops usbnet_netdev_ops = {
1613 .ndo_open = usbnet_open,
1614 .ndo_stop = usbnet_stop,
1615 .ndo_start_xmit = usbnet_start_xmit,
1616 .ndo_tx_timeout = usbnet_tx_timeout,
Olivier Blin1efed2d2014-10-24 19:43:00 +02001617 .ndo_set_rx_mode = usbnet_set_rx_mode,
Stephen Hemminger777baa42009-03-20 19:35:54 +00001618 .ndo_change_mtu = usbnet_change_mtu,
1619 .ndo_set_mac_address = eth_mac_addr,
1620 .ndo_validate_addr = eth_validate_addr,
1621};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622
1623/*-------------------------------------------------------------------------*/
1624
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625// precondition: never called in_interrupt
1626
Marcel Holtmann225794f2009-10-02 05:15:26 +00001627static struct device_type wlan_type = {
1628 .name = "wlan",
1629};
1630
1631static struct device_type wwan_type = {
1632 .name = "wwan",
1633};
1634
David Brownell38bde1d2005-08-31 09:52:45 -07001635int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636usbnet_probe (struct usb_interface *udev, const struct usb_device_id *prod)
1637{
1638 struct usbnet *dev;
David Brownellcb1cebb2007-02-15 18:52:30 -08001639 struct net_device *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 struct usb_host_interface *interface;
1641 struct driver_info *info;
1642 struct usb_device *xdev;
1643 int status;
David Brownell296c0242007-04-17 16:10:10 -07001644 const char *name;
Ming Leib0786b42010-11-01 07:11:54 -07001645 struct usb_driver *driver = to_usb_driver(udev->dev.driver);
1646
1647 /* usbnet already took usb runtime pm, so have to enable the feature
1648 * for usb interface, otherwise usb_autopm_get_interface may return
Alan Stern98f541c2013-05-01 12:13:54 -04001649 * failure if RUNTIME_PM is enabled.
Ming Leib0786b42010-11-01 07:11:54 -07001650 */
1651 if (!driver->supports_autosuspend) {
1652 driver->supports_autosuspend = 1;
1653 pm_runtime_enable(&udev->dev);
1654 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655
David Brownell296c0242007-04-17 16:10:10 -07001656 name = udev->dev.driver->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 info = (struct driver_info *) prod->driver_info;
1658 if (!info) {
David Brownell296c0242007-04-17 16:10:10 -07001659 dev_dbg (&udev->dev, "blacklisted by %s\n", name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 return -ENODEV;
1661 }
1662 xdev = interface_to_usbdev (udev);
1663 interface = udev->cur_altsetting;
1664
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 status = -ENOMEM;
1666
1667 // set up our own records
1668 net = alloc_etherdev(sizeof(*dev));
Joe Perches41de8d42012-01-29 13:47:52 +00001669 if (!net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671
Ben Hutchings0dacca72010-07-02 21:49:02 -07001672 /* netdev_printk() needs this so do it as early as possible */
1673 SET_NETDEV_DEV(net, &udev->dev);
1674
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 dev = netdev_priv(net);
1676 dev->udev = xdev;
Oliver Neukuma11a6542007-08-03 13:52:19 +02001677 dev->intf = udev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 dev->driver_info = info;
David Brownell296c0242007-04-17 16:10:10 -07001679 dev->driver_name = name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 dev->msg_enable = netif_msg_init (msg_level, NETIF_MSG_DRV
1681 | NETIF_MSG_PROBE | NETIF_MSG_LINK);
Oliver Neukum14a0d632014-03-26 14:32:51 +01001682 init_waitqueue_head(&dev->wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 skb_queue_head_init (&dev->rxq);
1684 skb_queue_head_init (&dev->txq);
1685 skb_queue_head_init (&dev->done);
Jussi Kivilinna7834ddb2009-08-11 22:57:16 +03001686 skb_queue_head_init(&dev->rxq_pause);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 dev->bh.func = usbnet_bh;
1688 dev->bh.data = (unsigned long) dev;
Oliver Neukum11f17ef2015-04-09 10:09:04 +02001689 INIT_WORK (&dev->kevent, usbnet_deferred_kevent);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001690 init_usb_anchor(&dev->deferred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 dev->delay.function = usbnet_bh;
1692 dev->delay.data = (unsigned long) dev;
1693 init_timer (&dev->delay);
Arnd Bergmanna9fc6332006-10-09 00:08:02 +02001694 mutex_init (&dev->phy_mutex);
Dan Williams6eecdc52013-05-06 11:29:23 +00001695 mutex_init(&dev->interrupt_mutex);
1696 dev->interrupt_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 dev->net = net;
1699 strcpy (net->name, "usb%d");
1700 memcpy (net->dev_addr, node_id, sizeof node_id);
1701
David Brownell2e55cc72005-08-31 09:53:10 -07001702 /* rx and tx sides can use different message sizes;
1703 * bind() should set rx_urb_size in that case.
1704 */
1705 dev->hard_mtu = net->mtu + net->hard_header_len;
Jarod Wilsonf77f0ae2016-10-20 13:55:17 -04001706 net->min_mtu = 0;
1707 net->max_mtu = ETH_MAX_MTU;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708
Stephen Hemminger777baa42009-03-20 19:35:54 +00001709 net->netdev_ops = &usbnet_netdev_ops;
Stephen Hemminger777baa42009-03-20 19:35:54 +00001710 net->watchdog_timeo = TX_TIMEOUT_JIFFIES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 net->ethtool_ops = &usbnet_ethtool_ops;
1712
1713 // allow device-specific bind/init procedures
1714 // NOTE net->name still not usable ...
1715 if (info->bind) {
1716 status = info->bind (dev, udev);
David Brownellcb1cebb2007-02-15 18:52:30 -08001717 if (status < 0)
1718 goto out1;
1719
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 // heuristic: "usb%d" for links we know are two-host,
1721 // else "eth%d" when there's reasonable doubt. userspace
1722 // can rename the link if it knows better.
Joe Perches8e95a202009-12-03 07:58:21 +00001723 if ((dev->driver_info->flags & FLAG_ETHER) != 0 &&
Arnd Bergmannc2613442011-04-01 20:12:02 -07001724 ((dev->driver_info->flags & FLAG_POINTTOPOINT) == 0 ||
1725 (net->dev_addr [0] & 0x02) == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 strcpy (net->name, "eth%d");
Jussi Kivilinna6e3bbcc2008-01-26 00:51:06 +02001727 /* WLAN devices should always be named "wlan%d" */
1728 if ((dev->driver_info->flags & FLAG_WLAN) != 0)
1729 strcpy(net->name, "wlan%d");
Marcel Holtmanne1e499e2009-10-02 05:15:25 +00001730 /* WWAN devices should always be named "wwan%d" */
1731 if ((dev->driver_info->flags & FLAG_WWAN) != 0)
1732 strcpy(net->name, "wwan%d");
David Brownellf29fc252005-08-31 09:52:31 -07001733
Wei Shuai65091412013-01-21 06:00:31 +00001734 /* devices that cannot do ARP */
1735 if ((dev->driver_info->flags & FLAG_NOARP) != 0)
1736 net->flags |= IFF_NOARP;
1737
David Brownellf29fc252005-08-31 09:52:31 -07001738 /* maybe the remote can't receive an Ethernet MTU */
1739 if (net->mtu > (dev->hard_mtu - net->hard_header_len))
1740 net->mtu = dev->hard_mtu - net->hard_header_len;
David Brownell2e55cc72005-08-31 09:53:10 -07001741 } else if (!info->in || !info->out)
1742 status = usbnet_get_endpoints (dev, udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 else {
1744 dev->in = usb_rcvbulkpipe (xdev, info->in);
1745 dev->out = usb_sndbulkpipe (xdev, info->out);
1746 if (!(info->flags & FLAG_NO_SETINT))
1747 status = usb_set_interface (xdev,
1748 interface->desc.bInterfaceNumber,
1749 interface->desc.bAlternateSetting);
1750 else
1751 status = 0;
1752
1753 }
Peter Korsgaard9514bfe2007-07-03 00:46:42 +02001754 if (status >= 0 && dev->status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 status = init_status (dev, udev);
1756 if (status < 0)
David Brownellcb1cebb2007-02-15 18:52:30 -08001757 goto out3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758
David Brownell2e55cc72005-08-31 09:53:10 -07001759 if (!dev->rx_urb_size)
1760 dev->rx_urb_size = dev->hard_mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 dev->maxpacket = usb_maxpacket (dev->udev, dev->out, 1);
David Brownellcb1cebb2007-02-15 18:52:30 -08001762
Bjørn Morkeef23b52013-09-04 09:42:32 +02001763 /* let userspace know we have a random address */
1764 if (ether_addr_equal(net->dev_addr, node_id))
1765 net->addr_assign_type = NET_ADDR_RANDOM;
1766
Marcel Holtmann225794f2009-10-02 05:15:26 +00001767 if ((dev->driver_info->flags & FLAG_WLAN) != 0)
1768 SET_NETDEV_DEVTYPE(net, &wlan_type);
1769 if ((dev->driver_info->flags & FLAG_WWAN) != 0)
1770 SET_NETDEV_DEVTYPE(net, &wwan_type);
1771
Ming Leia88c32a2013-07-25 13:47:53 +08001772 /* initialize max rx_qlen and tx_qlen */
1773 usbnet_update_max_qlen(dev);
1774
Ming Lei60e453a2013-09-23 20:59:35 +08001775 if (dev->can_dma_sg && !(info->flags & FLAG_SEND_ZLP) &&
1776 !(info->flags & FLAG_MULTI_PACKET)) {
1777 dev->padding_pkt = kzalloc(1, GFP_KERNEL);
Wei Yongjun09b69022013-10-12 14:24:08 +08001778 if (!dev->padding_pkt) {
1779 status = -ENOMEM;
Ming Lei60e453a2013-09-23 20:59:35 +08001780 goto out4;
Wei Yongjun09b69022013-10-12 14:24:08 +08001781 }
Ming Lei60e453a2013-09-23 20:59:35 +08001782 }
1783
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 status = register_netdev (net);
1785 if (status)
Ming Lei60e453a2013-09-23 20:59:35 +08001786 goto out5;
Joe Perchesa475f602010-02-17 10:30:24 +00001787 netif_info(dev, probe, dev->net,
1788 "register '%s' at usb-%s-%s, %s, %pM\n",
1789 udev->dev.driver->name,
1790 xdev->bus->bus_name, xdev->devpath,
1791 dev->driver_info->description,
1792 net->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
1794 // ok, it's ready to go.
1795 usb_set_intfdata (udev, dev);
1796
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 netif_device_attach (net);
1798
Ben Hutchings37e82732009-11-04 15:29:52 +00001799 if (dev->driver_info->flags & FLAG_LINK_INTR)
Ming Lei0162c552013-04-11 04:40:39 +00001800 usbnet_link_change(dev, 0, 0);
Ben Hutchings37e82732009-11-04 15:29:52 +00001801
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 return 0;
1803
Ming Lei60e453a2013-09-23 20:59:35 +08001804out5:
1805 kfree(dev->padding_pkt);
tom.leiming@gmail.coma4723842012-04-29 22:51:03 +00001806out4:
1807 usb_free_urb(dev->interrupt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808out3:
1809 if (info->unbind)
1810 info->unbind (dev, udev);
1811out1:
Oliver Neukum16669842016-03-07 11:31:10 +01001812 /* subdrivers must undo all they did in bind() if they
1813 * fail it, but we may fail later and a deferred kevent
1814 * may trigger an error resubmitting itself and, worse,
1815 * schedule a timer. So we kill it all just in case.
1816 */
1817 cancel_work_sync(&dev->kevent);
1818 del_timer_sync(&dev->delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 free_netdev(net);
1820out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 return status;
1822}
David Brownell38bde1d2005-08-31 09:52:45 -07001823EXPORT_SYMBOL_GPL(usbnet_probe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824
1825/*-------------------------------------------------------------------------*/
1826
Oliver Neukum36433122007-04-30 01:37:44 -07001827/*
1828 * suspend the whole driver as soon as the first interface is suspended
1829 * resume only when the last interface is resumed
David Brownell38bde1d2005-08-31 09:52:45 -07001830 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831
David Brownell38bde1d2005-08-31 09:52:45 -07001832int usbnet_suspend (struct usb_interface *intf, pm_message_t message)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833{
1834 struct usbnet *dev = usb_get_intfdata(intf);
David Brownellcb1cebb2007-02-15 18:52:30 -08001835
Oliver Neukum36433122007-04-30 01:37:44 -07001836 if (!dev->suspend_count++) {
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001837 spin_lock_irq(&dev->txq.lock);
1838 /* don't autosuspend while transmitting */
Alan Stern5b1b0b82011-08-19 23:49:48 +02001839 if (dev->txq.qlen && PMSG_IS_AUTO(message)) {
Ming Lei5eeb3132012-06-19 21:15:52 +00001840 dev->suspend_count--;
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001841 spin_unlock_irq(&dev->txq.lock);
1842 return -EBUSY;
1843 } else {
1844 set_bit(EVENT_DEV_ASLEEP, &dev->flags);
1845 spin_unlock_irq(&dev->txq.lock);
1846 }
Oliver Neukuma11a6542007-08-03 13:52:19 +02001847 /*
1848 * accelerate emptying of the rx and queues, to avoid
Oliver Neukum36433122007-04-30 01:37:44 -07001849 * having everything error out.
1850 */
1851 netif_device_detach (dev->net);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001852 usbnet_terminate_urbs(dev);
Dan Williams6eecdc52013-05-06 11:29:23 +00001853 __usbnet_status_stop_force(dev);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001854
Oliver Neukuma11a6542007-08-03 13:52:19 +02001855 /*
1856 * reattach so runtime management can use and
1857 * wake the device
1858 */
1859 netif_device_attach (dev->net);
Oliver Neukum36433122007-04-30 01:37:44 -07001860 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 return 0;
1862}
David Brownell38bde1d2005-08-31 09:52:45 -07001863EXPORT_SYMBOL_GPL(usbnet_suspend);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864
David Brownell38bde1d2005-08-31 09:52:45 -07001865int usbnet_resume (struct usb_interface *intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866{
1867 struct usbnet *dev = usb_get_intfdata(intf);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001868 struct sk_buff *skb;
1869 struct urb *res;
1870 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001872 if (!--dev->suspend_count) {
Dan Williams6eecdc52013-05-06 11:29:23 +00001873 /* resume interrupt URB if it was previously submitted */
1874 __usbnet_status_start_force(dev, GFP_NOIO);
Paul Stewart68972ef2011-04-28 05:43:37 +00001875
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001876 spin_lock_irq(&dev->txq.lock);
1877 while ((res = usb_get_from_anchor(&dev->deferred))) {
1878
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001879 skb = (struct sk_buff *)res->context;
1880 retval = usb_submit_urb(res, GFP_ATOMIC);
1881 if (retval < 0) {
1882 dev_kfree_skb_any(skb);
Ming Lei638c5112013-08-08 21:48:24 +08001883 kfree(res->sg);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001884 usb_free_urb(res);
1885 usb_autopm_put_interface_async(dev->intf);
1886 } else {
Florian Westphal860e9532016-05-03 16:33:13 +02001887 netif_trans_update(dev->net);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001888 __skb_queue_tail(&dev->txq, skb);
1889 }
1890 }
1891
1892 smp_mb();
1893 clear_bit(EVENT_DEV_ASLEEP, &dev->flags);
1894 spin_unlock_irq(&dev->txq.lock);
Ming Lei75bd0cb2011-04-28 22:37:09 +00001895
1896 if (test_bit(EVENT_DEV_OPEN, &dev->flags)) {
Oliver Neukum14a0d632014-03-26 14:32:51 +01001897 /* handle remote wakeup ASAP
1898 * we cannot race against stop
1899 */
1900 if (netif_device_present(dev->net) &&
Ming Lei65841fd2012-06-19 21:15:53 +00001901 !timer_pending(&dev->delay) &&
1902 !test_bit(EVENT_RX_HALT, &dev->flags))
Oliver Neukumab6f1482012-08-26 20:41:38 +00001903 rx_alloc_submit(dev, GFP_NOIO);
Ming Lei65841fd2012-06-19 21:15:53 +00001904
Ming Lei75bd0cb2011-04-28 22:37:09 +00001905 if (!(dev->txq.qlen >= TX_QLEN(dev)))
Alexey Orishko1aa9bc52012-03-14 04:00:24 +00001906 netif_tx_wake_all_queues(dev->net);
Ming Lei75bd0cb2011-04-28 22:37:09 +00001907 tasklet_schedule (&dev->bh);
1908 }
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001909 }
Oliver Neukum5d9d01a2012-10-11 02:50:10 +00001910
1911 if (test_and_clear_bit(EVENT_DEVICE_REPORT_IDLE, &dev->flags))
1912 usb_autopm_get_interface_no_resume(intf);
1913
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 return 0;
1915}
David Brownell38bde1d2005-08-31 09:52:45 -07001916EXPORT_SYMBOL_GPL(usbnet_resume);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917
Oliver Neukum5d9d01a2012-10-11 02:50:10 +00001918/*
1919 * Either a subdriver implements manage_power, then it is assumed to always
1920 * be ready to be suspended or it reports the readiness to be suspended
1921 * explicitly
1922 */
1923void usbnet_device_suggests_idle(struct usbnet *dev)
1924{
1925 if (!test_and_set_bit(EVENT_DEVICE_REPORT_IDLE, &dev->flags)) {
1926 dev->intf->needs_remote_wakeup = 1;
1927 usb_autopm_put_interface_async(dev->intf);
1928 }
1929}
1930EXPORT_SYMBOL(usbnet_device_suggests_idle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931
Oliver Neukum2dd7c8c2012-12-18 04:45:52 +00001932/*
1933 * For devices that can do without special commands
1934 */
1935int usbnet_manage_power(struct usbnet *dev, int on)
1936{
1937 dev->intf->needs_remote_wakeup = on;
1938 return 0;
1939}
1940EXPORT_SYMBOL(usbnet_manage_power);
1941
Ming Leiac649952013-04-11 04:40:30 +00001942void usbnet_link_change(struct usbnet *dev, bool link, bool need_reset)
1943{
1944 /* update link after link is reseted */
1945 if (link && !need_reset)
1946 netif_carrier_on(dev->net);
1947 else
1948 netif_carrier_off(dev->net);
1949
1950 if (need_reset && link)
1951 usbnet_defer_kevent(dev, EVENT_LINK_RESET);
Ming Lei4b49f582013-04-11 04:40:40 +00001952 else
1953 usbnet_defer_kevent(dev, EVENT_LINK_CHANGE);
Ming Leiac649952013-04-11 04:40:30 +00001954}
1955EXPORT_SYMBOL(usbnet_link_change);
1956
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957/*-------------------------------------------------------------------------*/
Ming Lei0547fad2012-11-06 04:53:04 +00001958static int __usbnet_read_cmd(struct usbnet *dev, u8 cmd, u8 reqtype,
1959 u16 value, u16 index, void *data, u16 size)
Ming Lei877bd862012-10-24 19:46:54 +00001960{
1961 void *buf = NULL;
1962 int err = -ENOMEM;
1963
1964 netdev_dbg(dev->net, "usbnet_read_cmd cmd=0x%02x reqtype=%02x"
1965 " value=0x%04x index=0x%04x size=%d\n",
1966 cmd, reqtype, value, index, size);
1967
1968 if (data) {
1969 buf = kmalloc(size, GFP_KERNEL);
1970 if (!buf)
1971 goto out;
1972 }
1973
1974 err = usb_control_msg(dev->udev, usb_rcvctrlpipe(dev->udev, 0),
1975 cmd, reqtype, value, index, buf, size,
1976 USB_CTRL_GET_TIMEOUT);
1977 if (err > 0 && err <= size)
1978 memcpy(data, buf, err);
1979 kfree(buf);
1980out:
1981 return err;
1982}
Ming Lei877bd862012-10-24 19:46:54 +00001983
Ming Lei0547fad2012-11-06 04:53:04 +00001984static int __usbnet_write_cmd(struct usbnet *dev, u8 cmd, u8 reqtype,
1985 u16 value, u16 index, const void *data,
1986 u16 size)
Ming Lei877bd862012-10-24 19:46:54 +00001987{
1988 void *buf = NULL;
1989 int err = -ENOMEM;
1990
1991 netdev_dbg(dev->net, "usbnet_write_cmd cmd=0x%02x reqtype=%02x"
1992 " value=0x%04x index=0x%04x size=%d\n",
1993 cmd, reqtype, value, index, size);
1994
1995 if (data) {
1996 buf = kmemdup(data, size, GFP_KERNEL);
1997 if (!buf)
1998 goto out;
1999 }
2000
2001 err = usb_control_msg(dev->udev, usb_sndctrlpipe(dev->udev, 0),
2002 cmd, reqtype, value, index, buf, size,
2003 USB_CTRL_SET_TIMEOUT);
2004 kfree(buf);
2005
2006out:
2007 return err;
2008}
Ming Lei0547fad2012-11-06 04:53:04 +00002009
2010/*
2011 * The function can't be called inside suspend/resume callback,
2012 * otherwise deadlock will be caused.
2013 */
2014int usbnet_read_cmd(struct usbnet *dev, u8 cmd, u8 reqtype,
2015 u16 value, u16 index, void *data, u16 size)
2016{
Ming Lei6f0a0982012-11-06 04:53:08 +00002017 int ret;
2018
2019 if (usb_autopm_get_interface(dev->intf) < 0)
2020 return -ENODEV;
2021 ret = __usbnet_read_cmd(dev, cmd, reqtype, value, index,
2022 data, size);
2023 usb_autopm_put_interface(dev->intf);
2024 return ret;
Ming Lei0547fad2012-11-06 04:53:04 +00002025}
2026EXPORT_SYMBOL_GPL(usbnet_read_cmd);
2027
2028/*
2029 * The function can't be called inside suspend/resume callback,
2030 * otherwise deadlock will be caused.
2031 */
2032int usbnet_write_cmd(struct usbnet *dev, u8 cmd, u8 reqtype,
2033 u16 value, u16 index, const void *data, u16 size)
2034{
Ming Lei6f0a0982012-11-06 04:53:08 +00002035 int ret;
2036
2037 if (usb_autopm_get_interface(dev->intf) < 0)
2038 return -ENODEV;
2039 ret = __usbnet_write_cmd(dev, cmd, reqtype, value, index,
2040 data, size);
2041 usb_autopm_put_interface(dev->intf);
2042 return ret;
Ming Lei0547fad2012-11-06 04:53:04 +00002043}
Ming Lei877bd862012-10-24 19:46:54 +00002044EXPORT_SYMBOL_GPL(usbnet_write_cmd);
2045
Ming Lei0547fad2012-11-06 04:53:04 +00002046/*
2047 * The function can be called inside suspend/resume callback safely
2048 * and should only be called by suspend/resume callback generally.
2049 */
2050int usbnet_read_cmd_nopm(struct usbnet *dev, u8 cmd, u8 reqtype,
2051 u16 value, u16 index, void *data, u16 size)
2052{
2053 return __usbnet_read_cmd(dev, cmd, reqtype, value, index,
2054 data, size);
2055}
2056EXPORT_SYMBOL_GPL(usbnet_read_cmd_nopm);
2057
2058/*
2059 * The function can be called inside suspend/resume callback safely
2060 * and should only be called by suspend/resume callback generally.
2061 */
2062int usbnet_write_cmd_nopm(struct usbnet *dev, u8 cmd, u8 reqtype,
2063 u16 value, u16 index, const void *data,
2064 u16 size)
2065{
2066 return __usbnet_write_cmd(dev, cmd, reqtype, value, index,
2067 data, size);
2068}
2069EXPORT_SYMBOL_GPL(usbnet_write_cmd_nopm);
2070
Ming Lei877bd862012-10-24 19:46:54 +00002071static void usbnet_async_cmd_cb(struct urb *urb)
2072{
2073 struct usb_ctrlrequest *req = (struct usb_ctrlrequest *)urb->context;
2074 int status = urb->status;
2075
2076 if (status < 0)
2077 dev_dbg(&urb->dev->dev, "%s failed with %d",
2078 __func__, status);
2079
2080 kfree(req);
2081 usb_free_urb(urb);
2082}
2083
Ming Lei0547fad2012-11-06 04:53:04 +00002084/*
2085 * The caller must make sure that device can't be put into suspend
2086 * state until the control URB completes.
2087 */
Ming Lei877bd862012-10-24 19:46:54 +00002088int usbnet_write_cmd_async(struct usbnet *dev, u8 cmd, u8 reqtype,
2089 u16 value, u16 index, const void *data, u16 size)
2090{
2091 struct usb_ctrlrequest *req = NULL;
2092 struct urb *urb;
2093 int err = -ENOMEM;
2094 void *buf = NULL;
2095
2096 netdev_dbg(dev->net, "usbnet_write_cmd cmd=0x%02x reqtype=%02x"
2097 " value=0x%04x index=0x%04x size=%d\n",
2098 cmd, reqtype, value, index, size);
2099
2100 urb = usb_alloc_urb(0, GFP_ATOMIC);
Wolfram Sangef6cd132016-08-11 23:05:28 +02002101 if (!urb)
Ming Lei877bd862012-10-24 19:46:54 +00002102 goto fail;
Ming Lei877bd862012-10-24 19:46:54 +00002103
2104 if (data) {
2105 buf = kmemdup(data, size, GFP_ATOMIC);
2106 if (!buf) {
2107 netdev_err(dev->net, "Error allocating buffer"
2108 " in %s!\n", __func__);
2109 goto fail_free;
2110 }
2111 }
2112
2113 req = kmalloc(sizeof(struct usb_ctrlrequest), GFP_ATOMIC);
Joe Perches38673c82013-02-03 17:28:11 +00002114 if (!req)
Ming Lei877bd862012-10-24 19:46:54 +00002115 goto fail_free_buf;
Ming Lei877bd862012-10-24 19:46:54 +00002116
2117 req->bRequestType = reqtype;
2118 req->bRequest = cmd;
2119 req->wValue = cpu_to_le16(value);
2120 req->wIndex = cpu_to_le16(index);
2121 req->wLength = cpu_to_le16(size);
2122
2123 usb_fill_control_urb(urb, dev->udev,
2124 usb_sndctrlpipe(dev->udev, 0),
2125 (void *)req, buf, size,
2126 usbnet_async_cmd_cb, req);
2127 urb->transfer_flags |= URB_FREE_BUFFER;
2128
2129 err = usb_submit_urb(urb, GFP_ATOMIC);
2130 if (err < 0) {
2131 netdev_err(dev->net, "Error submitting the control"
2132 " message: status=%d\n", err);
2133 goto fail_free;
2134 }
2135 return 0;
2136
2137fail_free_buf:
2138 kfree(buf);
2139fail_free:
2140 kfree(req);
2141 usb_free_urb(urb);
2142fail:
2143 return err;
2144
2145}
2146EXPORT_SYMBOL_GPL(usbnet_write_cmd_async);
2147/*-------------------------------------------------------------------------*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148
David Brownellf29fc252005-08-31 09:52:31 -07002149static int __init usbnet_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150{
Thiago Farinac582a952011-04-17 17:49:21 -07002151 /* Compiler should optimize this out. */
2152 BUILD_BUG_ON(
2153 FIELD_SIZEOF(struct sk_buff, cb) < sizeof(struct skb_data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154
Joe Perchesc7e12ea2012-07-12 19:33:07 +00002155 eth_random_addr(node_id);
David Brownellcb1cebb2007-02-15 18:52:30 -08002156 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157}
David Brownellf29fc252005-08-31 09:52:31 -07002158module_init(usbnet_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159
David Brownellf29fc252005-08-31 09:52:31 -07002160static void __exit usbnet_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162}
David Brownellf29fc252005-08-31 09:52:31 -07002163module_exit(usbnet_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164
David Brownellf29fc252005-08-31 09:52:31 -07002165MODULE_AUTHOR("David Brownell");
David Brownell090ffa92005-08-31 09:54:50 -07002166MODULE_DESCRIPTION("USB network driver framework");
David Brownellf29fc252005-08-31 09:52:31 -07002167MODULE_LICENSE("GPL");