This source file includes following definitions.
- func_to_ecm
- ecm_bitrate
- ecm_do_notify
- ecm_notify
- ecm_notify_complete
- ecm_setup
- ecm_set_alt
- ecm_get_alt
- ecm_disable
- ecm_open
- ecm_close
- ecm_bind
- to_f_ecm_opts
- ecm_free_inst
- ecm_alloc_inst
- ecm_free
- ecm_unbind
- ecm_alloc
1
2
3
4
5
6
7
8
9
10
11 #include <linux/slab.h>
12 #include <linux/kernel.h>
13 #include <linux/module.h>
14 #include <linux/device.h>
15 #include <linux/etherdevice.h>
16
17 #include "u_ether.h"
18 #include "u_ether_configfs.h"
19 #include "u_ecm.h"
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40 enum ecm_notify_state {
41 ECM_NOTIFY_NONE,
42 ECM_NOTIFY_CONNECT,
43 ECM_NOTIFY_SPEED,
44 };
45
46 struct f_ecm {
47 struct gether port;
48 u8 ctrl_id, data_id;
49
50 char ethaddr[14];
51
52 struct usb_ep *notify;
53 struct usb_request *notify_req;
54 u8 notify_state;
55 atomic_t notify_count;
56 bool is_open;
57
58
59
60
61 };
62
63 static inline struct f_ecm *func_to_ecm(struct usb_function *f)
64 {
65 return container_of(f, struct f_ecm, port.func);
66 }
67
68
69 static inline unsigned ecm_bitrate(struct usb_gadget *g)
70 {
71 if (gadget_is_superspeed(g) && g->speed == USB_SPEED_SUPER)
72 return 13 * 1024 * 8 * 1000 * 8;
73 else if (gadget_is_dualspeed(g) && g->speed == USB_SPEED_HIGH)
74 return 13 * 512 * 8 * 1000 * 8;
75 else
76 return 19 * 64 * 1 * 1000 * 8;
77 }
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94 #define ECM_STATUS_INTERVAL_MS 32
95 #define ECM_STATUS_BYTECOUNT 16
96
97
98
99
100 static struct usb_interface_assoc_descriptor
101 ecm_iad_descriptor = {
102 .bLength = sizeof ecm_iad_descriptor,
103 .bDescriptorType = USB_DT_INTERFACE_ASSOCIATION,
104
105
106 .bInterfaceCount = 2,
107 .bFunctionClass = USB_CLASS_COMM,
108 .bFunctionSubClass = USB_CDC_SUBCLASS_ETHERNET,
109 .bFunctionProtocol = USB_CDC_PROTO_NONE,
110
111 };
112
113
114 static struct usb_interface_descriptor ecm_control_intf = {
115 .bLength = sizeof ecm_control_intf,
116 .bDescriptorType = USB_DT_INTERFACE,
117
118
119
120 .bNumEndpoints = 1,
121 .bInterfaceClass = USB_CLASS_COMM,
122 .bInterfaceSubClass = USB_CDC_SUBCLASS_ETHERNET,
123 .bInterfaceProtocol = USB_CDC_PROTO_NONE,
124
125 };
126
127 static struct usb_cdc_header_desc ecm_header_desc = {
128 .bLength = sizeof ecm_header_desc,
129 .bDescriptorType = USB_DT_CS_INTERFACE,
130 .bDescriptorSubType = USB_CDC_HEADER_TYPE,
131
132 .bcdCDC = cpu_to_le16(0x0110),
133 };
134
135 static struct usb_cdc_union_desc ecm_union_desc = {
136 .bLength = sizeof(ecm_union_desc),
137 .bDescriptorType = USB_DT_CS_INTERFACE,
138 .bDescriptorSubType = USB_CDC_UNION_TYPE,
139
140
141 };
142
143 static struct usb_cdc_ether_desc ecm_desc = {
144 .bLength = sizeof ecm_desc,
145 .bDescriptorType = USB_DT_CS_INTERFACE,
146 .bDescriptorSubType = USB_CDC_ETHERNET_TYPE,
147
148
149
150 .bmEthernetStatistics = cpu_to_le32(0),
151 .wMaxSegmentSize = cpu_to_le16(ETH_FRAME_LEN),
152 .wNumberMCFilters = cpu_to_le16(0),
153 .bNumberPowerFilters = 0,
154 };
155
156
157
158 static struct usb_interface_descriptor ecm_data_nop_intf = {
159 .bLength = sizeof ecm_data_nop_intf,
160 .bDescriptorType = USB_DT_INTERFACE,
161
162 .bInterfaceNumber = 1,
163 .bAlternateSetting = 0,
164 .bNumEndpoints = 0,
165 .bInterfaceClass = USB_CLASS_CDC_DATA,
166 .bInterfaceSubClass = 0,
167 .bInterfaceProtocol = 0,
168
169 };
170
171
172
173 static struct usb_interface_descriptor ecm_data_intf = {
174 .bLength = sizeof ecm_data_intf,
175 .bDescriptorType = USB_DT_INTERFACE,
176
177 .bInterfaceNumber = 1,
178 .bAlternateSetting = 1,
179 .bNumEndpoints = 2,
180 .bInterfaceClass = USB_CLASS_CDC_DATA,
181 .bInterfaceSubClass = 0,
182 .bInterfaceProtocol = 0,
183
184 };
185
186
187
188 static struct usb_endpoint_descriptor fs_ecm_notify_desc = {
189 .bLength = USB_DT_ENDPOINT_SIZE,
190 .bDescriptorType = USB_DT_ENDPOINT,
191
192 .bEndpointAddress = USB_DIR_IN,
193 .bmAttributes = USB_ENDPOINT_XFER_INT,
194 .wMaxPacketSize = cpu_to_le16(ECM_STATUS_BYTECOUNT),
195 .bInterval = ECM_STATUS_INTERVAL_MS,
196 };
197
198 static struct usb_endpoint_descriptor fs_ecm_in_desc = {
199 .bLength = USB_DT_ENDPOINT_SIZE,
200 .bDescriptorType = USB_DT_ENDPOINT,
201
202 .bEndpointAddress = USB_DIR_IN,
203 .bmAttributes = USB_ENDPOINT_XFER_BULK,
204 };
205
206 static struct usb_endpoint_descriptor fs_ecm_out_desc = {
207 .bLength = USB_DT_ENDPOINT_SIZE,
208 .bDescriptorType = USB_DT_ENDPOINT,
209
210 .bEndpointAddress = USB_DIR_OUT,
211 .bmAttributes = USB_ENDPOINT_XFER_BULK,
212 };
213
214 static struct usb_descriptor_header *ecm_fs_function[] = {
215
216 (struct usb_descriptor_header *) &ecm_iad_descriptor,
217 (struct usb_descriptor_header *) &ecm_control_intf,
218 (struct usb_descriptor_header *) &ecm_header_desc,
219 (struct usb_descriptor_header *) &ecm_union_desc,
220 (struct usb_descriptor_header *) &ecm_desc,
221
222
223 (struct usb_descriptor_header *) &fs_ecm_notify_desc,
224
225
226 (struct usb_descriptor_header *) &ecm_data_nop_intf,
227 (struct usb_descriptor_header *) &ecm_data_intf,
228 (struct usb_descriptor_header *) &fs_ecm_in_desc,
229 (struct usb_descriptor_header *) &fs_ecm_out_desc,
230 NULL,
231 };
232
233
234
235 static struct usb_endpoint_descriptor hs_ecm_notify_desc = {
236 .bLength = USB_DT_ENDPOINT_SIZE,
237 .bDescriptorType = USB_DT_ENDPOINT,
238
239 .bEndpointAddress = USB_DIR_IN,
240 .bmAttributes = USB_ENDPOINT_XFER_INT,
241 .wMaxPacketSize = cpu_to_le16(ECM_STATUS_BYTECOUNT),
242 .bInterval = USB_MS_TO_HS_INTERVAL(ECM_STATUS_INTERVAL_MS),
243 };
244
245 static struct usb_endpoint_descriptor hs_ecm_in_desc = {
246 .bLength = USB_DT_ENDPOINT_SIZE,
247 .bDescriptorType = USB_DT_ENDPOINT,
248
249 .bEndpointAddress = USB_DIR_IN,
250 .bmAttributes = USB_ENDPOINT_XFER_BULK,
251 .wMaxPacketSize = cpu_to_le16(512),
252 };
253
254 static struct usb_endpoint_descriptor hs_ecm_out_desc = {
255 .bLength = USB_DT_ENDPOINT_SIZE,
256 .bDescriptorType = USB_DT_ENDPOINT,
257
258 .bEndpointAddress = USB_DIR_OUT,
259 .bmAttributes = USB_ENDPOINT_XFER_BULK,
260 .wMaxPacketSize = cpu_to_le16(512),
261 };
262
263 static struct usb_descriptor_header *ecm_hs_function[] = {
264
265 (struct usb_descriptor_header *) &ecm_iad_descriptor,
266 (struct usb_descriptor_header *) &ecm_control_intf,
267 (struct usb_descriptor_header *) &ecm_header_desc,
268 (struct usb_descriptor_header *) &ecm_union_desc,
269 (struct usb_descriptor_header *) &ecm_desc,
270
271
272 (struct usb_descriptor_header *) &hs_ecm_notify_desc,
273
274
275 (struct usb_descriptor_header *) &ecm_data_nop_intf,
276 (struct usb_descriptor_header *) &ecm_data_intf,
277 (struct usb_descriptor_header *) &hs_ecm_in_desc,
278 (struct usb_descriptor_header *) &hs_ecm_out_desc,
279 NULL,
280 };
281
282
283
284 static struct usb_endpoint_descriptor ss_ecm_notify_desc = {
285 .bLength = USB_DT_ENDPOINT_SIZE,
286 .bDescriptorType = USB_DT_ENDPOINT,
287
288 .bEndpointAddress = USB_DIR_IN,
289 .bmAttributes = USB_ENDPOINT_XFER_INT,
290 .wMaxPacketSize = cpu_to_le16(ECM_STATUS_BYTECOUNT),
291 .bInterval = USB_MS_TO_HS_INTERVAL(ECM_STATUS_INTERVAL_MS),
292 };
293
294 static struct usb_ss_ep_comp_descriptor ss_ecm_intr_comp_desc = {
295 .bLength = sizeof ss_ecm_intr_comp_desc,
296 .bDescriptorType = USB_DT_SS_ENDPOINT_COMP,
297
298
299
300
301 .wBytesPerInterval = cpu_to_le16(ECM_STATUS_BYTECOUNT),
302 };
303
304 static struct usb_endpoint_descriptor ss_ecm_in_desc = {
305 .bLength = USB_DT_ENDPOINT_SIZE,
306 .bDescriptorType = USB_DT_ENDPOINT,
307
308 .bEndpointAddress = USB_DIR_IN,
309 .bmAttributes = USB_ENDPOINT_XFER_BULK,
310 .wMaxPacketSize = cpu_to_le16(1024),
311 };
312
313 static struct usb_endpoint_descriptor ss_ecm_out_desc = {
314 .bLength = USB_DT_ENDPOINT_SIZE,
315 .bDescriptorType = USB_DT_ENDPOINT,
316
317 .bEndpointAddress = USB_DIR_OUT,
318 .bmAttributes = USB_ENDPOINT_XFER_BULK,
319 .wMaxPacketSize = cpu_to_le16(1024),
320 };
321
322 static struct usb_ss_ep_comp_descriptor ss_ecm_bulk_comp_desc = {
323 .bLength = sizeof ss_ecm_bulk_comp_desc,
324 .bDescriptorType = USB_DT_SS_ENDPOINT_COMP,
325
326
327
328
329 };
330
331 static struct usb_descriptor_header *ecm_ss_function[] = {
332
333 (struct usb_descriptor_header *) &ecm_iad_descriptor,
334 (struct usb_descriptor_header *) &ecm_control_intf,
335 (struct usb_descriptor_header *) &ecm_header_desc,
336 (struct usb_descriptor_header *) &ecm_union_desc,
337 (struct usb_descriptor_header *) &ecm_desc,
338
339
340 (struct usb_descriptor_header *) &ss_ecm_notify_desc,
341 (struct usb_descriptor_header *) &ss_ecm_intr_comp_desc,
342
343
344 (struct usb_descriptor_header *) &ecm_data_nop_intf,
345 (struct usb_descriptor_header *) &ecm_data_intf,
346 (struct usb_descriptor_header *) &ss_ecm_in_desc,
347 (struct usb_descriptor_header *) &ss_ecm_bulk_comp_desc,
348 (struct usb_descriptor_header *) &ss_ecm_out_desc,
349 (struct usb_descriptor_header *) &ss_ecm_bulk_comp_desc,
350 NULL,
351 };
352
353
354
355 static struct usb_string ecm_string_defs[] = {
356 [0].s = "CDC Ethernet Control Model (ECM)",
357 [1].s = "",
358 [2].s = "CDC Ethernet Data",
359 [3].s = "CDC ECM",
360 { }
361 };
362
363 static struct usb_gadget_strings ecm_string_table = {
364 .language = 0x0409,
365 .strings = ecm_string_defs,
366 };
367
368 static struct usb_gadget_strings *ecm_strings[] = {
369 &ecm_string_table,
370 NULL,
371 };
372
373
374
375 static void ecm_do_notify(struct f_ecm *ecm)
376 {
377 struct usb_request *req = ecm->notify_req;
378 struct usb_cdc_notification *event;
379 struct usb_composite_dev *cdev = ecm->port.func.config->cdev;
380 __le32 *data;
381 int status;
382
383
384 if (atomic_read(&ecm->notify_count))
385 return;
386
387 event = req->buf;
388 switch (ecm->notify_state) {
389 case ECM_NOTIFY_NONE:
390 return;
391
392 case ECM_NOTIFY_CONNECT:
393 event->bNotificationType = USB_CDC_NOTIFY_NETWORK_CONNECTION;
394 if (ecm->is_open)
395 event->wValue = cpu_to_le16(1);
396 else
397 event->wValue = cpu_to_le16(0);
398 event->wLength = 0;
399 req->length = sizeof *event;
400
401 DBG(cdev, "notify connect %s\n",
402 ecm->is_open ? "true" : "false");
403 ecm->notify_state = ECM_NOTIFY_SPEED;
404 break;
405
406 case ECM_NOTIFY_SPEED:
407 event->bNotificationType = USB_CDC_NOTIFY_SPEED_CHANGE;
408 event->wValue = cpu_to_le16(0);
409 event->wLength = cpu_to_le16(8);
410 req->length = ECM_STATUS_BYTECOUNT;
411
412
413 data = req->buf + sizeof *event;
414 data[0] = cpu_to_le32(ecm_bitrate(cdev->gadget));
415 data[1] = data[0];
416
417 DBG(cdev, "notify speed %d\n", ecm_bitrate(cdev->gadget));
418 ecm->notify_state = ECM_NOTIFY_NONE;
419 break;
420 }
421 event->bmRequestType = 0xA1;
422 event->wIndex = cpu_to_le16(ecm->ctrl_id);
423
424 atomic_inc(&ecm->notify_count);
425 status = usb_ep_queue(ecm->notify, req, GFP_ATOMIC);
426 if (status < 0) {
427 atomic_dec(&ecm->notify_count);
428 DBG(cdev, "notify --> %d\n", status);
429 }
430 }
431
432 static void ecm_notify(struct f_ecm *ecm)
433 {
434
435
436
437
438
439 ecm->notify_state = ECM_NOTIFY_CONNECT;
440 ecm_do_notify(ecm);
441 }
442
443 static void ecm_notify_complete(struct usb_ep *ep, struct usb_request *req)
444 {
445 struct f_ecm *ecm = req->context;
446 struct usb_composite_dev *cdev = ecm->port.func.config->cdev;
447 struct usb_cdc_notification *event = req->buf;
448
449 switch (req->status) {
450 case 0:
451
452 atomic_dec(&ecm->notify_count);
453 break;
454 case -ECONNRESET:
455 case -ESHUTDOWN:
456 atomic_set(&ecm->notify_count, 0);
457 ecm->notify_state = ECM_NOTIFY_NONE;
458 break;
459 default:
460 DBG(cdev, "event %02x --> %d\n",
461 event->bNotificationType, req->status);
462 atomic_dec(&ecm->notify_count);
463 break;
464 }
465 ecm_do_notify(ecm);
466 }
467
468 static int ecm_setup(struct usb_function *f, const struct usb_ctrlrequest *ctrl)
469 {
470 struct f_ecm *ecm = func_to_ecm(f);
471 struct usb_composite_dev *cdev = f->config->cdev;
472 struct usb_request *req = cdev->req;
473 int value = -EOPNOTSUPP;
474 u16 w_index = le16_to_cpu(ctrl->wIndex);
475 u16 w_value = le16_to_cpu(ctrl->wValue);
476 u16 w_length = le16_to_cpu(ctrl->wLength);
477
478
479
480
481 switch ((ctrl->bRequestType << 8) | ctrl->bRequest) {
482 case ((USB_DIR_OUT | USB_TYPE_CLASS | USB_RECIP_INTERFACE) << 8)
483 | USB_CDC_SET_ETHERNET_PACKET_FILTER:
484
485
486
487 if (w_length != 0 || w_index != ecm->ctrl_id)
488 goto invalid;
489 DBG(cdev, "packet filter %02x\n", w_value);
490
491
492
493
494 ecm->port.cdc_filter = w_value;
495 value = 0;
496 break;
497
498
499
500
501
502
503
504
505
506
507 default:
508 invalid:
509 DBG(cdev, "invalid control req%02x.%02x v%04x i%04x l%d\n",
510 ctrl->bRequestType, ctrl->bRequest,
511 w_value, w_index, w_length);
512 }
513
514
515 if (value >= 0) {
516 DBG(cdev, "ecm req%02x.%02x v%04x i%04x l%d\n",
517 ctrl->bRequestType, ctrl->bRequest,
518 w_value, w_index, w_length);
519 req->zero = 0;
520 req->length = value;
521 value = usb_ep_queue(cdev->gadget->ep0, req, GFP_ATOMIC);
522 if (value < 0)
523 ERROR(cdev, "ecm req %02x.%02x response err %d\n",
524 ctrl->bRequestType, ctrl->bRequest,
525 value);
526 }
527
528
529 return value;
530 }
531
532
533 static int ecm_set_alt(struct usb_function *f, unsigned intf, unsigned alt)
534 {
535 struct f_ecm *ecm = func_to_ecm(f);
536 struct usb_composite_dev *cdev = f->config->cdev;
537
538
539 if (intf == ecm->ctrl_id) {
540 if (alt != 0)
541 goto fail;
542
543 VDBG(cdev, "reset ecm control %d\n", intf);
544 usb_ep_disable(ecm->notify);
545 if (!(ecm->notify->desc)) {
546 VDBG(cdev, "init ecm ctrl %d\n", intf);
547 if (config_ep_by_speed(cdev->gadget, f, ecm->notify))
548 goto fail;
549 }
550 usb_ep_enable(ecm->notify);
551
552
553 } else if (intf == ecm->data_id) {
554 if (alt > 1)
555 goto fail;
556
557 if (ecm->port.in_ep->enabled) {
558 DBG(cdev, "reset ecm\n");
559 gether_disconnect(&ecm->port);
560 }
561
562 if (!ecm->port.in_ep->desc ||
563 !ecm->port.out_ep->desc) {
564 DBG(cdev, "init ecm\n");
565 if (config_ep_by_speed(cdev->gadget, f,
566 ecm->port.in_ep) ||
567 config_ep_by_speed(cdev->gadget, f,
568 ecm->port.out_ep)) {
569 ecm->port.in_ep->desc = NULL;
570 ecm->port.out_ep->desc = NULL;
571 goto fail;
572 }
573 }
574
575
576
577
578 if (alt == 1) {
579 struct net_device *net;
580
581
582
583
584 ecm->port.is_zlp_ok =
585 gadget_is_zlp_supported(cdev->gadget);
586 ecm->port.cdc_filter = DEFAULT_FILTER;
587 DBG(cdev, "activate ecm\n");
588 net = gether_connect(&ecm->port);
589 if (IS_ERR(net))
590 return PTR_ERR(net);
591 }
592
593
594
595
596
597
598
599 ecm_notify(ecm);
600 } else
601 goto fail;
602
603 return 0;
604 fail:
605 return -EINVAL;
606 }
607
608
609
610
611 static int ecm_get_alt(struct usb_function *f, unsigned intf)
612 {
613 struct f_ecm *ecm = func_to_ecm(f);
614
615 if (intf == ecm->ctrl_id)
616 return 0;
617 return ecm->port.in_ep->enabled ? 1 : 0;
618 }
619
620 static void ecm_disable(struct usb_function *f)
621 {
622 struct f_ecm *ecm = func_to_ecm(f);
623 struct usb_composite_dev *cdev = f->config->cdev;
624
625 DBG(cdev, "ecm deactivated\n");
626
627 if (ecm->port.in_ep->enabled) {
628 gether_disconnect(&ecm->port);
629 } else {
630 ecm->port.in_ep->desc = NULL;
631 ecm->port.out_ep->desc = NULL;
632 }
633
634 usb_ep_disable(ecm->notify);
635 ecm->notify->desc = NULL;
636 }
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658 static void ecm_open(struct gether *geth)
659 {
660 struct f_ecm *ecm = func_to_ecm(&geth->func);
661
662 DBG(ecm->port.func.config->cdev, "%s\n", __func__);
663
664 ecm->is_open = true;
665 ecm_notify(ecm);
666 }
667
668 static void ecm_close(struct gether *geth)
669 {
670 struct f_ecm *ecm = func_to_ecm(&geth->func);
671
672 DBG(ecm->port.func.config->cdev, "%s\n", __func__);
673
674 ecm->is_open = false;
675 ecm_notify(ecm);
676 }
677
678
679
680
681
682 static int
683 ecm_bind(struct usb_configuration *c, struct usb_function *f)
684 {
685 struct usb_composite_dev *cdev = c->cdev;
686 struct f_ecm *ecm = func_to_ecm(f);
687 struct usb_string *us;
688 int status;
689 struct usb_ep *ep;
690
691 struct f_ecm_opts *ecm_opts;
692
693 if (!can_support_ecm(cdev->gadget))
694 return -EINVAL;
695
696 ecm_opts = container_of(f->fi, struct f_ecm_opts, func_inst);
697
698
699
700
701
702
703
704
705 if (!ecm_opts->bound) {
706 mutex_lock(&ecm_opts->lock);
707 gether_set_gadget(ecm_opts->net, cdev->gadget);
708 status = gether_register_netdev(ecm_opts->net);
709 mutex_unlock(&ecm_opts->lock);
710 if (status)
711 return status;
712 ecm_opts->bound = true;
713 }
714
715 ecm_string_defs[1].s = ecm->ethaddr;
716
717 us = usb_gstrings_attach(cdev, ecm_strings,
718 ARRAY_SIZE(ecm_string_defs));
719 if (IS_ERR(us))
720 return PTR_ERR(us);
721 ecm_control_intf.iInterface = us[0].id;
722 ecm_data_intf.iInterface = us[2].id;
723 ecm_desc.iMACAddress = us[1].id;
724 ecm_iad_descriptor.iFunction = us[3].id;
725
726
727 status = usb_interface_id(c, f);
728 if (status < 0)
729 goto fail;
730 ecm->ctrl_id = status;
731 ecm_iad_descriptor.bFirstInterface = status;
732
733 ecm_control_intf.bInterfaceNumber = status;
734 ecm_union_desc.bMasterInterface0 = status;
735
736 status = usb_interface_id(c, f);
737 if (status < 0)
738 goto fail;
739 ecm->data_id = status;
740
741 ecm_data_nop_intf.bInterfaceNumber = status;
742 ecm_data_intf.bInterfaceNumber = status;
743 ecm_union_desc.bSlaveInterface0 = status;
744
745 status = -ENODEV;
746
747
748 ep = usb_ep_autoconfig(cdev->gadget, &fs_ecm_in_desc);
749 if (!ep)
750 goto fail;
751 ecm->port.in_ep = ep;
752
753 ep = usb_ep_autoconfig(cdev->gadget, &fs_ecm_out_desc);
754 if (!ep)
755 goto fail;
756 ecm->port.out_ep = ep;
757
758
759
760
761
762 ep = usb_ep_autoconfig(cdev->gadget, &fs_ecm_notify_desc);
763 if (!ep)
764 goto fail;
765 ecm->notify = ep;
766
767 status = -ENOMEM;
768
769
770 ecm->notify_req = usb_ep_alloc_request(ep, GFP_KERNEL);
771 if (!ecm->notify_req)
772 goto fail;
773 ecm->notify_req->buf = kmalloc(ECM_STATUS_BYTECOUNT, GFP_KERNEL);
774 if (!ecm->notify_req->buf)
775 goto fail;
776 ecm->notify_req->context = ecm;
777 ecm->notify_req->complete = ecm_notify_complete;
778
779
780
781
782
783 hs_ecm_in_desc.bEndpointAddress = fs_ecm_in_desc.bEndpointAddress;
784 hs_ecm_out_desc.bEndpointAddress = fs_ecm_out_desc.bEndpointAddress;
785 hs_ecm_notify_desc.bEndpointAddress =
786 fs_ecm_notify_desc.bEndpointAddress;
787
788 ss_ecm_in_desc.bEndpointAddress = fs_ecm_in_desc.bEndpointAddress;
789 ss_ecm_out_desc.bEndpointAddress = fs_ecm_out_desc.bEndpointAddress;
790 ss_ecm_notify_desc.bEndpointAddress =
791 fs_ecm_notify_desc.bEndpointAddress;
792
793 status = usb_assign_descriptors(f, ecm_fs_function, ecm_hs_function,
794 ecm_ss_function, NULL);
795 if (status)
796 goto fail;
797
798
799
800
801
802
803 ecm->port.open = ecm_open;
804 ecm->port.close = ecm_close;
805
806 DBG(cdev, "CDC Ethernet: %s speed IN/%s OUT/%s NOTIFY/%s\n",
807 gadget_is_superspeed(c->cdev->gadget) ? "super" :
808 gadget_is_dualspeed(c->cdev->gadget) ? "dual" : "full",
809 ecm->port.in_ep->name, ecm->port.out_ep->name,
810 ecm->notify->name);
811 return 0;
812
813 fail:
814 if (ecm->notify_req) {
815 kfree(ecm->notify_req->buf);
816 usb_ep_free_request(ecm->notify, ecm->notify_req);
817 }
818
819 ERROR(cdev, "%s: can't bind, err %d\n", f->name, status);
820
821 return status;
822 }
823
824 static inline struct f_ecm_opts *to_f_ecm_opts(struct config_item *item)
825 {
826 return container_of(to_config_group(item), struct f_ecm_opts,
827 func_inst.group);
828 }
829
830
831 USB_ETHERNET_CONFIGFS_ITEM(ecm);
832
833
834 USB_ETHERNET_CONFIGFS_ITEM_ATTR_DEV_ADDR(ecm);
835
836
837 USB_ETHERNET_CONFIGFS_ITEM_ATTR_HOST_ADDR(ecm);
838
839
840 USB_ETHERNET_CONFIGFS_ITEM_ATTR_QMULT(ecm);
841
842
843 USB_ETHERNET_CONFIGFS_ITEM_ATTR_IFNAME(ecm);
844
845 static struct configfs_attribute *ecm_attrs[] = {
846 &ecm_opts_attr_dev_addr,
847 &ecm_opts_attr_host_addr,
848 &ecm_opts_attr_qmult,
849 &ecm_opts_attr_ifname,
850 NULL,
851 };
852
853 static const struct config_item_type ecm_func_type = {
854 .ct_item_ops = &ecm_item_ops,
855 .ct_attrs = ecm_attrs,
856 .ct_owner = THIS_MODULE,
857 };
858
859 static void ecm_free_inst(struct usb_function_instance *f)
860 {
861 struct f_ecm_opts *opts;
862
863 opts = container_of(f, struct f_ecm_opts, func_inst);
864 if (opts->bound)
865 gether_cleanup(netdev_priv(opts->net));
866 else
867 free_netdev(opts->net);
868 kfree(opts);
869 }
870
871 static struct usb_function_instance *ecm_alloc_inst(void)
872 {
873 struct f_ecm_opts *opts;
874
875 opts = kzalloc(sizeof(*opts), GFP_KERNEL);
876 if (!opts)
877 return ERR_PTR(-ENOMEM);
878 mutex_init(&opts->lock);
879 opts->func_inst.free_func_inst = ecm_free_inst;
880 opts->net = gether_setup_default();
881 if (IS_ERR(opts->net)) {
882 struct net_device *net = opts->net;
883 kfree(opts);
884 return ERR_CAST(net);
885 }
886
887 config_group_init_type_name(&opts->func_inst.group, "", &ecm_func_type);
888
889 return &opts->func_inst;
890 }
891
892 static void ecm_free(struct usb_function *f)
893 {
894 struct f_ecm *ecm;
895 struct f_ecm_opts *opts;
896
897 ecm = func_to_ecm(f);
898 opts = container_of(f->fi, struct f_ecm_opts, func_inst);
899 kfree(ecm);
900 mutex_lock(&opts->lock);
901 opts->refcnt--;
902 mutex_unlock(&opts->lock);
903 }
904
905 static void ecm_unbind(struct usb_configuration *c, struct usb_function *f)
906 {
907 struct f_ecm *ecm = func_to_ecm(f);
908
909 DBG(c->cdev, "ecm unbind\n");
910
911 usb_free_all_descriptors(f);
912
913 if (atomic_read(&ecm->notify_count)) {
914 usb_ep_dequeue(ecm->notify, ecm->notify_req);
915 atomic_set(&ecm->notify_count, 0);
916 }
917
918 kfree(ecm->notify_req->buf);
919 usb_ep_free_request(ecm->notify, ecm->notify_req);
920 }
921
922 static struct usb_function *ecm_alloc(struct usb_function_instance *fi)
923 {
924 struct f_ecm *ecm;
925 struct f_ecm_opts *opts;
926 int status;
927
928
929 ecm = kzalloc(sizeof(*ecm), GFP_KERNEL);
930 if (!ecm)
931 return ERR_PTR(-ENOMEM);
932
933 opts = container_of(fi, struct f_ecm_opts, func_inst);
934 mutex_lock(&opts->lock);
935 opts->refcnt++;
936
937
938 status = gether_get_host_addr_cdc(opts->net, ecm->ethaddr,
939 sizeof(ecm->ethaddr));
940 if (status < 12) {
941 kfree(ecm);
942 mutex_unlock(&opts->lock);
943 return ERR_PTR(-EINVAL);
944 }
945
946 ecm->port.ioport = netdev_priv(opts->net);
947 mutex_unlock(&opts->lock);
948 ecm->port.cdc_filter = DEFAULT_FILTER;
949
950 ecm->port.func.name = "cdc_ethernet";
951
952 ecm->port.func.bind = ecm_bind;
953 ecm->port.func.unbind = ecm_unbind;
954 ecm->port.func.set_alt = ecm_set_alt;
955 ecm->port.func.get_alt = ecm_get_alt;
956 ecm->port.func.setup = ecm_setup;
957 ecm->port.func.disable = ecm_disable;
958 ecm->port.func.free_func = ecm_free;
959
960 return &ecm->port.func;
961 }
962
963 DECLARE_USB_FUNCTION_INIT(ecm, ecm_alloc_inst, ecm_alloc);
964 MODULE_LICENSE("GPL");
965 MODULE_AUTHOR("David Brownell");