Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
David Brownell | 090ffa9 | 2005-08-31 09:54:50 -0700 | [diff] [blame] | 2 | * USB Network driver infrastructure |
David Brownell | f29fc25 | 2005-08-31 09:52:31 -0700 | [diff] [blame] | 3 | * Copyright (C) 2000-2005 by David Brownell |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * Copyright (C) 2003-2005 David Hollis <dhollis@davehollis.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * |
| 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 Kirsher | 9cb0007 | 2013-12-06 06:28:46 -0800 | [diff] [blame] | 17 | * along with this program; if not, see <http://www.gnu.org/licenses/>. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | */ |
| 19 | |
| 20 | /* |
| 21 | * This is a generic "USB networking" framework that works with several |
David Brownell | 090ffa9 | 2005-08-31 09:54:50 -0700 | [diff] [blame] | 22 | * kinds of full and high speed networking devices: host-to-host cables, |
| 23 | * smart usb peripherals, and actual Ethernet adapters. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | * |
David Brownell | 090ffa9 | 2005-08-31 09:54:50 -0700 | [diff] [blame] | 25 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | |
| 32 | // #define DEBUG // error path messages, extra info |
| 33 | // #define VERBOSE // more; success messages |
| 34 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | #include <linux/init.h> |
| 37 | #include <linux/netdevice.h> |
| 38 | #include <linux/etherdevice.h> |
Peter Holik | 03ad032 | 2009-04-18 07:24:17 +0000 | [diff] [blame] | 39 | #include <linux/ctype.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | #include <linux/ethtool.h> |
| 41 | #include <linux/workqueue.h> |
| 42 | #include <linux/mii.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | #include <linux/usb.h> |
Jussi Kivilinna | 3692e94 | 2008-01-26 00:51:45 +0200 | [diff] [blame] | 44 | #include <linux/usb/usbnet.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 45 | #include <linux/slab.h> |
Andy Shevchenko | fd1f170 | 2010-07-23 03:18:08 +0000 | [diff] [blame] | 46 | #include <linux/kernel.h> |
Ming Lei | b0786b4 | 2010-11-01 07:11:54 -0700 | [diff] [blame] | 47 | #include <linux/pm_runtime.h> |
David Brownell | f29fc25 | 2005-08-31 09:52:31 -0700 | [diff] [blame] | 48 | |
| 49 | #define DRIVER_VERSION "22-Aug-2005" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | |
| 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 Brownell | f29fc25 | 2005-08-31 09:52:31 -0700 | [diff] [blame] | 60 | * |
Ming Lei | a88c32a | 2013-07-25 13:47:53 +0800 | [diff] [blame] | 61 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | */ |
Ming Lei | a88c32a | 2013-07-25 13:47:53 +0800 | [diff] [blame] | 65 | #define MAX_QUEUE_MEMORY (60 * 1518) |
| 66 | #define RX_QLEN(dev) ((dev)->rx_qlen) |
| 67 | #define TX_QLEN(dev) ((dev)->tx_qlen) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | // reawaken network queue this soon after stopping; else watchdog barks |
| 70 | #define TX_TIMEOUT_JIFFIES (5*HZ) |
| 71 | |
Petr Mladek | 37ebb54 | 2014-09-19 17:32:23 +0200 | [diff] [blame] | 72 | /* 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | #define THROTTLE_JIFFIES (HZ/8) |
| 76 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | // between wakeups |
| 78 | #define UNLINK_TIMEOUT_MS 3 |
| 79 | |
| 80 | /*-------------------------------------------------------------------------*/ |
| 81 | |
| 82 | // randomly generated ethernet address |
| 83 | static u8 node_id [ETH_ALEN]; |
| 84 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | static const char driver_name [] = "usbnet"; |
| 86 | |
| 87 | /* use ethtool to change the level for any given device */ |
| 88 | static int msg_level = -1; |
| 89 | module_param (msg_level, int, 0); |
| 90 | MODULE_PARM_DESC (msg_level, "Override default message level"); |
| 91 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | /*-------------------------------------------------------------------------*/ |
| 93 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | /* handles CDC Ethernet and many other network "bulk data" interfaces */ |
David Brownell | 2e55cc7 | 2005-08-31 09:53:10 -0700 | [diff] [blame] | 95 | int usbnet_get_endpoints(struct usbnet *dev, struct usb_interface *intf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | { |
| 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. Mattock | 70f23fd | 2011-05-10 10:16:21 +0200 | [diff] [blame] | 110 | * ignore other endpoints and altsettings. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | */ |
| 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. Capitulino | fc6e254 | 2006-10-26 13:03:01 -0300 | [diff] [blame] | 119 | if (!usb_endpoint_dir_in(&e->desc)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | continue; |
| 121 | intr = 1; |
| 122 | /* FALLTHROUGH */ |
| 123 | case USB_ENDPOINT_XFER_BULK: |
| 124 | break; |
| 125 | default: |
| 126 | continue; |
| 127 | } |
Luiz Fernando N. Capitulino | fc6e254 | 2006-10-26 13:03:01 -0300 | [diff] [blame] | 128 | if (usb_endpoint_dir_in(&e->desc)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | 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 Perches | 8e95a20 | 2009-12-03 07:58:21 +0000 | [diff] [blame] | 144 | if (alt->desc.bAlternateSetting != 0 || |
| 145 | !(dev->driver_info->flags & FLAG_NO_SETINT)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | tmp = usb_set_interface (dev->udev, alt->desc.bInterfaceNumber, |
| 147 | alt->desc.bAlternateSetting); |
| 148 | if (tmp < 0) |
| 149 | return tmp; |
| 150 | } |
David Brownell | cb1cebb | 2007-02-15 18:52:30 -0800 | [diff] [blame] | 151 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | 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 Brownell | 2e55cc7 | 2005-08-31 09:53:10 -0700 | [diff] [blame] | 159 | EXPORT_SYMBOL_GPL(usbnet_get_endpoints); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | |
Peter Holik | 03ad032 | 2009-04-18 07:24:17 +0000 | [diff] [blame] | 161 | int usbnet_get_ethernet_addr(struct usbnet *dev, int iMACAddress) |
| 162 | { |
Andy Shevchenko | 51487ae | 2015-01-22 23:27:12 +0200 | [diff] [blame] | 163 | int tmp = -1, ret; |
Peter Holik | 03ad032 | 2009-04-18 07:24:17 +0000 | [diff] [blame] | 164 | unsigned char buf [13]; |
| 165 | |
Andy Shevchenko | 51487ae | 2015-01-22 23:27:12 +0200 | [diff] [blame] | 166 | ret = usb_string(dev->udev, iMACAddress, buf, sizeof buf); |
| 167 | if (ret == 12) |
| 168 | tmp = hex2bin(dev->net->dev_addr, buf, 6); |
| 169 | if (tmp < 0) { |
Peter Holik | 03ad032 | 2009-04-18 07:24:17 +0000 | [diff] [blame] | 170 | dev_dbg(&dev->udev->dev, |
| 171 | "bad MAC string %d fetch, %d\n", iMACAddress, tmp); |
Andy Shevchenko | 51487ae | 2015-01-22 23:27:12 +0200 | [diff] [blame] | 172 | if (ret >= 0) |
| 173 | ret = -EINVAL; |
| 174 | return ret; |
Peter Holik | 03ad032 | 2009-04-18 07:24:17 +0000 | [diff] [blame] | 175 | } |
Peter Holik | 03ad032 | 2009-04-18 07:24:17 +0000 | [diff] [blame] | 176 | return 0; |
| 177 | } |
| 178 | EXPORT_SYMBOL_GPL(usbnet_get_ethernet_addr); |
| 179 | |
tom.leiming@gmail.com | 24ead29 | 2012-06-11 15:19:44 +0000 | [diff] [blame] | 180 | static void intr_complete (struct urb *urb) |
| 181 | { |
| 182 | struct usbnet *dev = urb->context; |
| 183 | int status = urb->status; |
| 184 | |
| 185 | switch (status) { |
| 186 | /* success */ |
| 187 | case 0: |
| 188 | dev->driver_info->status(dev, urb); |
| 189 | break; |
| 190 | |
| 191 | /* software-driven interface shutdown */ |
| 192 | case -ENOENT: /* urb killed */ |
| 193 | case -ESHUTDOWN: /* hardware gone */ |
| 194 | netif_dbg(dev, ifdown, dev->net, |
| 195 | "intr shutdown, code %d\n", status); |
| 196 | return; |
| 197 | |
| 198 | /* NOTE: not throttling like RX/TX, since this endpoint |
| 199 | * already polls infrequently |
| 200 | */ |
| 201 | default: |
| 202 | netdev_dbg(dev->net, "intr status %d\n", status); |
| 203 | break; |
| 204 | } |
| 205 | |
tom.leiming@gmail.com | 24ead29 | 2012-06-11 15:19:44 +0000 | [diff] [blame] | 206 | status = usb_submit_urb (urb, GFP_ATOMIC); |
| 207 | if (status != 0) |
| 208 | netif_err(dev, timer, dev->net, |
| 209 | "intr resubmit --> %d\n", status); |
| 210 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | |
| 212 | static int init_status (struct usbnet *dev, struct usb_interface *intf) |
| 213 | { |
| 214 | char *buf = NULL; |
| 215 | unsigned pipe = 0; |
| 216 | unsigned maxp; |
| 217 | unsigned period; |
| 218 | |
| 219 | if (!dev->driver_info->status) |
| 220 | return 0; |
| 221 | |
| 222 | pipe = usb_rcvintpipe (dev->udev, |
| 223 | dev->status->desc.bEndpointAddress |
| 224 | & USB_ENDPOINT_NUMBER_MASK); |
| 225 | maxp = usb_maxpacket (dev->udev, pipe, 0); |
| 226 | |
| 227 | /* avoid 1 msec chatter: min 8 msec poll rate */ |
| 228 | period = max ((int) dev->status->desc.bInterval, |
| 229 | (dev->udev->speed == USB_SPEED_HIGH) ? 7 : 3); |
| 230 | |
Christoph Lameter | e94b176 | 2006-12-06 20:33:17 -0800 | [diff] [blame] | 231 | buf = kmalloc (maxp, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | if (buf) { |
Christoph Lameter | e94b176 | 2006-12-06 20:33:17 -0800 | [diff] [blame] | 233 | dev->interrupt = usb_alloc_urb (0, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | if (!dev->interrupt) { |
| 235 | kfree (buf); |
| 236 | return -ENOMEM; |
| 237 | } else { |
| 238 | usb_fill_int_urb(dev->interrupt, dev->udev, pipe, |
| 239 | buf, maxp, intr_complete, dev, period); |
tom.leiming@gmail.com | 720f3d7 | 2012-04-29 22:51:02 +0000 | [diff] [blame] | 240 | dev->interrupt->transfer_flags |= URB_FREE_BUFFER; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | dev_dbg(&intf->dev, |
| 242 | "status ep%din, %d bytes period %d\n", |
| 243 | usb_pipeendpoint(pipe), maxp, period); |
| 244 | } |
| 245 | } |
David Brownell | 18ab458 | 2007-05-25 12:31:32 -0700 | [diff] [blame] | 246 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | } |
| 248 | |
Dan Williams | 6eecdc5 | 2013-05-06 11:29:23 +0000 | [diff] [blame] | 249 | /* Submit the interrupt URB if not previously submitted, increasing refcount */ |
| 250 | int usbnet_status_start(struct usbnet *dev, gfp_t mem_flags) |
| 251 | { |
| 252 | int ret = 0; |
| 253 | |
| 254 | WARN_ON_ONCE(dev->interrupt == NULL); |
| 255 | if (dev->interrupt) { |
| 256 | mutex_lock(&dev->interrupt_mutex); |
| 257 | |
| 258 | if (++dev->interrupt_count == 1) |
| 259 | ret = usb_submit_urb(dev->interrupt, mem_flags); |
| 260 | |
| 261 | dev_dbg(&dev->udev->dev, "incremented interrupt URB count to %d\n", |
| 262 | dev->interrupt_count); |
| 263 | mutex_unlock(&dev->interrupt_mutex); |
| 264 | } |
| 265 | return ret; |
| 266 | } |
| 267 | EXPORT_SYMBOL_GPL(usbnet_status_start); |
| 268 | |
| 269 | /* For resume; submit interrupt URB if previously submitted */ |
| 270 | static int __usbnet_status_start_force(struct usbnet *dev, gfp_t mem_flags) |
| 271 | { |
| 272 | int ret = 0; |
| 273 | |
| 274 | mutex_lock(&dev->interrupt_mutex); |
| 275 | if (dev->interrupt_count) { |
| 276 | ret = usb_submit_urb(dev->interrupt, mem_flags); |
| 277 | dev_dbg(&dev->udev->dev, |
| 278 | "submitted interrupt URB for resume\n"); |
| 279 | } |
| 280 | mutex_unlock(&dev->interrupt_mutex); |
| 281 | return ret; |
| 282 | } |
| 283 | |
| 284 | /* Kill the interrupt URB if all submitters want it killed */ |
| 285 | void usbnet_status_stop(struct usbnet *dev) |
| 286 | { |
| 287 | if (dev->interrupt) { |
| 288 | mutex_lock(&dev->interrupt_mutex); |
| 289 | WARN_ON(dev->interrupt_count == 0); |
| 290 | |
| 291 | if (dev->interrupt_count && --dev->interrupt_count == 0) |
| 292 | usb_kill_urb(dev->interrupt); |
| 293 | |
| 294 | dev_dbg(&dev->udev->dev, |
| 295 | "decremented interrupt URB count to %d\n", |
| 296 | dev->interrupt_count); |
| 297 | mutex_unlock(&dev->interrupt_mutex); |
| 298 | } |
| 299 | } |
| 300 | EXPORT_SYMBOL_GPL(usbnet_status_stop); |
| 301 | |
| 302 | /* For suspend; always kill interrupt URB */ |
| 303 | static void __usbnet_status_stop_force(struct usbnet *dev) |
| 304 | { |
| 305 | if (dev->interrupt) { |
| 306 | mutex_lock(&dev->interrupt_mutex); |
| 307 | usb_kill_urb(dev->interrupt); |
| 308 | dev_dbg(&dev->udev->dev, "killed interrupt URB for suspend\n"); |
| 309 | mutex_unlock(&dev->interrupt_mutex); |
| 310 | } |
| 311 | } |
| 312 | |
David Brownell | 2e55cc7 | 2005-08-31 09:53:10 -0700 | [diff] [blame] | 313 | /* Passes this packet up the stack, updating its accounting. |
| 314 | * Some link protocols batch packets, so their rx_fixup paths |
| 315 | * can return clones as well as just modify the original skb. |
| 316 | */ |
| 317 | void usbnet_skb_return (struct usbnet *dev, struct sk_buff *skb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | { |
| 319 | int status; |
| 320 | |
Jussi Kivilinna | 7834ddb | 2009-08-11 22:57:16 +0300 | [diff] [blame] | 321 | if (test_bit(EVENT_RX_PAUSED, &dev->flags)) { |
| 322 | skb_queue_tail(&dev->rxq_pause, skb); |
| 323 | return; |
| 324 | } |
| 325 | |
Bjørn Mork | 81e0ce7 | 2015-12-03 19:24:20 +0100 | [diff] [blame] | 326 | /* only update if unset to allow minidriver rx_fixup override */ |
| 327 | if (skb->protocol == 0) |
| 328 | skb->protocol = eth_type_trans (skb, dev->net); |
| 329 | |
Herbert Xu | 7963837 | 2009-06-29 16:53:28 +0000 | [diff] [blame] | 330 | dev->net->stats.rx_packets++; |
| 331 | dev->net->stats.rx_bytes += skb->len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 333 | netif_dbg(dev, rx_status, dev->net, "< rx, len %zu, type 0x%x\n", |
| 334 | skb->len + sizeof (struct ethhdr), skb->protocol); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | memset (skb->cb, 0, sizeof (struct skb_data)); |
Michael Riesch | f9b491e | 2011-09-29 04:06:26 +0000 | [diff] [blame] | 336 | |
| 337 | if (skb_defer_rx_timestamp(skb)) |
| 338 | return; |
| 339 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | status = netif_rx (skb); |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 341 | if (status != NET_RX_SUCCESS) |
| 342 | netif_dbg(dev, rx_err, dev->net, |
| 343 | "netif_rx status %d\n", status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | } |
David Brownell | 2e55cc7 | 2005-08-31 09:53:10 -0700 | [diff] [blame] | 345 | EXPORT_SYMBOL_GPL(usbnet_skb_return); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | |
Ming Lei | a88c32a | 2013-07-25 13:47:53 +0800 | [diff] [blame] | 347 | /* must be called if hard_mtu or rx_urb_size changed */ |
| 348 | void usbnet_update_max_qlen(struct usbnet *dev) |
| 349 | { |
| 350 | enum usb_device_speed speed = dev->udev->speed; |
| 351 | |
| 352 | switch (speed) { |
| 353 | case USB_SPEED_HIGH: |
| 354 | dev->rx_qlen = MAX_QUEUE_MEMORY / dev->rx_urb_size; |
| 355 | dev->tx_qlen = MAX_QUEUE_MEMORY / dev->hard_mtu; |
| 356 | break; |
Ming Lei | 452c447 | 2013-07-25 13:47:54 +0800 | [diff] [blame] | 357 | case USB_SPEED_SUPER: |
Oliver Neukum | ea07984 | 2016-05-02 13:06:13 +0200 | [diff] [blame] | 358 | case USB_SPEED_SUPER_PLUS: |
Ming Lei | 452c447 | 2013-07-25 13:47:54 +0800 | [diff] [blame] | 359 | /* |
| 360 | * Not take default 5ms qlen for super speed HC to |
| 361 | * save memory, and iperf tests show 2.5ms qlen can |
| 362 | * work well |
| 363 | */ |
| 364 | dev->rx_qlen = 5 * MAX_QUEUE_MEMORY / dev->rx_urb_size; |
| 365 | dev->tx_qlen = 5 * MAX_QUEUE_MEMORY / dev->hard_mtu; |
| 366 | break; |
Ming Lei | a88c32a | 2013-07-25 13:47:53 +0800 | [diff] [blame] | 367 | default: |
| 368 | dev->rx_qlen = dev->tx_qlen = 4; |
| 369 | } |
| 370 | } |
| 371 | EXPORT_SYMBOL_GPL(usbnet_update_max_qlen); |
| 372 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | /*------------------------------------------------------------------------- |
| 375 | * |
| 376 | * Network Device Driver (peer link to "Host Device", from USB host) |
| 377 | * |
| 378 | *-------------------------------------------------------------------------*/ |
| 379 | |
Stephen Hemminger | 777baa4 | 2009-03-20 19:35:54 +0000 | [diff] [blame] | 380 | int usbnet_change_mtu (struct net_device *net, int new_mtu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | { |
| 382 | struct usbnet *dev = netdev_priv(net); |
David Brownell | f29fc25 | 2005-08-31 09:52:31 -0700 | [diff] [blame] | 383 | int ll_mtu = new_mtu + net->hard_header_len; |
Jamie Painter | a99c194 | 2006-07-27 14:17:28 -0400 | [diff] [blame] | 384 | int old_hard_mtu = dev->hard_mtu; |
| 385 | int old_rx_urb_size = dev->rx_urb_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | // no second zero-length packet read wanted after mtu-sized packets |
David Brownell | f29fc25 | 2005-08-31 09:52:31 -0700 | [diff] [blame] | 388 | if ((ll_mtu % dev->maxpacket) == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | return -EDOM; |
| 390 | net->mtu = new_mtu; |
Jamie Painter | a99c194 | 2006-07-27 14:17:28 -0400 | [diff] [blame] | 391 | |
| 392 | dev->hard_mtu = net->mtu + net->hard_header_len; |
| 393 | if (dev->rx_urb_size == old_hard_mtu) { |
| 394 | dev->rx_urb_size = dev->hard_mtu; |
Soohoon Lee | 43daa96 | 2016-06-29 15:07:21 -0400 | [diff] [blame] | 395 | if (dev->rx_urb_size > old_rx_urb_size) { |
| 396 | usbnet_pause_rx(dev); |
Jamie Painter | a99c194 | 2006-07-27 14:17:28 -0400 | [diff] [blame] | 397 | usbnet_unlink_rx_urbs(dev); |
Soohoon Lee | 43daa96 | 2016-06-29 15:07:21 -0400 | [diff] [blame] | 398 | usbnet_resume_rx(dev); |
| 399 | } |
Jamie Painter | a99c194 | 2006-07-27 14:17:28 -0400 | [diff] [blame] | 400 | } |
| 401 | |
Ming Lei | a88c32a | 2013-07-25 13:47:53 +0800 | [diff] [blame] | 402 | /* max qlen depend on hard_mtu and rx_urb_size */ |
| 403 | usbnet_update_max_qlen(dev); |
| 404 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | return 0; |
| 406 | } |
Stephen Hemminger | 777baa4 | 2009-03-20 19:35:54 +0000 | [diff] [blame] | 407 | EXPORT_SYMBOL_GPL(usbnet_change_mtu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | |
Ming Lei | 5b6e9bc | 2012-04-26 11:33:46 +0800 | [diff] [blame] | 409 | /* The caller must hold list->lock */ |
| 410 | static void __usbnet_queue_skb(struct sk_buff_head *list, |
| 411 | struct sk_buff *newsk, enum skb_state state) |
| 412 | { |
| 413 | struct skb_data *entry = (struct skb_data *) newsk->cb; |
| 414 | |
| 415 | __skb_queue_tail(list, newsk); |
| 416 | entry->state = state; |
| 417 | } |
| 418 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | /*-------------------------------------------------------------------------*/ |
| 420 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | /* some LK 2.4 HCDs oopsed if we freed or resubmitted urbs from |
| 422 | * completion callbacks. 2.5 should have fixed those bugs... |
| 423 | */ |
| 424 | |
Ming Lei | 5b6e9bc | 2012-04-26 11:33:46 +0800 | [diff] [blame] | 425 | static enum skb_state defer_bh(struct usbnet *dev, struct sk_buff *skb, |
| 426 | struct sk_buff_head *list, enum skb_state state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | unsigned long flags; |
Ming Lei | 5b6e9bc | 2012-04-26 11:33:46 +0800 | [diff] [blame] | 429 | enum skb_state old_state; |
| 430 | struct skb_data *entry = (struct skb_data *) skb->cb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 431 | |
David S. Miller | 8728b83 | 2005-08-09 19:25:21 -0700 | [diff] [blame] | 432 | spin_lock_irqsave(&list->lock, flags); |
Ming Lei | 5b6e9bc | 2012-04-26 11:33:46 +0800 | [diff] [blame] | 433 | old_state = entry->state; |
| 434 | entry->state = state; |
David S. Miller | 8728b83 | 2005-08-09 19:25:21 -0700 | [diff] [blame] | 435 | __skb_unlink(skb, list); |
Eugene Shatokhin | fcb0bb6 | 2015-09-01 17:05:33 +0300 | [diff] [blame] | 436 | |
| 437 | /* defer_bh() is never called with list == &dev->done. |
| 438 | * spin_lock_nested() tells lockdep that it is OK to take |
| 439 | * dev->done.lock here with list->lock held. |
| 440 | */ |
| 441 | spin_lock_nested(&dev->done.lock, SINGLE_DEPTH_NESTING); |
| 442 | |
David S. Miller | 8728b83 | 2005-08-09 19:25:21 -0700 | [diff] [blame] | 443 | __skb_queue_tail(&dev->done, skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | if (dev->done.qlen == 1) |
David S. Miller | 8728b83 | 2005-08-09 19:25:21 -0700 | [diff] [blame] | 445 | tasklet_schedule(&dev->bh); |
Eugene Shatokhin | fcb0bb6 | 2015-09-01 17:05:33 +0300 | [diff] [blame] | 446 | spin_unlock(&dev->done.lock); |
| 447 | spin_unlock_irqrestore(&list->lock, flags); |
Ming Lei | 5b6e9bc | 2012-04-26 11:33:46 +0800 | [diff] [blame] | 448 | return old_state; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | } |
| 450 | |
| 451 | /* some work can't be done in tasklets, so we use keventd |
| 452 | * |
| 453 | * NOTE: annoying asymmetry: if it's active, schedule_work() fails, |
| 454 | * but tasklet_schedule() doesn't. hope the failure is rare. |
| 455 | */ |
David Brownell | 2e55cc7 | 2005-08-31 09:53:10 -0700 | [diff] [blame] | 456 | void usbnet_defer_kevent (struct usbnet *dev, int work) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | { |
| 458 | set_bit (work, &dev->flags); |
Steve Glendinning | 9532021 | 2012-11-08 06:26:21 +0000 | [diff] [blame] | 459 | if (!schedule_work (&dev->kevent)) { |
| 460 | if (net_ratelimit()) |
| 461 | netdev_err(dev->net, "kevent %d may have been dropped\n", work); |
| 462 | } else { |
Joe Perches | 60b8675 | 2010-02-17 10:30:23 +0000 | [diff] [blame] | 463 | netdev_dbg(dev->net, "kevent %d scheduled\n", work); |
Steve Glendinning | 9532021 | 2012-11-08 06:26:21 +0000 | [diff] [blame] | 464 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | } |
David Brownell | 2e55cc7 | 2005-08-31 09:53:10 -0700 | [diff] [blame] | 466 | EXPORT_SYMBOL_GPL(usbnet_defer_kevent); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | |
| 468 | /*-------------------------------------------------------------------------*/ |
| 469 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 470 | static void rx_complete (struct urb *urb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | |
David S. Miller | dacb397 | 2010-08-10 02:50:55 -0700 | [diff] [blame] | 472 | static int rx_submit (struct usbnet *dev, struct urb *urb, gfp_t flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | { |
| 474 | struct sk_buff *skb; |
| 475 | struct skb_data *entry; |
| 476 | int retval = 0; |
| 477 | unsigned long lockflags; |
David Brownell | 2e55cc7 | 2005-08-31 09:53:10 -0700 | [diff] [blame] | 478 | size_t size = dev->rx_urb_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | |
Bjørn Mork | 70c37bf | 2013-01-28 23:51:28 +0000 | [diff] [blame] | 480 | /* prevent rx skb allocation when error ratio is high */ |
| 481 | if (test_bit(EVENT_RX_KILL, &dev->flags)) { |
| 482 | usb_free_urb(urb); |
| 483 | return -ENOLINK; |
| 484 | } |
| 485 | |
Eric Dumazet | 7bdd402 | 2012-03-14 06:56:25 +0000 | [diff] [blame] | 486 | skb = __netdev_alloc_skb_ip_align(dev->net, size, flags); |
| 487 | if (!skb) { |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 488 | netif_dbg(dev, rx_err, dev->net, "no rx skb\n"); |
David Brownell | 2e55cc7 | 2005-08-31 09:53:10 -0700 | [diff] [blame] | 489 | usbnet_defer_kevent (dev, EVENT_RX_MEMORY); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 490 | usb_free_urb (urb); |
David S. Miller | dacb397 | 2010-08-10 02:50:55 -0700 | [diff] [blame] | 491 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 493 | |
| 494 | entry = (struct skb_data *) skb->cb; |
| 495 | entry->urb = urb; |
| 496 | entry->dev = dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | entry->length = 0; |
| 498 | |
| 499 | usb_fill_bulk_urb (urb, dev->udev, dev->in, |
| 500 | skb->data, size, rx_complete, skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 | |
| 502 | spin_lock_irqsave (&dev->rxq.lock, lockflags); |
| 503 | |
Joe Perches | 8e95a20 | 2009-12-03 07:58:21 +0000 | [diff] [blame] | 504 | if (netif_running (dev->net) && |
| 505 | netif_device_present (dev->net) && |
Oliver Neukum | 69ee472f | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 506 | !test_bit (EVENT_RX_HALT, &dev->flags) && |
| 507 | !test_bit (EVENT_DEV_ASLEEP, &dev->flags)) { |
David Brownell | 18ab458 | 2007-05-25 12:31:32 -0700 | [diff] [blame] | 508 | switch (retval = usb_submit_urb (urb, GFP_ATOMIC)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | case -EPIPE: |
David Brownell | 2e55cc7 | 2005-08-31 09:53:10 -0700 | [diff] [blame] | 510 | usbnet_defer_kevent (dev, EVENT_RX_HALT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | break; |
| 512 | case -ENOMEM: |
David Brownell | 2e55cc7 | 2005-08-31 09:53:10 -0700 | [diff] [blame] | 513 | usbnet_defer_kevent (dev, EVENT_RX_MEMORY); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 514 | break; |
| 515 | case -ENODEV: |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 516 | netif_dbg(dev, ifdown, dev->net, "device gone\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | netif_device_detach (dev->net); |
| 518 | break; |
David S. Miller | dacb397 | 2010-08-10 02:50:55 -0700 | [diff] [blame] | 519 | case -EHOSTUNREACH: |
| 520 | retval = -ENOLINK; |
| 521 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 522 | default: |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 523 | netif_dbg(dev, rx_err, dev->net, |
| 524 | "rx submit, %d\n", retval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | tasklet_schedule (&dev->bh); |
| 526 | break; |
| 527 | case 0: |
Ming Lei | 5b6e9bc | 2012-04-26 11:33:46 +0800 | [diff] [blame] | 528 | __usbnet_queue_skb(&dev->rxq, skb, rx_start); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | } |
| 530 | } else { |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 531 | netif_dbg(dev, ifdown, dev->net, "rx: stopped\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 | retval = -ENOLINK; |
| 533 | } |
| 534 | spin_unlock_irqrestore (&dev->rxq.lock, lockflags); |
| 535 | if (retval) { |
| 536 | dev_kfree_skb_any (skb); |
| 537 | usb_free_urb (urb); |
| 538 | } |
David S. Miller | dacb397 | 2010-08-10 02:50:55 -0700 | [diff] [blame] | 539 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | } |
| 541 | |
| 542 | |
| 543 | /*-------------------------------------------------------------------------*/ |
| 544 | |
| 545 | static inline void rx_process (struct usbnet *dev, struct sk_buff *skb) |
| 546 | { |
Joe Perches | 8e95a20 | 2009-12-03 07:58:21 +0000 | [diff] [blame] | 547 | if (dev->driver_info->rx_fixup && |
Andrzej Zaborowski | 7a635ea | 2011-03-28 12:56:33 +0000 | [diff] [blame] | 548 | !dev->driver_info->rx_fixup (dev, skb)) { |
| 549 | /* With RX_ASSEMBLE, rx_fixup() must update counters */ |
| 550 | if (!(dev->driver_info->flags & FLAG_RX_ASSEMBLE)) |
| 551 | dev->net->stats.rx_errors++; |
| 552 | goto done; |
| 553 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | // else network stack removes extra byte if we forced a short packet |
| 555 | |
Emil Goode | eb85569 | 2014-02-13 17:50:19 +0100 | [diff] [blame] | 556 | /* all data was already cloned from skb inside the driver */ |
| 557 | if (dev->driver_info->flags & FLAG_MULTI_PACKET) |
| 558 | goto done; |
| 559 | |
| 560 | if (skb->len < ETH_HLEN) { |
| 561 | dev->net->stats.rx_errors++; |
| 562 | dev->net->stats.rx_length_errors++; |
| 563 | netif_dbg(dev, rx_err, dev->net, "rx length %d\n", skb->len); |
| 564 | } else { |
| 565 | usbnet_skb_return(dev, skb); |
Alexey Orishko | 073285f | 2010-11-29 23:23:27 +0000 | [diff] [blame] | 566 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | } |
Alexey Orishko | 073285f | 2010-11-29 23:23:27 +0000 | [diff] [blame] | 568 | |
Andrzej Zaborowski | 7a635ea | 2011-03-28 12:56:33 +0000 | [diff] [blame] | 569 | done: |
Alexey Orishko | 073285f | 2010-11-29 23:23:27 +0000 | [diff] [blame] | 570 | skb_queue_tail(&dev->done, skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | } |
| 572 | |
| 573 | /*-------------------------------------------------------------------------*/ |
| 574 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 575 | static void rx_complete (struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 576 | { |
| 577 | struct sk_buff *skb = (struct sk_buff *) urb->context; |
| 578 | struct skb_data *entry = (struct skb_data *) skb->cb; |
| 579 | struct usbnet *dev = entry->dev; |
| 580 | int urb_status = urb->status; |
Ming Lei | 5b6e9bc | 2012-04-26 11:33:46 +0800 | [diff] [blame] | 581 | enum skb_state state; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | |
| 583 | skb_put (skb, urb->actual_length); |
Ming Lei | 5b6e9bc | 2012-04-26 11:33:46 +0800 | [diff] [blame] | 584 | state = rx_done; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 585 | entry->urb = NULL; |
| 586 | |
| 587 | switch (urb_status) { |
David Brownell | 18ab458 | 2007-05-25 12:31:32 -0700 | [diff] [blame] | 588 | /* success */ |
| 589 | case 0: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 | break; |
| 591 | |
David Brownell | 18ab458 | 2007-05-25 12:31:32 -0700 | [diff] [blame] | 592 | /* stalls need manual reset. this is rare ... except that |
| 593 | * when going through USB 2.0 TTs, unplug appears this way. |
Jean Delvare | 3ac49a1 | 2009-06-04 16:20:28 +0200 | [diff] [blame] | 594 | * we avoid the highspeed version of the ETIMEDOUT/EILSEQ |
David Brownell | 18ab458 | 2007-05-25 12:31:32 -0700 | [diff] [blame] | 595 | * storm, recovering as needed. |
| 596 | */ |
| 597 | case -EPIPE: |
Herbert Xu | 7963837 | 2009-06-29 16:53:28 +0000 | [diff] [blame] | 598 | dev->net->stats.rx_errors++; |
David Brownell | 2e55cc7 | 2005-08-31 09:53:10 -0700 | [diff] [blame] | 599 | usbnet_defer_kevent (dev, EVENT_RX_HALT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | // FALLTHROUGH |
| 601 | |
David Brownell | 18ab458 | 2007-05-25 12:31:32 -0700 | [diff] [blame] | 602 | /* software-driven interface shutdown */ |
| 603 | case -ECONNRESET: /* async unlink */ |
| 604 | case -ESHUTDOWN: /* hardware gone */ |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 605 | netif_dbg(dev, ifdown, dev->net, |
| 606 | "rx shutdown, code %d\n", urb_status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 607 | goto block; |
| 608 | |
Petr Mladek | 37ebb54 | 2014-09-19 17:32:23 +0200 | [diff] [blame] | 609 | /* we get controller i/o faults during hub_wq disconnect() delays. |
David Brownell | 18ab458 | 2007-05-25 12:31:32 -0700 | [diff] [blame] | 610 | * throttle down resubmits, to avoid log floods; just temporarily, |
Petr Mladek | 37ebb54 | 2014-09-19 17:32:23 +0200 | [diff] [blame] | 611 | * so we still recover when the fault isn't a hub_wq delay. |
David Brownell | 18ab458 | 2007-05-25 12:31:32 -0700 | [diff] [blame] | 612 | */ |
| 613 | case -EPROTO: |
| 614 | case -ETIME: |
| 615 | case -EILSEQ: |
Herbert Xu | 7963837 | 2009-06-29 16:53:28 +0000 | [diff] [blame] | 616 | dev->net->stats.rx_errors++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | if (!timer_pending (&dev->delay)) { |
| 618 | mod_timer (&dev->delay, jiffies + THROTTLE_JIFFIES); |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 619 | netif_dbg(dev, link, dev->net, |
| 620 | "rx throttle %d\n", urb_status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 621 | } |
| 622 | block: |
Ming Lei | 5b6e9bc | 2012-04-26 11:33:46 +0800 | [diff] [blame] | 623 | state = rx_cleanup; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | entry->urb = urb; |
| 625 | urb = NULL; |
| 626 | break; |
| 627 | |
David Brownell | 18ab458 | 2007-05-25 12:31:32 -0700 | [diff] [blame] | 628 | /* data overrun ... flush fifo? */ |
| 629 | case -EOVERFLOW: |
Herbert Xu | 7963837 | 2009-06-29 16:53:28 +0000 | [diff] [blame] | 630 | dev->net->stats.rx_over_errors++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 | // FALLTHROUGH |
David Brownell | cb1cebb | 2007-02-15 18:52:30 -0800 | [diff] [blame] | 632 | |
David Brownell | 18ab458 | 2007-05-25 12:31:32 -0700 | [diff] [blame] | 633 | default: |
Ming Lei | 5b6e9bc | 2012-04-26 11:33:46 +0800 | [diff] [blame] | 634 | state = rx_cleanup; |
Herbert Xu | 7963837 | 2009-06-29 16:53:28 +0000 | [diff] [blame] | 635 | dev->net->stats.rx_errors++; |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 636 | netif_dbg(dev, rx_err, dev->net, "rx status %d\n", urb_status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 637 | break; |
| 638 | } |
| 639 | |
Bjørn Mork | 70c37bf | 2013-01-28 23:51:28 +0000 | [diff] [blame] | 640 | /* stop rx if packet error rate is high */ |
| 641 | if (++dev->pkt_cnt > 30) { |
| 642 | dev->pkt_cnt = 0; |
| 643 | dev->pkt_err = 0; |
| 644 | } else { |
| 645 | if (state == rx_cleanup) |
| 646 | dev->pkt_err++; |
| 647 | if (dev->pkt_err > 20) |
| 648 | set_bit(EVENT_RX_KILL, &dev->flags); |
| 649 | } |
| 650 | |
Ming Lei | 5b6e9bc | 2012-04-26 11:33:46 +0800 | [diff] [blame] | 651 | state = defer_bh(dev, skb, &dev->rxq, state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 652 | |
| 653 | if (urb) { |
Joe Perches | 8e95a20 | 2009-12-03 07:58:21 +0000 | [diff] [blame] | 654 | if (netif_running (dev->net) && |
Ming Lei | 5b6e9bc | 2012-04-26 11:33:46 +0800 | [diff] [blame] | 655 | !test_bit (EVENT_RX_HALT, &dev->flags) && |
| 656 | state != unlink_start) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 | rx_submit (dev, urb, GFP_ATOMIC); |
Oliver Neukum | 8a78335 | 2012-03-03 18:45:07 +0100 | [diff] [blame] | 658 | usb_mark_last_busy(dev->udev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 659 | return; |
| 660 | } |
| 661 | usb_free_urb (urb); |
| 662 | } |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 663 | netif_dbg(dev, rx_err, dev->net, "no read resubmitted\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 664 | } |
| 665 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 666 | /*-------------------------------------------------------------------------*/ |
Jussi Kivilinna | 7834ddb | 2009-08-11 22:57:16 +0300 | [diff] [blame] | 667 | void usbnet_pause_rx(struct usbnet *dev) |
| 668 | { |
| 669 | set_bit(EVENT_RX_PAUSED, &dev->flags); |
| 670 | |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 671 | netif_dbg(dev, rx_status, dev->net, "paused rx queue enabled\n"); |
Jussi Kivilinna | 7834ddb | 2009-08-11 22:57:16 +0300 | [diff] [blame] | 672 | } |
| 673 | EXPORT_SYMBOL_GPL(usbnet_pause_rx); |
| 674 | |
| 675 | void usbnet_resume_rx(struct usbnet *dev) |
| 676 | { |
| 677 | struct sk_buff *skb; |
| 678 | int num = 0; |
| 679 | |
| 680 | clear_bit(EVENT_RX_PAUSED, &dev->flags); |
| 681 | |
| 682 | while ((skb = skb_dequeue(&dev->rxq_pause)) != NULL) { |
| 683 | usbnet_skb_return(dev, skb); |
| 684 | num++; |
| 685 | } |
| 686 | |
| 687 | tasklet_schedule(&dev->bh); |
| 688 | |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 689 | netif_dbg(dev, rx_status, dev->net, |
| 690 | "paused rx queue disabled, %d skbs requeued\n", num); |
Jussi Kivilinna | 7834ddb | 2009-08-11 22:57:16 +0300 | [diff] [blame] | 691 | } |
| 692 | EXPORT_SYMBOL_GPL(usbnet_resume_rx); |
| 693 | |
| 694 | void usbnet_purge_paused_rxq(struct usbnet *dev) |
| 695 | { |
| 696 | skb_queue_purge(&dev->rxq_pause); |
| 697 | } |
| 698 | EXPORT_SYMBOL_GPL(usbnet_purge_paused_rxq); |
| 699 | |
| 700 | /*-------------------------------------------------------------------------*/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 701 | |
| 702 | // unlink pending rx/tx; completion handlers do all other cleanup |
| 703 | |
| 704 | static int unlink_urbs (struct usbnet *dev, struct sk_buff_head *q) |
| 705 | { |
| 706 | unsigned long flags; |
Ming Lei | 5b6e9bc | 2012-04-26 11:33:46 +0800 | [diff] [blame] | 707 | struct sk_buff *skb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 708 | int count = 0; |
| 709 | |
| 710 | spin_lock_irqsave (&q->lock, flags); |
Ming Lei | 5b6e9bc | 2012-04-26 11:33:46 +0800 | [diff] [blame] | 711 | while (!skb_queue_empty(q)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 712 | struct skb_data *entry; |
| 713 | struct urb *urb; |
| 714 | int retval; |
| 715 | |
Ming Lei | 5b6e9bc | 2012-04-26 11:33:46 +0800 | [diff] [blame] | 716 | skb_queue_walk(q, skb) { |
| 717 | entry = (struct skb_data *) skb->cb; |
| 718 | if (entry->state != unlink_start) |
| 719 | goto found; |
| 720 | } |
| 721 | break; |
| 722 | found: |
| 723 | entry->state = unlink_start; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 724 | urb = entry->urb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 725 | |
tom.leiming@gmail.com | 0956a8c | 2012-03-22 03:22:18 +0000 | [diff] [blame] | 726 | /* |
| 727 | * Get reference count of the URB to avoid it to be |
| 728 | * freed during usb_unlink_urb, which may trigger |
| 729 | * use-after-free problem inside usb_unlink_urb since |
| 730 | * usb_unlink_urb is always racing with .complete |
| 731 | * handler(include defer_bh). |
| 732 | */ |
| 733 | usb_get_urb(urb); |
Sebastian Siewior | 4231d47 | 2012-03-07 10:19:28 +0000 | [diff] [blame] | 734 | spin_unlock_irqrestore(&q->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 735 | // during some PM-driven resume scenarios, |
| 736 | // these (async) unlinks complete immediately |
| 737 | retval = usb_unlink_urb (urb); |
| 738 | if (retval != -EINPROGRESS && retval != 0) |
Joe Perches | 60b8675 | 2010-02-17 10:30:23 +0000 | [diff] [blame] | 739 | netdev_dbg(dev->net, "unlink urb err, %d\n", retval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 740 | else |
| 741 | count++; |
tom.leiming@gmail.com | 0956a8c | 2012-03-22 03:22:18 +0000 | [diff] [blame] | 742 | usb_put_urb(urb); |
Sebastian Siewior | 4231d47 | 2012-03-07 10:19:28 +0000 | [diff] [blame] | 743 | spin_lock_irqsave(&q->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 744 | } |
| 745 | spin_unlock_irqrestore (&q->lock, flags); |
| 746 | return count; |
| 747 | } |
| 748 | |
Jamie Painter | a99c194 | 2006-07-27 14:17:28 -0400 | [diff] [blame] | 749 | // Flush all pending rx urbs |
| 750 | // minidrivers may need to do this when the MTU changes |
| 751 | |
| 752 | void usbnet_unlink_rx_urbs(struct usbnet *dev) |
| 753 | { |
| 754 | if (netif_running(dev->net)) { |
| 755 | (void) unlink_urbs (dev, &dev->rxq); |
| 756 | tasklet_schedule(&dev->bh); |
| 757 | } |
| 758 | } |
| 759 | EXPORT_SYMBOL_GPL(usbnet_unlink_rx_urbs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 760 | |
| 761 | /*-------------------------------------------------------------------------*/ |
| 762 | |
Eugene Shatokhin | fcb0bb6 | 2015-09-01 17:05:33 +0300 | [diff] [blame] | 763 | static void wait_skb_queue_empty(struct sk_buff_head *q) |
| 764 | { |
| 765 | unsigned long flags; |
| 766 | |
| 767 | spin_lock_irqsave(&q->lock, flags); |
| 768 | while (!skb_queue_empty(q)) { |
| 769 | spin_unlock_irqrestore(&q->lock, flags); |
| 770 | schedule_timeout(msecs_to_jiffies(UNLINK_TIMEOUT_MS)); |
| 771 | set_current_state(TASK_UNINTERRUPTIBLE); |
| 772 | spin_lock_irqsave(&q->lock, flags); |
| 773 | } |
| 774 | spin_unlock_irqrestore(&q->lock, flags); |
| 775 | } |
| 776 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 777 | // precondition: never called in_interrupt |
Oliver Neukum | 69ee472f | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 778 | static void usbnet_terminate_urbs(struct usbnet *dev) |
| 779 | { |
Oliver Neukum | 69ee472f | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 780 | DECLARE_WAITQUEUE(wait, current); |
| 781 | int temp; |
| 782 | |
| 783 | /* ensure there are no more active urbs */ |
Oliver Neukum | 14a0d63 | 2014-03-26 14:32:51 +0100 | [diff] [blame] | 784 | add_wait_queue(&dev->wait, &wait); |
Oliver Neukum | 69ee472f | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 785 | set_current_state(TASK_UNINTERRUPTIBLE); |
Oliver Neukum | 69ee472f | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 786 | temp = unlink_urbs(dev, &dev->txq) + |
| 787 | unlink_urbs(dev, &dev->rxq); |
| 788 | |
| 789 | /* maybe wait for deletions to finish. */ |
Eugene Shatokhin | fcb0bb6 | 2015-09-01 17:05:33 +0300 | [diff] [blame] | 790 | wait_skb_queue_empty(&dev->rxq); |
| 791 | wait_skb_queue_empty(&dev->txq); |
| 792 | wait_skb_queue_empty(&dev->done); |
| 793 | netif_dbg(dev, ifdown, dev->net, |
| 794 | "waited for %d urb completions\n", temp); |
Oliver Neukum | 69ee472f | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 795 | set_current_state(TASK_RUNNING); |
Oliver Neukum | 14a0d63 | 2014-03-26 14:32:51 +0100 | [diff] [blame] | 796 | remove_wait_queue(&dev->wait, &wait); |
Oliver Neukum | 69ee472f | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 797 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 798 | |
Stephen Hemminger | 777baa4 | 2009-03-20 19:35:54 +0000 | [diff] [blame] | 799 | int usbnet_stop (struct net_device *net) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 800 | { |
| 801 | struct usbnet *dev = netdev_priv(net); |
Jussi Kivilinna | a33e9e7 | 2009-06-16 17:17:27 +0300 | [diff] [blame] | 802 | struct driver_info *info = dev->driver_info; |
Eugene Shatokhin | f50791a | 2015-08-24 23:13:42 +0300 | [diff] [blame] | 803 | int retval, pm, mpn; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 804 | |
Ming Lei | 75bd0cb | 2011-04-28 22:37:09 +0000 | [diff] [blame] | 805 | clear_bit(EVENT_DEV_OPEN, &dev->flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 806 | netif_stop_queue (net); |
| 807 | |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 808 | netif_info(dev, ifdown, dev->net, |
Ben Hutchings | 8ccef43 | 2010-06-08 08:20:59 +0000 | [diff] [blame] | 809 | "stop stats: rx/tx %lu/%lu, errs %lu/%lu\n", |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 810 | net->stats.rx_packets, net->stats.tx_packets, |
| 811 | net->stats.rx_errors, net->stats.tx_errors); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 812 | |
Oliver Neukum | 14a0d63 | 2014-03-26 14:32:51 +0100 | [diff] [blame] | 813 | /* to not race resume */ |
| 814 | pm = usb_autopm_get_interface(dev->intf); |
Jussi Kivilinna | a33e9e7 | 2009-06-16 17:17:27 +0300 | [diff] [blame] | 815 | /* allow minidriver to stop correctly (wireless devices to turn off |
| 816 | * radio etc) */ |
| 817 | if (info->stop) { |
| 818 | retval = info->stop(dev); |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 819 | if (retval < 0) |
| 820 | netif_info(dev, ifdown, dev->net, |
| 821 | "stop fail (%d) usbnet usb-%s-%s, %s\n", |
| 822 | retval, |
| 823 | dev->udev->bus->bus_name, dev->udev->devpath, |
| 824 | info->description); |
Jussi Kivilinna | a33e9e7 | 2009-06-16 17:17:27 +0300 | [diff] [blame] | 825 | } |
| 826 | |
Oliver Neukum | 69ee472f | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 827 | if (!(info->flags & FLAG_AVOID_UNLINK_URBS)) |
| 828 | usbnet_terminate_urbs(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 829 | |
Dan Williams | 6eecdc5 | 2013-05-06 11:29:23 +0000 | [diff] [blame] | 830 | usbnet_status_stop(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 831 | |
Jussi Kivilinna | 7834ddb | 2009-08-11 22:57:16 +0300 | [diff] [blame] | 832 | usbnet_purge_paused_rxq(dev); |
| 833 | |
Eugene Shatokhin | f50791a | 2015-08-24 23:13:42 +0300 | [diff] [blame] | 834 | mpn = !test_and_clear_bit(EVENT_NO_RUNTIME_PM, &dev->flags); |
| 835 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 836 | /* deferred work (task, timer, softirq) must also stop. |
| 837 | * can't flush_scheduled_work() until we drop rtnl (later), |
| 838 | * else workers could deadlock; so make workers a NOP. |
| 839 | */ |
| 840 | dev->flags = 0; |
| 841 | del_timer_sync (&dev->delay); |
| 842 | tasklet_kill (&dev->bh); |
Oliver Neukum | 14a0d63 | 2014-03-26 14:32:51 +0100 | [diff] [blame] | 843 | if (!pm) |
| 844 | usb_autopm_put_interface(dev->intf); |
| 845 | |
Eugene Shatokhin | f50791a | 2015-08-24 23:13:42 +0300 | [diff] [blame] | 846 | if (info->manage_power && mpn) |
Oliver Neukum | 69ee472f | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 847 | info->manage_power(dev, 0); |
| 848 | else |
| 849 | usb_autopm_put_interface(dev->intf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 850 | |
| 851 | return 0; |
| 852 | } |
Stephen Hemminger | 777baa4 | 2009-03-20 19:35:54 +0000 | [diff] [blame] | 853 | EXPORT_SYMBOL_GPL(usbnet_stop); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 854 | |
| 855 | /*-------------------------------------------------------------------------*/ |
| 856 | |
| 857 | // posts reads, and enables write queuing |
| 858 | |
| 859 | // precondition: never called in_interrupt |
| 860 | |
Stephen Hemminger | 777baa4 | 2009-03-20 19:35:54 +0000 | [diff] [blame] | 861 | int usbnet_open (struct net_device *net) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 862 | { |
| 863 | struct usbnet *dev = netdev_priv(net); |
Oliver Neukum | a11a654 | 2007-08-03 13:52:19 +0200 | [diff] [blame] | 864 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 865 | struct driver_info *info = dev->driver_info; |
| 866 | |
Oliver Neukum | a11a654 | 2007-08-03 13:52:19 +0200 | [diff] [blame] | 867 | if ((retval = usb_autopm_get_interface(dev->intf)) < 0) { |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 868 | netif_info(dev, ifup, dev->net, |
| 869 | "resumption fail (%d) usbnet usb-%s-%s, %s\n", |
| 870 | retval, |
| 871 | dev->udev->bus->bus_name, |
| 872 | dev->udev->devpath, |
| 873 | info->description); |
Oliver Neukum | a11a654 | 2007-08-03 13:52:19 +0200 | [diff] [blame] | 874 | goto done_nopm; |
| 875 | } |
| 876 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 877 | // put into "known safe" state |
| 878 | if (info->reset && (retval = info->reset (dev)) < 0) { |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 879 | netif_info(dev, ifup, dev->net, |
| 880 | "open reset fail (%d) usbnet usb-%s-%s, %s\n", |
| 881 | retval, |
| 882 | dev->udev->bus->bus_name, |
| 883 | dev->udev->devpath, |
| 884 | info->description); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 885 | goto done; |
| 886 | } |
| 887 | |
Ming Lei | a88c32a | 2013-07-25 13:47:53 +0800 | [diff] [blame] | 888 | /* hard_mtu or rx_urb_size may change in reset() */ |
| 889 | usbnet_update_max_qlen(dev); |
| 890 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 891 | // insist peer be connected |
| 892 | if (info->check_connect && (retval = info->check_connect (dev)) < 0) { |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 893 | netif_dbg(dev, ifup, dev->net, "can't open; %d\n", retval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 894 | goto done; |
| 895 | } |
| 896 | |
| 897 | /* start any status interrupt transfer */ |
| 898 | if (dev->interrupt) { |
Dan Williams | 6eecdc5 | 2013-05-06 11:29:23 +0000 | [diff] [blame] | 899 | retval = usbnet_status_start(dev, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 900 | if (retval < 0) { |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 901 | netif_err(dev, ifup, dev->net, |
| 902 | "intr submit %d\n", retval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 903 | goto done; |
| 904 | } |
| 905 | } |
| 906 | |
Paul Stewart | 68972ef | 2011-04-28 05:43:37 +0000 | [diff] [blame] | 907 | set_bit(EVENT_DEV_OPEN, &dev->flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 908 | netif_start_queue (net); |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 909 | netif_info(dev, ifup, dev->net, |
| 910 | "open: enable queueing (rx %d, tx %d) mtu %d %s framing\n", |
| 911 | (int)RX_QLEN(dev), (int)TX_QLEN(dev), |
| 912 | dev->net->mtu, |
| 913 | (dev->driver_info->flags & FLAG_FRAMING_NC) ? "NetChip" : |
| 914 | (dev->driver_info->flags & FLAG_FRAMING_GL) ? "GeneSys" : |
| 915 | (dev->driver_info->flags & FLAG_FRAMING_Z) ? "Zaurus" : |
| 916 | (dev->driver_info->flags & FLAG_FRAMING_RN) ? "RNDIS" : |
| 917 | (dev->driver_info->flags & FLAG_FRAMING_AX) ? "ASIX" : |
| 918 | "simple"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 919 | |
Bjørn Mork | 70c37bf | 2013-01-28 23:51:28 +0000 | [diff] [blame] | 920 | /* reset rx error state */ |
| 921 | dev->pkt_cnt = 0; |
| 922 | dev->pkt_err = 0; |
| 923 | clear_bit(EVENT_RX_KILL, &dev->flags); |
| 924 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 925 | // delay posting reads until we're fully open |
| 926 | tasklet_schedule (&dev->bh); |
Oliver Neukum | 69ee472f | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 927 | if (info->manage_power) { |
| 928 | retval = info->manage_power(dev, 1); |
Oliver Neukum | a1c088e | 2012-12-18 04:45:29 +0000 | [diff] [blame] | 929 | if (retval < 0) { |
| 930 | retval = 0; |
| 931 | set_bit(EVENT_NO_RUNTIME_PM, &dev->flags); |
| 932 | } else { |
| 933 | usb_autopm_put_interface(dev->intf); |
| 934 | } |
Oliver Neukum | 69ee472f | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 935 | } |
Oliver Neukum | a11a654 | 2007-08-03 13:52:19 +0200 | [diff] [blame] | 936 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 937 | done: |
Oliver Neukum | a11a654 | 2007-08-03 13:52:19 +0200 | [diff] [blame] | 938 | usb_autopm_put_interface(dev->intf); |
| 939 | done_nopm: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 940 | return retval; |
| 941 | } |
Stephen Hemminger | 777baa4 | 2009-03-20 19:35:54 +0000 | [diff] [blame] | 942 | EXPORT_SYMBOL_GPL(usbnet_open); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 943 | |
| 944 | /*-------------------------------------------------------------------------*/ |
| 945 | |
David Brownell | 2e55cc7 | 2005-08-31 09:53:10 -0700 | [diff] [blame] | 946 | /* ethtool methods; minidrivers may need to add some more, but |
| 947 | * they'll probably want to use this base set. |
| 948 | */ |
| 949 | |
Arnd Bergmann | c41286f | 2006-10-09 00:08:01 +0200 | [diff] [blame] | 950 | int usbnet_get_settings (struct net_device *net, struct ethtool_cmd *cmd) |
| 951 | { |
| 952 | struct usbnet *dev = netdev_priv(net); |
| 953 | |
| 954 | if (!dev->mii.mdio_read) |
| 955 | return -EOPNOTSUPP; |
| 956 | |
| 957 | return mii_ethtool_gset(&dev->mii, cmd); |
| 958 | } |
| 959 | EXPORT_SYMBOL_GPL(usbnet_get_settings); |
| 960 | |
| 961 | int usbnet_set_settings (struct net_device *net, struct ethtool_cmd *cmd) |
| 962 | { |
| 963 | struct usbnet *dev = netdev_priv(net); |
| 964 | int retval; |
| 965 | |
| 966 | if (!dev->mii.mdio_write) |
| 967 | return -EOPNOTSUPP; |
| 968 | |
| 969 | retval = mii_ethtool_sset(&dev->mii, cmd); |
| 970 | |
| 971 | /* link speed/duplex might have changed */ |
| 972 | if (dev->driver_info->link_reset) |
| 973 | dev->driver_info->link_reset(dev); |
| 974 | |
Ming Lei | a88c32a | 2013-07-25 13:47:53 +0800 | [diff] [blame] | 975 | /* hard_mtu or rx_urb_size may change in link_reset() */ |
| 976 | usbnet_update_max_qlen(dev); |
| 977 | |
Arnd Bergmann | c41286f | 2006-10-09 00:08:01 +0200 | [diff] [blame] | 978 | return retval; |
| 979 | |
| 980 | } |
| 981 | EXPORT_SYMBOL_GPL(usbnet_set_settings); |
| 982 | |
Arnd Bergmann | c41286f | 2006-10-09 00:08:01 +0200 | [diff] [blame] | 983 | u32 usbnet_get_link (struct net_device *net) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 984 | { |
| 985 | struct usbnet *dev = netdev_priv(net); |
| 986 | |
David Brownell | f29fc25 | 2005-08-31 09:52:31 -0700 | [diff] [blame] | 987 | /* If a check_connect is defined, return its result */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 988 | if (dev->driver_info->check_connect) |
| 989 | return dev->driver_info->check_connect (dev) == 0; |
| 990 | |
Arnd Bergmann | c41286f | 2006-10-09 00:08:01 +0200 | [diff] [blame] | 991 | /* if the device has mii operations, use those */ |
| 992 | if (dev->mii.mdio_read) |
| 993 | return mii_link_ok(&dev->mii); |
| 994 | |
Bjørn Mork | 05ffb3e | 2009-03-01 20:45:40 -0800 | [diff] [blame] | 995 | /* Otherwise, dtrt for drivers calling netif_carrier_{on,off} */ |
| 996 | return ethtool_op_get_link(net); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 997 | } |
Arnd Bergmann | c41286f | 2006-10-09 00:08:01 +0200 | [diff] [blame] | 998 | EXPORT_SYMBOL_GPL(usbnet_get_link); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 999 | |
David Brownell | 18ee91fa | 2006-11-02 12:29:12 -0800 | [diff] [blame] | 1000 | int usbnet_nway_reset(struct net_device *net) |
| 1001 | { |
| 1002 | struct usbnet *dev = netdev_priv(net); |
| 1003 | |
| 1004 | if (!dev->mii.mdio_write) |
| 1005 | return -EOPNOTSUPP; |
| 1006 | |
| 1007 | return mii_nway_restart(&dev->mii); |
| 1008 | } |
| 1009 | EXPORT_SYMBOL_GPL(usbnet_nway_reset); |
| 1010 | |
David Brownell | 18ee91fa | 2006-11-02 12:29:12 -0800 | [diff] [blame] | 1011 | void usbnet_get_drvinfo (struct net_device *net, struct ethtool_drvinfo *info) |
| 1012 | { |
| 1013 | struct usbnet *dev = netdev_priv(net); |
| 1014 | |
Phil Sutter | 86a2f41 | 2012-06-14 01:18:42 +0000 | [diff] [blame] | 1015 | strlcpy (info->driver, dev->driver_name, sizeof info->driver); |
| 1016 | strlcpy (info->version, DRIVER_VERSION, sizeof info->version); |
| 1017 | strlcpy (info->fw_version, dev->driver_info->description, |
David Brownell | 18ee91fa | 2006-11-02 12:29:12 -0800 | [diff] [blame] | 1018 | sizeof info->fw_version); |
| 1019 | usb_make_path (dev->udev, info->bus_info, sizeof info->bus_info); |
| 1020 | } |
| 1021 | EXPORT_SYMBOL_GPL(usbnet_get_drvinfo); |
| 1022 | |
David Brownell | 2e55cc7 | 2005-08-31 09:53:10 -0700 | [diff] [blame] | 1023 | u32 usbnet_get_msglevel (struct net_device *net) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1024 | { |
| 1025 | struct usbnet *dev = netdev_priv(net); |
| 1026 | |
| 1027 | return dev->msg_enable; |
| 1028 | } |
David Brownell | 2e55cc7 | 2005-08-31 09:53:10 -0700 | [diff] [blame] | 1029 | EXPORT_SYMBOL_GPL(usbnet_get_msglevel); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1030 | |
David Brownell | 2e55cc7 | 2005-08-31 09:53:10 -0700 | [diff] [blame] | 1031 | void usbnet_set_msglevel (struct net_device *net, u32 level) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1032 | { |
| 1033 | struct usbnet *dev = netdev_priv(net); |
| 1034 | |
| 1035 | dev->msg_enable = level; |
| 1036 | } |
David Brownell | 2e55cc7 | 2005-08-31 09:53:10 -0700 | [diff] [blame] | 1037 | EXPORT_SYMBOL_GPL(usbnet_set_msglevel); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1038 | |
David Brownell | 2e55cc7 | 2005-08-31 09:53:10 -0700 | [diff] [blame] | 1039 | /* drivers may override default ethtool_ops in their bind() routine */ |
Stephen Hemminger | 0fc0b73 | 2009-09-02 01:03:33 -0700 | [diff] [blame] | 1040 | static const struct ethtool_ops usbnet_ethtool_ops = { |
Arnd Bergmann | c41286f | 2006-10-09 00:08:01 +0200 | [diff] [blame] | 1041 | .get_settings = usbnet_get_settings, |
| 1042 | .set_settings = usbnet_set_settings, |
David Brownell | 2e55cc7 | 2005-08-31 09:53:10 -0700 | [diff] [blame] | 1043 | .get_link = usbnet_get_link, |
Arnd Bergmann | c41286f | 2006-10-09 00:08:01 +0200 | [diff] [blame] | 1044 | .nway_reset = usbnet_nway_reset, |
David Brownell | 18ee91fa | 2006-11-02 12:29:12 -0800 | [diff] [blame] | 1045 | .get_drvinfo = usbnet_get_drvinfo, |
David Brownell | 2e55cc7 | 2005-08-31 09:53:10 -0700 | [diff] [blame] | 1046 | .get_msglevel = usbnet_get_msglevel, |
| 1047 | .set_msglevel = usbnet_set_msglevel, |
Richard Cochran | 123edb1 | 2012-04-03 22:59:41 +0000 | [diff] [blame] | 1048 | .get_ts_info = ethtool_op_get_ts_info, |
David Brownell | 2e55cc7 | 2005-08-31 09:53:10 -0700 | [diff] [blame] | 1049 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1050 | |
| 1051 | /*-------------------------------------------------------------------------*/ |
| 1052 | |
Ming Lei | 4b49f58 | 2013-04-11 04:40:40 +0000 | [diff] [blame] | 1053 | static void __handle_link_change(struct usbnet *dev) |
| 1054 | { |
| 1055 | if (!test_bit(EVENT_DEV_OPEN, &dev->flags)) |
| 1056 | return; |
| 1057 | |
| 1058 | if (!netif_carrier_ok(dev->net)) { |
| 1059 | /* kill URBs for reading packets to save bus bandwidth */ |
| 1060 | unlink_urbs(dev, &dev->rxq); |
| 1061 | |
| 1062 | /* |
| 1063 | * tx_timeout will unlink URBs for sending packets and |
| 1064 | * tx queue is stopped by netcore after link becomes off |
| 1065 | */ |
| 1066 | } else { |
| 1067 | /* submitting URBs for reading packets */ |
| 1068 | tasklet_schedule(&dev->bh); |
| 1069 | } |
| 1070 | |
Ming Lei | a88c32a | 2013-07-25 13:47:53 +0800 | [diff] [blame] | 1071 | /* hard_mtu or rx_urb_size may change during link change */ |
| 1072 | usbnet_update_max_qlen(dev); |
| 1073 | |
Ming Lei | 4b49f58 | 2013-04-11 04:40:40 +0000 | [diff] [blame] | 1074 | clear_bit(EVENT_LINK_CHANGE, &dev->flags); |
| 1075 | } |
| 1076 | |
Olivier Blin | 1efed2d | 2014-10-24 19:43:00 +0200 | [diff] [blame] | 1077 | static void usbnet_set_rx_mode(struct net_device *net) |
| 1078 | { |
| 1079 | struct usbnet *dev = netdev_priv(net); |
| 1080 | |
| 1081 | usbnet_defer_kevent(dev, EVENT_SET_RX_MODE); |
| 1082 | } |
| 1083 | |
| 1084 | static void __handle_set_rx_mode(struct usbnet *dev) |
| 1085 | { |
| 1086 | if (dev->driver_info->set_rx_mode) |
| 1087 | (dev->driver_info->set_rx_mode)(dev); |
| 1088 | |
| 1089 | clear_bit(EVENT_SET_RX_MODE, &dev->flags); |
| 1090 | } |
| 1091 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1092 | /* work that cannot be done in interrupt context uses keventd. |
| 1093 | * |
| 1094 | * NOTE: with 2.5 we could do more of this using completion callbacks, |
| 1095 | * especially now that control transfers can be queued. |
| 1096 | */ |
| 1097 | static void |
Oliver Neukum | 11f17ef | 2015-04-09 10:09:04 +0200 | [diff] [blame] | 1098 | usbnet_deferred_kevent (struct work_struct *work) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1099 | { |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 1100 | struct usbnet *dev = |
| 1101 | container_of(work, struct usbnet, kevent); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1102 | int status; |
| 1103 | |
| 1104 | /* usb_clear_halt() needs a thread context */ |
| 1105 | if (test_bit (EVENT_TX_HALT, &dev->flags)) { |
| 1106 | unlink_urbs (dev, &dev->txq); |
Oliver Neukum | 69ee472f | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 1107 | status = usb_autopm_get_interface(dev->intf); |
| 1108 | if (status < 0) |
| 1109 | goto fail_pipe; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1110 | status = usb_clear_halt (dev->udev, dev->out); |
Oliver Neukum | 69ee472f | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 1111 | usb_autopm_put_interface(dev->intf); |
Joe Perches | 8e95a20 | 2009-12-03 07:58:21 +0000 | [diff] [blame] | 1112 | if (status < 0 && |
| 1113 | status != -EPIPE && |
| 1114 | status != -ESHUTDOWN) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1115 | if (netif_msg_tx_err (dev)) |
Oliver Neukum | 69ee472f | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 1116 | fail_pipe: |
Joe Perches | 60b8675 | 2010-02-17 10:30:23 +0000 | [diff] [blame] | 1117 | netdev_err(dev->net, "can't clear tx halt, status %d\n", |
| 1118 | status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1119 | } else { |
| 1120 | clear_bit (EVENT_TX_HALT, &dev->flags); |
David Brownell | f29fc25 | 2005-08-31 09:52:31 -0700 | [diff] [blame] | 1121 | if (status != -ESHUTDOWN) |
| 1122 | netif_wake_queue (dev->net); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1123 | } |
| 1124 | } |
| 1125 | if (test_bit (EVENT_RX_HALT, &dev->flags)) { |
| 1126 | unlink_urbs (dev, &dev->rxq); |
Oliver Neukum | 69ee472f | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 1127 | status = usb_autopm_get_interface(dev->intf); |
| 1128 | if (status < 0) |
| 1129 | goto fail_halt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1130 | status = usb_clear_halt (dev->udev, dev->in); |
Oliver Neukum | 69ee472f | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 1131 | usb_autopm_put_interface(dev->intf); |
Joe Perches | 8e95a20 | 2009-12-03 07:58:21 +0000 | [diff] [blame] | 1132 | if (status < 0 && |
| 1133 | status != -EPIPE && |
| 1134 | status != -ESHUTDOWN) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1135 | if (netif_msg_rx_err (dev)) |
Oliver Neukum | 69ee472f | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 1136 | fail_halt: |
Joe Perches | 60b8675 | 2010-02-17 10:30:23 +0000 | [diff] [blame] | 1137 | netdev_err(dev->net, "can't clear rx halt, status %d\n", |
| 1138 | status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1139 | } else { |
| 1140 | clear_bit (EVENT_RX_HALT, &dev->flags); |
| 1141 | tasklet_schedule (&dev->bh); |
| 1142 | } |
| 1143 | } |
| 1144 | |
| 1145 | /* tasklet could resubmit itself forever if memory is tight */ |
| 1146 | if (test_bit (EVENT_RX_MEMORY, &dev->flags)) { |
| 1147 | struct urb *urb = NULL; |
David S. Miller | dacb397 | 2010-08-10 02:50:55 -0700 | [diff] [blame] | 1148 | int resched = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1149 | |
| 1150 | if (netif_running (dev->net)) |
| 1151 | urb = usb_alloc_urb (0, GFP_KERNEL); |
| 1152 | else |
| 1153 | clear_bit (EVENT_RX_MEMORY, &dev->flags); |
| 1154 | if (urb != NULL) { |
| 1155 | clear_bit (EVENT_RX_MEMORY, &dev->flags); |
Oliver Neukum | 69ee472f | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 1156 | status = usb_autopm_get_interface(dev->intf); |
Jesper Juhl | ab60707 | 2011-02-10 10:58:45 +0000 | [diff] [blame] | 1157 | if (status < 0) { |
| 1158 | usb_free_urb(urb); |
Oliver Neukum | 69ee472f | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 1159 | goto fail_lowmem; |
Jesper Juhl | ab60707 | 2011-02-10 10:58:45 +0000 | [diff] [blame] | 1160 | } |
David S. Miller | dacb397 | 2010-08-10 02:50:55 -0700 | [diff] [blame] | 1161 | if (rx_submit (dev, urb, GFP_KERNEL) == -ENOLINK) |
| 1162 | resched = 0; |
Oliver Neukum | 69ee472f | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 1163 | usb_autopm_put_interface(dev->intf); |
| 1164 | fail_lowmem: |
David S. Miller | dacb397 | 2010-08-10 02:50:55 -0700 | [diff] [blame] | 1165 | if (resched) |
| 1166 | tasklet_schedule (&dev->bh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1167 | } |
| 1168 | } |
| 1169 | |
David Hollis | 7ea13c9 | 2005-04-22 15:07:02 -0700 | [diff] [blame] | 1170 | if (test_bit (EVENT_LINK_RESET, &dev->flags)) { |
David Brownell | cb1cebb | 2007-02-15 18:52:30 -0800 | [diff] [blame] | 1171 | struct driver_info *info = dev->driver_info; |
David Hollis | 7ea13c9 | 2005-04-22 15:07:02 -0700 | [diff] [blame] | 1172 | int retval = 0; |
| 1173 | |
| 1174 | clear_bit (EVENT_LINK_RESET, &dev->flags); |
Oliver Neukum | 69ee472f | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 1175 | status = usb_autopm_get_interface(dev->intf); |
| 1176 | if (status < 0) |
| 1177 | goto skip_reset; |
David Hollis | 7ea13c9 | 2005-04-22 15:07:02 -0700 | [diff] [blame] | 1178 | if(info->link_reset && (retval = info->link_reset(dev)) < 0) { |
Oliver Neukum | 69ee472f | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 1179 | usb_autopm_put_interface(dev->intf); |
| 1180 | skip_reset: |
Joe Perches | 60b8675 | 2010-02-17 10:30:23 +0000 | [diff] [blame] | 1181 | netdev_info(dev->net, "link reset failed (%d) usbnet usb-%s-%s, %s\n", |
| 1182 | retval, |
| 1183 | dev->udev->bus->bus_name, |
| 1184 | dev->udev->devpath, |
| 1185 | info->description); |
Oliver Neukum | 69ee472f | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 1186 | } else { |
| 1187 | usb_autopm_put_interface(dev->intf); |
David Hollis | 7ea13c9 | 2005-04-22 15:07:02 -0700 | [diff] [blame] | 1188 | } |
Ming Lei | 4b49f58 | 2013-04-11 04:40:40 +0000 | [diff] [blame] | 1189 | |
| 1190 | /* handle link change from link resetting */ |
| 1191 | __handle_link_change(dev); |
David Hollis | 7ea13c9 | 2005-04-22 15:07:02 -0700 | [diff] [blame] | 1192 | } |
| 1193 | |
Ming Lei | 4b49f58 | 2013-04-11 04:40:40 +0000 | [diff] [blame] | 1194 | if (test_bit (EVENT_LINK_CHANGE, &dev->flags)) |
| 1195 | __handle_link_change(dev); |
| 1196 | |
Olivier Blin | 1efed2d | 2014-10-24 19:43:00 +0200 | [diff] [blame] | 1197 | if (test_bit (EVENT_SET_RX_MODE, &dev->flags)) |
| 1198 | __handle_set_rx_mode(dev); |
| 1199 | |
| 1200 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1201 | if (dev->flags) |
Joe Perches | 60b8675 | 2010-02-17 10:30:23 +0000 | [diff] [blame] | 1202 | netdev_dbg(dev->net, "kevent done, flags = 0x%lx\n", dev->flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1203 | } |
| 1204 | |
| 1205 | /*-------------------------------------------------------------------------*/ |
| 1206 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 1207 | static void tx_complete (struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1208 | { |
| 1209 | struct sk_buff *skb = (struct sk_buff *) urb->context; |
| 1210 | struct skb_data *entry = (struct skb_data *) skb->cb; |
| 1211 | struct usbnet *dev = entry->dev; |
| 1212 | |
| 1213 | if (urb->status == 0) { |
Ben Hutchings | 1e9e39f | 2015-02-26 19:34:37 +0000 | [diff] [blame] | 1214 | dev->net->stats.tx_packets += entry->packets; |
Herbert Xu | 7963837 | 2009-06-29 16:53:28 +0000 | [diff] [blame] | 1215 | dev->net->stats.tx_bytes += entry->length; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1216 | } else { |
Herbert Xu | 7963837 | 2009-06-29 16:53:28 +0000 | [diff] [blame] | 1217 | dev->net->stats.tx_errors++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1218 | |
| 1219 | switch (urb->status) { |
| 1220 | case -EPIPE: |
David Brownell | 2e55cc7 | 2005-08-31 09:53:10 -0700 | [diff] [blame] | 1221 | usbnet_defer_kevent (dev, EVENT_TX_HALT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1222 | break; |
| 1223 | |
| 1224 | /* software-driven interface shutdown */ |
| 1225 | case -ECONNRESET: // async unlink |
| 1226 | case -ESHUTDOWN: // hardware gone |
| 1227 | break; |
| 1228 | |
Petr Mladek | 37ebb54 | 2014-09-19 17:32:23 +0200 | [diff] [blame] | 1229 | /* like rx, tx gets controller i/o faults during hub_wq |
| 1230 | * delays and so it uses the same throttling mechanism. |
| 1231 | */ |
Pete Zaitcev | 38e2bfc | 2006-09-18 22:49:02 -0700 | [diff] [blame] | 1232 | case -EPROTO: |
| 1233 | case -ETIME: |
| 1234 | case -EILSEQ: |
Oliver Neukum | 69ee472f | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 1235 | usb_mark_last_busy(dev->udev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1236 | if (!timer_pending (&dev->delay)) { |
| 1237 | mod_timer (&dev->delay, |
| 1238 | jiffies + THROTTLE_JIFFIES); |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 1239 | netif_dbg(dev, link, dev->net, |
| 1240 | "tx throttle %d\n", urb->status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1241 | } |
| 1242 | netif_stop_queue (dev->net); |
| 1243 | break; |
| 1244 | default: |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 1245 | netif_dbg(dev, tx_err, dev->net, |
| 1246 | "tx err %d\n", entry->urb->status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1247 | break; |
| 1248 | } |
| 1249 | } |
| 1250 | |
Oliver Neukum | 69ee472f | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 1251 | usb_autopm_put_interface_async(dev->intf); |
Ming Lei | 5b6e9bc | 2012-04-26 11:33:46 +0800 | [diff] [blame] | 1252 | (void) defer_bh(dev, skb, &dev->txq, tx_done); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1253 | } |
| 1254 | |
| 1255 | /*-------------------------------------------------------------------------*/ |
| 1256 | |
Stephen Hemminger | 777baa4 | 2009-03-20 19:35:54 +0000 | [diff] [blame] | 1257 | void usbnet_tx_timeout (struct net_device *net) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1258 | { |
| 1259 | struct usbnet *dev = netdev_priv(net); |
| 1260 | |
| 1261 | unlink_urbs (dev, &dev->txq); |
| 1262 | tasklet_schedule (&dev->bh); |
Oliver Neukum | dbcdd4d | 2014-08-01 14:01:51 +0200 | [diff] [blame] | 1263 | /* this needs to be handled individually because the generic layer |
| 1264 | * doesn't know what is sufficient and could not restore private |
| 1265 | * information if a remedy of an unconditional reset were used. |
| 1266 | */ |
| 1267 | if (dev->driver_info->recover) |
| 1268 | (dev->driver_info->recover)(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1269 | } |
Stephen Hemminger | 777baa4 | 2009-03-20 19:35:54 +0000 | [diff] [blame] | 1270 | EXPORT_SYMBOL_GPL(usbnet_tx_timeout); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1271 | |
| 1272 | /*-------------------------------------------------------------------------*/ |
| 1273 | |
Ming Lei | 638c511 | 2013-08-08 21:48:24 +0800 | [diff] [blame] | 1274 | static int build_dma_sg(const struct sk_buff *skb, struct urb *urb) |
| 1275 | { |
| 1276 | unsigned num_sgs, total_len = 0; |
| 1277 | int i, s = 0; |
| 1278 | |
| 1279 | num_sgs = skb_shinfo(skb)->nr_frags + 1; |
| 1280 | if (num_sgs == 1) |
| 1281 | return 0; |
| 1282 | |
Ming Lei | 60e453a | 2013-09-23 20:59:35 +0800 | [diff] [blame] | 1283 | /* reserve one for zero packet */ |
| 1284 | urb->sg = kmalloc((num_sgs + 1) * sizeof(struct scatterlist), |
| 1285 | GFP_ATOMIC); |
Ming Lei | 638c511 | 2013-08-08 21:48:24 +0800 | [diff] [blame] | 1286 | if (!urb->sg) |
| 1287 | return -ENOMEM; |
| 1288 | |
| 1289 | urb->num_sgs = num_sgs; |
Bjørn Mork | fdc3452 | 2014-01-10 23:10:17 +0100 | [diff] [blame] | 1290 | sg_init_table(urb->sg, urb->num_sgs + 1); |
Ming Lei | 638c511 | 2013-08-08 21:48:24 +0800 | [diff] [blame] | 1291 | |
| 1292 | sg_set_buf(&urb->sg[s++], skb->data, skb_headlen(skb)); |
| 1293 | total_len += skb_headlen(skb); |
| 1294 | |
| 1295 | for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) { |
| 1296 | struct skb_frag_struct *f = &skb_shinfo(skb)->frags[i]; |
| 1297 | |
| 1298 | total_len += skb_frag_size(f); |
| 1299 | sg_set_page(&urb->sg[i + s], f->page.p, f->size, |
| 1300 | f->page_offset); |
| 1301 | } |
| 1302 | urb->transfer_buffer_length = total_len; |
| 1303 | |
| 1304 | return 1; |
| 1305 | } |
| 1306 | |
Stephen Hemminger | 25a79c4 | 2009-08-31 19:50:45 +0000 | [diff] [blame] | 1307 | netdev_tx_t usbnet_start_xmit (struct sk_buff *skb, |
| 1308 | struct net_device *net) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1309 | { |
| 1310 | struct usbnet *dev = netdev_priv(net); |
Jason A. Donenfeld | 3e4336a | 2015-05-06 15:09:40 +0200 | [diff] [blame] | 1311 | unsigned int length; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1312 | struct urb *urb = NULL; |
| 1313 | struct skb_data *entry; |
| 1314 | struct driver_info *info = dev->driver_info; |
| 1315 | unsigned long flags; |
Stephen Hemminger | 25a79c4 | 2009-08-31 19:50:45 +0000 | [diff] [blame] | 1316 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1317 | |
Konstantin Khlebnikov | 23ba079 | 2011-11-07 05:54:58 +0000 | [diff] [blame] | 1318 | if (skb) |
| 1319 | skb_tx_timestamp(skb); |
Michael Riesch | f9b491e | 2011-09-29 04:06:26 +0000 | [diff] [blame] | 1320 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1321 | // some devices want funky USB-level framing, for |
| 1322 | // win32 driver (usually) and/or hardware quirks |
| 1323 | if (info->tx_fixup) { |
| 1324 | skb = info->tx_fixup (dev, skb, GFP_ATOMIC); |
| 1325 | if (!skb) { |
Bjørn Mork | bf414b3 | 2013-01-31 08:36:05 +0000 | [diff] [blame] | 1326 | /* packet collected; minidriver waiting for more */ |
| 1327 | if (info->flags & FLAG_MULTI_PACKET) |
Alexey Orishko | 073285f | 2010-11-29 23:23:27 +0000 | [diff] [blame] | 1328 | goto not_drop; |
Bjørn Mork | bf414b3 | 2013-01-31 08:36:05 +0000 | [diff] [blame] | 1329 | netif_dbg(dev, tx_err, dev->net, "can't tx_fixup skb\n"); |
| 1330 | goto drop; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1331 | } |
| 1332 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1333 | |
| 1334 | if (!(urb = usb_alloc_urb (0, GFP_ATOMIC))) { |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 1335 | netif_dbg(dev, tx_err, dev->net, "no urb\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1336 | goto drop; |
| 1337 | } |
| 1338 | |
| 1339 | entry = (struct skb_data *) skb->cb; |
| 1340 | entry->urb = urb; |
| 1341 | entry->dev = dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1342 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1343 | usb_fill_bulk_urb (urb, dev->udev, dev->out, |
| 1344 | skb->data, skb->len, tx_complete, skb); |
Ming Lei | 638c511 | 2013-08-08 21:48:24 +0800 | [diff] [blame] | 1345 | if (dev->can_dma_sg) { |
| 1346 | if (build_dma_sg(skb, urb) < 0) |
| 1347 | goto drop; |
| 1348 | } |
Ming Lei | 60e453a | 2013-09-23 20:59:35 +0800 | [diff] [blame] | 1349 | length = urb->transfer_buffer_length; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1350 | |
| 1351 | /* don't assume the hardware handles USB_ZERO_PACKET |
| 1352 | * NOTE: strictly conforming cdc-ether devices should expect |
| 1353 | * the ZLP here, but ignore the one-byte packet. |
Alexey Orishko | 073285f | 2010-11-29 23:23:27 +0000 | [diff] [blame] | 1354 | * NOTE2: CDC NCM specification is different from CDC ECM when |
| 1355 | * handling ZLP/short packets, so cdc_ncm driver will make short |
| 1356 | * packet itself if needed. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1357 | */ |
Elina Pasheva | b4d562e3 | 2010-04-06 14:23:07 +0000 | [diff] [blame] | 1358 | if (length % dev->maxpacket == 0) { |
| 1359 | if (!(info->flags & FLAG_SEND_ZLP)) { |
Alexey Orishko | 073285f | 2010-11-29 23:23:27 +0000 | [diff] [blame] | 1360 | if (!(info->flags & FLAG_MULTI_PACKET)) { |
Ming Lei | 60e453a | 2013-09-23 20:59:35 +0800 | [diff] [blame] | 1361 | length++; |
| 1362 | if (skb_tailroom(skb) && !urb->num_sgs) { |
Alexey Orishko | 073285f | 2010-11-29 23:23:27 +0000 | [diff] [blame] | 1363 | skb->data[skb->len] = 0; |
| 1364 | __skb_put(skb, 1); |
Ming Lei | 60e453a | 2013-09-23 20:59:35 +0800 | [diff] [blame] | 1365 | } else if (urb->num_sgs) |
| 1366 | sg_set_buf(&urb->sg[urb->num_sgs++], |
| 1367 | dev->padding_pkt, 1); |
Elina Pasheva | b4d562e3 | 2010-04-06 14:23:07 +0000 | [diff] [blame] | 1368 | } |
| 1369 | } else |
| 1370 | urb->transfer_flags |= URB_ZERO_PACKET; |
Peter Korsgaard | 3e323f3 | 2007-06-27 08:48:15 +0200 | [diff] [blame] | 1371 | } |
Ben Hutchings | 7a1e890 | 2015-03-25 21:41:33 +0100 | [diff] [blame] | 1372 | urb->transfer_buffer_length = length; |
| 1373 | |
| 1374 | if (info->flags & FLAG_MULTI_PACKET) { |
| 1375 | /* Driver has set number of packets and a length delta. |
| 1376 | * Calculate the complete length and ensure that it's |
| 1377 | * positive. |
| 1378 | */ |
| 1379 | entry->length += length; |
| 1380 | if (WARN_ON_ONCE(entry->length <= 0)) |
| 1381 | entry->length = length; |
| 1382 | } else { |
| 1383 | usbnet_set_skb_tx_stats(skb, 1, length); |
| 1384 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1385 | |
Oliver Neukum | 69ee472f | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 1386 | spin_lock_irqsave(&dev->txq.lock, flags); |
| 1387 | retval = usb_autopm_get_interface_async(dev->intf); |
| 1388 | if (retval < 0) { |
| 1389 | spin_unlock_irqrestore(&dev->txq.lock, flags); |
| 1390 | goto drop; |
| 1391 | } |
| 1392 | |
| 1393 | #ifdef CONFIG_PM |
| 1394 | /* if this triggers the device is still a sleep */ |
| 1395 | if (test_bit(EVENT_DEV_ASLEEP, &dev->flags)) { |
| 1396 | /* transmission will be done in resume */ |
| 1397 | usb_anchor_urb(urb, &dev->deferred); |
| 1398 | /* no use to process more packets */ |
| 1399 | netif_stop_queue(net); |
Hemant Kumar | 39707c2 | 2012-10-25 18:17:54 +0000 | [diff] [blame] | 1400 | usb_put_urb(urb); |
Oliver Neukum | 69ee472f | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 1401 | spin_unlock_irqrestore(&dev->txq.lock, flags); |
Joe Perches | 60b8675 | 2010-02-17 10:30:23 +0000 | [diff] [blame] | 1402 | netdev_dbg(dev->net, "Delaying transmission for resumption\n"); |
Oliver Neukum | 69ee472f | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 1403 | goto deferred; |
| 1404 | } |
| 1405 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1406 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1407 | switch ((retval = usb_submit_urb (urb, GFP_ATOMIC))) { |
| 1408 | case -EPIPE: |
| 1409 | netif_stop_queue (net); |
David Brownell | 2e55cc7 | 2005-08-31 09:53:10 -0700 | [diff] [blame] | 1410 | usbnet_defer_kevent (dev, EVENT_TX_HALT); |
Oliver Neukum | 69ee472f | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 1411 | usb_autopm_put_interface_async(dev->intf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1412 | break; |
| 1413 | default: |
Oliver Neukum | 69ee472f | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 1414 | usb_autopm_put_interface_async(dev->intf); |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 1415 | netif_dbg(dev, tx_err, dev->net, |
| 1416 | "tx: submit urb err %d\n", retval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1417 | break; |
| 1418 | case 0: |
Florian Westphal | 860e953 | 2016-05-03 16:33:13 +0200 | [diff] [blame] | 1419 | netif_trans_update(net); |
Ming Lei | 5b6e9bc | 2012-04-26 11:33:46 +0800 | [diff] [blame] | 1420 | __usbnet_queue_skb(&dev->txq, skb, tx_start); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1421 | if (dev->txq.qlen >= TX_QLEN (dev)) |
| 1422 | netif_stop_queue (net); |
| 1423 | } |
| 1424 | spin_unlock_irqrestore (&dev->txq.lock, flags); |
| 1425 | |
| 1426 | if (retval) { |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 1427 | netif_dbg(dev, tx_err, dev->net, "drop, code %d\n", retval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1428 | drop: |
Herbert Xu | 7963837 | 2009-06-29 16:53:28 +0000 | [diff] [blame] | 1429 | dev->net->stats.tx_dropped++; |
Alexey Orishko | 073285f | 2010-11-29 23:23:27 +0000 | [diff] [blame] | 1430 | not_drop: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1431 | if (skb) |
| 1432 | dev_kfree_skb_any (skb); |
Ming Lei | 638c511 | 2013-08-08 21:48:24 +0800 | [diff] [blame] | 1433 | if (urb) { |
| 1434 | kfree(urb->sg); |
| 1435 | usb_free_urb(urb); |
| 1436 | } |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 1437 | } else |
| 1438 | netif_dbg(dev, tx_queued, dev->net, |
Jason A. Donenfeld | 3e4336a | 2015-05-06 15:09:40 +0200 | [diff] [blame] | 1439 | "> tx, len %u, type 0x%x\n", length, skb->protocol); |
Oliver Neukum | 69ee472f | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 1440 | #ifdef CONFIG_PM |
| 1441 | deferred: |
| 1442 | #endif |
Stephen Hemminger | 25a79c4 | 2009-08-31 19:50:45 +0000 | [diff] [blame] | 1443 | return NETDEV_TX_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1444 | } |
Stephen Hemminger | 777baa4 | 2009-03-20 19:35:54 +0000 | [diff] [blame] | 1445 | EXPORT_SYMBOL_GPL(usbnet_start_xmit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1446 | |
Bjørn Mork | 85e8787 | 2012-09-02 22:26:18 +0000 | [diff] [blame] | 1447 | static int rx_alloc_submit(struct usbnet *dev, gfp_t flags) |
Ming Lei | 65841fd | 2012-06-19 21:15:53 +0000 | [diff] [blame] | 1448 | { |
| 1449 | struct urb *urb; |
| 1450 | int i; |
Bjørn Mork | 85e8787 | 2012-09-02 22:26:18 +0000 | [diff] [blame] | 1451 | int ret = 0; |
Ming Lei | 65841fd | 2012-06-19 21:15:53 +0000 | [diff] [blame] | 1452 | |
| 1453 | /* don't refill the queue all at once */ |
| 1454 | for (i = 0; i < 10 && dev->rxq.qlen < RX_QLEN(dev); i++) { |
| 1455 | urb = usb_alloc_urb(0, flags); |
| 1456 | if (urb != NULL) { |
Bjørn Mork | 85e8787 | 2012-09-02 22:26:18 +0000 | [diff] [blame] | 1457 | ret = rx_submit(dev, urb, flags); |
| 1458 | if (ret) |
| 1459 | goto err; |
| 1460 | } else { |
| 1461 | ret = -ENOMEM; |
| 1462 | goto err; |
Ming Lei | 65841fd | 2012-06-19 21:15:53 +0000 | [diff] [blame] | 1463 | } |
| 1464 | } |
Bjørn Mork | 85e8787 | 2012-09-02 22:26:18 +0000 | [diff] [blame] | 1465 | err: |
| 1466 | return ret; |
Ming Lei | 65841fd | 2012-06-19 21:15:53 +0000 | [diff] [blame] | 1467 | } |
| 1468 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1469 | /*-------------------------------------------------------------------------*/ |
| 1470 | |
| 1471 | // tasklet (work deferred from completions, in_irq) or timer |
| 1472 | |
| 1473 | static void usbnet_bh (unsigned long param) |
| 1474 | { |
| 1475 | struct usbnet *dev = (struct usbnet *) param; |
| 1476 | struct sk_buff *skb; |
| 1477 | struct skb_data *entry; |
| 1478 | |
| 1479 | while ((skb = skb_dequeue (&dev->done))) { |
| 1480 | entry = (struct skb_data *) skb->cb; |
| 1481 | switch (entry->state) { |
David Brownell | 18ab458 | 2007-05-25 12:31:32 -0700 | [diff] [blame] | 1482 | case rx_done: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1483 | entry->state = rx_cleanup; |
| 1484 | rx_process (dev, skb); |
| 1485 | continue; |
David Brownell | 18ab458 | 2007-05-25 12:31:32 -0700 | [diff] [blame] | 1486 | case tx_done: |
Ming Lei | 638c511 | 2013-08-08 21:48:24 +0800 | [diff] [blame] | 1487 | kfree(entry->urb->sg); |
David Brownell | 18ab458 | 2007-05-25 12:31:32 -0700 | [diff] [blame] | 1488 | case rx_cleanup: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1489 | usb_free_urb (entry->urb); |
| 1490 | dev_kfree_skb (skb); |
| 1491 | continue; |
David Brownell | 18ab458 | 2007-05-25 12:31:32 -0700 | [diff] [blame] | 1492 | default: |
Joe Perches | 60b8675 | 2010-02-17 10:30:23 +0000 | [diff] [blame] | 1493 | netdev_dbg(dev->net, "bogus skb state %d\n", entry->state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1494 | } |
| 1495 | } |
| 1496 | |
Bjørn Mork | 70c37bf | 2013-01-28 23:51:28 +0000 | [diff] [blame] | 1497 | /* restart RX again after disabling due to high error rate */ |
| 1498 | clear_bit(EVENT_RX_KILL, &dev->flags); |
| 1499 | |
Oliver Neukum | 14a0d63 | 2014-03-26 14:32:51 +0100 | [diff] [blame] | 1500 | /* waiting for all pending urbs to complete? |
| 1501 | * only then can we forgo submitting anew |
| 1502 | */ |
| 1503 | if (waitqueue_active(&dev->wait)) { |
| 1504 | if (dev->txq.qlen + dev->rxq.qlen + dev->done.qlen == 0) |
| 1505 | wake_up_all(&dev->wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1506 | |
| 1507 | // or are we maybe short a few urbs? |
Joe Perches | 8e95a20 | 2009-12-03 07:58:21 +0000 | [diff] [blame] | 1508 | } else if (netif_running (dev->net) && |
| 1509 | netif_device_present (dev->net) && |
Ming Lei | 4b49f58 | 2013-04-11 04:40:40 +0000 | [diff] [blame] | 1510 | netif_carrier_ok(dev->net) && |
Soohoon Lee | 43daa96 | 2016-06-29 15:07:21 -0400 | [diff] [blame] | 1511 | !timer_pending(&dev->delay) && |
| 1512 | !test_bit(EVENT_RX_PAUSED, &dev->flags) && |
| 1513 | !test_bit(EVENT_RX_HALT, &dev->flags)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1514 | int temp = dev->rxq.qlen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1515 | |
Ming Lei | 65841fd | 2012-06-19 21:15:53 +0000 | [diff] [blame] | 1516 | if (temp < RX_QLEN(dev)) { |
Bjørn Mork | 85e8787 | 2012-09-02 22:26:18 +0000 | [diff] [blame] | 1517 | if (rx_alloc_submit(dev, GFP_ATOMIC) == -ENOLINK) |
| 1518 | return; |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 1519 | if (temp != dev->rxq.qlen) |
| 1520 | netif_dbg(dev, link, dev->net, |
| 1521 | "rxqlen %d --> %d\n", |
| 1522 | temp, dev->rxq.qlen); |
Ming Lei | 65841fd | 2012-06-19 21:15:53 +0000 | [diff] [blame] | 1523 | if (dev->rxq.qlen < RX_QLEN(dev)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1524 | tasklet_schedule (&dev->bh); |
| 1525 | } |
| 1526 | if (dev->txq.qlen < TX_QLEN (dev)) |
| 1527 | netif_wake_queue (dev->net); |
| 1528 | } |
| 1529 | } |
| 1530 | |
| 1531 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1532 | /*------------------------------------------------------------------------- |
| 1533 | * |
| 1534 | * USB Device Driver support |
| 1535 | * |
| 1536 | *-------------------------------------------------------------------------*/ |
David Brownell | cb1cebb | 2007-02-15 18:52:30 -0800 | [diff] [blame] | 1537 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1538 | // precondition: never called in_interrupt |
| 1539 | |
David Brownell | 38bde1d | 2005-08-31 09:52:45 -0700 | [diff] [blame] | 1540 | void usbnet_disconnect (struct usb_interface *intf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1541 | { |
| 1542 | struct usbnet *dev; |
| 1543 | struct usb_device *xdev; |
| 1544 | struct net_device *net; |
| 1545 | |
| 1546 | dev = usb_get_intfdata(intf); |
| 1547 | usb_set_intfdata(intf, NULL); |
| 1548 | if (!dev) |
| 1549 | return; |
| 1550 | |
| 1551 | xdev = interface_to_usbdev (intf); |
| 1552 | |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 1553 | netif_info(dev, probe, dev->net, "unregister '%s' usb-%s-%s, %s\n", |
| 1554 | intf->dev.driver->name, |
| 1555 | xdev->bus->bus_name, xdev->devpath, |
| 1556 | dev->driver_info->description); |
David Brownell | cb1cebb | 2007-02-15 18:52:30 -0800 | [diff] [blame] | 1557 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1558 | net = dev->net; |
| 1559 | unregister_netdev (net); |
| 1560 | |
Tejun Heo | 23f333a | 2010-12-12 16:45:14 +0100 | [diff] [blame] | 1561 | cancel_work_sync(&dev->kevent); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1562 | |
Hemant Kumar | 39707c2 | 2012-10-25 18:17:54 +0000 | [diff] [blame] | 1563 | usb_scuttle_anchored_urbs(&dev->deferred); |
| 1564 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1565 | if (dev->driver_info->unbind) |
| 1566 | dev->driver_info->unbind (dev, intf); |
| 1567 | |
Paul Stewart | 68972ef | 2011-04-28 05:43:37 +0000 | [diff] [blame] | 1568 | usb_kill_urb(dev->interrupt); |
| 1569 | usb_free_urb(dev->interrupt); |
Ming Lei | 60e453a | 2013-09-23 20:59:35 +0800 | [diff] [blame] | 1570 | kfree(dev->padding_pkt); |
Paul Stewart | 68972ef | 2011-04-28 05:43:37 +0000 | [diff] [blame] | 1571 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1572 | free_netdev(net); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1573 | } |
David Brownell | 38bde1d | 2005-08-31 09:52:45 -0700 | [diff] [blame] | 1574 | EXPORT_SYMBOL_GPL(usbnet_disconnect); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1575 | |
Stephen Hemminger | 777baa4 | 2009-03-20 19:35:54 +0000 | [diff] [blame] | 1576 | static const struct net_device_ops usbnet_netdev_ops = { |
| 1577 | .ndo_open = usbnet_open, |
| 1578 | .ndo_stop = usbnet_stop, |
| 1579 | .ndo_start_xmit = usbnet_start_xmit, |
| 1580 | .ndo_tx_timeout = usbnet_tx_timeout, |
Olivier Blin | 1efed2d | 2014-10-24 19:43:00 +0200 | [diff] [blame] | 1581 | .ndo_set_rx_mode = usbnet_set_rx_mode, |
Stephen Hemminger | 777baa4 | 2009-03-20 19:35:54 +0000 | [diff] [blame] | 1582 | .ndo_change_mtu = usbnet_change_mtu, |
| 1583 | .ndo_set_mac_address = eth_mac_addr, |
| 1584 | .ndo_validate_addr = eth_validate_addr, |
| 1585 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1586 | |
| 1587 | /*-------------------------------------------------------------------------*/ |
| 1588 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1589 | // precondition: never called in_interrupt |
| 1590 | |
Marcel Holtmann | 225794f | 2009-10-02 05:15:26 +0000 | [diff] [blame] | 1591 | static struct device_type wlan_type = { |
| 1592 | .name = "wlan", |
| 1593 | }; |
| 1594 | |
| 1595 | static struct device_type wwan_type = { |
| 1596 | .name = "wwan", |
| 1597 | }; |
| 1598 | |
David Brownell | 38bde1d | 2005-08-31 09:52:45 -0700 | [diff] [blame] | 1599 | int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1600 | usbnet_probe (struct usb_interface *udev, const struct usb_device_id *prod) |
| 1601 | { |
| 1602 | struct usbnet *dev; |
David Brownell | cb1cebb | 2007-02-15 18:52:30 -0800 | [diff] [blame] | 1603 | struct net_device *net; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1604 | struct usb_host_interface *interface; |
| 1605 | struct driver_info *info; |
| 1606 | struct usb_device *xdev; |
| 1607 | int status; |
David Brownell | 296c024 | 2007-04-17 16:10:10 -0700 | [diff] [blame] | 1608 | const char *name; |
Ming Lei | b0786b4 | 2010-11-01 07:11:54 -0700 | [diff] [blame] | 1609 | struct usb_driver *driver = to_usb_driver(udev->dev.driver); |
| 1610 | |
| 1611 | /* usbnet already took usb runtime pm, so have to enable the feature |
| 1612 | * for usb interface, otherwise usb_autopm_get_interface may return |
Alan Stern | 98f541c | 2013-05-01 12:13:54 -0400 | [diff] [blame] | 1613 | * failure if RUNTIME_PM is enabled. |
Ming Lei | b0786b4 | 2010-11-01 07:11:54 -0700 | [diff] [blame] | 1614 | */ |
| 1615 | if (!driver->supports_autosuspend) { |
| 1616 | driver->supports_autosuspend = 1; |
| 1617 | pm_runtime_enable(&udev->dev); |
| 1618 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1619 | |
David Brownell | 296c024 | 2007-04-17 16:10:10 -0700 | [diff] [blame] | 1620 | name = udev->dev.driver->name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1621 | info = (struct driver_info *) prod->driver_info; |
| 1622 | if (!info) { |
David Brownell | 296c024 | 2007-04-17 16:10:10 -0700 | [diff] [blame] | 1623 | dev_dbg (&udev->dev, "blacklisted by %s\n", name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1624 | return -ENODEV; |
| 1625 | } |
| 1626 | xdev = interface_to_usbdev (udev); |
| 1627 | interface = udev->cur_altsetting; |
| 1628 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1629 | status = -ENOMEM; |
| 1630 | |
| 1631 | // set up our own records |
| 1632 | net = alloc_etherdev(sizeof(*dev)); |
Joe Perches | 41de8d4 | 2012-01-29 13:47:52 +0000 | [diff] [blame] | 1633 | if (!net) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1634 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1635 | |
Ben Hutchings | 0dacca7 | 2010-07-02 21:49:02 -0700 | [diff] [blame] | 1636 | /* netdev_printk() needs this so do it as early as possible */ |
| 1637 | SET_NETDEV_DEV(net, &udev->dev); |
| 1638 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1639 | dev = netdev_priv(net); |
| 1640 | dev->udev = xdev; |
Oliver Neukum | a11a654 | 2007-08-03 13:52:19 +0200 | [diff] [blame] | 1641 | dev->intf = udev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1642 | dev->driver_info = info; |
David Brownell | 296c024 | 2007-04-17 16:10:10 -0700 | [diff] [blame] | 1643 | dev->driver_name = name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1644 | dev->msg_enable = netif_msg_init (msg_level, NETIF_MSG_DRV |
| 1645 | | NETIF_MSG_PROBE | NETIF_MSG_LINK); |
Oliver Neukum | 14a0d63 | 2014-03-26 14:32:51 +0100 | [diff] [blame] | 1646 | init_waitqueue_head(&dev->wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1647 | skb_queue_head_init (&dev->rxq); |
| 1648 | skb_queue_head_init (&dev->txq); |
| 1649 | skb_queue_head_init (&dev->done); |
Jussi Kivilinna | 7834ddb | 2009-08-11 22:57:16 +0300 | [diff] [blame] | 1650 | skb_queue_head_init(&dev->rxq_pause); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1651 | dev->bh.func = usbnet_bh; |
| 1652 | dev->bh.data = (unsigned long) dev; |
Oliver Neukum | 11f17ef | 2015-04-09 10:09:04 +0200 | [diff] [blame] | 1653 | INIT_WORK (&dev->kevent, usbnet_deferred_kevent); |
Oliver Neukum | 69ee472f | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 1654 | init_usb_anchor(&dev->deferred); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1655 | dev->delay.function = usbnet_bh; |
| 1656 | dev->delay.data = (unsigned long) dev; |
| 1657 | init_timer (&dev->delay); |
Arnd Bergmann | a9fc633 | 2006-10-09 00:08:02 +0200 | [diff] [blame] | 1658 | mutex_init (&dev->phy_mutex); |
Dan Williams | 6eecdc5 | 2013-05-06 11:29:23 +0000 | [diff] [blame] | 1659 | mutex_init(&dev->interrupt_mutex); |
| 1660 | dev->interrupt_count = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1661 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1662 | dev->net = net; |
| 1663 | strcpy (net->name, "usb%d"); |
| 1664 | memcpy (net->dev_addr, node_id, sizeof node_id); |
| 1665 | |
David Brownell | 2e55cc7 | 2005-08-31 09:53:10 -0700 | [diff] [blame] | 1666 | /* rx and tx sides can use different message sizes; |
| 1667 | * bind() should set rx_urb_size in that case. |
| 1668 | */ |
| 1669 | dev->hard_mtu = net->mtu + net->hard_header_len; |
Jarod Wilson | f77f0ae | 2016-10-20 13:55:17 -0400 | [diff] [blame] | 1670 | net->min_mtu = 0; |
| 1671 | net->max_mtu = ETH_MAX_MTU; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1672 | |
Stephen Hemminger | 777baa4 | 2009-03-20 19:35:54 +0000 | [diff] [blame] | 1673 | net->netdev_ops = &usbnet_netdev_ops; |
Stephen Hemminger | 777baa4 | 2009-03-20 19:35:54 +0000 | [diff] [blame] | 1674 | net->watchdog_timeo = TX_TIMEOUT_JIFFIES; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1675 | net->ethtool_ops = &usbnet_ethtool_ops; |
| 1676 | |
| 1677 | // allow device-specific bind/init procedures |
| 1678 | // NOTE net->name still not usable ... |
| 1679 | if (info->bind) { |
| 1680 | status = info->bind (dev, udev); |
David Brownell | cb1cebb | 2007-02-15 18:52:30 -0800 | [diff] [blame] | 1681 | if (status < 0) |
| 1682 | goto out1; |
| 1683 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1684 | // heuristic: "usb%d" for links we know are two-host, |
| 1685 | // else "eth%d" when there's reasonable doubt. userspace |
| 1686 | // can rename the link if it knows better. |
Joe Perches | 8e95a20 | 2009-12-03 07:58:21 +0000 | [diff] [blame] | 1687 | if ((dev->driver_info->flags & FLAG_ETHER) != 0 && |
Arnd Bergmann | c261344 | 2011-04-01 20:12:02 -0700 | [diff] [blame] | 1688 | ((dev->driver_info->flags & FLAG_POINTTOPOINT) == 0 || |
| 1689 | (net->dev_addr [0] & 0x02) == 0)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1690 | strcpy (net->name, "eth%d"); |
Jussi Kivilinna | 6e3bbcc | 2008-01-26 00:51:06 +0200 | [diff] [blame] | 1691 | /* WLAN devices should always be named "wlan%d" */ |
| 1692 | if ((dev->driver_info->flags & FLAG_WLAN) != 0) |
| 1693 | strcpy(net->name, "wlan%d"); |
Marcel Holtmann | e1e499e | 2009-10-02 05:15:25 +0000 | [diff] [blame] | 1694 | /* WWAN devices should always be named "wwan%d" */ |
| 1695 | if ((dev->driver_info->flags & FLAG_WWAN) != 0) |
| 1696 | strcpy(net->name, "wwan%d"); |
David Brownell | f29fc25 | 2005-08-31 09:52:31 -0700 | [diff] [blame] | 1697 | |
Wei Shuai | 6509141 | 2013-01-21 06:00:31 +0000 | [diff] [blame] | 1698 | /* devices that cannot do ARP */ |
| 1699 | if ((dev->driver_info->flags & FLAG_NOARP) != 0) |
| 1700 | net->flags |= IFF_NOARP; |
| 1701 | |
David Brownell | f29fc25 | 2005-08-31 09:52:31 -0700 | [diff] [blame] | 1702 | /* maybe the remote can't receive an Ethernet MTU */ |
| 1703 | if (net->mtu > (dev->hard_mtu - net->hard_header_len)) |
| 1704 | net->mtu = dev->hard_mtu - net->hard_header_len; |
David Brownell | 2e55cc7 | 2005-08-31 09:53:10 -0700 | [diff] [blame] | 1705 | } else if (!info->in || !info->out) |
| 1706 | status = usbnet_get_endpoints (dev, udev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1707 | else { |
| 1708 | dev->in = usb_rcvbulkpipe (xdev, info->in); |
| 1709 | dev->out = usb_sndbulkpipe (xdev, info->out); |
| 1710 | if (!(info->flags & FLAG_NO_SETINT)) |
| 1711 | status = usb_set_interface (xdev, |
| 1712 | interface->desc.bInterfaceNumber, |
| 1713 | interface->desc.bAlternateSetting); |
| 1714 | else |
| 1715 | status = 0; |
| 1716 | |
| 1717 | } |
Peter Korsgaard | 9514bfe | 2007-07-03 00:46:42 +0200 | [diff] [blame] | 1718 | if (status >= 0 && dev->status) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1719 | status = init_status (dev, udev); |
| 1720 | if (status < 0) |
David Brownell | cb1cebb | 2007-02-15 18:52:30 -0800 | [diff] [blame] | 1721 | goto out3; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1722 | |
David Brownell | 2e55cc7 | 2005-08-31 09:53:10 -0700 | [diff] [blame] | 1723 | if (!dev->rx_urb_size) |
| 1724 | dev->rx_urb_size = dev->hard_mtu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1725 | dev->maxpacket = usb_maxpacket (dev->udev, dev->out, 1); |
David Brownell | cb1cebb | 2007-02-15 18:52:30 -0800 | [diff] [blame] | 1726 | |
Bjørn Mork | eef23b5 | 2013-09-04 09:42:32 +0200 | [diff] [blame] | 1727 | /* let userspace know we have a random address */ |
| 1728 | if (ether_addr_equal(net->dev_addr, node_id)) |
| 1729 | net->addr_assign_type = NET_ADDR_RANDOM; |
| 1730 | |
Marcel Holtmann | 225794f | 2009-10-02 05:15:26 +0000 | [diff] [blame] | 1731 | if ((dev->driver_info->flags & FLAG_WLAN) != 0) |
| 1732 | SET_NETDEV_DEVTYPE(net, &wlan_type); |
| 1733 | if ((dev->driver_info->flags & FLAG_WWAN) != 0) |
| 1734 | SET_NETDEV_DEVTYPE(net, &wwan_type); |
| 1735 | |
Ming Lei | a88c32a | 2013-07-25 13:47:53 +0800 | [diff] [blame] | 1736 | /* initialize max rx_qlen and tx_qlen */ |
| 1737 | usbnet_update_max_qlen(dev); |
| 1738 | |
Ming Lei | 60e453a | 2013-09-23 20:59:35 +0800 | [diff] [blame] | 1739 | if (dev->can_dma_sg && !(info->flags & FLAG_SEND_ZLP) && |
| 1740 | !(info->flags & FLAG_MULTI_PACKET)) { |
| 1741 | dev->padding_pkt = kzalloc(1, GFP_KERNEL); |
Wei Yongjun | 09b6902 | 2013-10-12 14:24:08 +0800 | [diff] [blame] | 1742 | if (!dev->padding_pkt) { |
| 1743 | status = -ENOMEM; |
Ming Lei | 60e453a | 2013-09-23 20:59:35 +0800 | [diff] [blame] | 1744 | goto out4; |
Wei Yongjun | 09b6902 | 2013-10-12 14:24:08 +0800 | [diff] [blame] | 1745 | } |
Ming Lei | 60e453a | 2013-09-23 20:59:35 +0800 | [diff] [blame] | 1746 | } |
| 1747 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1748 | status = register_netdev (net); |
| 1749 | if (status) |
Ming Lei | 60e453a | 2013-09-23 20:59:35 +0800 | [diff] [blame] | 1750 | goto out5; |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 1751 | netif_info(dev, probe, dev->net, |
| 1752 | "register '%s' at usb-%s-%s, %s, %pM\n", |
| 1753 | udev->dev.driver->name, |
| 1754 | xdev->bus->bus_name, xdev->devpath, |
| 1755 | dev->driver_info->description, |
| 1756 | net->dev_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1757 | |
| 1758 | // ok, it's ready to go. |
| 1759 | usb_set_intfdata (udev, dev); |
| 1760 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1761 | netif_device_attach (net); |
| 1762 | |
Ben Hutchings | 37e8273 | 2009-11-04 15:29:52 +0000 | [diff] [blame] | 1763 | if (dev->driver_info->flags & FLAG_LINK_INTR) |
Ming Lei | 0162c55 | 2013-04-11 04:40:39 +0000 | [diff] [blame] | 1764 | usbnet_link_change(dev, 0, 0); |
Ben Hutchings | 37e8273 | 2009-11-04 15:29:52 +0000 | [diff] [blame] | 1765 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1766 | return 0; |
| 1767 | |
Ming Lei | 60e453a | 2013-09-23 20:59:35 +0800 | [diff] [blame] | 1768 | out5: |
| 1769 | kfree(dev->padding_pkt); |
tom.leiming@gmail.com | a472384 | 2012-04-29 22:51:03 +0000 | [diff] [blame] | 1770 | out4: |
| 1771 | usb_free_urb(dev->interrupt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1772 | out3: |
| 1773 | if (info->unbind) |
| 1774 | info->unbind (dev, udev); |
| 1775 | out1: |
Oliver Neukum | 1666984 | 2016-03-07 11:31:10 +0100 | [diff] [blame] | 1776 | /* subdrivers must undo all they did in bind() if they |
| 1777 | * fail it, but we may fail later and a deferred kevent |
| 1778 | * may trigger an error resubmitting itself and, worse, |
| 1779 | * schedule a timer. So we kill it all just in case. |
| 1780 | */ |
| 1781 | cancel_work_sync(&dev->kevent); |
| 1782 | del_timer_sync(&dev->delay); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1783 | free_netdev(net); |
| 1784 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1785 | return status; |
| 1786 | } |
David Brownell | 38bde1d | 2005-08-31 09:52:45 -0700 | [diff] [blame] | 1787 | EXPORT_SYMBOL_GPL(usbnet_probe); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1788 | |
| 1789 | /*-------------------------------------------------------------------------*/ |
| 1790 | |
Oliver Neukum | 3643312 | 2007-04-30 01:37:44 -0700 | [diff] [blame] | 1791 | /* |
| 1792 | * suspend the whole driver as soon as the first interface is suspended |
| 1793 | * resume only when the last interface is resumed |
David Brownell | 38bde1d | 2005-08-31 09:52:45 -0700 | [diff] [blame] | 1794 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1795 | |
David Brownell | 38bde1d | 2005-08-31 09:52:45 -0700 | [diff] [blame] | 1796 | int usbnet_suspend (struct usb_interface *intf, pm_message_t message) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1797 | { |
| 1798 | struct usbnet *dev = usb_get_intfdata(intf); |
David Brownell | cb1cebb | 2007-02-15 18:52:30 -0800 | [diff] [blame] | 1799 | |
Oliver Neukum | 3643312 | 2007-04-30 01:37:44 -0700 | [diff] [blame] | 1800 | if (!dev->suspend_count++) { |
Oliver Neukum | 69ee472f | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 1801 | spin_lock_irq(&dev->txq.lock); |
| 1802 | /* don't autosuspend while transmitting */ |
Alan Stern | 5b1b0b8 | 2011-08-19 23:49:48 +0200 | [diff] [blame] | 1803 | if (dev->txq.qlen && PMSG_IS_AUTO(message)) { |
Ming Lei | 5eeb313 | 2012-06-19 21:15:52 +0000 | [diff] [blame] | 1804 | dev->suspend_count--; |
Oliver Neukum | 69ee472f | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 1805 | spin_unlock_irq(&dev->txq.lock); |
| 1806 | return -EBUSY; |
| 1807 | } else { |
| 1808 | set_bit(EVENT_DEV_ASLEEP, &dev->flags); |
| 1809 | spin_unlock_irq(&dev->txq.lock); |
| 1810 | } |
Oliver Neukum | a11a654 | 2007-08-03 13:52:19 +0200 | [diff] [blame] | 1811 | /* |
| 1812 | * accelerate emptying of the rx and queues, to avoid |
Oliver Neukum | 3643312 | 2007-04-30 01:37:44 -0700 | [diff] [blame] | 1813 | * having everything error out. |
| 1814 | */ |
| 1815 | netif_device_detach (dev->net); |
Oliver Neukum | 69ee472f | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 1816 | usbnet_terminate_urbs(dev); |
Dan Williams | 6eecdc5 | 2013-05-06 11:29:23 +0000 | [diff] [blame] | 1817 | __usbnet_status_stop_force(dev); |
Oliver Neukum | 69ee472f | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 1818 | |
Oliver Neukum | a11a654 | 2007-08-03 13:52:19 +0200 | [diff] [blame] | 1819 | /* |
| 1820 | * reattach so runtime management can use and |
| 1821 | * wake the device |
| 1822 | */ |
| 1823 | netif_device_attach (dev->net); |
Oliver Neukum | 3643312 | 2007-04-30 01:37:44 -0700 | [diff] [blame] | 1824 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1825 | return 0; |
| 1826 | } |
David Brownell | 38bde1d | 2005-08-31 09:52:45 -0700 | [diff] [blame] | 1827 | EXPORT_SYMBOL_GPL(usbnet_suspend); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1828 | |
David Brownell | 38bde1d | 2005-08-31 09:52:45 -0700 | [diff] [blame] | 1829 | int usbnet_resume (struct usb_interface *intf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1830 | { |
| 1831 | struct usbnet *dev = usb_get_intfdata(intf); |
Oliver Neukum | 69ee472f | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 1832 | struct sk_buff *skb; |
| 1833 | struct urb *res; |
| 1834 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1835 | |
Oliver Neukum | 69ee472f | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 1836 | if (!--dev->suspend_count) { |
Dan Williams | 6eecdc5 | 2013-05-06 11:29:23 +0000 | [diff] [blame] | 1837 | /* resume interrupt URB if it was previously submitted */ |
| 1838 | __usbnet_status_start_force(dev, GFP_NOIO); |
Paul Stewart | 68972ef | 2011-04-28 05:43:37 +0000 | [diff] [blame] | 1839 | |
Oliver Neukum | 69ee472f | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 1840 | spin_lock_irq(&dev->txq.lock); |
| 1841 | while ((res = usb_get_from_anchor(&dev->deferred))) { |
| 1842 | |
Oliver Neukum | 69ee472f | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 1843 | skb = (struct sk_buff *)res->context; |
| 1844 | retval = usb_submit_urb(res, GFP_ATOMIC); |
| 1845 | if (retval < 0) { |
| 1846 | dev_kfree_skb_any(skb); |
Ming Lei | 638c511 | 2013-08-08 21:48:24 +0800 | [diff] [blame] | 1847 | kfree(res->sg); |
Oliver Neukum | 69ee472f | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 1848 | usb_free_urb(res); |
| 1849 | usb_autopm_put_interface_async(dev->intf); |
| 1850 | } else { |
Florian Westphal | 860e953 | 2016-05-03 16:33:13 +0200 | [diff] [blame] | 1851 | netif_trans_update(dev->net); |
Oliver Neukum | 69ee472f | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 1852 | __skb_queue_tail(&dev->txq, skb); |
| 1853 | } |
| 1854 | } |
| 1855 | |
| 1856 | smp_mb(); |
| 1857 | clear_bit(EVENT_DEV_ASLEEP, &dev->flags); |
| 1858 | spin_unlock_irq(&dev->txq.lock); |
Ming Lei | 75bd0cb | 2011-04-28 22:37:09 +0000 | [diff] [blame] | 1859 | |
| 1860 | if (test_bit(EVENT_DEV_OPEN, &dev->flags)) { |
Oliver Neukum | 14a0d63 | 2014-03-26 14:32:51 +0100 | [diff] [blame] | 1861 | /* handle remote wakeup ASAP |
| 1862 | * we cannot race against stop |
| 1863 | */ |
| 1864 | if (netif_device_present(dev->net) && |
Ming Lei | 65841fd | 2012-06-19 21:15:53 +0000 | [diff] [blame] | 1865 | !timer_pending(&dev->delay) && |
| 1866 | !test_bit(EVENT_RX_HALT, &dev->flags)) |
Oliver Neukum | ab6f148 | 2012-08-26 20:41:38 +0000 | [diff] [blame] | 1867 | rx_alloc_submit(dev, GFP_NOIO); |
Ming Lei | 65841fd | 2012-06-19 21:15:53 +0000 | [diff] [blame] | 1868 | |
Ming Lei | 75bd0cb | 2011-04-28 22:37:09 +0000 | [diff] [blame] | 1869 | if (!(dev->txq.qlen >= TX_QLEN(dev))) |
Alexey Orishko | 1aa9bc5 | 2012-03-14 04:00:24 +0000 | [diff] [blame] | 1870 | netif_tx_wake_all_queues(dev->net); |
Ming Lei | 75bd0cb | 2011-04-28 22:37:09 +0000 | [diff] [blame] | 1871 | tasklet_schedule (&dev->bh); |
| 1872 | } |
Oliver Neukum | 69ee472f | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 1873 | } |
Oliver Neukum | 5d9d01a | 2012-10-11 02:50:10 +0000 | [diff] [blame] | 1874 | |
| 1875 | if (test_and_clear_bit(EVENT_DEVICE_REPORT_IDLE, &dev->flags)) |
| 1876 | usb_autopm_get_interface_no_resume(intf); |
| 1877 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1878 | return 0; |
| 1879 | } |
David Brownell | 38bde1d | 2005-08-31 09:52:45 -0700 | [diff] [blame] | 1880 | EXPORT_SYMBOL_GPL(usbnet_resume); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1881 | |
Oliver Neukum | 5d9d01a | 2012-10-11 02:50:10 +0000 | [diff] [blame] | 1882 | /* |
| 1883 | * Either a subdriver implements manage_power, then it is assumed to always |
| 1884 | * be ready to be suspended or it reports the readiness to be suspended |
| 1885 | * explicitly |
| 1886 | */ |
| 1887 | void usbnet_device_suggests_idle(struct usbnet *dev) |
| 1888 | { |
| 1889 | if (!test_and_set_bit(EVENT_DEVICE_REPORT_IDLE, &dev->flags)) { |
| 1890 | dev->intf->needs_remote_wakeup = 1; |
| 1891 | usb_autopm_put_interface_async(dev->intf); |
| 1892 | } |
| 1893 | } |
| 1894 | EXPORT_SYMBOL(usbnet_device_suggests_idle); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1895 | |
Oliver Neukum | 2dd7c8c | 2012-12-18 04:45:52 +0000 | [diff] [blame] | 1896 | /* |
| 1897 | * For devices that can do without special commands |
| 1898 | */ |
| 1899 | int usbnet_manage_power(struct usbnet *dev, int on) |
| 1900 | { |
| 1901 | dev->intf->needs_remote_wakeup = on; |
| 1902 | return 0; |
| 1903 | } |
| 1904 | EXPORT_SYMBOL(usbnet_manage_power); |
| 1905 | |
Ming Lei | ac64995 | 2013-04-11 04:40:30 +0000 | [diff] [blame] | 1906 | void usbnet_link_change(struct usbnet *dev, bool link, bool need_reset) |
| 1907 | { |
| 1908 | /* update link after link is reseted */ |
| 1909 | if (link && !need_reset) |
| 1910 | netif_carrier_on(dev->net); |
| 1911 | else |
| 1912 | netif_carrier_off(dev->net); |
| 1913 | |
| 1914 | if (need_reset && link) |
| 1915 | usbnet_defer_kevent(dev, EVENT_LINK_RESET); |
Ming Lei | 4b49f58 | 2013-04-11 04:40:40 +0000 | [diff] [blame] | 1916 | else |
| 1917 | usbnet_defer_kevent(dev, EVENT_LINK_CHANGE); |
Ming Lei | ac64995 | 2013-04-11 04:40:30 +0000 | [diff] [blame] | 1918 | } |
| 1919 | EXPORT_SYMBOL(usbnet_link_change); |
| 1920 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1921 | /*-------------------------------------------------------------------------*/ |
Ming Lei | 0547fad | 2012-11-06 04:53:04 +0000 | [diff] [blame] | 1922 | static int __usbnet_read_cmd(struct usbnet *dev, u8 cmd, u8 reqtype, |
| 1923 | u16 value, u16 index, void *data, u16 size) |
Ming Lei | 877bd86 | 2012-10-24 19:46:54 +0000 | [diff] [blame] | 1924 | { |
| 1925 | void *buf = NULL; |
| 1926 | int err = -ENOMEM; |
| 1927 | |
| 1928 | netdev_dbg(dev->net, "usbnet_read_cmd cmd=0x%02x reqtype=%02x" |
| 1929 | " value=0x%04x index=0x%04x size=%d\n", |
| 1930 | cmd, reqtype, value, index, size); |
| 1931 | |
Oliver Neukum | 6c22fce | 2017-04-05 14:14:39 +0200 | [diff] [blame^] | 1932 | if (size) { |
Ming Lei | 877bd86 | 2012-10-24 19:46:54 +0000 | [diff] [blame] | 1933 | buf = kmalloc(size, GFP_KERNEL); |
| 1934 | if (!buf) |
| 1935 | goto out; |
| 1936 | } |
| 1937 | |
| 1938 | err = usb_control_msg(dev->udev, usb_rcvctrlpipe(dev->udev, 0), |
| 1939 | cmd, reqtype, value, index, buf, size, |
| 1940 | USB_CTRL_GET_TIMEOUT); |
Oliver Neukum | 6c22fce | 2017-04-05 14:14:39 +0200 | [diff] [blame^] | 1941 | if (err > 0 && err <= size) { |
| 1942 | if (data) |
| 1943 | memcpy(data, buf, err); |
| 1944 | else |
| 1945 | netdev_dbg(dev->net, |
| 1946 | "Huh? Data requested but thrown away.\n"); |
| 1947 | } |
Ming Lei | 877bd86 | 2012-10-24 19:46:54 +0000 | [diff] [blame] | 1948 | kfree(buf); |
| 1949 | out: |
| 1950 | return err; |
| 1951 | } |
Ming Lei | 877bd86 | 2012-10-24 19:46:54 +0000 | [diff] [blame] | 1952 | |
Ming Lei | 0547fad | 2012-11-06 04:53:04 +0000 | [diff] [blame] | 1953 | static int __usbnet_write_cmd(struct usbnet *dev, u8 cmd, u8 reqtype, |
| 1954 | u16 value, u16 index, const void *data, |
| 1955 | u16 size) |
Ming Lei | 877bd86 | 2012-10-24 19:46:54 +0000 | [diff] [blame] | 1956 | { |
| 1957 | void *buf = NULL; |
| 1958 | int err = -ENOMEM; |
| 1959 | |
| 1960 | netdev_dbg(dev->net, "usbnet_write_cmd cmd=0x%02x reqtype=%02x" |
| 1961 | " value=0x%04x index=0x%04x size=%d\n", |
| 1962 | cmd, reqtype, value, index, size); |
| 1963 | |
| 1964 | if (data) { |
| 1965 | buf = kmemdup(data, size, GFP_KERNEL); |
| 1966 | if (!buf) |
| 1967 | goto out; |
Oliver Neukum | 6c22fce | 2017-04-05 14:14:39 +0200 | [diff] [blame^] | 1968 | } else { |
| 1969 | if (size) { |
| 1970 | WARN_ON_ONCE(1); |
| 1971 | err = -EINVAL; |
| 1972 | goto out; |
| 1973 | } |
| 1974 | } |
Ming Lei | 877bd86 | 2012-10-24 19:46:54 +0000 | [diff] [blame] | 1975 | |
| 1976 | err = usb_control_msg(dev->udev, usb_sndctrlpipe(dev->udev, 0), |
| 1977 | cmd, reqtype, value, index, buf, size, |
| 1978 | USB_CTRL_SET_TIMEOUT); |
| 1979 | kfree(buf); |
| 1980 | |
| 1981 | out: |
| 1982 | return err; |
| 1983 | } |
Ming Lei | 0547fad | 2012-11-06 04:53:04 +0000 | [diff] [blame] | 1984 | |
| 1985 | /* |
| 1986 | * The function can't be called inside suspend/resume callback, |
| 1987 | * otherwise deadlock will be caused. |
| 1988 | */ |
| 1989 | int usbnet_read_cmd(struct usbnet *dev, u8 cmd, u8 reqtype, |
| 1990 | u16 value, u16 index, void *data, u16 size) |
| 1991 | { |
Ming Lei | 6f0a098 | 2012-11-06 04:53:08 +0000 | [diff] [blame] | 1992 | int ret; |
| 1993 | |
| 1994 | if (usb_autopm_get_interface(dev->intf) < 0) |
| 1995 | return -ENODEV; |
| 1996 | ret = __usbnet_read_cmd(dev, cmd, reqtype, value, index, |
| 1997 | data, size); |
| 1998 | usb_autopm_put_interface(dev->intf); |
| 1999 | return ret; |
Ming Lei | 0547fad | 2012-11-06 04:53:04 +0000 | [diff] [blame] | 2000 | } |
| 2001 | EXPORT_SYMBOL_GPL(usbnet_read_cmd); |
| 2002 | |
| 2003 | /* |
| 2004 | * The function can't be called inside suspend/resume callback, |
| 2005 | * otherwise deadlock will be caused. |
| 2006 | */ |
| 2007 | int usbnet_write_cmd(struct usbnet *dev, u8 cmd, u8 reqtype, |
| 2008 | u16 value, u16 index, const void *data, u16 size) |
| 2009 | { |
Ming Lei | 6f0a098 | 2012-11-06 04:53:08 +0000 | [diff] [blame] | 2010 | int ret; |
| 2011 | |
| 2012 | if (usb_autopm_get_interface(dev->intf) < 0) |
| 2013 | return -ENODEV; |
| 2014 | ret = __usbnet_write_cmd(dev, cmd, reqtype, value, index, |
| 2015 | data, size); |
| 2016 | usb_autopm_put_interface(dev->intf); |
| 2017 | return ret; |
Ming Lei | 0547fad | 2012-11-06 04:53:04 +0000 | [diff] [blame] | 2018 | } |
Ming Lei | 877bd86 | 2012-10-24 19:46:54 +0000 | [diff] [blame] | 2019 | EXPORT_SYMBOL_GPL(usbnet_write_cmd); |
| 2020 | |
Ming Lei | 0547fad | 2012-11-06 04:53:04 +0000 | [diff] [blame] | 2021 | /* |
| 2022 | * The function can be called inside suspend/resume callback safely |
| 2023 | * and should only be called by suspend/resume callback generally. |
| 2024 | */ |
| 2025 | int usbnet_read_cmd_nopm(struct usbnet *dev, u8 cmd, u8 reqtype, |
| 2026 | u16 value, u16 index, void *data, u16 size) |
| 2027 | { |
| 2028 | return __usbnet_read_cmd(dev, cmd, reqtype, value, index, |
| 2029 | data, size); |
| 2030 | } |
| 2031 | EXPORT_SYMBOL_GPL(usbnet_read_cmd_nopm); |
| 2032 | |
| 2033 | /* |
| 2034 | * The function can be called inside suspend/resume callback safely |
| 2035 | * and should only be called by suspend/resume callback generally. |
| 2036 | */ |
| 2037 | int usbnet_write_cmd_nopm(struct usbnet *dev, u8 cmd, u8 reqtype, |
| 2038 | u16 value, u16 index, const void *data, |
| 2039 | u16 size) |
| 2040 | { |
| 2041 | return __usbnet_write_cmd(dev, cmd, reqtype, value, index, |
| 2042 | data, size); |
| 2043 | } |
| 2044 | EXPORT_SYMBOL_GPL(usbnet_write_cmd_nopm); |
| 2045 | |
Ming Lei | 877bd86 | 2012-10-24 19:46:54 +0000 | [diff] [blame] | 2046 | static void usbnet_async_cmd_cb(struct urb *urb) |
| 2047 | { |
| 2048 | struct usb_ctrlrequest *req = (struct usb_ctrlrequest *)urb->context; |
| 2049 | int status = urb->status; |
| 2050 | |
| 2051 | if (status < 0) |
| 2052 | dev_dbg(&urb->dev->dev, "%s failed with %d", |
| 2053 | __func__, status); |
| 2054 | |
| 2055 | kfree(req); |
| 2056 | usb_free_urb(urb); |
| 2057 | } |
| 2058 | |
Ming Lei | 0547fad | 2012-11-06 04:53:04 +0000 | [diff] [blame] | 2059 | /* |
| 2060 | * The caller must make sure that device can't be put into suspend |
| 2061 | * state until the control URB completes. |
| 2062 | */ |
Ming Lei | 877bd86 | 2012-10-24 19:46:54 +0000 | [diff] [blame] | 2063 | int usbnet_write_cmd_async(struct usbnet *dev, u8 cmd, u8 reqtype, |
| 2064 | u16 value, u16 index, const void *data, u16 size) |
| 2065 | { |
| 2066 | struct usb_ctrlrequest *req = NULL; |
| 2067 | struct urb *urb; |
| 2068 | int err = -ENOMEM; |
| 2069 | void *buf = NULL; |
| 2070 | |
| 2071 | netdev_dbg(dev->net, "usbnet_write_cmd cmd=0x%02x reqtype=%02x" |
| 2072 | " value=0x%04x index=0x%04x size=%d\n", |
| 2073 | cmd, reqtype, value, index, size); |
| 2074 | |
| 2075 | urb = usb_alloc_urb(0, GFP_ATOMIC); |
Wolfram Sang | ef6cd13 | 2016-08-11 23:05:28 +0200 | [diff] [blame] | 2076 | if (!urb) |
Ming Lei | 877bd86 | 2012-10-24 19:46:54 +0000 | [diff] [blame] | 2077 | goto fail; |
Ming Lei | 877bd86 | 2012-10-24 19:46:54 +0000 | [diff] [blame] | 2078 | |
| 2079 | if (data) { |
| 2080 | buf = kmemdup(data, size, GFP_ATOMIC); |
| 2081 | if (!buf) { |
| 2082 | netdev_err(dev->net, "Error allocating buffer" |
| 2083 | " in %s!\n", __func__); |
| 2084 | goto fail_free; |
| 2085 | } |
| 2086 | } |
| 2087 | |
| 2088 | req = kmalloc(sizeof(struct usb_ctrlrequest), GFP_ATOMIC); |
Joe Perches | 38673c8 | 2013-02-03 17:28:11 +0000 | [diff] [blame] | 2089 | if (!req) |
Ming Lei | 877bd86 | 2012-10-24 19:46:54 +0000 | [diff] [blame] | 2090 | goto fail_free_buf; |
Ming Lei | 877bd86 | 2012-10-24 19:46:54 +0000 | [diff] [blame] | 2091 | |
| 2092 | req->bRequestType = reqtype; |
| 2093 | req->bRequest = cmd; |
| 2094 | req->wValue = cpu_to_le16(value); |
| 2095 | req->wIndex = cpu_to_le16(index); |
| 2096 | req->wLength = cpu_to_le16(size); |
| 2097 | |
| 2098 | usb_fill_control_urb(urb, dev->udev, |
| 2099 | usb_sndctrlpipe(dev->udev, 0), |
| 2100 | (void *)req, buf, size, |
| 2101 | usbnet_async_cmd_cb, req); |
| 2102 | urb->transfer_flags |= URB_FREE_BUFFER; |
| 2103 | |
| 2104 | err = usb_submit_urb(urb, GFP_ATOMIC); |
| 2105 | if (err < 0) { |
| 2106 | netdev_err(dev->net, "Error submitting the control" |
| 2107 | " message: status=%d\n", err); |
| 2108 | goto fail_free; |
| 2109 | } |
| 2110 | return 0; |
| 2111 | |
| 2112 | fail_free_buf: |
| 2113 | kfree(buf); |
| 2114 | fail_free: |
| 2115 | kfree(req); |
| 2116 | usb_free_urb(urb); |
| 2117 | fail: |
| 2118 | return err; |
| 2119 | |
| 2120 | } |
| 2121 | EXPORT_SYMBOL_GPL(usbnet_write_cmd_async); |
| 2122 | /*-------------------------------------------------------------------------*/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2123 | |
David Brownell | f29fc25 | 2005-08-31 09:52:31 -0700 | [diff] [blame] | 2124 | static int __init usbnet_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2125 | { |
Thiago Farina | c582a95 | 2011-04-17 17:49:21 -0700 | [diff] [blame] | 2126 | /* Compiler should optimize this out. */ |
| 2127 | BUILD_BUG_ON( |
| 2128 | FIELD_SIZEOF(struct sk_buff, cb) < sizeof(struct skb_data)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2129 | |
Joe Perches | c7e12ea | 2012-07-12 19:33:07 +0000 | [diff] [blame] | 2130 | eth_random_addr(node_id); |
David Brownell | cb1cebb | 2007-02-15 18:52:30 -0800 | [diff] [blame] | 2131 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2132 | } |
David Brownell | f29fc25 | 2005-08-31 09:52:31 -0700 | [diff] [blame] | 2133 | module_init(usbnet_init); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2134 | |
David Brownell | f29fc25 | 2005-08-31 09:52:31 -0700 | [diff] [blame] | 2135 | static void __exit usbnet_exit(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2136 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2137 | } |
David Brownell | f29fc25 | 2005-08-31 09:52:31 -0700 | [diff] [blame] | 2138 | module_exit(usbnet_exit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2139 | |
David Brownell | f29fc25 | 2005-08-31 09:52:31 -0700 | [diff] [blame] | 2140 | MODULE_AUTHOR("David Brownell"); |
David Brownell | 090ffa9 | 2005-08-31 09:54:50 -0700 | [diff] [blame] | 2141 | MODULE_DESCRIPTION("USB network driver framework"); |
David Brownell | f29fc25 | 2005-08-31 09:52:31 -0700 | [diff] [blame] | 2142 | MODULE_LICENSE("GPL"); |