2 * cdc2.c -- CDC Composite driver, with ECM and ACM support
4 * Copyright (C) 2008 David Brownell
5 * Copyright (C) 2008 Nokia Corporation
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
13 #include <linux/kernel.h>
14 #include <linux/utsname.h>
15 #include <linux/module.h>
21 #define DRIVER_DESC "CDC Composite Gadget"
22 #define DRIVER_VERSION "King Kamehameha Day 2008"
24 /*-------------------------------------------------------------------------*/
26 /* DO NOT REUSE THESE IDs with a protocol-incompatible driver!! Ever!!
27 * Instead: allocate your own, using normal USB-IF procedures.
30 /* Thanks to NetChip Technologies for donating this product ID.
31 * It's for devices with only this composite CDC configuration.
33 #define CDC_VENDOR_NUM 0x0525 /* NetChip */
34 #define CDC_PRODUCT_NUM 0xa4aa /* CDC Composite: ECM + ACM */
36 /*-------------------------------------------------------------------------*/
39 * Kbuild is not very cooperative with respect to linking separately
40 * compiled library objects into one module. So for now we won't use
41 * separate compilation ... ensuring init/exit sections work to shrink
42 * the runtime footprint, and giving us at least some parts of what
43 * a "gcc --combine ... part1.c part2.c part3.c ... " build would.
46 #include "composite.c"
47 #include "usbstring.c"
49 #include "epautoconf.c"
55 /*-------------------------------------------------------------------------*/
57 static struct usb_device_descriptor device_desc
= {
58 .bLength
= sizeof device_desc
,
59 .bDescriptorType
= USB_DT_DEVICE
,
61 .bcdUSB
= cpu_to_le16(0x0200),
63 .bDeviceClass
= USB_CLASS_COMM
,
66 /* .bMaxPacketSize0 = f(hardware) */
68 /* Vendor and product id can be overridden by module parameters. */
69 .idVendor
= cpu_to_le16(CDC_VENDOR_NUM
),
70 .idProduct
= cpu_to_le16(CDC_PRODUCT_NUM
),
71 /* .bcdDevice = f(hardware) */
72 /* .iManufacturer = DYNAMIC */
73 /* .iProduct = DYNAMIC */
74 /* NO SERIAL NUMBER */
75 .bNumConfigurations
= 1,
78 static struct usb_otg_descriptor otg_descriptor
= {
79 .bLength
= sizeof otg_descriptor
,
80 .bDescriptorType
= USB_DT_OTG
,
82 /* REVISIT SRP-only hardware is possible, although
83 * it would not be called "OTG" ...
85 .bmAttributes
= USB_OTG_SRP
| USB_OTG_HNP
,
88 static const struct usb_descriptor_header
*otg_desc
[] = {
89 (struct usb_descriptor_header
*) &otg_descriptor
,
94 /* string IDs are assigned dynamically */
96 #define STRING_MANUFACTURER_IDX 0
97 #define STRING_PRODUCT_IDX 1
99 static char manufacturer
[50];
101 static struct usb_string strings_dev
[] = {
102 [STRING_MANUFACTURER_IDX
].s
= manufacturer
,
103 [STRING_PRODUCT_IDX
].s
= DRIVER_DESC
,
104 { } /* end of list */
107 static struct usb_gadget_strings stringtab_dev
= {
108 .language
= 0x0409, /* en-us */
109 .strings
= strings_dev
,
112 static struct usb_gadget_strings
*dev_strings
[] = {
117 static u8 hostaddr
[ETH_ALEN
];
119 /*-------------------------------------------------------------------------*/
122 * We _always_ have both CDC ECM and CDC ACM functions.
124 static int __init
cdc_do_config(struct usb_configuration
*c
)
128 if (gadget_is_otg(c
->cdev
->gadget
)) {
129 c
->descriptors
= otg_desc
;
130 c
->bmAttributes
|= USB_CONFIG_ATT_WAKEUP
;
133 status
= ecm_bind_config(c
, hostaddr
);
137 status
= acm_bind_config(c
, 0);
144 static struct usb_configuration cdc_config_driver
= {
145 .label
= "CDC Composite (ECM + ACM)",
146 .bConfigurationValue
= 1,
147 /* .iConfiguration = DYNAMIC */
148 .bmAttributes
= USB_CONFIG_ATT_SELFPOWER
,
151 /*-------------------------------------------------------------------------*/
153 static int __init
cdc_bind(struct usb_composite_dev
*cdev
)
156 struct usb_gadget
*gadget
= cdev
->gadget
;
159 if (!can_support_ecm(cdev
->gadget
)) {
160 dev_err(&gadget
->dev
, "controller '%s' not usable\n",
165 /* set up network link layer */
166 status
= gether_setup(cdev
->gadget
, hostaddr
);
170 /* set up serial link layer */
171 status
= gserial_setup(cdev
->gadget
, 1);
175 gcnum
= usb_gadget_controller_number(gadget
);
177 device_desc
.bcdDevice
= cpu_to_le16(0x0300 | gcnum
);
179 /* We assume that can_support_ecm() tells the truth;
180 * but if the controller isn't recognized at all then
181 * that assumption is a bit more likely to be wrong.
183 WARNING(cdev
, "controller '%s' not recognized; trying %s\n",
185 cdc_config_driver
.label
);
186 device_desc
.bcdDevice
=
187 cpu_to_le16(0x0300 | 0x0099);
191 /* Allocate string descriptor numbers ... note that string
192 * contents can be overridden by the composite_dev glue.
195 /* device descriptor strings: manufacturer, product */
196 snprintf(manufacturer
, sizeof manufacturer
, "%s %s with %s",
197 init_utsname()->sysname
, init_utsname()->release
,
199 status
= usb_string_id(cdev
);
202 strings_dev
[STRING_MANUFACTURER_IDX
].id
= status
;
203 device_desc
.iManufacturer
= status
;
205 status
= usb_string_id(cdev
);
208 strings_dev
[STRING_PRODUCT_IDX
].id
= status
;
209 device_desc
.iProduct
= status
;
211 /* register our configuration */
212 status
= usb_add_config(cdev
, &cdc_config_driver
, cdc_do_config
);
216 dev_info(&gadget
->dev
, "%s, version: " DRIVER_VERSION
"\n",
228 static int __exit
cdc_unbind(struct usb_composite_dev
*cdev
)
235 static struct usb_composite_driver cdc_driver
= {
238 .strings
= dev_strings
,
239 .max_speed
= USB_SPEED_HIGH
,
240 .unbind
= __exit_p(cdc_unbind
),
243 MODULE_DESCRIPTION(DRIVER_DESC
);
244 MODULE_AUTHOR("David Brownell");
245 MODULE_LICENSE("GPL");
247 static int __init
init(void)
249 return usb_composite_probe(&cdc_driver
, cdc_bind
);
253 static void __exit
cleanup(void)
255 usb_composite_unregister(&cdc_driver
);
257 module_exit(cleanup
);