Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * ether.c -- Ethernet gadget driver, with CDC and non-CDC options |
| 3 | * |
| 4 | * Copyright (C) 2003-2005 David Brownell |
| 5 | * Copyright (C) 2003-2004 Robert Schwebel, Benedikt Spranger |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License as published by |
| 9 | * the Free Software Foundation; either version 2 of the License, or |
| 10 | * (at your option) any later version. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | * GNU General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License |
| 18 | * along with this program; if not, write to the Free Software |
| 19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 20 | */ |
| 21 | |
David Brownell | 0cf4f2d | 2007-08-02 00:00:38 -0700 | [diff] [blame^] | 22 | /* #define VERBOSE_DEBUG */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include <linux/utsname.h> |
| 26 | #include <linux/device.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #include <linux/ctype.h> |
David Brownell | 0cf4f2d | 2007-08-02 00:00:38 -0700 | [diff] [blame^] | 28 | #include <linux/etherdevice.h> |
| 29 | #include <linux/ethtool.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | |
David Brownell | 5f84813 | 2006-12-16 15:34:53 -0800 | [diff] [blame] | 31 | #include <linux/usb/ch9.h> |
David Brownell | a8c28f2 | 2006-06-13 09:57:47 -0700 | [diff] [blame] | 32 | #include <linux/usb/cdc.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | #include <linux/usb_gadget.h> |
| 34 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #include "gadget_chips.h" |
| 36 | |
| 37 | /*-------------------------------------------------------------------------*/ |
| 38 | |
| 39 | /* |
| 40 | * Ethernet gadget driver -- with CDC and non-CDC options |
| 41 | * Builds on hardware support for a full duplex link. |
| 42 | * |
| 43 | * CDC Ethernet is the standard USB solution for sending Ethernet frames |
| 44 | * using USB. Real hardware tends to use the same framing protocol but look |
| 45 | * different for control features. This driver strongly prefers to use |
| 46 | * this USB-IF standard as its open-systems interoperability solution; |
| 47 | * most host side USB stacks (except from Microsoft) support it. |
| 48 | * |
| 49 | * There's some hardware that can't talk CDC. We make that hardware |
| 50 | * implement a "minimalist" vendor-agnostic CDC core: same framing, but |
David Brownell | 11d5489 | 2006-12-11 15:59:04 -0800 | [diff] [blame] | 51 | * link-level setup only requires activating the configuration. Only the |
| 52 | * endpoint descriptors, and product/vendor IDs, are relevant; no control |
| 53 | * operations are available. Linux supports it, but other host operating |
| 54 | * systems may not. (This is a subset of CDC Ethernet.) |
| 55 | * |
| 56 | * It turns out that if you add a few descriptors to that "CDC Subset", |
| 57 | * (Windows) host side drivers from MCCI can treat it as one submode of |
| 58 | * a proprietary scheme called "SAFE" ... without needing to know about |
| 59 | * specific product/vendor IDs. So we do that, making it easier to use |
| 60 | * those MS-Windows drivers. Those added descriptors make it resemble a |
| 61 | * CDC MDLM device, but they don't change device behavior at all. (See |
| 62 | * MCCI Engineering report 950198 "SAFE Networking Functions".) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | * |
| 64 | * A third option is also in use. Rather than CDC Ethernet, or something |
| 65 | * simpler, Microsoft pushes their own approach: RNDIS. The published |
| 66 | * RNDIS specs are ambiguous and appear to be incomplete, and are also |
| 67 | * needlessly complex. |
| 68 | */ |
| 69 | |
| 70 | #define DRIVER_DESC "Ethernet Gadget" |
David Brownell | 907cba3 | 2005-04-28 13:48:09 -0700 | [diff] [blame] | 71 | #define DRIVER_VERSION "May Day 2005" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | |
| 73 | static const char shortname [] = "ether"; |
| 74 | static const char driver_desc [] = DRIVER_DESC; |
| 75 | |
| 76 | #define RX_EXTRA 20 /* guard against rx overflows */ |
| 77 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | #include "rndis.h" |
David Brownell | 45e45ab | 2005-05-16 08:26:38 -0700 | [diff] [blame] | 79 | |
| 80 | #ifndef CONFIG_USB_ETH_RNDIS |
| 81 | #define rndis_uninit(x) do{}while(0) |
| 82 | #define rndis_deregister(c) do{}while(0) |
| 83 | #define rndis_exit() do{}while(0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | #endif |
| 85 | |
| 86 | /* CDC and RNDIS support the same host-chosen outgoing packet filters. */ |
| 87 | #define DEFAULT_FILTER (USB_CDC_PACKET_TYPE_BROADCAST \ |
David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 88 | |USB_CDC_PACKET_TYPE_ALL_MULTICAST \ |
| 89 | |USB_CDC_PACKET_TYPE_PROMISCUOUS \ |
| 90 | |USB_CDC_PACKET_TYPE_DIRECTED) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | |
| 92 | |
| 93 | /*-------------------------------------------------------------------------*/ |
| 94 | |
| 95 | struct eth_dev { |
| 96 | spinlock_t lock; |
| 97 | struct usb_gadget *gadget; |
| 98 | struct usb_request *req; /* for control responses */ |
| 99 | struct usb_request *stat_req; /* for cdc & rndis status */ |
| 100 | |
| 101 | u8 config; |
| 102 | struct usb_ep *in_ep, *out_ep, *status_ep; |
| 103 | const struct usb_endpoint_descriptor |
| 104 | *in, *out, *status; |
David Brownell | 789851c | 2006-08-21 15:26:38 -0700 | [diff] [blame] | 105 | |
| 106 | spinlock_t req_lock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | struct list_head tx_reqs, rx_reqs; |
| 108 | |
| 109 | struct net_device *net; |
| 110 | struct net_device_stats stats; |
| 111 | atomic_t tx_qlen; |
| 112 | |
| 113 | struct work_struct work; |
| 114 | unsigned zlp:1; |
| 115 | unsigned cdc:1; |
| 116 | unsigned rndis:1; |
| 117 | unsigned suspended:1; |
| 118 | u16 cdc_filter; |
| 119 | unsigned long todo; |
| 120 | #define WORK_RX_MEMORY 0 |
| 121 | int rndis_config; |
| 122 | u8 host_mac [ETH_ALEN]; |
| 123 | }; |
| 124 | |
| 125 | /* This version autoconfigures as much as possible at run-time. |
| 126 | * |
| 127 | * It also ASSUMES a self-powered device, without remote wakeup, |
| 128 | * although remote wakeup support would make sense. |
| 129 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | |
| 131 | /*-------------------------------------------------------------------------*/ |
| 132 | |
| 133 | /* DO NOT REUSE THESE IDs with a protocol-incompatible driver!! Ever!! |
| 134 | * Instead: allocate your own, using normal USB-IF procedures. |
| 135 | */ |
| 136 | |
| 137 | /* Thanks to NetChip Technologies for donating this product ID. |
| 138 | * It's for devices with only CDC Ethernet configurations. |
| 139 | */ |
| 140 | #define CDC_VENDOR_NUM 0x0525 /* NetChip */ |
| 141 | #define CDC_PRODUCT_NUM 0xa4a1 /* Linux-USB Ethernet Gadget */ |
| 142 | |
| 143 | /* For hardware that can't talk CDC, we use the same vendor ID that |
| 144 | * ARM Linux has used for ethernet-over-usb, both with sa1100 and |
| 145 | * with pxa250. We're protocol-compatible, if the host-side drivers |
| 146 | * use the endpoint descriptors. bcdDevice (version) is nonzero, so |
| 147 | * drivers that need to hard-wire endpoint numbers have a hook. |
| 148 | * |
| 149 | * The protocol is a minimal subset of CDC Ether, which works on any bulk |
| 150 | * hardware that's not deeply broken ... even on hardware that can't talk |
| 151 | * RNDIS (like SA-1100, with no interrupt endpoint, or anything that |
| 152 | * doesn't handle control-OUT). |
| 153 | */ |
| 154 | #define SIMPLE_VENDOR_NUM 0x049f |
| 155 | #define SIMPLE_PRODUCT_NUM 0x505a |
| 156 | |
| 157 | /* For hardware that can talk RNDIS and either of the above protocols, |
| 158 | * use this ID ... the windows INF files will know it. Unless it's |
| 159 | * used with CDC Ethernet, Linux 2.4 hosts will need updates to choose |
| 160 | * the non-RNDIS configuration. |
| 161 | */ |
| 162 | #define RNDIS_VENDOR_NUM 0x0525 /* NetChip */ |
| 163 | #define RNDIS_PRODUCT_NUM 0xa4a2 /* Ethernet/RNDIS Gadget */ |
| 164 | |
| 165 | |
| 166 | /* Some systems will want different product identifers published in the |
| 167 | * device descriptor, either numbers or strings or both. These string |
| 168 | * parameters are in UTF-8 (superset of ASCII's 7 bit characters). |
| 169 | */ |
| 170 | |
Aras Vaichas | 1afc64a | 2006-02-18 12:31:23 -0800 | [diff] [blame] | 171 | static ushort idVendor; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | module_param(idVendor, ushort, S_IRUGO); |
| 173 | MODULE_PARM_DESC(idVendor, "USB Vendor ID"); |
| 174 | |
Aras Vaichas | 1afc64a | 2006-02-18 12:31:23 -0800 | [diff] [blame] | 175 | static ushort idProduct; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | module_param(idProduct, ushort, S_IRUGO); |
| 177 | MODULE_PARM_DESC(idProduct, "USB Product ID"); |
| 178 | |
Aras Vaichas | 1afc64a | 2006-02-18 12:31:23 -0800 | [diff] [blame] | 179 | static ushort bcdDevice; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | module_param(bcdDevice, ushort, S_IRUGO); |
| 181 | MODULE_PARM_DESC(bcdDevice, "USB Device version (BCD)"); |
| 182 | |
Aras Vaichas | 1afc64a | 2006-02-18 12:31:23 -0800 | [diff] [blame] | 183 | static char *iManufacturer; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | module_param(iManufacturer, charp, S_IRUGO); |
| 185 | MODULE_PARM_DESC(iManufacturer, "USB Manufacturer string"); |
| 186 | |
Aras Vaichas | 1afc64a | 2006-02-18 12:31:23 -0800 | [diff] [blame] | 187 | static char *iProduct; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | module_param(iProduct, charp, S_IRUGO); |
| 189 | MODULE_PARM_DESC(iProduct, "USB Product string"); |
| 190 | |
Aras Vaichas | 1afc64a | 2006-02-18 12:31:23 -0800 | [diff] [blame] | 191 | static char *iSerialNumber; |
| 192 | module_param(iSerialNumber, charp, S_IRUGO); |
| 193 | MODULE_PARM_DESC(iSerialNumber, "SerialNumber"); |
| 194 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | /* initial value, changed by "ifconfig usb0 hw ether xx:xx:xx:xx:xx:xx" */ |
Aras Vaichas | 1afc64a | 2006-02-18 12:31:23 -0800 | [diff] [blame] | 196 | static char *dev_addr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | module_param(dev_addr, charp, S_IRUGO); |
| 198 | MODULE_PARM_DESC(dev_addr, "Device Ethernet Address"); |
| 199 | |
| 200 | /* this address is invisible to ifconfig */ |
Aras Vaichas | 1afc64a | 2006-02-18 12:31:23 -0800 | [diff] [blame] | 201 | static char *host_addr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | module_param(host_addr, charp, S_IRUGO); |
| 203 | MODULE_PARM_DESC(host_addr, "Host Ethernet Address"); |
| 204 | |
| 205 | |
| 206 | /*-------------------------------------------------------------------------*/ |
| 207 | |
| 208 | /* Include CDC support if we could run on CDC-capable hardware. */ |
| 209 | |
| 210 | #ifdef CONFIG_USB_GADGET_NET2280 |
| 211 | #define DEV_CONFIG_CDC |
| 212 | #endif |
| 213 | |
| 214 | #ifdef CONFIG_USB_GADGET_DUMMY_HCD |
| 215 | #define DEV_CONFIG_CDC |
| 216 | #endif |
| 217 | |
| 218 | #ifdef CONFIG_USB_GADGET_GOKU |
| 219 | #define DEV_CONFIG_CDC |
| 220 | #endif |
| 221 | |
| 222 | #ifdef CONFIG_USB_GADGET_LH7A40X |
| 223 | #define DEV_CONFIG_CDC |
| 224 | #endif |
| 225 | |
| 226 | #ifdef CONFIG_USB_GADGET_MQ11XX |
| 227 | #define DEV_CONFIG_CDC |
| 228 | #endif |
| 229 | |
| 230 | #ifdef CONFIG_USB_GADGET_OMAP |
| 231 | #define DEV_CONFIG_CDC |
| 232 | #endif |
| 233 | |
| 234 | #ifdef CONFIG_USB_GADGET_N9604 |
| 235 | #define DEV_CONFIG_CDC |
| 236 | #endif |
| 237 | |
| 238 | #ifdef CONFIG_USB_GADGET_PXA27X |
| 239 | #define DEV_CONFIG_CDC |
| 240 | #endif |
| 241 | |
David Brownell | 11d5489 | 2006-12-11 15:59:04 -0800 | [diff] [blame] | 242 | #ifdef CONFIG_USB_GADGET_S3C2410 |
| 243 | #define DEV_CONFIG_CDC |
| 244 | #endif |
| 245 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | #ifdef CONFIG_USB_GADGET_AT91 |
| 247 | #define DEV_CONFIG_CDC |
| 248 | #endif |
| 249 | |
David Brownell | 1c05ad4 | 2006-01-25 08:45:59 -0800 | [diff] [blame] | 250 | #ifdef CONFIG_USB_GADGET_MUSBHSFC |
| 251 | #define DEV_CONFIG_CDC |
| 252 | #endif |
| 253 | |
Tony Lindgren | bfb2c96 | 2006-06-29 22:27:36 -0700 | [diff] [blame] | 254 | #ifdef CONFIG_USB_GADGET_MUSB_HDRC |
David Brownell | 1c05ad4 | 2006-01-25 08:45:59 -0800 | [diff] [blame] | 255 | #define DEV_CONFIG_CDC |
| 256 | #endif |
| 257 | |
Haavard Skinnemoen | 55b3fd4 | 2007-06-14 18:01:45 +0200 | [diff] [blame] | 258 | #ifdef CONFIG_USB_GADGET_ATMEL_USBA |
HÃ¥vard Skinnemoen | ef3ff46 | 2006-02-27 18:15:04 +0100 | [diff] [blame] | 259 | #define DEV_CONFIG_CDC |
| 260 | #endif |
| 261 | |
Li Yang | d2eef1f | 2007-04-23 10:37:36 -0700 | [diff] [blame] | 262 | #ifdef CONFIG_USB_GADGET_FSL_USB2 |
| 263 | #define DEV_CONFIG_CDC |
| 264 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | |
| 266 | /* For CDC-incapable hardware, choose the simple cdc subset. |
| 267 | * Anything that talks bulk (without notable bugs) can do this. |
| 268 | */ |
| 269 | #ifdef CONFIG_USB_GADGET_PXA2XX |
| 270 | #define DEV_CONFIG_SUBSET |
| 271 | #endif |
| 272 | |
David Brownell | 7f9985c | 2007-05-08 21:01:30 -0700 | [diff] [blame] | 273 | #ifdef CONFIG_USB_GADGET_SUPERH |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | #define DEV_CONFIG_SUBSET |
| 275 | #endif |
| 276 | |
| 277 | #ifdef CONFIG_USB_GADGET_SA1100 |
| 278 | /* use non-CDC for backwards compatibility */ |
| 279 | #define DEV_CONFIG_SUBSET |
| 280 | #endif |
| 281 | |
Yoshihiro Shimoda | 4cf2503 | 2007-05-10 13:18:23 +0900 | [diff] [blame] | 282 | #ifdef CONFIG_USB_GADGET_M66592 |
| 283 | #define DEV_CONFIG_CDC |
| 284 | #endif |
| 285 | |
Thomas Dahlmann | 55d402d | 2007-07-16 21:40:54 -0700 | [diff] [blame] | 286 | #ifdef CONFIG_USB_GADGET_AMD5536UDC |
| 287 | #define DEV_CONFIG_CDC |
| 288 | #endif |
| 289 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | |
| 291 | /*-------------------------------------------------------------------------*/ |
| 292 | |
| 293 | /* "main" config is either CDC, or its simple subset */ |
| 294 | static inline int is_cdc(struct eth_dev *dev) |
| 295 | { |
| 296 | #if !defined(DEV_CONFIG_SUBSET) |
| 297 | return 1; /* only cdc possible */ |
| 298 | #elif !defined (DEV_CONFIG_CDC) |
| 299 | return 0; /* only subset possible */ |
| 300 | #else |
| 301 | return dev->cdc; /* depends on what hardware we found */ |
| 302 | #endif |
| 303 | } |
| 304 | |
| 305 | /* "secondary" RNDIS config may sometimes be activated */ |
| 306 | static inline int rndis_active(struct eth_dev *dev) |
| 307 | { |
| 308 | #ifdef CONFIG_USB_ETH_RNDIS |
| 309 | return dev->rndis; |
| 310 | #else |
| 311 | return 0; |
| 312 | #endif |
| 313 | } |
| 314 | |
| 315 | #define subset_active(dev) (!is_cdc(dev) && !rndis_active(dev)) |
| 316 | #define cdc_active(dev) ( is_cdc(dev) && !rndis_active(dev)) |
| 317 | |
| 318 | |
| 319 | |
| 320 | #define DEFAULT_QLEN 2 /* double buffering by default */ |
| 321 | |
| 322 | /* peak bulk transfer bits-per-second */ |
David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 323 | #define HS_BPS (13 * 512 * 8 * 1000 * 8) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | #define FS_BPS (19 * 64 * 1 * 1000 * 8) |
| 325 | |
| 326 | #ifdef CONFIG_USB_GADGET_DUALSPEED |
David Brownell | 907cba3 | 2005-04-28 13:48:09 -0700 | [diff] [blame] | 327 | #define DEVSPEED USB_SPEED_HIGH |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | |
| 329 | static unsigned qmult = 5; |
| 330 | module_param (qmult, uint, S_IRUGO|S_IWUSR); |
| 331 | |
| 332 | |
| 333 | /* for dual-speed hardware, use deeper queues at highspeed */ |
| 334 | #define qlen(gadget) \ |
| 335 | (DEFAULT_QLEN*((gadget->speed == USB_SPEED_HIGH) ? qmult : 1)) |
| 336 | |
David Brownell | 6cdee10 | 2005-04-18 17:39:34 -0700 | [diff] [blame] | 337 | static inline int BITRATE(struct usb_gadget *g) |
| 338 | { |
| 339 | return (g->speed == USB_SPEED_HIGH) ? HS_BPS : FS_BPS; |
| 340 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | |
| 342 | #else /* full speed (low speed doesn't do bulk) */ |
David Brownell | 0cf4f2d | 2007-08-02 00:00:38 -0700 | [diff] [blame^] | 343 | |
| 344 | #define qmult 1 |
| 345 | |
David Brownell | 907cba3 | 2005-04-28 13:48:09 -0700 | [diff] [blame] | 346 | #define DEVSPEED USB_SPEED_FULL |
| 347 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | #define qlen(gadget) DEFAULT_QLEN |
| 349 | |
David Brownell | 6cdee10 | 2005-04-18 17:39:34 -0700 | [diff] [blame] | 350 | static inline int BITRATE(struct usb_gadget *g) |
| 351 | { |
| 352 | return FS_BPS; |
| 353 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | #endif |
| 355 | |
| 356 | |
| 357 | /*-------------------------------------------------------------------------*/ |
| 358 | |
| 359 | #define xprintk(d,level,fmt,args...) \ |
| 360 | printk(level "%s: " fmt , (d)->net->name , ## args) |
| 361 | |
| 362 | #ifdef DEBUG |
| 363 | #undef DEBUG |
| 364 | #define DEBUG(dev,fmt,args...) \ |
| 365 | xprintk(dev , KERN_DEBUG , fmt , ## args) |
| 366 | #else |
| 367 | #define DEBUG(dev,fmt,args...) \ |
| 368 | do { } while (0) |
| 369 | #endif /* DEBUG */ |
| 370 | |
David Brownell | 0cf4f2d | 2007-08-02 00:00:38 -0700 | [diff] [blame^] | 371 | #ifdef VERBOSE_DEBUG |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | #define VDEBUG DEBUG |
| 373 | #else |
| 374 | #define VDEBUG(dev,fmt,args...) \ |
| 375 | do { } while (0) |
| 376 | #endif /* DEBUG */ |
| 377 | |
| 378 | #define ERROR(dev,fmt,args...) \ |
| 379 | xprintk(dev , KERN_ERR , fmt , ## args) |
| 380 | #define WARN(dev,fmt,args...) \ |
| 381 | xprintk(dev , KERN_WARNING , fmt , ## args) |
| 382 | #define INFO(dev,fmt,args...) \ |
| 383 | xprintk(dev , KERN_INFO , fmt , ## args) |
| 384 | |
| 385 | /*-------------------------------------------------------------------------*/ |
| 386 | |
| 387 | /* USB DRIVER HOOKUP (to the hardware driver, below us), mostly |
| 388 | * ep0 implementation: descriptors, config management, setup(). |
| 389 | * also optional class-specific notification interrupt transfer. |
| 390 | */ |
| 391 | |
| 392 | /* |
| 393 | * DESCRIPTORS ... most are static, but strings and (full) configuration |
| 394 | * descriptors are built on demand. For now we do either full CDC, or |
| 395 | * our simple subset, with RNDIS as an optional second configuration. |
| 396 | * |
| 397 | * RNDIS includes some CDC ACM descriptors ... like CDC Ethernet. But |
| 398 | * the class descriptors match a modem (they're ignored; it's really just |
| 399 | * Ethernet functionality), they don't need the NOP altsetting, and the |
| 400 | * status transfer endpoint isn't optional. |
| 401 | */ |
| 402 | |
| 403 | #define STRING_MANUFACTURER 1 |
| 404 | #define STRING_PRODUCT 2 |
| 405 | #define STRING_ETHADDR 3 |
| 406 | #define STRING_DATA 4 |
| 407 | #define STRING_CONTROL 5 |
| 408 | #define STRING_RNDIS_CONTROL 6 |
| 409 | #define STRING_CDC 7 |
| 410 | #define STRING_SUBSET 8 |
| 411 | #define STRING_RNDIS 9 |
Aras Vaichas | 1afc64a | 2006-02-18 12:31:23 -0800 | [diff] [blame] | 412 | #define STRING_SERIALNUMBER 10 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | |
David Brownell | 340600a | 2005-04-28 13:45:25 -0700 | [diff] [blame] | 414 | /* holds our biggest descriptor (or RNDIS response) */ |
| 415 | #define USB_BUFSIZ 256 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | |
| 417 | /* |
| 418 | * This device advertises one configuration, eth_config, unless RNDIS |
| 419 | * is enabled (rndis_config) on hardware supporting at least two configs. |
| 420 | * |
| 421 | * NOTE: Controllers like superh_udc should probably be able to use |
| 422 | * an RNDIS-only configuration. |
| 423 | * |
| 424 | * FIXME define some higher-powered configurations to make it easier |
| 425 | * to recharge batteries ... |
| 426 | */ |
| 427 | |
| 428 | #define DEV_CONFIG_VALUE 1 /* cdc or subset */ |
| 429 | #define DEV_RNDIS_CONFIG_VALUE 2 /* rndis; optional */ |
| 430 | |
| 431 | static struct usb_device_descriptor |
| 432 | device_desc = { |
| 433 | .bLength = sizeof device_desc, |
| 434 | .bDescriptorType = USB_DT_DEVICE, |
| 435 | |
| 436 | .bcdUSB = __constant_cpu_to_le16 (0x0200), |
| 437 | |
| 438 | .bDeviceClass = USB_CLASS_COMM, |
| 439 | .bDeviceSubClass = 0, |
| 440 | .bDeviceProtocol = 0, |
| 441 | |
| 442 | .idVendor = __constant_cpu_to_le16 (CDC_VENDOR_NUM), |
| 443 | .idProduct = __constant_cpu_to_le16 (CDC_PRODUCT_NUM), |
| 444 | .iManufacturer = STRING_MANUFACTURER, |
| 445 | .iProduct = STRING_PRODUCT, |
| 446 | .bNumConfigurations = 1, |
| 447 | }; |
| 448 | |
| 449 | static struct usb_otg_descriptor |
| 450 | otg_descriptor = { |
| 451 | .bLength = sizeof otg_descriptor, |
| 452 | .bDescriptorType = USB_DT_OTG, |
| 453 | |
| 454 | .bmAttributes = USB_OTG_SRP, |
| 455 | }; |
| 456 | |
| 457 | static struct usb_config_descriptor |
| 458 | eth_config = { |
| 459 | .bLength = sizeof eth_config, |
| 460 | .bDescriptorType = USB_DT_CONFIG, |
| 461 | |
| 462 | /* compute wTotalLength on the fly */ |
| 463 | .bNumInterfaces = 2, |
| 464 | .bConfigurationValue = DEV_CONFIG_VALUE, |
| 465 | .iConfiguration = STRING_CDC, |
| 466 | .bmAttributes = USB_CONFIG_ATT_ONE | USB_CONFIG_ATT_SELFPOWER, |
| 467 | .bMaxPower = 50, |
| 468 | }; |
| 469 | |
| 470 | #ifdef CONFIG_USB_ETH_RNDIS |
David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 471 | static struct usb_config_descriptor |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | rndis_config = { |
| 473 | .bLength = sizeof rndis_config, |
| 474 | .bDescriptorType = USB_DT_CONFIG, |
| 475 | |
| 476 | /* compute wTotalLength on the fly */ |
| 477 | .bNumInterfaces = 2, |
| 478 | .bConfigurationValue = DEV_RNDIS_CONFIG_VALUE, |
| 479 | .iConfiguration = STRING_RNDIS, |
| 480 | .bmAttributes = USB_CONFIG_ATT_ONE | USB_CONFIG_ATT_SELFPOWER, |
| 481 | .bMaxPower = 50, |
| 482 | }; |
| 483 | #endif |
| 484 | |
| 485 | /* |
| 486 | * Compared to the simple CDC subset, the full CDC Ethernet model adds |
| 487 | * three class descriptors, two interface descriptors, optional status |
| 488 | * endpoint. Both have a "data" interface and two bulk endpoints. |
| 489 | * There are also differences in how control requests are handled. |
| 490 | * |
David Brownell | 11d5489 | 2006-12-11 15:59:04 -0800 | [diff] [blame] | 491 | * RNDIS shares a lot with CDC-Ethernet, since it's a variant of the |
| 492 | * CDC-ACM (modem) spec. Unfortunately MSFT's RNDIS driver is buggy; it |
| 493 | * may hang or oops. Since bugfixes (or accurate specs, letting Linux |
| 494 | * work around those bugs) are unlikely to ever come from MSFT, you may |
| 495 | * wish to avoid using RNDIS. |
| 496 | * |
| 497 | * MCCI offers an alternative to RNDIS if you need to connect to Windows |
| 498 | * but have hardware that can't support CDC Ethernet. We add descriptors |
| 499 | * to present the CDC Subset as a (nonconformant) CDC MDLM variant called |
| 500 | * "SAFE". That borrows from both CDC Ethernet and CDC MDLM. You can |
| 501 | * get those drivers from MCCI, or bundled with various products. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | */ |
| 503 | |
| 504 | #ifdef DEV_CONFIG_CDC |
| 505 | static struct usb_interface_descriptor |
| 506 | control_intf = { |
| 507 | .bLength = sizeof control_intf, |
| 508 | .bDescriptorType = USB_DT_INTERFACE, |
| 509 | |
| 510 | .bInterfaceNumber = 0, |
| 511 | /* status endpoint is optional; this may be patched later */ |
| 512 | .bNumEndpoints = 1, |
| 513 | .bInterfaceClass = USB_CLASS_COMM, |
| 514 | .bInterfaceSubClass = USB_CDC_SUBCLASS_ETHERNET, |
| 515 | .bInterfaceProtocol = USB_CDC_PROTO_NONE, |
| 516 | .iInterface = STRING_CONTROL, |
| 517 | }; |
| 518 | #endif |
| 519 | |
| 520 | #ifdef CONFIG_USB_ETH_RNDIS |
| 521 | static const struct usb_interface_descriptor |
| 522 | rndis_control_intf = { |
| 523 | .bLength = sizeof rndis_control_intf, |
| 524 | .bDescriptorType = USB_DT_INTERFACE, |
David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 525 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | .bInterfaceNumber = 0, |
| 527 | .bNumEndpoints = 1, |
| 528 | .bInterfaceClass = USB_CLASS_COMM, |
| 529 | .bInterfaceSubClass = USB_CDC_SUBCLASS_ACM, |
| 530 | .bInterfaceProtocol = USB_CDC_ACM_PROTO_VENDOR, |
| 531 | .iInterface = STRING_RNDIS_CONTROL, |
| 532 | }; |
| 533 | #endif |
| 534 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 | static const struct usb_cdc_header_desc header_desc = { |
| 536 | .bLength = sizeof header_desc, |
| 537 | .bDescriptorType = USB_DT_CS_INTERFACE, |
| 538 | .bDescriptorSubType = USB_CDC_HEADER_TYPE, |
| 539 | |
| 540 | .bcdCDC = __constant_cpu_to_le16 (0x0110), |
| 541 | }; |
| 542 | |
David Brownell | 11d5489 | 2006-12-11 15:59:04 -0800 | [diff] [blame] | 543 | #if defined(DEV_CONFIG_CDC) || defined(CONFIG_USB_ETH_RNDIS) |
| 544 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | static const struct usb_cdc_union_desc union_desc = { |
| 546 | .bLength = sizeof union_desc, |
| 547 | .bDescriptorType = USB_DT_CS_INTERFACE, |
| 548 | .bDescriptorSubType = USB_CDC_UNION_TYPE, |
| 549 | |
| 550 | .bMasterInterface0 = 0, /* index of control interface */ |
| 551 | .bSlaveInterface0 = 1, /* index of DATA interface */ |
| 552 | }; |
| 553 | |
| 554 | #endif /* CDC || RNDIS */ |
| 555 | |
| 556 | #ifdef CONFIG_USB_ETH_RNDIS |
| 557 | |
| 558 | static const struct usb_cdc_call_mgmt_descriptor call_mgmt_descriptor = { |
David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 559 | .bLength = sizeof call_mgmt_descriptor, |
| 560 | .bDescriptorType = USB_DT_CS_INTERFACE, |
| 561 | .bDescriptorSubType = USB_CDC_CALL_MANAGEMENT_TYPE, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | |
David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 563 | .bmCapabilities = 0x00, |
| 564 | .bDataInterface = 0x01, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | }; |
| 566 | |
David Brownell | 907cba3 | 2005-04-28 13:48:09 -0700 | [diff] [blame] | 567 | static const struct usb_cdc_acm_descriptor acm_descriptor = { |
David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 568 | .bLength = sizeof acm_descriptor, |
| 569 | .bDescriptorType = USB_DT_CS_INTERFACE, |
| 570 | .bDescriptorSubType = USB_CDC_ACM_TYPE, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | |
David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 572 | .bmCapabilities = 0x00, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | }; |
| 574 | |
| 575 | #endif |
| 576 | |
David Brownell | 11d5489 | 2006-12-11 15:59:04 -0800 | [diff] [blame] | 577 | #ifndef DEV_CONFIG_CDC |
| 578 | |
| 579 | /* "SAFE" loosely follows CDC WMC MDLM, violating the spec in various |
| 580 | * ways: data endpoints live in the control interface, there's no data |
| 581 | * interface, and it's not used to talk to a cell phone radio. |
| 582 | */ |
| 583 | |
| 584 | static const struct usb_cdc_mdlm_desc mdlm_desc = { |
| 585 | .bLength = sizeof mdlm_desc, |
| 586 | .bDescriptorType = USB_DT_CS_INTERFACE, |
| 587 | .bDescriptorSubType = USB_CDC_MDLM_TYPE, |
| 588 | |
| 589 | .bcdVersion = __constant_cpu_to_le16(0x0100), |
| 590 | .bGUID = { |
| 591 | 0x5d, 0x34, 0xcf, 0x66, 0x11, 0x18, 0x11, 0xd6, |
| 592 | 0xa2, 0x1a, 0x00, 0x01, 0x02, 0xca, 0x9a, 0x7f, |
| 593 | }, |
| 594 | }; |
| 595 | |
| 596 | /* since "usb_cdc_mdlm_detail_desc" is a variable length structure, we |
| 597 | * can't really use its struct. All we do here is say that we're using |
| 598 | * the submode of "SAFE" which directly matches the CDC Subset. |
| 599 | */ |
| 600 | static const u8 mdlm_detail_desc[] = { |
| 601 | 6, |
| 602 | USB_DT_CS_INTERFACE, |
| 603 | USB_CDC_MDLM_DETAIL_TYPE, |
| 604 | |
| 605 | 0, /* "SAFE" */ |
| 606 | 0, /* network control capabilities (none) */ |
| 607 | 0, /* network data capabilities ("raw" encapsulation) */ |
| 608 | }; |
| 609 | |
| 610 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 611 | |
| 612 | static const struct usb_cdc_ether_desc ether_desc = { |
| 613 | .bLength = sizeof ether_desc, |
| 614 | .bDescriptorType = USB_DT_CS_INTERFACE, |
| 615 | .bDescriptorSubType = USB_CDC_ETHERNET_TYPE, |
| 616 | |
| 617 | /* this descriptor actually adds value, surprise! */ |
| 618 | .iMACAddress = STRING_ETHADDR, |
| 619 | .bmEthernetStatistics = __constant_cpu_to_le32 (0), /* no statistics */ |
| 620 | .wMaxSegmentSize = __constant_cpu_to_le16 (ETH_FRAME_LEN), |
| 621 | .wNumberMCFilters = __constant_cpu_to_le16 (0), |
| 622 | .bNumberPowerFilters = 0, |
| 623 | }; |
| 624 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 625 | |
| 626 | #if defined(DEV_CONFIG_CDC) || defined(CONFIG_USB_ETH_RNDIS) |
| 627 | |
| 628 | /* include the status endpoint if we can, even where it's optional. |
| 629 | * use wMaxPacketSize big enough to fit CDC_NOTIFY_SPEED_CHANGE in one |
Steven Cole | 093cf72 | 2005-05-03 19:07:24 -0600 | [diff] [blame] | 630 | * packet, to simplify cancellation; and a big transfer interval, to |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 | * waste less bandwidth. |
| 632 | * |
| 633 | * some drivers (like Linux 2.4 cdc-ether!) "need" it to exist even |
| 634 | * if they ignore the connect/disconnect notifications that real aether |
| 635 | * can provide. more advanced cdc configurations might want to support |
| 636 | * encapsulated commands (vendor-specific, using control-OUT). |
| 637 | * |
| 638 | * RNDIS requires the status endpoint, since it uses that encapsulation |
| 639 | * mechanism for its funky RPC scheme. |
| 640 | */ |
David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 641 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 642 | #define LOG2_STATUS_INTERVAL_MSEC 5 /* 1 << 5 == 32 msec */ |
| 643 | #define STATUS_BYTECOUNT 16 /* 8 byte header + data */ |
| 644 | |
| 645 | static struct usb_endpoint_descriptor |
| 646 | fs_status_desc = { |
| 647 | .bLength = USB_DT_ENDPOINT_SIZE, |
| 648 | .bDescriptorType = USB_DT_ENDPOINT, |
| 649 | |
| 650 | .bEndpointAddress = USB_DIR_IN, |
| 651 | .bmAttributes = USB_ENDPOINT_XFER_INT, |
| 652 | .wMaxPacketSize = __constant_cpu_to_le16 (STATUS_BYTECOUNT), |
| 653 | .bInterval = 1 << LOG2_STATUS_INTERVAL_MSEC, |
| 654 | }; |
| 655 | #endif |
| 656 | |
| 657 | #ifdef DEV_CONFIG_CDC |
| 658 | |
| 659 | /* the default data interface has no endpoints ... */ |
| 660 | |
| 661 | static const struct usb_interface_descriptor |
| 662 | data_nop_intf = { |
| 663 | .bLength = sizeof data_nop_intf, |
| 664 | .bDescriptorType = USB_DT_INTERFACE, |
| 665 | |
| 666 | .bInterfaceNumber = 1, |
| 667 | .bAlternateSetting = 0, |
| 668 | .bNumEndpoints = 0, |
| 669 | .bInterfaceClass = USB_CLASS_CDC_DATA, |
| 670 | .bInterfaceSubClass = 0, |
| 671 | .bInterfaceProtocol = 0, |
| 672 | }; |
| 673 | |
| 674 | /* ... but the "real" data interface has two bulk endpoints */ |
| 675 | |
| 676 | static const struct usb_interface_descriptor |
| 677 | data_intf = { |
| 678 | .bLength = sizeof data_intf, |
| 679 | .bDescriptorType = USB_DT_INTERFACE, |
| 680 | |
| 681 | .bInterfaceNumber = 1, |
| 682 | .bAlternateSetting = 1, |
| 683 | .bNumEndpoints = 2, |
| 684 | .bInterfaceClass = USB_CLASS_CDC_DATA, |
| 685 | .bInterfaceSubClass = 0, |
| 686 | .bInterfaceProtocol = 0, |
| 687 | .iInterface = STRING_DATA, |
| 688 | }; |
| 689 | |
| 690 | #endif |
| 691 | |
| 692 | #ifdef CONFIG_USB_ETH_RNDIS |
| 693 | |
| 694 | /* RNDIS doesn't activate by changing to the "real" altsetting */ |
| 695 | |
| 696 | static const struct usb_interface_descriptor |
| 697 | rndis_data_intf = { |
| 698 | .bLength = sizeof rndis_data_intf, |
| 699 | .bDescriptorType = USB_DT_INTERFACE, |
| 700 | |
| 701 | .bInterfaceNumber = 1, |
| 702 | .bAlternateSetting = 0, |
| 703 | .bNumEndpoints = 2, |
| 704 | .bInterfaceClass = USB_CLASS_CDC_DATA, |
| 705 | .bInterfaceSubClass = 0, |
| 706 | .bInterfaceProtocol = 0, |
| 707 | .iInterface = STRING_DATA, |
| 708 | }; |
| 709 | |
| 710 | #endif |
| 711 | |
| 712 | #ifdef DEV_CONFIG_SUBSET |
| 713 | |
| 714 | /* |
| 715 | * "Simple" CDC-subset option is a simple vendor-neutral model that most |
| 716 | * full speed controllers can handle: one interface, two bulk endpoints. |
David Brownell | 11d5489 | 2006-12-11 15:59:04 -0800 | [diff] [blame] | 717 | * |
| 718 | * To assist host side drivers, we fancy it up a bit, and add descriptors |
| 719 | * so some host side drivers will understand it as a "SAFE" variant. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 720 | */ |
| 721 | |
| 722 | static const struct usb_interface_descriptor |
| 723 | subset_data_intf = { |
| 724 | .bLength = sizeof subset_data_intf, |
| 725 | .bDescriptorType = USB_DT_INTERFACE, |
| 726 | |
| 727 | .bInterfaceNumber = 0, |
| 728 | .bAlternateSetting = 0, |
| 729 | .bNumEndpoints = 2, |
David Brownell | 11d5489 | 2006-12-11 15:59:04 -0800 | [diff] [blame] | 730 | .bInterfaceClass = USB_CLASS_COMM, |
| 731 | .bInterfaceSubClass = USB_CDC_SUBCLASS_MDLM, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 732 | .bInterfaceProtocol = 0, |
| 733 | .iInterface = STRING_DATA, |
| 734 | }; |
| 735 | |
| 736 | #endif /* SUBSET */ |
| 737 | |
| 738 | |
| 739 | static struct usb_endpoint_descriptor |
| 740 | fs_source_desc = { |
| 741 | .bLength = USB_DT_ENDPOINT_SIZE, |
| 742 | .bDescriptorType = USB_DT_ENDPOINT, |
| 743 | |
| 744 | .bEndpointAddress = USB_DIR_IN, |
| 745 | .bmAttributes = USB_ENDPOINT_XFER_BULK, |
| 746 | }; |
| 747 | |
| 748 | static struct usb_endpoint_descriptor |
| 749 | fs_sink_desc = { |
| 750 | .bLength = USB_DT_ENDPOINT_SIZE, |
| 751 | .bDescriptorType = USB_DT_ENDPOINT, |
| 752 | |
| 753 | .bEndpointAddress = USB_DIR_OUT, |
| 754 | .bmAttributes = USB_ENDPOINT_XFER_BULK, |
| 755 | }; |
| 756 | |
| 757 | static const struct usb_descriptor_header *fs_eth_function [11] = { |
| 758 | (struct usb_descriptor_header *) &otg_descriptor, |
| 759 | #ifdef DEV_CONFIG_CDC |
| 760 | /* "cdc" mode descriptors */ |
| 761 | (struct usb_descriptor_header *) &control_intf, |
| 762 | (struct usb_descriptor_header *) &header_desc, |
| 763 | (struct usb_descriptor_header *) &union_desc, |
| 764 | (struct usb_descriptor_header *) ðer_desc, |
| 765 | /* NOTE: status endpoint may need to be removed */ |
| 766 | (struct usb_descriptor_header *) &fs_status_desc, |
| 767 | /* data interface, with altsetting */ |
| 768 | (struct usb_descriptor_header *) &data_nop_intf, |
| 769 | (struct usb_descriptor_header *) &data_intf, |
| 770 | (struct usb_descriptor_header *) &fs_source_desc, |
| 771 | (struct usb_descriptor_header *) &fs_sink_desc, |
| 772 | NULL, |
| 773 | #endif /* DEV_CONFIG_CDC */ |
| 774 | }; |
| 775 | |
| 776 | static inline void __init fs_subset_descriptors(void) |
| 777 | { |
| 778 | #ifdef DEV_CONFIG_SUBSET |
David Brownell | 11d5489 | 2006-12-11 15:59:04 -0800 | [diff] [blame] | 779 | /* behavior is "CDC Subset"; extra descriptors say "SAFE" */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 780 | fs_eth_function[1] = (struct usb_descriptor_header *) &subset_data_intf; |
David Brownell | 11d5489 | 2006-12-11 15:59:04 -0800 | [diff] [blame] | 781 | fs_eth_function[2] = (struct usb_descriptor_header *) &header_desc; |
| 782 | fs_eth_function[3] = (struct usb_descriptor_header *) &mdlm_desc; |
| 783 | fs_eth_function[4] = (struct usb_descriptor_header *) &mdlm_detail_desc; |
| 784 | fs_eth_function[5] = (struct usb_descriptor_header *) ðer_desc; |
| 785 | fs_eth_function[6] = (struct usb_descriptor_header *) &fs_source_desc; |
| 786 | fs_eth_function[7] = (struct usb_descriptor_header *) &fs_sink_desc; |
| 787 | fs_eth_function[8] = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 788 | #else |
| 789 | fs_eth_function[1] = NULL; |
| 790 | #endif |
| 791 | } |
| 792 | |
| 793 | #ifdef CONFIG_USB_ETH_RNDIS |
| 794 | static const struct usb_descriptor_header *fs_rndis_function [] = { |
| 795 | (struct usb_descriptor_header *) &otg_descriptor, |
| 796 | /* control interface matches ACM, not Ethernet */ |
| 797 | (struct usb_descriptor_header *) &rndis_control_intf, |
| 798 | (struct usb_descriptor_header *) &header_desc, |
| 799 | (struct usb_descriptor_header *) &call_mgmt_descriptor, |
| 800 | (struct usb_descriptor_header *) &acm_descriptor, |
| 801 | (struct usb_descriptor_header *) &union_desc, |
| 802 | (struct usb_descriptor_header *) &fs_status_desc, |
| 803 | /* data interface has no altsetting */ |
| 804 | (struct usb_descriptor_header *) &rndis_data_intf, |
| 805 | (struct usb_descriptor_header *) &fs_source_desc, |
| 806 | (struct usb_descriptor_header *) &fs_sink_desc, |
| 807 | NULL, |
| 808 | }; |
| 809 | #endif |
| 810 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 811 | /* |
| 812 | * usb 2.0 devices need to expose both high speed and full speed |
| 813 | * descriptors, unless they only run at full speed. |
| 814 | */ |
| 815 | |
| 816 | #if defined(DEV_CONFIG_CDC) || defined(CONFIG_USB_ETH_RNDIS) |
| 817 | static struct usb_endpoint_descriptor |
| 818 | hs_status_desc = { |
| 819 | .bLength = USB_DT_ENDPOINT_SIZE, |
| 820 | .bDescriptorType = USB_DT_ENDPOINT, |
| 821 | |
| 822 | .bmAttributes = USB_ENDPOINT_XFER_INT, |
| 823 | .wMaxPacketSize = __constant_cpu_to_le16 (STATUS_BYTECOUNT), |
| 824 | .bInterval = LOG2_STATUS_INTERVAL_MSEC + 4, |
| 825 | }; |
| 826 | #endif /* DEV_CONFIG_CDC */ |
| 827 | |
| 828 | static struct usb_endpoint_descriptor |
| 829 | hs_source_desc = { |
| 830 | .bLength = USB_DT_ENDPOINT_SIZE, |
| 831 | .bDescriptorType = USB_DT_ENDPOINT, |
| 832 | |
| 833 | .bmAttributes = USB_ENDPOINT_XFER_BULK, |
| 834 | .wMaxPacketSize = __constant_cpu_to_le16 (512), |
| 835 | }; |
| 836 | |
| 837 | static struct usb_endpoint_descriptor |
| 838 | hs_sink_desc = { |
| 839 | .bLength = USB_DT_ENDPOINT_SIZE, |
| 840 | .bDescriptorType = USB_DT_ENDPOINT, |
| 841 | |
| 842 | .bmAttributes = USB_ENDPOINT_XFER_BULK, |
| 843 | .wMaxPacketSize = __constant_cpu_to_le16 (512), |
| 844 | }; |
| 845 | |
| 846 | static struct usb_qualifier_descriptor |
| 847 | dev_qualifier = { |
| 848 | .bLength = sizeof dev_qualifier, |
| 849 | .bDescriptorType = USB_DT_DEVICE_QUALIFIER, |
| 850 | |
| 851 | .bcdUSB = __constant_cpu_to_le16 (0x0200), |
| 852 | .bDeviceClass = USB_CLASS_COMM, |
| 853 | |
| 854 | .bNumConfigurations = 1, |
| 855 | }; |
| 856 | |
| 857 | static const struct usb_descriptor_header *hs_eth_function [11] = { |
| 858 | (struct usb_descriptor_header *) &otg_descriptor, |
| 859 | #ifdef DEV_CONFIG_CDC |
| 860 | /* "cdc" mode descriptors */ |
| 861 | (struct usb_descriptor_header *) &control_intf, |
| 862 | (struct usb_descriptor_header *) &header_desc, |
| 863 | (struct usb_descriptor_header *) &union_desc, |
| 864 | (struct usb_descriptor_header *) ðer_desc, |
| 865 | /* NOTE: status endpoint may need to be removed */ |
| 866 | (struct usb_descriptor_header *) &hs_status_desc, |
| 867 | /* data interface, with altsetting */ |
| 868 | (struct usb_descriptor_header *) &data_nop_intf, |
| 869 | (struct usb_descriptor_header *) &data_intf, |
| 870 | (struct usb_descriptor_header *) &hs_source_desc, |
| 871 | (struct usb_descriptor_header *) &hs_sink_desc, |
| 872 | NULL, |
| 873 | #endif /* DEV_CONFIG_CDC */ |
| 874 | }; |
| 875 | |
| 876 | static inline void __init hs_subset_descriptors(void) |
| 877 | { |
| 878 | #ifdef DEV_CONFIG_SUBSET |
David Brownell | 11d5489 | 2006-12-11 15:59:04 -0800 | [diff] [blame] | 879 | /* behavior is "CDC Subset"; extra descriptors say "SAFE" */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 880 | hs_eth_function[1] = (struct usb_descriptor_header *) &subset_data_intf; |
David Brownell | 11d5489 | 2006-12-11 15:59:04 -0800 | [diff] [blame] | 881 | hs_eth_function[2] = (struct usb_descriptor_header *) &header_desc; |
| 882 | hs_eth_function[3] = (struct usb_descriptor_header *) &mdlm_desc; |
| 883 | hs_eth_function[4] = (struct usb_descriptor_header *) &mdlm_detail_desc; |
| 884 | hs_eth_function[5] = (struct usb_descriptor_header *) ðer_desc; |
| 885 | hs_eth_function[6] = (struct usb_descriptor_header *) &hs_source_desc; |
| 886 | hs_eth_function[7] = (struct usb_descriptor_header *) &hs_sink_desc; |
| 887 | hs_eth_function[8] = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 888 | #else |
| 889 | hs_eth_function[1] = NULL; |
| 890 | #endif |
| 891 | } |
| 892 | |
| 893 | #ifdef CONFIG_USB_ETH_RNDIS |
| 894 | static const struct usb_descriptor_header *hs_rndis_function [] = { |
| 895 | (struct usb_descriptor_header *) &otg_descriptor, |
| 896 | /* control interface matches ACM, not Ethernet */ |
| 897 | (struct usb_descriptor_header *) &rndis_control_intf, |
| 898 | (struct usb_descriptor_header *) &header_desc, |
| 899 | (struct usb_descriptor_header *) &call_mgmt_descriptor, |
| 900 | (struct usb_descriptor_header *) &acm_descriptor, |
| 901 | (struct usb_descriptor_header *) &union_desc, |
| 902 | (struct usb_descriptor_header *) &hs_status_desc, |
| 903 | /* data interface has no altsetting */ |
| 904 | (struct usb_descriptor_header *) &rndis_data_intf, |
| 905 | (struct usb_descriptor_header *) &hs_source_desc, |
| 906 | (struct usb_descriptor_header *) &hs_sink_desc, |
| 907 | NULL, |
| 908 | }; |
| 909 | #endif |
| 910 | |
| 911 | |
| 912 | /* maxpacket and other transfer characteristics vary by speed. */ |
David Brownell | 0cf4f2d | 2007-08-02 00:00:38 -0700 | [diff] [blame^] | 913 | static inline struct usb_endpoint_descriptor * |
| 914 | ep_desc(struct usb_gadget *g, struct usb_endpoint_descriptor *hs, |
| 915 | struct usb_endpoint_descriptor *fs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 916 | { |
David Brownell | 0cf4f2d | 2007-08-02 00:00:38 -0700 | [diff] [blame^] | 917 | if (gadget_is_dualspeed(g) && g->speed == USB_SPEED_HIGH) |
| 918 | return hs; |
| 919 | return fs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 920 | } |
| 921 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 922 | |
| 923 | /*-------------------------------------------------------------------------*/ |
| 924 | |
| 925 | /* descriptors that are built on-demand */ |
| 926 | |
| 927 | static char manufacturer [50]; |
| 928 | static char product_desc [40] = DRIVER_DESC; |
Aras Vaichas | 1afc64a | 2006-02-18 12:31:23 -0800 | [diff] [blame] | 929 | static char serial_number [20]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 930 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 931 | /* address that the host will use ... usually assigned at random */ |
| 932 | static char ethaddr [2 * ETH_ALEN + 1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 933 | |
| 934 | /* static strings, in UTF-8 */ |
| 935 | static struct usb_string strings [] = { |
| 936 | { STRING_MANUFACTURER, manufacturer, }, |
| 937 | { STRING_PRODUCT, product_desc, }, |
Aras Vaichas | 1afc64a | 2006-02-18 12:31:23 -0800 | [diff] [blame] | 938 | { STRING_SERIALNUMBER, serial_number, }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 939 | { STRING_DATA, "Ethernet Data", }, |
David Brownell | 11d5489 | 2006-12-11 15:59:04 -0800 | [diff] [blame] | 940 | { STRING_ETHADDR, ethaddr, }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 941 | #ifdef DEV_CONFIG_CDC |
| 942 | { STRING_CDC, "CDC Ethernet", }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 943 | { STRING_CONTROL, "CDC Communications Control", }, |
| 944 | #endif |
| 945 | #ifdef DEV_CONFIG_SUBSET |
| 946 | { STRING_SUBSET, "CDC Ethernet Subset", }, |
| 947 | #endif |
| 948 | #ifdef CONFIG_USB_ETH_RNDIS |
| 949 | { STRING_RNDIS, "RNDIS", }, |
| 950 | { STRING_RNDIS_CONTROL, "RNDIS Communications Control", }, |
| 951 | #endif |
| 952 | { } /* end of list */ |
| 953 | }; |
| 954 | |
| 955 | static struct usb_gadget_strings stringtab = { |
| 956 | .language = 0x0409, /* en-us */ |
| 957 | .strings = strings, |
| 958 | }; |
| 959 | |
| 960 | /* |
| 961 | * one config, two interfaces: control, data. |
| 962 | * complications: class descriptors, and an altsetting. |
| 963 | */ |
| 964 | static int |
David Brownell | 0cf4f2d | 2007-08-02 00:00:38 -0700 | [diff] [blame^] | 965 | config_buf(struct usb_gadget *g, u8 *buf, u8 type, unsigned index, int is_otg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 966 | { |
| 967 | int len; |
| 968 | const struct usb_config_descriptor *config; |
| 969 | const struct usb_descriptor_header **function; |
David Brownell | 0cf4f2d | 2007-08-02 00:00:38 -0700 | [diff] [blame^] | 970 | int hs = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 971 | |
David Brownell | 0cf4f2d | 2007-08-02 00:00:38 -0700 | [diff] [blame^] | 972 | if (gadget_is_dualspeed(g)) { |
| 973 | hs = (g->speed == USB_SPEED_HIGH); |
| 974 | if (type == USB_DT_OTHER_SPEED_CONFIG) |
| 975 | hs = !hs; |
| 976 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 977 | #define which_fn(t) (hs ? hs_ ## t ## _function : fs_ ## t ## _function) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 978 | |
| 979 | if (index >= device_desc.bNumConfigurations) |
| 980 | return -EINVAL; |
| 981 | |
| 982 | #ifdef CONFIG_USB_ETH_RNDIS |
| 983 | /* list the RNDIS config first, to make Microsoft's drivers |
| 984 | * happy. DOCSIS 1.0 needs this too. |
| 985 | */ |
| 986 | if (device_desc.bNumConfigurations == 2 && index == 0) { |
| 987 | config = &rndis_config; |
| 988 | function = which_fn (rndis); |
| 989 | } else |
| 990 | #endif |
| 991 | { |
| 992 | config = ð_config; |
| 993 | function = which_fn (eth); |
| 994 | } |
| 995 | |
| 996 | /* for now, don't advertise srp-only devices */ |
| 997 | if (!is_otg) |
| 998 | function++; |
| 999 | |
| 1000 | len = usb_gadget_config_buf (config, buf, USB_BUFSIZ, function); |
| 1001 | if (len < 0) |
| 1002 | return len; |
| 1003 | ((struct usb_config_descriptor *) buf)->bDescriptorType = type; |
| 1004 | return len; |
| 1005 | } |
| 1006 | |
| 1007 | /*-------------------------------------------------------------------------*/ |
| 1008 | |
Al Viro | 55016f1 | 2005-10-21 03:21:58 -0400 | [diff] [blame] | 1009 | static void eth_start (struct eth_dev *dev, gfp_t gfp_flags); |
| 1010 | static int alloc_requests (struct eth_dev *dev, unsigned n, gfp_t gfp_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1011 | |
David Brownell | 907cba3 | 2005-04-28 13:48:09 -0700 | [diff] [blame] | 1012 | static int |
Al Viro | 55016f1 | 2005-10-21 03:21:58 -0400 | [diff] [blame] | 1013 | set_ether_config (struct eth_dev *dev, gfp_t gfp_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1014 | { |
David Brownell | 907cba3 | 2005-04-28 13:48:09 -0700 | [diff] [blame] | 1015 | int result = 0; |
| 1016 | struct usb_gadget *gadget = dev->gadget; |
| 1017 | |
Ian Campbell | e828264 | 2005-06-29 10:20:29 +0100 | [diff] [blame] | 1018 | #if defined(DEV_CONFIG_CDC) || defined(CONFIG_USB_ETH_RNDIS) |
David Brownell | 907cba3 | 2005-04-28 13:48:09 -0700 | [diff] [blame] | 1019 | /* status endpoint used for RNDIS and (optionally) CDC */ |
| 1020 | if (!subset_active(dev) && dev->status_ep) { |
| 1021 | dev->status = ep_desc (gadget, &hs_status_desc, |
| 1022 | &fs_status_desc); |
| 1023 | dev->status_ep->driver_data = dev; |
| 1024 | |
| 1025 | result = usb_ep_enable (dev->status_ep, dev->status); |
| 1026 | if (result != 0) { |
David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 1027 | DEBUG (dev, "enable %s --> %d\n", |
David Brownell | 907cba3 | 2005-04-28 13:48:09 -0700 | [diff] [blame] | 1028 | dev->status_ep->name, result); |
| 1029 | goto done; |
| 1030 | } |
| 1031 | } |
Ian Campbell | e828264 | 2005-06-29 10:20:29 +0100 | [diff] [blame] | 1032 | #endif |
David Brownell | 907cba3 | 2005-04-28 13:48:09 -0700 | [diff] [blame] | 1033 | |
David Brownell | 11d5489 | 2006-12-11 15:59:04 -0800 | [diff] [blame] | 1034 | dev->in = ep_desc(gadget, &hs_source_desc, &fs_source_desc); |
David Brownell | 907cba3 | 2005-04-28 13:48:09 -0700 | [diff] [blame] | 1035 | dev->in_ep->driver_data = dev; |
| 1036 | |
David Brownell | 11d5489 | 2006-12-11 15:59:04 -0800 | [diff] [blame] | 1037 | dev->out = ep_desc(gadget, &hs_sink_desc, &fs_sink_desc); |
David Brownell | 907cba3 | 2005-04-28 13:48:09 -0700 | [diff] [blame] | 1038 | dev->out_ep->driver_data = dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1039 | |
| 1040 | /* With CDC, the host isn't allowed to use these two data |
| 1041 | * endpoints in the default altsetting for the interface. |
| 1042 | * so we don't activate them yet. Reset from SET_INTERFACE. |
| 1043 | * |
| 1044 | * Strictly speaking RNDIS should work the same: activation is |
| 1045 | * a side effect of setting a packet filter. Deactivation is |
| 1046 | * from REMOTE_NDIS_HALT_MSG, reset from REMOTE_NDIS_RESET_MSG. |
| 1047 | */ |
David Brownell | 907cba3 | 2005-04-28 13:48:09 -0700 | [diff] [blame] | 1048 | if (!cdc_active(dev)) { |
| 1049 | result = usb_ep_enable (dev->in_ep, dev->in); |
| 1050 | if (result != 0) { |
David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 1051 | DEBUG(dev, "enable %s --> %d\n", |
David Brownell | 907cba3 | 2005-04-28 13:48:09 -0700 | [diff] [blame] | 1052 | dev->in_ep->name, result); |
| 1053 | goto done; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1054 | } |
| 1055 | |
David Brownell | 907cba3 | 2005-04-28 13:48:09 -0700 | [diff] [blame] | 1056 | result = usb_ep_enable (dev->out_ep, dev->out); |
| 1057 | if (result != 0) { |
David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 1058 | DEBUG (dev, "enable %s --> %d\n", |
Matt Reimer | 4186c29 | 2006-06-07 11:46:13 -0700 | [diff] [blame] | 1059 | dev->out_ep->name, result); |
David Brownell | 907cba3 | 2005-04-28 13:48:09 -0700 | [diff] [blame] | 1060 | goto done; |
| 1061 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1062 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1063 | |
David Brownell | 907cba3 | 2005-04-28 13:48:09 -0700 | [diff] [blame] | 1064 | done: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1065 | if (result == 0) |
| 1066 | result = alloc_requests (dev, qlen (gadget), gfp_flags); |
| 1067 | |
| 1068 | /* on error, disable any endpoints */ |
| 1069 | if (result < 0) { |
David Brownell | 907cba3 | 2005-04-28 13:48:09 -0700 | [diff] [blame] | 1070 | if (!subset_active(dev)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1071 | (void) usb_ep_disable (dev->status_ep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1072 | dev->status = NULL; |
David Brownell | 907cba3 | 2005-04-28 13:48:09 -0700 | [diff] [blame] | 1073 | (void) usb_ep_disable (dev->in_ep); |
| 1074 | (void) usb_ep_disable (dev->out_ep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1075 | dev->in = NULL; |
| 1076 | dev->out = NULL; |
| 1077 | } else |
| 1078 | |
| 1079 | /* activate non-CDC configs right away |
| 1080 | * this isn't strictly according to the RNDIS spec |
| 1081 | */ |
David Brownell | 907cba3 | 2005-04-28 13:48:09 -0700 | [diff] [blame] | 1082 | if (!cdc_active (dev)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1083 | netif_carrier_on (dev->net); |
| 1084 | if (netif_running (dev->net)) { |
| 1085 | spin_unlock (&dev->lock); |
| 1086 | eth_start (dev, GFP_ATOMIC); |
| 1087 | spin_lock (&dev->lock); |
| 1088 | } |
| 1089 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1090 | |
| 1091 | if (result == 0) |
| 1092 | DEBUG (dev, "qlen %d\n", qlen (gadget)); |
| 1093 | |
| 1094 | /* caller is responsible for cleanup on error */ |
| 1095 | return result; |
| 1096 | } |
| 1097 | |
| 1098 | static void eth_reset_config (struct eth_dev *dev) |
| 1099 | { |
| 1100 | struct usb_request *req; |
| 1101 | |
| 1102 | if (dev->config == 0) |
| 1103 | return; |
| 1104 | |
| 1105 | DEBUG (dev, "%s\n", __FUNCTION__); |
| 1106 | |
| 1107 | netif_stop_queue (dev->net); |
| 1108 | netif_carrier_off (dev->net); |
David Brownell | 340600a | 2005-04-28 13:45:25 -0700 | [diff] [blame] | 1109 | rndis_uninit(dev->rndis_config); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1110 | |
| 1111 | /* disable endpoints, forcing (synchronous) completion of |
| 1112 | * pending i/o. then free the requests. |
| 1113 | */ |
| 1114 | if (dev->in) { |
| 1115 | usb_ep_disable (dev->in_ep); |
David Brownell | 789851c | 2006-08-21 15:26:38 -0700 | [diff] [blame] | 1116 | spin_lock(&dev->req_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1117 | while (likely (!list_empty (&dev->tx_reqs))) { |
| 1118 | req = container_of (dev->tx_reqs.next, |
| 1119 | struct usb_request, list); |
| 1120 | list_del (&req->list); |
David Brownell | 789851c | 2006-08-21 15:26:38 -0700 | [diff] [blame] | 1121 | |
| 1122 | spin_unlock(&dev->req_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1123 | usb_ep_free_request (dev->in_ep, req); |
David Brownell | 789851c | 2006-08-21 15:26:38 -0700 | [diff] [blame] | 1124 | spin_lock(&dev->req_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1125 | } |
David Brownell | 789851c | 2006-08-21 15:26:38 -0700 | [diff] [blame] | 1126 | spin_unlock(&dev->req_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1127 | } |
| 1128 | if (dev->out) { |
| 1129 | usb_ep_disable (dev->out_ep); |
David Brownell | 789851c | 2006-08-21 15:26:38 -0700 | [diff] [blame] | 1130 | spin_lock(&dev->req_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1131 | while (likely (!list_empty (&dev->rx_reqs))) { |
| 1132 | req = container_of (dev->rx_reqs.next, |
| 1133 | struct usb_request, list); |
| 1134 | list_del (&req->list); |
David Brownell | 789851c | 2006-08-21 15:26:38 -0700 | [diff] [blame] | 1135 | |
| 1136 | spin_unlock(&dev->req_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1137 | usb_ep_free_request (dev->out_ep, req); |
David Brownell | 789851c | 2006-08-21 15:26:38 -0700 | [diff] [blame] | 1138 | spin_lock(&dev->req_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1139 | } |
David Brownell | 789851c | 2006-08-21 15:26:38 -0700 | [diff] [blame] | 1140 | spin_unlock(&dev->req_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1141 | } |
| 1142 | |
| 1143 | if (dev->status) { |
| 1144 | usb_ep_disable (dev->status_ep); |
| 1145 | } |
David Brownell | 907cba3 | 2005-04-28 13:48:09 -0700 | [diff] [blame] | 1146 | dev->rndis = 0; |
| 1147 | dev->cdc_filter = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1148 | dev->config = 0; |
| 1149 | } |
| 1150 | |
| 1151 | /* change our operational config. must agree with the code |
| 1152 | * that returns config descriptors, and altsetting code. |
| 1153 | */ |
| 1154 | static int |
Al Viro | 55016f1 | 2005-10-21 03:21:58 -0400 | [diff] [blame] | 1155 | eth_set_config (struct eth_dev *dev, unsigned number, gfp_t gfp_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1156 | { |
| 1157 | int result = 0; |
| 1158 | struct usb_gadget *gadget = dev->gadget; |
| 1159 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1160 | if (gadget_is_sa1100 (gadget) |
| 1161 | && dev->config |
| 1162 | && atomic_read (&dev->tx_qlen) != 0) { |
| 1163 | /* tx fifo is full, but we can't clear it...*/ |
| 1164 | INFO (dev, "can't change configurations\n"); |
| 1165 | return -ESPIPE; |
| 1166 | } |
| 1167 | eth_reset_config (dev); |
| 1168 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1169 | switch (number) { |
| 1170 | case DEV_CONFIG_VALUE: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1171 | result = set_ether_config (dev, gfp_flags); |
| 1172 | break; |
| 1173 | #ifdef CONFIG_USB_ETH_RNDIS |
| 1174 | case DEV_RNDIS_CONFIG_VALUE: |
| 1175 | dev->rndis = 1; |
| 1176 | result = set_ether_config (dev, gfp_flags); |
| 1177 | break; |
| 1178 | #endif |
| 1179 | default: |
| 1180 | result = -EINVAL; |
| 1181 | /* FALL THROUGH */ |
| 1182 | case 0: |
| 1183 | break; |
| 1184 | } |
| 1185 | |
| 1186 | if (result) { |
| 1187 | if (number) |
| 1188 | eth_reset_config (dev); |
| 1189 | usb_gadget_vbus_draw(dev->gadget, |
David Brownell | 0cf4f2d | 2007-08-02 00:00:38 -0700 | [diff] [blame^] | 1190 | gadget_is_otg(dev->gadget) ? 8 : 100); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1191 | } else { |
| 1192 | char *speed; |
| 1193 | unsigned power; |
| 1194 | |
| 1195 | power = 2 * eth_config.bMaxPower; |
| 1196 | usb_gadget_vbus_draw(dev->gadget, power); |
| 1197 | |
| 1198 | switch (gadget->speed) { |
| 1199 | case USB_SPEED_FULL: speed = "full"; break; |
| 1200 | #ifdef CONFIG_USB_GADGET_DUALSPEED |
| 1201 | case USB_SPEED_HIGH: speed = "high"; break; |
| 1202 | #endif |
David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 1203 | default: speed = "?"; break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1204 | } |
| 1205 | |
| 1206 | dev->config = number; |
| 1207 | INFO (dev, "%s speed config #%d: %d mA, %s, using %s\n", |
| 1208 | speed, number, power, driver_desc, |
David Brownell | 45e45ab | 2005-05-16 08:26:38 -0700 | [diff] [blame] | 1209 | rndis_active(dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1210 | ? "RNDIS" |
David Brownell | 45e45ab | 2005-05-16 08:26:38 -0700 | [diff] [blame] | 1211 | : (cdc_active(dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1212 | ? "CDC Ethernet" |
| 1213 | : "CDC Ethernet Subset")); |
| 1214 | } |
| 1215 | return result; |
| 1216 | } |
| 1217 | |
| 1218 | /*-------------------------------------------------------------------------*/ |
| 1219 | |
| 1220 | #ifdef DEV_CONFIG_CDC |
| 1221 | |
David Brownell | 907cba3 | 2005-04-28 13:48:09 -0700 | [diff] [blame] | 1222 | /* The interrupt endpoint is used in CDC networking models (Ethernet, ATM) |
| 1223 | * only to notify the host about link status changes (which we support) or |
| 1224 | * report completion of some encapsulated command (as used in RNDIS). Since |
| 1225 | * we want this CDC Ethernet code to be vendor-neutral, we don't use that |
| 1226 | * command mechanism; and only one status request is ever queued. |
| 1227 | */ |
| 1228 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1229 | static void eth_status_complete (struct usb_ep *ep, struct usb_request *req) |
| 1230 | { |
| 1231 | struct usb_cdc_notification *event = req->buf; |
| 1232 | int value = req->status; |
| 1233 | struct eth_dev *dev = ep->driver_data; |
| 1234 | |
| 1235 | /* issue the second notification if host reads the first */ |
| 1236 | if (event->bNotificationType == USB_CDC_NOTIFY_NETWORK_CONNECTION |
| 1237 | && value == 0) { |
| 1238 | __le32 *data = req->buf + sizeof *event; |
| 1239 | |
| 1240 | event->bmRequestType = 0xA1; |
| 1241 | event->bNotificationType = USB_CDC_NOTIFY_SPEED_CHANGE; |
| 1242 | event->wValue = __constant_cpu_to_le16 (0); |
| 1243 | event->wIndex = __constant_cpu_to_le16 (1); |
| 1244 | event->wLength = __constant_cpu_to_le16 (8); |
| 1245 | |
| 1246 | /* SPEED_CHANGE data is up/down speeds in bits/sec */ |
| 1247 | data [0] = data [1] = cpu_to_le32 (BITRATE (dev->gadget)); |
| 1248 | |
| 1249 | req->length = STATUS_BYTECOUNT; |
| 1250 | value = usb_ep_queue (ep, req, GFP_ATOMIC); |
| 1251 | DEBUG (dev, "send SPEED_CHANGE --> %d\n", value); |
| 1252 | if (value == 0) |
| 1253 | return; |
| 1254 | } else if (value != -ECONNRESET) |
| 1255 | DEBUG (dev, "event %02x --> %d\n", |
| 1256 | event->bNotificationType, value); |
David Brownell | 907cba3 | 2005-04-28 13:48:09 -0700 | [diff] [blame] | 1257 | req->context = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1258 | } |
| 1259 | |
| 1260 | static void issue_start_status (struct eth_dev *dev) |
| 1261 | { |
| 1262 | struct usb_request *req = dev->stat_req; |
| 1263 | struct usb_cdc_notification *event; |
| 1264 | int value; |
David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 1265 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1266 | DEBUG (dev, "%s, flush old status first\n", __FUNCTION__); |
| 1267 | |
| 1268 | /* flush old status |
| 1269 | * |
| 1270 | * FIXME ugly idiom, maybe we'd be better with just |
| 1271 | * a "cancel the whole queue" primitive since any |
| 1272 | * unlink-one primitive has way too many error modes. |
| 1273 | * here, we "know" toggle is already clear... |
David Brownell | 907cba3 | 2005-04-28 13:48:09 -0700 | [diff] [blame] | 1274 | * |
| 1275 | * FIXME iff req->context != null just dequeue it |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1276 | */ |
| 1277 | usb_ep_disable (dev->status_ep); |
| 1278 | usb_ep_enable (dev->status_ep, dev->status); |
| 1279 | |
| 1280 | /* 3.8.1 says to issue first NETWORK_CONNECTION, then |
| 1281 | * a SPEED_CHANGE. could be useful in some configs. |
| 1282 | */ |
| 1283 | event = req->buf; |
| 1284 | event->bmRequestType = 0xA1; |
| 1285 | event->bNotificationType = USB_CDC_NOTIFY_NETWORK_CONNECTION; |
| 1286 | event->wValue = __constant_cpu_to_le16 (1); /* connected */ |
| 1287 | event->wIndex = __constant_cpu_to_le16 (1); |
| 1288 | event->wLength = 0; |
| 1289 | |
| 1290 | req->length = sizeof *event; |
| 1291 | req->complete = eth_status_complete; |
David Brownell | 907cba3 | 2005-04-28 13:48:09 -0700 | [diff] [blame] | 1292 | req->context = dev; |
| 1293 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1294 | value = usb_ep_queue (dev->status_ep, req, GFP_ATOMIC); |
| 1295 | if (value < 0) |
| 1296 | DEBUG (dev, "status buf queue --> %d\n", value); |
| 1297 | } |
| 1298 | |
| 1299 | #endif |
| 1300 | |
| 1301 | /*-------------------------------------------------------------------------*/ |
| 1302 | |
| 1303 | static void eth_setup_complete (struct usb_ep *ep, struct usb_request *req) |
| 1304 | { |
| 1305 | if (req->status || req->actual != req->length) |
| 1306 | DEBUG ((struct eth_dev *) ep->driver_data, |
| 1307 | "setup complete --> %d, %d/%d\n", |
| 1308 | req->status, req->actual, req->length); |
| 1309 | } |
| 1310 | |
| 1311 | #ifdef CONFIG_USB_ETH_RNDIS |
| 1312 | |
| 1313 | static void rndis_response_complete (struct usb_ep *ep, struct usb_request *req) |
| 1314 | { |
| 1315 | if (req->status || req->actual != req->length) |
| 1316 | DEBUG ((struct eth_dev *) ep->driver_data, |
| 1317 | "rndis response complete --> %d, %d/%d\n", |
| 1318 | req->status, req->actual, req->length); |
| 1319 | |
| 1320 | /* done sending after USB_CDC_GET_ENCAPSULATED_RESPONSE */ |
| 1321 | } |
| 1322 | |
| 1323 | static void rndis_command_complete (struct usb_ep *ep, struct usb_request *req) |
| 1324 | { |
| 1325 | struct eth_dev *dev = ep->driver_data; |
| 1326 | int status; |
David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 1327 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1328 | /* received RNDIS command from USB_CDC_SEND_ENCAPSULATED_COMMAND */ |
| 1329 | spin_lock(&dev->lock); |
| 1330 | status = rndis_msg_parser (dev->rndis_config, (u8 *) req->buf); |
| 1331 | if (status < 0) |
| 1332 | ERROR(dev, "%s: rndis parse error %d\n", __FUNCTION__, status); |
| 1333 | spin_unlock(&dev->lock); |
| 1334 | } |
| 1335 | |
| 1336 | #endif /* RNDIS */ |
| 1337 | |
| 1338 | /* |
| 1339 | * The setup() callback implements all the ep0 functionality that's not |
| 1340 | * handled lower down. CDC has a number of less-common features: |
| 1341 | * |
| 1342 | * - two interfaces: control, and ethernet data |
| 1343 | * - Ethernet data interface has two altsettings: default, and active |
| 1344 | * - class-specific descriptors for the control interface |
| 1345 | * - class-specific control requests |
| 1346 | */ |
| 1347 | static int |
| 1348 | eth_setup (struct usb_gadget *gadget, const struct usb_ctrlrequest *ctrl) |
| 1349 | { |
| 1350 | struct eth_dev *dev = get_gadget_data (gadget); |
| 1351 | struct usb_request *req = dev->req; |
| 1352 | int value = -EOPNOTSUPP; |
David Brownell | 1bbc169 | 2005-05-07 13:05:13 -0700 | [diff] [blame] | 1353 | u16 wIndex = le16_to_cpu(ctrl->wIndex); |
| 1354 | u16 wValue = le16_to_cpu(ctrl->wValue); |
| 1355 | u16 wLength = le16_to_cpu(ctrl->wLength); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1356 | |
| 1357 | /* descriptors just go into the pre-allocated ep0 buffer, |
| 1358 | * while config change events may enable network traffic. |
| 1359 | */ |
| 1360 | req->complete = eth_setup_complete; |
| 1361 | switch (ctrl->bRequest) { |
| 1362 | |
| 1363 | case USB_REQ_GET_DESCRIPTOR: |
| 1364 | if (ctrl->bRequestType != USB_DIR_IN) |
| 1365 | break; |
| 1366 | switch (wValue >> 8) { |
| 1367 | |
| 1368 | case USB_DT_DEVICE: |
| 1369 | value = min (wLength, (u16) sizeof device_desc); |
| 1370 | memcpy (req->buf, &device_desc, value); |
| 1371 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1372 | case USB_DT_DEVICE_QUALIFIER: |
David Brownell | 0cf4f2d | 2007-08-02 00:00:38 -0700 | [diff] [blame^] | 1373 | if (!gadget_is_dualspeed(gadget)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1374 | break; |
| 1375 | value = min (wLength, (u16) sizeof dev_qualifier); |
| 1376 | memcpy (req->buf, &dev_qualifier, value); |
| 1377 | break; |
| 1378 | |
| 1379 | case USB_DT_OTHER_SPEED_CONFIG: |
David Brownell | 0cf4f2d | 2007-08-02 00:00:38 -0700 | [diff] [blame^] | 1380 | if (!gadget_is_dualspeed(gadget)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1381 | break; |
| 1382 | // FALLTHROUGH |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1383 | case USB_DT_CONFIG: |
David Brownell | 0cf4f2d | 2007-08-02 00:00:38 -0700 | [diff] [blame^] | 1384 | value = config_buf(gadget, req->buf, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1385 | wValue >> 8, |
| 1386 | wValue & 0xff, |
David Brownell | 0cf4f2d | 2007-08-02 00:00:38 -0700 | [diff] [blame^] | 1387 | gadget_is_otg(gadget)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1388 | if (value >= 0) |
| 1389 | value = min (wLength, (u16) value); |
| 1390 | break; |
| 1391 | |
| 1392 | case USB_DT_STRING: |
| 1393 | value = usb_gadget_get_string (&stringtab, |
| 1394 | wValue & 0xff, req->buf); |
| 1395 | if (value >= 0) |
| 1396 | value = min (wLength, (u16) value); |
| 1397 | break; |
| 1398 | } |
| 1399 | break; |
| 1400 | |
| 1401 | case USB_REQ_SET_CONFIGURATION: |
| 1402 | if (ctrl->bRequestType != 0) |
| 1403 | break; |
| 1404 | if (gadget->a_hnp_support) |
| 1405 | DEBUG (dev, "HNP available\n"); |
| 1406 | else if (gadget->a_alt_hnp_support) |
| 1407 | DEBUG (dev, "HNP needs a different root port\n"); |
| 1408 | spin_lock (&dev->lock); |
| 1409 | value = eth_set_config (dev, wValue, GFP_ATOMIC); |
| 1410 | spin_unlock (&dev->lock); |
| 1411 | break; |
| 1412 | case USB_REQ_GET_CONFIGURATION: |
| 1413 | if (ctrl->bRequestType != USB_DIR_IN) |
| 1414 | break; |
| 1415 | *(u8 *)req->buf = dev->config; |
| 1416 | value = min (wLength, (u16) 1); |
| 1417 | break; |
| 1418 | |
| 1419 | case USB_REQ_SET_INTERFACE: |
| 1420 | if (ctrl->bRequestType != USB_RECIP_INTERFACE |
| 1421 | || !dev->config |
| 1422 | || wIndex > 1) |
| 1423 | break; |
David Brownell | 45e45ab | 2005-05-16 08:26:38 -0700 | [diff] [blame] | 1424 | if (!cdc_active(dev) && wIndex != 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1425 | break; |
| 1426 | spin_lock (&dev->lock); |
| 1427 | |
| 1428 | /* PXA hardware partially handles SET_INTERFACE; |
| 1429 | * we need to kluge around that interference. |
| 1430 | */ |
| 1431 | if (gadget_is_pxa (gadget)) { |
| 1432 | value = eth_set_config (dev, DEV_CONFIG_VALUE, |
| 1433 | GFP_ATOMIC); |
| 1434 | goto done_set_intf; |
| 1435 | } |
| 1436 | |
| 1437 | #ifdef DEV_CONFIG_CDC |
| 1438 | switch (wIndex) { |
| 1439 | case 0: /* control/master intf */ |
| 1440 | if (wValue != 0) |
| 1441 | break; |
| 1442 | if (dev->status) { |
| 1443 | usb_ep_disable (dev->status_ep); |
| 1444 | usb_ep_enable (dev->status_ep, dev->status); |
| 1445 | } |
| 1446 | value = 0; |
| 1447 | break; |
| 1448 | case 1: /* data intf */ |
| 1449 | if (wValue > 1) |
| 1450 | break; |
| 1451 | usb_ep_disable (dev->in_ep); |
| 1452 | usb_ep_disable (dev->out_ep); |
| 1453 | |
| 1454 | /* CDC requires the data transfers not be done from |
| 1455 | * the default interface setting ... also, setting |
David Brownell | 907cba3 | 2005-04-28 13:48:09 -0700 | [diff] [blame] | 1456 | * the non-default interface resets filters etc. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1457 | */ |
| 1458 | if (wValue == 1) { |
David Brownell | 907cba3 | 2005-04-28 13:48:09 -0700 | [diff] [blame] | 1459 | if (!cdc_active (dev)) |
| 1460 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1461 | usb_ep_enable (dev->in_ep, dev->in); |
| 1462 | usb_ep_enable (dev->out_ep, dev->out); |
| 1463 | dev->cdc_filter = DEFAULT_FILTER; |
| 1464 | netif_carrier_on (dev->net); |
| 1465 | if (dev->status) |
| 1466 | issue_start_status (dev); |
| 1467 | if (netif_running (dev->net)) { |
| 1468 | spin_unlock (&dev->lock); |
| 1469 | eth_start (dev, GFP_ATOMIC); |
| 1470 | spin_lock (&dev->lock); |
| 1471 | } |
| 1472 | } else { |
| 1473 | netif_stop_queue (dev->net); |
| 1474 | netif_carrier_off (dev->net); |
| 1475 | } |
| 1476 | value = 0; |
| 1477 | break; |
| 1478 | } |
| 1479 | #else |
| 1480 | /* FIXME this is wrong, as is the assumption that |
| 1481 | * all non-PXA hardware talks real CDC ... |
| 1482 | */ |
| 1483 | dev_warn (&gadget->dev, "set_interface ignored!\n"); |
| 1484 | #endif /* DEV_CONFIG_CDC */ |
| 1485 | |
| 1486 | done_set_intf: |
| 1487 | spin_unlock (&dev->lock); |
| 1488 | break; |
| 1489 | case USB_REQ_GET_INTERFACE: |
| 1490 | if (ctrl->bRequestType != (USB_DIR_IN|USB_RECIP_INTERFACE) |
| 1491 | || !dev->config |
| 1492 | || wIndex > 1) |
| 1493 | break; |
David Brownell | 45e45ab | 2005-05-16 08:26:38 -0700 | [diff] [blame] | 1494 | if (!(cdc_active(dev) || rndis_active(dev)) && wIndex != 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1495 | break; |
| 1496 | |
| 1497 | /* for CDC, iff carrier is on, data interface is active. */ |
David Brownell | 45e45ab | 2005-05-16 08:26:38 -0700 | [diff] [blame] | 1498 | if (rndis_active(dev) || wIndex != 1) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1499 | *(u8 *)req->buf = 0; |
| 1500 | else |
| 1501 | *(u8 *)req->buf = netif_carrier_ok (dev->net) ? 1 : 0; |
| 1502 | value = min (wLength, (u16) 1); |
| 1503 | break; |
| 1504 | |
| 1505 | #ifdef DEV_CONFIG_CDC |
| 1506 | case USB_CDC_SET_ETHERNET_PACKET_FILTER: |
| 1507 | /* see 6.2.30: no data, wIndex = interface, |
| 1508 | * wValue = packet filter bitmap |
| 1509 | */ |
| 1510 | if (ctrl->bRequestType != (USB_TYPE_CLASS|USB_RECIP_INTERFACE) |
David Brownell | 45e45ab | 2005-05-16 08:26:38 -0700 | [diff] [blame] | 1511 | || !cdc_active(dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1512 | || wLength != 0 |
| 1513 | || wIndex > 1) |
| 1514 | break; |
| 1515 | DEBUG (dev, "packet filter %02x\n", wValue); |
| 1516 | dev->cdc_filter = wValue; |
| 1517 | value = 0; |
| 1518 | break; |
| 1519 | |
| 1520 | /* and potentially: |
| 1521 | * case USB_CDC_SET_ETHERNET_MULTICAST_FILTERS: |
| 1522 | * case USB_CDC_SET_ETHERNET_PM_PATTERN_FILTER: |
| 1523 | * case USB_CDC_GET_ETHERNET_PM_PATTERN_FILTER: |
| 1524 | * case USB_CDC_GET_ETHERNET_STATISTIC: |
| 1525 | */ |
| 1526 | |
| 1527 | #endif /* DEV_CONFIG_CDC */ |
| 1528 | |
David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 1529 | #ifdef CONFIG_USB_ETH_RNDIS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1530 | /* RNDIS uses the CDC command encapsulation mechanism to implement |
| 1531 | * an RPC scheme, with much getting/setting of attributes by OID. |
| 1532 | */ |
| 1533 | case USB_CDC_SEND_ENCAPSULATED_COMMAND: |
| 1534 | if (ctrl->bRequestType != (USB_TYPE_CLASS|USB_RECIP_INTERFACE) |
David Brownell | 45e45ab | 2005-05-16 08:26:38 -0700 | [diff] [blame] | 1535 | || !rndis_active(dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1536 | || wLength > USB_BUFSIZ |
| 1537 | || wValue |
| 1538 | || rndis_control_intf.bInterfaceNumber |
| 1539 | != wIndex) |
| 1540 | break; |
| 1541 | /* read the request, then process it */ |
| 1542 | value = wLength; |
| 1543 | req->complete = rndis_command_complete; |
| 1544 | /* later, rndis_control_ack () sends a notification */ |
| 1545 | break; |
David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 1546 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1547 | case USB_CDC_GET_ENCAPSULATED_RESPONSE: |
| 1548 | if ((USB_DIR_IN|USB_TYPE_CLASS|USB_RECIP_INTERFACE) |
| 1549 | == ctrl->bRequestType |
David Brownell | 45e45ab | 2005-05-16 08:26:38 -0700 | [diff] [blame] | 1550 | && rndis_active(dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1551 | // && wLength >= 0x0400 |
| 1552 | && !wValue |
| 1553 | && rndis_control_intf.bInterfaceNumber |
| 1554 | == wIndex) { |
| 1555 | u8 *buf; |
David Brownell | 0cf4f2d | 2007-08-02 00:00:38 -0700 | [diff] [blame^] | 1556 | u32 n; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1557 | |
| 1558 | /* return the result */ |
David Brownell | 0cf4f2d | 2007-08-02 00:00:38 -0700 | [diff] [blame^] | 1559 | buf = rndis_get_next_response(dev->rndis_config, &n); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1560 | if (buf) { |
David Brownell | 0cf4f2d | 2007-08-02 00:00:38 -0700 | [diff] [blame^] | 1561 | memcpy(req->buf, buf, n); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1562 | req->complete = rndis_response_complete; |
| 1563 | rndis_free_response(dev->rndis_config, buf); |
| 1564 | } |
| 1565 | /* else stalls ... spec says to avoid that */ |
| 1566 | } |
| 1567 | break; |
| 1568 | #endif /* RNDIS */ |
| 1569 | |
| 1570 | default: |
| 1571 | VDEBUG (dev, |
| 1572 | "unknown control req%02x.%02x v%04x i%04x l%d\n", |
| 1573 | ctrl->bRequestType, ctrl->bRequest, |
| 1574 | wValue, wIndex, wLength); |
| 1575 | } |
| 1576 | |
| 1577 | /* respond with data transfer before status phase? */ |
| 1578 | if (value >= 0) { |
| 1579 | req->length = value; |
| 1580 | req->zero = value < wLength |
| 1581 | && (value % gadget->ep0->maxpacket) == 0; |
| 1582 | value = usb_ep_queue (gadget->ep0, req, GFP_ATOMIC); |
| 1583 | if (value < 0) { |
| 1584 | DEBUG (dev, "ep_queue --> %d\n", value); |
| 1585 | req->status = 0; |
| 1586 | eth_setup_complete (gadget->ep0, req); |
| 1587 | } |
| 1588 | } |
| 1589 | |
| 1590 | /* host either stalls (value < 0) or reports success */ |
| 1591 | return value; |
| 1592 | } |
| 1593 | |
| 1594 | static void |
| 1595 | eth_disconnect (struct usb_gadget *gadget) |
| 1596 | { |
| 1597 | struct eth_dev *dev = get_gadget_data (gadget); |
| 1598 | unsigned long flags; |
| 1599 | |
| 1600 | spin_lock_irqsave (&dev->lock, flags); |
| 1601 | netif_stop_queue (dev->net); |
| 1602 | netif_carrier_off (dev->net); |
| 1603 | eth_reset_config (dev); |
| 1604 | spin_unlock_irqrestore (&dev->lock, flags); |
| 1605 | |
| 1606 | /* FIXME RNDIS should enter RNDIS_UNINITIALIZED */ |
| 1607 | |
| 1608 | /* next we may get setup() calls to enumerate new connections; |
| 1609 | * or an unbind() during shutdown (including removing module). |
| 1610 | */ |
| 1611 | } |
| 1612 | |
| 1613 | /*-------------------------------------------------------------------------*/ |
| 1614 | |
| 1615 | /* NETWORK DRIVER HOOKUP (to the layer above this driver) */ |
| 1616 | |
| 1617 | static int eth_change_mtu (struct net_device *net, int new_mtu) |
| 1618 | { |
| 1619 | struct eth_dev *dev = netdev_priv(net); |
| 1620 | |
David Brownell | 7802ac5 | 2006-01-22 10:33:27 -0800 | [diff] [blame] | 1621 | if (dev->rndis) |
| 1622 | return -EBUSY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1623 | |
| 1624 | if (new_mtu <= ETH_HLEN || new_mtu > ETH_FRAME_LEN) |
| 1625 | return -ERANGE; |
| 1626 | /* no zero-length packet read wanted after mtu-sized packets */ |
| 1627 | if (((new_mtu + sizeof (struct ethhdr)) % dev->in_ep->maxpacket) == 0) |
| 1628 | return -EDOM; |
| 1629 | net->mtu = new_mtu; |
| 1630 | return 0; |
| 1631 | } |
| 1632 | |
| 1633 | static struct net_device_stats *eth_get_stats (struct net_device *net) |
| 1634 | { |
| 1635 | return &((struct eth_dev *)netdev_priv(net))->stats; |
| 1636 | } |
| 1637 | |
| 1638 | static void eth_get_drvinfo(struct net_device *net, struct ethtool_drvinfo *p) |
| 1639 | { |
| 1640 | struct eth_dev *dev = netdev_priv(net); |
| 1641 | strlcpy(p->driver, shortname, sizeof p->driver); |
| 1642 | strlcpy(p->version, DRIVER_VERSION, sizeof p->version); |
| 1643 | strlcpy(p->fw_version, dev->gadget->name, sizeof p->fw_version); |
| 1644 | strlcpy (p->bus_info, dev->gadget->dev.bus_id, sizeof p->bus_info); |
| 1645 | } |
| 1646 | |
| 1647 | static u32 eth_get_link(struct net_device *net) |
| 1648 | { |
| 1649 | struct eth_dev *dev = netdev_priv(net); |
| 1650 | return dev->gadget->speed != USB_SPEED_UNKNOWN; |
| 1651 | } |
| 1652 | |
| 1653 | static struct ethtool_ops ops = { |
| 1654 | .get_drvinfo = eth_get_drvinfo, |
| 1655 | .get_link = eth_get_link |
| 1656 | }; |
| 1657 | |
| 1658 | static void defer_kevent (struct eth_dev *dev, int flag) |
| 1659 | { |
| 1660 | if (test_and_set_bit (flag, &dev->todo)) |
| 1661 | return; |
| 1662 | if (!schedule_work (&dev->work)) |
| 1663 | ERROR (dev, "kevent %d may have been dropped\n", flag); |
| 1664 | else |
| 1665 | DEBUG (dev, "kevent %d scheduled\n", flag); |
| 1666 | } |
| 1667 | |
| 1668 | static void rx_complete (struct usb_ep *ep, struct usb_request *req); |
| 1669 | |
| 1670 | static int |
Al Viro | 55016f1 | 2005-10-21 03:21:58 -0400 | [diff] [blame] | 1671 | rx_submit (struct eth_dev *dev, struct usb_request *req, gfp_t gfp_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1672 | { |
| 1673 | struct sk_buff *skb; |
| 1674 | int retval = -ENOMEM; |
| 1675 | size_t size; |
| 1676 | |
| 1677 | /* Padding up to RX_EXTRA handles minor disagreements with host. |
| 1678 | * Normally we use the USB "terminate on short read" convention; |
| 1679 | * so allow up to (N*maxpacket), since that memory is normally |
| 1680 | * already allocated. Some hardware doesn't deal well with short |
| 1681 | * reads (e.g. DMA must be N*maxpacket), so for now don't trim a |
| 1682 | * byte off the end (to force hardware errors on overflow). |
| 1683 | * |
| 1684 | * RNDIS uses internal framing, and explicitly allows senders to |
| 1685 | * pad to end-of-packet. That's potentially nice for speed, |
| 1686 | * but means receivers can't recover synch on their own. |
| 1687 | */ |
| 1688 | size = (sizeof (struct ethhdr) + dev->net->mtu + RX_EXTRA); |
| 1689 | size += dev->out_ep->maxpacket - 1; |
David Brownell | 907cba3 | 2005-04-28 13:48:09 -0700 | [diff] [blame] | 1690 | if (rndis_active(dev)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1691 | size += sizeof (struct rndis_packet_msg_type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1692 | size -= size % dev->out_ep->maxpacket; |
| 1693 | |
David Brownell | a947522 | 2007-07-30 12:31:07 -0700 | [diff] [blame] | 1694 | skb = alloc_skb(size + NET_IP_ALIGN, gfp_flags); |
| 1695 | if (skb == NULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1696 | DEBUG (dev, "no rx skb\n"); |
| 1697 | goto enomem; |
| 1698 | } |
David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 1699 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1700 | /* Some platforms perform better when IP packets are aligned, |
| 1701 | * but on at least one, checksumming fails otherwise. Note: |
David Brownell | 6cdee10 | 2005-04-18 17:39:34 -0700 | [diff] [blame] | 1702 | * RNDIS headers involve variable numbers of LE32 values. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1703 | */ |
| 1704 | skb_reserve(skb, NET_IP_ALIGN); |
| 1705 | |
| 1706 | req->buf = skb->data; |
| 1707 | req->length = size; |
| 1708 | req->complete = rx_complete; |
| 1709 | req->context = skb; |
| 1710 | |
| 1711 | retval = usb_ep_queue (dev->out_ep, req, gfp_flags); |
| 1712 | if (retval == -ENOMEM) |
| 1713 | enomem: |
| 1714 | defer_kevent (dev, WORK_RX_MEMORY); |
| 1715 | if (retval) { |
| 1716 | DEBUG (dev, "rx submit --> %d\n", retval); |
Erik Hovland | b8d297c | 2007-04-23 10:50:15 -0700 | [diff] [blame] | 1717 | if (skb) |
| 1718 | dev_kfree_skb_any(skb); |
David Brownell | 789851c | 2006-08-21 15:26:38 -0700 | [diff] [blame] | 1719 | spin_lock(&dev->req_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1720 | list_add (&req->list, &dev->rx_reqs); |
David Brownell | 789851c | 2006-08-21 15:26:38 -0700 | [diff] [blame] | 1721 | spin_unlock(&dev->req_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1722 | } |
| 1723 | return retval; |
| 1724 | } |
| 1725 | |
| 1726 | static void rx_complete (struct usb_ep *ep, struct usb_request *req) |
| 1727 | { |
| 1728 | struct sk_buff *skb = req->context; |
| 1729 | struct eth_dev *dev = ep->driver_data; |
| 1730 | int status = req->status; |
| 1731 | |
| 1732 | switch (status) { |
| 1733 | |
| 1734 | /* normal completion */ |
| 1735 | case 0: |
| 1736 | skb_put (skb, req->actual); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1737 | /* we know MaxPacketsPerTransfer == 1 here */ |
David Brownell | 45e45ab | 2005-05-16 08:26:38 -0700 | [diff] [blame] | 1738 | if (rndis_active(dev)) |
David Brownell | 6cdee10 | 2005-04-18 17:39:34 -0700 | [diff] [blame] | 1739 | status = rndis_rm_hdr (skb); |
David Brownell | 6cdee10 | 2005-04-18 17:39:34 -0700 | [diff] [blame] | 1740 | if (status < 0 |
| 1741 | || ETH_HLEN > skb->len |
| 1742 | || skb->len > ETH_FRAME_LEN) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1743 | dev->stats.rx_errors++; |
| 1744 | dev->stats.rx_length_errors++; |
| 1745 | DEBUG (dev, "rx length %d\n", skb->len); |
| 1746 | break; |
| 1747 | } |
| 1748 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1749 | skb->protocol = eth_type_trans (skb, dev->net); |
| 1750 | dev->stats.rx_packets++; |
| 1751 | dev->stats.rx_bytes += skb->len; |
| 1752 | |
| 1753 | /* no buffer copies needed, unless hardware can't |
| 1754 | * use skb buffers. |
| 1755 | */ |
| 1756 | status = netif_rx (skb); |
| 1757 | skb = NULL; |
| 1758 | break; |
| 1759 | |
| 1760 | /* software-driven interface shutdown */ |
| 1761 | case -ECONNRESET: // unlink |
| 1762 | case -ESHUTDOWN: // disconnect etc |
| 1763 | VDEBUG (dev, "rx shutdown, code %d\n", status); |
| 1764 | goto quiesce; |
| 1765 | |
| 1766 | /* for hardware automagic (such as pxa) */ |
| 1767 | case -ECONNABORTED: // endpoint reset |
| 1768 | DEBUG (dev, "rx %s reset\n", ep->name); |
| 1769 | defer_kevent (dev, WORK_RX_MEMORY); |
| 1770 | quiesce: |
| 1771 | dev_kfree_skb_any (skb); |
| 1772 | goto clean; |
| 1773 | |
| 1774 | /* data overrun */ |
| 1775 | case -EOVERFLOW: |
| 1776 | dev->stats.rx_over_errors++; |
| 1777 | // FALLTHROUGH |
David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 1778 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1779 | default: |
| 1780 | dev->stats.rx_errors++; |
| 1781 | DEBUG (dev, "rx status %d\n", status); |
| 1782 | break; |
| 1783 | } |
| 1784 | |
| 1785 | if (skb) |
| 1786 | dev_kfree_skb_any (skb); |
| 1787 | if (!netif_running (dev->net)) { |
| 1788 | clean: |
David Brownell | 789851c | 2006-08-21 15:26:38 -0700 | [diff] [blame] | 1789 | spin_lock(&dev->req_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1790 | list_add (&req->list, &dev->rx_reqs); |
David Brownell | 789851c | 2006-08-21 15:26:38 -0700 | [diff] [blame] | 1791 | spin_unlock(&dev->req_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1792 | req = NULL; |
| 1793 | } |
| 1794 | if (req) |
| 1795 | rx_submit (dev, req, GFP_ATOMIC); |
| 1796 | } |
| 1797 | |
| 1798 | static int prealloc (struct list_head *list, struct usb_ep *ep, |
Al Viro | 55016f1 | 2005-10-21 03:21:58 -0400 | [diff] [blame] | 1799 | unsigned n, gfp_t gfp_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1800 | { |
| 1801 | unsigned i; |
| 1802 | struct usb_request *req; |
| 1803 | |
| 1804 | if (!n) |
| 1805 | return -ENOMEM; |
| 1806 | |
| 1807 | /* queue/recycle up to N requests */ |
| 1808 | i = n; |
| 1809 | list_for_each_entry (req, list, list) { |
| 1810 | if (i-- == 0) |
| 1811 | goto extra; |
| 1812 | } |
| 1813 | while (i--) { |
| 1814 | req = usb_ep_alloc_request (ep, gfp_flags); |
| 1815 | if (!req) |
| 1816 | return list_empty (list) ? -ENOMEM : 0; |
| 1817 | list_add (&req->list, list); |
| 1818 | } |
| 1819 | return 0; |
| 1820 | |
| 1821 | extra: |
| 1822 | /* free extras */ |
| 1823 | for (;;) { |
| 1824 | struct list_head *next; |
| 1825 | |
| 1826 | next = req->list.next; |
| 1827 | list_del (&req->list); |
| 1828 | usb_ep_free_request (ep, req); |
| 1829 | |
| 1830 | if (next == list) |
| 1831 | break; |
| 1832 | |
| 1833 | req = container_of (next, struct usb_request, list); |
| 1834 | } |
| 1835 | return 0; |
| 1836 | } |
| 1837 | |
Al Viro | 55016f1 | 2005-10-21 03:21:58 -0400 | [diff] [blame] | 1838 | static int alloc_requests (struct eth_dev *dev, unsigned n, gfp_t gfp_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1839 | { |
| 1840 | int status; |
| 1841 | |
David Brownell | 789851c | 2006-08-21 15:26:38 -0700 | [diff] [blame] | 1842 | spin_lock(&dev->req_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1843 | status = prealloc (&dev->tx_reqs, dev->in_ep, n, gfp_flags); |
| 1844 | if (status < 0) |
| 1845 | goto fail; |
| 1846 | status = prealloc (&dev->rx_reqs, dev->out_ep, n, gfp_flags); |
| 1847 | if (status < 0) |
| 1848 | goto fail; |
David Brownell | 789851c | 2006-08-21 15:26:38 -0700 | [diff] [blame] | 1849 | goto done; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1850 | fail: |
| 1851 | DEBUG (dev, "can't alloc requests\n"); |
David Brownell | 789851c | 2006-08-21 15:26:38 -0700 | [diff] [blame] | 1852 | done: |
| 1853 | spin_unlock(&dev->req_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1854 | return status; |
| 1855 | } |
| 1856 | |
Al Viro | 55016f1 | 2005-10-21 03:21:58 -0400 | [diff] [blame] | 1857 | static void rx_fill (struct eth_dev *dev, gfp_t gfp_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1858 | { |
| 1859 | struct usb_request *req; |
| 1860 | unsigned long flags; |
| 1861 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1862 | /* fill unused rxq slots with some skb */ |
David Brownell | 789851c | 2006-08-21 15:26:38 -0700 | [diff] [blame] | 1863 | spin_lock_irqsave(&dev->req_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1864 | while (!list_empty (&dev->rx_reqs)) { |
| 1865 | req = container_of (dev->rx_reqs.next, |
| 1866 | struct usb_request, list); |
| 1867 | list_del_init (&req->list); |
David Brownell | 789851c | 2006-08-21 15:26:38 -0700 | [diff] [blame] | 1868 | spin_unlock_irqrestore(&dev->req_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1869 | |
| 1870 | if (rx_submit (dev, req, gfp_flags) < 0) { |
| 1871 | defer_kevent (dev, WORK_RX_MEMORY); |
| 1872 | return; |
| 1873 | } |
| 1874 | |
David Brownell | 789851c | 2006-08-21 15:26:38 -0700 | [diff] [blame] | 1875 | spin_lock_irqsave(&dev->req_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1876 | } |
David Brownell | 789851c | 2006-08-21 15:26:38 -0700 | [diff] [blame] | 1877 | spin_unlock_irqrestore(&dev->req_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1878 | } |
| 1879 | |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 1880 | static void eth_work (struct work_struct *work) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1881 | { |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 1882 | struct eth_dev *dev = container_of(work, struct eth_dev, work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1883 | |
David Brownell | 907cba3 | 2005-04-28 13:48:09 -0700 | [diff] [blame] | 1884 | if (test_and_clear_bit (WORK_RX_MEMORY, &dev->todo)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1885 | if (netif_running (dev->net)) |
| 1886 | rx_fill (dev, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1887 | } |
| 1888 | |
| 1889 | if (dev->todo) |
| 1890 | DEBUG (dev, "work done, flags = 0x%lx\n", dev->todo); |
| 1891 | } |
| 1892 | |
| 1893 | static void tx_complete (struct usb_ep *ep, struct usb_request *req) |
| 1894 | { |
| 1895 | struct sk_buff *skb = req->context; |
| 1896 | struct eth_dev *dev = ep->driver_data; |
| 1897 | |
| 1898 | switch (req->status) { |
| 1899 | default: |
| 1900 | dev->stats.tx_errors++; |
| 1901 | VDEBUG (dev, "tx err %d\n", req->status); |
| 1902 | /* FALLTHROUGH */ |
| 1903 | case -ECONNRESET: // unlink |
| 1904 | case -ESHUTDOWN: // disconnect etc |
| 1905 | break; |
| 1906 | case 0: |
| 1907 | dev->stats.tx_bytes += skb->len; |
| 1908 | } |
| 1909 | dev->stats.tx_packets++; |
| 1910 | |
David Brownell | 789851c | 2006-08-21 15:26:38 -0700 | [diff] [blame] | 1911 | spin_lock(&dev->req_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1912 | list_add (&req->list, &dev->tx_reqs); |
David Brownell | 789851c | 2006-08-21 15:26:38 -0700 | [diff] [blame] | 1913 | spin_unlock(&dev->req_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1914 | dev_kfree_skb_any (skb); |
| 1915 | |
| 1916 | atomic_dec (&dev->tx_qlen); |
| 1917 | if (netif_carrier_ok (dev->net)) |
| 1918 | netif_wake_queue (dev->net); |
| 1919 | } |
| 1920 | |
| 1921 | static inline int eth_is_promisc (struct eth_dev *dev) |
| 1922 | { |
| 1923 | /* no filters for the CDC subset; always promisc */ |
| 1924 | if (subset_active (dev)) |
| 1925 | return 1; |
| 1926 | return dev->cdc_filter & USB_CDC_PACKET_TYPE_PROMISCUOUS; |
| 1927 | } |
| 1928 | |
| 1929 | static int eth_start_xmit (struct sk_buff *skb, struct net_device *net) |
| 1930 | { |
| 1931 | struct eth_dev *dev = netdev_priv(net); |
| 1932 | int length = skb->len; |
| 1933 | int retval; |
| 1934 | struct usb_request *req = NULL; |
| 1935 | unsigned long flags; |
| 1936 | |
| 1937 | /* apply outgoing CDC or RNDIS filters */ |
| 1938 | if (!eth_is_promisc (dev)) { |
| 1939 | u8 *dest = skb->data; |
| 1940 | |
David Brownell | d8126a0 | 2006-11-12 18:09:44 -0800 | [diff] [blame] | 1941 | if (is_multicast_ether_addr(dest)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1942 | u16 type; |
| 1943 | |
| 1944 | /* ignores USB_CDC_PACKET_TYPE_MULTICAST and host |
| 1945 | * SET_ETHERNET_MULTICAST_FILTERS requests |
| 1946 | */ |
David Brownell | d8126a0 | 2006-11-12 18:09:44 -0800 | [diff] [blame] | 1947 | if (is_broadcast_ether_addr(dest)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1948 | type = USB_CDC_PACKET_TYPE_BROADCAST; |
| 1949 | else |
| 1950 | type = USB_CDC_PACKET_TYPE_ALL_MULTICAST; |
| 1951 | if (!(dev->cdc_filter & type)) { |
| 1952 | dev_kfree_skb_any (skb); |
| 1953 | return 0; |
| 1954 | } |
| 1955 | } |
| 1956 | /* ignores USB_CDC_PACKET_TYPE_DIRECTED */ |
| 1957 | } |
| 1958 | |
David Brownell | 789851c | 2006-08-21 15:26:38 -0700 | [diff] [blame] | 1959 | spin_lock_irqsave(&dev->req_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1960 | req = container_of (dev->tx_reqs.next, struct usb_request, list); |
| 1961 | list_del (&req->list); |
| 1962 | if (list_empty (&dev->tx_reqs)) |
| 1963 | netif_stop_queue (net); |
David Brownell | 789851c | 2006-08-21 15:26:38 -0700 | [diff] [blame] | 1964 | spin_unlock_irqrestore(&dev->req_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1965 | |
| 1966 | /* no buffer copies needed, unless the network stack did it |
| 1967 | * or the hardware can't use skb buffers. |
| 1968 | * or there's not enough space for any RNDIS headers we need |
| 1969 | */ |
David Brownell | 45e45ab | 2005-05-16 08:26:38 -0700 | [diff] [blame] | 1970 | if (rndis_active(dev)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1971 | struct sk_buff *skb_rndis; |
| 1972 | |
| 1973 | skb_rndis = skb_realloc_headroom (skb, |
| 1974 | sizeof (struct rndis_packet_msg_type)); |
| 1975 | if (!skb_rndis) |
| 1976 | goto drop; |
David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 1977 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1978 | dev_kfree_skb_any (skb); |
| 1979 | skb = skb_rndis; |
| 1980 | rndis_add_hdr (skb); |
| 1981 | length = skb->len; |
| 1982 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1983 | req->buf = skb->data; |
| 1984 | req->context = skb; |
| 1985 | req->complete = tx_complete; |
| 1986 | |
| 1987 | /* use zlp framing on tx for strict CDC-Ether conformance, |
| 1988 | * though any robust network rx path ignores extra padding. |
| 1989 | * and some hardware doesn't like to write zlps. |
| 1990 | */ |
| 1991 | req->zero = 1; |
| 1992 | if (!dev->zlp && (length % dev->in_ep->maxpacket) == 0) |
| 1993 | length++; |
| 1994 | |
| 1995 | req->length = length; |
| 1996 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1997 | /* throttle highspeed IRQ rate back slightly */ |
David Brownell | 0cf4f2d | 2007-08-02 00:00:38 -0700 | [diff] [blame^] | 1998 | if (gadget_is_dualspeed(dev->gadget)) |
| 1999 | req->no_interrupt = (dev->gadget->speed == USB_SPEED_HIGH) |
| 2000 | ? ((atomic_read(&dev->tx_qlen) % qmult) != 0) |
| 2001 | : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2002 | |
| 2003 | retval = usb_ep_queue (dev->in_ep, req, GFP_ATOMIC); |
| 2004 | switch (retval) { |
| 2005 | default: |
| 2006 | DEBUG (dev, "tx queue err %d\n", retval); |
| 2007 | break; |
| 2008 | case 0: |
| 2009 | net->trans_start = jiffies; |
| 2010 | atomic_inc (&dev->tx_qlen); |
| 2011 | } |
| 2012 | |
| 2013 | if (retval) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2014 | drop: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2015 | dev->stats.tx_dropped++; |
| 2016 | dev_kfree_skb_any (skb); |
David Brownell | 789851c | 2006-08-21 15:26:38 -0700 | [diff] [blame] | 2017 | spin_lock_irqsave(&dev->req_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2018 | if (list_empty (&dev->tx_reqs)) |
| 2019 | netif_start_queue (net); |
| 2020 | list_add (&req->list, &dev->tx_reqs); |
David Brownell | 789851c | 2006-08-21 15:26:38 -0700 | [diff] [blame] | 2021 | spin_unlock_irqrestore(&dev->req_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2022 | } |
| 2023 | return 0; |
| 2024 | } |
| 2025 | |
| 2026 | /*-------------------------------------------------------------------------*/ |
| 2027 | |
| 2028 | #ifdef CONFIG_USB_ETH_RNDIS |
| 2029 | |
David Brownell | 907cba3 | 2005-04-28 13:48:09 -0700 | [diff] [blame] | 2030 | /* The interrupt endpoint is used in RNDIS to notify the host when messages |
| 2031 | * other than data packets are available ... notably the REMOTE_NDIS_*_CMPLT |
| 2032 | * messages, but also REMOTE_NDIS_INDICATE_STATUS_MSG and potentially even |
| 2033 | * REMOTE_NDIS_KEEPALIVE_MSG. |
| 2034 | * |
| 2035 | * The RNDIS control queue is processed by GET_ENCAPSULATED_RESPONSE, and |
| 2036 | * normally just one notification will be queued. |
| 2037 | */ |
| 2038 | |
Al Viro | 55016f1 | 2005-10-21 03:21:58 -0400 | [diff] [blame] | 2039 | static struct usb_request *eth_req_alloc (struct usb_ep *, unsigned, gfp_t); |
David Brownell | 907cba3 | 2005-04-28 13:48:09 -0700 | [diff] [blame] | 2040 | static void eth_req_free (struct usb_ep *ep, struct usb_request *req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2041 | |
| 2042 | static void |
| 2043 | rndis_control_ack_complete (struct usb_ep *ep, struct usb_request *req) |
| 2044 | { |
David Brownell | 907cba3 | 2005-04-28 13:48:09 -0700 | [diff] [blame] | 2045 | struct eth_dev *dev = ep->driver_data; |
| 2046 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2047 | if (req->status || req->actual != req->length) |
David Brownell | 907cba3 | 2005-04-28 13:48:09 -0700 | [diff] [blame] | 2048 | DEBUG (dev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2049 | "rndis control ack complete --> %d, %d/%d\n", |
| 2050 | req->status, req->actual, req->length); |
David Brownell | 907cba3 | 2005-04-28 13:48:09 -0700 | [diff] [blame] | 2051 | req->context = NULL; |
| 2052 | |
| 2053 | if (req != dev->stat_req) |
| 2054 | eth_req_free(ep, req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2055 | } |
| 2056 | |
| 2057 | static int rndis_control_ack (struct net_device *net) |
| 2058 | { |
| 2059 | struct eth_dev *dev = netdev_priv(net); |
Eric Sesterhenn | 5535902 | 2006-08-21 15:31:05 -0700 | [diff] [blame] | 2060 | int length; |
David Brownell | 6cdee10 | 2005-04-18 17:39:34 -0700 | [diff] [blame] | 2061 | struct usb_request *resp = dev->stat_req; |
David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 2062 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2063 | /* in case RNDIS calls this after disconnect */ |
David Brownell | 6cdee10 | 2005-04-18 17:39:34 -0700 | [diff] [blame] | 2064 | if (!dev->status) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2065 | DEBUG (dev, "status ENODEV\n"); |
| 2066 | return -ENODEV; |
| 2067 | } |
| 2068 | |
David Brownell | 907cba3 | 2005-04-28 13:48:09 -0700 | [diff] [blame] | 2069 | /* in case queue length > 1 */ |
| 2070 | if (resp->context) { |
| 2071 | resp = eth_req_alloc (dev->status_ep, 8, GFP_ATOMIC); |
| 2072 | if (!resp) |
| 2073 | return -ENOMEM; |
| 2074 | } |
| 2075 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2076 | /* Send RNDIS RESPONSE_AVAILABLE notification; |
| 2077 | * USB_CDC_NOTIFY_RESPONSE_AVAILABLE should work too |
| 2078 | */ |
| 2079 | resp->length = 8; |
| 2080 | resp->complete = rndis_control_ack_complete; |
David Brownell | 907cba3 | 2005-04-28 13:48:09 -0700 | [diff] [blame] | 2081 | resp->context = dev; |
David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 2082 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2083 | *((__le32 *) resp->buf) = __constant_cpu_to_le32 (1); |
| 2084 | *((__le32 *) resp->buf + 1) = __constant_cpu_to_le32 (0); |
David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 2085 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2086 | length = usb_ep_queue (dev->status_ep, resp, GFP_ATOMIC); |
| 2087 | if (length < 0) { |
| 2088 | resp->status = 0; |
| 2089 | rndis_control_ack_complete (dev->status_ep, resp); |
| 2090 | } |
David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 2091 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2092 | return 0; |
| 2093 | } |
| 2094 | |
David Brownell | 45e45ab | 2005-05-16 08:26:38 -0700 | [diff] [blame] | 2095 | #else |
| 2096 | |
| 2097 | #define rndis_control_ack NULL |
| 2098 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2099 | #endif /* RNDIS */ |
| 2100 | |
Al Viro | 55016f1 | 2005-10-21 03:21:58 -0400 | [diff] [blame] | 2101 | static void eth_start (struct eth_dev *dev, gfp_t gfp_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2102 | { |
| 2103 | DEBUG (dev, "%s\n", __FUNCTION__); |
| 2104 | |
| 2105 | /* fill the rx queue */ |
| 2106 | rx_fill (dev, gfp_flags); |
| 2107 | |
David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 2108 | /* and open the tx floodgates */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2109 | atomic_set (&dev->tx_qlen, 0); |
| 2110 | netif_wake_queue (dev->net); |
David Brownell | 45e45ab | 2005-05-16 08:26:38 -0700 | [diff] [blame] | 2111 | if (rndis_active(dev)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2112 | rndis_set_param_medium (dev->rndis_config, |
| 2113 | NDIS_MEDIUM_802_3, |
David Brownell | 6cdee10 | 2005-04-18 17:39:34 -0700 | [diff] [blame] | 2114 | BITRATE(dev->gadget)/100); |
David Brownell | 907cba3 | 2005-04-28 13:48:09 -0700 | [diff] [blame] | 2115 | (void) rndis_signal_connect (dev->rndis_config); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2116 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2117 | } |
| 2118 | |
| 2119 | static int eth_open (struct net_device *net) |
| 2120 | { |
| 2121 | struct eth_dev *dev = netdev_priv(net); |
| 2122 | |
| 2123 | DEBUG (dev, "%s\n", __FUNCTION__); |
| 2124 | if (netif_carrier_ok (dev->net)) |
| 2125 | eth_start (dev, GFP_KERNEL); |
| 2126 | return 0; |
| 2127 | } |
| 2128 | |
| 2129 | static int eth_stop (struct net_device *net) |
| 2130 | { |
| 2131 | struct eth_dev *dev = netdev_priv(net); |
| 2132 | |
| 2133 | VDEBUG (dev, "%s\n", __FUNCTION__); |
| 2134 | netif_stop_queue (net); |
| 2135 | |
| 2136 | DEBUG (dev, "stop stats: rx/tx %ld/%ld, errs %ld/%ld\n", |
David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 2137 | dev->stats.rx_packets, dev->stats.tx_packets, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2138 | dev->stats.rx_errors, dev->stats.tx_errors |
| 2139 | ); |
| 2140 | |
| 2141 | /* ensure there are no more active requests */ |
| 2142 | if (dev->config) { |
| 2143 | usb_ep_disable (dev->in_ep); |
| 2144 | usb_ep_disable (dev->out_ep); |
| 2145 | if (netif_carrier_ok (dev->net)) { |
| 2146 | DEBUG (dev, "host still using in/out endpoints\n"); |
| 2147 | // FIXME idiom may leave toggle wrong here |
| 2148 | usb_ep_enable (dev->in_ep, dev->in); |
| 2149 | usb_ep_enable (dev->out_ep, dev->out); |
| 2150 | } |
| 2151 | if (dev->status_ep) { |
| 2152 | usb_ep_disable (dev->status_ep); |
| 2153 | usb_ep_enable (dev->status_ep, dev->status); |
| 2154 | } |
| 2155 | } |
David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 2156 | |
David Brownell | 45e45ab | 2005-05-16 08:26:38 -0700 | [diff] [blame] | 2157 | if (rndis_active(dev)) { |
David Brownell | 0cf4f2d | 2007-08-02 00:00:38 -0700 | [diff] [blame^] | 2158 | rndis_set_param_medium(dev->rndis_config, NDIS_MEDIUM_802_3, 0); |
David Brownell | 907cba3 | 2005-04-28 13:48:09 -0700 | [diff] [blame] | 2159 | (void) rndis_signal_disconnect (dev->rndis_config); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2160 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2161 | |
| 2162 | return 0; |
| 2163 | } |
| 2164 | |
| 2165 | /*-------------------------------------------------------------------------*/ |
| 2166 | |
David Brownell | 907cba3 | 2005-04-28 13:48:09 -0700 | [diff] [blame] | 2167 | static struct usb_request * |
Al Viro | 55016f1 | 2005-10-21 03:21:58 -0400 | [diff] [blame] | 2168 | eth_req_alloc (struct usb_ep *ep, unsigned size, gfp_t gfp_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2169 | { |
| 2170 | struct usb_request *req; |
| 2171 | |
David Brownell | 907cba3 | 2005-04-28 13:48:09 -0700 | [diff] [blame] | 2172 | req = usb_ep_alloc_request (ep, gfp_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2173 | if (!req) |
| 2174 | return NULL; |
| 2175 | |
David Brownell | 907cba3 | 2005-04-28 13:48:09 -0700 | [diff] [blame] | 2176 | req->buf = kmalloc (size, gfp_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2177 | if (!req->buf) { |
| 2178 | usb_ep_free_request (ep, req); |
| 2179 | req = NULL; |
| 2180 | } |
| 2181 | return req; |
| 2182 | } |
| 2183 | |
| 2184 | static void |
| 2185 | eth_req_free (struct usb_ep *ep, struct usb_request *req) |
| 2186 | { |
| 2187 | kfree (req->buf); |
| 2188 | usb_ep_free_request (ep, req); |
| 2189 | } |
| 2190 | |
| 2191 | |
David Brownell | a353678 | 2006-07-06 15:48:53 -0700 | [diff] [blame] | 2192 | static void /* __init_or_exit */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2193 | eth_unbind (struct usb_gadget *gadget) |
| 2194 | { |
| 2195 | struct eth_dev *dev = get_gadget_data (gadget); |
| 2196 | |
| 2197 | DEBUG (dev, "unbind\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2198 | rndis_deregister (dev->rndis_config); |
| 2199 | rndis_exit (); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2200 | |
| 2201 | /* we've already been disconnected ... no i/o is active */ |
| 2202 | if (dev->req) { |
| 2203 | eth_req_free (gadget->ep0, dev->req); |
| 2204 | dev->req = NULL; |
| 2205 | } |
| 2206 | if (dev->stat_req) { |
| 2207 | eth_req_free (dev->status_ep, dev->stat_req); |
| 2208 | dev->stat_req = NULL; |
| 2209 | } |
| 2210 | |
| 2211 | unregister_netdev (dev->net); |
| 2212 | free_netdev(dev->net); |
| 2213 | |
| 2214 | /* assuming we used keventd, it must quiesce too */ |
| 2215 | flush_scheduled_work (); |
| 2216 | set_gadget_data (gadget, NULL); |
| 2217 | } |
| 2218 | |
David Brownell | a353678 | 2006-07-06 15:48:53 -0700 | [diff] [blame] | 2219 | static u8 __devinit nibble (unsigned char c) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2220 | { |
| 2221 | if (likely (isdigit (c))) |
| 2222 | return c - '0'; |
| 2223 | c = toupper (c); |
| 2224 | if (likely (isxdigit (c))) |
| 2225 | return 10 + c - 'A'; |
| 2226 | return 0; |
| 2227 | } |
| 2228 | |
David Brownell | a353678 | 2006-07-06 15:48:53 -0700 | [diff] [blame] | 2229 | static int __devinit get_ether_addr(const char *str, u8 *dev_addr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2230 | { |
| 2231 | if (str) { |
| 2232 | unsigned i; |
| 2233 | |
| 2234 | for (i = 0; i < 6; i++) { |
| 2235 | unsigned char num; |
| 2236 | |
| 2237 | if((*str == '.') || (*str == ':')) |
| 2238 | str++; |
| 2239 | num = nibble(*str++) << 4; |
| 2240 | num |= (nibble(*str++)); |
| 2241 | dev_addr [i] = num; |
| 2242 | } |
| 2243 | if (is_valid_ether_addr (dev_addr)) |
Aras Vaichas | 1afc64a | 2006-02-18 12:31:23 -0800 | [diff] [blame] | 2244 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2245 | } |
| 2246 | random_ether_addr(dev_addr); |
Aras Vaichas | 1afc64a | 2006-02-18 12:31:23 -0800 | [diff] [blame] | 2247 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2248 | } |
| 2249 | |
David Brownell | a353678 | 2006-07-06 15:48:53 -0700 | [diff] [blame] | 2250 | static int __devinit |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2251 | eth_bind (struct usb_gadget *gadget) |
| 2252 | { |
| 2253 | struct eth_dev *dev; |
| 2254 | struct net_device *net; |
| 2255 | u8 cdc = 1, zlp = 1, rndis = 1; |
| 2256 | struct usb_ep *in_ep, *out_ep, *status_ep = NULL; |
| 2257 | int status = -ENOMEM; |
David Brownell | 91e79c9 | 2005-07-13 15:18:30 -0700 | [diff] [blame] | 2258 | int gcnum; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2259 | |
| 2260 | /* these flags are only ever cleared; compiler take note */ |
| 2261 | #ifndef DEV_CONFIG_CDC |
| 2262 | cdc = 0; |
| 2263 | #endif |
| 2264 | #ifndef CONFIG_USB_ETH_RNDIS |
| 2265 | rndis = 0; |
| 2266 | #endif |
| 2267 | |
| 2268 | /* Because most host side USB stacks handle CDC Ethernet, that |
| 2269 | * standard protocol is _strongly_ preferred for interop purposes. |
| 2270 | * (By everyone except Microsoft.) |
| 2271 | */ |
David Brownell | 91e79c9 | 2005-07-13 15:18:30 -0700 | [diff] [blame] | 2272 | if (gadget_is_pxa (gadget)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2273 | /* pxa doesn't support altsettings */ |
| 2274 | cdc = 0; |
David Brownell | 729ed6d | 2006-08-30 13:24:56 -0700 | [diff] [blame] | 2275 | } else if (gadget_is_musbhdrc(gadget)) { |
| 2276 | /* reduce tx dma overhead by avoiding special cases */ |
| 2277 | zlp = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2278 | } else if (gadget_is_sh(gadget)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2279 | /* sh doesn't support multiple interfaces or configs */ |
| 2280 | cdc = 0; |
| 2281 | rndis = 0; |
| 2282 | } else if (gadget_is_sa1100 (gadget)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2283 | /* hardware can't write zlps */ |
| 2284 | zlp = 0; |
| 2285 | /* sa1100 CAN do CDC, without status endpoint ... we use |
| 2286 | * non-CDC to be compatible with ARM Linux-2.4 "usb-eth". |
| 2287 | */ |
| 2288 | cdc = 0; |
David Brownell | 91e79c9 | 2005-07-13 15:18:30 -0700 | [diff] [blame] | 2289 | } |
| 2290 | |
| 2291 | gcnum = usb_gadget_controller_number (gadget); |
| 2292 | if (gcnum >= 0) |
| 2293 | device_desc.bcdDevice = cpu_to_le16 (0x0200 + gcnum); |
| 2294 | else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2295 | /* can't assume CDC works. don't want to default to |
| 2296 | * anything less functional on CDC-capable hardware, |
| 2297 | * so we fail in this case. |
| 2298 | */ |
| 2299 | dev_err (&gadget->dev, |
| 2300 | "controller '%s' not recognized\n", |
| 2301 | gadget->name); |
| 2302 | return -ENODEV; |
| 2303 | } |
| 2304 | snprintf (manufacturer, sizeof manufacturer, "%s %s/%s", |
Serge E. Hallyn | 96b644b | 2006-10-02 02:18:13 -0700 | [diff] [blame] | 2305 | init_utsname()->sysname, init_utsname()->release, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2306 | gadget->name); |
| 2307 | |
| 2308 | /* If there's an RNDIS configuration, that's what Windows wants to |
| 2309 | * be using ... so use these product IDs here and in the "linux.inf" |
| 2310 | * needed to install MSFT drivers. Current Linux kernels will use |
| 2311 | * the second configuration if it's CDC Ethernet, and need some help |
| 2312 | * to choose the right configuration otherwise. |
| 2313 | */ |
| 2314 | if (rndis) { |
| 2315 | device_desc.idVendor = |
| 2316 | __constant_cpu_to_le16(RNDIS_VENDOR_NUM); |
| 2317 | device_desc.idProduct = |
| 2318 | __constant_cpu_to_le16(RNDIS_PRODUCT_NUM); |
| 2319 | snprintf (product_desc, sizeof product_desc, |
| 2320 | "RNDIS/%s", driver_desc); |
| 2321 | |
| 2322 | /* CDC subset ... recognized by Linux since 2.4.10, but Windows |
David Brownell | 11d5489 | 2006-12-11 15:59:04 -0800 | [diff] [blame] | 2323 | * drivers aren't widely available. (That may be improved by |
| 2324 | * supporting one submode of the "SAFE" variant of MDLM.) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2325 | */ |
| 2326 | } else if (!cdc) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2327 | device_desc.idVendor = |
| 2328 | __constant_cpu_to_le16(SIMPLE_VENDOR_NUM); |
| 2329 | device_desc.idProduct = |
| 2330 | __constant_cpu_to_le16(SIMPLE_PRODUCT_NUM); |
| 2331 | } |
| 2332 | |
| 2333 | /* support optional vendor/distro customization */ |
| 2334 | if (idVendor) { |
| 2335 | if (!idProduct) { |
| 2336 | dev_err (&gadget->dev, "idVendor needs idProduct!\n"); |
| 2337 | return -ENODEV; |
| 2338 | } |
| 2339 | device_desc.idVendor = cpu_to_le16(idVendor); |
| 2340 | device_desc.idProduct = cpu_to_le16(idProduct); |
| 2341 | if (bcdDevice) |
| 2342 | device_desc.bcdDevice = cpu_to_le16(bcdDevice); |
| 2343 | } |
| 2344 | if (iManufacturer) |
| 2345 | strlcpy (manufacturer, iManufacturer, sizeof manufacturer); |
| 2346 | if (iProduct) |
| 2347 | strlcpy (product_desc, iProduct, sizeof product_desc); |
Aras Vaichas | 1afc64a | 2006-02-18 12:31:23 -0800 | [diff] [blame] | 2348 | if (iSerialNumber) { |
| 2349 | device_desc.iSerialNumber = STRING_SERIALNUMBER, |
| 2350 | strlcpy(serial_number, iSerialNumber, sizeof serial_number); |
| 2351 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2352 | |
| 2353 | /* all we really need is bulk IN/OUT */ |
| 2354 | usb_ep_autoconfig_reset (gadget); |
| 2355 | in_ep = usb_ep_autoconfig (gadget, &fs_source_desc); |
| 2356 | if (!in_ep) { |
| 2357 | autoconf_fail: |
| 2358 | dev_err (&gadget->dev, |
| 2359 | "can't autoconfigure on %s\n", |
| 2360 | gadget->name); |
| 2361 | return -ENODEV; |
| 2362 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2363 | in_ep->driver_data = in_ep; /* claim */ |
David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 2364 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2365 | out_ep = usb_ep_autoconfig (gadget, &fs_sink_desc); |
| 2366 | if (!out_ep) |
| 2367 | goto autoconf_fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2368 | out_ep->driver_data = out_ep; /* claim */ |
| 2369 | |
| 2370 | #if defined(DEV_CONFIG_CDC) || defined(CONFIG_USB_ETH_RNDIS) |
| 2371 | /* CDC Ethernet control interface doesn't require a status endpoint. |
| 2372 | * Since some hosts expect one, try to allocate one anyway. |
| 2373 | */ |
| 2374 | if (cdc || rndis) { |
| 2375 | status_ep = usb_ep_autoconfig (gadget, &fs_status_desc); |
| 2376 | if (status_ep) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2377 | status_ep->driver_data = status_ep; /* claim */ |
| 2378 | } else if (rndis) { |
| 2379 | dev_err (&gadget->dev, |
| 2380 | "can't run RNDIS on %s\n", |
| 2381 | gadget->name); |
| 2382 | return -ENODEV; |
| 2383 | #ifdef DEV_CONFIG_CDC |
| 2384 | /* pxa25x only does CDC subset; often used with RNDIS */ |
| 2385 | } else if (cdc) { |
| 2386 | control_intf.bNumEndpoints = 0; |
| 2387 | /* FIXME remove endpoint from descriptor list */ |
| 2388 | #endif |
| 2389 | } |
| 2390 | } |
| 2391 | #endif |
| 2392 | |
| 2393 | /* one config: cdc, else minimal subset */ |
| 2394 | if (!cdc) { |
| 2395 | eth_config.bNumInterfaces = 1; |
| 2396 | eth_config.iConfiguration = STRING_SUBSET; |
David Brownell | 11d5489 | 2006-12-11 15:59:04 -0800 | [diff] [blame] | 2397 | |
| 2398 | /* use functions to set these up, in case we're built to work |
| 2399 | * with multiple controllers and must override CDC Ethernet. |
| 2400 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2401 | fs_subset_descriptors(); |
| 2402 | hs_subset_descriptors(); |
| 2403 | } |
| 2404 | |
David Brownell | e1394b4 | 2006-04-02 10:20:43 -0800 | [diff] [blame] | 2405 | device_desc.bMaxPacketSize0 = gadget->ep0->maxpacket; |
| 2406 | usb_gadget_set_selfpowered (gadget); |
| 2407 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2408 | /* For now RNDIS is always a second config */ |
| 2409 | if (rndis) |
| 2410 | device_desc.bNumConfigurations = 2; |
| 2411 | |
David Brownell | 0cf4f2d | 2007-08-02 00:00:38 -0700 | [diff] [blame^] | 2412 | if (gadget_is_dualspeed(gadget)) { |
| 2413 | if (rndis) |
| 2414 | dev_qualifier.bNumConfigurations = 2; |
| 2415 | else if (!cdc) |
| 2416 | dev_qualifier.bDeviceClass = USB_CLASS_VENDOR_SPEC; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2417 | |
David Brownell | 0cf4f2d | 2007-08-02 00:00:38 -0700 | [diff] [blame^] | 2418 | /* assumes ep0 uses the same value for both speeds ... */ |
| 2419 | dev_qualifier.bMaxPacketSize0 = device_desc.bMaxPacketSize0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2420 | |
David Brownell | 0cf4f2d | 2007-08-02 00:00:38 -0700 | [diff] [blame^] | 2421 | /* and that all endpoints are dual-speed */ |
| 2422 | hs_source_desc.bEndpointAddress = |
| 2423 | fs_source_desc.bEndpointAddress; |
| 2424 | hs_sink_desc.bEndpointAddress = |
| 2425 | fs_sink_desc.bEndpointAddress; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2426 | #if defined(DEV_CONFIG_CDC) || defined(CONFIG_USB_ETH_RNDIS) |
David Brownell | 0cf4f2d | 2007-08-02 00:00:38 -0700 | [diff] [blame^] | 2427 | if (status_ep) |
| 2428 | hs_status_desc.bEndpointAddress = |
| 2429 | fs_status_desc.bEndpointAddress; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2430 | #endif |
David Brownell | 0cf4f2d | 2007-08-02 00:00:38 -0700 | [diff] [blame^] | 2431 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2432 | |
David Brownell | 0cf4f2d | 2007-08-02 00:00:38 -0700 | [diff] [blame^] | 2433 | if (gadget_is_otg(gadget)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2434 | otg_descriptor.bmAttributes |= USB_OTG_HNP, |
| 2435 | eth_config.bmAttributes |= USB_CONFIG_ATT_WAKEUP; |
| 2436 | eth_config.bMaxPower = 4; |
| 2437 | #ifdef CONFIG_USB_ETH_RNDIS |
| 2438 | rndis_config.bmAttributes |= USB_CONFIG_ATT_WAKEUP; |
| 2439 | rndis_config.bMaxPower = 4; |
| 2440 | #endif |
| 2441 | } |
| 2442 | |
David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 2443 | net = alloc_etherdev (sizeof *dev); |
| 2444 | if (!net) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2445 | return status; |
| 2446 | dev = netdev_priv(net); |
| 2447 | spin_lock_init (&dev->lock); |
David Brownell | 789851c | 2006-08-21 15:26:38 -0700 | [diff] [blame] | 2448 | spin_lock_init (&dev->req_lock); |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 2449 | INIT_WORK (&dev->work, eth_work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2450 | INIT_LIST_HEAD (&dev->tx_reqs); |
| 2451 | INIT_LIST_HEAD (&dev->rx_reqs); |
| 2452 | |
| 2453 | /* network device setup */ |
| 2454 | dev->net = net; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2455 | strcpy (net->name, "usb%d"); |
| 2456 | dev->cdc = cdc; |
| 2457 | dev->zlp = zlp; |
| 2458 | |
| 2459 | dev->in_ep = in_ep; |
| 2460 | dev->out_ep = out_ep; |
| 2461 | dev->status_ep = status_ep; |
| 2462 | |
| 2463 | /* Module params for these addresses should come from ID proms. |
| 2464 | * The host side address is used with CDC and RNDIS, and commonly |
David Brownell | 11d5489 | 2006-12-11 15:59:04 -0800 | [diff] [blame] | 2465 | * ends up in a persistent config database. It's not clear if |
| 2466 | * host side code for the SAFE thing cares -- its original BLAN |
| 2467 | * thing didn't, Sharp never assigned those addresses on Zaurii. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2468 | */ |
Aras Vaichas | 1afc64a | 2006-02-18 12:31:23 -0800 | [diff] [blame] | 2469 | if (get_ether_addr(dev_addr, net->dev_addr)) |
| 2470 | dev_warn(&gadget->dev, |
| 2471 | "using random %s ethernet address\n", "self"); |
David Brownell | 11d5489 | 2006-12-11 15:59:04 -0800 | [diff] [blame] | 2472 | if (get_ether_addr(host_addr, dev->host_mac)) |
| 2473 | dev_warn(&gadget->dev, |
| 2474 | "using random %s ethernet address\n", "host"); |
| 2475 | snprintf (ethaddr, sizeof ethaddr, "%02X%02X%02X%02X%02X%02X", |
| 2476 | dev->host_mac [0], dev->host_mac [1], |
| 2477 | dev->host_mac [2], dev->host_mac [3], |
| 2478 | dev->host_mac [4], dev->host_mac [5]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2479 | |
| 2480 | if (rndis) { |
| 2481 | status = rndis_init(); |
| 2482 | if (status < 0) { |
| 2483 | dev_err (&gadget->dev, "can't init RNDIS, %d\n", |
| 2484 | status); |
| 2485 | goto fail; |
| 2486 | } |
| 2487 | } |
| 2488 | |
| 2489 | net->change_mtu = eth_change_mtu; |
| 2490 | net->get_stats = eth_get_stats; |
| 2491 | net->hard_start_xmit = eth_start_xmit; |
| 2492 | net->open = eth_open; |
| 2493 | net->stop = eth_stop; |
| 2494 | // watchdog_timeo, tx_timeout ... |
| 2495 | // set_multicast_list |
| 2496 | SET_ETHTOOL_OPS(net, &ops); |
| 2497 | |
| 2498 | /* preallocate control message data and buffer */ |
David Brownell | 907cba3 | 2005-04-28 13:48:09 -0700 | [diff] [blame] | 2499 | dev->req = eth_req_alloc (gadget->ep0, USB_BUFSIZ, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2500 | if (!dev->req) |
| 2501 | goto fail; |
| 2502 | dev->req->complete = eth_setup_complete; |
| 2503 | |
| 2504 | /* ... and maybe likewise for status transfer */ |
Ian Campbell | 05f3340 | 2005-06-29 10:15:32 +0100 | [diff] [blame] | 2505 | #if defined(DEV_CONFIG_CDC) || defined(CONFIG_USB_ETH_RNDIS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2506 | if (dev->status_ep) { |
| 2507 | dev->stat_req = eth_req_alloc (dev->status_ep, |
David Brownell | 907cba3 | 2005-04-28 13:48:09 -0700 | [diff] [blame] | 2508 | STATUS_BYTECOUNT, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2509 | if (!dev->stat_req) { |
| 2510 | eth_req_free (gadget->ep0, dev->req); |
| 2511 | goto fail; |
| 2512 | } |
David Brownell | 907cba3 | 2005-04-28 13:48:09 -0700 | [diff] [blame] | 2513 | dev->stat_req->context = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2514 | } |
David Brownell | 822e14a | 2005-06-13 06:55:03 -0700 | [diff] [blame] | 2515 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2516 | |
| 2517 | /* finish hookup to lower layer ... */ |
| 2518 | dev->gadget = gadget; |
| 2519 | set_gadget_data (gadget, dev); |
| 2520 | gadget->ep0->driver_data = dev; |
David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 2521 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2522 | /* two kinds of host-initiated state changes: |
| 2523 | * - iff DATA transfer is active, carrier is "on" |
| 2524 | * - tx queueing enabled if open *and* carrier is "on" |
| 2525 | */ |
| 2526 | netif_stop_queue (dev->net); |
| 2527 | netif_carrier_off (dev->net); |
| 2528 | |
David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 2529 | SET_NETDEV_DEV (dev->net, &gadget->dev); |
| 2530 | status = register_netdev (dev->net); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2531 | if (status < 0) |
| 2532 | goto fail1; |
| 2533 | |
| 2534 | INFO (dev, "%s, version: " DRIVER_VERSION "\n", driver_desc); |
| 2535 | INFO (dev, "using %s, OUT %s IN %s%s%s\n", gadget->name, |
David Brownell | 907cba3 | 2005-04-28 13:48:09 -0700 | [diff] [blame] | 2536 | out_ep->name, in_ep->name, |
| 2537 | status_ep ? " STATUS " : "", |
| 2538 | status_ep ? status_ep->name : "" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2539 | ); |
| 2540 | INFO (dev, "MAC %02x:%02x:%02x:%02x:%02x:%02x\n", |
| 2541 | net->dev_addr [0], net->dev_addr [1], |
| 2542 | net->dev_addr [2], net->dev_addr [3], |
| 2543 | net->dev_addr [4], net->dev_addr [5]); |
| 2544 | |
| 2545 | if (cdc || rndis) |
| 2546 | INFO (dev, "HOST MAC %02x:%02x:%02x:%02x:%02x:%02x\n", |
| 2547 | dev->host_mac [0], dev->host_mac [1], |
| 2548 | dev->host_mac [2], dev->host_mac [3], |
| 2549 | dev->host_mac [4], dev->host_mac [5]); |
| 2550 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2551 | if (rndis) { |
| 2552 | u32 vendorID = 0; |
| 2553 | |
| 2554 | /* FIXME RNDIS vendor id == "vendor NIC code" == ? */ |
David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 2555 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2556 | dev->rndis_config = rndis_register (rndis_control_ack); |
| 2557 | if (dev->rndis_config < 0) { |
| 2558 | fail0: |
| 2559 | unregister_netdev (dev->net); |
| 2560 | status = -ENODEV; |
| 2561 | goto fail; |
| 2562 | } |
David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 2563 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2564 | /* these set up a lot of the OIDs that RNDIS needs */ |
| 2565 | rndis_set_host_mac (dev->rndis_config, dev->host_mac); |
| 2566 | if (rndis_set_param_dev (dev->rndis_config, dev->net, |
David Brownell | 340600a | 2005-04-28 13:45:25 -0700 | [diff] [blame] | 2567 | &dev->stats, &dev->cdc_filter)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2568 | goto fail0; |
David Brownell | 0cf4f2d | 2007-08-02 00:00:38 -0700 | [diff] [blame^] | 2569 | if (rndis_set_param_vendor(dev->rndis_config, vendorID, |
| 2570 | manufacturer)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2571 | goto fail0; |
David Brownell | 0cf4f2d | 2007-08-02 00:00:38 -0700 | [diff] [blame^] | 2572 | if (rndis_set_param_medium(dev->rndis_config, |
| 2573 | NDIS_MEDIUM_802_3, 0)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2574 | goto fail0; |
| 2575 | INFO (dev, "RNDIS ready\n"); |
| 2576 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2577 | |
| 2578 | return status; |
| 2579 | |
| 2580 | fail1: |
| 2581 | dev_dbg(&gadget->dev, "register_netdev failed, %d\n", status); |
| 2582 | fail: |
| 2583 | eth_unbind (gadget); |
| 2584 | return status; |
| 2585 | } |
| 2586 | |
| 2587 | /*-------------------------------------------------------------------------*/ |
| 2588 | |
| 2589 | static void |
| 2590 | eth_suspend (struct usb_gadget *gadget) |
| 2591 | { |
| 2592 | struct eth_dev *dev = get_gadget_data (gadget); |
| 2593 | |
| 2594 | DEBUG (dev, "suspend\n"); |
| 2595 | dev->suspended = 1; |
| 2596 | } |
| 2597 | |
| 2598 | static void |
| 2599 | eth_resume (struct usb_gadget *gadget) |
| 2600 | { |
| 2601 | struct eth_dev *dev = get_gadget_data (gadget); |
| 2602 | |
| 2603 | DEBUG (dev, "resume\n"); |
| 2604 | dev->suspended = 0; |
| 2605 | } |
| 2606 | |
| 2607 | /*-------------------------------------------------------------------------*/ |
| 2608 | |
| 2609 | static struct usb_gadget_driver eth_driver = { |
David Brownell | 907cba3 | 2005-04-28 13:48:09 -0700 | [diff] [blame] | 2610 | .speed = DEVSPEED, |
| 2611 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2612 | .function = (char *) driver_desc, |
| 2613 | .bind = eth_bind, |
Tony Lindgren | bfb2c96 | 2006-06-29 22:27:36 -0700 | [diff] [blame] | 2614 | .unbind = eth_unbind, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2615 | |
| 2616 | .setup = eth_setup, |
| 2617 | .disconnect = eth_disconnect, |
| 2618 | |
| 2619 | .suspend = eth_suspend, |
| 2620 | .resume = eth_resume, |
| 2621 | |
David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 2622 | .driver = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2623 | .name = (char *) shortname, |
Ben Dooks | d0d5049 | 2005-10-10 10:52:33 +0100 | [diff] [blame] | 2624 | .owner = THIS_MODULE, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2625 | }, |
| 2626 | }; |
| 2627 | |
| 2628 | MODULE_DESCRIPTION (DRIVER_DESC); |
| 2629 | MODULE_AUTHOR ("David Brownell, Benedikt Spanger"); |
| 2630 | MODULE_LICENSE ("GPL"); |
| 2631 | |
| 2632 | |
| 2633 | static int __init init (void) |
| 2634 | { |
| 2635 | return usb_gadget_register_driver (ð_driver); |
| 2636 | } |
| 2637 | module_init (init); |
| 2638 | |
| 2639 | static void __exit cleanup (void) |
| 2640 | { |
| 2641 | usb_gadget_unregister_driver (ð_driver); |
| 2642 | } |
| 2643 | module_exit (cleanup); |
| 2644 | |