Merge remote-tracking branch 'asoc/topic/ac97' into asoc-fsl
[deliverable/linux.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 45
fee562a6 46#define USBF_ECM_INCLUDED
f176a5d8 47#include "f_ecm.c"
396cda90 48#ifdef USB_ETH_RNDIS
f466c635 49# define USB_FRNDIS_INCLUDED
f176a5d8 50# include "f_rndis.c"
cbbd14a9 51# include "rndis.h"
f176a5d8 52#endif
f1a1823f 53#include "u_ether.h"
f176a5d8 54
7d16e8d3 55USB_GADGET_COMPOSITE_OPTIONS();
279cc49a 56
f1a1823f
AP
57USB_ETHERNET_MODULE_PARAMETERS();
58
279cc49a
MN
59/***************************** Device Descriptor ****************************/
60
1c6529e9
MN
61#define MULTI_VENDOR_NUM 0x1d6b /* Linux Foundation */
62#define MULTI_PRODUCT_NUM 0x0104 /* Multifunction Composite Gadget */
279cc49a
MN
63
64
65enum {
66 __MULTI_NO_CONFIG,
67#ifdef CONFIG_USB_G_MULTI_RNDIS
68 MULTI_RNDIS_CONFIG_NUM,
69#endif
70#ifdef CONFIG_USB_G_MULTI_CDC
71 MULTI_CDC_CONFIG_NUM,
72#endif
73};
74
f176a5d8
MN
75
76static struct usb_device_descriptor device_desc = {
77 .bLength = sizeof device_desc,
78 .bDescriptorType = USB_DT_DEVICE,
79
80 .bcdUSB = cpu_to_le16(0x0200),
81
279cc49a 82 .bDeviceClass = USB_CLASS_MISC /* 0xEF */,
f176a5d8
MN
83 .bDeviceSubClass = 2,
84 .bDeviceProtocol = 1,
f176a5d8
MN
85
86 /* Vendor and product id can be overridden by module parameters. */
87 .idVendor = cpu_to_le16(MULTI_VENDOR_NUM),
88 .idProduct = cpu_to_le16(MULTI_PRODUCT_NUM),
f176a5d8
MN
89};
90
f176a5d8
MN
91
92static const struct usb_descriptor_header *otg_desc[] = {
279cc49a
MN
93 (struct usb_descriptor_header *) &(struct usb_otg_descriptor){
94 .bLength = sizeof(struct usb_otg_descriptor),
95 .bDescriptorType = USB_DT_OTG,
96
97 /*
98 * REVISIT SRP-only hardware is possible, although
99 * it would not be called "OTG" ...
100 */
101 .bmAttributes = USB_OTG_SRP | USB_OTG_HNP,
102 },
f176a5d8
MN
103 NULL,
104};
105
106
279cc49a 107enum {
276e2e4f 108 MULTI_STRING_RNDIS_CONFIG_IDX = USB_GADGET_FIRST_AVAIL_IDX,
279cc49a 109 MULTI_STRING_CDC_CONFIG_IDX,
279cc49a 110};
f176a5d8 111
f176a5d8 112static struct usb_string strings_dev[] = {
276e2e4f 113 [USB_GADGET_MANUFACTURER_IDX].s = "",
d33f74fc 114 [USB_GADGET_PRODUCT_IDX].s = DRIVER_DESC,
276e2e4f 115 [USB_GADGET_SERIAL_IDX].s = "",
279cc49a 116 [MULTI_STRING_RNDIS_CONFIG_IDX].s = "Multifunction with RNDIS",
279cc49a 117 [MULTI_STRING_CDC_CONFIG_IDX].s = "Multifunction with CDC ECM",
f176a5d8
MN
118 { } /* end of list */
119};
120
f176a5d8 121static struct usb_gadget_strings *dev_strings[] = {
279cc49a
MN
122 &(struct usb_gadget_strings){
123 .language = 0x0409, /* en-us */
124 .strings = strings_dev,
125 },
f176a5d8
MN
126 NULL,
127};
128
f176a5d8
MN
129
130
131
132/****************************** Configurations ******************************/
133
279cc49a
MN
134static struct fsg_module_parameters fsg_mod_data = { .stall = 1 };
135FSG_MODULE_PARAMETERS(/* no prefix */, fsg_mod_data);
136
137static struct fsg_common fsg_common;
138
f1a1823f 139static u8 host_mac[ETH_ALEN];
f176a5d8 140
59835ad7 141static struct usb_function_instance *fi_acm;
d6a01439 142static struct eth_dev *the_dev;
f176a5d8 143
279cc49a 144/********** RNDIS **********/
f176a5d8 145
396cda90 146#ifdef USB_ETH_RNDIS
59835ad7 147static struct usb_function *f_acm_rndis;
f176a5d8 148
c9bfff9c 149static __init int rndis_do_config(struct usb_configuration *c)
f176a5d8
MN
150{
151 int ret;
152
153 if (gadget_is_otg(c->cdev->gadget)) {
154 c->descriptors = otg_desc;
155 c->bmAttributes |= USB_CONFIG_ATT_WAKEUP;
156 }
157
f1a1823f 158 ret = rndis_bind_config(c, host_mac, the_dev);
f176a5d8
MN
159 if (ret < 0)
160 return ret;
161
59835ad7 162 f_acm_rndis = usb_get_function(fi_acm);
8abc6fa1
AP
163 if (IS_ERR(f_acm_rndis))
164 return PTR_ERR(f_acm_rndis);
59835ad7
SAS
165
166 ret = usb_add_function(c, f_acm_rndis);
167 if (ret)
168 goto err_conf;
f176a5d8 169
279cc49a 170 ret = fsg_bind_config(c->cdev, c, &fsg_common);
f176a5d8 171 if (ret < 0)
59835ad7 172 goto err_fsg;
f176a5d8
MN
173
174 return 0;
59835ad7
SAS
175err_fsg:
176 usb_remove_function(c, f_acm_rndis);
177err_conf:
178 usb_put_function(f_acm_rndis);
59835ad7 179 return ret;
f176a5d8
MN
180}
181
279cc49a
MN
182static int rndis_config_register(struct usb_composite_dev *cdev)
183{
184 static struct usb_configuration config = {
279cc49a
MN
185 .bConfigurationValue = MULTI_RNDIS_CONFIG_NUM,
186 .bmAttributes = USB_CONFIG_ATT_SELFPOWER,
187 };
188
189 config.label = strings_dev[MULTI_STRING_RNDIS_CONFIG_IDX].s;
190 config.iConfiguration = strings_dev[MULTI_STRING_RNDIS_CONFIG_IDX].id;
191
c9bfff9c 192 return usb_add_config(cdev, &config, rndis_do_config);
279cc49a
MN
193}
194
195#else
196
197static int rndis_config_register(struct usb_composite_dev *cdev)
198{
199 return 0;
200}
f176a5d8
MN
201
202#endif
203
279cc49a
MN
204
205/********** CDC ECM **********/
206
f176a5d8 207#ifdef CONFIG_USB_G_MULTI_CDC
59835ad7 208static struct usb_function *f_acm_multi;
f176a5d8 209
c9bfff9c 210static __init int cdc_do_config(struct usb_configuration *c)
f176a5d8
MN
211{
212 int ret;
213
214 if (gadget_is_otg(c->cdev->gadget)) {
215 c->descriptors = otg_desc;
216 c->bmAttributes |= USB_CONFIG_ATT_WAKEUP;
217 }
218
f1a1823f 219 ret = ecm_bind_config(c, host_mac, the_dev);
f176a5d8
MN
220 if (ret < 0)
221 return ret;
222
59835ad7
SAS
223 /* implicit port_num is zero */
224 f_acm_multi = usb_get_function(fi_acm);
225 if (IS_ERR(f_acm_multi))
8abc6fa1 226 return PTR_ERR(f_acm_multi);
59835ad7
SAS
227
228 ret = usb_add_function(c, f_acm_multi);
229 if (ret)
230 goto err_conf;
f176a5d8 231
279cc49a 232 ret = fsg_bind_config(c->cdev, c, &fsg_common);
f176a5d8 233 if (ret < 0)
59835ad7 234 goto err_fsg;
f176a5d8
MN
235
236 return 0;
59835ad7
SAS
237err_fsg:
238 usb_remove_function(c, f_acm_multi);
239err_conf:
240 usb_put_function(f_acm_multi);
59835ad7 241 return ret;
f176a5d8
MN
242}
243
279cc49a
MN
244static int cdc_config_register(struct usb_composite_dev *cdev)
245{
246 static struct usb_configuration config = {
279cc49a
MN
247 .bConfigurationValue = MULTI_CDC_CONFIG_NUM,
248 .bmAttributes = USB_CONFIG_ATT_SELFPOWER,
249 };
250
251 config.label = strings_dev[MULTI_STRING_CDC_CONFIG_IDX].s;
252 config.iConfiguration = strings_dev[MULTI_STRING_CDC_CONFIG_IDX].id;
253
c9bfff9c 254 return usb_add_config(cdev, &config, cdc_do_config);
279cc49a
MN
255}
256
257#else
258
259static int cdc_config_register(struct usb_composite_dev *cdev)
260{
261 return 0;
262}
f176a5d8
MN
263
264#endif
265
266
267
268/****************************** Gadget Bind ******************************/
269
279cc49a 270static int __ref multi_bind(struct usb_composite_dev *cdev)
f176a5d8
MN
271{
272 struct usb_gadget *gadget = cdev->gadget;
ed9cbda6 273 int status;
f176a5d8
MN
274
275 if (!can_support_ecm(cdev->gadget)) {
276 dev_err(&gadget->dev, "controller '%s' not usable\n",
277 gadget->name);
278 return -EINVAL;
279 }
280
281 /* set up network link layer */
f1a1823f
AP
282 the_dev = gether_setup(cdev->gadget, dev_addr, host_addr, host_mac,
283 qmult);
d6a01439
SAS
284 if (IS_ERR(the_dev))
285 return PTR_ERR(the_dev);
f176a5d8
MN
286
287 /* set up serial link layer */
59835ad7
SAS
288 fi_acm = usb_get_function_instance("acm");
289 if (IS_ERR(fi_acm)) {
290 status = PTR_ERR(fi_acm);
c4ed4ac1 291 goto fail0;
59835ad7
SAS
292 }
293
f176a5d8 294 /* set up mass storage function */
279cc49a
MN
295 {
296 void *retp;
297 retp = fsg_common_from_params(&fsg_common, cdev, &fsg_mod_data);
298 if (IS_ERR(retp)) {
299 status = PTR_ERR(retp);
300 goto fail1;
301 }
f176a5d8
MN
302 }
303
a99d8a45 304 /* allocate string IDs */
279cc49a
MN
305 status = usb_string_ids_tab(cdev, strings_dev);
306 if (unlikely(status < 0))
f176a5d8 307 goto fail2;
d33f74fc 308 device_desc.iProduct = strings_dev[USB_GADGET_PRODUCT_IDX].id;
f176a5d8 309
279cc49a
MN
310 /* register configurations */
311 status = rndis_config_register(cdev);
312 if (unlikely(status < 0))
f176a5d8 313 goto fail2;
f176a5d8 314
279cc49a
MN
315 status = cdc_config_register(cdev);
316 if (unlikely(status < 0))
f176a5d8 317 goto fail2;
7d16e8d3 318 usb_composite_overwrite_options(cdev, &coverwrite);
f176a5d8 319
279cc49a
MN
320 /* we're done */
321 dev_info(&gadget->dev, DRIVER_DESC "\n");
322 fsg_common_put(&fsg_common);
f176a5d8
MN
323 return 0;
324
279cc49a
MN
325
326 /* error recovery */
f176a5d8 327fail2:
279cc49a 328 fsg_common_put(&fsg_common);
f176a5d8 329fail1:
59835ad7 330 usb_put_function_instance(fi_acm);
f176a5d8 331fail0:
d6a01439 332 gether_cleanup(the_dev);
f176a5d8
MN
333 return status;
334}
335
336static int __exit multi_unbind(struct usb_composite_dev *cdev)
337{
59835ad7
SAS
338#ifdef CONFIG_USB_G_MULTI_CDC
339 usb_put_function(f_acm_multi);
340#endif
341#ifdef USB_ETH_RNDIS
342 usb_put_function(f_acm_rndis);
343#endif
344 usb_put_function_instance(fi_acm);
d6a01439 345 gether_cleanup(the_dev);
f176a5d8
MN
346 return 0;
347}
348
349
350/****************************** Some noise ******************************/
351
352
c2ec75c2 353static __refdata struct usb_composite_driver multi_driver = {
f176a5d8
MN
354 .name = "g_multi",
355 .dev = &device_desc,
356 .strings = dev_strings,
35a0e0bf 357 .max_speed = USB_SPEED_HIGH,
03e42bd5 358 .bind = multi_bind,
f176a5d8 359 .unbind = __exit_p(multi_unbind),
a99d8a45 360 .needs_serial = 1,
f176a5d8
MN
361};
362
f176a5d8 363
279cc49a 364static int __init multi_init(void)
f176a5d8 365{
03e42bd5 366 return usb_composite_probe(&multi_driver);
f176a5d8 367}
279cc49a 368module_init(multi_init);
f176a5d8 369
279cc49a 370static void __exit multi_exit(void)
f176a5d8
MN
371{
372 usb_composite_unregister(&multi_driver);
373}
279cc49a 374module_exit(multi_exit);
This page took 0.347702 seconds and 5 git commands to generate.