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