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> |
Hemant Kumar | 6d2c747 | 2012-03-06 23:39:29 -0800 | [diff] [blame] | 38 | #include <linux/if_arp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | #include <linux/netdevice.h> |
| 40 | #include <linux/etherdevice.h> |
Peter Holik | 03ad032 | 2009-04-18 07:24:17 +0000 | [diff] [blame] | 41 | #include <linux/ctype.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | #include <linux/ethtool.h> |
| 43 | #include <linux/workqueue.h> |
| 44 | #include <linux/mii.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | #include <linux/usb.h> |
Jussi Kivilinna | 3692e94 | 2008-01-26 00:51:45 +0200 | [diff] [blame] | 46 | #include <linux/usb/usbnet.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 47 | #include <linux/slab.h> |
Andy Shevchenko | fd1f170 | 2010-07-23 03:18:08 +0000 | [diff] [blame] | 48 | #include <linux/kernel.h> |
Ming Lei | b0786b4 | 2010-11-01 07:11:54 -0700 | [diff] [blame] | 49 | #include <linux/pm_runtime.h> |
David Brownell | f29fc25 | 2005-08-31 09:52:31 -0700 | [diff] [blame] | 50 | |
| 51 | #define DRIVER_VERSION "22-Aug-2005" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | |
| 53 | |
| 54 | /*-------------------------------------------------------------------------*/ |
| 55 | |
| 56 | /* |
| 57 | * Nineteen USB 1.1 max size bulk transactions per frame (ms), max. |
| 58 | * Several dozen bytes of IPv4 data can fit in two such transactions. |
| 59 | * One maximum size Ethernet packet takes twenty four of them. |
| 60 | * For high speed, each frame comfortably fits almost 36 max size |
| 61 | * Ethernet packets (so queues should be bigger). |
David Brownell | f29fc25 | 2005-08-31 09:52:31 -0700 | [diff] [blame] | 62 | * |
| 63 | * REVISIT qlens should be members of 'struct usbnet'; the goal is to |
| 64 | * let the USB host controller be busy for 5msec or more before an irq |
| 65 | * is required, under load. Jumbograms change the equation. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | */ |
Jamie Painter | a99c194 | 2006-07-27 14:17:28 -0400 | [diff] [blame] | 67 | #define RX_MAX_QUEUE_MEMORY (60 * 1518) |
| 68 | #define RX_QLEN(dev) (((dev)->udev->speed == USB_SPEED_HIGH) ? \ |
| 69 | (RX_MAX_QUEUE_MEMORY/(dev)->rx_urb_size) : 4) |
| 70 | #define TX_QLEN(dev) (((dev)->udev->speed == USB_SPEED_HIGH) ? \ |
| 71 | (RX_MAX_QUEUE_MEMORY/(dev)->hard_mtu) : 4) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | // reawaken network queue this soon after stopping; else watchdog barks |
| 74 | #define TX_TIMEOUT_JIFFIES (5*HZ) |
| 75 | |
| 76 | // throttle rx/tx briefly after some faults, so khubd might disconnect() |
| 77 | // us (it polls at HZ/4 usually) before we report too many false errors. |
| 78 | #define THROTTLE_JIFFIES (HZ/8) |
| 79 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | // between wakeups |
| 81 | #define UNLINK_TIMEOUT_MS 3 |
| 82 | |
| 83 | /*-------------------------------------------------------------------------*/ |
| 84 | |
| 85 | // randomly generated ethernet address |
| 86 | static u8 node_id [ETH_ALEN]; |
| 87 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | static const char driver_name [] = "usbnet"; |
| 89 | |
Hemant Kumar | 131eb4b | 2012-11-26 19:47:18 -0800 | [diff] [blame] | 90 | struct workqueue_struct *usbnet_wq; |
Hemant Kumar | 1e8ddb5 | 2012-07-02 13:39:22 -0700 | [diff] [blame] | 91 | |
Hemant Kumar | ef59a42 | 2012-08-15 16:57:00 -0700 | [diff] [blame] | 92 | static DECLARE_WAIT_QUEUE_HEAD(unlink_wakeup); |
| 93 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | /* use ethtool to change the level for any given device */ |
| 95 | static int msg_level = -1; |
| 96 | module_param (msg_level, int, 0); |
| 97 | MODULE_PARM_DESC (msg_level, "Override default message level"); |
| 98 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | /*-------------------------------------------------------------------------*/ |
| 100 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | /* handles CDC Ethernet and many other network "bulk data" interfaces */ |
David Brownell | 2e55cc7 | 2005-08-31 09:53:10 -0700 | [diff] [blame] | 102 | int usbnet_get_endpoints(struct usbnet *dev, struct usb_interface *intf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | { |
| 104 | int tmp; |
| 105 | struct usb_host_interface *alt = NULL; |
| 106 | struct usb_host_endpoint *in = NULL, *out = NULL; |
| 107 | struct usb_host_endpoint *status = NULL; |
| 108 | |
| 109 | for (tmp = 0; tmp < intf->num_altsetting; tmp++) { |
| 110 | unsigned ep; |
| 111 | |
| 112 | in = out = status = NULL; |
| 113 | alt = intf->altsetting + tmp; |
| 114 | |
| 115 | /* take the first altsetting with in-bulk + out-bulk; |
| 116 | * remember any status endpoint, just in case; |
Justin P. Mattock | 70f23fd | 2011-05-10 10:16:21 +0200 | [diff] [blame] | 117 | * ignore other endpoints and altsettings. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | */ |
| 119 | for (ep = 0; ep < alt->desc.bNumEndpoints; ep++) { |
| 120 | struct usb_host_endpoint *e; |
| 121 | int intr = 0; |
| 122 | |
| 123 | e = alt->endpoint + ep; |
| 124 | switch (e->desc.bmAttributes) { |
| 125 | case USB_ENDPOINT_XFER_INT: |
Luiz Fernando N. Capitulino | fc6e254 | 2006-10-26 13:03:01 -0300 | [diff] [blame] | 126 | if (!usb_endpoint_dir_in(&e->desc)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | continue; |
| 128 | intr = 1; |
| 129 | /* FALLTHROUGH */ |
| 130 | case USB_ENDPOINT_XFER_BULK: |
| 131 | break; |
| 132 | default: |
| 133 | continue; |
| 134 | } |
Luiz Fernando N. Capitulino | fc6e254 | 2006-10-26 13:03:01 -0300 | [diff] [blame] | 135 | if (usb_endpoint_dir_in(&e->desc)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | if (!intr && !in) |
| 137 | in = e; |
| 138 | else if (intr && !status) |
| 139 | status = e; |
| 140 | } else { |
| 141 | if (!out) |
| 142 | out = e; |
| 143 | } |
| 144 | } |
| 145 | if (in && out) |
| 146 | break; |
| 147 | } |
| 148 | if (!alt || !in || !out) |
| 149 | return -EINVAL; |
| 150 | |
Joe Perches | 8e95a20 | 2009-12-03 07:58:21 +0000 | [diff] [blame] | 151 | if (alt->desc.bAlternateSetting != 0 || |
| 152 | !(dev->driver_info->flags & FLAG_NO_SETINT)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | tmp = usb_set_interface (dev->udev, alt->desc.bInterfaceNumber, |
| 154 | alt->desc.bAlternateSetting); |
| 155 | if (tmp < 0) |
| 156 | return tmp; |
| 157 | } |
David Brownell | cb1cebb | 2007-02-15 18:52:30 -0800 | [diff] [blame] | 158 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | dev->in = usb_rcvbulkpipe (dev->udev, |
| 160 | in->desc.bEndpointAddress & USB_ENDPOINT_NUMBER_MASK); |
| 161 | dev->out = usb_sndbulkpipe (dev->udev, |
| 162 | out->desc.bEndpointAddress & USB_ENDPOINT_NUMBER_MASK); |
| 163 | dev->status = status; |
| 164 | return 0; |
| 165 | } |
David Brownell | 2e55cc7 | 2005-08-31 09:53:10 -0700 | [diff] [blame] | 166 | EXPORT_SYMBOL_GPL(usbnet_get_endpoints); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | |
Peter Holik | 03ad032 | 2009-04-18 07:24:17 +0000 | [diff] [blame] | 168 | int usbnet_get_ethernet_addr(struct usbnet *dev, int iMACAddress) |
| 169 | { |
| 170 | int tmp, i; |
| 171 | unsigned char buf [13]; |
| 172 | |
| 173 | tmp = usb_string(dev->udev, iMACAddress, buf, sizeof buf); |
| 174 | if (tmp != 12) { |
| 175 | dev_dbg(&dev->udev->dev, |
| 176 | "bad MAC string %d fetch, %d\n", iMACAddress, tmp); |
| 177 | if (tmp >= 0) |
| 178 | tmp = -EINVAL; |
| 179 | return tmp; |
| 180 | } |
| 181 | for (i = tmp = 0; i < 6; i++, tmp += 2) |
| 182 | dev->net->dev_addr [i] = |
Andy Shevchenko | fd1f170 | 2010-07-23 03:18:08 +0000 | [diff] [blame] | 183 | (hex_to_bin(buf[tmp]) << 4) + hex_to_bin(buf[tmp + 1]); |
Peter Holik | 03ad032 | 2009-04-18 07:24:17 +0000 | [diff] [blame] | 184 | return 0; |
| 185 | } |
| 186 | EXPORT_SYMBOL_GPL(usbnet_get_ethernet_addr); |
| 187 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 188 | static void intr_complete (struct urb *urb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | |
| 190 | static int init_status (struct usbnet *dev, struct usb_interface *intf) |
| 191 | { |
| 192 | char *buf = NULL; |
| 193 | unsigned pipe = 0; |
| 194 | unsigned maxp; |
| 195 | unsigned period; |
| 196 | |
| 197 | if (!dev->driver_info->status) |
| 198 | return 0; |
| 199 | |
| 200 | pipe = usb_rcvintpipe (dev->udev, |
| 201 | dev->status->desc.bEndpointAddress |
| 202 | & USB_ENDPOINT_NUMBER_MASK); |
| 203 | maxp = usb_maxpacket (dev->udev, pipe, 0); |
| 204 | |
| 205 | /* avoid 1 msec chatter: min 8 msec poll rate */ |
| 206 | period = max ((int) dev->status->desc.bInterval, |
| 207 | (dev->udev->speed == USB_SPEED_HIGH) ? 7 : 3); |
| 208 | |
Christoph Lameter | e94b176 | 2006-12-06 20:33:17 -0800 | [diff] [blame] | 209 | buf = kmalloc (maxp, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | if (buf) { |
Christoph Lameter | e94b176 | 2006-12-06 20:33:17 -0800 | [diff] [blame] | 211 | dev->interrupt = usb_alloc_urb (0, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | if (!dev->interrupt) { |
| 213 | kfree (buf); |
| 214 | return -ENOMEM; |
| 215 | } else { |
| 216 | usb_fill_int_urb(dev->interrupt, dev->udev, pipe, |
| 217 | buf, maxp, intr_complete, dev, period); |
tom.leiming@gmail.com | 720f3d7 | 2012-04-29 22:51:02 +0000 | [diff] [blame] | 218 | dev->interrupt->transfer_flags |= URB_FREE_BUFFER; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | dev_dbg(&intf->dev, |
| 220 | "status ep%din, %d bytes period %d\n", |
| 221 | usb_pipeendpoint(pipe), maxp, period); |
| 222 | } |
| 223 | } |
David Brownell | 18ab458 | 2007-05-25 12:31:32 -0700 | [diff] [blame] | 224 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | } |
| 226 | |
David Brownell | 2e55cc7 | 2005-08-31 09:53:10 -0700 | [diff] [blame] | 227 | /* Passes this packet up the stack, updating its accounting. |
| 228 | * Some link protocols batch packets, so their rx_fixup paths |
| 229 | * can return clones as well as just modify the original skb. |
| 230 | */ |
| 231 | void usbnet_skb_return (struct usbnet *dev, struct sk_buff *skb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | { |
| 233 | int status; |
| 234 | |
Jussi Kivilinna | 7834ddb | 2009-08-11 22:57:16 +0300 | [diff] [blame] | 235 | if (test_bit(EVENT_RX_PAUSED, &dev->flags)) { |
| 236 | skb_queue_tail(&dev->rxq_pause, skb); |
| 237 | return; |
| 238 | } |
| 239 | |
Hemant Kumar | 37c35e4 | 2011-09-14 23:44:19 -0700 | [diff] [blame] | 240 | if (!skb->protocol) |
| 241 | skb->protocol = eth_type_trans(skb, dev->net); |
| 242 | |
Herbert Xu | 7963837 | 2009-06-29 16:53:28 +0000 | [diff] [blame] | 243 | dev->net->stats.rx_packets++; |
| 244 | dev->net->stats.rx_bytes += skb->len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 246 | netif_dbg(dev, rx_status, dev->net, "< rx, len %zu, type 0x%x\n", |
| 247 | skb->len + sizeof (struct ethhdr), skb->protocol); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | memset (skb->cb, 0, sizeof (struct skb_data)); |
Michael Riesch | f9b491e | 2011-09-29 04:06:26 +0000 | [diff] [blame] | 249 | |
| 250 | if (skb_defer_rx_timestamp(skb)) |
| 251 | return; |
| 252 | |
Hemant Kumar | 1e8ddb5 | 2012-07-02 13:39:22 -0700 | [diff] [blame] | 253 | status = netif_rx_ni(skb); |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 254 | if (status != NET_RX_SUCCESS) |
| 255 | netif_dbg(dev, rx_err, dev->net, |
| 256 | "netif_rx status %d\n", status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | } |
David Brownell | 2e55cc7 | 2005-08-31 09:53:10 -0700 | [diff] [blame] | 258 | EXPORT_SYMBOL_GPL(usbnet_skb_return); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | |
| 260 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | /*------------------------------------------------------------------------- |
| 262 | * |
| 263 | * Network Device Driver (peer link to "Host Device", from USB host) |
| 264 | * |
| 265 | *-------------------------------------------------------------------------*/ |
| 266 | |
Stephen Hemminger | 777baa4 | 2009-03-20 19:35:54 +0000 | [diff] [blame] | 267 | int usbnet_change_mtu (struct net_device *net, int new_mtu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | { |
| 269 | struct usbnet *dev = netdev_priv(net); |
David Brownell | f29fc25 | 2005-08-31 09:52:31 -0700 | [diff] [blame] | 270 | int ll_mtu = new_mtu + net->hard_header_len; |
Jamie Painter | a99c194 | 2006-07-27 14:17:28 -0400 | [diff] [blame] | 271 | int old_hard_mtu = dev->hard_mtu; |
| 272 | int old_rx_urb_size = dev->rx_urb_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | |
Jamie Painter | a99c194 | 2006-07-27 14:17:28 -0400 | [diff] [blame] | 274 | if (new_mtu <= 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | // no second zero-length packet read wanted after mtu-sized packets |
David Brownell | f29fc25 | 2005-08-31 09:52:31 -0700 | [diff] [blame] | 277 | if ((ll_mtu % dev->maxpacket) == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | return -EDOM; |
| 279 | net->mtu = new_mtu; |
Jamie Painter | a99c194 | 2006-07-27 14:17:28 -0400 | [diff] [blame] | 280 | |
| 281 | dev->hard_mtu = net->mtu + net->hard_header_len; |
| 282 | if (dev->rx_urb_size == old_hard_mtu) { |
| 283 | dev->rx_urb_size = dev->hard_mtu; |
| 284 | if (dev->rx_urb_size > old_rx_urb_size) |
| 285 | usbnet_unlink_rx_urbs(dev); |
| 286 | } |
| 287 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | return 0; |
| 289 | } |
Stephen Hemminger | 777baa4 | 2009-03-20 19:35:54 +0000 | [diff] [blame] | 290 | EXPORT_SYMBOL_GPL(usbnet_change_mtu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | |
Ming Lei | 5b6e9bc | 2012-04-26 11:33:46 +0800 | [diff] [blame] | 292 | /* The caller must hold list->lock */ |
| 293 | static void __usbnet_queue_skb(struct sk_buff_head *list, |
| 294 | struct sk_buff *newsk, enum skb_state state) |
| 295 | { |
| 296 | struct skb_data *entry = (struct skb_data *) newsk->cb; |
| 297 | |
| 298 | __skb_queue_tail(list, newsk); |
| 299 | entry->state = state; |
| 300 | } |
| 301 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | /*-------------------------------------------------------------------------*/ |
| 303 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | /* some LK 2.4 HCDs oopsed if we freed or resubmitted urbs from |
| 305 | * completion callbacks. 2.5 should have fixed those bugs... |
| 306 | */ |
| 307 | |
Ming Lei | 5b6e9bc | 2012-04-26 11:33:46 +0800 | [diff] [blame] | 308 | static enum skb_state defer_bh(struct usbnet *dev, struct sk_buff *skb, |
| 309 | struct sk_buff_head *list, enum skb_state state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | unsigned long flags; |
Ming Lei | 5b6e9bc | 2012-04-26 11:33:46 +0800 | [diff] [blame] | 312 | enum skb_state old_state; |
| 313 | struct skb_data *entry = (struct skb_data *) skb->cb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | |
David S. Miller | 8728b83 | 2005-08-09 19:25:21 -0700 | [diff] [blame] | 315 | spin_lock_irqsave(&list->lock, flags); |
Ming Lei | 5b6e9bc | 2012-04-26 11:33:46 +0800 | [diff] [blame] | 316 | old_state = entry->state; |
| 317 | entry->state = state; |
David S. Miller | 8728b83 | 2005-08-09 19:25:21 -0700 | [diff] [blame] | 318 | __skb_unlink(skb, list); |
| 319 | spin_unlock(&list->lock); |
| 320 | spin_lock(&dev->done.lock); |
| 321 | __skb_queue_tail(&dev->done, skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | if (dev->done.qlen == 1) |
Hemant Kumar | 1e8ddb5 | 2012-07-02 13:39:22 -0700 | [diff] [blame] | 323 | queue_work(usbnet_wq, &dev->bh_w); |
David S. Miller | 8728b83 | 2005-08-09 19:25:21 -0700 | [diff] [blame] | 324 | spin_unlock_irqrestore(&dev->done.lock, flags); |
Ming Lei | 5b6e9bc | 2012-04-26 11:33:46 +0800 | [diff] [blame] | 325 | return old_state; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | } |
| 327 | |
| 328 | /* some work can't be done in tasklets, so we use keventd |
| 329 | * |
| 330 | * NOTE: annoying asymmetry: if it's active, schedule_work() fails, |
| 331 | * but tasklet_schedule() doesn't. hope the failure is rare. |
| 332 | */ |
David Brownell | 2e55cc7 | 2005-08-31 09:53:10 -0700 | [diff] [blame] | 333 | void usbnet_defer_kevent (struct usbnet *dev, int work) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | { |
| 335 | set_bit (work, &dev->flags); |
Steve Glendinning | 5ae1424 | 2012-11-08 06:26:21 +0000 | [diff] [blame] | 336 | if (!schedule_work (&dev->kevent)) { |
| 337 | if (net_ratelimit()) |
| 338 | netdev_err(dev->net, "kevent %d may have been dropped\n", work); |
| 339 | } else { |
Joe Perches | 60b8675 | 2010-02-17 10:30:23 +0000 | [diff] [blame] | 340 | netdev_dbg(dev->net, "kevent %d scheduled\n", work); |
Steve Glendinning | 5ae1424 | 2012-11-08 06:26:21 +0000 | [diff] [blame] | 341 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | } |
David Brownell | 2e55cc7 | 2005-08-31 09:53:10 -0700 | [diff] [blame] | 343 | EXPORT_SYMBOL_GPL(usbnet_defer_kevent); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | |
| 345 | /*-------------------------------------------------------------------------*/ |
| 346 | |
David S. Miller | dacb397 | 2010-08-10 02:50:55 -0700 | [diff] [blame] | 347 | 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] | 348 | { |
| 349 | struct sk_buff *skb; |
| 350 | struct skb_data *entry; |
Hemant Kumar | 131eb4b | 2012-11-26 19:47:18 -0800 | [diff] [blame] | 351 | usb_complete_t complete_fn; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | int retval = 0; |
| 353 | unsigned long lockflags; |
David Brownell | 2e55cc7 | 2005-08-31 09:53:10 -0700 | [diff] [blame] | 354 | size_t size = dev->rx_urb_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | |
Eric Dumazet | 7bdd402 | 2012-03-14 06:56:25 +0000 | [diff] [blame] | 356 | skb = __netdev_alloc_skb_ip_align(dev->net, size, flags); |
| 357 | if (!skb) { |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 358 | netif_dbg(dev, rx_err, dev->net, "no rx skb\n"); |
David Brownell | 2e55cc7 | 2005-08-31 09:53:10 -0700 | [diff] [blame] | 359 | usbnet_defer_kevent (dev, EVENT_RX_MEMORY); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | usb_free_urb (urb); |
David S. Miller | dacb397 | 2010-08-10 02:50:55 -0700 | [diff] [blame] | 361 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | |
Hemant Kumar | 6d2c747 | 2012-03-06 23:39:29 -0800 | [diff] [blame] | 364 | if (dev->net->type != ARPHRD_RAWIP) |
| 365 | skb_reserve(skb, NET_IP_ALIGN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 366 | |
| 367 | entry = (struct skb_data *) skb->cb; |
| 368 | entry->urb = urb; |
| 369 | entry->dev = dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | entry->length = 0; |
| 371 | |
Hemant Kumar | 131eb4b | 2012-11-26 19:47:18 -0800 | [diff] [blame] | 372 | if (dev->driver_info->rx_complete) |
| 373 | complete_fn = dev->driver_info->rx_complete; |
| 374 | else |
| 375 | complete_fn = rx_complete; |
| 376 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | usb_fill_bulk_urb (urb, dev->udev, dev->in, |
Hemant Kumar | 131eb4b | 2012-11-26 19:47:18 -0800 | [diff] [blame] | 378 | skb->data, size, complete_fn, skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | |
| 380 | spin_lock_irqsave (&dev->rxq.lock, lockflags); |
| 381 | |
Joe Perches | 8e95a20 | 2009-12-03 07:58:21 +0000 | [diff] [blame] | 382 | if (netif_running (dev->net) && |
| 383 | netif_device_present (dev->net) && |
Oliver Neukum | 69ee472 | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 384 | !test_bit (EVENT_RX_HALT, &dev->flags) && |
| 385 | !test_bit (EVENT_DEV_ASLEEP, &dev->flags)) { |
David Brownell | 18ab458 | 2007-05-25 12:31:32 -0700 | [diff] [blame] | 386 | switch (retval = usb_submit_urb (urb, GFP_ATOMIC)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | case -EPIPE: |
David Brownell | 2e55cc7 | 2005-08-31 09:53:10 -0700 | [diff] [blame] | 388 | usbnet_defer_kevent (dev, EVENT_RX_HALT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | break; |
| 390 | case -ENOMEM: |
David Brownell | 2e55cc7 | 2005-08-31 09:53:10 -0700 | [diff] [blame] | 391 | usbnet_defer_kevent (dev, EVENT_RX_MEMORY); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | break; |
| 393 | case -ENODEV: |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 394 | netif_dbg(dev, ifdown, dev->net, "device gone\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | netif_device_detach (dev->net); |
| 396 | break; |
David S. Miller | dacb397 | 2010-08-10 02:50:55 -0700 | [diff] [blame] | 397 | case -EHOSTUNREACH: |
| 398 | retval = -ENOLINK; |
| 399 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | default: |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 401 | netif_dbg(dev, rx_err, dev->net, |
| 402 | "rx submit, %d\n", retval); |
Hemant Kumar | 1e8ddb5 | 2012-07-02 13:39:22 -0700 | [diff] [blame] | 403 | queue_work(usbnet_wq, &dev->bh_w); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | break; |
| 405 | case 0: |
Hemant Kumar | 279188a | 2012-04-03 13:32:48 -0700 | [diff] [blame] | 406 | usb_mark_last_busy(dev->udev); |
Ming Lei | 5b6e9bc | 2012-04-26 11:33:46 +0800 | [diff] [blame] | 407 | __usbnet_queue_skb(&dev->rxq, skb, rx_start); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | } |
| 409 | } else { |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 410 | netif_dbg(dev, ifdown, dev->net, "rx: stopped\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | retval = -ENOLINK; |
| 412 | } |
| 413 | spin_unlock_irqrestore (&dev->rxq.lock, lockflags); |
| 414 | if (retval) { |
| 415 | dev_kfree_skb_any (skb); |
| 416 | usb_free_urb (urb); |
| 417 | } |
David S. Miller | dacb397 | 2010-08-10 02:50:55 -0700 | [diff] [blame] | 418 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | } |
| 420 | |
| 421 | |
| 422 | /*-------------------------------------------------------------------------*/ |
| 423 | |
| 424 | static inline void rx_process (struct usbnet *dev, struct sk_buff *skb) |
| 425 | { |
Joe Perches | 8e95a20 | 2009-12-03 07:58:21 +0000 | [diff] [blame] | 426 | if (dev->driver_info->rx_fixup && |
Andrzej Zaborowski | 7a635ea | 2011-03-28 12:56:33 +0000 | [diff] [blame] | 427 | !dev->driver_info->rx_fixup (dev, skb)) { |
| 428 | /* With RX_ASSEMBLE, rx_fixup() must update counters */ |
| 429 | if (!(dev->driver_info->flags & FLAG_RX_ASSEMBLE)) |
| 430 | dev->net->stats.rx_errors++; |
| 431 | goto done; |
| 432 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 | // else network stack removes extra byte if we forced a short packet |
| 434 | |
Alexey Orishko | 073285f | 2010-11-29 23:23:27 +0000 | [diff] [blame] | 435 | if (skb->len) { |
| 436 | /* all data was already cloned from skb inside the driver */ |
| 437 | if (dev->driver_info->flags & FLAG_MULTI_PACKET) |
| 438 | dev_kfree_skb_any(skb); |
| 439 | else |
| 440 | usbnet_skb_return(dev, skb); |
| 441 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | } |
Alexey Orishko | 073285f | 2010-11-29 23:23:27 +0000 | [diff] [blame] | 443 | |
| 444 | netif_dbg(dev, rx_err, dev->net, "drop\n"); |
Alexey Orishko | 073285f | 2010-11-29 23:23:27 +0000 | [diff] [blame] | 445 | dev->net->stats.rx_errors++; |
Andrzej Zaborowski | 7a635ea | 2011-03-28 12:56:33 +0000 | [diff] [blame] | 446 | done: |
Alexey Orishko | 073285f | 2010-11-29 23:23:27 +0000 | [diff] [blame] | 447 | skb_queue_tail(&dev->done, skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 448 | } |
| 449 | |
| 450 | /*-------------------------------------------------------------------------*/ |
| 451 | |
Hemant Kumar | 131eb4b | 2012-11-26 19:47:18 -0800 | [diff] [blame] | 452 | void rx_complete(struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | { |
| 454 | struct sk_buff *skb = (struct sk_buff *) urb->context; |
| 455 | struct skb_data *entry = (struct skb_data *) skb->cb; |
| 456 | struct usbnet *dev = entry->dev; |
| 457 | int urb_status = urb->status; |
Ming Lei | 5b6e9bc | 2012-04-26 11:33:46 +0800 | [diff] [blame] | 458 | enum skb_state state; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | |
| 460 | skb_put (skb, urb->actual_length); |
Ming Lei | 5b6e9bc | 2012-04-26 11:33:46 +0800 | [diff] [blame] | 461 | state = rx_done; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | entry->urb = NULL; |
| 463 | |
| 464 | switch (urb_status) { |
David Brownell | 18ab458 | 2007-05-25 12:31:32 -0700 | [diff] [blame] | 465 | /* success */ |
| 466 | case 0: |
David Brownell | f29fc25 | 2005-08-31 09:52:31 -0700 | [diff] [blame] | 467 | if (skb->len < dev->net->hard_header_len) { |
Ming Lei | 5b6e9bc | 2012-04-26 11:33:46 +0800 | [diff] [blame] | 468 | state = rx_cleanup; |
Herbert Xu | 7963837 | 2009-06-29 16:53:28 +0000 | [diff] [blame] | 469 | dev->net->stats.rx_errors++; |
| 470 | dev->net->stats.rx_length_errors++; |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 471 | netif_dbg(dev, rx_err, dev->net, |
| 472 | "rx length %d\n", skb->len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | } |
| 474 | break; |
| 475 | |
David Brownell | 18ab458 | 2007-05-25 12:31:32 -0700 | [diff] [blame] | 476 | /* stalls need manual reset. this is rare ... except that |
| 477 | * when going through USB 2.0 TTs, unplug appears this way. |
Jean Delvare | 3ac49a1 | 2009-06-04 16:20:28 +0200 | [diff] [blame] | 478 | * we avoid the highspeed version of the ETIMEDOUT/EILSEQ |
David Brownell | 18ab458 | 2007-05-25 12:31:32 -0700 | [diff] [blame] | 479 | * storm, recovering as needed. |
| 480 | */ |
| 481 | case -EPIPE: |
Herbert Xu | 7963837 | 2009-06-29 16:53:28 +0000 | [diff] [blame] | 482 | dev->net->stats.rx_errors++; |
David Brownell | 2e55cc7 | 2005-08-31 09:53:10 -0700 | [diff] [blame] | 483 | usbnet_defer_kevent (dev, EVENT_RX_HALT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | // FALLTHROUGH |
| 485 | |
David Brownell | 18ab458 | 2007-05-25 12:31:32 -0700 | [diff] [blame] | 486 | /* software-driven interface shutdown */ |
| 487 | case -ECONNRESET: /* async unlink */ |
| 488 | case -ESHUTDOWN: /* hardware gone */ |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 489 | netif_dbg(dev, ifdown, dev->net, |
| 490 | "rx shutdown, code %d\n", urb_status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 491 | goto block; |
| 492 | |
David Brownell | 18ab458 | 2007-05-25 12:31:32 -0700 | [diff] [blame] | 493 | /* we get controller i/o faults during khubd disconnect() delays. |
| 494 | * throttle down resubmits, to avoid log floods; just temporarily, |
| 495 | * so we still recover when the fault isn't a khubd delay. |
| 496 | */ |
| 497 | case -EPROTO: |
| 498 | case -ETIME: |
| 499 | case -EILSEQ: |
Herbert Xu | 7963837 | 2009-06-29 16:53:28 +0000 | [diff] [blame] | 500 | dev->net->stats.rx_errors++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 | if (!timer_pending (&dev->delay)) { |
| 502 | mod_timer (&dev->delay, jiffies + THROTTLE_JIFFIES); |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 503 | netif_dbg(dev, link, dev->net, |
| 504 | "rx throttle %d\n", urb_status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | } |
| 506 | block: |
Ming Lei | 5b6e9bc | 2012-04-26 11:33:46 +0800 | [diff] [blame] | 507 | state = rx_cleanup; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 508 | entry->urb = urb; |
| 509 | urb = NULL; |
| 510 | break; |
| 511 | |
David Brownell | 18ab458 | 2007-05-25 12:31:32 -0700 | [diff] [blame] | 512 | /* data overrun ... flush fifo? */ |
| 513 | case -EOVERFLOW: |
Herbert Xu | 7963837 | 2009-06-29 16:53:28 +0000 | [diff] [blame] | 514 | dev->net->stats.rx_over_errors++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | // FALLTHROUGH |
David Brownell | cb1cebb | 2007-02-15 18:52:30 -0800 | [diff] [blame] | 516 | |
David Brownell | 18ab458 | 2007-05-25 12:31:32 -0700 | [diff] [blame] | 517 | default: |
Ming Lei | 5b6e9bc | 2012-04-26 11:33:46 +0800 | [diff] [blame] | 518 | state = rx_cleanup; |
Herbert Xu | 7963837 | 2009-06-29 16:53:28 +0000 | [diff] [blame] | 519 | dev->net->stats.rx_errors++; |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 520 | 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] | 521 | break; |
| 522 | } |
| 523 | |
Ming Lei | 5b6e9bc | 2012-04-26 11:33:46 +0800 | [diff] [blame] | 524 | state = defer_bh(dev, skb, &dev->rxq, state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | |
| 526 | if (urb) { |
Joe Perches | 8e95a20 | 2009-12-03 07:58:21 +0000 | [diff] [blame] | 527 | if (netif_running (dev->net) && |
Ming Lei | 5b6e9bc | 2012-04-26 11:33:46 +0800 | [diff] [blame] | 528 | !test_bit (EVENT_RX_HALT, &dev->flags) && |
| 529 | state != unlink_start) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | rx_submit (dev, urb, GFP_ATOMIC); |
Oliver Neukum | 8a78335 | 2012-03-03 18:45:07 +0100 | [diff] [blame] | 531 | usb_mark_last_busy(dev->udev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 | return; |
| 533 | } |
| 534 | usb_free_urb (urb); |
| 535 | } |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 536 | netif_dbg(dev, rx_err, dev->net, "no read resubmitted\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 537 | } |
Hemant Kumar | 131eb4b | 2012-11-26 19:47:18 -0800 | [diff] [blame] | 538 | EXPORT_SYMBOL_GPL(rx_complete); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 540 | static void intr_complete (struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | { |
| 542 | struct usbnet *dev = urb->context; |
| 543 | int status = urb->status; |
| 544 | |
| 545 | switch (status) { |
David Brownell | 18ab458 | 2007-05-25 12:31:32 -0700 | [diff] [blame] | 546 | /* success */ |
| 547 | case 0: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | dev->driver_info->status(dev, urb); |
| 549 | break; |
| 550 | |
David Brownell | 18ab458 | 2007-05-25 12:31:32 -0700 | [diff] [blame] | 551 | /* software-driven interface shutdown */ |
| 552 | case -ENOENT: /* urb killed */ |
| 553 | case -ESHUTDOWN: /* hardware gone */ |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 554 | netif_dbg(dev, ifdown, dev->net, |
| 555 | "intr shutdown, code %d\n", status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | return; |
| 557 | |
David Brownell | 18ab458 | 2007-05-25 12:31:32 -0700 | [diff] [blame] | 558 | /* NOTE: not throttling like RX/TX, since this endpoint |
| 559 | * already polls infrequently |
| 560 | */ |
| 561 | default: |
Joe Perches | 60b8675 | 2010-02-17 10:30:23 +0000 | [diff] [blame] | 562 | netdev_dbg(dev->net, "intr status %d\n", status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | break; |
| 564 | } |
| 565 | |
| 566 | if (!netif_running (dev->net)) |
| 567 | return; |
| 568 | |
| 569 | memset(urb->transfer_buffer, 0, urb->transfer_buffer_length); |
| 570 | status = usb_submit_urb (urb, GFP_ATOMIC); |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 571 | if (status != 0) |
| 572 | netif_err(dev, timer, dev->net, |
| 573 | "intr resubmit --> %d\n", status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 574 | } |
| 575 | |
| 576 | /*-------------------------------------------------------------------------*/ |
Jussi Kivilinna | 7834ddb | 2009-08-11 22:57:16 +0300 | [diff] [blame] | 577 | void usbnet_pause_rx(struct usbnet *dev) |
| 578 | { |
| 579 | set_bit(EVENT_RX_PAUSED, &dev->flags); |
| 580 | |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 581 | netif_dbg(dev, rx_status, dev->net, "paused rx queue enabled\n"); |
Jussi Kivilinna | 7834ddb | 2009-08-11 22:57:16 +0300 | [diff] [blame] | 582 | } |
| 583 | EXPORT_SYMBOL_GPL(usbnet_pause_rx); |
| 584 | |
| 585 | void usbnet_resume_rx(struct usbnet *dev) |
| 586 | { |
| 587 | struct sk_buff *skb; |
| 588 | int num = 0; |
| 589 | |
| 590 | clear_bit(EVENT_RX_PAUSED, &dev->flags); |
| 591 | |
| 592 | while ((skb = skb_dequeue(&dev->rxq_pause)) != NULL) { |
| 593 | usbnet_skb_return(dev, skb); |
| 594 | num++; |
| 595 | } |
| 596 | |
Hemant Kumar | 1e8ddb5 | 2012-07-02 13:39:22 -0700 | [diff] [blame] | 597 | queue_work(usbnet_wq, &dev->bh_w); |
Jussi Kivilinna | 7834ddb | 2009-08-11 22:57:16 +0300 | [diff] [blame] | 598 | |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 599 | netif_dbg(dev, rx_status, dev->net, |
| 600 | "paused rx queue disabled, %d skbs requeued\n", num); |
Jussi Kivilinna | 7834ddb | 2009-08-11 22:57:16 +0300 | [diff] [blame] | 601 | } |
| 602 | EXPORT_SYMBOL_GPL(usbnet_resume_rx); |
| 603 | |
| 604 | void usbnet_purge_paused_rxq(struct usbnet *dev) |
| 605 | { |
| 606 | skb_queue_purge(&dev->rxq_pause); |
| 607 | } |
| 608 | EXPORT_SYMBOL_GPL(usbnet_purge_paused_rxq); |
| 609 | |
| 610 | /*-------------------------------------------------------------------------*/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 611 | |
| 612 | // unlink pending rx/tx; completion handlers do all other cleanup |
| 613 | |
| 614 | static int unlink_urbs (struct usbnet *dev, struct sk_buff_head *q) |
| 615 | { |
| 616 | unsigned long flags; |
Ming Lei | 5b6e9bc | 2012-04-26 11:33:46 +0800 | [diff] [blame] | 617 | struct sk_buff *skb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 618 | int count = 0; |
| 619 | |
| 620 | spin_lock_irqsave (&q->lock, flags); |
Ming Lei | 5b6e9bc | 2012-04-26 11:33:46 +0800 | [diff] [blame] | 621 | while (!skb_queue_empty(q)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 622 | struct skb_data *entry; |
| 623 | struct urb *urb; |
| 624 | int retval; |
| 625 | |
Ming Lei | 5b6e9bc | 2012-04-26 11:33:46 +0800 | [diff] [blame] | 626 | skb_queue_walk(q, skb) { |
| 627 | entry = (struct skb_data *) skb->cb; |
| 628 | if (entry->state != unlink_start) |
| 629 | goto found; |
| 630 | } |
| 631 | break; |
| 632 | found: |
| 633 | entry->state = unlink_start; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | urb = entry->urb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 635 | |
tom.leiming@gmail.com | 0956a8c | 2012-03-22 03:22:18 +0000 | [diff] [blame] | 636 | /* |
| 637 | * Get reference count of the URB to avoid it to be |
| 638 | * freed during usb_unlink_urb, which may trigger |
| 639 | * use-after-free problem inside usb_unlink_urb since |
| 640 | * usb_unlink_urb is always racing with .complete |
| 641 | * handler(include defer_bh). |
| 642 | */ |
| 643 | usb_get_urb(urb); |
Sebastian Siewior | 4231d47 | 2012-03-07 10:19:28 +0000 | [diff] [blame] | 644 | spin_unlock_irqrestore(&q->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 645 | // during some PM-driven resume scenarios, |
| 646 | // these (async) unlinks complete immediately |
| 647 | retval = usb_unlink_urb (urb); |
| 648 | if (retval != -EINPROGRESS && retval != 0) |
Joe Perches | 60b8675 | 2010-02-17 10:30:23 +0000 | [diff] [blame] | 649 | netdev_dbg(dev->net, "unlink urb err, %d\n", retval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | else |
| 651 | count++; |
tom.leiming@gmail.com | 0956a8c | 2012-03-22 03:22:18 +0000 | [diff] [blame] | 652 | usb_put_urb(urb); |
Sebastian Siewior | 4231d47 | 2012-03-07 10:19:28 +0000 | [diff] [blame] | 653 | spin_lock_irqsave(&q->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 654 | } |
| 655 | spin_unlock_irqrestore (&q->lock, flags); |
| 656 | return count; |
| 657 | } |
| 658 | |
Jamie Painter | a99c194 | 2006-07-27 14:17:28 -0400 | [diff] [blame] | 659 | // Flush all pending rx urbs |
| 660 | // minidrivers may need to do this when the MTU changes |
| 661 | |
| 662 | void usbnet_unlink_rx_urbs(struct usbnet *dev) |
| 663 | { |
| 664 | if (netif_running(dev->net)) { |
| 665 | (void) unlink_urbs (dev, &dev->rxq); |
Hemant Kumar | 1e8ddb5 | 2012-07-02 13:39:22 -0700 | [diff] [blame] | 666 | queue_work(usbnet_wq, &dev->bh_w); |
Jamie Painter | a99c194 | 2006-07-27 14:17:28 -0400 | [diff] [blame] | 667 | } |
| 668 | } |
| 669 | EXPORT_SYMBOL_GPL(usbnet_unlink_rx_urbs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 670 | |
| 671 | /*-------------------------------------------------------------------------*/ |
| 672 | |
| 673 | // precondition: never called in_interrupt |
Hemant Kumar | 131eb4b | 2012-11-26 19:47:18 -0800 | [diff] [blame] | 674 | void usbnet_terminate_urbs(struct usbnet *dev) |
Oliver Neukum | 69ee472 | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 675 | { |
Oliver Neukum | 69ee472 | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 676 | DECLARE_WAITQUEUE(wait, current); |
| 677 | int temp; |
| 678 | |
| 679 | /* ensure there are no more active urbs */ |
| 680 | add_wait_queue(&unlink_wakeup, &wait); |
| 681 | set_current_state(TASK_UNINTERRUPTIBLE); |
| 682 | dev->wait = &unlink_wakeup; |
| 683 | temp = unlink_urbs(dev, &dev->txq) + |
| 684 | unlink_urbs(dev, &dev->rxq); |
| 685 | |
| 686 | /* maybe wait for deletions to finish. */ |
| 687 | while (!skb_queue_empty(&dev->rxq) |
| 688 | && !skb_queue_empty(&dev->txq) |
| 689 | && !skb_queue_empty(&dev->done)) { |
Kulikov Vasiliy | 66cc42a | 2010-07-25 22:25:42 +0000 | [diff] [blame] | 690 | schedule_timeout(msecs_to_jiffies(UNLINK_TIMEOUT_MS)); |
Oliver Neukum | 69ee472 | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 691 | set_current_state(TASK_UNINTERRUPTIBLE); |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 692 | netif_dbg(dev, ifdown, dev->net, |
| 693 | "waited for %d urb completions\n", temp); |
Oliver Neukum | 69ee472 | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 694 | } |
| 695 | set_current_state(TASK_RUNNING); |
| 696 | dev->wait = NULL; |
| 697 | remove_wait_queue(&unlink_wakeup, &wait); |
| 698 | } |
Hemant Kumar | 131eb4b | 2012-11-26 19:47:18 -0800 | [diff] [blame] | 699 | EXPORT_SYMBOL_GPL(usbnet_terminate_urbs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 700 | |
Stephen Hemminger | 777baa4 | 2009-03-20 19:35:54 +0000 | [diff] [blame] | 701 | int usbnet_stop (struct net_device *net) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 702 | { |
| 703 | struct usbnet *dev = netdev_priv(net); |
Jussi Kivilinna | a33e9e7 | 2009-06-16 17:17:27 +0300 | [diff] [blame] | 704 | struct driver_info *info = dev->driver_info; |
Jussi Kivilinna | a33e9e7 | 2009-06-16 17:17:27 +0300 | [diff] [blame] | 705 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 706 | |
Ming Lei | 75bd0cb | 2011-04-28 22:37:09 +0000 | [diff] [blame] | 707 | clear_bit(EVENT_DEV_OPEN, &dev->flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 708 | netif_stop_queue (net); |
| 709 | |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 710 | netif_info(dev, ifdown, dev->net, |
Ben Hutchings | 8ccef43 | 2010-06-08 08:20:59 +0000 | [diff] [blame] | 711 | "stop stats: rx/tx %lu/%lu, errs %lu/%lu\n", |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 712 | net->stats.rx_packets, net->stats.tx_packets, |
| 713 | net->stats.rx_errors, net->stats.tx_errors); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 714 | |
Jussi Kivilinna | a33e9e7 | 2009-06-16 17:17:27 +0300 | [diff] [blame] | 715 | /* allow minidriver to stop correctly (wireless devices to turn off |
| 716 | * radio etc) */ |
| 717 | if (info->stop) { |
| 718 | retval = info->stop(dev); |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 719 | if (retval < 0) |
| 720 | netif_info(dev, ifdown, dev->net, |
| 721 | "stop fail (%d) usbnet usb-%s-%s, %s\n", |
| 722 | retval, |
| 723 | dev->udev->bus->bus_name, dev->udev->devpath, |
| 724 | info->description); |
Jussi Kivilinna | a33e9e7 | 2009-06-16 17:17:27 +0300 | [diff] [blame] | 725 | } |
| 726 | |
Oliver Neukum | 69ee472 | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 727 | if (!(info->flags & FLAG_AVOID_UNLINK_URBS)) |
| 728 | usbnet_terminate_urbs(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 729 | |
| 730 | usb_kill_urb(dev->interrupt); |
| 731 | |
Jussi Kivilinna | 7834ddb | 2009-08-11 22:57:16 +0300 | [diff] [blame] | 732 | usbnet_purge_paused_rxq(dev); |
| 733 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 734 | /* deferred work (task, timer, softirq) must also stop. |
| 735 | * can't flush_scheduled_work() until we drop rtnl (later), |
| 736 | * else workers could deadlock; so make workers a NOP. |
| 737 | */ |
| 738 | dev->flags = 0; |
| 739 | del_timer_sync (&dev->delay); |
Hemant Kumar | 1e8ddb5 | 2012-07-02 13:39:22 -0700 | [diff] [blame] | 740 | cancel_work_sync(&dev->bh_w); |
Oliver Neukum | 69ee472 | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 741 | if (info->manage_power) |
| 742 | info->manage_power(dev, 0); |
| 743 | else |
| 744 | usb_autopm_put_interface(dev->intf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 745 | |
| 746 | return 0; |
| 747 | } |
Stephen Hemminger | 777baa4 | 2009-03-20 19:35:54 +0000 | [diff] [blame] | 748 | EXPORT_SYMBOL_GPL(usbnet_stop); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 749 | |
| 750 | /*-------------------------------------------------------------------------*/ |
| 751 | |
| 752 | // posts reads, and enables write queuing |
| 753 | |
| 754 | // precondition: never called in_interrupt |
| 755 | |
Stephen Hemminger | 777baa4 | 2009-03-20 19:35:54 +0000 | [diff] [blame] | 756 | int usbnet_open (struct net_device *net) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 757 | { |
| 758 | struct usbnet *dev = netdev_priv(net); |
Oliver Neukum | a11a654 | 2007-08-03 13:52:19 +0200 | [diff] [blame] | 759 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 760 | struct driver_info *info = dev->driver_info; |
| 761 | |
Oliver Neukum | a11a654 | 2007-08-03 13:52:19 +0200 | [diff] [blame] | 762 | if ((retval = usb_autopm_get_interface(dev->intf)) < 0) { |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 763 | netif_info(dev, ifup, dev->net, |
| 764 | "resumption fail (%d) usbnet usb-%s-%s, %s\n", |
| 765 | retval, |
| 766 | dev->udev->bus->bus_name, |
| 767 | dev->udev->devpath, |
| 768 | info->description); |
Oliver Neukum | a11a654 | 2007-08-03 13:52:19 +0200 | [diff] [blame] | 769 | goto done_nopm; |
| 770 | } |
| 771 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 772 | // put into "known safe" state |
| 773 | if (info->reset && (retval = info->reset (dev)) < 0) { |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 774 | netif_info(dev, ifup, dev->net, |
| 775 | "open reset fail (%d) usbnet usb-%s-%s, %s\n", |
| 776 | retval, |
| 777 | dev->udev->bus->bus_name, |
| 778 | dev->udev->devpath, |
| 779 | info->description); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 780 | goto done; |
| 781 | } |
| 782 | |
| 783 | // insist peer be connected |
| 784 | if (info->check_connect && (retval = info->check_connect (dev)) < 0) { |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 785 | netif_dbg(dev, ifup, dev->net, "can't open; %d\n", retval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 786 | goto done; |
| 787 | } |
| 788 | |
| 789 | /* start any status interrupt transfer */ |
| 790 | if (dev->interrupt) { |
| 791 | retval = usb_submit_urb (dev->interrupt, GFP_KERNEL); |
| 792 | if (retval < 0) { |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 793 | netif_err(dev, ifup, dev->net, |
| 794 | "intr submit %d\n", retval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 795 | goto done; |
| 796 | } |
| 797 | } |
| 798 | |
Paul Stewart | 68972ef | 2011-04-28 05:43:37 +0000 | [diff] [blame] | 799 | set_bit(EVENT_DEV_OPEN, &dev->flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 800 | netif_start_queue (net); |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 801 | netif_info(dev, ifup, dev->net, |
| 802 | "open: enable queueing (rx %d, tx %d) mtu %d %s framing\n", |
| 803 | (int)RX_QLEN(dev), (int)TX_QLEN(dev), |
| 804 | dev->net->mtu, |
| 805 | (dev->driver_info->flags & FLAG_FRAMING_NC) ? "NetChip" : |
| 806 | (dev->driver_info->flags & FLAG_FRAMING_GL) ? "GeneSys" : |
| 807 | (dev->driver_info->flags & FLAG_FRAMING_Z) ? "Zaurus" : |
| 808 | (dev->driver_info->flags & FLAG_FRAMING_RN) ? "RNDIS" : |
| 809 | (dev->driver_info->flags & FLAG_FRAMING_AX) ? "ASIX" : |
| 810 | "simple"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 811 | |
| 812 | // delay posting reads until we're fully open |
Hemant Kumar | 1e8ddb5 | 2012-07-02 13:39:22 -0700 | [diff] [blame] | 813 | queue_work(usbnet_wq, &dev->bh_w); |
Oliver Neukum | 69ee472 | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 814 | if (info->manage_power) { |
| 815 | retval = info->manage_power(dev, 1); |
| 816 | if (retval < 0) |
| 817 | goto done; |
| 818 | usb_autopm_put_interface(dev->intf); |
| 819 | } |
Oliver Neukum | a11a654 | 2007-08-03 13:52:19 +0200 | [diff] [blame] | 820 | return retval; |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 821 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 822 | done: |
Oliver Neukum | a11a654 | 2007-08-03 13:52:19 +0200 | [diff] [blame] | 823 | usb_autopm_put_interface(dev->intf); |
| 824 | done_nopm: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 825 | return retval; |
| 826 | } |
Stephen Hemminger | 777baa4 | 2009-03-20 19:35:54 +0000 | [diff] [blame] | 827 | EXPORT_SYMBOL_GPL(usbnet_open); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 828 | |
| 829 | /*-------------------------------------------------------------------------*/ |
| 830 | |
David Brownell | 2e55cc7 | 2005-08-31 09:53:10 -0700 | [diff] [blame] | 831 | /* ethtool methods; minidrivers may need to add some more, but |
| 832 | * they'll probably want to use this base set. |
| 833 | */ |
| 834 | |
Arnd Bergmann | c41286f | 2006-10-09 00:08:01 +0200 | [diff] [blame] | 835 | int usbnet_get_settings (struct net_device *net, struct ethtool_cmd *cmd) |
| 836 | { |
| 837 | struct usbnet *dev = netdev_priv(net); |
| 838 | |
| 839 | if (!dev->mii.mdio_read) |
| 840 | return -EOPNOTSUPP; |
| 841 | |
| 842 | return mii_ethtool_gset(&dev->mii, cmd); |
| 843 | } |
| 844 | EXPORT_SYMBOL_GPL(usbnet_get_settings); |
| 845 | |
| 846 | int usbnet_set_settings (struct net_device *net, struct ethtool_cmd *cmd) |
| 847 | { |
| 848 | struct usbnet *dev = netdev_priv(net); |
| 849 | int retval; |
| 850 | |
| 851 | if (!dev->mii.mdio_write) |
| 852 | return -EOPNOTSUPP; |
| 853 | |
| 854 | retval = mii_ethtool_sset(&dev->mii, cmd); |
| 855 | |
| 856 | /* link speed/duplex might have changed */ |
| 857 | if (dev->driver_info->link_reset) |
| 858 | dev->driver_info->link_reset(dev); |
| 859 | |
| 860 | return retval; |
| 861 | |
| 862 | } |
| 863 | EXPORT_SYMBOL_GPL(usbnet_set_settings); |
| 864 | |
Arnd Bergmann | c41286f | 2006-10-09 00:08:01 +0200 | [diff] [blame] | 865 | u32 usbnet_get_link (struct net_device *net) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 866 | { |
| 867 | struct usbnet *dev = netdev_priv(net); |
| 868 | |
David Brownell | f29fc25 | 2005-08-31 09:52:31 -0700 | [diff] [blame] | 869 | /* If a check_connect is defined, return its result */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 870 | if (dev->driver_info->check_connect) |
| 871 | return dev->driver_info->check_connect (dev) == 0; |
| 872 | |
Arnd Bergmann | c41286f | 2006-10-09 00:08:01 +0200 | [diff] [blame] | 873 | /* if the device has mii operations, use those */ |
| 874 | if (dev->mii.mdio_read) |
| 875 | return mii_link_ok(&dev->mii); |
| 876 | |
Bjørn Mork | 05ffb3e | 2009-03-01 20:45:40 -0800 | [diff] [blame] | 877 | /* Otherwise, dtrt for drivers calling netif_carrier_{on,off} */ |
| 878 | return ethtool_op_get_link(net); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 879 | } |
Arnd Bergmann | c41286f | 2006-10-09 00:08:01 +0200 | [diff] [blame] | 880 | EXPORT_SYMBOL_GPL(usbnet_get_link); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 881 | |
David Brownell | 18ee91fa | 2006-11-02 12:29:12 -0800 | [diff] [blame] | 882 | int usbnet_nway_reset(struct net_device *net) |
| 883 | { |
| 884 | struct usbnet *dev = netdev_priv(net); |
| 885 | |
| 886 | if (!dev->mii.mdio_write) |
| 887 | return -EOPNOTSUPP; |
| 888 | |
| 889 | return mii_nway_restart(&dev->mii); |
| 890 | } |
| 891 | EXPORT_SYMBOL_GPL(usbnet_nway_reset); |
| 892 | |
David Brownell | 18ee91fa | 2006-11-02 12:29:12 -0800 | [diff] [blame] | 893 | void usbnet_get_drvinfo (struct net_device *net, struct ethtool_drvinfo *info) |
| 894 | { |
| 895 | struct usbnet *dev = netdev_priv(net); |
| 896 | |
David Brownell | 296c024 | 2007-04-17 16:10:10 -0700 | [diff] [blame] | 897 | strncpy (info->driver, dev->driver_name, sizeof info->driver); |
David Brownell | 18ee91fa | 2006-11-02 12:29:12 -0800 | [diff] [blame] | 898 | strncpy (info->version, DRIVER_VERSION, sizeof info->version); |
| 899 | strncpy (info->fw_version, dev->driver_info->description, |
| 900 | sizeof info->fw_version); |
| 901 | usb_make_path (dev->udev, info->bus_info, sizeof info->bus_info); |
| 902 | } |
| 903 | EXPORT_SYMBOL_GPL(usbnet_get_drvinfo); |
| 904 | |
David Brownell | 2e55cc7 | 2005-08-31 09:53:10 -0700 | [diff] [blame] | 905 | u32 usbnet_get_msglevel (struct net_device *net) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 906 | { |
| 907 | struct usbnet *dev = netdev_priv(net); |
| 908 | |
| 909 | return dev->msg_enable; |
| 910 | } |
David Brownell | 2e55cc7 | 2005-08-31 09:53:10 -0700 | [diff] [blame] | 911 | EXPORT_SYMBOL_GPL(usbnet_get_msglevel); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 912 | |
David Brownell | 2e55cc7 | 2005-08-31 09:53:10 -0700 | [diff] [blame] | 913 | void usbnet_set_msglevel (struct net_device *net, u32 level) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 914 | { |
| 915 | struct usbnet *dev = netdev_priv(net); |
| 916 | |
| 917 | dev->msg_enable = level; |
| 918 | } |
David Brownell | 2e55cc7 | 2005-08-31 09:53:10 -0700 | [diff] [blame] | 919 | EXPORT_SYMBOL_GPL(usbnet_set_msglevel); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 920 | |
David Brownell | 2e55cc7 | 2005-08-31 09:53:10 -0700 | [diff] [blame] | 921 | /* drivers may override default ethtool_ops in their bind() routine */ |
Stephen Hemminger | 0fc0b73 | 2009-09-02 01:03:33 -0700 | [diff] [blame] | 922 | static const struct ethtool_ops usbnet_ethtool_ops = { |
Arnd Bergmann | c41286f | 2006-10-09 00:08:01 +0200 | [diff] [blame] | 923 | .get_settings = usbnet_get_settings, |
| 924 | .set_settings = usbnet_set_settings, |
David Brownell | 2e55cc7 | 2005-08-31 09:53:10 -0700 | [diff] [blame] | 925 | .get_link = usbnet_get_link, |
Arnd Bergmann | c41286f | 2006-10-09 00:08:01 +0200 | [diff] [blame] | 926 | .nway_reset = usbnet_nway_reset, |
David Brownell | 18ee91fa | 2006-11-02 12:29:12 -0800 | [diff] [blame] | 927 | .get_drvinfo = usbnet_get_drvinfo, |
David Brownell | 2e55cc7 | 2005-08-31 09:53:10 -0700 | [diff] [blame] | 928 | .get_msglevel = usbnet_get_msglevel, |
| 929 | .set_msglevel = usbnet_set_msglevel, |
| 930 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 931 | |
| 932 | /*-------------------------------------------------------------------------*/ |
| 933 | |
| 934 | /* work that cannot be done in interrupt context uses keventd. |
| 935 | * |
| 936 | * NOTE: with 2.5 we could do more of this using completion callbacks, |
| 937 | * especially now that control transfers can be queued. |
| 938 | */ |
| 939 | static void |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 940 | kevent (struct work_struct *work) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 941 | { |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 942 | struct usbnet *dev = |
| 943 | container_of(work, struct usbnet, kevent); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 944 | int status; |
| 945 | |
| 946 | /* usb_clear_halt() needs a thread context */ |
| 947 | if (test_bit (EVENT_TX_HALT, &dev->flags)) { |
| 948 | unlink_urbs (dev, &dev->txq); |
Oliver Neukum | 69ee472 | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 949 | status = usb_autopm_get_interface(dev->intf); |
| 950 | if (status < 0) |
| 951 | goto fail_pipe; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 952 | status = usb_clear_halt (dev->udev, dev->out); |
Oliver Neukum | 69ee472 | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 953 | usb_autopm_put_interface(dev->intf); |
Joe Perches | 8e95a20 | 2009-12-03 07:58:21 +0000 | [diff] [blame] | 954 | if (status < 0 && |
| 955 | status != -EPIPE && |
| 956 | status != -ESHUTDOWN) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 957 | if (netif_msg_tx_err (dev)) |
Oliver Neukum | 69ee472 | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 958 | fail_pipe: |
Joe Perches | 60b8675 | 2010-02-17 10:30:23 +0000 | [diff] [blame] | 959 | netdev_err(dev->net, "can't clear tx halt, status %d\n", |
| 960 | status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 961 | } else { |
| 962 | clear_bit (EVENT_TX_HALT, &dev->flags); |
David Brownell | f29fc25 | 2005-08-31 09:52:31 -0700 | [diff] [blame] | 963 | if (status != -ESHUTDOWN) |
| 964 | netif_wake_queue (dev->net); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 965 | } |
| 966 | } |
| 967 | if (test_bit (EVENT_RX_HALT, &dev->flags)) { |
| 968 | unlink_urbs (dev, &dev->rxq); |
Oliver Neukum | 69ee472 | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 969 | status = usb_autopm_get_interface(dev->intf); |
| 970 | if (status < 0) |
| 971 | goto fail_halt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 972 | status = usb_clear_halt (dev->udev, dev->in); |
Oliver Neukum | 69ee472 | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 973 | usb_autopm_put_interface(dev->intf); |
Joe Perches | 8e95a20 | 2009-12-03 07:58:21 +0000 | [diff] [blame] | 974 | if (status < 0 && |
| 975 | status != -EPIPE && |
| 976 | status != -ESHUTDOWN) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 977 | if (netif_msg_rx_err (dev)) |
Oliver Neukum | 69ee472 | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 978 | fail_halt: |
Joe Perches | 60b8675 | 2010-02-17 10:30:23 +0000 | [diff] [blame] | 979 | netdev_err(dev->net, "can't clear rx halt, status %d\n", |
| 980 | status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 981 | } else { |
| 982 | clear_bit (EVENT_RX_HALT, &dev->flags); |
Hemant Kumar | 1e8ddb5 | 2012-07-02 13:39:22 -0700 | [diff] [blame] | 983 | queue_work(usbnet_wq, &dev->bh_w); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 984 | } |
| 985 | } |
| 986 | |
| 987 | /* tasklet could resubmit itself forever if memory is tight */ |
| 988 | if (test_bit (EVENT_RX_MEMORY, &dev->flags)) { |
| 989 | struct urb *urb = NULL; |
David S. Miller | dacb397 | 2010-08-10 02:50:55 -0700 | [diff] [blame] | 990 | int resched = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 991 | |
| 992 | if (netif_running (dev->net)) |
| 993 | urb = usb_alloc_urb (0, GFP_KERNEL); |
| 994 | else |
| 995 | clear_bit (EVENT_RX_MEMORY, &dev->flags); |
| 996 | if (urb != NULL) { |
| 997 | clear_bit (EVENT_RX_MEMORY, &dev->flags); |
Oliver Neukum | 69ee472 | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 998 | status = usb_autopm_get_interface(dev->intf); |
Jesper Juhl | ab60707 | 2011-02-10 10:58:45 +0000 | [diff] [blame] | 999 | if (status < 0) { |
| 1000 | usb_free_urb(urb); |
Oliver Neukum | 69ee472 | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 1001 | goto fail_lowmem; |
Jesper Juhl | ab60707 | 2011-02-10 10:58:45 +0000 | [diff] [blame] | 1002 | } |
David S. Miller | dacb397 | 2010-08-10 02:50:55 -0700 | [diff] [blame] | 1003 | if (rx_submit (dev, urb, GFP_KERNEL) == -ENOLINK) |
| 1004 | resched = 0; |
Oliver Neukum | 69ee472 | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 1005 | usb_autopm_put_interface(dev->intf); |
| 1006 | fail_lowmem: |
David S. Miller | dacb397 | 2010-08-10 02:50:55 -0700 | [diff] [blame] | 1007 | if (resched) |
Hemant Kumar | 1e8ddb5 | 2012-07-02 13:39:22 -0700 | [diff] [blame] | 1008 | queue_work(usbnet_wq, &dev->bh_w); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1009 | } |
| 1010 | } |
| 1011 | |
David Hollis | 7ea13c9 | 2005-04-22 15:07:02 -0700 | [diff] [blame] | 1012 | if (test_bit (EVENT_LINK_RESET, &dev->flags)) { |
David Brownell | cb1cebb | 2007-02-15 18:52:30 -0800 | [diff] [blame] | 1013 | struct driver_info *info = dev->driver_info; |
David Hollis | 7ea13c9 | 2005-04-22 15:07:02 -0700 | [diff] [blame] | 1014 | int retval = 0; |
| 1015 | |
| 1016 | clear_bit (EVENT_LINK_RESET, &dev->flags); |
Oliver Neukum | 69ee472 | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 1017 | status = usb_autopm_get_interface(dev->intf); |
| 1018 | if (status < 0) |
| 1019 | goto skip_reset; |
David Hollis | 7ea13c9 | 2005-04-22 15:07:02 -0700 | [diff] [blame] | 1020 | if(info->link_reset && (retval = info->link_reset(dev)) < 0) { |
Oliver Neukum | 69ee472 | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 1021 | usb_autopm_put_interface(dev->intf); |
| 1022 | skip_reset: |
Joe Perches | 60b8675 | 2010-02-17 10:30:23 +0000 | [diff] [blame] | 1023 | netdev_info(dev->net, "link reset failed (%d) usbnet usb-%s-%s, %s\n", |
| 1024 | retval, |
| 1025 | dev->udev->bus->bus_name, |
| 1026 | dev->udev->devpath, |
| 1027 | info->description); |
Oliver Neukum | 69ee472 | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 1028 | } else { |
| 1029 | usb_autopm_put_interface(dev->intf); |
David Hollis | 7ea13c9 | 2005-04-22 15:07:02 -0700 | [diff] [blame] | 1030 | } |
| 1031 | } |
| 1032 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1033 | if (dev->flags) |
Joe Perches | 60b8675 | 2010-02-17 10:30:23 +0000 | [diff] [blame] | 1034 | netdev_dbg(dev->net, "kevent done, flags = 0x%lx\n", dev->flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1035 | } |
| 1036 | |
| 1037 | /*-------------------------------------------------------------------------*/ |
| 1038 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 1039 | static void tx_complete (struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1040 | { |
| 1041 | struct sk_buff *skb = (struct sk_buff *) urb->context; |
| 1042 | struct skb_data *entry = (struct skb_data *) skb->cb; |
| 1043 | struct usbnet *dev = entry->dev; |
| 1044 | |
| 1045 | if (urb->status == 0) { |
Alexey Orishko | 073285f | 2010-11-29 23:23:27 +0000 | [diff] [blame] | 1046 | if (!(dev->driver_info->flags & FLAG_MULTI_PACKET)) |
| 1047 | dev->net->stats.tx_packets++; |
Herbert Xu | 7963837 | 2009-06-29 16:53:28 +0000 | [diff] [blame] | 1048 | dev->net->stats.tx_bytes += entry->length; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1049 | } else { |
Herbert Xu | 7963837 | 2009-06-29 16:53:28 +0000 | [diff] [blame] | 1050 | dev->net->stats.tx_errors++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1051 | |
| 1052 | switch (urb->status) { |
| 1053 | case -EPIPE: |
David Brownell | 2e55cc7 | 2005-08-31 09:53:10 -0700 | [diff] [blame] | 1054 | usbnet_defer_kevent (dev, EVENT_TX_HALT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1055 | break; |
| 1056 | |
| 1057 | /* software-driven interface shutdown */ |
| 1058 | case -ECONNRESET: // async unlink |
| 1059 | case -ESHUTDOWN: // hardware gone |
| 1060 | break; |
| 1061 | |
| 1062 | // like rx, tx gets controller i/o faults during khubd delays |
| 1063 | // and so it uses the same throttling mechanism. |
Pete Zaitcev | 38e2bfc | 2006-09-18 22:49:02 -0700 | [diff] [blame] | 1064 | case -EPROTO: |
| 1065 | case -ETIME: |
| 1066 | case -EILSEQ: |
Oliver Neukum | 69ee472 | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 1067 | usb_mark_last_busy(dev->udev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1068 | if (!timer_pending (&dev->delay)) { |
| 1069 | mod_timer (&dev->delay, |
| 1070 | jiffies + THROTTLE_JIFFIES); |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 1071 | netif_dbg(dev, link, dev->net, |
| 1072 | "tx throttle %d\n", urb->status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1073 | } |
| 1074 | netif_stop_queue (dev->net); |
| 1075 | break; |
| 1076 | default: |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 1077 | netif_dbg(dev, tx_err, dev->net, |
| 1078 | "tx err %d\n", entry->urb->status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1079 | break; |
| 1080 | } |
| 1081 | } |
| 1082 | |
Oliver Neukum | 69ee472 | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 1083 | usb_autopm_put_interface_async(dev->intf); |
Ming Lei | 5b6e9bc | 2012-04-26 11:33:46 +0800 | [diff] [blame] | 1084 | (void) defer_bh(dev, skb, &dev->txq, tx_done); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1085 | } |
| 1086 | |
| 1087 | /*-------------------------------------------------------------------------*/ |
| 1088 | |
Stephen Hemminger | 777baa4 | 2009-03-20 19:35:54 +0000 | [diff] [blame] | 1089 | void usbnet_tx_timeout (struct net_device *net) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1090 | { |
| 1091 | struct usbnet *dev = netdev_priv(net); |
| 1092 | |
| 1093 | unlink_urbs (dev, &dev->txq); |
Hemant Kumar | 1e8ddb5 | 2012-07-02 13:39:22 -0700 | [diff] [blame] | 1094 | queue_work(usbnet_wq, &dev->bh_w); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1095 | |
| 1096 | // FIXME: device recovery -- reset? |
| 1097 | } |
Stephen Hemminger | 777baa4 | 2009-03-20 19:35:54 +0000 | [diff] [blame] | 1098 | EXPORT_SYMBOL_GPL(usbnet_tx_timeout); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1099 | |
| 1100 | /*-------------------------------------------------------------------------*/ |
| 1101 | |
Stephen Hemminger | 25a79c4 | 2009-08-31 19:50:45 +0000 | [diff] [blame] | 1102 | netdev_tx_t usbnet_start_xmit (struct sk_buff *skb, |
| 1103 | struct net_device *net) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1104 | { |
| 1105 | struct usbnet *dev = netdev_priv(net); |
| 1106 | int length; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1107 | struct urb *urb = NULL; |
| 1108 | struct skb_data *entry; |
| 1109 | struct driver_info *info = dev->driver_info; |
| 1110 | unsigned long flags; |
Stephen Hemminger | 25a79c4 | 2009-08-31 19:50:45 +0000 | [diff] [blame] | 1111 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1112 | |
Konstantin Khlebnikov | 23ba079 | 2011-11-07 05:54:58 +0000 | [diff] [blame] | 1113 | if (skb) |
| 1114 | skb_tx_timestamp(skb); |
Michael Riesch | f9b491e | 2011-09-29 04:06:26 +0000 | [diff] [blame] | 1115 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1116 | // some devices want funky USB-level framing, for |
| 1117 | // win32 driver (usually) and/or hardware quirks |
| 1118 | if (info->tx_fixup) { |
| 1119 | skb = info->tx_fixup (dev, skb, GFP_ATOMIC); |
| 1120 | if (!skb) { |
Alexey Orishko | 073285f | 2010-11-29 23:23:27 +0000 | [diff] [blame] | 1121 | if (netif_msg_tx_err(dev)) { |
| 1122 | netif_dbg(dev, tx_err, dev->net, "can't tx_fixup skb\n"); |
| 1123 | goto drop; |
| 1124 | } else { |
| 1125 | /* cdc_ncm collected packet; waits for more */ |
| 1126 | goto not_drop; |
| 1127 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1128 | } |
| 1129 | } |
| 1130 | length = skb->len; |
| 1131 | |
| 1132 | if (!(urb = usb_alloc_urb (0, GFP_ATOMIC))) { |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 1133 | netif_dbg(dev, tx_err, dev->net, "no urb\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1134 | goto drop; |
| 1135 | } |
| 1136 | |
| 1137 | entry = (struct skb_data *) skb->cb; |
| 1138 | entry->urb = urb; |
| 1139 | entry->dev = dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1140 | entry->length = length; |
| 1141 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1142 | usb_fill_bulk_urb (urb, dev->udev, dev->out, |
| 1143 | skb->data, skb->len, tx_complete, skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1144 | |
| 1145 | /* don't assume the hardware handles USB_ZERO_PACKET |
| 1146 | * NOTE: strictly conforming cdc-ether devices should expect |
| 1147 | * the ZLP here, but ignore the one-byte packet. |
Alexey Orishko | 073285f | 2010-11-29 23:23:27 +0000 | [diff] [blame] | 1148 | * NOTE2: CDC NCM specification is different from CDC ECM when |
| 1149 | * handling ZLP/short packets, so cdc_ncm driver will make short |
| 1150 | * packet itself if needed. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1151 | */ |
Elina Pasheva | b4d562e | 2010-04-06 14:23:07 +0000 | [diff] [blame] | 1152 | if (length % dev->maxpacket == 0) { |
| 1153 | if (!(info->flags & FLAG_SEND_ZLP)) { |
Alexey Orishko | 073285f | 2010-11-29 23:23:27 +0000 | [diff] [blame] | 1154 | if (!(info->flags & FLAG_MULTI_PACKET)) { |
| 1155 | urb->transfer_buffer_length++; |
| 1156 | if (skb_tailroom(skb)) { |
| 1157 | skb->data[skb->len] = 0; |
| 1158 | __skb_put(skb, 1); |
| 1159 | } |
Elina Pasheva | b4d562e | 2010-04-06 14:23:07 +0000 | [diff] [blame] | 1160 | } |
| 1161 | } else |
| 1162 | urb->transfer_flags |= URB_ZERO_PACKET; |
Peter Korsgaard | 3e323f3 | 2007-06-27 08:48:15 +0200 | [diff] [blame] | 1163 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1164 | |
Oliver Neukum | 69ee472 | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 1165 | spin_lock_irqsave(&dev->txq.lock, flags); |
| 1166 | retval = usb_autopm_get_interface_async(dev->intf); |
| 1167 | if (retval < 0) { |
| 1168 | spin_unlock_irqrestore(&dev->txq.lock, flags); |
| 1169 | goto drop; |
| 1170 | } |
| 1171 | |
| 1172 | #ifdef CONFIG_PM |
| 1173 | /* if this triggers the device is still a sleep */ |
| 1174 | if (test_bit(EVENT_DEV_ASLEEP, &dev->flags)) { |
| 1175 | /* transmission will be done in resume */ |
| 1176 | usb_anchor_urb(urb, &dev->deferred); |
| 1177 | /* no use to process more packets */ |
| 1178 | netif_stop_queue(net); |
Hemant Kumar | fa476f7 | 2012-10-09 16:22:18 -0700 | [diff] [blame] | 1179 | usb_put_urb(urb); |
Oliver Neukum | 69ee472 | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 1180 | spin_unlock_irqrestore(&dev->txq.lock, flags); |
Joe Perches | 60b8675 | 2010-02-17 10:30:23 +0000 | [diff] [blame] | 1181 | netdev_dbg(dev->net, "Delaying transmission for resumption\n"); |
Oliver Neukum | 69ee472 | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 1182 | goto deferred; |
| 1183 | } |
| 1184 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1185 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1186 | switch ((retval = usb_submit_urb (urb, GFP_ATOMIC))) { |
| 1187 | case -EPIPE: |
| 1188 | netif_stop_queue (net); |
David Brownell | 2e55cc7 | 2005-08-31 09:53:10 -0700 | [diff] [blame] | 1189 | usbnet_defer_kevent (dev, EVENT_TX_HALT); |
Oliver Neukum | 69ee472 | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 1190 | usb_autopm_put_interface_async(dev->intf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1191 | break; |
| 1192 | default: |
Oliver Neukum | 69ee472 | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 1193 | usb_autopm_put_interface_async(dev->intf); |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 1194 | netif_dbg(dev, tx_err, dev->net, |
| 1195 | "tx: submit urb err %d\n", retval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1196 | break; |
| 1197 | case 0: |
| 1198 | net->trans_start = jiffies; |
Ming Lei | 5b6e9bc | 2012-04-26 11:33:46 +0800 | [diff] [blame] | 1199 | __usbnet_queue_skb(&dev->txq, skb, tx_start); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1200 | if (dev->txq.qlen >= TX_QLEN (dev)) |
| 1201 | netif_stop_queue (net); |
| 1202 | } |
| 1203 | spin_unlock_irqrestore (&dev->txq.lock, flags); |
| 1204 | |
| 1205 | if (retval) { |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 1206 | netif_dbg(dev, tx_err, dev->net, "drop, code %d\n", retval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1207 | drop: |
Herbert Xu | 7963837 | 2009-06-29 16:53:28 +0000 | [diff] [blame] | 1208 | dev->net->stats.tx_dropped++; |
Alexey Orishko | 073285f | 2010-11-29 23:23:27 +0000 | [diff] [blame] | 1209 | not_drop: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1210 | if (skb) |
| 1211 | dev_kfree_skb_any (skb); |
| 1212 | usb_free_urb (urb); |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 1213 | } else |
| 1214 | netif_dbg(dev, tx_queued, dev->net, |
| 1215 | "> tx, len %d, type 0x%x\n", length, skb->protocol); |
Oliver Neukum | 69ee472 | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 1216 | #ifdef CONFIG_PM |
| 1217 | deferred: |
| 1218 | #endif |
Stephen Hemminger | 25a79c4 | 2009-08-31 19:50:45 +0000 | [diff] [blame] | 1219 | return NETDEV_TX_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1220 | } |
Stephen Hemminger | 777baa4 | 2009-03-20 19:35:54 +0000 | [diff] [blame] | 1221 | EXPORT_SYMBOL_GPL(usbnet_start_xmit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1222 | |
| 1223 | /*-------------------------------------------------------------------------*/ |
| 1224 | |
| 1225 | // tasklet (work deferred from completions, in_irq) or timer |
| 1226 | |
| 1227 | static void usbnet_bh (unsigned long param) |
| 1228 | { |
| 1229 | struct usbnet *dev = (struct usbnet *) param; |
| 1230 | struct sk_buff *skb; |
| 1231 | struct skb_data *entry; |
| 1232 | |
| 1233 | while ((skb = skb_dequeue (&dev->done))) { |
| 1234 | entry = (struct skb_data *) skb->cb; |
| 1235 | switch (entry->state) { |
David Brownell | 18ab458 | 2007-05-25 12:31:32 -0700 | [diff] [blame] | 1236 | case rx_done: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1237 | entry->state = rx_cleanup; |
| 1238 | rx_process (dev, skb); |
| 1239 | continue; |
David Brownell | 18ab458 | 2007-05-25 12:31:32 -0700 | [diff] [blame] | 1240 | case tx_done: |
| 1241 | case rx_cleanup: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1242 | usb_free_urb (entry->urb); |
| 1243 | dev_kfree_skb (skb); |
| 1244 | continue; |
David Brownell | 18ab458 | 2007-05-25 12:31:32 -0700 | [diff] [blame] | 1245 | default: |
Joe Perches | 60b8675 | 2010-02-17 10:30:23 +0000 | [diff] [blame] | 1246 | netdev_dbg(dev->net, "bogus skb state %d\n", entry->state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1247 | } |
| 1248 | } |
| 1249 | |
| 1250 | // waiting for all pending urbs to complete? |
| 1251 | if (dev->wait) { |
| 1252 | if ((dev->txq.qlen + dev->rxq.qlen + dev->done.qlen) == 0) { |
Hemant Kumar | ef59a42 | 2012-08-15 16:57:00 -0700 | [diff] [blame] | 1253 | wake_up(&unlink_wakeup); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1254 | } |
| 1255 | |
| 1256 | // or are we maybe short a few urbs? |
Joe Perches | 8e95a20 | 2009-12-03 07:58:21 +0000 | [diff] [blame] | 1257 | } else if (netif_running (dev->net) && |
| 1258 | netif_device_present (dev->net) && |
| 1259 | !timer_pending (&dev->delay) && |
| 1260 | !test_bit (EVENT_RX_HALT, &dev->flags)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1261 | int temp = dev->rxq.qlen; |
| 1262 | int qlen = RX_QLEN (dev); |
| 1263 | |
| 1264 | if (temp < qlen) { |
| 1265 | struct urb *urb; |
| 1266 | int i; |
| 1267 | |
| 1268 | // don't refill the queue all at once |
| 1269 | for (i = 0; i < 10 && dev->rxq.qlen < qlen; i++) { |
| 1270 | urb = usb_alloc_urb (0, GFP_ATOMIC); |
David S. Miller | dacb397 | 2010-08-10 02:50:55 -0700 | [diff] [blame] | 1271 | if (urb != NULL) { |
| 1272 | if (rx_submit (dev, urb, GFP_ATOMIC) == |
| 1273 | -ENOLINK) |
| 1274 | return; |
| 1275 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1276 | } |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 1277 | if (temp != dev->rxq.qlen) |
| 1278 | netif_dbg(dev, link, dev->net, |
| 1279 | "rxqlen %d --> %d\n", |
| 1280 | temp, dev->rxq.qlen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1281 | if (dev->rxq.qlen < qlen) |
Hemant Kumar | 1e8ddb5 | 2012-07-02 13:39:22 -0700 | [diff] [blame] | 1282 | queue_work(usbnet_wq, &dev->bh_w); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1283 | } |
| 1284 | if (dev->txq.qlen < TX_QLEN (dev)) |
| 1285 | netif_wake_queue (dev->net); |
| 1286 | } |
| 1287 | } |
| 1288 | |
Hemant Kumar | 1e8ddb5 | 2012-07-02 13:39:22 -0700 | [diff] [blame] | 1289 | static void usbnet_bh_w(struct work_struct *work) |
| 1290 | { |
| 1291 | struct usbnet *dev = |
| 1292 | container_of(work, struct usbnet, bh_w); |
| 1293 | unsigned long param = (unsigned long)dev; |
| 1294 | |
| 1295 | usbnet_bh(param); |
| 1296 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1297 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1298 | /*------------------------------------------------------------------------- |
| 1299 | * |
| 1300 | * USB Device Driver support |
| 1301 | * |
| 1302 | *-------------------------------------------------------------------------*/ |
David Brownell | cb1cebb | 2007-02-15 18:52:30 -0800 | [diff] [blame] | 1303 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1304 | // precondition: never called in_interrupt |
| 1305 | |
David Brownell | 38bde1d | 2005-08-31 09:52:45 -0700 | [diff] [blame] | 1306 | void usbnet_disconnect (struct usb_interface *intf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1307 | { |
| 1308 | struct usbnet *dev; |
| 1309 | struct usb_device *xdev; |
| 1310 | struct net_device *net; |
| 1311 | |
| 1312 | dev = usb_get_intfdata(intf); |
| 1313 | usb_set_intfdata(intf, NULL); |
| 1314 | if (!dev) |
| 1315 | return; |
| 1316 | |
| 1317 | xdev = interface_to_usbdev (intf); |
| 1318 | |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 1319 | netif_info(dev, probe, dev->net, "unregister '%s' usb-%s-%s, %s\n", |
| 1320 | intf->dev.driver->name, |
| 1321 | xdev->bus->bus_name, xdev->devpath, |
| 1322 | dev->driver_info->description); |
David Brownell | cb1cebb | 2007-02-15 18:52:30 -0800 | [diff] [blame] | 1323 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1324 | net = dev->net; |
| 1325 | unregister_netdev (net); |
| 1326 | |
Tejun Heo | 23f333a | 2010-12-12 16:45:14 +0100 | [diff] [blame] | 1327 | cancel_work_sync(&dev->kevent); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1328 | |
Hemant Kumar | fa476f7 | 2012-10-09 16:22:18 -0700 | [diff] [blame] | 1329 | usb_scuttle_anchored_urbs(&dev->deferred); |
| 1330 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1331 | if (dev->driver_info->unbind) |
| 1332 | dev->driver_info->unbind (dev, intf); |
| 1333 | |
Paul Stewart | 68972ef | 2011-04-28 05:43:37 +0000 | [diff] [blame] | 1334 | usb_kill_urb(dev->interrupt); |
| 1335 | usb_free_urb(dev->interrupt); |
| 1336 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1337 | free_netdev(net); |
| 1338 | usb_put_dev (xdev); |
| 1339 | } |
David Brownell | 38bde1d | 2005-08-31 09:52:45 -0700 | [diff] [blame] | 1340 | EXPORT_SYMBOL_GPL(usbnet_disconnect); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1341 | |
Stephen Hemminger | 777baa4 | 2009-03-20 19:35:54 +0000 | [diff] [blame] | 1342 | static const struct net_device_ops usbnet_netdev_ops = { |
| 1343 | .ndo_open = usbnet_open, |
| 1344 | .ndo_stop = usbnet_stop, |
| 1345 | .ndo_start_xmit = usbnet_start_xmit, |
| 1346 | .ndo_tx_timeout = usbnet_tx_timeout, |
| 1347 | .ndo_change_mtu = usbnet_change_mtu, |
| 1348 | .ndo_set_mac_address = eth_mac_addr, |
| 1349 | .ndo_validate_addr = eth_validate_addr, |
| 1350 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1351 | |
| 1352 | /*-------------------------------------------------------------------------*/ |
| 1353 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1354 | // precondition: never called in_interrupt |
| 1355 | |
Marcel Holtmann | 225794f | 2009-10-02 05:15:26 +0000 | [diff] [blame] | 1356 | static struct device_type wlan_type = { |
| 1357 | .name = "wlan", |
| 1358 | }; |
| 1359 | |
| 1360 | static struct device_type wwan_type = { |
| 1361 | .name = "wwan", |
| 1362 | }; |
| 1363 | |
David Brownell | 38bde1d | 2005-08-31 09:52:45 -0700 | [diff] [blame] | 1364 | int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1365 | usbnet_probe (struct usb_interface *udev, const struct usb_device_id *prod) |
| 1366 | { |
| 1367 | struct usbnet *dev; |
David Brownell | cb1cebb | 2007-02-15 18:52:30 -0800 | [diff] [blame] | 1368 | struct net_device *net; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1369 | struct usb_host_interface *interface; |
| 1370 | struct driver_info *info; |
| 1371 | struct usb_device *xdev; |
| 1372 | int status; |
David Brownell | 296c024 | 2007-04-17 16:10:10 -0700 | [diff] [blame] | 1373 | const char *name; |
Ming Lei | b0786b4 | 2010-11-01 07:11:54 -0700 | [diff] [blame] | 1374 | struct usb_driver *driver = to_usb_driver(udev->dev.driver); |
| 1375 | |
| 1376 | /* usbnet already took usb runtime pm, so have to enable the feature |
| 1377 | * for usb interface, otherwise usb_autopm_get_interface may return |
| 1378 | * failure if USB_SUSPEND(RUNTIME_PM) is enabled. |
| 1379 | */ |
| 1380 | if (!driver->supports_autosuspend) { |
| 1381 | driver->supports_autosuspend = 1; |
| 1382 | pm_runtime_enable(&udev->dev); |
| 1383 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1384 | |
David Brownell | 296c024 | 2007-04-17 16:10:10 -0700 | [diff] [blame] | 1385 | name = udev->dev.driver->name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1386 | info = (struct driver_info *) prod->driver_info; |
| 1387 | if (!info) { |
David Brownell | 296c024 | 2007-04-17 16:10:10 -0700 | [diff] [blame] | 1388 | dev_dbg (&udev->dev, "blacklisted by %s\n", name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1389 | return -ENODEV; |
| 1390 | } |
| 1391 | xdev = interface_to_usbdev (udev); |
| 1392 | interface = udev->cur_altsetting; |
| 1393 | |
| 1394 | usb_get_dev (xdev); |
| 1395 | |
| 1396 | status = -ENOMEM; |
| 1397 | |
| 1398 | // set up our own records |
| 1399 | net = alloc_etherdev(sizeof(*dev)); |
Joe Perches | 41de8d4 | 2012-01-29 13:47:52 +0000 | [diff] [blame] | 1400 | if (!net) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1401 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1402 | |
Ben Hutchings | 0dacca7 | 2010-07-02 21:49:02 -0700 | [diff] [blame] | 1403 | /* netdev_printk() needs this so do it as early as possible */ |
| 1404 | SET_NETDEV_DEV(net, &udev->dev); |
| 1405 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1406 | dev = netdev_priv(net); |
| 1407 | dev->udev = xdev; |
Oliver Neukum | a11a654 | 2007-08-03 13:52:19 +0200 | [diff] [blame] | 1408 | dev->intf = udev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1409 | dev->driver_info = info; |
David Brownell | 296c024 | 2007-04-17 16:10:10 -0700 | [diff] [blame] | 1410 | dev->driver_name = name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1411 | dev->msg_enable = netif_msg_init (msg_level, NETIF_MSG_DRV |
| 1412 | | NETIF_MSG_PROBE | NETIF_MSG_LINK); |
| 1413 | skb_queue_head_init (&dev->rxq); |
| 1414 | skb_queue_head_init (&dev->txq); |
| 1415 | skb_queue_head_init (&dev->done); |
Jussi Kivilinna | 7834ddb | 2009-08-11 22:57:16 +0300 | [diff] [blame] | 1416 | skb_queue_head_init(&dev->rxq_pause); |
Hemant Kumar | 1e8ddb5 | 2012-07-02 13:39:22 -0700 | [diff] [blame] | 1417 | INIT_WORK(&dev->bh_w, usbnet_bh_w); |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 1418 | INIT_WORK (&dev->kevent, kevent); |
Oliver Neukum | 69ee472 | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 1419 | init_usb_anchor(&dev->deferred); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1420 | dev->delay.function = usbnet_bh; |
| 1421 | dev->delay.data = (unsigned long) dev; |
| 1422 | init_timer (&dev->delay); |
Arnd Bergmann | a9fc633 | 2006-10-09 00:08:02 +0200 | [diff] [blame] | 1423 | mutex_init (&dev->phy_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1424 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1425 | dev->net = net; |
| 1426 | strcpy (net->name, "usb%d"); |
| 1427 | memcpy (net->dev_addr, node_id, sizeof node_id); |
| 1428 | |
David Brownell | 2e55cc7 | 2005-08-31 09:53:10 -0700 | [diff] [blame] | 1429 | /* rx and tx sides can use different message sizes; |
| 1430 | * bind() should set rx_urb_size in that case. |
| 1431 | */ |
| 1432 | dev->hard_mtu = net->mtu + net->hard_header_len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1433 | #if 0 |
| 1434 | // dma_supported() is deeply broken on almost all architectures |
| 1435 | // possible with some EHCI controllers |
Yang Hongyang | 6a35528 | 2009-04-06 19:01:13 -0700 | [diff] [blame] | 1436 | if (dma_supported (&udev->dev, DMA_BIT_MASK(64))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1437 | net->features |= NETIF_F_HIGHDMA; |
| 1438 | #endif |
| 1439 | |
Stephen Hemminger | 777baa4 | 2009-03-20 19:35:54 +0000 | [diff] [blame] | 1440 | net->netdev_ops = &usbnet_netdev_ops; |
Stephen Hemminger | 777baa4 | 2009-03-20 19:35:54 +0000 | [diff] [blame] | 1441 | net->watchdog_timeo = TX_TIMEOUT_JIFFIES; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1442 | net->ethtool_ops = &usbnet_ethtool_ops; |
| 1443 | |
| 1444 | // allow device-specific bind/init procedures |
| 1445 | // NOTE net->name still not usable ... |
| 1446 | if (info->bind) { |
| 1447 | status = info->bind (dev, udev); |
David Brownell | cb1cebb | 2007-02-15 18:52:30 -0800 | [diff] [blame] | 1448 | if (status < 0) |
| 1449 | goto out1; |
| 1450 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1451 | // heuristic: "usb%d" for links we know are two-host, |
| 1452 | // else "eth%d" when there's reasonable doubt. userspace |
| 1453 | // can rename the link if it knows better. |
Joe Perches | 8e95a20 | 2009-12-03 07:58:21 +0000 | [diff] [blame] | 1454 | if ((dev->driver_info->flags & FLAG_ETHER) != 0 && |
Arnd Bergmann | c261344 | 2011-04-01 20:12:02 -0700 | [diff] [blame] | 1455 | ((dev->driver_info->flags & FLAG_POINTTOPOINT) == 0 || |
| 1456 | (net->dev_addr [0] & 0x02) == 0)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1457 | strcpy (net->name, "eth%d"); |
Jussi Kivilinna | 6e3bbcc | 2008-01-26 00:51:06 +0200 | [diff] [blame] | 1458 | /* WLAN devices should always be named "wlan%d" */ |
| 1459 | if ((dev->driver_info->flags & FLAG_WLAN) != 0) |
| 1460 | strcpy(net->name, "wlan%d"); |
Marcel Holtmann | e1e499e | 2009-10-02 05:15:25 +0000 | [diff] [blame] | 1461 | /* WWAN devices should always be named "wwan%d" */ |
| 1462 | if ((dev->driver_info->flags & FLAG_WWAN) != 0) |
| 1463 | strcpy(net->name, "wwan%d"); |
David Brownell | f29fc25 | 2005-08-31 09:52:31 -0700 | [diff] [blame] | 1464 | |
| 1465 | /* maybe the remote can't receive an Ethernet MTU */ |
| 1466 | if (net->mtu > (dev->hard_mtu - net->hard_header_len)) |
| 1467 | net->mtu = dev->hard_mtu - net->hard_header_len; |
David Brownell | 2e55cc7 | 2005-08-31 09:53:10 -0700 | [diff] [blame] | 1468 | } else if (!info->in || !info->out) |
| 1469 | status = usbnet_get_endpoints (dev, udev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1470 | else { |
| 1471 | dev->in = usb_rcvbulkpipe (xdev, info->in); |
| 1472 | dev->out = usb_sndbulkpipe (xdev, info->out); |
| 1473 | if (!(info->flags & FLAG_NO_SETINT)) |
| 1474 | status = usb_set_interface (xdev, |
| 1475 | interface->desc.bInterfaceNumber, |
| 1476 | interface->desc.bAlternateSetting); |
| 1477 | else |
| 1478 | status = 0; |
| 1479 | |
| 1480 | } |
Peter Korsgaard | 9514bfe | 2007-07-03 00:46:42 +0200 | [diff] [blame] | 1481 | if (status >= 0 && dev->status) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1482 | status = init_status (dev, udev); |
| 1483 | if (status < 0) |
David Brownell | cb1cebb | 2007-02-15 18:52:30 -0800 | [diff] [blame] | 1484 | goto out3; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1485 | |
David Brownell | 2e55cc7 | 2005-08-31 09:53:10 -0700 | [diff] [blame] | 1486 | if (!dev->rx_urb_size) |
| 1487 | dev->rx_urb_size = dev->hard_mtu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1488 | dev->maxpacket = usb_maxpacket (dev->udev, dev->out, 1); |
David Brownell | cb1cebb | 2007-02-15 18:52:30 -0800 | [diff] [blame] | 1489 | |
Marcel Holtmann | 225794f | 2009-10-02 05:15:26 +0000 | [diff] [blame] | 1490 | if ((dev->driver_info->flags & FLAG_WLAN) != 0) |
| 1491 | SET_NETDEV_DEVTYPE(net, &wlan_type); |
| 1492 | if ((dev->driver_info->flags & FLAG_WWAN) != 0) |
| 1493 | SET_NETDEV_DEVTYPE(net, &wwan_type); |
| 1494 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1495 | status = register_netdev (net); |
| 1496 | if (status) |
tom.leiming@gmail.com | a472384 | 2012-04-29 22:51:03 +0000 | [diff] [blame] | 1497 | goto out4; |
Joe Perches | a475f60 | 2010-02-17 10:30:24 +0000 | [diff] [blame] | 1498 | netif_info(dev, probe, dev->net, |
| 1499 | "register '%s' at usb-%s-%s, %s, %pM\n", |
| 1500 | udev->dev.driver->name, |
| 1501 | xdev->bus->bus_name, xdev->devpath, |
| 1502 | dev->driver_info->description, |
| 1503 | net->dev_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1504 | |
| 1505 | // ok, it's ready to go. |
| 1506 | usb_set_intfdata (udev, dev); |
| 1507 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1508 | netif_device_attach (net); |
| 1509 | |
Ben Hutchings | 37e8273 | 2009-11-04 15:29:52 +0000 | [diff] [blame] | 1510 | if (dev->driver_info->flags & FLAG_LINK_INTR) |
| 1511 | netif_carrier_off(net); |
| 1512 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1513 | return 0; |
| 1514 | |
tom.leiming@gmail.com | a472384 | 2012-04-29 22:51:03 +0000 | [diff] [blame] | 1515 | out4: |
| 1516 | usb_free_urb(dev->interrupt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1517 | out3: |
| 1518 | if (info->unbind) |
| 1519 | info->unbind (dev, udev); |
| 1520 | out1: |
| 1521 | free_netdev(net); |
| 1522 | out: |
| 1523 | usb_put_dev(xdev); |
| 1524 | return status; |
| 1525 | } |
David Brownell | 38bde1d | 2005-08-31 09:52:45 -0700 | [diff] [blame] | 1526 | EXPORT_SYMBOL_GPL(usbnet_probe); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1527 | |
| 1528 | /*-------------------------------------------------------------------------*/ |
| 1529 | |
Oliver Neukum | 3643312 | 2007-04-30 01:37:44 -0700 | [diff] [blame] | 1530 | /* |
| 1531 | * suspend the whole driver as soon as the first interface is suspended |
| 1532 | * resume only when the last interface is resumed |
David Brownell | 38bde1d | 2005-08-31 09:52:45 -0700 | [diff] [blame] | 1533 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1534 | |
David Brownell | 38bde1d | 2005-08-31 09:52:45 -0700 | [diff] [blame] | 1535 | int usbnet_suspend (struct usb_interface *intf, pm_message_t message) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1536 | { |
| 1537 | struct usbnet *dev = usb_get_intfdata(intf); |
David Brownell | cb1cebb | 2007-02-15 18:52:30 -0800 | [diff] [blame] | 1538 | |
Oliver Neukum | 3643312 | 2007-04-30 01:37:44 -0700 | [diff] [blame] | 1539 | if (!dev->suspend_count++) { |
Oliver Neukum | 69ee472 | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 1540 | spin_lock_irq(&dev->txq.lock); |
| 1541 | /* don't autosuspend while transmitting */ |
Alan Stern | 5b1b0b8 | 2011-08-19 23:49:48 +0200 | [diff] [blame] | 1542 | if (dev->txq.qlen && PMSG_IS_AUTO(message)) { |
Ming Lei | 2038ae2 | 2012-06-19 21:15:52 +0000 | [diff] [blame] | 1543 | dev->suspend_count--; |
Oliver Neukum | 69ee472 | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 1544 | spin_unlock_irq(&dev->txq.lock); |
| 1545 | return -EBUSY; |
| 1546 | } else { |
| 1547 | set_bit(EVENT_DEV_ASLEEP, &dev->flags); |
| 1548 | spin_unlock_irq(&dev->txq.lock); |
| 1549 | } |
Oliver Neukum | a11a654 | 2007-08-03 13:52:19 +0200 | [diff] [blame] | 1550 | /* |
| 1551 | * accelerate emptying of the rx and queues, to avoid |
Oliver Neukum | 3643312 | 2007-04-30 01:37:44 -0700 | [diff] [blame] | 1552 | * having everything error out. |
| 1553 | */ |
| 1554 | netif_device_detach (dev->net); |
Oliver Neukum | 69ee472 | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 1555 | usbnet_terminate_urbs(dev); |
| 1556 | usb_kill_urb(dev->interrupt); |
| 1557 | |
Oliver Neukum | a11a654 | 2007-08-03 13:52:19 +0200 | [diff] [blame] | 1558 | /* |
| 1559 | * reattach so runtime management can use and |
| 1560 | * wake the device |
| 1561 | */ |
| 1562 | netif_device_attach (dev->net); |
Oliver Neukum | 3643312 | 2007-04-30 01:37:44 -0700 | [diff] [blame] | 1563 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1564 | return 0; |
| 1565 | } |
David Brownell | 38bde1d | 2005-08-31 09:52:45 -0700 | [diff] [blame] | 1566 | EXPORT_SYMBOL_GPL(usbnet_suspend); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1567 | |
David Brownell | 38bde1d | 2005-08-31 09:52:45 -0700 | [diff] [blame] | 1568 | int usbnet_resume (struct usb_interface *intf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1569 | { |
| 1570 | struct usbnet *dev = usb_get_intfdata(intf); |
Oliver Neukum | 69ee472 | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 1571 | struct sk_buff *skb; |
| 1572 | struct urb *res; |
| 1573 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1574 | |
Oliver Neukum | 69ee472 | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 1575 | if (!--dev->suspend_count) { |
Paul Stewart | 68972ef | 2011-04-28 05:43:37 +0000 | [diff] [blame] | 1576 | /* resume interrupt URBs */ |
| 1577 | if (dev->interrupt && test_bit(EVENT_DEV_OPEN, &dev->flags)) |
| 1578 | usb_submit_urb(dev->interrupt, GFP_NOIO); |
| 1579 | |
Oliver Neukum | 69ee472 | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 1580 | spin_lock_irq(&dev->txq.lock); |
| 1581 | while ((res = usb_get_from_anchor(&dev->deferred))) { |
| 1582 | |
Oliver Neukum | 69ee472 | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 1583 | skb = (struct sk_buff *)res->context; |
| 1584 | retval = usb_submit_urb(res, GFP_ATOMIC); |
| 1585 | if (retval < 0) { |
| 1586 | dev_kfree_skb_any(skb); |
| 1587 | usb_free_urb(res); |
| 1588 | usb_autopm_put_interface_async(dev->intf); |
| 1589 | } else { |
| 1590 | dev->net->trans_start = jiffies; |
| 1591 | __skb_queue_tail(&dev->txq, skb); |
| 1592 | } |
| 1593 | } |
| 1594 | |
| 1595 | smp_mb(); |
| 1596 | clear_bit(EVENT_DEV_ASLEEP, &dev->flags); |
| 1597 | spin_unlock_irq(&dev->txq.lock); |
Ming Lei | 75bd0cb | 2011-04-28 22:37:09 +0000 | [diff] [blame] | 1598 | |
| 1599 | if (test_bit(EVENT_DEV_OPEN, &dev->flags)) { |
| 1600 | if (!(dev->txq.qlen >= TX_QLEN(dev))) |
Alexey Orishko | 1aa9bc5 | 2012-03-14 04:00:24 +0000 | [diff] [blame] | 1601 | netif_tx_wake_all_queues(dev->net); |
Hemant Kumar | 1e8ddb5 | 2012-07-02 13:39:22 -0700 | [diff] [blame] | 1602 | queue_work(usbnet_wq, &dev->bh_w); |
Ming Lei | 75bd0cb | 2011-04-28 22:37:09 +0000 | [diff] [blame] | 1603 | } |
Oliver Neukum | 69ee472 | 2009-12-03 15:31:18 -0800 | [diff] [blame] | 1604 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1605 | return 0; |
| 1606 | } |
David Brownell | 38bde1d | 2005-08-31 09:52:45 -0700 | [diff] [blame] | 1607 | EXPORT_SYMBOL_GPL(usbnet_resume); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1608 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1609 | |
| 1610 | /*-------------------------------------------------------------------------*/ |
| 1611 | |
David Brownell | f29fc25 | 2005-08-31 09:52:31 -0700 | [diff] [blame] | 1612 | static int __init usbnet_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1613 | { |
Thiago Farina | c582a95 | 2011-04-17 17:49:21 -0700 | [diff] [blame] | 1614 | /* Compiler should optimize this out. */ |
| 1615 | BUILD_BUG_ON( |
| 1616 | FIELD_SIZEOF(struct sk_buff, cb) < sizeof(struct skb_data)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1617 | |
| 1618 | random_ether_addr(node_id); |
Hemant Kumar | 1e8ddb5 | 2012-07-02 13:39:22 -0700 | [diff] [blame] | 1619 | |
| 1620 | usbnet_wq = create_singlethread_workqueue("usbnet"); |
| 1621 | if (!usbnet_wq) { |
| 1622 | pr_err("%s: Unable to create workqueue:usbnet\n", __func__); |
| 1623 | return -ENOMEM; |
| 1624 | } |
| 1625 | |
David Brownell | cb1cebb | 2007-02-15 18:52:30 -0800 | [diff] [blame] | 1626 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1627 | } |
David Brownell | f29fc25 | 2005-08-31 09:52:31 -0700 | [diff] [blame] | 1628 | module_init(usbnet_init); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1629 | |
David Brownell | f29fc25 | 2005-08-31 09:52:31 -0700 | [diff] [blame] | 1630 | static void __exit usbnet_exit(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1631 | { |
Hemant Kumar | 1e8ddb5 | 2012-07-02 13:39:22 -0700 | [diff] [blame] | 1632 | destroy_workqueue(usbnet_wq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1633 | } |
David Brownell | f29fc25 | 2005-08-31 09:52:31 -0700 | [diff] [blame] | 1634 | module_exit(usbnet_exit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1635 | |
David Brownell | f29fc25 | 2005-08-31 09:52:31 -0700 | [diff] [blame] | 1636 | MODULE_AUTHOR("David Brownell"); |
David Brownell | 090ffa9 | 2005-08-31 09:54:50 -0700 | [diff] [blame] | 1637 | MODULE_DESCRIPTION("USB network driver framework"); |
David Brownell | f29fc25 | 2005-08-31 09:52:31 -0700 | [diff] [blame] | 1638 | MODULE_LICENSE("GPL"); |