1 // SPDX-License-Identifier: GPL-2.0+
3 * f_eem.c -- USB CDC Ethernet (EEM) link function driver
5 * Copyright (C) 2003-2005,2008 David Brownell
6 * Copyright (C) 2008 Nokia Corporation
7 * Copyright (C) 2009 EF Johnson Technologies
10 #include <linux/kernel.h>
11 #include <linux/module.h>
12 #include <linux/device.h>
13 #include <linux/etherdevice.h>
14 #include <linux/crc32.h>
15 #include <linux/slab.h>
18 #include "u_ether_configfs.h"
24 * This function is a "CDC Ethernet Emulation Model" (CDC EEM)
38 static inline struct f_eem *func_to_eem(struct usb_function *f)
40 return container_of(f, struct f_eem, port.func);
43 /*-------------------------------------------------------------------------*/
45 /* interface descriptor: */
47 static struct usb_interface_descriptor eem_intf = {
48 .bLength = sizeof eem_intf,
49 .bDescriptorType = USB_DT_INTERFACE,
51 /* .bInterfaceNumber = DYNAMIC */
53 .bInterfaceClass = USB_CLASS_COMM,
54 .bInterfaceSubClass = USB_CDC_SUBCLASS_EEM,
55 .bInterfaceProtocol = USB_CDC_PROTO_EEM,
56 /* .iInterface = DYNAMIC */
59 /* full speed support: */
61 static struct usb_endpoint_descriptor eem_fs_in_desc = {
62 .bLength = USB_DT_ENDPOINT_SIZE,
63 .bDescriptorType = USB_DT_ENDPOINT,
65 .bEndpointAddress = USB_DIR_IN,
66 .bmAttributes = USB_ENDPOINT_XFER_BULK,
69 static struct usb_endpoint_descriptor eem_fs_out_desc = {
70 .bLength = USB_DT_ENDPOINT_SIZE,
71 .bDescriptorType = USB_DT_ENDPOINT,
73 .bEndpointAddress = USB_DIR_OUT,
74 .bmAttributes = USB_ENDPOINT_XFER_BULK,
77 static struct usb_descriptor_header *eem_fs_function[] = {
78 /* CDC EEM control descriptors */
79 (struct usb_descriptor_header *) &eem_intf,
80 (struct usb_descriptor_header *) &eem_fs_in_desc,
81 (struct usb_descriptor_header *) &eem_fs_out_desc,
85 /* high speed support: */
87 static struct usb_endpoint_descriptor eem_hs_in_desc = {
88 .bLength = USB_DT_ENDPOINT_SIZE,
89 .bDescriptorType = USB_DT_ENDPOINT,
91 .bEndpointAddress = USB_DIR_IN,
92 .bmAttributes = USB_ENDPOINT_XFER_BULK,
93 .wMaxPacketSize = cpu_to_le16(512),
96 static struct usb_endpoint_descriptor eem_hs_out_desc = {
97 .bLength = USB_DT_ENDPOINT_SIZE,
98 .bDescriptorType = USB_DT_ENDPOINT,
100 .bEndpointAddress = USB_DIR_OUT,
101 .bmAttributes = USB_ENDPOINT_XFER_BULK,
102 .wMaxPacketSize = cpu_to_le16(512),
105 static struct usb_descriptor_header *eem_hs_function[] = {
106 /* CDC EEM control descriptors */
107 (struct usb_descriptor_header *) &eem_intf,
108 (struct usb_descriptor_header *) &eem_hs_in_desc,
109 (struct usb_descriptor_header *) &eem_hs_out_desc,
113 /* super speed support: */
115 static struct usb_endpoint_descriptor eem_ss_in_desc = {
116 .bLength = USB_DT_ENDPOINT_SIZE,
117 .bDescriptorType = USB_DT_ENDPOINT,
119 .bEndpointAddress = USB_DIR_IN,
120 .bmAttributes = USB_ENDPOINT_XFER_BULK,
121 .wMaxPacketSize = cpu_to_le16(1024),
124 static struct usb_endpoint_descriptor eem_ss_out_desc = {
125 .bLength = USB_DT_ENDPOINT_SIZE,
126 .bDescriptorType = USB_DT_ENDPOINT,
128 .bEndpointAddress = USB_DIR_OUT,
129 .bmAttributes = USB_ENDPOINT_XFER_BULK,
130 .wMaxPacketSize = cpu_to_le16(1024),
133 static struct usb_ss_ep_comp_descriptor eem_ss_bulk_comp_desc = {
134 .bLength = sizeof eem_ss_bulk_comp_desc,
135 .bDescriptorType = USB_DT_SS_ENDPOINT_COMP,
137 /* the following 2 values can be tweaked if necessary */
138 /* .bMaxBurst = 0, */
139 /* .bmAttributes = 0, */
142 static struct usb_descriptor_header *eem_ss_function[] = {
143 /* CDC EEM control descriptors */
144 (struct usb_descriptor_header *) &eem_intf,
145 (struct usb_descriptor_header *) &eem_ss_in_desc,
146 (struct usb_descriptor_header *) &eem_ss_bulk_comp_desc,
147 (struct usb_descriptor_header *) &eem_ss_out_desc,
148 (struct usb_descriptor_header *) &eem_ss_bulk_comp_desc,
152 /* string descriptors: */
154 static struct usb_string eem_string_defs[] = {
155 [0].s = "CDC Ethernet Emulation Model (EEM)",
156 { } /* end of list */
159 static struct usb_gadget_strings eem_string_table = {
160 .language = 0x0409, /* en-us */
161 .strings = eem_string_defs,
164 static struct usb_gadget_strings *eem_strings[] = {
169 /*-------------------------------------------------------------------------*/
171 static int eem_setup(struct usb_function *f, const struct usb_ctrlrequest *ctrl)
173 struct usb_composite_dev *cdev = f->config->cdev;
174 u16 w_index = le16_to_cpu(ctrl->wIndex);
175 u16 w_value = le16_to_cpu(ctrl->wValue);
176 u16 w_length = le16_to_cpu(ctrl->wLength);
178 DBG(cdev, "invalid control req%02x.%02x v%04x i%04x l%d\n",
179 ctrl->bRequestType, ctrl->bRequest,
180 w_value, w_index, w_length);
182 /* device either stalls (value < 0) or reports success */
187 static int eem_set_alt(struct usb_function *f, unsigned intf, unsigned alt)
189 struct f_eem *eem = func_to_eem(f);
190 struct usb_composite_dev *cdev = f->config->cdev;
191 struct net_device *net;
193 /* we know alt == 0, so this is an activation or a reset */
197 if (intf == eem->ctrl_id) {
198 DBG(cdev, "reset eem\n");
199 gether_disconnect(&eem->port);
201 if (!eem->port.in_ep->desc || !eem->port.out_ep->desc) {
202 DBG(cdev, "init eem\n");
203 if (config_ep_by_speed(cdev->gadget, f,
205 config_ep_by_speed(cdev->gadget, f,
207 eem->port.in_ep->desc = NULL;
208 eem->port.out_ep->desc = NULL;
213 /* zlps should not occur because zero-length EEM packets
214 * will be inserted in those cases where they would occur
216 eem->port.is_zlp_ok = 1;
217 eem->port.cdc_filter = DEFAULT_FILTER;
218 DBG(cdev, "activate eem\n");
219 net = gether_connect(&eem->port);
230 static void eem_disable(struct usb_function *f)
232 struct f_eem *eem = func_to_eem(f);
233 struct usb_composite_dev *cdev = f->config->cdev;
235 DBG(cdev, "eem deactivated\n");
237 if (eem->port.in_ep->enabled)
238 gether_disconnect(&eem->port);
241 /*-------------------------------------------------------------------------*/
243 /* EEM function driver setup/binding */
245 static int eem_bind(struct usb_configuration *c, struct usb_function *f)
247 struct usb_composite_dev *cdev = c->cdev;
248 struct f_eem *eem = func_to_eem(f);
249 struct usb_string *us;
253 struct f_eem_opts *eem_opts;
255 eem_opts = container_of(f->fi, struct f_eem_opts, func_inst);
257 * in drivers/usb/gadget/configfs.c:configfs_composite_bind()
258 * configurations are bound in sequence with list_for_each_entry,
259 * in each configuration its functions are bound in sequence
260 * with list_for_each_entry, so we assume no race condition
261 * with regard to eem_opts->bound access
263 if (!eem_opts->bound) {
264 mutex_lock(&eem_opts->lock);
265 gether_set_gadget(eem_opts->net, cdev->gadget);
266 status = gether_register_netdev(eem_opts->net);
267 mutex_unlock(&eem_opts->lock);
270 eem_opts->bound = true;
273 us = usb_gstrings_attach(cdev, eem_strings,
274 ARRAY_SIZE(eem_string_defs));
277 eem_intf.iInterface = us[0].id;
279 /* allocate instance-specific interface IDs */
280 status = usb_interface_id(c, f);
283 eem->ctrl_id = status;
284 eem_intf.bInterfaceNumber = status;
288 /* allocate instance-specific endpoints */
289 ep = usb_ep_autoconfig(cdev->gadget, &eem_fs_in_desc);
292 eem->port.in_ep = ep;
294 ep = usb_ep_autoconfig(cdev->gadget, &eem_fs_out_desc);
297 eem->port.out_ep = ep;
299 /* support all relevant hardware speeds... we expect that when
300 * hardware is dual speed, all bulk-capable endpoints work at
303 eem_hs_in_desc.bEndpointAddress = eem_fs_in_desc.bEndpointAddress;
304 eem_hs_out_desc.bEndpointAddress = eem_fs_out_desc.bEndpointAddress;
306 eem_ss_in_desc.bEndpointAddress = eem_fs_in_desc.bEndpointAddress;
307 eem_ss_out_desc.bEndpointAddress = eem_fs_out_desc.bEndpointAddress;
309 status = usb_assign_descriptors(f, eem_fs_function, eem_hs_function,
310 eem_ss_function, eem_ss_function);
314 DBG(cdev, "CDC Ethernet (EEM): IN/%s OUT/%s\n",
315 eem->port.in_ep->name, eem->port.out_ep->name);
319 ERROR(cdev, "%s: can't bind, err %d\n", f->name, status);
324 static void eem_cmd_complete(struct usb_ep *ep, struct usb_request *req)
326 struct in_context *ctx = req->context;
328 dev_kfree_skb_any(ctx->skb);
330 usb_ep_free_request(ctx->ep, req);
335 * Add the EEM header and ethernet checksum.
336 * We currently do not attempt to put multiple ethernet frames
337 * into a single USB transfer
339 static struct sk_buff *eem_wrap(struct gether *port, struct sk_buff *skb)
341 struct sk_buff *skb2 = NULL;
342 struct usb_ep *in = port->in_ep;
343 int headroom, tailroom, padlen = 0;
350 headroom = skb_headroom(skb);
351 tailroom = skb_tailroom(skb);
353 /* When (len + EEM_HLEN + ETH_FCS_LEN) % in->maxpacket) is 0,
354 * stick two bytes of zero-length EEM packet on the end.
356 if (((len + EEM_HLEN + ETH_FCS_LEN) % in->maxpacket) == 0)
359 if ((tailroom >= (ETH_FCS_LEN + padlen)) &&
360 (headroom >= EEM_HLEN) && !skb_cloned(skb))
363 skb2 = skb_copy_expand(skb, EEM_HLEN, ETH_FCS_LEN + padlen, GFP_ATOMIC);
364 dev_kfree_skb_any(skb);
370 /* use the "no CRC" option */
371 put_unaligned_be32(0xdeadbeef, skb_put(skb, 4));
373 /* EEM packet header format:
374 * b0..13: length of ethernet frame
375 * b14: bmCRC (0 == sentinel CRC)
376 * b15: bmType (0 == data)
379 put_unaligned_le16(len & 0x3FFF, skb_push(skb, 2));
381 /* add a zero-length EEM packet, if needed */
383 put_unaligned_le16(0, skb_put(skb, 2));
389 * Remove the EEM header. Note that there can be many EEM packets in a single
390 * USB transfer, so we need to break them out and handle them independently.
392 static int eem_unwrap(struct gether *port,
394 struct sk_buff_head *list)
396 struct usb_composite_dev *cdev = port->func.config->cdev;
400 struct sk_buff *skb2;
404 if (skb->len < EEM_HLEN) {
406 DBG(cdev, "invalid EEM header\n");
410 /* remove the EEM header */
411 header = get_unaligned_le16(skb->data);
412 skb_pull(skb, EEM_HLEN);
414 /* EEM packet header format:
415 * b0..14: EEM type dependent (data or command)
416 * b15: bmType (0 == data, 1 == command)
418 if (header & BIT(15)) {
419 struct usb_request *req;
420 struct in_context *ctx;
424 /* EEM command packet format:
425 * b0..10: bmEEMCmdParam
427 * b14: reserved (must be zero)
428 * b15: bmType (1 == command)
430 if (header & BIT(14))
433 bmEEMCmd = (header >> 11) & 0x7;
436 len = header & 0x7FF;
437 if (skb->len < len) {
442 skb2 = skb_clone(skb, GFP_ATOMIC);
443 if (unlikely(!skb2)) {
444 DBG(cdev, "EEM echo response error\n");
448 put_unaligned_le16(BIT(15) | BIT(11) | len,
452 req = usb_ep_alloc_request(ep, GFP_ATOMIC);
454 dev_kfree_skb_any(skb2);
458 req->buf = kmalloc(skb2->len, GFP_KERNEL);
460 usb_ep_free_request(ep, req);
461 dev_kfree_skb_any(skb2);
465 ctx = kmalloc(sizeof(*ctx), GFP_KERNEL);
468 usb_ep_free_request(ep, req);
469 dev_kfree_skb_any(skb2);
475 skb_copy_bits(skb2, 0, req->buf, skb2->len);
476 req->length = skb2->len;
477 req->complete = eem_cmd_complete;
480 if (usb_ep_queue(port->in_ep, req, GFP_ATOMIC))
481 DBG(cdev, "echo response queue fail\n");
484 case 1: /* echo response */
485 case 2: /* suspend hint */
486 case 3: /* response hint */
487 case 4: /* response complete hint */
489 default: /* reserved */
494 struct sk_buff *skb3;
496 /* check for zero-length EEM packet */
500 /* EEM data packet format:
501 * b0..13: length of ethernet frame
502 * b14: bmCRC (0 == sentinel, 1 == calculated)
503 * b15: bmType (0 == data)
505 len = header & 0x3FFF;
507 || (len < (ETH_HLEN + ETH_FCS_LEN))) {
513 if (header & BIT(14)) {
514 crc = get_unaligned_le32(skb->data + len
517 skb->data, len - ETH_FCS_LEN);
519 crc = get_unaligned_be32(skb->data + len
524 DBG(cdev, "invalid EEM CRC\n");
528 skb2 = skb_clone(skb, GFP_ATOMIC);
529 if (unlikely(!skb2)) {
530 DBG(cdev, "unable to unframe EEM packet\n");
533 skb_trim(skb2, len - ETH_FCS_LEN);
535 skb3 = skb_copy_expand(skb2,
539 if (unlikely(!skb3)) {
540 dev_kfree_skb_any(skb2);
543 dev_kfree_skb_any(skb2);
544 skb_queue_tail(list, skb3);
551 dev_kfree_skb_any(skb);
555 static inline struct f_eem_opts *to_f_eem_opts(struct config_item *item)
557 return container_of(to_config_group(item), struct f_eem_opts,
562 USB_ETHERNET_CONFIGFS_ITEM(eem);
564 /* f_eem_opts_dev_addr */
565 USB_ETHERNET_CONFIGFS_ITEM_ATTR_DEV_ADDR(eem);
567 /* f_eem_opts_host_addr */
568 USB_ETHERNET_CONFIGFS_ITEM_ATTR_HOST_ADDR(eem);
570 /* f_eem_opts_qmult */
571 USB_ETHERNET_CONFIGFS_ITEM_ATTR_QMULT(eem);
573 /* f_eem_opts_ifname */
574 USB_ETHERNET_CONFIGFS_ITEM_ATTR_IFNAME(eem);
576 static struct configfs_attribute *eem_attrs[] = {
577 &eem_opts_attr_dev_addr,
578 &eem_opts_attr_host_addr,
579 &eem_opts_attr_qmult,
580 &eem_opts_attr_ifname,
584 static const struct config_item_type eem_func_type = {
585 .ct_item_ops = &eem_item_ops,
586 .ct_attrs = eem_attrs,
587 .ct_owner = THIS_MODULE,
590 static void eem_free_inst(struct usb_function_instance *f)
592 struct f_eem_opts *opts;
594 opts = container_of(f, struct f_eem_opts, func_inst);
596 gether_cleanup(netdev_priv(opts->net));
598 free_netdev(opts->net);
602 static struct usb_function_instance *eem_alloc_inst(void)
604 struct f_eem_opts *opts;
606 opts = kzalloc(sizeof(*opts), GFP_KERNEL);
608 return ERR_PTR(-ENOMEM);
609 mutex_init(&opts->lock);
610 opts->func_inst.free_func_inst = eem_free_inst;
611 opts->net = gether_setup_default();
612 if (IS_ERR(opts->net)) {
613 struct net_device *net = opts->net;
615 return ERR_CAST(net);
618 config_group_init_type_name(&opts->func_inst.group, "", &eem_func_type);
620 return &opts->func_inst;
623 static void eem_free(struct usb_function *f)
626 struct f_eem_opts *opts;
628 eem = func_to_eem(f);
629 opts = container_of(f->fi, struct f_eem_opts, func_inst);
631 mutex_lock(&opts->lock);
633 mutex_unlock(&opts->lock);
636 static void eem_unbind(struct usb_configuration *c, struct usb_function *f)
638 DBG(c->cdev, "eem unbind\n");
640 usb_free_all_descriptors(f);
643 static struct usb_function *eem_alloc(struct usb_function_instance *fi)
646 struct f_eem_opts *opts;
648 /* allocate and initialize one new instance */
649 eem = kzalloc(sizeof(*eem), GFP_KERNEL);
651 return ERR_PTR(-ENOMEM);
653 opts = container_of(fi, struct f_eem_opts, func_inst);
654 mutex_lock(&opts->lock);
657 eem->port.ioport = netdev_priv(opts->net);
658 mutex_unlock(&opts->lock);
659 eem->port.cdc_filter = DEFAULT_FILTER;
661 eem->port.func.name = "cdc_eem";
662 /* descriptors are per-instance copies */
663 eem->port.func.bind = eem_bind;
664 eem->port.func.unbind = eem_unbind;
665 eem->port.func.set_alt = eem_set_alt;
666 eem->port.func.setup = eem_setup;
667 eem->port.func.disable = eem_disable;
668 eem->port.func.free_func = eem_free;
669 eem->port.wrap = eem_wrap;
670 eem->port.unwrap = eem_unwrap;
671 eem->port.header_len = EEM_HLEN;
673 return &eem->port.func;
676 DECLARE_USB_FUNCTION_INIT(eem, eem_alloc_inst, eem_alloc);
677 MODULE_DESCRIPTION("USB CDC Ethernet (EEM) link function driver");
678 MODULE_LICENSE("GPL");
679 MODULE_AUTHOR("David Brownell");