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