blob: 92013daa3a9e15fcd41b1cad1101ed115b509f68 [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
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
21/*
22 * This is a generic "USB networking" framework that works with several
David Brownell090ffa92005-08-31 09:54:50 -070023 * kinds of full and high speed networking devices: host-to-host cables,
24 * smart usb peripherals, and actual Ethernet adapters.
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 *
David Brownell090ffa92005-08-31 09:54:50 -070026 * These devices usually differ in terms of control protocols (if they
27 * even have one!) and sometimes they define new framing to wrap or batch
28 * Ethernet packets. Otherwise, they talk to USB pretty much the same,
29 * so interface (un)binding, endpoint I/O queues, fault handling, and other
30 * issues can usefully be addressed by this framework.
31 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33// #define DEBUG // error path messages, extra info
34// #define VERBOSE // more; success messages
35
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/init.h>
Hemant Kumar6d2c7472012-03-06 23:39:29 -080038#include <linux/if_arp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/netdevice.h>
40#include <linux/etherdevice.h>
Peter Holik03ad0322009-04-18 07:24:17 +000041#include <linux/ctype.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/ethtool.h>
43#include <linux/workqueue.h>
44#include <linux/mii.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/usb.h>
Jussi Kivilinna3692e942008-01-26 00:51:45 +020046#include <linux/usb/usbnet.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090047#include <linux/slab.h>
Andy Shevchenkofd1f1702010-07-23 03:18:08 +000048#include <linux/kernel.h>
Ming Leib0786b42010-11-01 07:11:54 -070049#include <linux/pm_runtime.h>
David Brownellf29fc252005-08-31 09:52:31 -070050
51#define DRIVER_VERSION "22-Aug-2005"
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53
54/*-------------------------------------------------------------------------*/
55
56/*
57 * Nineteen USB 1.1 max size bulk transactions per frame (ms), max.
58 * Several dozen bytes of IPv4 data can fit in two such transactions.
59 * One maximum size Ethernet packet takes twenty four of them.
60 * For high speed, each frame comfortably fits almost 36 max size
61 * Ethernet packets (so queues should be bigger).
David Brownellf29fc252005-08-31 09:52:31 -070062 *
63 * REVISIT qlens should be members of 'struct usbnet'; the goal is to
64 * let the USB host controller be busy for 5msec or more before an irq
65 * is required, under load. Jumbograms change the equation.
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 */
Jamie Paintera99c1942006-07-27 14:17:28 -040067#define RX_MAX_QUEUE_MEMORY (60 * 1518)
68#define RX_QLEN(dev) (((dev)->udev->speed == USB_SPEED_HIGH) ? \
69 (RX_MAX_QUEUE_MEMORY/(dev)->rx_urb_size) : 4)
70#define TX_QLEN(dev) (((dev)->udev->speed == USB_SPEED_HIGH) ? \
71 (RX_MAX_QUEUE_MEMORY/(dev)->hard_mtu) : 4)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Linus Torvalds1da177e2005-04-16 15:20:36 -070073// reawaken network queue this soon after stopping; else watchdog barks
74#define TX_TIMEOUT_JIFFIES (5*HZ)
75
76// throttle rx/tx briefly after some faults, so khubd might disconnect()
77// us (it polls at HZ/4 usually) before we report too many false errors.
78#define THROTTLE_JIFFIES (HZ/8)
79
Linus Torvalds1da177e2005-04-16 15:20:36 -070080// between wakeups
81#define UNLINK_TIMEOUT_MS 3
82
83/*-------------------------------------------------------------------------*/
84
85// randomly generated ethernet address
86static u8 node_id [ETH_ALEN];
87
Linus Torvalds1da177e2005-04-16 15:20:36 -070088static const char driver_name [] = "usbnet";
89
Hemant Kumar131eb4b2012-11-26 19:47:18 -080090struct workqueue_struct *usbnet_wq;
Hemant Kumar1e8ddb52012-07-02 13:39:22 -070091
Hemant Kumaref59a422012-08-15 16:57:00 -070092static DECLARE_WAIT_QUEUE_HEAD(unlink_wakeup);
93
Linus Torvalds1da177e2005-04-16 15:20:36 -070094/* use ethtool to change the level for any given device */
95static int msg_level = -1;
96module_param (msg_level, int, 0);
97MODULE_PARM_DESC (msg_level, "Override default message level");
98
Linus Torvalds1da177e2005-04-16 15:20:36 -070099/*-------------------------------------------------------------------------*/
100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101/* handles CDC Ethernet and many other network "bulk data" interfaces */
David Brownell2e55cc72005-08-31 09:53:10 -0700102int usbnet_get_endpoints(struct usbnet *dev, struct usb_interface *intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103{
104 int tmp;
105 struct usb_host_interface *alt = NULL;
106 struct usb_host_endpoint *in = NULL, *out = NULL;
107 struct usb_host_endpoint *status = NULL;
108
109 for (tmp = 0; tmp < intf->num_altsetting; tmp++) {
110 unsigned ep;
111
112 in = out = status = NULL;
113 alt = intf->altsetting + tmp;
114
115 /* take the first altsetting with in-bulk + out-bulk;
116 * remember any status endpoint, just in case;
Justin P. Mattock70f23fd2011-05-10 10:16:21 +0200117 * ignore other endpoints and altsettings.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 */
119 for (ep = 0; ep < alt->desc.bNumEndpoints; ep++) {
120 struct usb_host_endpoint *e;
121 int intr = 0;
122
123 e = alt->endpoint + ep;
124 switch (e->desc.bmAttributes) {
125 case USB_ENDPOINT_XFER_INT:
Luiz Fernando N. Capitulinofc6e2542006-10-26 13:03:01 -0300126 if (!usb_endpoint_dir_in(&e->desc))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 continue;
128 intr = 1;
129 /* FALLTHROUGH */
130 case USB_ENDPOINT_XFER_BULK:
131 break;
132 default:
133 continue;
134 }
Luiz Fernando N. Capitulinofc6e2542006-10-26 13:03:01 -0300135 if (usb_endpoint_dir_in(&e->desc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 if (!intr && !in)
137 in = e;
138 else if (intr && !status)
139 status = e;
140 } else {
141 if (!out)
142 out = e;
143 }
144 }
145 if (in && out)
146 break;
147 }
148 if (!alt || !in || !out)
149 return -EINVAL;
150
Joe Perches8e95a202009-12-03 07:58:21 +0000151 if (alt->desc.bAlternateSetting != 0 ||
152 !(dev->driver_info->flags & FLAG_NO_SETINT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 tmp = usb_set_interface (dev->udev, alt->desc.bInterfaceNumber,
154 alt->desc.bAlternateSetting);
155 if (tmp < 0)
156 return tmp;
157 }
David Brownellcb1cebb2007-02-15 18:52:30 -0800158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 dev->in = usb_rcvbulkpipe (dev->udev,
160 in->desc.bEndpointAddress & USB_ENDPOINT_NUMBER_MASK);
161 dev->out = usb_sndbulkpipe (dev->udev,
162 out->desc.bEndpointAddress & USB_ENDPOINT_NUMBER_MASK);
163 dev->status = status;
164 return 0;
165}
David Brownell2e55cc72005-08-31 09:53:10 -0700166EXPORT_SYMBOL_GPL(usbnet_get_endpoints);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Peter Holik03ad0322009-04-18 07:24:17 +0000168int usbnet_get_ethernet_addr(struct usbnet *dev, int iMACAddress)
169{
170 int tmp, i;
171 unsigned char buf [13];
172
173 tmp = usb_string(dev->udev, iMACAddress, buf, sizeof buf);
174 if (tmp != 12) {
175 dev_dbg(&dev->udev->dev,
176 "bad MAC string %d fetch, %d\n", iMACAddress, tmp);
177 if (tmp >= 0)
178 tmp = -EINVAL;
179 return tmp;
180 }
181 for (i = tmp = 0; i < 6; i++, tmp += 2)
182 dev->net->dev_addr [i] =
Andy Shevchenkofd1f1702010-07-23 03:18:08 +0000183 (hex_to_bin(buf[tmp]) << 4) + hex_to_bin(buf[tmp + 1]);
Peter Holik03ad0322009-04-18 07:24:17 +0000184 return 0;
185}
186EXPORT_SYMBOL_GPL(usbnet_get_ethernet_addr);
187
David Howells7d12e782006-10-05 14:55:46 +0100188static void intr_complete (struct urb *urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
190static int init_status (struct usbnet *dev, struct usb_interface *intf)
191{
192 char *buf = NULL;
193 unsigned pipe = 0;
194 unsigned maxp;
195 unsigned period;
196
197 if (!dev->driver_info->status)
198 return 0;
199
200 pipe = usb_rcvintpipe (dev->udev,
201 dev->status->desc.bEndpointAddress
202 & USB_ENDPOINT_NUMBER_MASK);
203 maxp = usb_maxpacket (dev->udev, pipe, 0);
204
205 /* avoid 1 msec chatter: min 8 msec poll rate */
206 period = max ((int) dev->status->desc.bInterval,
207 (dev->udev->speed == USB_SPEED_HIGH) ? 7 : 3);
208
Christoph Lametere94b1762006-12-06 20:33:17 -0800209 buf = kmalloc (maxp, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 if (buf) {
Christoph Lametere94b1762006-12-06 20:33:17 -0800211 dev->interrupt = usb_alloc_urb (0, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 if (!dev->interrupt) {
213 kfree (buf);
214 return -ENOMEM;
215 } else {
216 usb_fill_int_urb(dev->interrupt, dev->udev, pipe,
217 buf, maxp, intr_complete, dev, period);
tom.leiming@gmail.com720f3d72012-04-29 22:51:02 +0000218 dev->interrupt->transfer_flags |= URB_FREE_BUFFER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 dev_dbg(&intf->dev,
220 "status ep%din, %d bytes period %d\n",
221 usb_pipeendpoint(pipe), maxp, period);
222 }
223 }
David Brownell18ab4582007-05-25 12:31:32 -0700224 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225}
226
David Brownell2e55cc72005-08-31 09:53:10 -0700227/* Passes this packet up the stack, updating its accounting.
228 * Some link protocols batch packets, so their rx_fixup paths
229 * can return clones as well as just modify the original skb.
230 */
231void usbnet_skb_return (struct usbnet *dev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232{
233 int status;
234
Jussi Kivilinna7834ddb2009-08-11 22:57:16 +0300235 if (test_bit(EVENT_RX_PAUSED, &dev->flags)) {
236 skb_queue_tail(&dev->rxq_pause, skb);
237 return;
238 }
239
Hemant Kumar37c35e42011-09-14 23:44:19 -0700240 if (!skb->protocol)
241 skb->protocol = eth_type_trans(skb, dev->net);
242
Herbert Xu79638372009-06-29 16:53:28 +0000243 dev->net->stats.rx_packets++;
244 dev->net->stats.rx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Joe Perchesa475f602010-02-17 10:30:24 +0000246 netif_dbg(dev, rx_status, dev->net, "< rx, len %zu, type 0x%x\n",
247 skb->len + sizeof (struct ethhdr), skb->protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 memset (skb->cb, 0, sizeof (struct skb_data));
Michael Rieschf9b491e2011-09-29 04:06:26 +0000249
250 if (skb_defer_rx_timestamp(skb))
251 return;
252
Hemant Kumar1e8ddb52012-07-02 13:39:22 -0700253 status = netif_rx_ni(skb);
Joe Perchesa475f602010-02-17 10:30:24 +0000254 if (status != NET_RX_SUCCESS)
255 netif_dbg(dev, rx_err, dev->net,
256 "netif_rx status %d\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257}
David Brownell2e55cc72005-08-31 09:53:10 -0700258EXPORT_SYMBOL_GPL(usbnet_skb_return);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261/*-------------------------------------------------------------------------
262 *
263 * Network Device Driver (peer link to "Host Device", from USB host)
264 *
265 *-------------------------------------------------------------------------*/
266
Stephen Hemminger777baa42009-03-20 19:35:54 +0000267int usbnet_change_mtu (struct net_device *net, int new_mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268{
269 struct usbnet *dev = netdev_priv(net);
David Brownellf29fc252005-08-31 09:52:31 -0700270 int ll_mtu = new_mtu + net->hard_header_len;
Jamie Paintera99c1942006-07-27 14:17:28 -0400271 int old_hard_mtu = dev->hard_mtu;
272 int old_rx_urb_size = dev->rx_urb_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
Jamie Paintera99c1942006-07-27 14:17:28 -0400274 if (new_mtu <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 // no second zero-length packet read wanted after mtu-sized packets
David Brownellf29fc252005-08-31 09:52:31 -0700277 if ((ll_mtu % dev->maxpacket) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 return -EDOM;
279 net->mtu = new_mtu;
Jamie Paintera99c1942006-07-27 14:17:28 -0400280
281 dev->hard_mtu = net->mtu + net->hard_header_len;
282 if (dev->rx_urb_size == old_hard_mtu) {
283 dev->rx_urb_size = dev->hard_mtu;
284 if (dev->rx_urb_size > old_rx_urb_size)
285 usbnet_unlink_rx_urbs(dev);
286 }
287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 return 0;
289}
Stephen Hemminger777baa42009-03-20 19:35:54 +0000290EXPORT_SYMBOL_GPL(usbnet_change_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800292/* The caller must hold list->lock */
293static void __usbnet_queue_skb(struct sk_buff_head *list,
294 struct sk_buff *newsk, enum skb_state state)
295{
296 struct skb_data *entry = (struct skb_data *) newsk->cb;
297
298 __skb_queue_tail(list, newsk);
299 entry->state = state;
300}
301
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302/*-------------------------------------------------------------------------*/
303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304/* some LK 2.4 HCDs oopsed if we freed or resubmitted urbs from
305 * completion callbacks. 2.5 should have fixed those bugs...
306 */
307
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800308static enum skb_state defer_bh(struct usbnet *dev, struct sk_buff *skb,
309 struct sk_buff_head *list, enum skb_state state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 unsigned long flags;
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800312 enum skb_state old_state;
313 struct skb_data *entry = (struct skb_data *) skb->cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
David S. Miller8728b832005-08-09 19:25:21 -0700315 spin_lock_irqsave(&list->lock, flags);
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800316 old_state = entry->state;
317 entry->state = state;
David S. Miller8728b832005-08-09 19:25:21 -0700318 __skb_unlink(skb, list);
319 spin_unlock(&list->lock);
320 spin_lock(&dev->done.lock);
321 __skb_queue_tail(&dev->done, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 if (dev->done.qlen == 1)
Hemant Kumar1e8ddb52012-07-02 13:39:22 -0700323 queue_work(usbnet_wq, &dev->bh_w);
David S. Miller8728b832005-08-09 19:25:21 -0700324 spin_unlock_irqrestore(&dev->done.lock, flags);
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800325 return old_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326}
327
328/* some work can't be done in tasklets, so we use keventd
329 *
330 * NOTE: annoying asymmetry: if it's active, schedule_work() fails,
331 * but tasklet_schedule() doesn't. hope the failure is rare.
332 */
David Brownell2e55cc72005-08-31 09:53:10 -0700333void usbnet_defer_kevent (struct usbnet *dev, int work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334{
335 set_bit (work, &dev->flags);
Steve Glendinning5ae14242012-11-08 06:26:21 +0000336 if (!schedule_work (&dev->kevent)) {
337 if (net_ratelimit())
338 netdev_err(dev->net, "kevent %d may have been dropped\n", work);
339 } else {
Joe Perches60b86752010-02-17 10:30:23 +0000340 netdev_dbg(dev->net, "kevent %d scheduled\n", work);
Steve Glendinning5ae14242012-11-08 06:26:21 +0000341 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342}
David Brownell2e55cc72005-08-31 09:53:10 -0700343EXPORT_SYMBOL_GPL(usbnet_defer_kevent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
345/*-------------------------------------------------------------------------*/
346
David S. Millerdacb3972010-08-10 02:50:55 -0700347static int rx_submit (struct usbnet *dev, struct urb *urb, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348{
349 struct sk_buff *skb;
350 struct skb_data *entry;
Hemant Kumar131eb4b2012-11-26 19:47:18 -0800351 usb_complete_t complete_fn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 int retval = 0;
353 unsigned long lockflags;
David Brownell2e55cc72005-08-31 09:53:10 -0700354 size_t size = dev->rx_urb_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Eric Dumazet7bdd4022012-03-14 06:56:25 +0000356 skb = __netdev_alloc_skb_ip_align(dev->net, size, flags);
357 if (!skb) {
Joe Perchesa475f602010-02-17 10:30:24 +0000358 netif_dbg(dev, rx_err, dev->net, "no rx skb\n");
David Brownell2e55cc72005-08-31 09:53:10 -0700359 usbnet_defer_kevent (dev, EVENT_RX_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 usb_free_urb (urb);
David S. Millerdacb3972010-08-10 02:50:55 -0700361 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
Hemant Kumar6d2c7472012-03-06 23:39:29 -0800364 if (dev->net->type != ARPHRD_RAWIP)
365 skb_reserve(skb, NET_IP_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
367 entry = (struct skb_data *) skb->cb;
368 entry->urb = urb;
369 entry->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 entry->length = 0;
371
Hemant Kumar131eb4b2012-11-26 19:47:18 -0800372 if (dev->driver_info->rx_complete)
373 complete_fn = dev->driver_info->rx_complete;
374 else
375 complete_fn = rx_complete;
376
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 usb_fill_bulk_urb (urb, dev->udev, dev->in,
Hemant Kumar131eb4b2012-11-26 19:47:18 -0800378 skb->data, size, complete_fn, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
380 spin_lock_irqsave (&dev->rxq.lock, lockflags);
381
Joe Perches8e95a202009-12-03 07:58:21 +0000382 if (netif_running (dev->net) &&
383 netif_device_present (dev->net) &&
Oliver Neukum69ee4722009-12-03 15:31:18 -0800384 !test_bit (EVENT_RX_HALT, &dev->flags) &&
385 !test_bit (EVENT_DEV_ASLEEP, &dev->flags)) {
David Brownell18ab4582007-05-25 12:31:32 -0700386 switch (retval = usb_submit_urb (urb, GFP_ATOMIC)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 case -EPIPE:
David Brownell2e55cc72005-08-31 09:53:10 -0700388 usbnet_defer_kevent (dev, EVENT_RX_HALT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 break;
390 case -ENOMEM:
David Brownell2e55cc72005-08-31 09:53:10 -0700391 usbnet_defer_kevent (dev, EVENT_RX_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 break;
393 case -ENODEV:
Joe Perchesa475f602010-02-17 10:30:24 +0000394 netif_dbg(dev, ifdown, dev->net, "device gone\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 netif_device_detach (dev->net);
396 break;
David S. Millerdacb3972010-08-10 02:50:55 -0700397 case -EHOSTUNREACH:
398 retval = -ENOLINK;
399 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 default:
Joe Perchesa475f602010-02-17 10:30:24 +0000401 netif_dbg(dev, rx_err, dev->net,
402 "rx submit, %d\n", retval);
Hemant Kumar1e8ddb52012-07-02 13:39:22 -0700403 queue_work(usbnet_wq, &dev->bh_w);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 break;
405 case 0:
Hemant Kumar279188a2012-04-03 13:32:48 -0700406 usb_mark_last_busy(dev->udev);
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800407 __usbnet_queue_skb(&dev->rxq, skb, rx_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 }
409 } else {
Joe Perchesa475f602010-02-17 10:30:24 +0000410 netif_dbg(dev, ifdown, dev->net, "rx: stopped\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 retval = -ENOLINK;
412 }
413 spin_unlock_irqrestore (&dev->rxq.lock, lockflags);
414 if (retval) {
415 dev_kfree_skb_any (skb);
416 usb_free_urb (urb);
417 }
David S. Millerdacb3972010-08-10 02:50:55 -0700418 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419}
420
421
422/*-------------------------------------------------------------------------*/
423
424static inline void rx_process (struct usbnet *dev, struct sk_buff *skb)
425{
Joe Perches8e95a202009-12-03 07:58:21 +0000426 if (dev->driver_info->rx_fixup &&
Andrzej Zaborowski7a635ea2011-03-28 12:56:33 +0000427 !dev->driver_info->rx_fixup (dev, skb)) {
428 /* With RX_ASSEMBLE, rx_fixup() must update counters */
429 if (!(dev->driver_info->flags & FLAG_RX_ASSEMBLE))
430 dev->net->stats.rx_errors++;
431 goto done;
432 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 // else network stack removes extra byte if we forced a short packet
434
Emil Goode4d4d28c2014-02-13 17:50:19 +0100435 /* all data was already cloned from skb inside the driver */
436 if (dev->driver_info->flags & FLAG_MULTI_PACKET)
437 goto done;
438
439 if (skb->len < ETH_HLEN) {
440 dev->net->stats.rx_errors++;
441 dev->net->stats.rx_length_errors++;
442 netif_dbg(dev, rx_err, dev->net, "rx length %d\n", skb->len);
443 } else {
444 usbnet_skb_return(dev, skb);
Alexey Orishko073285f2010-11-29 23:23:27 +0000445 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 }
Alexey Orishko073285f2010-11-29 23:23:27 +0000447
Andrzej Zaborowski7a635ea2011-03-28 12:56:33 +0000448done:
Alexey Orishko073285f2010-11-29 23:23:27 +0000449 skb_queue_tail(&dev->done, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450}
451
452/*-------------------------------------------------------------------------*/
453
Hemant Kumar131eb4b2012-11-26 19:47:18 -0800454void rx_complete(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455{
456 struct sk_buff *skb = (struct sk_buff *) urb->context;
457 struct skb_data *entry = (struct skb_data *) skb->cb;
458 struct usbnet *dev = entry->dev;
459 int urb_status = urb->status;
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800460 enum skb_state state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
462 skb_put (skb, urb->actual_length);
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800463 state = rx_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 entry->urb = NULL;
465
466 switch (urb_status) {
David Brownell18ab4582007-05-25 12:31:32 -0700467 /* success */
468 case 0:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 break;
470
David Brownell18ab4582007-05-25 12:31:32 -0700471 /* stalls need manual reset. this is rare ... except that
472 * when going through USB 2.0 TTs, unplug appears this way.
Jean Delvare3ac49a12009-06-04 16:20:28 +0200473 * we avoid the highspeed version of the ETIMEDOUT/EILSEQ
David Brownell18ab4582007-05-25 12:31:32 -0700474 * storm, recovering as needed.
475 */
476 case -EPIPE:
Herbert Xu79638372009-06-29 16:53:28 +0000477 dev->net->stats.rx_errors++;
David Brownell2e55cc72005-08-31 09:53:10 -0700478 usbnet_defer_kevent (dev, EVENT_RX_HALT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 // FALLTHROUGH
480
David Brownell18ab4582007-05-25 12:31:32 -0700481 /* software-driven interface shutdown */
482 case -ECONNRESET: /* async unlink */
483 case -ESHUTDOWN: /* hardware gone */
Joe Perchesa475f602010-02-17 10:30:24 +0000484 netif_dbg(dev, ifdown, dev->net,
485 "rx shutdown, code %d\n", urb_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 goto block;
487
David Brownell18ab4582007-05-25 12:31:32 -0700488 /* we get controller i/o faults during khubd disconnect() delays.
489 * throttle down resubmits, to avoid log floods; just temporarily,
490 * so we still recover when the fault isn't a khubd delay.
491 */
492 case -EPROTO:
493 case -ETIME:
494 case -EILSEQ:
Herbert Xu79638372009-06-29 16:53:28 +0000495 dev->net->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 if (!timer_pending (&dev->delay)) {
497 mod_timer (&dev->delay, jiffies + THROTTLE_JIFFIES);
Joe Perchesa475f602010-02-17 10:30:24 +0000498 netif_dbg(dev, link, dev->net,
499 "rx throttle %d\n", urb_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 }
501block:
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800502 state = rx_cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 entry->urb = urb;
504 urb = NULL;
505 break;
506
David Brownell18ab4582007-05-25 12:31:32 -0700507 /* data overrun ... flush fifo? */
508 case -EOVERFLOW:
Herbert Xu79638372009-06-29 16:53:28 +0000509 dev->net->stats.rx_over_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 // FALLTHROUGH
David Brownellcb1cebb2007-02-15 18:52:30 -0800511
David Brownell18ab4582007-05-25 12:31:32 -0700512 default:
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800513 state = rx_cleanup;
Herbert Xu79638372009-06-29 16:53:28 +0000514 dev->net->stats.rx_errors++;
Joe Perchesa475f602010-02-17 10:30:24 +0000515 netif_dbg(dev, rx_err, dev->net, "rx status %d\n", urb_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 break;
517 }
518
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800519 state = defer_bh(dev, skb, &dev->rxq, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
521 if (urb) {
Joe Perches8e95a202009-12-03 07:58:21 +0000522 if (netif_running (dev->net) &&
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800523 !test_bit (EVENT_RX_HALT, &dev->flags) &&
524 state != unlink_start) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 rx_submit (dev, urb, GFP_ATOMIC);
Oliver Neukum8a783352012-03-03 18:45:07 +0100526 usb_mark_last_busy(dev->udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 return;
528 }
529 usb_free_urb (urb);
530 }
Joe Perchesa475f602010-02-17 10:30:24 +0000531 netif_dbg(dev, rx_err, dev->net, "no read resubmitted\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532}
Hemant Kumar131eb4b2012-11-26 19:47:18 -0800533EXPORT_SYMBOL_GPL(rx_complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
David Howells7d12e782006-10-05 14:55:46 +0100535static void intr_complete (struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536{
537 struct usbnet *dev = urb->context;
538 int status = urb->status;
539
540 switch (status) {
David Brownell18ab4582007-05-25 12:31:32 -0700541 /* success */
542 case 0:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 dev->driver_info->status(dev, urb);
544 break;
545
David Brownell18ab4582007-05-25 12:31:32 -0700546 /* software-driven interface shutdown */
547 case -ENOENT: /* urb killed */
548 case -ESHUTDOWN: /* hardware gone */
Joe Perchesa475f602010-02-17 10:30:24 +0000549 netif_dbg(dev, ifdown, dev->net,
550 "intr shutdown, code %d\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 return;
552
David Brownell18ab4582007-05-25 12:31:32 -0700553 /* NOTE: not throttling like RX/TX, since this endpoint
554 * already polls infrequently
555 */
556 default:
Joe Perches60b86752010-02-17 10:30:23 +0000557 netdev_dbg(dev->net, "intr status %d\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 break;
559 }
560
561 if (!netif_running (dev->net))
562 return;
563
564 memset(urb->transfer_buffer, 0, urb->transfer_buffer_length);
565 status = usb_submit_urb (urb, GFP_ATOMIC);
Joe Perchesa475f602010-02-17 10:30:24 +0000566 if (status != 0)
567 netif_err(dev, timer, dev->net,
568 "intr resubmit --> %d\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569}
570
571/*-------------------------------------------------------------------------*/
Jussi Kivilinna7834ddb2009-08-11 22:57:16 +0300572void usbnet_pause_rx(struct usbnet *dev)
573{
574 set_bit(EVENT_RX_PAUSED, &dev->flags);
575
Joe Perchesa475f602010-02-17 10:30:24 +0000576 netif_dbg(dev, rx_status, dev->net, "paused rx queue enabled\n");
Jussi Kivilinna7834ddb2009-08-11 22:57:16 +0300577}
578EXPORT_SYMBOL_GPL(usbnet_pause_rx);
579
580void usbnet_resume_rx(struct usbnet *dev)
581{
582 struct sk_buff *skb;
583 int num = 0;
584
585 clear_bit(EVENT_RX_PAUSED, &dev->flags);
586
587 while ((skb = skb_dequeue(&dev->rxq_pause)) != NULL) {
588 usbnet_skb_return(dev, skb);
589 num++;
590 }
591
Hemant Kumar1e8ddb52012-07-02 13:39:22 -0700592 queue_work(usbnet_wq, &dev->bh_w);
Jussi Kivilinna7834ddb2009-08-11 22:57:16 +0300593
Joe Perchesa475f602010-02-17 10:30:24 +0000594 netif_dbg(dev, rx_status, dev->net,
595 "paused rx queue disabled, %d skbs requeued\n", num);
Jussi Kivilinna7834ddb2009-08-11 22:57:16 +0300596}
597EXPORT_SYMBOL_GPL(usbnet_resume_rx);
598
599void usbnet_purge_paused_rxq(struct usbnet *dev)
600{
601 skb_queue_purge(&dev->rxq_pause);
602}
603EXPORT_SYMBOL_GPL(usbnet_purge_paused_rxq);
604
605/*-------------------------------------------------------------------------*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
607// unlink pending rx/tx; completion handlers do all other cleanup
608
609static int unlink_urbs (struct usbnet *dev, struct sk_buff_head *q)
610{
611 unsigned long flags;
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800612 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 int count = 0;
614
615 spin_lock_irqsave (&q->lock, flags);
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800616 while (!skb_queue_empty(q)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 struct skb_data *entry;
618 struct urb *urb;
619 int retval;
620
Ming Lei5b6e9bc2012-04-26 11:33:46 +0800621 skb_queue_walk(q, skb) {
622 entry = (struct skb_data *) skb->cb;
623 if (entry->state != unlink_start)
624 goto found;
625 }
626 break;
627found:
628 entry->state = unlink_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 urb = entry->urb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
tom.leiming@gmail.com0956a8c2012-03-22 03:22:18 +0000631 /*
632 * Get reference count of the URB to avoid it to be
633 * freed during usb_unlink_urb, which may trigger
634 * use-after-free problem inside usb_unlink_urb since
635 * usb_unlink_urb is always racing with .complete
636 * handler(include defer_bh).
637 */
638 usb_get_urb(urb);
Sebastian Siewior4231d472012-03-07 10:19:28 +0000639 spin_unlock_irqrestore(&q->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 // during some PM-driven resume scenarios,
641 // these (async) unlinks complete immediately
642 retval = usb_unlink_urb (urb);
643 if (retval != -EINPROGRESS && retval != 0)
Joe Perches60b86752010-02-17 10:30:23 +0000644 netdev_dbg(dev->net, "unlink urb err, %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 else
646 count++;
tom.leiming@gmail.com0956a8c2012-03-22 03:22:18 +0000647 usb_put_urb(urb);
Sebastian Siewior4231d472012-03-07 10:19:28 +0000648 spin_lock_irqsave(&q->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 }
650 spin_unlock_irqrestore (&q->lock, flags);
651 return count;
652}
653
Jamie Paintera99c1942006-07-27 14:17:28 -0400654// Flush all pending rx urbs
655// minidrivers may need to do this when the MTU changes
656
657void usbnet_unlink_rx_urbs(struct usbnet *dev)
658{
659 if (netif_running(dev->net)) {
660 (void) unlink_urbs (dev, &dev->rxq);
Hemant Kumar1e8ddb52012-07-02 13:39:22 -0700661 queue_work(usbnet_wq, &dev->bh_w);
Jamie Paintera99c1942006-07-27 14:17:28 -0400662 }
663}
664EXPORT_SYMBOL_GPL(usbnet_unlink_rx_urbs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
666/*-------------------------------------------------------------------------*/
667
668// precondition: never called in_interrupt
Hemant Kumar131eb4b2012-11-26 19:47:18 -0800669void usbnet_terminate_urbs(struct usbnet *dev)
Oliver Neukum69ee4722009-12-03 15:31:18 -0800670{
Oliver Neukum69ee4722009-12-03 15:31:18 -0800671 DECLARE_WAITQUEUE(wait, current);
672 int temp;
673
674 /* ensure there are no more active urbs */
675 add_wait_queue(&unlink_wakeup, &wait);
676 set_current_state(TASK_UNINTERRUPTIBLE);
677 dev->wait = &unlink_wakeup;
678 temp = unlink_urbs(dev, &dev->txq) +
679 unlink_urbs(dev, &dev->rxq);
680
681 /* maybe wait for deletions to finish. */
682 while (!skb_queue_empty(&dev->rxq)
683 && !skb_queue_empty(&dev->txq)
684 && !skb_queue_empty(&dev->done)) {
Kulikov Vasiliy66cc42a2010-07-25 22:25:42 +0000685 schedule_timeout(msecs_to_jiffies(UNLINK_TIMEOUT_MS));
Oliver Neukum69ee4722009-12-03 15:31:18 -0800686 set_current_state(TASK_UNINTERRUPTIBLE);
Joe Perchesa475f602010-02-17 10:30:24 +0000687 netif_dbg(dev, ifdown, dev->net,
688 "waited for %d urb completions\n", temp);
Oliver Neukum69ee4722009-12-03 15:31:18 -0800689 }
690 set_current_state(TASK_RUNNING);
691 dev->wait = NULL;
692 remove_wait_queue(&unlink_wakeup, &wait);
693}
Hemant Kumar131eb4b2012-11-26 19:47:18 -0800694EXPORT_SYMBOL_GPL(usbnet_terminate_urbs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
Stephen Hemminger777baa42009-03-20 19:35:54 +0000696int usbnet_stop (struct net_device *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697{
698 struct usbnet *dev = netdev_priv(net);
Jussi Kivilinnaa33e9e72009-06-16 17:17:27 +0300699 struct driver_info *info = dev->driver_info;
Jussi Kivilinnaa33e9e72009-06-16 17:17:27 +0300700 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
Ming Lei75bd0cb2011-04-28 22:37:09 +0000702 clear_bit(EVENT_DEV_OPEN, &dev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 netif_stop_queue (net);
704
Joe Perchesa475f602010-02-17 10:30:24 +0000705 netif_info(dev, ifdown, dev->net,
Ben Hutchings8ccef432010-06-08 08:20:59 +0000706 "stop stats: rx/tx %lu/%lu, errs %lu/%lu\n",
Joe Perchesa475f602010-02-17 10:30:24 +0000707 net->stats.rx_packets, net->stats.tx_packets,
708 net->stats.rx_errors, net->stats.tx_errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
Jussi Kivilinnaa33e9e72009-06-16 17:17:27 +0300710 /* allow minidriver to stop correctly (wireless devices to turn off
711 * radio etc) */
712 if (info->stop) {
713 retval = info->stop(dev);
Joe Perchesa475f602010-02-17 10:30:24 +0000714 if (retval < 0)
715 netif_info(dev, ifdown, dev->net,
716 "stop fail (%d) usbnet usb-%s-%s, %s\n",
717 retval,
718 dev->udev->bus->bus_name, dev->udev->devpath,
719 info->description);
Jussi Kivilinnaa33e9e72009-06-16 17:17:27 +0300720 }
721
Oliver Neukum69ee4722009-12-03 15:31:18 -0800722 if (!(info->flags & FLAG_AVOID_UNLINK_URBS))
723 usbnet_terminate_urbs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
725 usb_kill_urb(dev->interrupt);
726
Jussi Kivilinna7834ddb2009-08-11 22:57:16 +0300727 usbnet_purge_paused_rxq(dev);
728
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 /* deferred work (task, timer, softirq) must also stop.
730 * can't flush_scheduled_work() until we drop rtnl (later),
731 * else workers could deadlock; so make workers a NOP.
732 */
733 dev->flags = 0;
734 del_timer_sync (&dev->delay);
Hemant Kumar1e8ddb52012-07-02 13:39:22 -0700735 cancel_work_sync(&dev->bh_w);
Oliver Neukum69ee4722009-12-03 15:31:18 -0800736 if (info->manage_power)
737 info->manage_power(dev, 0);
738 else
739 usb_autopm_put_interface(dev->intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
741 return 0;
742}
Stephen Hemminger777baa42009-03-20 19:35:54 +0000743EXPORT_SYMBOL_GPL(usbnet_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
745/*-------------------------------------------------------------------------*/
746
747// posts reads, and enables write queuing
748
749// precondition: never called in_interrupt
750
Stephen Hemminger777baa42009-03-20 19:35:54 +0000751int usbnet_open (struct net_device *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752{
753 struct usbnet *dev = netdev_priv(net);
Oliver Neukuma11a6542007-08-03 13:52:19 +0200754 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 struct driver_info *info = dev->driver_info;
756
Oliver Neukuma11a6542007-08-03 13:52:19 +0200757 if ((retval = usb_autopm_get_interface(dev->intf)) < 0) {
Joe Perchesa475f602010-02-17 10:30:24 +0000758 netif_info(dev, ifup, dev->net,
759 "resumption fail (%d) usbnet usb-%s-%s, %s\n",
760 retval,
761 dev->udev->bus->bus_name,
762 dev->udev->devpath,
763 info->description);
Oliver Neukuma11a6542007-08-03 13:52:19 +0200764 goto done_nopm;
765 }
766
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 // put into "known safe" state
768 if (info->reset && (retval = info->reset (dev)) < 0) {
Joe Perchesa475f602010-02-17 10:30:24 +0000769 netif_info(dev, ifup, dev->net,
770 "open reset fail (%d) usbnet usb-%s-%s, %s\n",
771 retval,
772 dev->udev->bus->bus_name,
773 dev->udev->devpath,
774 info->description);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 goto done;
776 }
777
778 // insist peer be connected
779 if (info->check_connect && (retval = info->check_connect (dev)) < 0) {
Joe Perchesa475f602010-02-17 10:30:24 +0000780 netif_dbg(dev, ifup, dev->net, "can't open; %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 goto done;
782 }
783
784 /* start any status interrupt transfer */
785 if (dev->interrupt) {
786 retval = usb_submit_urb (dev->interrupt, GFP_KERNEL);
787 if (retval < 0) {
Joe Perchesa475f602010-02-17 10:30:24 +0000788 netif_err(dev, ifup, dev->net,
789 "intr submit %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 goto done;
791 }
792 }
793
Paul Stewart68972ef2011-04-28 05:43:37 +0000794 set_bit(EVENT_DEV_OPEN, &dev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 netif_start_queue (net);
Joe Perchesa475f602010-02-17 10:30:24 +0000796 netif_info(dev, ifup, dev->net,
797 "open: enable queueing (rx %d, tx %d) mtu %d %s framing\n",
798 (int)RX_QLEN(dev), (int)TX_QLEN(dev),
799 dev->net->mtu,
800 (dev->driver_info->flags & FLAG_FRAMING_NC) ? "NetChip" :
801 (dev->driver_info->flags & FLAG_FRAMING_GL) ? "GeneSys" :
802 (dev->driver_info->flags & FLAG_FRAMING_Z) ? "Zaurus" :
803 (dev->driver_info->flags & FLAG_FRAMING_RN) ? "RNDIS" :
804 (dev->driver_info->flags & FLAG_FRAMING_AX) ? "ASIX" :
805 "simple");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
807 // delay posting reads until we're fully open
Hemant Kumar1e8ddb52012-07-02 13:39:22 -0700808 queue_work(usbnet_wq, &dev->bh_w);
Oliver Neukum69ee4722009-12-03 15:31:18 -0800809 if (info->manage_power) {
810 retval = info->manage_power(dev, 1);
811 if (retval < 0)
812 goto done;
813 usb_autopm_put_interface(dev->intf);
814 }
Oliver Neukuma11a6542007-08-03 13:52:19 +0200815 return retval;
Joe Perchesa475f602010-02-17 10:30:24 +0000816
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817done:
Oliver Neukuma11a6542007-08-03 13:52:19 +0200818 usb_autopm_put_interface(dev->intf);
819done_nopm:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 return retval;
821}
Stephen Hemminger777baa42009-03-20 19:35:54 +0000822EXPORT_SYMBOL_GPL(usbnet_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
824/*-------------------------------------------------------------------------*/
825
David Brownell2e55cc72005-08-31 09:53:10 -0700826/* ethtool methods; minidrivers may need to add some more, but
827 * they'll probably want to use this base set.
828 */
829
Arnd Bergmannc41286f2006-10-09 00:08:01 +0200830int usbnet_get_settings (struct net_device *net, struct ethtool_cmd *cmd)
831{
832 struct usbnet *dev = netdev_priv(net);
833
834 if (!dev->mii.mdio_read)
835 return -EOPNOTSUPP;
836
837 return mii_ethtool_gset(&dev->mii, cmd);
838}
839EXPORT_SYMBOL_GPL(usbnet_get_settings);
840
841int usbnet_set_settings (struct net_device *net, struct ethtool_cmd *cmd)
842{
843 struct usbnet *dev = netdev_priv(net);
844 int retval;
845
846 if (!dev->mii.mdio_write)
847 return -EOPNOTSUPP;
848
849 retval = mii_ethtool_sset(&dev->mii, cmd);
850
851 /* link speed/duplex might have changed */
852 if (dev->driver_info->link_reset)
853 dev->driver_info->link_reset(dev);
854
855 return retval;
856
857}
858EXPORT_SYMBOL_GPL(usbnet_set_settings);
859
Arnd Bergmannc41286f2006-10-09 00:08:01 +0200860u32 usbnet_get_link (struct net_device *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861{
862 struct usbnet *dev = netdev_priv(net);
863
David Brownellf29fc252005-08-31 09:52:31 -0700864 /* If a check_connect is defined, return its result */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 if (dev->driver_info->check_connect)
866 return dev->driver_info->check_connect (dev) == 0;
867
Arnd Bergmannc41286f2006-10-09 00:08:01 +0200868 /* if the device has mii operations, use those */
869 if (dev->mii.mdio_read)
870 return mii_link_ok(&dev->mii);
871
Bjørn Mork05ffb3e2009-03-01 20:45:40 -0800872 /* Otherwise, dtrt for drivers calling netif_carrier_{on,off} */
873 return ethtool_op_get_link(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874}
Arnd Bergmannc41286f2006-10-09 00:08:01 +0200875EXPORT_SYMBOL_GPL(usbnet_get_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
David Brownell18ee91fa2006-11-02 12:29:12 -0800877int usbnet_nway_reset(struct net_device *net)
878{
879 struct usbnet *dev = netdev_priv(net);
880
881 if (!dev->mii.mdio_write)
882 return -EOPNOTSUPP;
883
884 return mii_nway_restart(&dev->mii);
885}
886EXPORT_SYMBOL_GPL(usbnet_nway_reset);
887
David Brownell18ee91fa2006-11-02 12:29:12 -0800888void usbnet_get_drvinfo (struct net_device *net, struct ethtool_drvinfo *info)
889{
890 struct usbnet *dev = netdev_priv(net);
891
David Brownell296c0242007-04-17 16:10:10 -0700892 strncpy (info->driver, dev->driver_name, sizeof info->driver);
David Brownell18ee91fa2006-11-02 12:29:12 -0800893 strncpy (info->version, DRIVER_VERSION, sizeof info->version);
894 strncpy (info->fw_version, dev->driver_info->description,
895 sizeof info->fw_version);
896 usb_make_path (dev->udev, info->bus_info, sizeof info->bus_info);
897}
898EXPORT_SYMBOL_GPL(usbnet_get_drvinfo);
899
David Brownell2e55cc72005-08-31 09:53:10 -0700900u32 usbnet_get_msglevel (struct net_device *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901{
902 struct usbnet *dev = netdev_priv(net);
903
904 return dev->msg_enable;
905}
David Brownell2e55cc72005-08-31 09:53:10 -0700906EXPORT_SYMBOL_GPL(usbnet_get_msglevel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
David Brownell2e55cc72005-08-31 09:53:10 -0700908void usbnet_set_msglevel (struct net_device *net, u32 level)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909{
910 struct usbnet *dev = netdev_priv(net);
911
912 dev->msg_enable = level;
913}
David Brownell2e55cc72005-08-31 09:53:10 -0700914EXPORT_SYMBOL_GPL(usbnet_set_msglevel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
David Brownell2e55cc72005-08-31 09:53:10 -0700916/* drivers may override default ethtool_ops in their bind() routine */
Stephen Hemminger0fc0b732009-09-02 01:03:33 -0700917static const struct ethtool_ops usbnet_ethtool_ops = {
Arnd Bergmannc41286f2006-10-09 00:08:01 +0200918 .get_settings = usbnet_get_settings,
919 .set_settings = usbnet_set_settings,
David Brownell2e55cc72005-08-31 09:53:10 -0700920 .get_link = usbnet_get_link,
Arnd Bergmannc41286f2006-10-09 00:08:01 +0200921 .nway_reset = usbnet_nway_reset,
David Brownell18ee91fa2006-11-02 12:29:12 -0800922 .get_drvinfo = usbnet_get_drvinfo,
David Brownell2e55cc72005-08-31 09:53:10 -0700923 .get_msglevel = usbnet_get_msglevel,
924 .set_msglevel = usbnet_set_msglevel,
925};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
927/*-------------------------------------------------------------------------*/
928
929/* work that cannot be done in interrupt context uses keventd.
930 *
931 * NOTE: with 2.5 we could do more of this using completion callbacks,
932 * especially now that control transfers can be queued.
933 */
934static void
David Howellsc4028952006-11-22 14:57:56 +0000935kevent (struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936{
David Howellsc4028952006-11-22 14:57:56 +0000937 struct usbnet *dev =
938 container_of(work, struct usbnet, kevent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 int status;
940
941 /* usb_clear_halt() needs a thread context */
942 if (test_bit (EVENT_TX_HALT, &dev->flags)) {
943 unlink_urbs (dev, &dev->txq);
Oliver Neukum69ee4722009-12-03 15:31:18 -0800944 status = usb_autopm_get_interface(dev->intf);
945 if (status < 0)
946 goto fail_pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 status = usb_clear_halt (dev->udev, dev->out);
Oliver Neukum69ee4722009-12-03 15:31:18 -0800948 usb_autopm_put_interface(dev->intf);
Joe Perches8e95a202009-12-03 07:58:21 +0000949 if (status < 0 &&
950 status != -EPIPE &&
951 status != -ESHUTDOWN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 if (netif_msg_tx_err (dev))
Oliver Neukum69ee4722009-12-03 15:31:18 -0800953fail_pipe:
Joe Perches60b86752010-02-17 10:30:23 +0000954 netdev_err(dev->net, "can't clear tx halt, status %d\n",
955 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 } else {
957 clear_bit (EVENT_TX_HALT, &dev->flags);
David Brownellf29fc252005-08-31 09:52:31 -0700958 if (status != -ESHUTDOWN)
959 netif_wake_queue (dev->net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 }
961 }
962 if (test_bit (EVENT_RX_HALT, &dev->flags)) {
963 unlink_urbs (dev, &dev->rxq);
Oliver Neukum69ee4722009-12-03 15:31:18 -0800964 status = usb_autopm_get_interface(dev->intf);
965 if (status < 0)
966 goto fail_halt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 status = usb_clear_halt (dev->udev, dev->in);
Oliver Neukum69ee4722009-12-03 15:31:18 -0800968 usb_autopm_put_interface(dev->intf);
Joe Perches8e95a202009-12-03 07:58:21 +0000969 if (status < 0 &&
970 status != -EPIPE &&
971 status != -ESHUTDOWN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 if (netif_msg_rx_err (dev))
Oliver Neukum69ee4722009-12-03 15:31:18 -0800973fail_halt:
Joe Perches60b86752010-02-17 10:30:23 +0000974 netdev_err(dev->net, "can't clear rx halt, status %d\n",
975 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 } else {
977 clear_bit (EVENT_RX_HALT, &dev->flags);
Hemant Kumar1e8ddb52012-07-02 13:39:22 -0700978 queue_work(usbnet_wq, &dev->bh_w);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 }
980 }
981
982 /* tasklet could resubmit itself forever if memory is tight */
983 if (test_bit (EVENT_RX_MEMORY, &dev->flags)) {
984 struct urb *urb = NULL;
David S. Millerdacb3972010-08-10 02:50:55 -0700985 int resched = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
987 if (netif_running (dev->net))
988 urb = usb_alloc_urb (0, GFP_KERNEL);
989 else
990 clear_bit (EVENT_RX_MEMORY, &dev->flags);
991 if (urb != NULL) {
992 clear_bit (EVENT_RX_MEMORY, &dev->flags);
Oliver Neukum69ee4722009-12-03 15:31:18 -0800993 status = usb_autopm_get_interface(dev->intf);
Jesper Juhlab607072011-02-10 10:58:45 +0000994 if (status < 0) {
995 usb_free_urb(urb);
Oliver Neukum69ee4722009-12-03 15:31:18 -0800996 goto fail_lowmem;
Jesper Juhlab607072011-02-10 10:58:45 +0000997 }
David S. Millerdacb3972010-08-10 02:50:55 -0700998 if (rx_submit (dev, urb, GFP_KERNEL) == -ENOLINK)
999 resched = 0;
Oliver Neukum69ee4722009-12-03 15:31:18 -08001000 usb_autopm_put_interface(dev->intf);
1001fail_lowmem:
David S. Millerdacb3972010-08-10 02:50:55 -07001002 if (resched)
Hemant Kumar1e8ddb52012-07-02 13:39:22 -07001003 queue_work(usbnet_wq, &dev->bh_w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 }
1005 }
1006
David Hollis7ea13c92005-04-22 15:07:02 -07001007 if (test_bit (EVENT_LINK_RESET, &dev->flags)) {
David Brownellcb1cebb2007-02-15 18:52:30 -08001008 struct driver_info *info = dev->driver_info;
David Hollis7ea13c92005-04-22 15:07:02 -07001009 int retval = 0;
1010
1011 clear_bit (EVENT_LINK_RESET, &dev->flags);
Oliver Neukum69ee4722009-12-03 15:31:18 -08001012 status = usb_autopm_get_interface(dev->intf);
1013 if (status < 0)
1014 goto skip_reset;
David Hollis7ea13c92005-04-22 15:07:02 -07001015 if(info->link_reset && (retval = info->link_reset(dev)) < 0) {
Oliver Neukum69ee4722009-12-03 15:31:18 -08001016 usb_autopm_put_interface(dev->intf);
1017skip_reset:
Joe Perches60b86752010-02-17 10:30:23 +00001018 netdev_info(dev->net, "link reset failed (%d) usbnet usb-%s-%s, %s\n",
1019 retval,
1020 dev->udev->bus->bus_name,
1021 dev->udev->devpath,
1022 info->description);
Oliver Neukum69ee4722009-12-03 15:31:18 -08001023 } else {
1024 usb_autopm_put_interface(dev->intf);
David Hollis7ea13c92005-04-22 15:07:02 -07001025 }
1026 }
1027
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 if (dev->flags)
Joe Perches60b86752010-02-17 10:30:23 +00001029 netdev_dbg(dev->net, "kevent done, flags = 0x%lx\n", dev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030}
1031
1032/*-------------------------------------------------------------------------*/
1033
David Howells7d12e782006-10-05 14:55:46 +01001034static void tx_complete (struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035{
1036 struct sk_buff *skb = (struct sk_buff *) urb->context;
1037 struct skb_data *entry = (struct skb_data *) skb->cb;
1038 struct usbnet *dev = entry->dev;
1039
1040 if (urb->status == 0) {
Alexey Orishko073285f2010-11-29 23:23:27 +00001041 if (!(dev->driver_info->flags & FLAG_MULTI_PACKET))
1042 dev->net->stats.tx_packets++;
Herbert Xu79638372009-06-29 16:53:28 +00001043 dev->net->stats.tx_bytes += entry->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 } else {
Herbert Xu79638372009-06-29 16:53:28 +00001045 dev->net->stats.tx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046
1047 switch (urb->status) {
1048 case -EPIPE:
David Brownell2e55cc72005-08-31 09:53:10 -07001049 usbnet_defer_kevent (dev, EVENT_TX_HALT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 break;
1051
1052 /* software-driven interface shutdown */
1053 case -ECONNRESET: // async unlink
1054 case -ESHUTDOWN: // hardware gone
1055 break;
1056
1057 // like rx, tx gets controller i/o faults during khubd delays
1058 // and so it uses the same throttling mechanism.
Pete Zaitcev38e2bfc2006-09-18 22:49:02 -07001059 case -EPROTO:
1060 case -ETIME:
1061 case -EILSEQ:
Oliver Neukum69ee4722009-12-03 15:31:18 -08001062 usb_mark_last_busy(dev->udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 if (!timer_pending (&dev->delay)) {
1064 mod_timer (&dev->delay,
1065 jiffies + THROTTLE_JIFFIES);
Joe Perchesa475f602010-02-17 10:30:24 +00001066 netif_dbg(dev, link, dev->net,
1067 "tx throttle %d\n", urb->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 }
1069 netif_stop_queue (dev->net);
1070 break;
1071 default:
Joe Perchesa475f602010-02-17 10:30:24 +00001072 netif_dbg(dev, tx_err, dev->net,
1073 "tx err %d\n", entry->urb->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 break;
1075 }
1076 }
1077
Oliver Neukum69ee4722009-12-03 15:31:18 -08001078 usb_autopm_put_interface_async(dev->intf);
Ming Lei5b6e9bc2012-04-26 11:33:46 +08001079 (void) defer_bh(dev, skb, &dev->txq, tx_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080}
1081
1082/*-------------------------------------------------------------------------*/
1083
Stephen Hemminger777baa42009-03-20 19:35:54 +00001084void usbnet_tx_timeout (struct net_device *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085{
1086 struct usbnet *dev = netdev_priv(net);
1087
1088 unlink_urbs (dev, &dev->txq);
Hemant Kumar1e8ddb52012-07-02 13:39:22 -07001089 queue_work(usbnet_wq, &dev->bh_w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090
1091 // FIXME: device recovery -- reset?
1092}
Stephen Hemminger777baa42009-03-20 19:35:54 +00001093EXPORT_SYMBOL_GPL(usbnet_tx_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
1095/*-------------------------------------------------------------------------*/
1096
Stephen Hemminger25a79c42009-08-31 19:50:45 +00001097netdev_tx_t usbnet_start_xmit (struct sk_buff *skb,
1098 struct net_device *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099{
1100 struct usbnet *dev = netdev_priv(net);
1101 int length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 struct urb *urb = NULL;
1103 struct skb_data *entry;
1104 struct driver_info *info = dev->driver_info;
1105 unsigned long flags;
Stephen Hemminger25a79c42009-08-31 19:50:45 +00001106 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107
Konstantin Khlebnikov23ba0792011-11-07 05:54:58 +00001108 if (skb)
1109 skb_tx_timestamp(skb);
Michael Rieschf9b491e2011-09-29 04:06:26 +00001110
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 // some devices want funky USB-level framing, for
1112 // win32 driver (usually) and/or hardware quirks
1113 if (info->tx_fixup) {
1114 skb = info->tx_fixup (dev, skb, GFP_ATOMIC);
1115 if (!skb) {
Alexey Orishko073285f2010-11-29 23:23:27 +00001116 if (netif_msg_tx_err(dev)) {
1117 netif_dbg(dev, tx_err, dev->net, "can't tx_fixup skb\n");
1118 goto drop;
1119 } else {
1120 /* cdc_ncm collected packet; waits for more */
1121 goto not_drop;
1122 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 }
1124 }
1125 length = skb->len;
1126
1127 if (!(urb = usb_alloc_urb (0, GFP_ATOMIC))) {
Joe Perchesa475f602010-02-17 10:30:24 +00001128 netif_dbg(dev, tx_err, dev->net, "no urb\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 goto drop;
1130 }
1131
1132 entry = (struct skb_data *) skb->cb;
1133 entry->urb = urb;
1134 entry->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 entry->length = length;
1136
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 usb_fill_bulk_urb (urb, dev->udev, dev->out,
1138 skb->data, skb->len, tx_complete, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
1140 /* don't assume the hardware handles USB_ZERO_PACKET
1141 * NOTE: strictly conforming cdc-ether devices should expect
1142 * the ZLP here, but ignore the one-byte packet.
Alexey Orishko073285f2010-11-29 23:23:27 +00001143 * NOTE2: CDC NCM specification is different from CDC ECM when
1144 * handling ZLP/short packets, so cdc_ncm driver will make short
1145 * packet itself if needed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 */
Elina Pashevab4d562e2010-04-06 14:23:07 +00001147 if (length % dev->maxpacket == 0) {
1148 if (!(info->flags & FLAG_SEND_ZLP)) {
Alexey Orishko073285f2010-11-29 23:23:27 +00001149 if (!(info->flags & FLAG_MULTI_PACKET)) {
1150 urb->transfer_buffer_length++;
1151 if (skb_tailroom(skb)) {
1152 skb->data[skb->len] = 0;
1153 __skb_put(skb, 1);
1154 }
Elina Pashevab4d562e2010-04-06 14:23:07 +00001155 }
1156 } else
1157 urb->transfer_flags |= URB_ZERO_PACKET;
Peter Korsgaard3e323f32007-06-27 08:48:15 +02001158 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
Oliver Neukum69ee4722009-12-03 15:31:18 -08001160 spin_lock_irqsave(&dev->txq.lock, flags);
1161 retval = usb_autopm_get_interface_async(dev->intf);
1162 if (retval < 0) {
1163 spin_unlock_irqrestore(&dev->txq.lock, flags);
1164 goto drop;
1165 }
1166
1167#ifdef CONFIG_PM
1168 /* if this triggers the device is still a sleep */
1169 if (test_bit(EVENT_DEV_ASLEEP, &dev->flags)) {
1170 /* transmission will be done in resume */
1171 usb_anchor_urb(urb, &dev->deferred);
1172 /* no use to process more packets */
1173 netif_stop_queue(net);
Hemant Kumarfa476f72012-10-09 16:22:18 -07001174 usb_put_urb(urb);
Oliver Neukum69ee4722009-12-03 15:31:18 -08001175 spin_unlock_irqrestore(&dev->txq.lock, flags);
Joe Perches60b86752010-02-17 10:30:23 +00001176 netdev_dbg(dev->net, "Delaying transmission for resumption\n");
Oliver Neukum69ee4722009-12-03 15:31:18 -08001177 goto deferred;
1178 }
1179#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 switch ((retval = usb_submit_urb (urb, GFP_ATOMIC))) {
1182 case -EPIPE:
1183 netif_stop_queue (net);
David Brownell2e55cc72005-08-31 09:53:10 -07001184 usbnet_defer_kevent (dev, EVENT_TX_HALT);
Oliver Neukum69ee4722009-12-03 15:31:18 -08001185 usb_autopm_put_interface_async(dev->intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 break;
1187 default:
Oliver Neukum69ee4722009-12-03 15:31:18 -08001188 usb_autopm_put_interface_async(dev->intf);
Joe Perchesa475f602010-02-17 10:30:24 +00001189 netif_dbg(dev, tx_err, dev->net,
1190 "tx: submit urb err %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 break;
1192 case 0:
1193 net->trans_start = jiffies;
Ming Lei5b6e9bc2012-04-26 11:33:46 +08001194 __usbnet_queue_skb(&dev->txq, skb, tx_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 if (dev->txq.qlen >= TX_QLEN (dev))
1196 netif_stop_queue (net);
1197 }
1198 spin_unlock_irqrestore (&dev->txq.lock, flags);
1199
1200 if (retval) {
Joe Perchesa475f602010-02-17 10:30:24 +00001201 netif_dbg(dev, tx_err, dev->net, "drop, code %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202drop:
Herbert Xu79638372009-06-29 16:53:28 +00001203 dev->net->stats.tx_dropped++;
Alexey Orishko073285f2010-11-29 23:23:27 +00001204not_drop:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 if (skb)
1206 dev_kfree_skb_any (skb);
1207 usb_free_urb (urb);
Joe Perchesa475f602010-02-17 10:30:24 +00001208 } else
1209 netif_dbg(dev, tx_queued, dev->net,
1210 "> tx, len %d, type 0x%x\n", length, skb->protocol);
Oliver Neukum69ee4722009-12-03 15:31:18 -08001211#ifdef CONFIG_PM
1212deferred:
1213#endif
Stephen Hemminger25a79c42009-08-31 19:50:45 +00001214 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215}
Stephen Hemminger777baa42009-03-20 19:35:54 +00001216EXPORT_SYMBOL_GPL(usbnet_start_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217
1218/*-------------------------------------------------------------------------*/
1219
1220// tasklet (work deferred from completions, in_irq) or timer
1221
1222static void usbnet_bh (unsigned long param)
1223{
1224 struct usbnet *dev = (struct usbnet *) param;
1225 struct sk_buff *skb;
1226 struct skb_data *entry;
1227
1228 while ((skb = skb_dequeue (&dev->done))) {
1229 entry = (struct skb_data *) skb->cb;
1230 switch (entry->state) {
David Brownell18ab4582007-05-25 12:31:32 -07001231 case rx_done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 entry->state = rx_cleanup;
1233 rx_process (dev, skb);
1234 continue;
David Brownell18ab4582007-05-25 12:31:32 -07001235 case tx_done:
1236 case rx_cleanup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 usb_free_urb (entry->urb);
1238 dev_kfree_skb (skb);
1239 continue;
David Brownell18ab4582007-05-25 12:31:32 -07001240 default:
Joe Perches60b86752010-02-17 10:30:23 +00001241 netdev_dbg(dev->net, "bogus skb state %d\n", entry->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 }
1243 }
1244
1245 // waiting for all pending urbs to complete?
1246 if (dev->wait) {
1247 if ((dev->txq.qlen + dev->rxq.qlen + dev->done.qlen) == 0) {
Hemant Kumaref59a422012-08-15 16:57:00 -07001248 wake_up(&unlink_wakeup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 }
1250
1251 // or are we maybe short a few urbs?
Joe Perches8e95a202009-12-03 07:58:21 +00001252 } else if (netif_running (dev->net) &&
1253 netif_device_present (dev->net) &&
1254 !timer_pending (&dev->delay) &&
1255 !test_bit (EVENT_RX_HALT, &dev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 int temp = dev->rxq.qlen;
1257 int qlen = RX_QLEN (dev);
1258
1259 if (temp < qlen) {
1260 struct urb *urb;
1261 int i;
1262
1263 // don't refill the queue all at once
1264 for (i = 0; i < 10 && dev->rxq.qlen < qlen; i++) {
1265 urb = usb_alloc_urb (0, GFP_ATOMIC);
David S. Millerdacb3972010-08-10 02:50:55 -07001266 if (urb != NULL) {
1267 if (rx_submit (dev, urb, GFP_ATOMIC) ==
1268 -ENOLINK)
1269 return;
1270 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 }
Joe Perchesa475f602010-02-17 10:30:24 +00001272 if (temp != dev->rxq.qlen)
1273 netif_dbg(dev, link, dev->net,
1274 "rxqlen %d --> %d\n",
1275 temp, dev->rxq.qlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 if (dev->rxq.qlen < qlen)
Hemant Kumar1e8ddb52012-07-02 13:39:22 -07001277 queue_work(usbnet_wq, &dev->bh_w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 }
1279 if (dev->txq.qlen < TX_QLEN (dev))
1280 netif_wake_queue (dev->net);
1281 }
1282}
1283
Hemant Kumar1e8ddb52012-07-02 13:39:22 -07001284static void usbnet_bh_w(struct work_struct *work)
1285{
1286 struct usbnet *dev =
1287 container_of(work, struct usbnet, bh_w);
1288 unsigned long param = (unsigned long)dev;
1289
1290 usbnet_bh(param);
1291}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293/*-------------------------------------------------------------------------
1294 *
1295 * USB Device Driver support
1296 *
1297 *-------------------------------------------------------------------------*/
David Brownellcb1cebb2007-02-15 18:52:30 -08001298
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299// precondition: never called in_interrupt
1300
David Brownell38bde1d2005-08-31 09:52:45 -07001301void usbnet_disconnect (struct usb_interface *intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302{
1303 struct usbnet *dev;
1304 struct usb_device *xdev;
1305 struct net_device *net;
1306
1307 dev = usb_get_intfdata(intf);
1308 usb_set_intfdata(intf, NULL);
1309 if (!dev)
1310 return;
1311
1312 xdev = interface_to_usbdev (intf);
1313
Joe Perchesa475f602010-02-17 10:30:24 +00001314 netif_info(dev, probe, dev->net, "unregister '%s' usb-%s-%s, %s\n",
1315 intf->dev.driver->name,
1316 xdev->bus->bus_name, xdev->devpath,
1317 dev->driver_info->description);
David Brownellcb1cebb2007-02-15 18:52:30 -08001318
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 net = dev->net;
1320 unregister_netdev (net);
1321
Tejun Heo23f333a2010-12-12 16:45:14 +01001322 cancel_work_sync(&dev->kevent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323
Hemant Kumarfa476f72012-10-09 16:22:18 -07001324 usb_scuttle_anchored_urbs(&dev->deferred);
1325
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 if (dev->driver_info->unbind)
1327 dev->driver_info->unbind (dev, intf);
1328
Paul Stewart68972ef2011-04-28 05:43:37 +00001329 usb_kill_urb(dev->interrupt);
1330 usb_free_urb(dev->interrupt);
1331
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 free_netdev(net);
1333 usb_put_dev (xdev);
1334}
David Brownell38bde1d2005-08-31 09:52:45 -07001335EXPORT_SYMBOL_GPL(usbnet_disconnect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336
Stephen Hemminger777baa42009-03-20 19:35:54 +00001337static const struct net_device_ops usbnet_netdev_ops = {
1338 .ndo_open = usbnet_open,
1339 .ndo_stop = usbnet_stop,
1340 .ndo_start_xmit = usbnet_start_xmit,
1341 .ndo_tx_timeout = usbnet_tx_timeout,
1342 .ndo_change_mtu = usbnet_change_mtu,
1343 .ndo_set_mac_address = eth_mac_addr,
1344 .ndo_validate_addr = eth_validate_addr,
1345};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
1347/*-------------------------------------------------------------------------*/
1348
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349// precondition: never called in_interrupt
1350
Marcel Holtmann225794f2009-10-02 05:15:26 +00001351static struct device_type wlan_type = {
1352 .name = "wlan",
1353};
1354
1355static struct device_type wwan_type = {
1356 .name = "wwan",
1357};
1358
David Brownell38bde1d2005-08-31 09:52:45 -07001359int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360usbnet_probe (struct usb_interface *udev, const struct usb_device_id *prod)
1361{
1362 struct usbnet *dev;
David Brownellcb1cebb2007-02-15 18:52:30 -08001363 struct net_device *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 struct usb_host_interface *interface;
1365 struct driver_info *info;
1366 struct usb_device *xdev;
1367 int status;
David Brownell296c0242007-04-17 16:10:10 -07001368 const char *name;
Ming Leib0786b42010-11-01 07:11:54 -07001369 struct usb_driver *driver = to_usb_driver(udev->dev.driver);
1370
1371 /* usbnet already took usb runtime pm, so have to enable the feature
1372 * for usb interface, otherwise usb_autopm_get_interface may return
1373 * failure if USB_SUSPEND(RUNTIME_PM) is enabled.
1374 */
1375 if (!driver->supports_autosuspend) {
1376 driver->supports_autosuspend = 1;
1377 pm_runtime_enable(&udev->dev);
1378 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
David Brownell296c0242007-04-17 16:10:10 -07001380 name = udev->dev.driver->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 info = (struct driver_info *) prod->driver_info;
1382 if (!info) {
David Brownell296c0242007-04-17 16:10:10 -07001383 dev_dbg (&udev->dev, "blacklisted by %s\n", name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 return -ENODEV;
1385 }
1386 xdev = interface_to_usbdev (udev);
1387 interface = udev->cur_altsetting;
1388
1389 usb_get_dev (xdev);
1390
1391 status = -ENOMEM;
1392
1393 // set up our own records
1394 net = alloc_etherdev(sizeof(*dev));
Joe Perches41de8d42012-01-29 13:47:52 +00001395 if (!net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397
Ben Hutchings0dacca72010-07-02 21:49:02 -07001398 /* netdev_printk() needs this so do it as early as possible */
1399 SET_NETDEV_DEV(net, &udev->dev);
1400
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 dev = netdev_priv(net);
1402 dev->udev = xdev;
Oliver Neukuma11a6542007-08-03 13:52:19 +02001403 dev->intf = udev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 dev->driver_info = info;
David Brownell296c0242007-04-17 16:10:10 -07001405 dev->driver_name = name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 dev->msg_enable = netif_msg_init (msg_level, NETIF_MSG_DRV
1407 | NETIF_MSG_PROBE | NETIF_MSG_LINK);
1408 skb_queue_head_init (&dev->rxq);
1409 skb_queue_head_init (&dev->txq);
1410 skb_queue_head_init (&dev->done);
Jussi Kivilinna7834ddb2009-08-11 22:57:16 +03001411 skb_queue_head_init(&dev->rxq_pause);
Hemant Kumar1e8ddb52012-07-02 13:39:22 -07001412 INIT_WORK(&dev->bh_w, usbnet_bh_w);
David Howellsc4028952006-11-22 14:57:56 +00001413 INIT_WORK (&dev->kevent, kevent);
Oliver Neukum69ee4722009-12-03 15:31:18 -08001414 init_usb_anchor(&dev->deferred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 dev->delay.function = usbnet_bh;
1416 dev->delay.data = (unsigned long) dev;
1417 init_timer (&dev->delay);
Arnd Bergmanna9fc6332006-10-09 00:08:02 +02001418 mutex_init (&dev->phy_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 dev->net = net;
1421 strcpy (net->name, "usb%d");
1422 memcpy (net->dev_addr, node_id, sizeof node_id);
1423
David Brownell2e55cc72005-08-31 09:53:10 -07001424 /* rx and tx sides can use different message sizes;
1425 * bind() should set rx_urb_size in that case.
1426 */
1427 dev->hard_mtu = net->mtu + net->hard_header_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428#if 0
1429// dma_supported() is deeply broken on almost all architectures
1430 // possible with some EHCI controllers
Yang Hongyang6a355282009-04-06 19:01:13 -07001431 if (dma_supported (&udev->dev, DMA_BIT_MASK(64)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 net->features |= NETIF_F_HIGHDMA;
1433#endif
1434
Stephen Hemminger777baa42009-03-20 19:35:54 +00001435 net->netdev_ops = &usbnet_netdev_ops;
Stephen Hemminger777baa42009-03-20 19:35:54 +00001436 net->watchdog_timeo = TX_TIMEOUT_JIFFIES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 net->ethtool_ops = &usbnet_ethtool_ops;
1438
1439 // allow device-specific bind/init procedures
1440 // NOTE net->name still not usable ...
1441 if (info->bind) {
1442 status = info->bind (dev, udev);
David Brownellcb1cebb2007-02-15 18:52:30 -08001443 if (status < 0)
1444 goto out1;
1445
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 // heuristic: "usb%d" for links we know are two-host,
1447 // else "eth%d" when there's reasonable doubt. userspace
1448 // can rename the link if it knows better.
Joe Perches8e95a202009-12-03 07:58:21 +00001449 if ((dev->driver_info->flags & FLAG_ETHER) != 0 &&
Arnd Bergmannc2613442011-04-01 20:12:02 -07001450 ((dev->driver_info->flags & FLAG_POINTTOPOINT) == 0 ||
1451 (net->dev_addr [0] & 0x02) == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 strcpy (net->name, "eth%d");
Jussi Kivilinna6e3bbcc2008-01-26 00:51:06 +02001453 /* WLAN devices should always be named "wlan%d" */
1454 if ((dev->driver_info->flags & FLAG_WLAN) != 0)
1455 strcpy(net->name, "wlan%d");
Marcel Holtmanne1e499e2009-10-02 05:15:25 +00001456 /* WWAN devices should always be named "wwan%d" */
1457 if ((dev->driver_info->flags & FLAG_WWAN) != 0)
1458 strcpy(net->name, "wwan%d");
David Brownellf29fc252005-08-31 09:52:31 -07001459
1460 /* maybe the remote can't receive an Ethernet MTU */
1461 if (net->mtu > (dev->hard_mtu - net->hard_header_len))
1462 net->mtu = dev->hard_mtu - net->hard_header_len;
David Brownell2e55cc72005-08-31 09:53:10 -07001463 } else if (!info->in || !info->out)
1464 status = usbnet_get_endpoints (dev, udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 else {
1466 dev->in = usb_rcvbulkpipe (xdev, info->in);
1467 dev->out = usb_sndbulkpipe (xdev, info->out);
1468 if (!(info->flags & FLAG_NO_SETINT))
1469 status = usb_set_interface (xdev,
1470 interface->desc.bInterfaceNumber,
1471 interface->desc.bAlternateSetting);
1472 else
1473 status = 0;
1474
1475 }
Peter Korsgaard9514bfe2007-07-03 00:46:42 +02001476 if (status >= 0 && dev->status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 status = init_status (dev, udev);
1478 if (status < 0)
David Brownellcb1cebb2007-02-15 18:52:30 -08001479 goto out3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480
David Brownell2e55cc72005-08-31 09:53:10 -07001481 if (!dev->rx_urb_size)
1482 dev->rx_urb_size = dev->hard_mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 dev->maxpacket = usb_maxpacket (dev->udev, dev->out, 1);
David Brownellcb1cebb2007-02-15 18:52:30 -08001484
Marcel Holtmann225794f2009-10-02 05:15:26 +00001485 if ((dev->driver_info->flags & FLAG_WLAN) != 0)
1486 SET_NETDEV_DEVTYPE(net, &wlan_type);
1487 if ((dev->driver_info->flags & FLAG_WWAN) != 0)
1488 SET_NETDEV_DEVTYPE(net, &wwan_type);
1489
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 status = register_netdev (net);
1491 if (status)
tom.leiming@gmail.coma4723842012-04-29 22:51:03 +00001492 goto out4;
Joe Perchesa475f602010-02-17 10:30:24 +00001493 netif_info(dev, probe, dev->net,
1494 "register '%s' at usb-%s-%s, %s, %pM\n",
1495 udev->dev.driver->name,
1496 xdev->bus->bus_name, xdev->devpath,
1497 dev->driver_info->description,
1498 net->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499
1500 // ok, it's ready to go.
1501 usb_set_intfdata (udev, dev);
1502
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 netif_device_attach (net);
1504
Ben Hutchings37e82732009-11-04 15:29:52 +00001505 if (dev->driver_info->flags & FLAG_LINK_INTR)
1506 netif_carrier_off(net);
1507
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 return 0;
1509
tom.leiming@gmail.coma4723842012-04-29 22:51:03 +00001510out4:
1511 usb_free_urb(dev->interrupt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512out3:
1513 if (info->unbind)
1514 info->unbind (dev, udev);
1515out1:
1516 free_netdev(net);
1517out:
1518 usb_put_dev(xdev);
1519 return status;
1520}
David Brownell38bde1d2005-08-31 09:52:45 -07001521EXPORT_SYMBOL_GPL(usbnet_probe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522
1523/*-------------------------------------------------------------------------*/
1524
Oliver Neukum36433122007-04-30 01:37:44 -07001525/*
1526 * suspend the whole driver as soon as the first interface is suspended
1527 * resume only when the last interface is resumed
David Brownell38bde1d2005-08-31 09:52:45 -07001528 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529
David Brownell38bde1d2005-08-31 09:52:45 -07001530int usbnet_suspend (struct usb_interface *intf, pm_message_t message)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531{
1532 struct usbnet *dev = usb_get_intfdata(intf);
David Brownellcb1cebb2007-02-15 18:52:30 -08001533
Oliver Neukum36433122007-04-30 01:37:44 -07001534 if (!dev->suspend_count++) {
Oliver Neukum69ee4722009-12-03 15:31:18 -08001535 spin_lock_irq(&dev->txq.lock);
1536 /* don't autosuspend while transmitting */
Alan Stern5b1b0b82011-08-19 23:49:48 +02001537 if (dev->txq.qlen && PMSG_IS_AUTO(message)) {
Ming Lei2038ae22012-06-19 21:15:52 +00001538 dev->suspend_count--;
Oliver Neukum69ee4722009-12-03 15:31:18 -08001539 spin_unlock_irq(&dev->txq.lock);
1540 return -EBUSY;
1541 } else {
1542 set_bit(EVENT_DEV_ASLEEP, &dev->flags);
1543 spin_unlock_irq(&dev->txq.lock);
1544 }
Oliver Neukuma11a6542007-08-03 13:52:19 +02001545 /*
1546 * accelerate emptying of the rx and queues, to avoid
Oliver Neukum36433122007-04-30 01:37:44 -07001547 * having everything error out.
1548 */
1549 netif_device_detach (dev->net);
Oliver Neukum69ee4722009-12-03 15:31:18 -08001550 usbnet_terminate_urbs(dev);
1551 usb_kill_urb(dev->interrupt);
1552
Oliver Neukuma11a6542007-08-03 13:52:19 +02001553 /*
1554 * reattach so runtime management can use and
1555 * wake the device
1556 */
1557 netif_device_attach (dev->net);
Oliver Neukum36433122007-04-30 01:37:44 -07001558 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 return 0;
1560}
David Brownell38bde1d2005-08-31 09:52:45 -07001561EXPORT_SYMBOL_GPL(usbnet_suspend);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562
David Brownell38bde1d2005-08-31 09:52:45 -07001563int usbnet_resume (struct usb_interface *intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564{
1565 struct usbnet *dev = usb_get_intfdata(intf);
Oliver Neukum69ee4722009-12-03 15:31:18 -08001566 struct sk_buff *skb;
1567 struct urb *res;
1568 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569
Oliver Neukum69ee4722009-12-03 15:31:18 -08001570 if (!--dev->suspend_count) {
Paul Stewart68972ef2011-04-28 05:43:37 +00001571 /* resume interrupt URBs */
1572 if (dev->interrupt && test_bit(EVENT_DEV_OPEN, &dev->flags))
1573 usb_submit_urb(dev->interrupt, GFP_NOIO);
1574
Oliver Neukum69ee4722009-12-03 15:31:18 -08001575 spin_lock_irq(&dev->txq.lock);
1576 while ((res = usb_get_from_anchor(&dev->deferred))) {
1577
Oliver Neukum69ee4722009-12-03 15:31:18 -08001578 skb = (struct sk_buff *)res->context;
1579 retval = usb_submit_urb(res, GFP_ATOMIC);
1580 if (retval < 0) {
1581 dev_kfree_skb_any(skb);
1582 usb_free_urb(res);
1583 usb_autopm_put_interface_async(dev->intf);
1584 } else {
1585 dev->net->trans_start = jiffies;
1586 __skb_queue_tail(&dev->txq, skb);
1587 }
1588 }
1589
1590 smp_mb();
1591 clear_bit(EVENT_DEV_ASLEEP, &dev->flags);
1592 spin_unlock_irq(&dev->txq.lock);
Ming Lei75bd0cb2011-04-28 22:37:09 +00001593
1594 if (test_bit(EVENT_DEV_OPEN, &dev->flags)) {
1595 if (!(dev->txq.qlen >= TX_QLEN(dev)))
Alexey Orishko1aa9bc52012-03-14 04:00:24 +00001596 netif_tx_wake_all_queues(dev->net);
Hemant Kumar1e8ddb52012-07-02 13:39:22 -07001597 queue_work(usbnet_wq, &dev->bh_w);
Ming Lei75bd0cb2011-04-28 22:37:09 +00001598 }
Oliver Neukum69ee4722009-12-03 15:31:18 -08001599 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 return 0;
1601}
David Brownell38bde1d2005-08-31 09:52:45 -07001602EXPORT_SYMBOL_GPL(usbnet_resume);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604
1605/*-------------------------------------------------------------------------*/
1606
David Brownellf29fc252005-08-31 09:52:31 -07001607static int __init usbnet_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608{
Thiago Farinac582a952011-04-17 17:49:21 -07001609 /* Compiler should optimize this out. */
1610 BUILD_BUG_ON(
1611 FIELD_SIZEOF(struct sk_buff, cb) < sizeof(struct skb_data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612
1613 random_ether_addr(node_id);
Hemant Kumar1e8ddb52012-07-02 13:39:22 -07001614
1615 usbnet_wq = create_singlethread_workqueue("usbnet");
1616 if (!usbnet_wq) {
1617 pr_err("%s: Unable to create workqueue:usbnet\n", __func__);
1618 return -ENOMEM;
1619 }
1620
David Brownellcb1cebb2007-02-15 18:52:30 -08001621 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622}
David Brownellf29fc252005-08-31 09:52:31 -07001623module_init(usbnet_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624
David Brownellf29fc252005-08-31 09:52:31 -07001625static void __exit usbnet_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626{
Hemant Kumar1e8ddb52012-07-02 13:39:22 -07001627 destroy_workqueue(usbnet_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628}
David Brownellf29fc252005-08-31 09:52:31 -07001629module_exit(usbnet_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
David Brownellf29fc252005-08-31 09:52:31 -07001631MODULE_AUTHOR("David Brownell");
David Brownell090ffa92005-08-31 09:54:50 -07001632MODULE_DESCRIPTION("USB network driver framework");
David Brownellf29fc252005-08-31 09:52:31 -07001633MODULE_LICENSE("GPL");