blob: 3a6770a65d7836ace177cff2bb45c925b474a84a [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{
163 int tmp, i;
164 unsigned char buf [13];
165
166 tmp = usb_string(dev->udev, iMACAddress, buf, sizeof buf);
167 if (tmp != 12) {
168 dev_dbg(&dev->udev->dev,
169 "bad MAC string %d fetch, %d\n", iMACAddress, tmp);
170 if (tmp >= 0)
171 tmp = -EINVAL;
172 return tmp;
173 }
174 for (i = tmp = 0; i < 6; i++, tmp += 2)
175 dev->net->dev_addr [i] =
Andy Shevchenkofd1f1702010-07-23 03:18:08 +0000176 (hex_to_bin(buf[tmp]) << 4) + hex_to_bin(buf[tmp + 1]);
Peter Holik03ad0322009-04-18 07:24:17 +0000177 return 0;
178}
179EXPORT_SYMBOL_GPL(usbnet_get_ethernet_addr);
180
tom.leiming@gmail.com24ead292012-06-11 15:19:44 +0000181static void intr_complete (struct urb *urb)
182{
183 struct usbnet *dev = urb->context;
184 int status = urb->status;
185
186 switch (status) {
187 /* success */
188 case 0:
189 dev->driver_info->status(dev, urb);
190 break;
191
192 /* software-driven interface shutdown */
193 case -ENOENT: /* urb killed */
194 case -ESHUTDOWN: /* hardware gone */
195 netif_dbg(dev, ifdown, dev->net,
196 "intr shutdown, code %d\n", status);
197 return;
198
199 /* NOTE: not throttling like RX/TX, since this endpoint
200 * already polls infrequently
201 */
202 default:
203 netdev_dbg(dev->net, "intr status %d\n", status);
204 break;
205 }
206
tom.leiming@gmail.com24ead292012-06-11 15:19:44 +0000207 status = usb_submit_urb (urb, GFP_ATOMIC);
208 if (status != 0)
209 netif_err(dev, timer, dev->net,
210 "intr resubmit --> %d\n", status);
211}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
213static int init_status (struct usbnet *dev, struct usb_interface *intf)
214{
215 char *buf = NULL;
216 unsigned pipe = 0;
217 unsigned maxp;
218 unsigned period;
219
220 if (!dev->driver_info->status)
221 return 0;
222
223 pipe = usb_rcvintpipe (dev->udev,
224 dev->status->desc.bEndpointAddress
225 & USB_ENDPOINT_NUMBER_MASK);
226 maxp = usb_maxpacket (dev->udev, pipe, 0);
227
228 /* avoid 1 msec chatter: min 8 msec poll rate */
229 period = max ((int) dev->status->desc.bInterval,
230 (dev->udev->speed == USB_SPEED_HIGH) ? 7 : 3);
231
Christoph Lametere94b1762006-12-06 20:33:17 -0800232 buf = kmalloc (maxp, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 if (buf) {
Christoph Lametere94b1762006-12-06 20:33:17 -0800234 dev->interrupt = usb_alloc_urb (0, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 if (!dev->interrupt) {
236 kfree (buf);
237 return -ENOMEM;
238 } else {
239 usb_fill_int_urb(dev->interrupt, dev->udev, pipe,
240 buf, maxp, intr_complete, dev, period);
tom.leiming@gmail.com720f3d72012-04-29 22:51:02 +0000241 dev->interrupt->transfer_flags |= URB_FREE_BUFFER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 dev_dbg(&intf->dev,
243 "status ep%din, %d bytes period %d\n",
244 usb_pipeendpoint(pipe), maxp, period);
245 }
246 }
David Brownell18ab4582007-05-25 12:31:32 -0700247 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248}
249
Dan Williams6eecdc52013-05-06 11:29:23 +0000250/* Submit the interrupt URB if not previously submitted, increasing refcount */
251int usbnet_status_start(struct usbnet *dev, gfp_t mem_flags)
252{
253 int ret = 0;
254
255 WARN_ON_ONCE(dev->interrupt == NULL);
256 if (dev->interrupt) {
257 mutex_lock(&dev->interrupt_mutex);
258
259 if (++dev->interrupt_count == 1)
260 ret = usb_submit_urb(dev->interrupt, mem_flags);
261
262 dev_dbg(&dev->udev->dev, "incremented interrupt URB count to %d\n",
263 dev->interrupt_count);
264 mutex_unlock(&dev->interrupt_mutex);
265 }
266 return ret;
267}
268EXPORT_SYMBOL_GPL(usbnet_status_start);
269
270/* For resume; submit interrupt URB if previously submitted */
271static int __usbnet_status_start_force(struct usbnet *dev, gfp_t mem_flags)
272{
273 int ret = 0;
274
275 mutex_lock(&dev->interrupt_mutex);
276 if (dev->interrupt_count) {
277 ret = usb_submit_urb(dev->interrupt, mem_flags);
278 dev_dbg(&dev->udev->dev,
279 "submitted interrupt URB for resume\n");
280 }
281 mutex_unlock(&dev->interrupt_mutex);
282 return ret;
283}
284
285/* Kill the interrupt URB if all submitters want it killed */
286void usbnet_status_stop(struct usbnet *dev)
287{
288 if (dev->interrupt) {
289 mutex_lock(&dev->interrupt_mutex);
290 WARN_ON(dev->interrupt_count == 0);
291
292 if (dev->interrupt_count && --dev->interrupt_count == 0)
293 usb_kill_urb(dev->interrupt);
294
295 dev_dbg(&dev->udev->dev,
296 "decremented interrupt URB count to %d\n",
297 dev->interrupt_count);
298 mutex_unlock(&dev->interrupt_mutex);
299 }
300}
301EXPORT_SYMBOL_GPL(usbnet_status_stop);
302
303/* For suspend; always kill interrupt URB */
304static void __usbnet_status_stop_force(struct usbnet *dev)
305{
306 if (dev->interrupt) {
307 mutex_lock(&dev->interrupt_mutex);
308 usb_kill_urb(dev->interrupt);
309 dev_dbg(&dev->udev->dev, "killed interrupt URB for suspend\n");
310 mutex_unlock(&dev->interrupt_mutex);
311 }
312}
313
David Brownell2e55cc72005-08-31 09:53:10 -0700314/* Passes this packet up the stack, updating its accounting.
315 * Some link protocols batch packets, so their rx_fixup paths
316 * can return clones as well as just modify the original skb.
317 */
318void usbnet_skb_return (struct usbnet *dev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319{
320 int status;
321
Jussi Kivilinna7834ddb2009-08-11 22:57:16 +0300322 if (test_bit(EVENT_RX_PAUSED, &dev->flags)) {
323 skb_queue_tail(&dev->rxq_pause, skb);
324 return;
325 }
326
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 skb->protocol = eth_type_trans (skb, dev->net);
Herbert Xu79638372009-06-29 16:53:28 +0000328 dev->net->stats.rx_packets++;
329 dev->net->stats.rx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
Joe Perchesa475f602010-02-17 10:30:24 +0000331 netif_dbg(dev, rx_status, dev->net, "< rx, len %zu, type 0x%x\n",
332 skb->len + sizeof (struct ethhdr), skb->protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 memset (skb->cb, 0, sizeof (struct skb_data));
Michael Rieschf9b491e2011-09-29 04:06:26 +0000334
335 if (skb_defer_rx_timestamp(skb))
336 return;
337
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 status = netif_rx (skb);
Joe Perchesa475f602010-02-17 10:30:24 +0000339 if (status != NET_RX_SUCCESS)
340 netif_dbg(dev, rx_err, dev->net,
341 "netif_rx status %d\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342}
David Brownell2e55cc72005-08-31 09:53:10 -0700343EXPORT_SYMBOL_GPL(usbnet_skb_return);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
Ming Leia88c32a2013-07-25 13:47:53 +0800345/* must be called if hard_mtu or rx_urb_size changed */
346void usbnet_update_max_qlen(struct usbnet *dev)
347{
348 enum usb_device_speed speed = dev->udev->speed;
349
350 switch (speed) {
351 case USB_SPEED_HIGH:
352 dev->rx_qlen = MAX_QUEUE_MEMORY / dev->rx_urb_size;
353 dev->tx_qlen = MAX_QUEUE_MEMORY / dev->hard_mtu;
354 break;
Ming Lei452c4472013-07-25 13:47:54 +0800355 case USB_SPEED_SUPER:
356 /*
357 * Not take default 5ms qlen for super speed HC to
358 * save memory, and iperf tests show 2.5ms qlen can
359 * work well
360 */
361 dev->rx_qlen = 5 * MAX_QUEUE_MEMORY / dev->rx_urb_size;
362 dev->tx_qlen = 5 * MAX_QUEUE_MEMORY / dev->hard_mtu;
363 break;
Ming Leia88c32a2013-07-25 13:47:53 +0800364 default:
365 dev->rx_qlen = dev->tx_qlen = 4;
366 }
367}
368EXPORT_SYMBOL_GPL(usbnet_update_max_qlen);
369
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371/*-------------------------------------------------------------------------
372 *
373 * Network Device Driver (peer link to "Host Device", from USB host)
374 *
375 *-------------------------------------------------------------------------*/
376
Stephen Hemminger777baa42009-03-20 19:35:54 +0000377int usbnet_change_mtu (struct net_device *net, int new_mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378{
379 struct usbnet *dev = netdev_priv(net);
David Brownellf29fc252005-08-31 09:52:31 -0700380 int ll_mtu = new_mtu + net->hard_header_len;
Jamie Paintera99c1942006-07-27 14:17:28 -0400381 int old_hard_mtu = dev->hard_mtu;
382 int old_rx_urb_size = dev->rx_urb_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Jamie Paintera99c1942006-07-27 14:17:28 -0400384 if (new_mtu <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 // no second zero-length packet read wanted after mtu-sized packets
David Brownellf29fc252005-08-31 09:52:31 -0700387 if ((ll_mtu % dev->maxpacket) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 return -EDOM;
389 net->mtu = new_mtu;
Jamie Paintera99c1942006-07-27 14:17:28 -0400390
391 dev->hard_mtu = net->mtu + net->hard_header_len;
392 if (dev->rx_urb_size == old_hard_mtu) {
393 dev->rx_urb_size = dev->hard_mtu;
394 if (dev->rx_urb_size > old_rx_urb_size)
395 usbnet_unlink_rx_urbs(dev);
396 }
397
Ming Leia88c32a2013-07-25 13:47:53 +0800398 /* max qlen depend on hard_mtu and rx_urb_size */
399 usbnet_update_max_qlen(dev);
400
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 return 0;
402}
Stephen Hemminger777baa42009-03-20 19:35:54 +0000403EXPORT_SYMBOL_GPL(usbnet_change_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800405/* The caller must hold list->lock */
406static void __usbnet_queue_skb(struct sk_buff_head *list,
407 struct sk_buff *newsk, enum skb_state state)
408{
409 struct skb_data *entry = (struct skb_data *) newsk->cb;
410
411 __skb_queue_tail(list, newsk);
412 entry->state = state;
413}
414
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415/*-------------------------------------------------------------------------*/
416
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417/* some LK 2.4 HCDs oopsed if we freed or resubmitted urbs from
418 * completion callbacks. 2.5 should have fixed those bugs...
419 */
420
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800421static enum skb_state defer_bh(struct usbnet *dev, struct sk_buff *skb,
422 struct sk_buff_head *list, enum skb_state state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 unsigned long flags;
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800425 enum skb_state old_state;
426 struct skb_data *entry = (struct skb_data *) skb->cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
David S. Miller8728b832005-08-09 19:25:21 -0700428 spin_lock_irqsave(&list->lock, flags);
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800429 old_state = entry->state;
430 entry->state = state;
David S. Miller8728b832005-08-09 19:25:21 -0700431 __skb_unlink(skb, list);
432 spin_unlock(&list->lock);
433 spin_lock(&dev->done.lock);
434 __skb_queue_tail(&dev->done, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 if (dev->done.qlen == 1)
David S. Miller8728b832005-08-09 19:25:21 -0700436 tasklet_schedule(&dev->bh);
437 spin_unlock_irqrestore(&dev->done.lock, flags);
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800438 return old_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439}
440
441/* some work can't be done in tasklets, so we use keventd
442 *
443 * NOTE: annoying asymmetry: if it's active, schedule_work() fails,
444 * but tasklet_schedule() doesn't. hope the failure is rare.
445 */
David Brownell2e55cc72005-08-31 09:53:10 -0700446void usbnet_defer_kevent (struct usbnet *dev, int work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447{
448 set_bit (work, &dev->flags);
Steve Glendinning95320212012-11-08 06:26:21 +0000449 if (!schedule_work (&dev->kevent)) {
450 if (net_ratelimit())
451 netdev_err(dev->net, "kevent %d may have been dropped\n", work);
452 } else {
Joe Perches60b86752010-02-17 10:30:23 +0000453 netdev_dbg(dev->net, "kevent %d scheduled\n", work);
Steve Glendinning95320212012-11-08 06:26:21 +0000454 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455}
David Brownell2e55cc72005-08-31 09:53:10 -0700456EXPORT_SYMBOL_GPL(usbnet_defer_kevent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
458/*-------------------------------------------------------------------------*/
459
David Howells7d12e782006-10-05 14:55:46 +0100460static void rx_complete (struct urb *urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
David S. Millerdacb3972010-08-10 02:50:55 -0700462static int rx_submit (struct usbnet *dev, struct urb *urb, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463{
464 struct sk_buff *skb;
465 struct skb_data *entry;
466 int retval = 0;
467 unsigned long lockflags;
David Brownell2e55cc72005-08-31 09:53:10 -0700468 size_t size = dev->rx_urb_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
Bjørn Mork70c37bf2013-01-28 23:51:28 +0000470 /* prevent rx skb allocation when error ratio is high */
471 if (test_bit(EVENT_RX_KILL, &dev->flags)) {
472 usb_free_urb(urb);
473 return -ENOLINK;
474 }
475
Eric Dumazet7bdd4022012-03-14 06:56:25 +0000476 skb = __netdev_alloc_skb_ip_align(dev->net, size, flags);
477 if (!skb) {
Joe Perchesa475f602010-02-17 10:30:24 +0000478 netif_dbg(dev, rx_err, dev->net, "no rx skb\n");
David Brownell2e55cc72005-08-31 09:53:10 -0700479 usbnet_defer_kevent (dev, EVENT_RX_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 usb_free_urb (urb);
David S. Millerdacb3972010-08-10 02:50:55 -0700481 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
484 entry = (struct skb_data *) skb->cb;
485 entry->urb = urb;
486 entry->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 entry->length = 0;
488
489 usb_fill_bulk_urb (urb, dev->udev, dev->in,
490 skb->data, size, rx_complete, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
492 spin_lock_irqsave (&dev->rxq.lock, lockflags);
493
Joe Perches8e95a202009-12-03 07:58:21 +0000494 if (netif_running (dev->net) &&
495 netif_device_present (dev->net) &&
Oliver Neukum69ee472f2009-12-03 15:31:18 -0800496 !test_bit (EVENT_RX_HALT, &dev->flags) &&
497 !test_bit (EVENT_DEV_ASLEEP, &dev->flags)) {
David Brownell18ab4582007-05-25 12:31:32 -0700498 switch (retval = usb_submit_urb (urb, GFP_ATOMIC)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 case -EPIPE:
David Brownell2e55cc72005-08-31 09:53:10 -0700500 usbnet_defer_kevent (dev, EVENT_RX_HALT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 break;
502 case -ENOMEM:
David Brownell2e55cc72005-08-31 09:53:10 -0700503 usbnet_defer_kevent (dev, EVENT_RX_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 break;
505 case -ENODEV:
Joe Perchesa475f602010-02-17 10:30:24 +0000506 netif_dbg(dev, ifdown, dev->net, "device gone\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 netif_device_detach (dev->net);
508 break;
David S. Millerdacb3972010-08-10 02:50:55 -0700509 case -EHOSTUNREACH:
510 retval = -ENOLINK;
511 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 default:
Joe Perchesa475f602010-02-17 10:30:24 +0000513 netif_dbg(dev, rx_err, dev->net,
514 "rx submit, %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 tasklet_schedule (&dev->bh);
516 break;
517 case 0:
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800518 __usbnet_queue_skb(&dev->rxq, skb, rx_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 }
520 } else {
Joe Perchesa475f602010-02-17 10:30:24 +0000521 netif_dbg(dev, ifdown, dev->net, "rx: stopped\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 retval = -ENOLINK;
523 }
524 spin_unlock_irqrestore (&dev->rxq.lock, lockflags);
525 if (retval) {
526 dev_kfree_skb_any (skb);
527 usb_free_urb (urb);
528 }
David S. Millerdacb3972010-08-10 02:50:55 -0700529 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530}
531
532
533/*-------------------------------------------------------------------------*/
534
535static inline void rx_process (struct usbnet *dev, struct sk_buff *skb)
536{
Joe Perches8e95a202009-12-03 07:58:21 +0000537 if (dev->driver_info->rx_fixup &&
Andrzej Zaborowski7a635ea2011-03-28 12:56:33 +0000538 !dev->driver_info->rx_fixup (dev, skb)) {
539 /* With RX_ASSEMBLE, rx_fixup() must update counters */
540 if (!(dev->driver_info->flags & FLAG_RX_ASSEMBLE))
541 dev->net->stats.rx_errors++;
542 goto done;
543 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 // else network stack removes extra byte if we forced a short packet
545
Emil Goodeeb855692014-02-13 17:50:19 +0100546 /* all data was already cloned from skb inside the driver */
547 if (dev->driver_info->flags & FLAG_MULTI_PACKET)
548 goto done;
549
550 if (skb->len < ETH_HLEN) {
551 dev->net->stats.rx_errors++;
552 dev->net->stats.rx_length_errors++;
553 netif_dbg(dev, rx_err, dev->net, "rx length %d\n", skb->len);
554 } else {
555 usbnet_skb_return(dev, skb);
Alexey Orishko073285f2010-11-29 23:23:27 +0000556 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 }
Alexey Orishko073285f2010-11-29 23:23:27 +0000558
Andrzej Zaborowski7a635ea2011-03-28 12:56:33 +0000559done:
Alexey Orishko073285f2010-11-29 23:23:27 +0000560 skb_queue_tail(&dev->done, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561}
562
563/*-------------------------------------------------------------------------*/
564
David Howells7d12e782006-10-05 14:55:46 +0100565static void rx_complete (struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566{
567 struct sk_buff *skb = (struct sk_buff *) urb->context;
568 struct skb_data *entry = (struct skb_data *) skb->cb;
569 struct usbnet *dev = entry->dev;
570 int urb_status = urb->status;
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800571 enum skb_state state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
573 skb_put (skb, urb->actual_length);
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800574 state = rx_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 entry->urb = NULL;
576
577 switch (urb_status) {
David Brownell18ab4582007-05-25 12:31:32 -0700578 /* success */
579 case 0:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 break;
581
David Brownell18ab4582007-05-25 12:31:32 -0700582 /* stalls need manual reset. this is rare ... except that
583 * when going through USB 2.0 TTs, unplug appears this way.
Jean Delvare3ac49a12009-06-04 16:20:28 +0200584 * we avoid the highspeed version of the ETIMEDOUT/EILSEQ
David Brownell18ab4582007-05-25 12:31:32 -0700585 * storm, recovering as needed.
586 */
587 case -EPIPE:
Herbert Xu79638372009-06-29 16:53:28 +0000588 dev->net->stats.rx_errors++;
David Brownell2e55cc72005-08-31 09:53:10 -0700589 usbnet_defer_kevent (dev, EVENT_RX_HALT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 // FALLTHROUGH
591
David Brownell18ab4582007-05-25 12:31:32 -0700592 /* software-driven interface shutdown */
593 case -ECONNRESET: /* async unlink */
594 case -ESHUTDOWN: /* hardware gone */
Joe Perchesa475f602010-02-17 10:30:24 +0000595 netif_dbg(dev, ifdown, dev->net,
596 "rx shutdown, code %d\n", urb_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 goto block;
598
Petr Mladek37ebb542014-09-19 17:32:23 +0200599 /* we get controller i/o faults during hub_wq disconnect() delays.
David Brownell18ab4582007-05-25 12:31:32 -0700600 * throttle down resubmits, to avoid log floods; just temporarily,
Petr Mladek37ebb542014-09-19 17:32:23 +0200601 * so we still recover when the fault isn't a hub_wq delay.
David Brownell18ab4582007-05-25 12:31:32 -0700602 */
603 case -EPROTO:
604 case -ETIME:
605 case -EILSEQ:
Herbert Xu79638372009-06-29 16:53:28 +0000606 dev->net->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 if (!timer_pending (&dev->delay)) {
608 mod_timer (&dev->delay, jiffies + THROTTLE_JIFFIES);
Joe Perchesa475f602010-02-17 10:30:24 +0000609 netif_dbg(dev, link, dev->net,
610 "rx throttle %d\n", urb_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 }
612block:
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800613 state = rx_cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 entry->urb = urb;
615 urb = NULL;
616 break;
617
David Brownell18ab4582007-05-25 12:31:32 -0700618 /* data overrun ... flush fifo? */
619 case -EOVERFLOW:
Herbert Xu79638372009-06-29 16:53:28 +0000620 dev->net->stats.rx_over_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 // FALLTHROUGH
David Brownellcb1cebb2007-02-15 18:52:30 -0800622
David Brownell18ab4582007-05-25 12:31:32 -0700623 default:
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800624 state = rx_cleanup;
Herbert Xu79638372009-06-29 16:53:28 +0000625 dev->net->stats.rx_errors++;
Joe Perchesa475f602010-02-17 10:30:24 +0000626 netif_dbg(dev, rx_err, dev->net, "rx status %d\n", urb_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 break;
628 }
629
Bjørn Mork70c37bf2013-01-28 23:51:28 +0000630 /* stop rx if packet error rate is high */
631 if (++dev->pkt_cnt > 30) {
632 dev->pkt_cnt = 0;
633 dev->pkt_err = 0;
634 } else {
635 if (state == rx_cleanup)
636 dev->pkt_err++;
637 if (dev->pkt_err > 20)
638 set_bit(EVENT_RX_KILL, &dev->flags);
639 }
640
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800641 state = defer_bh(dev, skb, &dev->rxq, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
643 if (urb) {
Joe Perches8e95a202009-12-03 07:58:21 +0000644 if (netif_running (dev->net) &&
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800645 !test_bit (EVENT_RX_HALT, &dev->flags) &&
646 state != unlink_start) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 rx_submit (dev, urb, GFP_ATOMIC);
Oliver Neukum8a783352012-03-03 18:45:07 +0100648 usb_mark_last_busy(dev->udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 return;
650 }
651 usb_free_urb (urb);
652 }
Joe Perchesa475f602010-02-17 10:30:24 +0000653 netif_dbg(dev, rx_err, dev->net, "no read resubmitted\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654}
655
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656/*-------------------------------------------------------------------------*/
Jussi Kivilinna7834ddb2009-08-11 22:57:16 +0300657void usbnet_pause_rx(struct usbnet *dev)
658{
659 set_bit(EVENT_RX_PAUSED, &dev->flags);
660
Joe Perchesa475f602010-02-17 10:30:24 +0000661 netif_dbg(dev, rx_status, dev->net, "paused rx queue enabled\n");
Jussi Kivilinna7834ddb2009-08-11 22:57:16 +0300662}
663EXPORT_SYMBOL_GPL(usbnet_pause_rx);
664
665void usbnet_resume_rx(struct usbnet *dev)
666{
667 struct sk_buff *skb;
668 int num = 0;
669
670 clear_bit(EVENT_RX_PAUSED, &dev->flags);
671
672 while ((skb = skb_dequeue(&dev->rxq_pause)) != NULL) {
673 usbnet_skb_return(dev, skb);
674 num++;
675 }
676
677 tasklet_schedule(&dev->bh);
678
Joe Perchesa475f602010-02-17 10:30:24 +0000679 netif_dbg(dev, rx_status, dev->net,
680 "paused rx queue disabled, %d skbs requeued\n", num);
Jussi Kivilinna7834ddb2009-08-11 22:57:16 +0300681}
682EXPORT_SYMBOL_GPL(usbnet_resume_rx);
683
684void usbnet_purge_paused_rxq(struct usbnet *dev)
685{
686 skb_queue_purge(&dev->rxq_pause);
687}
688EXPORT_SYMBOL_GPL(usbnet_purge_paused_rxq);
689
690/*-------------------------------------------------------------------------*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
692// unlink pending rx/tx; completion handlers do all other cleanup
693
694static int unlink_urbs (struct usbnet *dev, struct sk_buff_head *q)
695{
696 unsigned long flags;
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800697 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 int count = 0;
699
700 spin_lock_irqsave (&q->lock, flags);
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800701 while (!skb_queue_empty(q)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 struct skb_data *entry;
703 struct urb *urb;
704 int retval;
705
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800706 skb_queue_walk(q, skb) {
707 entry = (struct skb_data *) skb->cb;
708 if (entry->state != unlink_start)
709 goto found;
710 }
711 break;
712found:
713 entry->state = unlink_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 urb = entry->urb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
tom.leiming@gmail.com0956a8c2012-03-22 03:22:18 +0000716 /*
717 * Get reference count of the URB to avoid it to be
718 * freed during usb_unlink_urb, which may trigger
719 * use-after-free problem inside usb_unlink_urb since
720 * usb_unlink_urb is always racing with .complete
721 * handler(include defer_bh).
722 */
723 usb_get_urb(urb);
Sebastian Siewior4231d472012-03-07 10:19:28 +0000724 spin_unlock_irqrestore(&q->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 // during some PM-driven resume scenarios,
726 // these (async) unlinks complete immediately
727 retval = usb_unlink_urb (urb);
728 if (retval != -EINPROGRESS && retval != 0)
Joe Perches60b86752010-02-17 10:30:23 +0000729 netdev_dbg(dev->net, "unlink urb err, %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 else
731 count++;
tom.leiming@gmail.com0956a8c2012-03-22 03:22:18 +0000732 usb_put_urb(urb);
Sebastian Siewior4231d472012-03-07 10:19:28 +0000733 spin_lock_irqsave(&q->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 }
735 spin_unlock_irqrestore (&q->lock, flags);
736 return count;
737}
738
Jamie Paintera99c1942006-07-27 14:17:28 -0400739// Flush all pending rx urbs
740// minidrivers may need to do this when the MTU changes
741
742void usbnet_unlink_rx_urbs(struct usbnet *dev)
743{
744 if (netif_running(dev->net)) {
745 (void) unlink_urbs (dev, &dev->rxq);
746 tasklet_schedule(&dev->bh);
747 }
748}
749EXPORT_SYMBOL_GPL(usbnet_unlink_rx_urbs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
751/*-------------------------------------------------------------------------*/
752
753// precondition: never called in_interrupt
Oliver Neukum69ee472f2009-12-03 15:31:18 -0800754static void usbnet_terminate_urbs(struct usbnet *dev)
755{
Oliver Neukum69ee472f2009-12-03 15:31:18 -0800756 DECLARE_WAITQUEUE(wait, current);
757 int temp;
758
759 /* ensure there are no more active urbs */
Oliver Neukum14a0d632014-03-26 14:32:51 +0100760 add_wait_queue(&dev->wait, &wait);
Oliver Neukum69ee472f2009-12-03 15:31:18 -0800761 set_current_state(TASK_UNINTERRUPTIBLE);
Oliver Neukum69ee472f2009-12-03 15:31:18 -0800762 temp = unlink_urbs(dev, &dev->txq) +
763 unlink_urbs(dev, &dev->rxq);
764
765 /* maybe wait for deletions to finish. */
766 while (!skb_queue_empty(&dev->rxq)
767 && !skb_queue_empty(&dev->txq)
768 && !skb_queue_empty(&dev->done)) {
Kulikov Vasiliy66cc42a42010-07-25 22:25:42 +0000769 schedule_timeout(msecs_to_jiffies(UNLINK_TIMEOUT_MS));
Oliver Neukum69ee472f2009-12-03 15:31:18 -0800770 set_current_state(TASK_UNINTERRUPTIBLE);
Joe Perchesa475f602010-02-17 10:30:24 +0000771 netif_dbg(dev, ifdown, dev->net,
772 "waited for %d urb completions\n", temp);
Oliver Neukum69ee472f2009-12-03 15:31:18 -0800773 }
774 set_current_state(TASK_RUNNING);
Oliver Neukum14a0d632014-03-26 14:32:51 +0100775 remove_wait_queue(&dev->wait, &wait);
Oliver Neukum69ee472f2009-12-03 15:31:18 -0800776}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
Stephen Hemminger777baa42009-03-20 19:35:54 +0000778int usbnet_stop (struct net_device *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779{
780 struct usbnet *dev = netdev_priv(net);
Jussi Kivilinnaa33e9e72009-06-16 17:17:27 +0300781 struct driver_info *info = dev->driver_info;
Oliver Neukum14a0d632014-03-26 14:32:51 +0100782 int retval, pm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
Ming Lei75bd0cb2011-04-28 22:37:09 +0000784 clear_bit(EVENT_DEV_OPEN, &dev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 netif_stop_queue (net);
786
Joe Perchesa475f602010-02-17 10:30:24 +0000787 netif_info(dev, ifdown, dev->net,
Ben Hutchings8ccef432010-06-08 08:20:59 +0000788 "stop stats: rx/tx %lu/%lu, errs %lu/%lu\n",
Joe Perchesa475f602010-02-17 10:30:24 +0000789 net->stats.rx_packets, net->stats.tx_packets,
790 net->stats.rx_errors, net->stats.tx_errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
Oliver Neukum14a0d632014-03-26 14:32:51 +0100792 /* to not race resume */
793 pm = usb_autopm_get_interface(dev->intf);
Jussi Kivilinnaa33e9e72009-06-16 17:17:27 +0300794 /* allow minidriver to stop correctly (wireless devices to turn off
795 * radio etc) */
796 if (info->stop) {
797 retval = info->stop(dev);
Joe Perchesa475f602010-02-17 10:30:24 +0000798 if (retval < 0)
799 netif_info(dev, ifdown, dev->net,
800 "stop fail (%d) usbnet usb-%s-%s, %s\n",
801 retval,
802 dev->udev->bus->bus_name, dev->udev->devpath,
803 info->description);
Jussi Kivilinnaa33e9e72009-06-16 17:17:27 +0300804 }
805
Oliver Neukum69ee472f2009-12-03 15:31:18 -0800806 if (!(info->flags & FLAG_AVOID_UNLINK_URBS))
807 usbnet_terminate_urbs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
Dan Williams6eecdc52013-05-06 11:29:23 +0000809 usbnet_status_stop(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
Jussi Kivilinna7834ddb2009-08-11 22:57:16 +0300811 usbnet_purge_paused_rxq(dev);
812
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 /* deferred work (task, timer, softirq) must also stop.
814 * can't flush_scheduled_work() until we drop rtnl (later),
815 * else workers could deadlock; so make workers a NOP.
816 */
817 dev->flags = 0;
818 del_timer_sync (&dev->delay);
819 tasklet_kill (&dev->bh);
Oliver Neukum14a0d632014-03-26 14:32:51 +0100820 if (!pm)
821 usb_autopm_put_interface(dev->intf);
822
Oliver Neukuma1c088e2012-12-18 04:45:29 +0000823 if (info->manage_power &&
824 !test_and_clear_bit(EVENT_NO_RUNTIME_PM, &dev->flags))
Oliver Neukum69ee472f2009-12-03 15:31:18 -0800825 info->manage_power(dev, 0);
826 else
827 usb_autopm_put_interface(dev->intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
829 return 0;
830}
Stephen Hemminger777baa42009-03-20 19:35:54 +0000831EXPORT_SYMBOL_GPL(usbnet_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
833/*-------------------------------------------------------------------------*/
834
835// posts reads, and enables write queuing
836
837// precondition: never called in_interrupt
838
Stephen Hemminger777baa42009-03-20 19:35:54 +0000839int usbnet_open (struct net_device *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840{
841 struct usbnet *dev = netdev_priv(net);
Oliver Neukuma11a6542007-08-03 13:52:19 +0200842 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 struct driver_info *info = dev->driver_info;
844
Oliver Neukuma11a6542007-08-03 13:52:19 +0200845 if ((retval = usb_autopm_get_interface(dev->intf)) < 0) {
Joe Perchesa475f602010-02-17 10:30:24 +0000846 netif_info(dev, ifup, dev->net,
847 "resumption fail (%d) usbnet usb-%s-%s, %s\n",
848 retval,
849 dev->udev->bus->bus_name,
850 dev->udev->devpath,
851 info->description);
Oliver Neukuma11a6542007-08-03 13:52:19 +0200852 goto done_nopm;
853 }
854
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 // put into "known safe" state
856 if (info->reset && (retval = info->reset (dev)) < 0) {
Joe Perchesa475f602010-02-17 10:30:24 +0000857 netif_info(dev, ifup, dev->net,
858 "open reset fail (%d) usbnet usb-%s-%s, %s\n",
859 retval,
860 dev->udev->bus->bus_name,
861 dev->udev->devpath,
862 info->description);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 goto done;
864 }
865
Ming Leia88c32a2013-07-25 13:47:53 +0800866 /* hard_mtu or rx_urb_size may change in reset() */
867 usbnet_update_max_qlen(dev);
868
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 // insist peer be connected
870 if (info->check_connect && (retval = info->check_connect (dev)) < 0) {
Joe Perchesa475f602010-02-17 10:30:24 +0000871 netif_dbg(dev, ifup, dev->net, "can't open; %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 goto done;
873 }
874
875 /* start any status interrupt transfer */
876 if (dev->interrupt) {
Dan Williams6eecdc52013-05-06 11:29:23 +0000877 retval = usbnet_status_start(dev, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 if (retval < 0) {
Joe Perchesa475f602010-02-17 10:30:24 +0000879 netif_err(dev, ifup, dev->net,
880 "intr submit %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 goto done;
882 }
883 }
884
Paul Stewart68972ef2011-04-28 05:43:37 +0000885 set_bit(EVENT_DEV_OPEN, &dev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 netif_start_queue (net);
Joe Perchesa475f602010-02-17 10:30:24 +0000887 netif_info(dev, ifup, dev->net,
888 "open: enable queueing (rx %d, tx %d) mtu %d %s framing\n",
889 (int)RX_QLEN(dev), (int)TX_QLEN(dev),
890 dev->net->mtu,
891 (dev->driver_info->flags & FLAG_FRAMING_NC) ? "NetChip" :
892 (dev->driver_info->flags & FLAG_FRAMING_GL) ? "GeneSys" :
893 (dev->driver_info->flags & FLAG_FRAMING_Z) ? "Zaurus" :
894 (dev->driver_info->flags & FLAG_FRAMING_RN) ? "RNDIS" :
895 (dev->driver_info->flags & FLAG_FRAMING_AX) ? "ASIX" :
896 "simple");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897
Bjørn Mork70c37bf2013-01-28 23:51:28 +0000898 /* reset rx error state */
899 dev->pkt_cnt = 0;
900 dev->pkt_err = 0;
901 clear_bit(EVENT_RX_KILL, &dev->flags);
902
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 // delay posting reads until we're fully open
904 tasklet_schedule (&dev->bh);
Oliver Neukum69ee472f2009-12-03 15:31:18 -0800905 if (info->manage_power) {
906 retval = info->manage_power(dev, 1);
Oliver Neukuma1c088e2012-12-18 04:45:29 +0000907 if (retval < 0) {
908 retval = 0;
909 set_bit(EVENT_NO_RUNTIME_PM, &dev->flags);
910 } else {
911 usb_autopm_put_interface(dev->intf);
912 }
Oliver Neukum69ee472f2009-12-03 15:31:18 -0800913 }
Oliver Neukuma11a6542007-08-03 13:52:19 +0200914 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915done:
Oliver Neukuma11a6542007-08-03 13:52:19 +0200916 usb_autopm_put_interface(dev->intf);
917done_nopm:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 return retval;
919}
Stephen Hemminger777baa42009-03-20 19:35:54 +0000920EXPORT_SYMBOL_GPL(usbnet_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
922/*-------------------------------------------------------------------------*/
923
David Brownell2e55cc72005-08-31 09:53:10 -0700924/* ethtool methods; minidrivers may need to add some more, but
925 * they'll probably want to use this base set.
926 */
927
Arnd Bergmannc41286f2006-10-09 00:08:01 +0200928int usbnet_get_settings (struct net_device *net, struct ethtool_cmd *cmd)
929{
930 struct usbnet *dev = netdev_priv(net);
931
932 if (!dev->mii.mdio_read)
933 return -EOPNOTSUPP;
934
935 return mii_ethtool_gset(&dev->mii, cmd);
936}
937EXPORT_SYMBOL_GPL(usbnet_get_settings);
938
939int usbnet_set_settings (struct net_device *net, struct ethtool_cmd *cmd)
940{
941 struct usbnet *dev = netdev_priv(net);
942 int retval;
943
944 if (!dev->mii.mdio_write)
945 return -EOPNOTSUPP;
946
947 retval = mii_ethtool_sset(&dev->mii, cmd);
948
949 /* link speed/duplex might have changed */
950 if (dev->driver_info->link_reset)
951 dev->driver_info->link_reset(dev);
952
Ming Leia88c32a2013-07-25 13:47:53 +0800953 /* hard_mtu or rx_urb_size may change in link_reset() */
954 usbnet_update_max_qlen(dev);
955
Arnd Bergmannc41286f2006-10-09 00:08:01 +0200956 return retval;
957
958}
959EXPORT_SYMBOL_GPL(usbnet_set_settings);
960
Arnd Bergmannc41286f2006-10-09 00:08:01 +0200961u32 usbnet_get_link (struct net_device *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962{
963 struct usbnet *dev = netdev_priv(net);
964
David Brownellf29fc252005-08-31 09:52:31 -0700965 /* If a check_connect is defined, return its result */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 if (dev->driver_info->check_connect)
967 return dev->driver_info->check_connect (dev) == 0;
968
Arnd Bergmannc41286f2006-10-09 00:08:01 +0200969 /* if the device has mii operations, use those */
970 if (dev->mii.mdio_read)
971 return mii_link_ok(&dev->mii);
972
Bjørn Mork05ffb3e2009-03-01 20:45:40 -0800973 /* Otherwise, dtrt for drivers calling netif_carrier_{on,off} */
974 return ethtool_op_get_link(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975}
Arnd Bergmannc41286f2006-10-09 00:08:01 +0200976EXPORT_SYMBOL_GPL(usbnet_get_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
David Brownell18ee91fa2006-11-02 12:29:12 -0800978int usbnet_nway_reset(struct net_device *net)
979{
980 struct usbnet *dev = netdev_priv(net);
981
982 if (!dev->mii.mdio_write)
983 return -EOPNOTSUPP;
984
985 return mii_nway_restart(&dev->mii);
986}
987EXPORT_SYMBOL_GPL(usbnet_nway_reset);
988
David Brownell18ee91fa2006-11-02 12:29:12 -0800989void usbnet_get_drvinfo (struct net_device *net, struct ethtool_drvinfo *info)
990{
991 struct usbnet *dev = netdev_priv(net);
992
Phil Sutter86a2f412012-06-14 01:18:42 +0000993 strlcpy (info->driver, dev->driver_name, sizeof info->driver);
994 strlcpy (info->version, DRIVER_VERSION, sizeof info->version);
995 strlcpy (info->fw_version, dev->driver_info->description,
David Brownell18ee91fa2006-11-02 12:29:12 -0800996 sizeof info->fw_version);
997 usb_make_path (dev->udev, info->bus_info, sizeof info->bus_info);
998}
999EXPORT_SYMBOL_GPL(usbnet_get_drvinfo);
1000
David Brownell2e55cc72005-08-31 09:53:10 -07001001u32 usbnet_get_msglevel (struct net_device *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002{
1003 struct usbnet *dev = netdev_priv(net);
1004
1005 return dev->msg_enable;
1006}
David Brownell2e55cc72005-08-31 09:53:10 -07001007EXPORT_SYMBOL_GPL(usbnet_get_msglevel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008
David Brownell2e55cc72005-08-31 09:53:10 -07001009void usbnet_set_msglevel (struct net_device *net, u32 level)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010{
1011 struct usbnet *dev = netdev_priv(net);
1012
1013 dev->msg_enable = level;
1014}
David Brownell2e55cc72005-08-31 09:53:10 -07001015EXPORT_SYMBOL_GPL(usbnet_set_msglevel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
David Brownell2e55cc72005-08-31 09:53:10 -07001017/* drivers may override default ethtool_ops in their bind() routine */
Stephen Hemminger0fc0b732009-09-02 01:03:33 -07001018static const struct ethtool_ops usbnet_ethtool_ops = {
Arnd Bergmannc41286f2006-10-09 00:08:01 +02001019 .get_settings = usbnet_get_settings,
1020 .set_settings = usbnet_set_settings,
David Brownell2e55cc72005-08-31 09:53:10 -07001021 .get_link = usbnet_get_link,
Arnd Bergmannc41286f2006-10-09 00:08:01 +02001022 .nway_reset = usbnet_nway_reset,
David Brownell18ee91fa2006-11-02 12:29:12 -08001023 .get_drvinfo = usbnet_get_drvinfo,
David Brownell2e55cc72005-08-31 09:53:10 -07001024 .get_msglevel = usbnet_get_msglevel,
1025 .set_msglevel = usbnet_set_msglevel,
Richard Cochran123edb12012-04-03 22:59:41 +00001026 .get_ts_info = ethtool_op_get_ts_info,
David Brownell2e55cc72005-08-31 09:53:10 -07001027};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
1029/*-------------------------------------------------------------------------*/
1030
Ming Lei4b49f582013-04-11 04:40:40 +00001031static void __handle_link_change(struct usbnet *dev)
1032{
1033 if (!test_bit(EVENT_DEV_OPEN, &dev->flags))
1034 return;
1035
1036 if (!netif_carrier_ok(dev->net)) {
1037 /* kill URBs for reading packets to save bus bandwidth */
1038 unlink_urbs(dev, &dev->rxq);
1039
1040 /*
1041 * tx_timeout will unlink URBs for sending packets and
1042 * tx queue is stopped by netcore after link becomes off
1043 */
1044 } else {
1045 /* submitting URBs for reading packets */
1046 tasklet_schedule(&dev->bh);
1047 }
1048
Ming Leia88c32a2013-07-25 13:47:53 +08001049 /* hard_mtu or rx_urb_size may change during link change */
1050 usbnet_update_max_qlen(dev);
1051
Ming Lei4b49f582013-04-11 04:40:40 +00001052 clear_bit(EVENT_LINK_CHANGE, &dev->flags);
1053}
1054
Olivier Blin1efed2d2014-10-24 19:43:00 +02001055static void usbnet_set_rx_mode(struct net_device *net)
1056{
1057 struct usbnet *dev = netdev_priv(net);
1058
1059 usbnet_defer_kevent(dev, EVENT_SET_RX_MODE);
1060}
1061
1062static void __handle_set_rx_mode(struct usbnet *dev)
1063{
1064 if (dev->driver_info->set_rx_mode)
1065 (dev->driver_info->set_rx_mode)(dev);
1066
1067 clear_bit(EVENT_SET_RX_MODE, &dev->flags);
1068}
1069
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070/* work that cannot be done in interrupt context uses keventd.
1071 *
1072 * NOTE: with 2.5 we could do more of this using completion callbacks,
1073 * especially now that control transfers can be queued.
1074 */
1075static void
David Howellsc4028952006-11-22 14:57:56 +00001076kevent (struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077{
David Howellsc4028952006-11-22 14:57:56 +00001078 struct usbnet *dev =
1079 container_of(work, struct usbnet, kevent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 int status;
1081
1082 /* usb_clear_halt() needs a thread context */
1083 if (test_bit (EVENT_TX_HALT, &dev->flags)) {
1084 unlink_urbs (dev, &dev->txq);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001085 status = usb_autopm_get_interface(dev->intf);
1086 if (status < 0)
1087 goto fail_pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 status = usb_clear_halt (dev->udev, dev->out);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001089 usb_autopm_put_interface(dev->intf);
Joe Perches8e95a202009-12-03 07:58:21 +00001090 if (status < 0 &&
1091 status != -EPIPE &&
1092 status != -ESHUTDOWN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 if (netif_msg_tx_err (dev))
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001094fail_pipe:
Joe Perches60b86752010-02-17 10:30:23 +00001095 netdev_err(dev->net, "can't clear tx halt, status %d\n",
1096 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 } else {
1098 clear_bit (EVENT_TX_HALT, &dev->flags);
David Brownellf29fc252005-08-31 09:52:31 -07001099 if (status != -ESHUTDOWN)
1100 netif_wake_queue (dev->net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 }
1102 }
1103 if (test_bit (EVENT_RX_HALT, &dev->flags)) {
1104 unlink_urbs (dev, &dev->rxq);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001105 status = usb_autopm_get_interface(dev->intf);
1106 if (status < 0)
1107 goto fail_halt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 status = usb_clear_halt (dev->udev, dev->in);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001109 usb_autopm_put_interface(dev->intf);
Joe Perches8e95a202009-12-03 07:58:21 +00001110 if (status < 0 &&
1111 status != -EPIPE &&
1112 status != -ESHUTDOWN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 if (netif_msg_rx_err (dev))
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001114fail_halt:
Joe Perches60b86752010-02-17 10:30:23 +00001115 netdev_err(dev->net, "can't clear rx halt, status %d\n",
1116 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 } else {
1118 clear_bit (EVENT_RX_HALT, &dev->flags);
1119 tasklet_schedule (&dev->bh);
1120 }
1121 }
1122
1123 /* tasklet could resubmit itself forever if memory is tight */
1124 if (test_bit (EVENT_RX_MEMORY, &dev->flags)) {
1125 struct urb *urb = NULL;
David S. Millerdacb3972010-08-10 02:50:55 -07001126 int resched = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
1128 if (netif_running (dev->net))
1129 urb = usb_alloc_urb (0, GFP_KERNEL);
1130 else
1131 clear_bit (EVENT_RX_MEMORY, &dev->flags);
1132 if (urb != NULL) {
1133 clear_bit (EVENT_RX_MEMORY, &dev->flags);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001134 status = usb_autopm_get_interface(dev->intf);
Jesper Juhlab607072011-02-10 10:58:45 +00001135 if (status < 0) {
1136 usb_free_urb(urb);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001137 goto fail_lowmem;
Jesper Juhlab607072011-02-10 10:58:45 +00001138 }
David S. Millerdacb3972010-08-10 02:50:55 -07001139 if (rx_submit (dev, urb, GFP_KERNEL) == -ENOLINK)
1140 resched = 0;
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001141 usb_autopm_put_interface(dev->intf);
1142fail_lowmem:
David S. Millerdacb3972010-08-10 02:50:55 -07001143 if (resched)
1144 tasklet_schedule (&dev->bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 }
1146 }
1147
David Hollis7ea13c92005-04-22 15:07:02 -07001148 if (test_bit (EVENT_LINK_RESET, &dev->flags)) {
David Brownellcb1cebb2007-02-15 18:52:30 -08001149 struct driver_info *info = dev->driver_info;
David Hollis7ea13c92005-04-22 15:07:02 -07001150 int retval = 0;
1151
1152 clear_bit (EVENT_LINK_RESET, &dev->flags);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001153 status = usb_autopm_get_interface(dev->intf);
1154 if (status < 0)
1155 goto skip_reset;
David Hollis7ea13c92005-04-22 15:07:02 -07001156 if(info->link_reset && (retval = info->link_reset(dev)) < 0) {
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001157 usb_autopm_put_interface(dev->intf);
1158skip_reset:
Joe Perches60b86752010-02-17 10:30:23 +00001159 netdev_info(dev->net, "link reset failed (%d) usbnet usb-%s-%s, %s\n",
1160 retval,
1161 dev->udev->bus->bus_name,
1162 dev->udev->devpath,
1163 info->description);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001164 } else {
1165 usb_autopm_put_interface(dev->intf);
David Hollis7ea13c92005-04-22 15:07:02 -07001166 }
Ming Lei4b49f582013-04-11 04:40:40 +00001167
1168 /* handle link change from link resetting */
1169 __handle_link_change(dev);
David Hollis7ea13c92005-04-22 15:07:02 -07001170 }
1171
Ming Lei4b49f582013-04-11 04:40:40 +00001172 if (test_bit (EVENT_LINK_CHANGE, &dev->flags))
1173 __handle_link_change(dev);
1174
Olivier Blin1efed2d2014-10-24 19:43:00 +02001175 if (test_bit (EVENT_SET_RX_MODE, &dev->flags))
1176 __handle_set_rx_mode(dev);
1177
1178
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 if (dev->flags)
Joe Perches60b86752010-02-17 10:30:23 +00001180 netdev_dbg(dev->net, "kevent done, flags = 0x%lx\n", dev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181}
1182
1183/*-------------------------------------------------------------------------*/
1184
David Howells7d12e782006-10-05 14:55:46 +01001185static void tx_complete (struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186{
1187 struct sk_buff *skb = (struct sk_buff *) urb->context;
1188 struct skb_data *entry = (struct skb_data *) skb->cb;
1189 struct usbnet *dev = entry->dev;
1190
1191 if (urb->status == 0) {
Alexey Orishko073285f2010-11-29 23:23:27 +00001192 if (!(dev->driver_info->flags & FLAG_MULTI_PACKET))
1193 dev->net->stats.tx_packets++;
Herbert Xu79638372009-06-29 16:53:28 +00001194 dev->net->stats.tx_bytes += entry->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 } else {
Herbert Xu79638372009-06-29 16:53:28 +00001196 dev->net->stats.tx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197
1198 switch (urb->status) {
1199 case -EPIPE:
David Brownell2e55cc72005-08-31 09:53:10 -07001200 usbnet_defer_kevent (dev, EVENT_TX_HALT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 break;
1202
1203 /* software-driven interface shutdown */
1204 case -ECONNRESET: // async unlink
1205 case -ESHUTDOWN: // hardware gone
1206 break;
1207
Petr Mladek37ebb542014-09-19 17:32:23 +02001208 /* like rx, tx gets controller i/o faults during hub_wq
1209 * delays and so it uses the same throttling mechanism.
1210 */
Pete Zaitcev38e2bfc2006-09-18 22:49:02 -07001211 case -EPROTO:
1212 case -ETIME:
1213 case -EILSEQ:
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001214 usb_mark_last_busy(dev->udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 if (!timer_pending (&dev->delay)) {
1216 mod_timer (&dev->delay,
1217 jiffies + THROTTLE_JIFFIES);
Joe Perchesa475f602010-02-17 10:30:24 +00001218 netif_dbg(dev, link, dev->net,
1219 "tx throttle %d\n", urb->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 }
1221 netif_stop_queue (dev->net);
1222 break;
1223 default:
Joe Perchesa475f602010-02-17 10:30:24 +00001224 netif_dbg(dev, tx_err, dev->net,
1225 "tx err %d\n", entry->urb->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 break;
1227 }
1228 }
1229
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001230 usb_autopm_put_interface_async(dev->intf);
Ming Lei5b6e9bc2012-04-26 11:33:46 +08001231 (void) defer_bh(dev, skb, &dev->txq, tx_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232}
1233
1234/*-------------------------------------------------------------------------*/
1235
Stephen Hemminger777baa42009-03-20 19:35:54 +00001236void usbnet_tx_timeout (struct net_device *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237{
1238 struct usbnet *dev = netdev_priv(net);
1239
1240 unlink_urbs (dev, &dev->txq);
1241 tasklet_schedule (&dev->bh);
Oliver Neukumdbcdd4d2014-08-01 14:01:51 +02001242 /* this needs to be handled individually because the generic layer
1243 * doesn't know what is sufficient and could not restore private
1244 * information if a remedy of an unconditional reset were used.
1245 */
1246 if (dev->driver_info->recover)
1247 (dev->driver_info->recover)(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248}
Stephen Hemminger777baa42009-03-20 19:35:54 +00001249EXPORT_SYMBOL_GPL(usbnet_tx_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250
1251/*-------------------------------------------------------------------------*/
1252
Ming Lei638c5112013-08-08 21:48:24 +08001253static int build_dma_sg(const struct sk_buff *skb, struct urb *urb)
1254{
1255 unsigned num_sgs, total_len = 0;
1256 int i, s = 0;
1257
1258 num_sgs = skb_shinfo(skb)->nr_frags + 1;
1259 if (num_sgs == 1)
1260 return 0;
1261
Ming Lei60e453a2013-09-23 20:59:35 +08001262 /* reserve one for zero packet */
1263 urb->sg = kmalloc((num_sgs + 1) * sizeof(struct scatterlist),
1264 GFP_ATOMIC);
Ming Lei638c5112013-08-08 21:48:24 +08001265 if (!urb->sg)
1266 return -ENOMEM;
1267
1268 urb->num_sgs = num_sgs;
Bjørn Morkfdc34522014-01-10 23:10:17 +01001269 sg_init_table(urb->sg, urb->num_sgs + 1);
Ming Lei638c5112013-08-08 21:48:24 +08001270
1271 sg_set_buf(&urb->sg[s++], skb->data, skb_headlen(skb));
1272 total_len += skb_headlen(skb);
1273
1274 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1275 struct skb_frag_struct *f = &skb_shinfo(skb)->frags[i];
1276
1277 total_len += skb_frag_size(f);
1278 sg_set_page(&urb->sg[i + s], f->page.p, f->size,
1279 f->page_offset);
1280 }
1281 urb->transfer_buffer_length = total_len;
1282
1283 return 1;
1284}
1285
Stephen Hemminger25a79c42009-08-31 19:50:45 +00001286netdev_tx_t usbnet_start_xmit (struct sk_buff *skb,
1287 struct net_device *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288{
1289 struct usbnet *dev = netdev_priv(net);
1290 int length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 struct urb *urb = NULL;
1292 struct skb_data *entry;
1293 struct driver_info *info = dev->driver_info;
1294 unsigned long flags;
Stephen Hemminger25a79c42009-08-31 19:50:45 +00001295 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
Konstantin Khlebnikov23ba0792011-11-07 05:54:58 +00001297 if (skb)
1298 skb_tx_timestamp(skb);
Michael Rieschf9b491e2011-09-29 04:06:26 +00001299
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 // some devices want funky USB-level framing, for
1301 // win32 driver (usually) and/or hardware quirks
1302 if (info->tx_fixup) {
1303 skb = info->tx_fixup (dev, skb, GFP_ATOMIC);
1304 if (!skb) {
Bjørn Morkbf414b32013-01-31 08:36:05 +00001305 /* packet collected; minidriver waiting for more */
1306 if (info->flags & FLAG_MULTI_PACKET)
Alexey Orishko073285f2010-11-29 23:23:27 +00001307 goto not_drop;
Bjørn Morkbf414b32013-01-31 08:36:05 +00001308 netif_dbg(dev, tx_err, dev->net, "can't tx_fixup skb\n");
1309 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 }
1311 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
1313 if (!(urb = usb_alloc_urb (0, GFP_ATOMIC))) {
Joe Perchesa475f602010-02-17 10:30:24 +00001314 netif_dbg(dev, tx_err, dev->net, "no urb\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 goto drop;
1316 }
1317
1318 entry = (struct skb_data *) skb->cb;
1319 entry->urb = urb;
1320 entry->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 usb_fill_bulk_urb (urb, dev->udev, dev->out,
1323 skb->data, skb->len, tx_complete, skb);
Ming Lei638c5112013-08-08 21:48:24 +08001324 if (dev->can_dma_sg) {
1325 if (build_dma_sg(skb, urb) < 0)
1326 goto drop;
1327 }
Ming Lei60e453a2013-09-23 20:59:35 +08001328 length = urb->transfer_buffer_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
1330 /* don't assume the hardware handles USB_ZERO_PACKET
1331 * NOTE: strictly conforming cdc-ether devices should expect
1332 * the ZLP here, but ignore the one-byte packet.
Alexey Orishko073285f2010-11-29 23:23:27 +00001333 * NOTE2: CDC NCM specification is different from CDC ECM when
1334 * handling ZLP/short packets, so cdc_ncm driver will make short
1335 * packet itself if needed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 */
Elina Pashevab4d562e32010-04-06 14:23:07 +00001337 if (length % dev->maxpacket == 0) {
1338 if (!(info->flags & FLAG_SEND_ZLP)) {
Alexey Orishko073285f2010-11-29 23:23:27 +00001339 if (!(info->flags & FLAG_MULTI_PACKET)) {
Ming Lei60e453a2013-09-23 20:59:35 +08001340 length++;
1341 if (skb_tailroom(skb) && !urb->num_sgs) {
Alexey Orishko073285f2010-11-29 23:23:27 +00001342 skb->data[skb->len] = 0;
1343 __skb_put(skb, 1);
Ming Lei60e453a2013-09-23 20:59:35 +08001344 } else if (urb->num_sgs)
1345 sg_set_buf(&urb->sg[urb->num_sgs++],
1346 dev->padding_pkt, 1);
Elina Pashevab4d562e32010-04-06 14:23:07 +00001347 }
1348 } else
1349 urb->transfer_flags |= URB_ZERO_PACKET;
Peter Korsgaard3e323f32007-06-27 08:48:15 +02001350 }
Ming Lei60e453a2013-09-23 20:59:35 +08001351 entry->length = urb->transfer_buffer_length = length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001353 spin_lock_irqsave(&dev->txq.lock, flags);
1354 retval = usb_autopm_get_interface_async(dev->intf);
1355 if (retval < 0) {
1356 spin_unlock_irqrestore(&dev->txq.lock, flags);
1357 goto drop;
1358 }
1359
1360#ifdef CONFIG_PM
1361 /* if this triggers the device is still a sleep */
1362 if (test_bit(EVENT_DEV_ASLEEP, &dev->flags)) {
1363 /* transmission will be done in resume */
1364 usb_anchor_urb(urb, &dev->deferred);
1365 /* no use to process more packets */
1366 netif_stop_queue(net);
Hemant Kumar39707c22012-10-25 18:17:54 +00001367 usb_put_urb(urb);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001368 spin_unlock_irqrestore(&dev->txq.lock, flags);
Joe Perches60b86752010-02-17 10:30:23 +00001369 netdev_dbg(dev->net, "Delaying transmission for resumption\n");
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001370 goto deferred;
1371 }
1372#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 switch ((retval = usb_submit_urb (urb, GFP_ATOMIC))) {
1375 case -EPIPE:
1376 netif_stop_queue (net);
David Brownell2e55cc72005-08-31 09:53:10 -07001377 usbnet_defer_kevent (dev, EVENT_TX_HALT);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001378 usb_autopm_put_interface_async(dev->intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 break;
1380 default:
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001381 usb_autopm_put_interface_async(dev->intf);
Joe Perchesa475f602010-02-17 10:30:24 +00001382 netif_dbg(dev, tx_err, dev->net,
1383 "tx: submit urb err %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 break;
1385 case 0:
1386 net->trans_start = jiffies;
Ming Lei5b6e9bc2012-04-26 11:33:46 +08001387 __usbnet_queue_skb(&dev->txq, skb, tx_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 if (dev->txq.qlen >= TX_QLEN (dev))
1389 netif_stop_queue (net);
1390 }
1391 spin_unlock_irqrestore (&dev->txq.lock, flags);
1392
1393 if (retval) {
Joe Perchesa475f602010-02-17 10:30:24 +00001394 netif_dbg(dev, tx_err, dev->net, "drop, code %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395drop:
Herbert Xu79638372009-06-29 16:53:28 +00001396 dev->net->stats.tx_dropped++;
Alexey Orishko073285f2010-11-29 23:23:27 +00001397not_drop:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 if (skb)
1399 dev_kfree_skb_any (skb);
Ming Lei638c5112013-08-08 21:48:24 +08001400 if (urb) {
1401 kfree(urb->sg);
1402 usb_free_urb(urb);
1403 }
Joe Perchesa475f602010-02-17 10:30:24 +00001404 } else
1405 netif_dbg(dev, tx_queued, dev->net,
1406 "> tx, len %d, type 0x%x\n", length, skb->protocol);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001407#ifdef CONFIG_PM
1408deferred:
1409#endif
Stephen Hemminger25a79c42009-08-31 19:50:45 +00001410 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411}
Stephen Hemminger777baa42009-03-20 19:35:54 +00001412EXPORT_SYMBOL_GPL(usbnet_start_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413
Bjørn Mork85e87872012-09-02 22:26:18 +00001414static int rx_alloc_submit(struct usbnet *dev, gfp_t flags)
Ming Lei65841fd2012-06-19 21:15:53 +00001415{
1416 struct urb *urb;
1417 int i;
Bjørn Mork85e87872012-09-02 22:26:18 +00001418 int ret = 0;
Ming Lei65841fd2012-06-19 21:15:53 +00001419
1420 /* don't refill the queue all at once */
1421 for (i = 0; i < 10 && dev->rxq.qlen < RX_QLEN(dev); i++) {
1422 urb = usb_alloc_urb(0, flags);
1423 if (urb != NULL) {
Bjørn Mork85e87872012-09-02 22:26:18 +00001424 ret = rx_submit(dev, urb, flags);
1425 if (ret)
1426 goto err;
1427 } else {
1428 ret = -ENOMEM;
1429 goto err;
Ming Lei65841fd2012-06-19 21:15:53 +00001430 }
1431 }
Bjørn Mork85e87872012-09-02 22:26:18 +00001432err:
1433 return ret;
Ming Lei65841fd2012-06-19 21:15:53 +00001434}
1435
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436/*-------------------------------------------------------------------------*/
1437
1438// tasklet (work deferred from completions, in_irq) or timer
1439
1440static void usbnet_bh (unsigned long param)
1441{
1442 struct usbnet *dev = (struct usbnet *) param;
1443 struct sk_buff *skb;
1444 struct skb_data *entry;
1445
1446 while ((skb = skb_dequeue (&dev->done))) {
1447 entry = (struct skb_data *) skb->cb;
1448 switch (entry->state) {
David Brownell18ab4582007-05-25 12:31:32 -07001449 case rx_done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 entry->state = rx_cleanup;
1451 rx_process (dev, skb);
1452 continue;
David Brownell18ab4582007-05-25 12:31:32 -07001453 case tx_done:
Ming Lei638c5112013-08-08 21:48:24 +08001454 kfree(entry->urb->sg);
David Brownell18ab4582007-05-25 12:31:32 -07001455 case rx_cleanup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 usb_free_urb (entry->urb);
1457 dev_kfree_skb (skb);
1458 continue;
David Brownell18ab4582007-05-25 12:31:32 -07001459 default:
Joe Perches60b86752010-02-17 10:30:23 +00001460 netdev_dbg(dev->net, "bogus skb state %d\n", entry->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 }
1462 }
1463
Bjørn Mork70c37bf2013-01-28 23:51:28 +00001464 /* restart RX again after disabling due to high error rate */
1465 clear_bit(EVENT_RX_KILL, &dev->flags);
1466
Oliver Neukum14a0d632014-03-26 14:32:51 +01001467 /* waiting for all pending urbs to complete?
1468 * only then can we forgo submitting anew
1469 */
1470 if (waitqueue_active(&dev->wait)) {
1471 if (dev->txq.qlen + dev->rxq.qlen + dev->done.qlen == 0)
1472 wake_up_all(&dev->wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473
1474 // or are we maybe short a few urbs?
Joe Perches8e95a202009-12-03 07:58:21 +00001475 } else if (netif_running (dev->net) &&
1476 netif_device_present (dev->net) &&
Ming Lei4b49f582013-04-11 04:40:40 +00001477 netif_carrier_ok(dev->net) &&
Joe Perches8e95a202009-12-03 07:58:21 +00001478 !timer_pending (&dev->delay) &&
1479 !test_bit (EVENT_RX_HALT, &dev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 int temp = dev->rxq.qlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481
Ming Lei65841fd2012-06-19 21:15:53 +00001482 if (temp < RX_QLEN(dev)) {
Bjørn Mork85e87872012-09-02 22:26:18 +00001483 if (rx_alloc_submit(dev, GFP_ATOMIC) == -ENOLINK)
1484 return;
Joe Perchesa475f602010-02-17 10:30:24 +00001485 if (temp != dev->rxq.qlen)
1486 netif_dbg(dev, link, dev->net,
1487 "rxqlen %d --> %d\n",
1488 temp, dev->rxq.qlen);
Ming Lei65841fd2012-06-19 21:15:53 +00001489 if (dev->rxq.qlen < RX_QLEN(dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 tasklet_schedule (&dev->bh);
1491 }
1492 if (dev->txq.qlen < TX_QLEN (dev))
1493 netif_wake_queue (dev->net);
1494 }
1495}
1496
1497
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498/*-------------------------------------------------------------------------
1499 *
1500 * USB Device Driver support
1501 *
1502 *-------------------------------------------------------------------------*/
David Brownellcb1cebb2007-02-15 18:52:30 -08001503
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504// precondition: never called in_interrupt
1505
David Brownell38bde1d2005-08-31 09:52:45 -07001506void usbnet_disconnect (struct usb_interface *intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507{
1508 struct usbnet *dev;
1509 struct usb_device *xdev;
1510 struct net_device *net;
1511
1512 dev = usb_get_intfdata(intf);
1513 usb_set_intfdata(intf, NULL);
1514 if (!dev)
1515 return;
1516
1517 xdev = interface_to_usbdev (intf);
1518
Joe Perchesa475f602010-02-17 10:30:24 +00001519 netif_info(dev, probe, dev->net, "unregister '%s' usb-%s-%s, %s\n",
1520 intf->dev.driver->name,
1521 xdev->bus->bus_name, xdev->devpath,
1522 dev->driver_info->description);
David Brownellcb1cebb2007-02-15 18:52:30 -08001523
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 net = dev->net;
1525 unregister_netdev (net);
1526
Tejun Heo23f333a2010-12-12 16:45:14 +01001527 cancel_work_sync(&dev->kevent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528
Hemant Kumar39707c22012-10-25 18:17:54 +00001529 usb_scuttle_anchored_urbs(&dev->deferred);
1530
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 if (dev->driver_info->unbind)
1532 dev->driver_info->unbind (dev, intf);
1533
Paul Stewart68972ef2011-04-28 05:43:37 +00001534 usb_kill_urb(dev->interrupt);
1535 usb_free_urb(dev->interrupt);
Ming Lei60e453a2013-09-23 20:59:35 +08001536 kfree(dev->padding_pkt);
Paul Stewart68972ef2011-04-28 05:43:37 +00001537
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 free_netdev(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539}
David Brownell38bde1d2005-08-31 09:52:45 -07001540EXPORT_SYMBOL_GPL(usbnet_disconnect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541
Stephen Hemminger777baa42009-03-20 19:35:54 +00001542static const struct net_device_ops usbnet_netdev_ops = {
1543 .ndo_open = usbnet_open,
1544 .ndo_stop = usbnet_stop,
1545 .ndo_start_xmit = usbnet_start_xmit,
1546 .ndo_tx_timeout = usbnet_tx_timeout,
Olivier Blin1efed2d2014-10-24 19:43:00 +02001547 .ndo_set_rx_mode = usbnet_set_rx_mode,
Stephen Hemminger777baa42009-03-20 19:35:54 +00001548 .ndo_change_mtu = usbnet_change_mtu,
1549 .ndo_set_mac_address = eth_mac_addr,
1550 .ndo_validate_addr = eth_validate_addr,
1551};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552
1553/*-------------------------------------------------------------------------*/
1554
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555// precondition: never called in_interrupt
1556
Marcel Holtmann225794f2009-10-02 05:15:26 +00001557static struct device_type wlan_type = {
1558 .name = "wlan",
1559};
1560
1561static struct device_type wwan_type = {
1562 .name = "wwan",
1563};
1564
David Brownell38bde1d2005-08-31 09:52:45 -07001565int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566usbnet_probe (struct usb_interface *udev, const struct usb_device_id *prod)
1567{
1568 struct usbnet *dev;
David Brownellcb1cebb2007-02-15 18:52:30 -08001569 struct net_device *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 struct usb_host_interface *interface;
1571 struct driver_info *info;
1572 struct usb_device *xdev;
1573 int status;
David Brownell296c0242007-04-17 16:10:10 -07001574 const char *name;
Ming Leib0786b42010-11-01 07:11:54 -07001575 struct usb_driver *driver = to_usb_driver(udev->dev.driver);
1576
1577 /* usbnet already took usb runtime pm, so have to enable the feature
1578 * for usb interface, otherwise usb_autopm_get_interface may return
Alan Stern98f541c2013-05-01 12:13:54 -04001579 * failure if RUNTIME_PM is enabled.
Ming Leib0786b42010-11-01 07:11:54 -07001580 */
1581 if (!driver->supports_autosuspend) {
1582 driver->supports_autosuspend = 1;
1583 pm_runtime_enable(&udev->dev);
1584 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585
David Brownell296c0242007-04-17 16:10:10 -07001586 name = udev->dev.driver->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 info = (struct driver_info *) prod->driver_info;
1588 if (!info) {
David Brownell296c0242007-04-17 16:10:10 -07001589 dev_dbg (&udev->dev, "blacklisted by %s\n", name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 return -ENODEV;
1591 }
1592 xdev = interface_to_usbdev (udev);
1593 interface = udev->cur_altsetting;
1594
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 status = -ENOMEM;
1596
1597 // set up our own records
1598 net = alloc_etherdev(sizeof(*dev));
Joe Perches41de8d42012-01-29 13:47:52 +00001599 if (!net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601
Ben Hutchings0dacca72010-07-02 21:49:02 -07001602 /* netdev_printk() needs this so do it as early as possible */
1603 SET_NETDEV_DEV(net, &udev->dev);
1604
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 dev = netdev_priv(net);
1606 dev->udev = xdev;
Oliver Neukuma11a6542007-08-03 13:52:19 +02001607 dev->intf = udev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 dev->driver_info = info;
David Brownell296c0242007-04-17 16:10:10 -07001609 dev->driver_name = name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 dev->msg_enable = netif_msg_init (msg_level, NETIF_MSG_DRV
1611 | NETIF_MSG_PROBE | NETIF_MSG_LINK);
Oliver Neukum14a0d632014-03-26 14:32:51 +01001612 init_waitqueue_head(&dev->wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 skb_queue_head_init (&dev->rxq);
1614 skb_queue_head_init (&dev->txq);
1615 skb_queue_head_init (&dev->done);
Jussi Kivilinna7834ddb2009-08-11 22:57:16 +03001616 skb_queue_head_init(&dev->rxq_pause);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 dev->bh.func = usbnet_bh;
1618 dev->bh.data = (unsigned long) dev;
David Howellsc4028952006-11-22 14:57:56 +00001619 INIT_WORK (&dev->kevent, kevent);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001620 init_usb_anchor(&dev->deferred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 dev->delay.function = usbnet_bh;
1622 dev->delay.data = (unsigned long) dev;
1623 init_timer (&dev->delay);
Arnd Bergmanna9fc6332006-10-09 00:08:02 +02001624 mutex_init (&dev->phy_mutex);
Dan Williams6eecdc52013-05-06 11:29:23 +00001625 mutex_init(&dev->interrupt_mutex);
1626 dev->interrupt_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 dev->net = net;
1629 strcpy (net->name, "usb%d");
1630 memcpy (net->dev_addr, node_id, sizeof node_id);
1631
David Brownell2e55cc72005-08-31 09:53:10 -07001632 /* rx and tx sides can use different message sizes;
1633 * bind() should set rx_urb_size in that case.
1634 */
1635 dev->hard_mtu = net->mtu + net->hard_header_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636#if 0
1637// dma_supported() is deeply broken on almost all architectures
1638 // possible with some EHCI controllers
Yang Hongyang6a355282009-04-06 19:01:13 -07001639 if (dma_supported (&udev->dev, DMA_BIT_MASK(64)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 net->features |= NETIF_F_HIGHDMA;
1641#endif
1642
Stephen Hemminger777baa42009-03-20 19:35:54 +00001643 net->netdev_ops = &usbnet_netdev_ops;
Stephen Hemminger777baa42009-03-20 19:35:54 +00001644 net->watchdog_timeo = TX_TIMEOUT_JIFFIES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 net->ethtool_ops = &usbnet_ethtool_ops;
1646
1647 // allow device-specific bind/init procedures
1648 // NOTE net->name still not usable ...
1649 if (info->bind) {
1650 status = info->bind (dev, udev);
David Brownellcb1cebb2007-02-15 18:52:30 -08001651 if (status < 0)
1652 goto out1;
1653
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 // heuristic: "usb%d" for links we know are two-host,
1655 // else "eth%d" when there's reasonable doubt. userspace
1656 // can rename the link if it knows better.
Joe Perches8e95a202009-12-03 07:58:21 +00001657 if ((dev->driver_info->flags & FLAG_ETHER) != 0 &&
Arnd Bergmannc2613442011-04-01 20:12:02 -07001658 ((dev->driver_info->flags & FLAG_POINTTOPOINT) == 0 ||
1659 (net->dev_addr [0] & 0x02) == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 strcpy (net->name, "eth%d");
Jussi Kivilinna6e3bbcc2008-01-26 00:51:06 +02001661 /* WLAN devices should always be named "wlan%d" */
1662 if ((dev->driver_info->flags & FLAG_WLAN) != 0)
1663 strcpy(net->name, "wlan%d");
Marcel Holtmanne1e499e2009-10-02 05:15:25 +00001664 /* WWAN devices should always be named "wwan%d" */
1665 if ((dev->driver_info->flags & FLAG_WWAN) != 0)
1666 strcpy(net->name, "wwan%d");
David Brownellf29fc252005-08-31 09:52:31 -07001667
Wei Shuai65091412013-01-21 06:00:31 +00001668 /* devices that cannot do ARP */
1669 if ((dev->driver_info->flags & FLAG_NOARP) != 0)
1670 net->flags |= IFF_NOARP;
1671
David Brownellf29fc252005-08-31 09:52:31 -07001672 /* maybe the remote can't receive an Ethernet MTU */
1673 if (net->mtu > (dev->hard_mtu - net->hard_header_len))
1674 net->mtu = dev->hard_mtu - net->hard_header_len;
David Brownell2e55cc72005-08-31 09:53:10 -07001675 } else if (!info->in || !info->out)
1676 status = usbnet_get_endpoints (dev, udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 else {
1678 dev->in = usb_rcvbulkpipe (xdev, info->in);
1679 dev->out = usb_sndbulkpipe (xdev, info->out);
1680 if (!(info->flags & FLAG_NO_SETINT))
1681 status = usb_set_interface (xdev,
1682 interface->desc.bInterfaceNumber,
1683 interface->desc.bAlternateSetting);
1684 else
1685 status = 0;
1686
1687 }
Peter Korsgaard9514bfe2007-07-03 00:46:42 +02001688 if (status >= 0 && dev->status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 status = init_status (dev, udev);
1690 if (status < 0)
David Brownellcb1cebb2007-02-15 18:52:30 -08001691 goto out3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692
David Brownell2e55cc72005-08-31 09:53:10 -07001693 if (!dev->rx_urb_size)
1694 dev->rx_urb_size = dev->hard_mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 dev->maxpacket = usb_maxpacket (dev->udev, dev->out, 1);
David Brownellcb1cebb2007-02-15 18:52:30 -08001696
Bjørn Morkeef23b52013-09-04 09:42:32 +02001697 /* let userspace know we have a random address */
1698 if (ether_addr_equal(net->dev_addr, node_id))
1699 net->addr_assign_type = NET_ADDR_RANDOM;
1700
Marcel Holtmann225794f2009-10-02 05:15:26 +00001701 if ((dev->driver_info->flags & FLAG_WLAN) != 0)
1702 SET_NETDEV_DEVTYPE(net, &wlan_type);
1703 if ((dev->driver_info->flags & FLAG_WWAN) != 0)
1704 SET_NETDEV_DEVTYPE(net, &wwan_type);
1705
Ming Leia88c32a2013-07-25 13:47:53 +08001706 /* initialize max rx_qlen and tx_qlen */
1707 usbnet_update_max_qlen(dev);
1708
Ming Lei60e453a2013-09-23 20:59:35 +08001709 if (dev->can_dma_sg && !(info->flags & FLAG_SEND_ZLP) &&
1710 !(info->flags & FLAG_MULTI_PACKET)) {
1711 dev->padding_pkt = kzalloc(1, GFP_KERNEL);
Wei Yongjun09b69022013-10-12 14:24:08 +08001712 if (!dev->padding_pkt) {
1713 status = -ENOMEM;
Ming Lei60e453a2013-09-23 20:59:35 +08001714 goto out4;
Wei Yongjun09b69022013-10-12 14:24:08 +08001715 }
Ming Lei60e453a2013-09-23 20:59:35 +08001716 }
1717
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 status = register_netdev (net);
1719 if (status)
Ming Lei60e453a2013-09-23 20:59:35 +08001720 goto out5;
Joe Perchesa475f602010-02-17 10:30:24 +00001721 netif_info(dev, probe, dev->net,
1722 "register '%s' at usb-%s-%s, %s, %pM\n",
1723 udev->dev.driver->name,
1724 xdev->bus->bus_name, xdev->devpath,
1725 dev->driver_info->description,
1726 net->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727
1728 // ok, it's ready to go.
1729 usb_set_intfdata (udev, dev);
1730
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 netif_device_attach (net);
1732
Ben Hutchings37e82732009-11-04 15:29:52 +00001733 if (dev->driver_info->flags & FLAG_LINK_INTR)
Ming Lei0162c552013-04-11 04:40:39 +00001734 usbnet_link_change(dev, 0, 0);
Ben Hutchings37e82732009-11-04 15:29:52 +00001735
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 return 0;
1737
Ming Lei60e453a2013-09-23 20:59:35 +08001738out5:
1739 kfree(dev->padding_pkt);
tom.leiming@gmail.coma4723842012-04-29 22:51:03 +00001740out4:
1741 usb_free_urb(dev->interrupt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742out3:
1743 if (info->unbind)
1744 info->unbind (dev, udev);
1745out1:
1746 free_netdev(net);
1747out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 return status;
1749}
David Brownell38bde1d2005-08-31 09:52:45 -07001750EXPORT_SYMBOL_GPL(usbnet_probe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751
1752/*-------------------------------------------------------------------------*/
1753
Oliver Neukum36433122007-04-30 01:37:44 -07001754/*
1755 * suspend the whole driver as soon as the first interface is suspended
1756 * resume only when the last interface is resumed
David Brownell38bde1d2005-08-31 09:52:45 -07001757 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758
David Brownell38bde1d2005-08-31 09:52:45 -07001759int usbnet_suspend (struct usb_interface *intf, pm_message_t message)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760{
1761 struct usbnet *dev = usb_get_intfdata(intf);
David Brownellcb1cebb2007-02-15 18:52:30 -08001762
Oliver Neukum36433122007-04-30 01:37:44 -07001763 if (!dev->suspend_count++) {
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001764 spin_lock_irq(&dev->txq.lock);
1765 /* don't autosuspend while transmitting */
Alan Stern5b1b0b82011-08-19 23:49:48 +02001766 if (dev->txq.qlen && PMSG_IS_AUTO(message)) {
Ming Lei5eeb3132012-06-19 21:15:52 +00001767 dev->suspend_count--;
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001768 spin_unlock_irq(&dev->txq.lock);
1769 return -EBUSY;
1770 } else {
1771 set_bit(EVENT_DEV_ASLEEP, &dev->flags);
1772 spin_unlock_irq(&dev->txq.lock);
1773 }
Oliver Neukuma11a6542007-08-03 13:52:19 +02001774 /*
1775 * accelerate emptying of the rx and queues, to avoid
Oliver Neukum36433122007-04-30 01:37:44 -07001776 * having everything error out.
1777 */
1778 netif_device_detach (dev->net);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001779 usbnet_terminate_urbs(dev);
Dan Williams6eecdc52013-05-06 11:29:23 +00001780 __usbnet_status_stop_force(dev);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001781
Oliver Neukuma11a6542007-08-03 13:52:19 +02001782 /*
1783 * reattach so runtime management can use and
1784 * wake the device
1785 */
1786 netif_device_attach (dev->net);
Oliver Neukum36433122007-04-30 01:37:44 -07001787 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 return 0;
1789}
David Brownell38bde1d2005-08-31 09:52:45 -07001790EXPORT_SYMBOL_GPL(usbnet_suspend);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791
David Brownell38bde1d2005-08-31 09:52:45 -07001792int usbnet_resume (struct usb_interface *intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793{
1794 struct usbnet *dev = usb_get_intfdata(intf);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001795 struct sk_buff *skb;
1796 struct urb *res;
1797 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001799 if (!--dev->suspend_count) {
Dan Williams6eecdc52013-05-06 11:29:23 +00001800 /* resume interrupt URB if it was previously submitted */
1801 __usbnet_status_start_force(dev, GFP_NOIO);
Paul Stewart68972ef2011-04-28 05:43:37 +00001802
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001803 spin_lock_irq(&dev->txq.lock);
1804 while ((res = usb_get_from_anchor(&dev->deferred))) {
1805
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001806 skb = (struct sk_buff *)res->context;
1807 retval = usb_submit_urb(res, GFP_ATOMIC);
1808 if (retval < 0) {
1809 dev_kfree_skb_any(skb);
Ming Lei638c5112013-08-08 21:48:24 +08001810 kfree(res->sg);
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001811 usb_free_urb(res);
1812 usb_autopm_put_interface_async(dev->intf);
1813 } else {
1814 dev->net->trans_start = jiffies;
1815 __skb_queue_tail(&dev->txq, skb);
1816 }
1817 }
1818
1819 smp_mb();
1820 clear_bit(EVENT_DEV_ASLEEP, &dev->flags);
1821 spin_unlock_irq(&dev->txq.lock);
Ming Lei75bd0cb2011-04-28 22:37:09 +00001822
1823 if (test_bit(EVENT_DEV_OPEN, &dev->flags)) {
Oliver Neukum14a0d632014-03-26 14:32:51 +01001824 /* handle remote wakeup ASAP
1825 * we cannot race against stop
1826 */
1827 if (netif_device_present(dev->net) &&
Ming Lei65841fd2012-06-19 21:15:53 +00001828 !timer_pending(&dev->delay) &&
1829 !test_bit(EVENT_RX_HALT, &dev->flags))
Oliver Neukumab6f1482012-08-26 20:41:38 +00001830 rx_alloc_submit(dev, GFP_NOIO);
Ming Lei65841fd2012-06-19 21:15:53 +00001831
Ming Lei75bd0cb2011-04-28 22:37:09 +00001832 if (!(dev->txq.qlen >= TX_QLEN(dev)))
Alexey Orishko1aa9bc52012-03-14 04:00:24 +00001833 netif_tx_wake_all_queues(dev->net);
Ming Lei75bd0cb2011-04-28 22:37:09 +00001834 tasklet_schedule (&dev->bh);
1835 }
Oliver Neukum69ee472f2009-12-03 15:31:18 -08001836 }
Oliver Neukum5d9d01a32012-10-11 02:50:10 +00001837
1838 if (test_and_clear_bit(EVENT_DEVICE_REPORT_IDLE, &dev->flags))
1839 usb_autopm_get_interface_no_resume(intf);
1840
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 return 0;
1842}
David Brownell38bde1d2005-08-31 09:52:45 -07001843EXPORT_SYMBOL_GPL(usbnet_resume);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844
Oliver Neukum5d9d01a32012-10-11 02:50:10 +00001845/*
1846 * Either a subdriver implements manage_power, then it is assumed to always
1847 * be ready to be suspended or it reports the readiness to be suspended
1848 * explicitly
1849 */
1850void usbnet_device_suggests_idle(struct usbnet *dev)
1851{
1852 if (!test_and_set_bit(EVENT_DEVICE_REPORT_IDLE, &dev->flags)) {
1853 dev->intf->needs_remote_wakeup = 1;
1854 usb_autopm_put_interface_async(dev->intf);
1855 }
1856}
1857EXPORT_SYMBOL(usbnet_device_suggests_idle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858
Oliver Neukum2dd7c8c2012-12-18 04:45:52 +00001859/*
1860 * For devices that can do without special commands
1861 */
1862int usbnet_manage_power(struct usbnet *dev, int on)
1863{
1864 dev->intf->needs_remote_wakeup = on;
1865 return 0;
1866}
1867EXPORT_SYMBOL(usbnet_manage_power);
1868
Ming Leiac649952013-04-11 04:40:30 +00001869void usbnet_link_change(struct usbnet *dev, bool link, bool need_reset)
1870{
1871 /* update link after link is reseted */
1872 if (link && !need_reset)
1873 netif_carrier_on(dev->net);
1874 else
1875 netif_carrier_off(dev->net);
1876
1877 if (need_reset && link)
1878 usbnet_defer_kevent(dev, EVENT_LINK_RESET);
Ming Lei4b49f582013-04-11 04:40:40 +00001879 else
1880 usbnet_defer_kevent(dev, EVENT_LINK_CHANGE);
Ming Leiac649952013-04-11 04:40:30 +00001881}
1882EXPORT_SYMBOL(usbnet_link_change);
1883
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884/*-------------------------------------------------------------------------*/
Ming Lei0547fad2012-11-06 04:53:04 +00001885static int __usbnet_read_cmd(struct usbnet *dev, u8 cmd, u8 reqtype,
1886 u16 value, u16 index, void *data, u16 size)
Ming Lei877bd862012-10-24 19:46:54 +00001887{
1888 void *buf = NULL;
1889 int err = -ENOMEM;
1890
1891 netdev_dbg(dev->net, "usbnet_read_cmd cmd=0x%02x reqtype=%02x"
1892 " value=0x%04x index=0x%04x size=%d\n",
1893 cmd, reqtype, value, index, size);
1894
1895 if (data) {
1896 buf = kmalloc(size, GFP_KERNEL);
1897 if (!buf)
1898 goto out;
1899 }
1900
1901 err = usb_control_msg(dev->udev, usb_rcvctrlpipe(dev->udev, 0),
1902 cmd, reqtype, value, index, buf, size,
1903 USB_CTRL_GET_TIMEOUT);
1904 if (err > 0 && err <= size)
1905 memcpy(data, buf, err);
1906 kfree(buf);
1907out:
1908 return err;
1909}
Ming Lei877bd862012-10-24 19:46:54 +00001910
Ming Lei0547fad2012-11-06 04:53:04 +00001911static int __usbnet_write_cmd(struct usbnet *dev, u8 cmd, u8 reqtype,
1912 u16 value, u16 index, const void *data,
1913 u16 size)
Ming Lei877bd862012-10-24 19:46:54 +00001914{
1915 void *buf = NULL;
1916 int err = -ENOMEM;
1917
1918 netdev_dbg(dev->net, "usbnet_write_cmd cmd=0x%02x reqtype=%02x"
1919 " value=0x%04x index=0x%04x size=%d\n",
1920 cmd, reqtype, value, index, size);
1921
1922 if (data) {
1923 buf = kmemdup(data, size, GFP_KERNEL);
1924 if (!buf)
1925 goto out;
1926 }
1927
1928 err = usb_control_msg(dev->udev, usb_sndctrlpipe(dev->udev, 0),
1929 cmd, reqtype, value, index, buf, size,
1930 USB_CTRL_SET_TIMEOUT);
1931 kfree(buf);
1932
1933out:
1934 return err;
1935}
Ming Lei0547fad2012-11-06 04:53:04 +00001936
1937/*
1938 * The function can't be called inside suspend/resume callback,
1939 * otherwise deadlock will be caused.
1940 */
1941int usbnet_read_cmd(struct usbnet *dev, u8 cmd, u8 reqtype,
1942 u16 value, u16 index, void *data, u16 size)
1943{
Ming Lei6f0a0982012-11-06 04:53:08 +00001944 int ret;
1945
1946 if (usb_autopm_get_interface(dev->intf) < 0)
1947 return -ENODEV;
1948 ret = __usbnet_read_cmd(dev, cmd, reqtype, value, index,
1949 data, size);
1950 usb_autopm_put_interface(dev->intf);
1951 return ret;
Ming Lei0547fad2012-11-06 04:53:04 +00001952}
1953EXPORT_SYMBOL_GPL(usbnet_read_cmd);
1954
1955/*
1956 * The function can't be called inside suspend/resume callback,
1957 * otherwise deadlock will be caused.
1958 */
1959int usbnet_write_cmd(struct usbnet *dev, u8 cmd, u8 reqtype,
1960 u16 value, u16 index, const void *data, u16 size)
1961{
Ming Lei6f0a0982012-11-06 04:53:08 +00001962 int ret;
1963
1964 if (usb_autopm_get_interface(dev->intf) < 0)
1965 return -ENODEV;
1966 ret = __usbnet_write_cmd(dev, cmd, reqtype, value, index,
1967 data, size);
1968 usb_autopm_put_interface(dev->intf);
1969 return ret;
Ming Lei0547fad2012-11-06 04:53:04 +00001970}
Ming Lei877bd862012-10-24 19:46:54 +00001971EXPORT_SYMBOL_GPL(usbnet_write_cmd);
1972
Ming Lei0547fad2012-11-06 04:53:04 +00001973/*
1974 * The function can be called inside suspend/resume callback safely
1975 * and should only be called by suspend/resume callback generally.
1976 */
1977int usbnet_read_cmd_nopm(struct usbnet *dev, u8 cmd, u8 reqtype,
1978 u16 value, u16 index, void *data, u16 size)
1979{
1980 return __usbnet_read_cmd(dev, cmd, reqtype, value, index,
1981 data, size);
1982}
1983EXPORT_SYMBOL_GPL(usbnet_read_cmd_nopm);
1984
1985/*
1986 * The function can be called inside suspend/resume callback safely
1987 * and should only be called by suspend/resume callback generally.
1988 */
1989int usbnet_write_cmd_nopm(struct usbnet *dev, u8 cmd, u8 reqtype,
1990 u16 value, u16 index, const void *data,
1991 u16 size)
1992{
1993 return __usbnet_write_cmd(dev, cmd, reqtype, value, index,
1994 data, size);
1995}
1996EXPORT_SYMBOL_GPL(usbnet_write_cmd_nopm);
1997
Ming Lei877bd862012-10-24 19:46:54 +00001998static void usbnet_async_cmd_cb(struct urb *urb)
1999{
2000 struct usb_ctrlrequest *req = (struct usb_ctrlrequest *)urb->context;
2001 int status = urb->status;
2002
2003 if (status < 0)
2004 dev_dbg(&urb->dev->dev, "%s failed with %d",
2005 __func__, status);
2006
2007 kfree(req);
2008 usb_free_urb(urb);
2009}
2010
Ming Lei0547fad2012-11-06 04:53:04 +00002011/*
2012 * The caller must make sure that device can't be put into suspend
2013 * state until the control URB completes.
2014 */
Ming Lei877bd862012-10-24 19:46:54 +00002015int usbnet_write_cmd_async(struct usbnet *dev, u8 cmd, u8 reqtype,
2016 u16 value, u16 index, const void *data, u16 size)
2017{
2018 struct usb_ctrlrequest *req = NULL;
2019 struct urb *urb;
2020 int err = -ENOMEM;
2021 void *buf = NULL;
2022
2023 netdev_dbg(dev->net, "usbnet_write_cmd cmd=0x%02x reqtype=%02x"
2024 " value=0x%04x index=0x%04x size=%d\n",
2025 cmd, reqtype, value, index, size);
2026
2027 urb = usb_alloc_urb(0, GFP_ATOMIC);
2028 if (!urb) {
2029 netdev_err(dev->net, "Error allocating URB in"
2030 " %s!\n", __func__);
2031 goto fail;
2032 }
2033
2034 if (data) {
2035 buf = kmemdup(data, size, GFP_ATOMIC);
2036 if (!buf) {
2037 netdev_err(dev->net, "Error allocating buffer"
2038 " in %s!\n", __func__);
2039 goto fail_free;
2040 }
2041 }
2042
2043 req = kmalloc(sizeof(struct usb_ctrlrequest), GFP_ATOMIC);
Joe Perches38673c82013-02-03 17:28:11 +00002044 if (!req)
Ming Lei877bd862012-10-24 19:46:54 +00002045 goto fail_free_buf;
Ming Lei877bd862012-10-24 19:46:54 +00002046
2047 req->bRequestType = reqtype;
2048 req->bRequest = cmd;
2049 req->wValue = cpu_to_le16(value);
2050 req->wIndex = cpu_to_le16(index);
2051 req->wLength = cpu_to_le16(size);
2052
2053 usb_fill_control_urb(urb, dev->udev,
2054 usb_sndctrlpipe(dev->udev, 0),
2055 (void *)req, buf, size,
2056 usbnet_async_cmd_cb, req);
2057 urb->transfer_flags |= URB_FREE_BUFFER;
2058
2059 err = usb_submit_urb(urb, GFP_ATOMIC);
2060 if (err < 0) {
2061 netdev_err(dev->net, "Error submitting the control"
2062 " message: status=%d\n", err);
2063 goto fail_free;
2064 }
2065 return 0;
2066
2067fail_free_buf:
2068 kfree(buf);
2069fail_free:
2070 kfree(req);
2071 usb_free_urb(urb);
2072fail:
2073 return err;
2074
2075}
2076EXPORT_SYMBOL_GPL(usbnet_write_cmd_async);
2077/*-------------------------------------------------------------------------*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078
David Brownellf29fc252005-08-31 09:52:31 -07002079static int __init usbnet_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080{
Thiago Farinac582a952011-04-17 17:49:21 -07002081 /* Compiler should optimize this out. */
2082 BUILD_BUG_ON(
2083 FIELD_SIZEOF(struct sk_buff, cb) < sizeof(struct skb_data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084
Joe Perchesc7e12ea2012-07-12 19:33:07 +00002085 eth_random_addr(node_id);
David Brownellcb1cebb2007-02-15 18:52:30 -08002086 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087}
David Brownellf29fc252005-08-31 09:52:31 -07002088module_init(usbnet_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089
David Brownellf29fc252005-08-31 09:52:31 -07002090static void __exit usbnet_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092}
David Brownellf29fc252005-08-31 09:52:31 -07002093module_exit(usbnet_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094
David Brownellf29fc252005-08-31 09:52:31 -07002095MODULE_AUTHOR("David Brownell");
David Brownell090ffa92005-08-31 09:54:50 -07002096MODULE_DESCRIPTION("USB network driver framework");
David Brownellf29fc252005-08-31 09:52:31 -07002097MODULE_LICENSE("GPL");