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