USB: gadget: g_multi: moved strings handling code to composite
[deliverable/linux.git] / drivers / usb / gadget / ether.c
CommitLineData
1da177e4
LT
1/*
2 * ether.c -- Ethernet gadget driver, with CDC and non-CDC options
3 *
0391c828 4 * Copyright (C) 2003-2005,2008 David Brownell
1da177e4 5 * Copyright (C) 2003-2004 Robert Schwebel, Benedikt Spranger
0391c828 6 * Copyright (C) 2008 Nokia Corporation
1da177e4
LT
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.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 */
22
0cf4f2de 23/* #define VERBOSE_DEBUG */
1da177e4 24
1da177e4 25#include <linux/kernel.h>
1da177e4 26#include <linux/utsname.h>
1da177e4 27
396cda90
MN
28
29#if defined USB_ETH_RNDIS
30# undef USB_ETH_RNDIS
31#endif
32#ifdef CONFIG_USB_ETH_RNDIS
33# define USB_ETH_RNDIS y
34#endif
35
0391c828 36#include "u_ether.h"
1da177e4 37
1da177e4
LT
38
39/*
40 * Ethernet gadget driver -- with CDC and non-CDC options
41 * Builds on hardware support for a full duplex link.
42 *
43 * CDC Ethernet is the standard USB solution for sending Ethernet frames
44 * using USB. Real hardware tends to use the same framing protocol but look
45 * different for control features. This driver strongly prefers to use
46 * this USB-IF standard as its open-systems interoperability solution;
47 * most host side USB stacks (except from Microsoft) support it.
48 *
0391c828
DB
49 * This is sometimes called "CDC ECM" (Ethernet Control Model) to support
50 * TLA-soup. "CDC ACM" (Abstract Control Model) is for modems, and a new
51 * "CDC EEM" (Ethernet Emulation Model) is starting to spread.
52 *
53 * There's some hardware that can't talk CDC ECM. We make that hardware
1da177e4 54 * implement a "minimalist" vendor-agnostic CDC core: same framing, but
11d54898
DB
55 * link-level setup only requires activating the configuration. Only the
56 * endpoint descriptors, and product/vendor IDs, are relevant; no control
57 * operations are available. Linux supports it, but other host operating
58 * systems may not. (This is a subset of CDC Ethernet.)
59 *
60 * It turns out that if you add a few descriptors to that "CDC Subset",
61 * (Windows) host side drivers from MCCI can treat it as one submode of
62 * a proprietary scheme called "SAFE" ... without needing to know about
63 * specific product/vendor IDs. So we do that, making it easier to use
64 * those MS-Windows drivers. Those added descriptors make it resemble a
65 * CDC MDLM device, but they don't change device behavior at all. (See
66 * MCCI Engineering report 950198 "SAFE Networking Functions".)
1da177e4
LT
67 *
68 * A third option is also in use. Rather than CDC Ethernet, or something
69 * simpler, Microsoft pushes their own approach: RNDIS. The published
70 * RNDIS specs are ambiguous and appear to be incomplete, and are also
0391c828 71 * needlessly complex. They borrow more from CDC ACM than CDC ECM.
1da177e4
LT
72 */
73
74#define DRIVER_DESC "Ethernet Gadget"
0391c828 75#define DRIVER_VERSION "Memorial Day 2008"
1da177e4 76
396cda90 77#ifdef USB_ETH_RNDIS
0391c828
DB
78#define PREFIX "RNDIS/"
79#else
80#define PREFIX ""
1da177e4
LT
81#endif
82
0391c828
DB
83/*
84 * This driver aims for interoperability by using CDC ECM unless
85 *
86 * can_support_ecm()
1da177e4 87 *
0391c828
DB
88 * returns false, in which case it supports the CDC Subset. By default,
89 * that returns true; most hardware has no problems with CDC ECM, that's
90 * a good default. Previous versions of this driver had no default; this
91 * version changes that, removing overhead for new controller support.
92 *
93 * IF YOUR HARDWARE CAN'T SUPPORT CDC ECM, UPDATE THAT ROUTINE!
1da177e4 94 */
1da177e4 95
0391c828
DB
96static inline bool has_rndis(void)
97{
396cda90 98#ifdef USB_ETH_RNDIS
0391c828
DB
99 return true;
100#else
101 return false;
102#endif
103}
104
1da177e4
LT
105/*-------------------------------------------------------------------------*/
106
33376c1c
DB
107/*
108 * Kbuild is not very cooperative with respect to linking separately
109 * compiled library objects into one module. So for now we won't use
110 * separate compilation ... ensuring init/exit sections work to shrink
111 * the runtime footprint, and giving us at least some parts of what
112 * a "gcc --combine ... part1.c part2.c part3.c ... " build would.
113 */
114#include "composite.c"
115#include "usbstring.c"
116#include "config.c"
117#include "epautoconf.c"
118
119#include "f_ecm.c"
120#include "f_subset.c"
396cda90 121#ifdef USB_ETH_RNDIS
33376c1c
DB
122#include "f_rndis.c"
123#include "rndis.c"
124#endif
9b39e9dd 125#include "f_eem.c"
33376c1c
DB
126#include "u_ether.c"
127
128/*-------------------------------------------------------------------------*/
129
1da177e4
LT
130/* DO NOT REUSE THESE IDs with a protocol-incompatible driver!! Ever!!
131 * Instead: allocate your own, using normal USB-IF procedures.
132 */
133
134/* Thanks to NetChip Technologies for donating this product ID.
135 * It's for devices with only CDC Ethernet configurations.
136 */
0391c828
DB
137#define CDC_VENDOR_NUM 0x0525 /* NetChip */
138#define CDC_PRODUCT_NUM 0xa4a1 /* Linux-USB Ethernet Gadget */
1da177e4
LT
139
140/* For hardware that can't talk CDC, we use the same vendor ID that
141 * ARM Linux has used for ethernet-over-usb, both with sa1100 and
142 * with pxa250. We're protocol-compatible, if the host-side drivers
143 * use the endpoint descriptors. bcdDevice (version) is nonzero, so
144 * drivers that need to hard-wire endpoint numbers have a hook.
145 *
146 * The protocol is a minimal subset of CDC Ether, which works on any bulk
147 * hardware that's not deeply broken ... even on hardware that can't talk
148 * RNDIS (like SA-1100, with no interrupt endpoint, or anything that
149 * doesn't handle control-OUT).
150 */
151#define SIMPLE_VENDOR_NUM 0x049f
152#define SIMPLE_PRODUCT_NUM 0x505a
153
154/* For hardware that can talk RNDIS and either of the above protocols,
155 * use this ID ... the windows INF files will know it. Unless it's
156 * used with CDC Ethernet, Linux 2.4 hosts will need updates to choose
157 * the non-RNDIS configuration.
158 */
159#define RNDIS_VENDOR_NUM 0x0525 /* NetChip */
160#define RNDIS_PRODUCT_NUM 0xa4a2 /* Ethernet/RNDIS Gadget */
161
9b39e9dd 162/* For EEM gadgets */
4238ef54
BN
163#define EEM_VENDOR_NUM 0x1d6b /* Linux Foundation */
164#define EEM_PRODUCT_NUM 0x0102 /* EEM Gadget */
9b39e9dd 165
1da177e4
LT
166/*-------------------------------------------------------------------------*/
167
0391c828 168static struct usb_device_descriptor device_desc = {
1da177e4
LT
169 .bLength = sizeof device_desc,
170 .bDescriptorType = USB_DT_DEVICE,
171
551509d2 172 .bcdUSB = cpu_to_le16 (0x0200),
1da177e4
LT
173
174 .bDeviceClass = USB_CLASS_COMM,
175 .bDeviceSubClass = 0,
176 .bDeviceProtocol = 0,
0391c828 177 /* .bMaxPacketSize0 = f(hardware) */
1da177e4 178
0391c828
DB
179 /* Vendor and product id defaults change according to what configs
180 * we support. (As does bNumConfigurations.) These values can
181 * also be overridden by module parameters.
182 */
551509d2
HH
183 .idVendor = cpu_to_le16 (CDC_VENDOR_NUM),
184 .idProduct = cpu_to_le16 (CDC_PRODUCT_NUM),
0391c828
DB
185 /* .bcdDevice = f(hardware) */
186 /* .iManufacturer = DYNAMIC */
187 /* .iProduct = DYNAMIC */
188 /* NO SERIAL NUMBER */
1da177e4
LT
189 .bNumConfigurations = 1,
190};
191
0391c828 192static struct usb_otg_descriptor otg_descriptor = {
1da177e4
LT
193 .bLength = sizeof otg_descriptor,
194 .bDescriptorType = USB_DT_OTG,
195
0391c828
DB
196 /* REVISIT SRP-only hardware is possible, although
197 * it would not be called "OTG" ...
198 */
199 .bmAttributes = USB_OTG_SRP | USB_OTG_HNP,
1da177e4 200};
7e27f18c 201
0391c828
DB
202static const struct usb_descriptor_header *otg_desc[] = {
203 (struct usb_descriptor_header *) &otg_descriptor,
204 NULL,
1da177e4 205};
1da177e4 206
1da177e4 207
0391c828 208/* string IDs are assigned dynamically */
1da177e4 209
0391c828
DB
210#define STRING_MANUFACTURER_IDX 0
211#define STRING_PRODUCT_IDX 1
11d54898 212
0391c828 213static char manufacturer[50];
1da177e4 214
0391c828
DB
215static struct usb_string strings_dev[] = {
216 [STRING_MANUFACTURER_IDX].s = manufacturer,
217 [STRING_PRODUCT_IDX].s = PREFIX DRIVER_DESC,
218 { } /* end of list */
1da177e4
LT
219};
220
0391c828
DB
221static struct usb_gadget_strings stringtab_dev = {
222 .language = 0x0409, /* en-us */
223 .strings = strings_dev,
1da177e4
LT
224};
225
0391c828
DB
226static struct usb_gadget_strings *dev_strings[] = {
227 &stringtab_dev,
228 NULL,
1da177e4
LT
229};
230
0391c828 231static u8 hostaddr[ETH_ALEN];
11d54898 232
0391c828 233/*-------------------------------------------------------------------------*/
11d54898 234
0391c828
DB
235/*
236 * We may not have an RNDIS configuration, but if we do it needs to be
237 * the first one present. That's to make Microsoft's drivers happy,
238 * and to follow DOCSIS 1.0 (cable modem standard).
11d54898 239 */
89ba85d4 240static int __ref rndis_do_config(struct usb_configuration *c)
0391c828
DB
241{
242 /* FIXME alloc iConfiguration string, set it in c->strings */
11d54898 243
0391c828
DB
244 if (gadget_is_otg(c->cdev->gadget)) {
245 c->descriptors = otg_desc;
246 c->bmAttributes |= USB_CONFIG_ATT_WAKEUP;
247 }
1da177e4 248
0391c828
DB
249 return rndis_bind_config(c, hostaddr);
250}
1da177e4 251
0391c828
DB
252static struct usb_configuration rndis_config_driver = {
253 .label = "RNDIS",
254 .bind = rndis_do_config,
255 .bConfigurationValue = 2,
256 /* .iConfiguration = DYNAMIC */
257 .bmAttributes = USB_CONFIG_ATT_SELFPOWER,
1da177e4
LT
258};
259
0391c828 260/*-------------------------------------------------------------------------*/
1da177e4 261
c9188ad2 262#ifdef CONFIG_USB_ETH_EEM
9b39e9dd
BN
263static int use_eem = 1;
264#else
265static int use_eem;
266#endif
267module_param(use_eem, bool, 0);
268MODULE_PARM_DESC(use_eem, "use CDC EEM mode");
269
0391c828 270/*
9b39e9dd 271 * We _always_ have an ECM, CDC Subset, or EEM configuration.
1da177e4 272 */
89ba85d4 273static int __ref eth_do_config(struct usb_configuration *c)
0391c828
DB
274{
275 /* FIXME alloc iConfiguration string, set it in c->strings */
7e27f18c 276
0391c828
DB
277 if (gadget_is_otg(c->cdev->gadget)) {
278 c->descriptors = otg_desc;
279 c->bmAttributes |= USB_CONFIG_ATT_WAKEUP;
280 }
1da177e4 281
9b39e9dd
BN
282 if (use_eem)
283 return eem_bind_config(c);
284 else if (can_support_ecm(c->cdev->gadget))
0391c828
DB
285 return ecm_bind_config(c, hostaddr);
286 else
287 return geth_bind_config(c, hostaddr);
288}
1da177e4 289
0391c828
DB
290static struct usb_configuration eth_config_driver = {
291 /* .label = f(hardware) */
292 .bind = eth_do_config,
293 .bConfigurationValue = 1,
294 /* .iConfiguration = DYNAMIC */
295 .bmAttributes = USB_CONFIG_ATT_SELFPOWER,
1da177e4
LT
296};
297
0391c828 298/*-------------------------------------------------------------------------*/
1da177e4 299
89ba85d4 300static int __ref eth_bind(struct usb_composite_dev *cdev)
0391c828
DB
301{
302 int gcnum;
303 struct usb_gadget *gadget = cdev->gadget;
304 int status;
1da177e4 305
0391c828
DB
306 /* set up network link layer */
307 status = gether_setup(cdev->gadget, hostaddr);
308 if (status < 0)
309 return status;
1da177e4 310
0391c828 311 /* set up main config label and device descriptor */
9b39e9dd
BN
312 if (use_eem) {
313 /* EEM */
314 eth_config_driver.label = "CDC Ethernet (EEM)";
315 device_desc.idVendor = cpu_to_le16(EEM_VENDOR_NUM);
316 device_desc.idProduct = cpu_to_le16(EEM_PRODUCT_NUM);
317 } else if (can_support_ecm(cdev->gadget)) {
0391c828
DB
318 /* ECM */
319 eth_config_driver.label = "CDC Ethernet (ECM)";
320 } else {
321 /* CDC Subset */
322 eth_config_driver.label = "CDC Subset/SAFE";
1da177e4 323
4e19f220
DB
324 device_desc.idVendor = cpu_to_le16(SIMPLE_VENDOR_NUM);
325 device_desc.idProduct = cpu_to_le16(SIMPLE_PRODUCT_NUM);
326 if (!has_rndis())
327 device_desc.bDeviceClass = USB_CLASS_VENDOR_SPEC;
0391c828 328 }
1da177e4 329
0391c828
DB
330 if (has_rndis()) {
331 /* RNDIS plus ECM-or-Subset */
4e19f220
DB
332 device_desc.idVendor = cpu_to_le16(RNDIS_VENDOR_NUM);
333 device_desc.idProduct = cpu_to_le16(RNDIS_PRODUCT_NUM);
0391c828
DB
334 device_desc.bNumConfigurations = 2;
335 }
1da177e4 336
0391c828
DB
337 gcnum = usb_gadget_controller_number(gadget);
338 if (gcnum >= 0)
339 device_desc.bcdDevice = cpu_to_le16(0x0300 | gcnum);
340 else {
341 /* We assume that can_support_ecm() tells the truth;
342 * but if the controller isn't recognized at all then
343 * that assumption is a bit more likely to be wrong.
344 */
33376c1c
DB
345 dev_warn(&gadget->dev,
346 "controller '%s' not recognized; trying %s\n",
0391c828
DB
347 gadget->name,
348 eth_config_driver.label);
349 device_desc.bcdDevice =
551509d2 350 cpu_to_le16(0x0300 | 0x0099);
0391c828 351 }
1da177e4 352
1da177e4 353
0391c828
DB
354 /* Allocate string descriptor numbers ... note that string
355 * contents can be overridden by the composite_dev glue.
356 */
1da177e4 357
0391c828
DB
358 /* device descriptor strings: manufacturer, product */
359 snprintf(manufacturer, sizeof manufacturer, "%s %s with %s",
360 init_utsname()->sysname, init_utsname()->release,
361 gadget->name);
362 status = usb_string_id(cdev);
363 if (status < 0)
364 goto fail;
365 strings_dev[STRING_MANUFACTURER_IDX].id = status;
366 device_desc.iManufacturer = status;
1da177e4 367
0391c828
DB
368 status = usb_string_id(cdev);
369 if (status < 0)
370 goto fail;
371 strings_dev[STRING_PRODUCT_IDX].id = status;
372 device_desc.iProduct = status;
1da177e4 373
0391c828
DB
374 /* register our configuration(s); RNDIS first, if it's used */
375 if (has_rndis()) {
376 status = usb_add_config(cdev, &rndis_config_driver);
377 if (status < 0)
378 goto fail;
379 }
1da177e4 380
0391c828
DB
381 status = usb_add_config(cdev, &eth_config_driver);
382 if (status < 0)
383 goto fail;
1da177e4 384
33376c1c
DB
385 dev_info(&gadget->dev, "%s, version: " DRIVER_VERSION "\n",
386 DRIVER_DESC);
1da177e4 387
0391c828 388 return 0;
1da177e4 389
0391c828
DB
390fail:
391 gether_cleanup();
392 return status;
393}
1da177e4 394
0391c828
DB
395static int __exit eth_unbind(struct usb_composite_dev *cdev)
396{
397 gether_cleanup();
398 return 0;
399}
1da177e4 400
0391c828
DB
401static struct usb_composite_driver eth_driver = {
402 .name = "g_ether",
403 .dev = &device_desc,
404 .strings = dev_strings,
405 .bind = eth_bind,
406 .unbind = __exit_p(eth_unbind),
1da177e4
LT
407};
408
0391c828
DB
409MODULE_DESCRIPTION(PREFIX DRIVER_DESC);
410MODULE_AUTHOR("David Brownell, Benedikt Spanger");
411MODULE_LICENSE("GPL");
1da177e4 412
0391c828 413static int __init init(void)
1da177e4 414{
0391c828 415 return usb_composite_register(&eth_driver);
1da177e4 416}
0391c828 417module_init(init);
1da177e4 418
0391c828 419static void __exit cleanup(void)
1da177e4 420{
0391c828 421 usb_composite_unregister(&eth_driver);
1da177e4 422}
0391c828 423module_exit(cleanup);
This page took 0.622925 seconds and 5 git commands to generate.