usb: gadget: dummy_hcd: clean up checkpatch
[linux-2.6-block.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
7 * Author: Michal Nazarewicz (m.nazarewicz@samsung.com)
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>
17#include <linux/utsname.h>
279cc49a 18#include <linux/module.h>
f176a5d8
MN
19
20
396cda90
MN
21#if defined USB_ETH_RNDIS
22# undef USB_ETH_RNDIS
23#endif
dbe4a99d 24#ifdef CONFIG_USB_G_MULTI_RNDIS
396cda90 25# define USB_ETH_RNDIS y
f176a5d8
MN
26#endif
27
28
29#define DRIVER_DESC "Multifunction Composite Gadget"
f176a5d8 30
279cc49a
MN
31MODULE_DESCRIPTION(DRIVER_DESC);
32MODULE_AUTHOR("Michal Nazarewicz");
33MODULE_LICENSE("GPL");
f176a5d8 34
f176a5d8 35
279cc49a 36/***************************** All the files... *****************************/
f176a5d8
MN
37
38/*
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.
44 */
45
46#include "composite.c"
47#include "usbstring.c"
48#include "config.c"
49#include "epautoconf.c"
50
279cc49a
MN
51#include "f_mass_storage.c"
52
f176a5d8
MN
53#include "u_serial.c"
54#include "f_acm.c"
55
56#include "f_ecm.c"
57#include "f_subset.c"
396cda90 58#ifdef USB_ETH_RNDIS
f176a5d8
MN
59# include "f_rndis.c"
60# include "rndis.c"
61#endif
62#include "u_ether.c"
63
f176a5d8 64
279cc49a
MN
65
66/***************************** Device Descriptor ****************************/
67
1c6529e9
MN
68#define MULTI_VENDOR_NUM 0x1d6b /* Linux Foundation */
69#define MULTI_PRODUCT_NUM 0x0104 /* Multifunction Composite Gadget */
279cc49a
MN
70
71
72enum {
73 __MULTI_NO_CONFIG,
74#ifdef CONFIG_USB_G_MULTI_RNDIS
75 MULTI_RNDIS_CONFIG_NUM,
76#endif
77#ifdef CONFIG_USB_G_MULTI_CDC
78 MULTI_CDC_CONFIG_NUM,
79#endif
80};
81
f176a5d8
MN
82
83static struct usb_device_descriptor device_desc = {
84 .bLength = sizeof device_desc,
85 .bDescriptorType = USB_DT_DEVICE,
86
87 .bcdUSB = cpu_to_le16(0x0200),
88
279cc49a 89 .bDeviceClass = USB_CLASS_MISC /* 0xEF */,
f176a5d8
MN
90 .bDeviceSubClass = 2,
91 .bDeviceProtocol = 1,
f176a5d8
MN
92
93 /* Vendor and product id can be overridden by module parameters. */
94 .idVendor = cpu_to_le16(MULTI_VENDOR_NUM),
95 .idProduct = cpu_to_le16(MULTI_PRODUCT_NUM),
f176a5d8
MN
96};
97
f176a5d8
MN
98
99static const struct usb_descriptor_header *otg_desc[] = {
279cc49a
MN
100 (struct usb_descriptor_header *) &(struct usb_otg_descriptor){
101 .bLength = sizeof(struct usb_otg_descriptor),
102 .bDescriptorType = USB_DT_OTG,
103
104 /*
105 * REVISIT SRP-only hardware is possible, although
106 * it would not be called "OTG" ...
107 */
108 .bmAttributes = USB_OTG_SRP | USB_OTG_HNP,
109 },
f176a5d8
MN
110 NULL,
111};
112
113
279cc49a 114enum {
279cc49a
MN
115#ifdef CONFIG_USB_G_MULTI_RNDIS
116 MULTI_STRING_RNDIS_CONFIG_IDX,
117#endif
118#ifdef CONFIG_USB_G_MULTI_CDC
119 MULTI_STRING_CDC_CONFIG_IDX,
120#endif
121};
f176a5d8 122
f176a5d8 123static struct usb_string strings_dev[] = {
279cc49a
MN
124#ifdef CONFIG_USB_G_MULTI_RNDIS
125 [MULTI_STRING_RNDIS_CONFIG_IDX].s = "Multifunction with RNDIS",
126#endif
127#ifdef CONFIG_USB_G_MULTI_CDC
128 [MULTI_STRING_CDC_CONFIG_IDX].s = "Multifunction with CDC ECM",
129#endif
f176a5d8
MN
130 { } /* end of list */
131};
132
f176a5d8 133static struct usb_gadget_strings *dev_strings[] = {
279cc49a
MN
134 &(struct usb_gadget_strings){
135 .language = 0x0409, /* en-us */
136 .strings = strings_dev,
137 },
f176a5d8
MN
138 NULL,
139};
140
f176a5d8
MN
141
142
143
144/****************************** Configurations ******************************/
145
279cc49a
MN
146static struct fsg_module_parameters fsg_mod_data = { .stall = 1 };
147FSG_MODULE_PARAMETERS(/* no prefix */, fsg_mod_data);
148
149static struct fsg_common fsg_common;
150
151static u8 hostaddr[ETH_ALEN];
f176a5d8 152
f176a5d8 153
279cc49a 154/********** RNDIS **********/
f176a5d8 155
396cda90 156#ifdef USB_ETH_RNDIS
f176a5d8 157
c9bfff9c 158static __init int rndis_do_config(struct usb_configuration *c)
f176a5d8
MN
159{
160 int ret;
161
162 if (gadget_is_otg(c->cdev->gadget)) {
163 c->descriptors = otg_desc;
164 c->bmAttributes |= USB_CONFIG_ATT_WAKEUP;
165 }
166
167 ret = rndis_bind_config(c, hostaddr);
168 if (ret < 0)
169 return ret;
170
171 ret = acm_bind_config(c, 0);
172 if (ret < 0)
173 return ret;
174
279cc49a 175 ret = fsg_bind_config(c->cdev, c, &fsg_common);
f176a5d8
MN
176 if (ret < 0)
177 return ret;
178
179 return 0;
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
MN
207#ifdef CONFIG_USB_G_MULTI_CDC
208
c9bfff9c 209static __init int cdc_do_config(struct usb_configuration *c)
f176a5d8
MN
210{
211 int ret;
212
213 if (gadget_is_otg(c->cdev->gadget)) {
214 c->descriptors = otg_desc;
215 c->bmAttributes |= USB_CONFIG_ATT_WAKEUP;
216 }
217
218 ret = ecm_bind_config(c, hostaddr);
219 if (ret < 0)
220 return ret;
221
222 ret = acm_bind_config(c, 0);
223 if (ret < 0)
224 return ret;
225
279cc49a 226 ret = fsg_bind_config(c->cdev, c, &fsg_common);
f176a5d8
MN
227 if (ret < 0)
228 return ret;
f176a5d8
MN
229
230 return 0;
231}
232
279cc49a
MN
233static int cdc_config_register(struct usb_composite_dev *cdev)
234{
235 static struct usb_configuration config = {
279cc49a
MN
236 .bConfigurationValue = MULTI_CDC_CONFIG_NUM,
237 .bmAttributes = USB_CONFIG_ATT_SELFPOWER,
238 };
239
240 config.label = strings_dev[MULTI_STRING_CDC_CONFIG_IDX].s;
241 config.iConfiguration = strings_dev[MULTI_STRING_CDC_CONFIG_IDX].id;
242
c9bfff9c 243 return usb_add_config(cdev, &config, cdc_do_config);
279cc49a
MN
244}
245
246#else
247
248static int cdc_config_register(struct usb_composite_dev *cdev)
249{
250 return 0;
251}
f176a5d8
MN
252
253#endif
254
255
256
257/****************************** Gadget Bind ******************************/
258
259
279cc49a 260static int __ref multi_bind(struct usb_composite_dev *cdev)
f176a5d8
MN
261{
262 struct usb_gadget *gadget = cdev->gadget;
263 int status, gcnum;
264
265 if (!can_support_ecm(cdev->gadget)) {
266 dev_err(&gadget->dev, "controller '%s' not usable\n",
267 gadget->name);
268 return -EINVAL;
269 }
270
271 /* set up network link layer */
272 status = gether_setup(cdev->gadget, hostaddr);
273 if (status < 0)
274 return status;
275
276 /* set up serial link layer */
277 status = gserial_setup(cdev->gadget, 1);
278 if (status < 0)
279 goto fail0;
280
281 /* set up mass storage function */
279cc49a
MN
282 {
283 void *retp;
284 retp = fsg_common_from_params(&fsg_common, cdev, &fsg_mod_data);
285 if (IS_ERR(retp)) {
286 status = PTR_ERR(retp);
287 goto fail1;
288 }
f176a5d8
MN
289 }
290
279cc49a 291 /* set bcdDevice */
f176a5d8 292 gcnum = usb_gadget_controller_number(gadget);
279cc49a 293 if (gcnum >= 0) {
f176a5d8 294 device_desc.bcdDevice = cpu_to_le16(0x0300 | gcnum);
279cc49a
MN
295 } else {
296 WARNING(cdev, "controller '%s' not recognized\n", gadget->name);
f176a5d8
MN
297 device_desc.bcdDevice = cpu_to_le16(0x0300 | 0x0099);
298 }
299
a99d8a45 300 /* allocate string IDs */
279cc49a
MN
301 status = usb_string_ids_tab(cdev, strings_dev);
302 if (unlikely(status < 0))
f176a5d8 303 goto fail2;
f176a5d8 304
279cc49a
MN
305 /* register configurations */
306 status = rndis_config_register(cdev);
307 if (unlikely(status < 0))
f176a5d8 308 goto fail2;
f176a5d8 309
279cc49a
MN
310 status = cdc_config_register(cdev);
311 if (unlikely(status < 0))
f176a5d8 312 goto fail2;
f176a5d8 313
279cc49a
MN
314 /* we're done */
315 dev_info(&gadget->dev, DRIVER_DESC "\n");
316 fsg_common_put(&fsg_common);
f176a5d8
MN
317 return 0;
318
279cc49a
MN
319
320 /* error recovery */
f176a5d8 321fail2:
279cc49a 322 fsg_common_put(&fsg_common);
f176a5d8
MN
323fail1:
324 gserial_cleanup();
325fail0:
326 gether_cleanup();
327 return status;
328}
329
330static int __exit multi_unbind(struct usb_composite_dev *cdev)
331{
332 gserial_cleanup();
333 gether_cleanup();
334 return 0;
335}
336
337
338/****************************** Some noise ******************************/
339
340
341static struct usb_composite_driver multi_driver = {
342 .name = "g_multi",
343 .dev = &device_desc,
344 .strings = dev_strings,
35a0e0bf 345 .max_speed = USB_SPEED_HIGH,
f176a5d8 346 .unbind = __exit_p(multi_unbind),
a99d8a45
MN
347 .iProduct = DRIVER_DESC,
348 .needs_serial = 1,
f176a5d8
MN
349};
350
f176a5d8 351
279cc49a 352static int __init multi_init(void)
f176a5d8 353{
07a18bd7 354 return usb_composite_probe(&multi_driver, multi_bind);
f176a5d8 355}
279cc49a 356module_init(multi_init);
f176a5d8 357
279cc49a 358static void __exit multi_exit(void)
f176a5d8
MN
359{
360 usb_composite_unregister(&multi_driver);
361}
279cc49a 362module_exit(multi_exit);