USB: omninet: clean up protocol description
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / usb / gadget / multi.c
CommitLineData
f176a5d8
MN
1/*
2 * multi.c -- Multifunction Composite driver
3 *
4 * Copyright (C) 2008 David Brownell
5 * Copyright (C) 2008 Nokia Corporation
6 * Copyright (C) 2009 Samsung Electronics
54b8360f 7 * Author: Michal Nazarewicz (mina86@mina86.com)
f176a5d8
MN
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
f176a5d8
MN
13 */
14
15
16#include <linux/kernel.h>
279cc49a 17#include <linux/module.h>
f176a5d8 18
59835ad7 19#include "u_serial.h"
396cda90
MN
20#if defined USB_ETH_RNDIS
21# undef USB_ETH_RNDIS
22#endif
dbe4a99d 23#ifdef CONFIG_USB_G_MULTI_RNDIS
396cda90 24# define USB_ETH_RNDIS y
f176a5d8
MN
25#endif
26
27
28#define DRIVER_DESC "Multifunction Composite Gadget"
f176a5d8 29
279cc49a
MN
30MODULE_DESCRIPTION(DRIVER_DESC);
31MODULE_AUTHOR("Michal Nazarewicz");
32MODULE_LICENSE("GPL");
f176a5d8 33
f176a5d8 34
279cc49a 35/***************************** All the files... *****************************/
f176a5d8
MN
36
37/*
38 * kbuild is not very cooperative with respect to linking separately
39 * compiled library objects into one module. So for now we won't use
40 * separate compilation ... ensuring init/exit sections work to shrink
41 * the runtime footprint, and giving us at least some parts of what
42 * a "gcc --combine ... part1.c part2.c part3.c ... " build would.
43 */
279cc49a 44#include "f_mass_storage.c"
f176a5d8
MN
45
46#include "f_ecm.c"
47#include "f_subset.c"
396cda90 48#ifdef USB_ETH_RNDIS
f176a5d8
MN
49# include "f_rndis.c"
50# include "rndis.c"
51#endif
52#include "u_ether.c"
53
7d16e8d3 54USB_GADGET_COMPOSITE_OPTIONS();
279cc49a
MN
55
56/***************************** Device Descriptor ****************************/
57
1c6529e9
MN
58#define MULTI_VENDOR_NUM 0x1d6b /* Linux Foundation */
59#define MULTI_PRODUCT_NUM 0x0104 /* Multifunction Composite Gadget */
279cc49a
MN
60
61
62enum {
63 __MULTI_NO_CONFIG,
64#ifdef CONFIG_USB_G_MULTI_RNDIS
65 MULTI_RNDIS_CONFIG_NUM,
66#endif
67#ifdef CONFIG_USB_G_MULTI_CDC
68 MULTI_CDC_CONFIG_NUM,
69#endif
70};
71
f176a5d8
MN
72
73static struct usb_device_descriptor device_desc = {
74 .bLength = sizeof device_desc,
75 .bDescriptorType = USB_DT_DEVICE,
76
77 .bcdUSB = cpu_to_le16(0x0200),
78
279cc49a 79 .bDeviceClass = USB_CLASS_MISC /* 0xEF */,
f176a5d8
MN
80 .bDeviceSubClass = 2,
81 .bDeviceProtocol = 1,
f176a5d8
MN
82
83 /* Vendor and product id can be overridden by module parameters. */
84 .idVendor = cpu_to_le16(MULTI_VENDOR_NUM),
85 .idProduct = cpu_to_le16(MULTI_PRODUCT_NUM),
f176a5d8
MN
86};
87
f176a5d8
MN
88
89static const struct usb_descriptor_header *otg_desc[] = {
279cc49a
MN
90 (struct usb_descriptor_header *) &(struct usb_otg_descriptor){
91 .bLength = sizeof(struct usb_otg_descriptor),
92 .bDescriptorType = USB_DT_OTG,
93
94 /*
95 * REVISIT SRP-only hardware is possible, although
96 * it would not be called "OTG" ...
97 */
98 .bmAttributes = USB_OTG_SRP | USB_OTG_HNP,
99 },
f176a5d8
MN
100 NULL,
101};
102
103
279cc49a 104enum {
276e2e4f 105 MULTI_STRING_RNDIS_CONFIG_IDX = USB_GADGET_FIRST_AVAIL_IDX,
279cc49a 106 MULTI_STRING_CDC_CONFIG_IDX,
279cc49a 107};
f176a5d8 108
f176a5d8 109static struct usb_string strings_dev[] = {
276e2e4f 110 [USB_GADGET_MANUFACTURER_IDX].s = "",
d33f74fc 111 [USB_GADGET_PRODUCT_IDX].s = DRIVER_DESC,
276e2e4f 112 [USB_GADGET_SERIAL_IDX].s = "",
279cc49a 113 [MULTI_STRING_RNDIS_CONFIG_IDX].s = "Multifunction with RNDIS",
279cc49a 114 [MULTI_STRING_CDC_CONFIG_IDX].s = "Multifunction with CDC ECM",
f176a5d8
MN
115 { } /* end of list */
116};
117
f176a5d8 118static struct usb_gadget_strings *dev_strings[] = {
279cc49a
MN
119 &(struct usb_gadget_strings){
120 .language = 0x0409, /* en-us */
121 .strings = strings_dev,
122 },
f176a5d8
MN
123 NULL,
124};
125
f176a5d8
MN
126
127
128
129/****************************** Configurations ******************************/
130
279cc49a
MN
131static struct fsg_module_parameters fsg_mod_data = { .stall = 1 };
132FSG_MODULE_PARAMETERS(/* no prefix */, fsg_mod_data);
133
134static struct fsg_common fsg_common;
135
136static u8 hostaddr[ETH_ALEN];
f176a5d8 137
59835ad7 138static struct usb_function_instance *fi_acm;
d6a01439 139static struct eth_dev *the_dev;
f176a5d8 140
279cc49a 141/********** RNDIS **********/
f176a5d8 142
396cda90 143#ifdef USB_ETH_RNDIS
59835ad7 144static struct usb_function *f_acm_rndis;
f176a5d8 145
c9bfff9c 146static __init int rndis_do_config(struct usb_configuration *c)
f176a5d8
MN
147{
148 int ret;
149
150 if (gadget_is_otg(c->cdev->gadget)) {
151 c->descriptors = otg_desc;
152 c->bmAttributes |= USB_CONFIG_ATT_WAKEUP;
153 }
154
d6a01439 155 ret = rndis_bind_config(c, hostaddr, the_dev);
f176a5d8
MN
156 if (ret < 0)
157 return ret;
158
59835ad7
SAS
159 f_acm_rndis = usb_get_function(fi_acm);
160 if (IS_ERR(f_acm_rndis))
161 goto err_func_acm;
162
163 ret = usb_add_function(c, f_acm_rndis);
164 if (ret)
165 goto err_conf;
f176a5d8 166
279cc49a 167 ret = fsg_bind_config(c->cdev, c, &fsg_common);
f176a5d8 168 if (ret < 0)
59835ad7 169 goto err_fsg;
f176a5d8
MN
170
171 return 0;
59835ad7
SAS
172err_fsg:
173 usb_remove_function(c, f_acm_rndis);
174err_conf:
175 usb_put_function(f_acm_rndis);
176err_func_acm:
177 return ret;
f176a5d8
MN
178}
179
279cc49a
MN
180static int rndis_config_register(struct usb_composite_dev *cdev)
181{
182 static struct usb_configuration config = {
279cc49a
MN
183 .bConfigurationValue = MULTI_RNDIS_CONFIG_NUM,
184 .bmAttributes = USB_CONFIG_ATT_SELFPOWER,
185 };
186
187 config.label = strings_dev[MULTI_STRING_RNDIS_CONFIG_IDX].s;
188 config.iConfiguration = strings_dev[MULTI_STRING_RNDIS_CONFIG_IDX].id;
189
c9bfff9c 190 return usb_add_config(cdev, &config, rndis_do_config);
279cc49a
MN
191}
192
193#else
194
195static int rndis_config_register(struct usb_composite_dev *cdev)
196{
197 return 0;
198}
f176a5d8
MN
199
200#endif
201
279cc49a
MN
202
203/********** CDC ECM **********/
204
f176a5d8 205#ifdef CONFIG_USB_G_MULTI_CDC
59835ad7 206static struct usb_function *f_acm_multi;
f176a5d8 207
c9bfff9c 208static __init int cdc_do_config(struct usb_configuration *c)
f176a5d8
MN
209{
210 int ret;
211
212 if (gadget_is_otg(c->cdev->gadget)) {
213 c->descriptors = otg_desc;
214 c->bmAttributes |= USB_CONFIG_ATT_WAKEUP;
215 }
216
d6a01439 217 ret = ecm_bind_config(c, hostaddr, the_dev);
f176a5d8
MN
218 if (ret < 0)
219 return ret;
220
59835ad7
SAS
221 /* implicit port_num is zero */
222 f_acm_multi = usb_get_function(fi_acm);
223 if (IS_ERR(f_acm_multi))
224 goto err_func_acm;
225
226 ret = usb_add_function(c, f_acm_multi);
227 if (ret)
228 goto err_conf;
f176a5d8 229
279cc49a 230 ret = fsg_bind_config(c->cdev, c, &fsg_common);
f176a5d8 231 if (ret < 0)
59835ad7 232 goto err_fsg;
f176a5d8
MN
233
234 return 0;
59835ad7
SAS
235err_fsg:
236 usb_remove_function(c, f_acm_multi);
237err_conf:
238 usb_put_function(f_acm_multi);
239err_func_acm:
240 return ret;
f176a5d8
MN
241}
242
279cc49a
MN
243static int cdc_config_register(struct usb_composite_dev *cdev)
244{
245 static struct usb_configuration config = {
279cc49a
MN
246 .bConfigurationValue = MULTI_CDC_CONFIG_NUM,
247 .bmAttributes = USB_CONFIG_ATT_SELFPOWER,
248 };
249
250 config.label = strings_dev[MULTI_STRING_CDC_CONFIG_IDX].s;
251 config.iConfiguration = strings_dev[MULTI_STRING_CDC_CONFIG_IDX].id;
252
c9bfff9c 253 return usb_add_config(cdev, &config, cdc_do_config);
279cc49a
MN
254}
255
256#else
257
258static int cdc_config_register(struct usb_composite_dev *cdev)
259{
260 return 0;
261}
f176a5d8
MN
262
263#endif
264
265
266
267/****************************** Gadget Bind ******************************/
268
279cc49a 269static int __ref multi_bind(struct usb_composite_dev *cdev)
f176a5d8
MN
270{
271 struct usb_gadget *gadget = cdev->gadget;
ed9cbda6 272 int status;
f176a5d8
MN
273
274 if (!can_support_ecm(cdev->gadget)) {
275 dev_err(&gadget->dev, "controller '%s' not usable\n",
276 gadget->name);
277 return -EINVAL;
278 }
279
280 /* set up network link layer */
d6a01439
SAS
281 the_dev = gether_setup(cdev->gadget, hostaddr);
282 if (IS_ERR(the_dev))
283 return PTR_ERR(the_dev);
f176a5d8
MN
284
285 /* set up serial link layer */
59835ad7
SAS
286 fi_acm = usb_get_function_instance("acm");
287 if (IS_ERR(fi_acm)) {
288 status = PTR_ERR(fi_acm);
c4ed4ac1 289 goto fail0;
59835ad7
SAS
290 }
291
f176a5d8 292 /* set up mass storage function */
279cc49a
MN
293 {
294 void *retp;
295 retp = fsg_common_from_params(&fsg_common, cdev, &fsg_mod_data);
296 if (IS_ERR(retp)) {
297 status = PTR_ERR(retp);
298 goto fail1;
299 }
f176a5d8
MN
300 }
301
a99d8a45 302 /* allocate string IDs */
279cc49a
MN
303 status = usb_string_ids_tab(cdev, strings_dev);
304 if (unlikely(status < 0))
f176a5d8 305 goto fail2;
d33f74fc 306 device_desc.iProduct = strings_dev[USB_GADGET_PRODUCT_IDX].id;
f176a5d8 307
279cc49a
MN
308 /* register configurations */
309 status = rndis_config_register(cdev);
310 if (unlikely(status < 0))
f176a5d8 311 goto fail2;
f176a5d8 312
279cc49a
MN
313 status = cdc_config_register(cdev);
314 if (unlikely(status < 0))
f176a5d8 315 goto fail2;
7d16e8d3 316 usb_composite_overwrite_options(cdev, &coverwrite);
f176a5d8 317
279cc49a
MN
318 /* we're done */
319 dev_info(&gadget->dev, DRIVER_DESC "\n");
320 fsg_common_put(&fsg_common);
f176a5d8
MN
321 return 0;
322
279cc49a
MN
323
324 /* error recovery */
f176a5d8 325fail2:
279cc49a 326 fsg_common_put(&fsg_common);
f176a5d8 327fail1:
59835ad7 328 usb_put_function_instance(fi_acm);
f176a5d8 329fail0:
d6a01439 330 gether_cleanup(the_dev);
f176a5d8
MN
331 return status;
332}
333
334static int __exit multi_unbind(struct usb_composite_dev *cdev)
335{
59835ad7
SAS
336#ifdef CONFIG_USB_G_MULTI_CDC
337 usb_put_function(f_acm_multi);
338#endif
339#ifdef USB_ETH_RNDIS
340 usb_put_function(f_acm_rndis);
341#endif
342 usb_put_function_instance(fi_acm);
d6a01439 343 gether_cleanup(the_dev);
f176a5d8
MN
344 return 0;
345}
346
347
348/****************************** Some noise ******************************/
349
350
c2ec75c2 351static __refdata struct usb_composite_driver multi_driver = {
f176a5d8
MN
352 .name = "g_multi",
353 .dev = &device_desc,
354 .strings = dev_strings,
35a0e0bf 355 .max_speed = USB_SPEED_HIGH,
03e42bd5 356 .bind = multi_bind,
f176a5d8 357 .unbind = __exit_p(multi_unbind),
a99d8a45 358 .needs_serial = 1,
f176a5d8
MN
359};
360
f176a5d8 361
279cc49a 362static int __init multi_init(void)
f176a5d8 363{
03e42bd5 364 return usb_composite_probe(&multi_driver);
f176a5d8 365}
279cc49a 366module_init(multi_init);
f176a5d8 367
279cc49a 368static void __exit multi_exit(void)
f176a5d8
MN
369{
370 usb_composite_unregister(&multi_driver);
371}
279cc49a 372module_exit(multi_exit);