cxgb4: Fix initialization of SGE_CONTROL register
[deliverable/linux.git] / drivers / usb / gadget / u_ether.c
CommitLineData
2b3d942c
DB
1/*
2 * u_ether.c -- Ethernet-over-USB link layer utilities for Gadget stack
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 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
2b3d942c
DB
12 */
13
14/* #define VERBOSE_DEBUG */
15
16#include <linux/kernel.h>
9830317a 17#include <linux/module.h>
5a0e3ad6 18#include <linux/gfp.h>
2b3d942c
DB
19#include <linux/device.h>
20#include <linux/ctype.h>
21#include <linux/etherdevice.h>
22#include <linux/ethtool.h>
23
24#include "u_ether.h"
25
26
27/*
28 * This component encapsulates the Ethernet link glue needed to provide
29 * one (!) network link through the USB gadget stack, normally "usb0".
30 *
31 * The control and data models are handled by the function driver which
9b39e9dd
BN
32 * connects to this code; such as CDC Ethernet (ECM or EEM),
33 * "CDC Subset", or RNDIS. That includes all descriptor and endpoint
34 * management.
2b3d942c
DB
35 *
36 * Link level addressing is handled by this component using module
37 * parameters; if no such parameters are provided, random link level
38 * addresses are used. Each end of the link uses one address. The
39 * host end address is exported in various ways, and is often recorded
40 * in configuration databases.
41 *
42 * The driver which assembles each configuration using such a link is
43 * responsible for ensuring that each configuration includes at most one
44 * instance of is network link. (The network layer provides ways for
45 * this single "physical" link to be used by multiple virtual links.)
46 */
47
8a1ce2c0 48#define UETH__VERSION "29-May-2008"
2b3d942c
DB
49
50struct eth_dev {
51 /* lock is held while accessing port_usb
52 * or updating its backlink port_usb->ioport
53 */
54 spinlock_t lock;
55 struct gether *port_usb;
56
57 struct net_device *net;
58 struct usb_gadget *gadget;
59
60 spinlock_t req_lock; /* guard {rx,tx}_reqs */
61 struct list_head tx_reqs, rx_reqs;
62 atomic_t tx_qlen;
63
9b39e9dd
BN
64 struct sk_buff_head rx_frames;
65
2b3d942c 66 unsigned header_len;
9b39e9dd
BN
67 struct sk_buff *(*wrap)(struct gether *, struct sk_buff *skb);
68 int (*unwrap)(struct gether *,
69 struct sk_buff *skb,
70 struct sk_buff_head *list);
2b3d942c
DB
71
72 struct work_struct work;
73
74 unsigned long todo;
75#define WORK_RX_MEMORY 0
76
77 bool zlp;
78 u8 host_mac[ETH_ALEN];
79};
80
81/*-------------------------------------------------------------------------*/
82
83#define RX_EXTRA 20 /* bytes guarding against rx overflows */
84
85#define DEFAULT_QLEN 2 /* double buffering by default */
86
2b3d942c
DB
87static unsigned qmult = 5;
88module_param(qmult, uint, S_IRUGO|S_IWUSR);
04617db7 89MODULE_PARM_DESC(qmult, "queue length multiplier at high/super speed");
2b3d942c 90
04617db7 91/* for dual-speed hardware, use deeper queues at high/super speed */
2b3d942c
DB
92static inline int qlen(struct usb_gadget *gadget)
93{
04617db7
PZ
94 if (gadget_is_dualspeed(gadget) && (gadget->speed == USB_SPEED_HIGH ||
95 gadget->speed == USB_SPEED_SUPER))
2b3d942c
DB
96 return qmult * DEFAULT_QLEN;
97 else
98 return DEFAULT_QLEN;
99}
100
101/*-------------------------------------------------------------------------*/
102
103/* REVISIT there must be a better way than having two sets
104 * of debug calls ...
105 */
106
107#undef DBG
108#undef VDBG
109#undef ERROR
2b3d942c
DB
110#undef INFO
111
112#define xprintk(d, level, fmt, args...) \
113 printk(level "%s: " fmt , (d)->net->name , ## args)
114
115#ifdef DEBUG
116#undef DEBUG
117#define DBG(dev, fmt, args...) \
118 xprintk(dev , KERN_DEBUG , fmt , ## args)
119#else
120#define DBG(dev, fmt, args...) \
121 do { } while (0)
122#endif /* DEBUG */
123
124#ifdef VERBOSE_DEBUG
125#define VDBG DBG
126#else
127#define VDBG(dev, fmt, args...) \
128 do { } while (0)
129#endif /* DEBUG */
130
131#define ERROR(dev, fmt, args...) \
132 xprintk(dev , KERN_ERR , fmt , ## args)
2b3d942c
DB
133#define INFO(dev, fmt, args...) \
134 xprintk(dev , KERN_INFO , fmt , ## args)
135
136/*-------------------------------------------------------------------------*/
137
138/* NETWORK DRIVER HOOKUP (to the layer above this driver) */
139
ccad637b 140static int ueth_change_mtu(struct net_device *net, int new_mtu)
2b3d942c
DB
141{
142 struct eth_dev *dev = netdev_priv(net);
143 unsigned long flags;
144 int status = 0;
145
146 /* don't change MTU on "live" link (peer won't know) */
147 spin_lock_irqsave(&dev->lock, flags);
148 if (dev->port_usb)
149 status = -EBUSY;
150 else if (new_mtu <= ETH_HLEN || new_mtu > ETH_FRAME_LEN)
151 status = -ERANGE;
152 else
153 net->mtu = new_mtu;
154 spin_unlock_irqrestore(&dev->lock, flags);
155
156 return status;
157}
158
159static void eth_get_drvinfo(struct net_device *net, struct ethtool_drvinfo *p)
160{
161 struct eth_dev *dev = netdev_priv(net);
162
163 strlcpy(p->driver, "g_ether", sizeof p->driver);
8a1ce2c0 164 strlcpy(p->version, UETH__VERSION, sizeof p->version);
2b3d942c
DB
165 strlcpy(p->fw_version, dev->gadget->name, sizeof p->fw_version);
166 strlcpy(p->bus_info, dev_name(&dev->gadget->dev), sizeof p->bus_info);
167}
168
2b3d942c
DB
169/* REVISIT can also support:
170 * - WOL (by tracking suspends and issuing remote wakeup)
171 * - msglevel (implies updated messaging)
172 * - ... probably more ethtool ops
173 */
174
0fc0b732 175static const struct ethtool_ops ops = {
2b3d942c 176 .get_drvinfo = eth_get_drvinfo,
237e75bf 177 .get_link = ethtool_op_get_link,
2b3d942c
DB
178};
179
180static void defer_kevent(struct eth_dev *dev, int flag)
181{
182 if (test_and_set_bit(flag, &dev->todo))
183 return;
184 if (!schedule_work(&dev->work))
185 ERROR(dev, "kevent %d may have been dropped\n", flag);
186 else
187 DBG(dev, "kevent %d scheduled\n", flag);
188}
189
190static void rx_complete(struct usb_ep *ep, struct usb_request *req);
191
192static int
193rx_submit(struct eth_dev *dev, struct usb_request *req, gfp_t gfp_flags)
194{
195 struct sk_buff *skb;
196 int retval = -ENOMEM;
197 size_t size = 0;
198 struct usb_ep *out;
199 unsigned long flags;
200
201 spin_lock_irqsave(&dev->lock, flags);
202 if (dev->port_usb)
203 out = dev->port_usb->out_ep;
204 else
205 out = NULL;
206 spin_unlock_irqrestore(&dev->lock, flags);
207
208 if (!out)
209 return -ENOTCONN;
210
211
212 /* Padding up to RX_EXTRA handles minor disagreements with host.
213 * Normally we use the USB "terminate on short read" convention;
214 * so allow up to (N*maxpacket), since that memory is normally
215 * already allocated. Some hardware doesn't deal well with short
216 * reads (e.g. DMA must be N*maxpacket), so for now don't trim a
217 * byte off the end (to force hardware errors on overflow).
218 *
219 * RNDIS uses internal framing, and explicitly allows senders to
220 * pad to end-of-packet. That's potentially nice for speed, but
221 * means receivers can't recover lost synch on their own (because
222 * new packets don't only start after a short RX).
223 */
224 size += sizeof(struct ethhdr) + dev->net->mtu + RX_EXTRA;
225 size += dev->port_usb->header_len;
226 size += out->maxpacket - 1;
227 size -= size % out->maxpacket;
228
5c1168db 229 if (dev->port_usb->is_fixed)
45d1b7ae 230 size = max_t(size_t, size, dev->port_usb->fixed_out_len);
5c1168db 231
2b3d942c
DB
232 skb = alloc_skb(size + NET_IP_ALIGN, gfp_flags);
233 if (skb == NULL) {
234 DBG(dev, "no rx skb\n");
235 goto enomem;
236 }
237
238 /* Some platforms perform better when IP packets are aligned,
239 * but on at least one, checksumming fails otherwise. Note:
240 * RNDIS headers involve variable numbers of LE32 values.
241 */
242 skb_reserve(skb, NET_IP_ALIGN);
243
244 req->buf = skb->data;
245 req->length = size;
246 req->complete = rx_complete;
247 req->context = skb;
248
249 retval = usb_ep_queue(out, req, gfp_flags);
250 if (retval == -ENOMEM)
251enomem:
252 defer_kevent(dev, WORK_RX_MEMORY);
253 if (retval) {
254 DBG(dev, "rx submit --> %d\n", retval);
255 if (skb)
256 dev_kfree_skb_any(skb);
257 spin_lock_irqsave(&dev->req_lock, flags);
258 list_add(&req->list, &dev->rx_reqs);
259 spin_unlock_irqrestore(&dev->req_lock, flags);
260 }
261 return retval;
262}
263
264static void rx_complete(struct usb_ep *ep, struct usb_request *req)
265{
9b39e9dd 266 struct sk_buff *skb = req->context, *skb2;
2b3d942c
DB
267 struct eth_dev *dev = ep->driver_data;
268 int status = req->status;
269
270 switch (status) {
271
272 /* normal completion */
273 case 0:
274 skb_put(skb, req->actual);
2b3d942c 275
9b39e9dd
BN
276 if (dev->unwrap) {
277 unsigned long flags;
2b3d942c 278
9b39e9dd
BN
279 spin_lock_irqsave(&dev->lock, flags);
280 if (dev->port_usb) {
281 status = dev->unwrap(dev->port_usb,
282 skb,
283 &dev->rx_frames);
284 } else {
285 dev_kfree_skb_any(skb);
286 status = -ENOTCONN;
287 }
288 spin_unlock_irqrestore(&dev->lock, flags);
289 } else {
290 skb_queue_tail(&dev->rx_frames, skb);
291 }
2b3d942c 292 skb = NULL;
9b39e9dd
BN
293
294 skb2 = skb_dequeue(&dev->rx_frames);
295 while (skb2) {
296 if (status < 0
297 || ETH_HLEN > skb2->len
298 || skb2->len > ETH_FRAME_LEN) {
299 dev->net->stats.rx_errors++;
300 dev->net->stats.rx_length_errors++;
301 DBG(dev, "rx length %d\n", skb2->len);
302 dev_kfree_skb_any(skb2);
303 goto next_frame;
304 }
305 skb2->protocol = eth_type_trans(skb2, dev->net);
306 dev->net->stats.rx_packets++;
307 dev->net->stats.rx_bytes += skb2->len;
308
309 /* no buffer copies needed, unless hardware can't
310 * use skb buffers.
311 */
312 status = netif_rx(skb2);
313next_frame:
314 skb2 = skb_dequeue(&dev->rx_frames);
315 }
2b3d942c
DB
316 break;
317
318 /* software-driven interface shutdown */
319 case -ECONNRESET: /* unlink */
320 case -ESHUTDOWN: /* disconnect etc */
321 VDBG(dev, "rx shutdown, code %d\n", status);
322 goto quiesce;
323
324 /* for hardware automagic (such as pxa) */
325 case -ECONNABORTED: /* endpoint reset */
326 DBG(dev, "rx %s reset\n", ep->name);
327 defer_kevent(dev, WORK_RX_MEMORY);
328quiesce:
329 dev_kfree_skb_any(skb);
330 goto clean;
331
332 /* data overrun */
333 case -EOVERFLOW:
334 dev->net->stats.rx_over_errors++;
335 /* FALLTHROUGH */
336
337 default:
338 dev->net->stats.rx_errors++;
339 DBG(dev, "rx status %d\n", status);
340 break;
341 }
342
343 if (skb)
344 dev_kfree_skb_any(skb);
345 if (!netif_running(dev->net)) {
346clean:
347 spin_lock(&dev->req_lock);
348 list_add(&req->list, &dev->rx_reqs);
349 spin_unlock(&dev->req_lock);
350 req = NULL;
351 }
352 if (req)
353 rx_submit(dev, req, GFP_ATOMIC);
354}
355
356static int prealloc(struct list_head *list, struct usb_ep *ep, unsigned n)
357{
358 unsigned i;
359 struct usb_request *req;
360
361 if (!n)
362 return -ENOMEM;
363
364 /* queue/recycle up to N requests */
365 i = n;
366 list_for_each_entry(req, list, list) {
367 if (i-- == 0)
368 goto extra;
369 }
370 while (i--) {
371 req = usb_ep_alloc_request(ep, GFP_ATOMIC);
372 if (!req)
373 return list_empty(list) ? -ENOMEM : 0;
374 list_add(&req->list, list);
375 }
376 return 0;
377
378extra:
379 /* free extras */
380 for (;;) {
381 struct list_head *next;
382
383 next = req->list.next;
384 list_del(&req->list);
385 usb_ep_free_request(ep, req);
386
387 if (next == list)
388 break;
389
390 req = container_of(next, struct usb_request, list);
391 }
392 return 0;
393}
394
395static int alloc_requests(struct eth_dev *dev, struct gether *link, unsigned n)
396{
397 int status;
398
399 spin_lock(&dev->req_lock);
400 status = prealloc(&dev->tx_reqs, link->in_ep, n);
401 if (status < 0)
402 goto fail;
403 status = prealloc(&dev->rx_reqs, link->out_ep, n);
404 if (status < 0)
405 goto fail;
406 goto done;
407fail:
408 DBG(dev, "can't alloc requests\n");
409done:
410 spin_unlock(&dev->req_lock);
411 return status;
412}
413
414static void rx_fill(struct eth_dev *dev, gfp_t gfp_flags)
415{
416 struct usb_request *req;
417 unsigned long flags;
418
419 /* fill unused rxq slots with some skb */
420 spin_lock_irqsave(&dev->req_lock, flags);
421 while (!list_empty(&dev->rx_reqs)) {
422 req = container_of(dev->rx_reqs.next,
423 struct usb_request, list);
424 list_del_init(&req->list);
425 spin_unlock_irqrestore(&dev->req_lock, flags);
426
427 if (rx_submit(dev, req, gfp_flags) < 0) {
428 defer_kevent(dev, WORK_RX_MEMORY);
429 return;
430 }
431
432 spin_lock_irqsave(&dev->req_lock, flags);
433 }
434 spin_unlock_irqrestore(&dev->req_lock, flags);
435}
436
437static void eth_work(struct work_struct *work)
438{
439 struct eth_dev *dev = container_of(work, struct eth_dev, work);
440
441 if (test_and_clear_bit(WORK_RX_MEMORY, &dev->todo)) {
442 if (netif_running(dev->net))
443 rx_fill(dev, GFP_KERNEL);
444 }
445
446 if (dev->todo)
447 DBG(dev, "work done, flags = 0x%lx\n", dev->todo);
448}
449
450static void tx_complete(struct usb_ep *ep, struct usb_request *req)
451{
452 struct sk_buff *skb = req->context;
453 struct eth_dev *dev = ep->driver_data;
454
455 switch (req->status) {
456 default:
457 dev->net->stats.tx_errors++;
458 VDBG(dev, "tx err %d\n", req->status);
459 /* FALLTHROUGH */
460 case -ECONNRESET: /* unlink */
461 case -ESHUTDOWN: /* disconnect etc */
462 break;
463 case 0:
464 dev->net->stats.tx_bytes += skb->len;
465 }
466 dev->net->stats.tx_packets++;
467
468 spin_lock(&dev->req_lock);
469 list_add(&req->list, &dev->tx_reqs);
470 spin_unlock(&dev->req_lock);
471 dev_kfree_skb_any(skb);
472
473 atomic_dec(&dev->tx_qlen);
474 if (netif_carrier_ok(dev->net))
475 netif_wake_queue(dev->net);
476}
477
478static inline int is_promisc(u16 cdc_filter)
479{
480 return cdc_filter & USB_CDC_PACKET_TYPE_PROMISCUOUS;
481}
482
25a79c41
SH
483static netdev_tx_t eth_start_xmit(struct sk_buff *skb,
484 struct net_device *net)
2b3d942c
DB
485{
486 struct eth_dev *dev = netdev_priv(net);
487 int length = skb->len;
488 int retval;
489 struct usb_request *req = NULL;
490 unsigned long flags;
491 struct usb_ep *in;
492 u16 cdc_filter;
493
494 spin_lock_irqsave(&dev->lock, flags);
495 if (dev->port_usb) {
496 in = dev->port_usb->in_ep;
497 cdc_filter = dev->port_usb->cdc_filter;
498 } else {
499 in = NULL;
500 cdc_filter = 0;
501 }
502 spin_unlock_irqrestore(&dev->lock, flags);
503
504 if (!in) {
505 dev_kfree_skb_any(skb);
6ed10654 506 return NETDEV_TX_OK;
2b3d942c
DB
507 }
508
509 /* apply outgoing CDC or RNDIS filters */
510 if (!is_promisc(cdc_filter)) {
511 u8 *dest = skb->data;
512
513 if (is_multicast_ether_addr(dest)) {
514 u16 type;
515
516 /* ignores USB_CDC_PACKET_TYPE_MULTICAST and host
517 * SET_ETHERNET_MULTICAST_FILTERS requests
518 */
519 if (is_broadcast_ether_addr(dest))
520 type = USB_CDC_PACKET_TYPE_BROADCAST;
521 else
522 type = USB_CDC_PACKET_TYPE_ALL_MULTICAST;
523 if (!(cdc_filter & type)) {
524 dev_kfree_skb_any(skb);
6ed10654 525 return NETDEV_TX_OK;
2b3d942c
DB
526 }
527 }
528 /* ignores USB_CDC_PACKET_TYPE_DIRECTED */
529 }
530
531 spin_lock_irqsave(&dev->req_lock, flags);
532 /*
533 * this freelist can be empty if an interrupt triggered disconnect()
534 * and reconfigured the gadget (shutting down this queue) after the
535 * network stack decided to xmit but before we got the spinlock.
536 */
537 if (list_empty(&dev->tx_reqs)) {
538 spin_unlock_irqrestore(&dev->req_lock, flags);
5b548140 539 return NETDEV_TX_BUSY;
2b3d942c
DB
540 }
541
542 req = container_of(dev->tx_reqs.next, struct usb_request, list);
543 list_del(&req->list);
544
545 /* temporarily stop TX queue when the freelist empties */
546 if (list_empty(&dev->tx_reqs))
547 netif_stop_queue(net);
548 spin_unlock_irqrestore(&dev->req_lock, flags);
549
550 /* no buffer copies needed, unless the network stack did it
551 * or the hardware can't use skb buffers.
552 * or there's not enough space for extra headers we need
553 */
554 if (dev->wrap) {
9b39e9dd 555 unsigned long flags;
2b3d942c 556
9b39e9dd
BN
557 spin_lock_irqsave(&dev->lock, flags);
558 if (dev->port_usb)
559 skb = dev->wrap(dev->port_usb, skb);
560 spin_unlock_irqrestore(&dev->lock, flags);
561 if (!skb)
2b3d942c
DB
562 goto drop;
563
2b3d942c
DB
564 length = skb->len;
565 }
566 req->buf = skb->data;
567 req->context = skb;
568 req->complete = tx_complete;
569
5c1168db
YK
570 /* NCM requires no zlp if transfer is dwNtbInMaxSize */
571 if (dev->port_usb->is_fixed &&
572 length == dev->port_usb->fixed_in_len &&
573 (length % in->maxpacket) == 0)
574 req->zero = 0;
575 else
576 req->zero = 1;
577
2b3d942c
DB
578 /* use zlp framing on tx for strict CDC-Ether conformance,
579 * though any robust network rx path ignores extra padding.
580 * and some hardware doesn't like to write zlps.
581 */
5c1168db 582 if (req->zero && !dev->zlp && (length % in->maxpacket) == 0)
2b3d942c
DB
583 length++;
584
585 req->length = length;
586
04617db7 587 /* throttle high/super speed IRQ rate back slightly */
2b3d942c 588 if (gadget_is_dualspeed(dev->gadget))
04617db7
PZ
589 req->no_interrupt = (dev->gadget->speed == USB_SPEED_HIGH ||
590 dev->gadget->speed == USB_SPEED_SUPER)
2b3d942c
DB
591 ? ((atomic_read(&dev->tx_qlen) % qmult) != 0)
592 : 0;
593
594 retval = usb_ep_queue(in, req, GFP_ATOMIC);
595 switch (retval) {
596 default:
597 DBG(dev, "tx queue err %d\n", retval);
598 break;
599 case 0:
600 net->trans_start = jiffies;
601 atomic_inc(&dev->tx_qlen);
602 }
603
604 if (retval) {
9b39e9dd 605 dev_kfree_skb_any(skb);
2b3d942c
DB
606drop:
607 dev->net->stats.tx_dropped++;
2b3d942c
DB
608 spin_lock_irqsave(&dev->req_lock, flags);
609 if (list_empty(&dev->tx_reqs))
610 netif_start_queue(net);
611 list_add(&req->list, &dev->tx_reqs);
612 spin_unlock_irqrestore(&dev->req_lock, flags);
613 }
6ed10654 614 return NETDEV_TX_OK;
2b3d942c
DB
615}
616
617/*-------------------------------------------------------------------------*/
618
619static void eth_start(struct eth_dev *dev, gfp_t gfp_flags)
620{
621 DBG(dev, "%s\n", __func__);
622
623 /* fill the rx queue */
624 rx_fill(dev, gfp_flags);
625
626 /* and open the tx floodgates */
627 atomic_set(&dev->tx_qlen, 0);
628 netif_wake_queue(dev->net);
629}
630
631static int eth_open(struct net_device *net)
632{
633 struct eth_dev *dev = netdev_priv(net);
634 struct gether *link;
635
636 DBG(dev, "%s\n", __func__);
637 if (netif_carrier_ok(dev->net))
638 eth_start(dev, GFP_KERNEL);
639
640 spin_lock_irq(&dev->lock);
641 link = dev->port_usb;
642 if (link && link->open)
643 link->open(link);
644 spin_unlock_irq(&dev->lock);
645
646 return 0;
647}
648
649static int eth_stop(struct net_device *net)
650{
651 struct eth_dev *dev = netdev_priv(net);
652 unsigned long flags;
653
654 VDBG(dev, "%s\n", __func__);
655 netif_stop_queue(net);
656
657 DBG(dev, "stop stats: rx/tx %ld/%ld, errs %ld/%ld\n",
658 dev->net->stats.rx_packets, dev->net->stats.tx_packets,
659 dev->net->stats.rx_errors, dev->net->stats.tx_errors
660 );
661
662 /* ensure there are no more active requests */
663 spin_lock_irqsave(&dev->lock, flags);
664 if (dev->port_usb) {
665 struct gether *link = dev->port_usb;
b1b552a6
MG
666 const struct usb_endpoint_descriptor *in;
667 const struct usb_endpoint_descriptor *out;
2b3d942c
DB
668
669 if (link->close)
670 link->close(link);
671
672 /* NOTE: we have no abort-queue primitive we could use
673 * to cancel all pending I/O. Instead, we disable then
674 * reenable the endpoints ... this idiom may leave toggle
675 * wrong, but that's a self-correcting error.
676 *
677 * REVISIT: we *COULD* just let the transfers complete at
678 * their own pace; the network stack can handle old packets.
679 * For the moment we leave this here, since it works.
680 */
b1b552a6
MG
681 in = link->in_ep->desc;
682 out = link->out_ep->desc;
2b3d942c
DB
683 usb_ep_disable(link->in_ep);
684 usb_ep_disable(link->out_ep);
685 if (netif_carrier_ok(net)) {
686 DBG(dev, "host still using in/out endpoints\n");
b1b552a6
MG
687 link->in_ep->desc = in;
688 link->out_ep->desc = out;
72c973dd
TB
689 usb_ep_enable(link->in_ep);
690 usb_ep_enable(link->out_ep);
2b3d942c
DB
691 }
692 }
693 spin_unlock_irqrestore(&dev->lock, flags);
694
695 return 0;
696}
697
698/*-------------------------------------------------------------------------*/
699
700/* initial value, changed by "ifconfig usb0 hw ether xx:xx:xx:xx:xx:xx" */
701static char *dev_addr;
702module_param(dev_addr, charp, S_IRUGO);
703MODULE_PARM_DESC(dev_addr, "Device Ethernet Address");
704
705/* this address is invisible to ifconfig */
706static char *host_addr;
707module_param(host_addr, charp, S_IRUGO);
708MODULE_PARM_DESC(host_addr, "Host Ethernet Address");
709
28824b18 710static int get_ether_addr(const char *str, u8 *dev_addr)
2b3d942c
DB
711{
712 if (str) {
713 unsigned i;
714
715 for (i = 0; i < 6; i++) {
716 unsigned char num;
717
718 if ((*str == '.') || (*str == ':'))
719 str++;
e644814a
AS
720 num = hex_to_bin(*str++) << 4;
721 num |= hex_to_bin(*str++);
2b3d942c
DB
722 dev_addr [i] = num;
723 }
724 if (is_valid_ether_addr(dev_addr))
725 return 0;
726 }
006c9139 727 eth_random_addr(dev_addr);
2b3d942c
DB
728 return 1;
729}
730
731static struct eth_dev *the_dev;
732
5ec38f30
SH
733static const struct net_device_ops eth_netdev_ops = {
734 .ndo_open = eth_open,
735 .ndo_stop = eth_stop,
736 .ndo_start_xmit = eth_start_xmit,
737 .ndo_change_mtu = ueth_change_mtu,
738 .ndo_set_mac_address = eth_mac_addr,
739 .ndo_validate_addr = eth_validate_addr,
740};
2b3d942c 741
aa790740
MH
742static struct device_type gadget_type = {
743 .name = "gadget",
744};
745
2b3d942c 746/**
036e98b2 747 * gether_setup_name - initialize one ethernet-over-usb link
2b3d942c
DB
748 * @g: gadget to associated with these links
749 * @ethaddr: NULL, or a buffer in which the ethernet address of the
750 * host side of the link is recorded
036e98b2 751 * @netname: name for network device (for example, "usb")
2b3d942c
DB
752 * Context: may sleep
753 *
754 * This sets up the single network link that may be exported by a
755 * gadget driver using this framework. The link layer addresses are
756 * set up using module parameters.
757 *
758 * Returns negative errno, or zero on success
759 */
036e98b2
ML
760int gether_setup_name(struct usb_gadget *g, u8 ethaddr[ETH_ALEN],
761 const char *netname)
2b3d942c
DB
762{
763 struct eth_dev *dev;
764 struct net_device *net;
765 int status;
766
767 if (the_dev)
768 return -EBUSY;
769
770 net = alloc_etherdev(sizeof *dev);
771 if (!net)
772 return -ENOMEM;
773
774 dev = netdev_priv(net);
775 spin_lock_init(&dev->lock);
776 spin_lock_init(&dev->req_lock);
777 INIT_WORK(&dev->work, eth_work);
778 INIT_LIST_HEAD(&dev->tx_reqs);
779 INIT_LIST_HEAD(&dev->rx_reqs);
780
9b39e9dd
BN
781 skb_queue_head_init(&dev->rx_frames);
782
2b3d942c
DB
783 /* network device setup */
784 dev->net = net;
036e98b2 785 snprintf(net->name, sizeof(net->name), "%s%%d", netname);
2b3d942c
DB
786
787 if (get_ether_addr(dev_addr, net->dev_addr))
788 dev_warn(&g->dev,
789 "using random %s ethernet address\n", "self");
790 if (get_ether_addr(host_addr, dev->host_mac))
791 dev_warn(&g->dev,
792 "using random %s ethernet address\n", "host");
793
794 if (ethaddr)
795 memcpy(ethaddr, dev->host_mac, ETH_ALEN);
796
5ec38f30
SH
797 net->netdev_ops = &eth_netdev_ops;
798
2b3d942c
DB
799 SET_ETHTOOL_OPS(net, &ops);
800
2b3d942c
DB
801 dev->gadget = g;
802 SET_NETDEV_DEV(net, &g->dev);
aa790740 803 SET_NETDEV_DEVTYPE(net, &gadget_type);
2b3d942c
DB
804
805 status = register_netdev(net);
806 if (status < 0) {
807 dev_dbg(&g->dev, "register_netdev failed, %d\n", status);
808 free_netdev(net);
809 } else {
e174961c
JB
810 INFO(dev, "MAC %pM\n", net->dev_addr);
811 INFO(dev, "HOST MAC %pM\n", dev->host_mac);
2b3d942c
DB
812
813 the_dev = dev;
31bde1ce
KC
814
815 /* two kinds of host-initiated state changes:
816 * - iff DATA transfer is active, carrier is "on"
817 * - tx queueing enabled if open *and* carrier is "on"
818 */
819 netif_carrier_off(net);
2b3d942c
DB
820 }
821
822 return status;
823}
824
825/**
826 * gether_cleanup - remove Ethernet-over-USB device
827 * Context: may sleep
828 *
829 * This is called to free all resources allocated by @gether_setup().
830 */
831void gether_cleanup(void)
832{
833 if (!the_dev)
834 return;
835
836 unregister_netdev(the_dev->net);
43829731 837 flush_work(&the_dev->work);
2b3d942c
DB
838 free_netdev(the_dev->net);
839
2b3d942c
DB
840 the_dev = NULL;
841}
842
843
844/**
845 * gether_connect - notify network layer that USB link is active
846 * @link: the USB link, set up with endpoints, descriptors matching
847 * current device speed, and any framing wrapper(s) set up.
848 * Context: irqs blocked
849 *
850 * This is called to activate endpoints and let the network layer know
851 * the connection is active ("carrier detect"). It may cause the I/O
852 * queues to open and start letting network packets flow, but will in
853 * any case activate the endpoints so that they respond properly to the
854 * USB host.
855 *
856 * Verify net_device pointer returned using IS_ERR(). If it doesn't
857 * indicate some error code (negative errno), ep->driver_data values
858 * have been overwritten.
859 */
860struct net_device *gether_connect(struct gether *link)
861{
862 struct eth_dev *dev = the_dev;
863 int result = 0;
864
865 if (!dev)
866 return ERR_PTR(-EINVAL);
867
868 link->in_ep->driver_data = dev;
72c973dd 869 result = usb_ep_enable(link->in_ep);
2b3d942c
DB
870 if (result != 0) {
871 DBG(dev, "enable %s --> %d\n",
872 link->in_ep->name, result);
873 goto fail0;
874 }
875
876 link->out_ep->driver_data = dev;
72c973dd 877 result = usb_ep_enable(link->out_ep);
2b3d942c
DB
878 if (result != 0) {
879 DBG(dev, "enable %s --> %d\n",
880 link->out_ep->name, result);
881 goto fail1;
882 }
883
884 if (result == 0)
885 result = alloc_requests(dev, link, qlen(dev->gadget));
886
887 if (result == 0) {
888 dev->zlp = link->is_zlp_ok;
889 DBG(dev, "qlen %d\n", qlen(dev->gadget));
890
891 dev->header_len = link->header_len;
892 dev->unwrap = link->unwrap;
893 dev->wrap = link->wrap;
894
895 spin_lock(&dev->lock);
896 dev->port_usb = link;
897 link->ioport = dev;
29bac7b7
DB
898 if (netif_running(dev->net)) {
899 if (link->open)
900 link->open(link);
901 } else {
902 if (link->close)
903 link->close(link);
904 }
2b3d942c
DB
905 spin_unlock(&dev->lock);
906
907 netif_carrier_on(dev->net);
908 if (netif_running(dev->net))
909 eth_start(dev, GFP_ATOMIC);
910
911 /* on error, disable any endpoints */
912 } else {
913 (void) usb_ep_disable(link->out_ep);
914fail1:
915 (void) usb_ep_disable(link->in_ep);
916 }
917fail0:
918 /* caller is responsible for cleanup on error */
919 if (result < 0)
920 return ERR_PTR(result);
921 return dev->net;
922}
923
924/**
925 * gether_disconnect - notify network layer that USB link is inactive
926 * @link: the USB link, on which gether_connect() was called
927 * Context: irqs blocked
928 *
929 * This is called to deactivate endpoints and let the network layer know
930 * the connection went inactive ("no carrier").
931 *
932 * On return, the state is as if gether_connect() had never been called.
933 * The endpoints are inactive, and accordingly without active USB I/O.
934 * Pointers to endpoint descriptors and endpoint private data are nulled.
935 */
936void gether_disconnect(struct gether *link)
937{
938 struct eth_dev *dev = link->ioport;
939 struct usb_request *req;
940
941 WARN_ON(!dev);
942 if (!dev)
943 return;
944
945 DBG(dev, "%s\n", __func__);
946
947 netif_stop_queue(dev->net);
948 netif_carrier_off(dev->net);
949
950 /* disable endpoints, forcing (synchronous) completion
951 * of all pending i/o. then free the request objects
952 * and forget about the endpoints.
953 */
954 usb_ep_disable(link->in_ep);
955 spin_lock(&dev->req_lock);
956 while (!list_empty(&dev->tx_reqs)) {
957 req = container_of(dev->tx_reqs.next,
958 struct usb_request, list);
959 list_del(&req->list);
960
961 spin_unlock(&dev->req_lock);
962 usb_ep_free_request(link->in_ep, req);
963 spin_lock(&dev->req_lock);
964 }
965 spin_unlock(&dev->req_lock);
966 link->in_ep->driver_data = NULL;
72c973dd 967 link->in_ep->desc = NULL;
2b3d942c
DB
968
969 usb_ep_disable(link->out_ep);
970 spin_lock(&dev->req_lock);
971 while (!list_empty(&dev->rx_reqs)) {
972 req = container_of(dev->rx_reqs.next,
973 struct usb_request, list);
974 list_del(&req->list);
975
976 spin_unlock(&dev->req_lock);
977 usb_ep_free_request(link->out_ep, req);
978 spin_lock(&dev->req_lock);
979 }
980 spin_unlock(&dev->req_lock);
981 link->out_ep->driver_data = NULL;
72c973dd 982 link->out_ep->desc = NULL;
2b3d942c
DB
983
984 /* finish forgetting about this USB link episode */
985 dev->header_len = 0;
986 dev->unwrap = NULL;
987 dev->wrap = NULL;
988
989 spin_lock(&dev->lock);
990 dev->port_usb = NULL;
991 link->ioport = NULL;
992 spin_unlock(&dev->lock);
993}
This page took 0.400976 seconds and 5 git commands to generate.