1 // SPDX-License-Identifier: GPL-2.0+
3 * f_subset.c -- "CDC Subset" Ethernet link function driver
5 * Copyright (C) 2003-2005,2008 David Brownell
6 * Copyright (C) 2008 Nokia Corporation
9 #include <linux/slab.h>
10 #include <linux/kernel.h>
11 #include <linux/module.h>
12 #include <linux/device.h>
13 #include <linux/etherdevice.h>
16 #include "u_ether_configfs.h"
20 * This function packages a simple "CDC Subset" Ethernet port with no real
21 * control mechanisms; just raw data transfer over two bulk endpoints.
22 * The data transfer model is exactly that of CDC Ethernet, which is
23 * why we call it the "CDC Subset".
25 * Because it's not standardized, this has some interoperability issues.
26 * They mostly relate to driver binding, since the data transfer model is
27 * so simple (CDC Ethernet). The original versions of this protocol used
28 * specific product/vendor IDs: byteswapped IDs for Digital Equipment's
29 * SA-1100 "Itsy" board, which could run Linux 2.4 kernels and supported
30 * daughtercards with USB peripheral connectors. (It was used more often
31 * with other boards, using the Itsy identifiers.) Linux hosts recognized
32 * this with CONFIG_USB_ARMLINUX; these devices have only one configuration
35 * At some point, MCCI defined a (nonconformant) CDC MDLM variant called
36 * "SAFE", which happens to have a mode which is identical to the "CDC
37 * Subset" in terms of data transfer and lack of control model. This was
38 * adopted by later Sharp Zaurus models, and by some other software which
39 * Linux hosts recognize with CONFIG_USB_NET_ZAURUS.
41 * Because Microsoft's RNDIS drivers are far from robust, we added a few
42 * descriptors to the CDC Subset code, making this code look like a SAFE
43 * implementation. This lets you use MCCI's host side MS-Windows drivers
44 * if you get fed up with RNDIS. It also makes it easier for composite
45 * drivers to work, since they can use class based binding instead of
46 * caring about specific product and vendor IDs.
55 static inline struct f_gether
*func_to_geth(struct usb_function
*f
)
57 return container_of(f
, struct f_gether
, port
.func
);
60 /*-------------------------------------------------------------------------*/
63 * "Simple" CDC-subset option is a simple vendor-neutral model that most
64 * full speed controllers can handle: one interface, two bulk endpoints.
65 * To assist host side drivers, we fancy it up a bit, and add descriptors so
66 * some host side drivers will understand it as a "SAFE" variant.
68 * "SAFE" loosely follows CDC WMC MDLM, violating the spec in various ways.
69 * Data endpoints live in the control interface, there's no data interface.
70 * And it's not used to talk to a cell phone radio.
73 /* interface descriptor: */
75 static struct usb_interface_descriptor subset_data_intf
= {
76 .bLength
= sizeof subset_data_intf
,
77 .bDescriptorType
= USB_DT_INTERFACE
,
79 /* .bInterfaceNumber = DYNAMIC */
80 .bAlternateSetting
= 0,
82 .bInterfaceClass
= USB_CLASS_COMM
,
83 .bInterfaceSubClass
= USB_CDC_SUBCLASS_MDLM
,
84 .bInterfaceProtocol
= 0,
85 /* .iInterface = DYNAMIC */
88 static struct usb_cdc_header_desc mdlm_header_desc
= {
89 .bLength
= sizeof mdlm_header_desc
,
90 .bDescriptorType
= USB_DT_CS_INTERFACE
,
91 .bDescriptorSubType
= USB_CDC_HEADER_TYPE
,
93 .bcdCDC
= cpu_to_le16(0x0110),
96 static struct usb_cdc_mdlm_desc mdlm_desc
= {
97 .bLength
= sizeof mdlm_desc
,
98 .bDescriptorType
= USB_DT_CS_INTERFACE
,
99 .bDescriptorSubType
= USB_CDC_MDLM_TYPE
,
101 .bcdVersion
= cpu_to_le16(0x0100),
103 0x5d, 0x34, 0xcf, 0x66, 0x11, 0x18, 0x11, 0xd6,
104 0xa2, 0x1a, 0x00, 0x01, 0x02, 0xca, 0x9a, 0x7f,
108 /* since "usb_cdc_mdlm_detail_desc" is a variable length structure, we
109 * can't really use its struct. All we do here is say that we're using
110 * the submode of "SAFE" which directly matches the CDC Subset.
112 static u8 mdlm_detail_desc
[] = {
115 USB_CDC_MDLM_DETAIL_TYPE
,
118 0, /* network control capabilities (none) */
119 0, /* network data capabilities ("raw" encapsulation) */
122 static struct usb_cdc_ether_desc ether_desc
= {
123 .bLength
= sizeof ether_desc
,
124 .bDescriptorType
= USB_DT_CS_INTERFACE
,
125 .bDescriptorSubType
= USB_CDC_ETHERNET_TYPE
,
127 /* this descriptor actually adds value, surprise! */
128 /* .iMACAddress = DYNAMIC */
129 .bmEthernetStatistics
= cpu_to_le32(0), /* no statistics */
130 .wMaxSegmentSize
= cpu_to_le16(ETH_FRAME_LEN
),
131 .wNumberMCFilters
= cpu_to_le16(0),
132 .bNumberPowerFilters
= 0,
135 /* full speed support: */
137 static struct usb_endpoint_descriptor fs_subset_in_desc
= {
138 .bLength
= USB_DT_ENDPOINT_SIZE
,
139 .bDescriptorType
= USB_DT_ENDPOINT
,
141 .bEndpointAddress
= USB_DIR_IN
,
142 .bmAttributes
= USB_ENDPOINT_XFER_BULK
,
145 static struct usb_endpoint_descriptor fs_subset_out_desc
= {
146 .bLength
= USB_DT_ENDPOINT_SIZE
,
147 .bDescriptorType
= USB_DT_ENDPOINT
,
149 .bEndpointAddress
= USB_DIR_OUT
,
150 .bmAttributes
= USB_ENDPOINT_XFER_BULK
,
153 static struct usb_descriptor_header
*fs_eth_function
[] = {
154 (struct usb_descriptor_header
*) &subset_data_intf
,
155 (struct usb_descriptor_header
*) &mdlm_header_desc
,
156 (struct usb_descriptor_header
*) &mdlm_desc
,
157 (struct usb_descriptor_header
*) &mdlm_detail_desc
,
158 (struct usb_descriptor_header
*) ðer_desc
,
159 (struct usb_descriptor_header
*) &fs_subset_in_desc
,
160 (struct usb_descriptor_header
*) &fs_subset_out_desc
,
164 /* high speed support: */
166 static struct usb_endpoint_descriptor hs_subset_in_desc
= {
167 .bLength
= USB_DT_ENDPOINT_SIZE
,
168 .bDescriptorType
= USB_DT_ENDPOINT
,
170 .bmAttributes
= USB_ENDPOINT_XFER_BULK
,
171 .wMaxPacketSize
= cpu_to_le16(512),
174 static struct usb_endpoint_descriptor hs_subset_out_desc
= {
175 .bLength
= USB_DT_ENDPOINT_SIZE
,
176 .bDescriptorType
= USB_DT_ENDPOINT
,
178 .bmAttributes
= USB_ENDPOINT_XFER_BULK
,
179 .wMaxPacketSize
= cpu_to_le16(512),
182 static struct usb_descriptor_header
*hs_eth_function
[] = {
183 (struct usb_descriptor_header
*) &subset_data_intf
,
184 (struct usb_descriptor_header
*) &mdlm_header_desc
,
185 (struct usb_descriptor_header
*) &mdlm_desc
,
186 (struct usb_descriptor_header
*) &mdlm_detail_desc
,
187 (struct usb_descriptor_header
*) ðer_desc
,
188 (struct usb_descriptor_header
*) &hs_subset_in_desc
,
189 (struct usb_descriptor_header
*) &hs_subset_out_desc
,
193 /* super speed support: */
195 static struct usb_endpoint_descriptor ss_subset_in_desc
= {
196 .bLength
= USB_DT_ENDPOINT_SIZE
,
197 .bDescriptorType
= USB_DT_ENDPOINT
,
199 .bmAttributes
= USB_ENDPOINT_XFER_BULK
,
200 .wMaxPacketSize
= cpu_to_le16(1024),
203 static struct usb_endpoint_descriptor ss_subset_out_desc
= {
204 .bLength
= USB_DT_ENDPOINT_SIZE
,
205 .bDescriptorType
= USB_DT_ENDPOINT
,
207 .bmAttributes
= USB_ENDPOINT_XFER_BULK
,
208 .wMaxPacketSize
= cpu_to_le16(1024),
211 static struct usb_ss_ep_comp_descriptor ss_subset_bulk_comp_desc
= {
212 .bLength
= sizeof ss_subset_bulk_comp_desc
,
213 .bDescriptorType
= USB_DT_SS_ENDPOINT_COMP
,
215 /* the following 2 values can be tweaked if necessary */
216 /* .bMaxBurst = 0, */
217 /* .bmAttributes = 0, */
220 static struct usb_descriptor_header
*ss_eth_function
[] = {
221 (struct usb_descriptor_header
*) &subset_data_intf
,
222 (struct usb_descriptor_header
*) &mdlm_header_desc
,
223 (struct usb_descriptor_header
*) &mdlm_desc
,
224 (struct usb_descriptor_header
*) &mdlm_detail_desc
,
225 (struct usb_descriptor_header
*) ðer_desc
,
226 (struct usb_descriptor_header
*) &ss_subset_in_desc
,
227 (struct usb_descriptor_header
*) &ss_subset_bulk_comp_desc
,
228 (struct usb_descriptor_header
*) &ss_subset_out_desc
,
229 (struct usb_descriptor_header
*) &ss_subset_bulk_comp_desc
,
233 /* string descriptors: */
235 static struct usb_string geth_string_defs
[] = {
236 [0].s
= "CDC Ethernet Subset/SAFE",
238 { } /* end of list */
241 static struct usb_gadget_strings geth_string_table
= {
242 .language
= 0x0409, /* en-us */
243 .strings
= geth_string_defs
,
246 static struct usb_gadget_strings
*geth_strings
[] = {
251 /*-------------------------------------------------------------------------*/
253 static int geth_set_alt(struct usb_function
*f
, unsigned intf
, unsigned alt
)
255 struct f_gether
*geth
= func_to_geth(f
);
256 struct usb_composite_dev
*cdev
= f
->config
->cdev
;
257 struct net_device
*net
;
259 /* we know alt == 0, so this is an activation or a reset */
261 if (geth
->port
.in_ep
->enabled
) {
262 DBG(cdev
, "reset cdc subset\n");
263 gether_disconnect(&geth
->port
);
266 DBG(cdev
, "init + activate cdc subset\n");
267 if (config_ep_by_speed(cdev
->gadget
, f
, geth
->port
.in_ep
) ||
268 config_ep_by_speed(cdev
->gadget
, f
, geth
->port
.out_ep
)) {
269 geth
->port
.in_ep
->desc
= NULL
;
270 geth
->port
.out_ep
->desc
= NULL
;
274 net
= gether_connect(&geth
->port
);
275 return PTR_ERR_OR_ZERO(net
);
278 static void geth_disable(struct usb_function
*f
)
280 struct f_gether
*geth
= func_to_geth(f
);
281 struct usb_composite_dev
*cdev
= f
->config
->cdev
;
283 DBG(cdev
, "net deactivated\n");
284 gether_disconnect(&geth
->port
);
287 /*-------------------------------------------------------------------------*/
289 /* serial function driver setup/binding */
292 geth_bind(struct usb_configuration
*c
, struct usb_function
*f
)
294 struct usb_composite_dev
*cdev
= c
->cdev
;
295 struct f_gether
*geth
= func_to_geth(f
);
296 struct usb_string
*us
;
300 struct f_gether_opts
*gether_opts
;
302 gether_opts
= container_of(f
->fi
, struct f_gether_opts
, func_inst
);
305 * in drivers/usb/gadget/configfs.c:configfs_composite_bind()
306 * configurations are bound in sequence with list_for_each_entry,
307 * in each configuration its functions are bound in sequence
308 * with list_for_each_entry, so we assume no race condition
309 * with regard to gether_opts->bound access
311 if (!gether_opts
->bound
) {
312 mutex_lock(&gether_opts
->lock
);
313 gether_set_gadget(gether_opts
->net
, cdev
->gadget
);
314 status
= gether_register_netdev(gether_opts
->net
);
315 mutex_unlock(&gether_opts
->lock
);
318 gether_opts
->bound
= true;
321 us
= usb_gstrings_attach(cdev
, geth_strings
,
322 ARRAY_SIZE(geth_string_defs
));
326 subset_data_intf
.iInterface
= us
[0].id
;
327 ether_desc
.iMACAddress
= us
[1].id
;
329 /* allocate instance-specific interface IDs */
330 status
= usb_interface_id(c
, f
);
333 subset_data_intf
.bInterfaceNumber
= status
;
337 /* allocate instance-specific endpoints */
338 ep
= usb_ep_autoconfig(cdev
->gadget
, &fs_subset_in_desc
);
341 geth
->port
.in_ep
= ep
;
343 ep
= usb_ep_autoconfig(cdev
->gadget
, &fs_subset_out_desc
);
346 geth
->port
.out_ep
= ep
;
348 /* support all relevant hardware speeds... we expect that when
349 * hardware is dual speed, all bulk-capable endpoints work at
352 hs_subset_in_desc
.bEndpointAddress
= fs_subset_in_desc
.bEndpointAddress
;
353 hs_subset_out_desc
.bEndpointAddress
=
354 fs_subset_out_desc
.bEndpointAddress
;
356 ss_subset_in_desc
.bEndpointAddress
= fs_subset_in_desc
.bEndpointAddress
;
357 ss_subset_out_desc
.bEndpointAddress
=
358 fs_subset_out_desc
.bEndpointAddress
;
360 status
= usb_assign_descriptors(f
, fs_eth_function
, hs_eth_function
,
361 ss_eth_function
, NULL
);
365 /* NOTE: all that is done without knowing or caring about
366 * the network link ... which is unavailable to this code
367 * until we're activated via set_alt().
370 DBG(cdev
, "CDC Subset: %s speed IN/%s OUT/%s\n",
371 gadget_is_superspeed(c
->cdev
->gadget
) ? "super" :
372 gadget_is_dualspeed(c
->cdev
->gadget
) ? "dual" : "full",
373 geth
->port
.in_ep
->name
, geth
->port
.out_ep
->name
);
377 ERROR(cdev
, "%s: can't bind, err %d\n", f
->name
, status
);
382 static inline struct f_gether_opts
*to_f_gether_opts(struct config_item
*item
)
384 return container_of(to_config_group(item
), struct f_gether_opts
,
388 /* f_gether_item_ops */
389 USB_ETHERNET_CONFIGFS_ITEM(gether
);
391 /* f_gether_opts_dev_addr */
392 USB_ETHERNET_CONFIGFS_ITEM_ATTR_DEV_ADDR(gether
);
394 /* f_gether_opts_host_addr */
395 USB_ETHERNET_CONFIGFS_ITEM_ATTR_HOST_ADDR(gether
);
397 /* f_gether_opts_qmult */
398 USB_ETHERNET_CONFIGFS_ITEM_ATTR_QMULT(gether
);
400 /* f_gether_opts_ifname */
401 USB_ETHERNET_CONFIGFS_ITEM_ATTR_IFNAME(gether
);
403 static struct configfs_attribute
*gether_attrs
[] = {
404 &gether_opts_attr_dev_addr
,
405 &gether_opts_attr_host_addr
,
406 &gether_opts_attr_qmult
,
407 &gether_opts_attr_ifname
,
411 static const struct config_item_type gether_func_type
= {
412 .ct_item_ops
= &gether_item_ops
,
413 .ct_attrs
= gether_attrs
,
414 .ct_owner
= THIS_MODULE
,
417 static void geth_free_inst(struct usb_function_instance
*f
)
419 struct f_gether_opts
*opts
;
421 opts
= container_of(f
, struct f_gether_opts
, func_inst
);
423 gether_cleanup(netdev_priv(opts
->net
));
425 free_netdev(opts
->net
);
429 static struct usb_function_instance
*geth_alloc_inst(void)
431 struct f_gether_opts
*opts
;
433 opts
= kzalloc(sizeof(*opts
), GFP_KERNEL
);
435 return ERR_PTR(-ENOMEM
);
436 mutex_init(&opts
->lock
);
437 opts
->func_inst
.free_func_inst
= geth_free_inst
;
438 opts
->net
= gether_setup_default();
439 if (IS_ERR(opts
->net
)) {
440 struct net_device
*net
= opts
->net
;
442 return ERR_CAST(net
);
445 config_group_init_type_name(&opts
->func_inst
.group
, "",
448 return &opts
->func_inst
;
451 static void geth_free(struct usb_function
*f
)
453 struct f_gether
*eth
;
455 eth
= func_to_geth(f
);
459 static void geth_unbind(struct usb_configuration
*c
, struct usb_function
*f
)
461 geth_string_defs
[0].id
= 0;
462 usb_free_all_descriptors(f
);
465 static struct usb_function
*geth_alloc(struct usb_function_instance
*fi
)
467 struct f_gether
*geth
;
468 struct f_gether_opts
*opts
;
471 /* allocate and initialize one new instance */
472 geth
= kzalloc(sizeof(*geth
), GFP_KERNEL
);
474 return ERR_PTR(-ENOMEM
);
476 opts
= container_of(fi
, struct f_gether_opts
, func_inst
);
478 mutex_lock(&opts
->lock
);
480 /* export host's Ethernet address in CDC format */
481 status
= gether_get_host_addr_cdc(opts
->net
, geth
->ethaddr
,
482 sizeof(geth
->ethaddr
));
485 mutex_unlock(&opts
->lock
);
486 return ERR_PTR(-EINVAL
);
488 geth_string_defs
[1].s
= geth
->ethaddr
;
490 geth
->port
.ioport
= netdev_priv(opts
->net
);
491 mutex_unlock(&opts
->lock
);
492 geth
->port
.cdc_filter
= DEFAULT_FILTER
;
494 geth
->port
.func
.name
= "cdc_subset";
495 geth
->port
.func
.bind
= geth_bind
;
496 geth
->port
.func
.unbind
= geth_unbind
;
497 geth
->port
.func
.set_alt
= geth_set_alt
;
498 geth
->port
.func
.disable
= geth_disable
;
499 geth
->port
.func
.free_func
= geth_free
;
501 return &geth
->port
.func
;
504 DECLARE_USB_FUNCTION_INIT(geth
, geth_alloc_inst
, geth_alloc
);
505 MODULE_LICENSE("GPL");
506 MODULE_AUTHOR("David Brownell");