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