blob: ca51661d71db27b839f2b1105e6286bdd6901023 [file] [log] [blame]
Michal Nazarewiczf176a5d2009-11-09 14:15:27 +01001/*
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.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 */
23
24
25#include <linux/kernel.h>
26#include <linux/utsname.h>
Michal Nazarewicz279cc492010-06-21 13:57:03 +020027#include <linux/module.h>
Michal Nazarewiczf176a5d2009-11-09 14:15:27 +010028
29
Michal Nazarewicz396cda92009-11-30 10:55:40 +010030#if defined USB_ETH_RNDIS
31# undef USB_ETH_RNDIS
32#endif
Michal Nazarewiczdbe4a992010-01-22 15:18:21 +010033#ifdef CONFIG_USB_G_MULTI_RNDIS
Michal Nazarewicz396cda92009-11-30 10:55:40 +010034# define USB_ETH_RNDIS y
Michal Nazarewiczf176a5d2009-11-09 14:15:27 +010035#endif
36
37
38#define DRIVER_DESC "Multifunction Composite Gadget"
Michal Nazarewiczf176a5d2009-11-09 14:15:27 +010039
Michal Nazarewicz279cc492010-06-21 13:57:03 +020040MODULE_DESCRIPTION(DRIVER_DESC);
41MODULE_AUTHOR("Michal Nazarewicz");
42MODULE_LICENSE("GPL");
Michal Nazarewiczf176a5d2009-11-09 14:15:27 +010043
Michal Nazarewiczf176a5d2009-11-09 14:15:27 +010044
Michal Nazarewicz279cc492010-06-21 13:57:03 +020045/***************************** All the files... *****************************/
Michal Nazarewiczf176a5d2009-11-09 14:15:27 +010046
47/*
48 * kbuild is not very cooperative with respect to linking separately
49 * compiled library objects into one module. So for now we won't use
50 * separate compilation ... ensuring init/exit sections work to shrink
51 * the runtime footprint, and giving us at least some parts of what
52 * a "gcc --combine ... part1.c part2.c part3.c ... " build would.
53 */
54
55#include "composite.c"
56#include "usbstring.c"
57#include "config.c"
58#include "epautoconf.c"
59
Michal Nazarewicz279cc492010-06-21 13:57:03 +020060#include "f_mass_storage.c"
61
Michal Nazarewiczf176a5d2009-11-09 14:15:27 +010062#include "u_serial.c"
63#include "f_acm.c"
64
65#include "f_ecm.c"
66#include "f_subset.c"
Michal Nazarewicz396cda92009-11-30 10:55:40 +010067#ifdef USB_ETH_RNDIS
Michal Nazarewiczf176a5d2009-11-09 14:15:27 +010068# include "f_rndis.c"
69# include "rndis.c"
70#endif
71#include "u_ether.c"
72
Michal Nazarewiczf176a5d2009-11-09 14:15:27 +010073
Michal Nazarewicz279cc492010-06-21 13:57:03 +020074
75/***************************** Device Descriptor ****************************/
76
Michal Nazarewicz1c6529e2010-08-12 17:43:44 +020077#define MULTI_VENDOR_NUM 0x1d6b /* Linux Foundation */
78#define MULTI_PRODUCT_NUM 0x0104 /* Multifunction Composite Gadget */
Michal Nazarewicz279cc492010-06-21 13:57:03 +020079
80
81enum {
82 __MULTI_NO_CONFIG,
83#ifdef CONFIG_USB_G_MULTI_RNDIS
84 MULTI_RNDIS_CONFIG_NUM,
85#endif
86#ifdef CONFIG_USB_G_MULTI_CDC
87 MULTI_CDC_CONFIG_NUM,
88#endif
89};
90
Michal Nazarewiczf176a5d2009-11-09 14:15:27 +010091
92static struct usb_device_descriptor device_desc = {
93 .bLength = sizeof device_desc,
94 .bDescriptorType = USB_DT_DEVICE,
95
96 .bcdUSB = cpu_to_le16(0x0200),
97
Michal Nazarewicz279cc492010-06-21 13:57:03 +020098 .bDeviceClass = USB_CLASS_MISC /* 0xEF */,
Michal Nazarewiczf176a5d2009-11-09 14:15:27 +010099 .bDeviceSubClass = 2,
100 .bDeviceProtocol = 1,
Michal Nazarewiczf176a5d2009-11-09 14:15:27 +0100101
102 /* Vendor and product id can be overridden by module parameters. */
103 .idVendor = cpu_to_le16(MULTI_VENDOR_NUM),
104 .idProduct = cpu_to_le16(MULTI_PRODUCT_NUM),
Michal Nazarewiczf176a5d2009-11-09 14:15:27 +0100105};
106
Michal Nazarewiczf176a5d2009-11-09 14:15:27 +0100107
108static const struct usb_descriptor_header *otg_desc[] = {
Michal Nazarewicz279cc492010-06-21 13:57:03 +0200109 (struct usb_descriptor_header *) &(struct usb_otg_descriptor){
110 .bLength = sizeof(struct usb_otg_descriptor),
111 .bDescriptorType = USB_DT_OTG,
112
113 /*
114 * REVISIT SRP-only hardware is possible, although
115 * it would not be called "OTG" ...
116 */
117 .bmAttributes = USB_OTG_SRP | USB_OTG_HNP,
118 },
Michal Nazarewiczf176a5d2009-11-09 14:15:27 +0100119 NULL,
120};
121
122
Michal Nazarewicz279cc492010-06-21 13:57:03 +0200123enum {
Michal Nazarewicz279cc492010-06-21 13:57:03 +0200124#ifdef CONFIG_USB_G_MULTI_RNDIS
125 MULTI_STRING_RNDIS_CONFIG_IDX,
126#endif
127#ifdef CONFIG_USB_G_MULTI_CDC
128 MULTI_STRING_CDC_CONFIG_IDX,
129#endif
130};
Michal Nazarewiczf176a5d2009-11-09 14:15:27 +0100131
Michal Nazarewiczf176a5d2009-11-09 14:15:27 +0100132static struct usb_string strings_dev[] = {
Michal Nazarewicz279cc492010-06-21 13:57:03 +0200133#ifdef CONFIG_USB_G_MULTI_RNDIS
134 [MULTI_STRING_RNDIS_CONFIG_IDX].s = "Multifunction with RNDIS",
135#endif
136#ifdef CONFIG_USB_G_MULTI_CDC
137 [MULTI_STRING_CDC_CONFIG_IDX].s = "Multifunction with CDC ECM",
138#endif
Michal Nazarewiczf176a5d2009-11-09 14:15:27 +0100139 { } /* end of list */
140};
141
Michal Nazarewiczf176a5d2009-11-09 14:15:27 +0100142static struct usb_gadget_strings *dev_strings[] = {
Michal Nazarewicz279cc492010-06-21 13:57:03 +0200143 &(struct usb_gadget_strings){
144 .language = 0x0409, /* en-us */
145 .strings = strings_dev,
146 },
Michal Nazarewiczf176a5d2009-11-09 14:15:27 +0100147 NULL,
148};
149
Michal Nazarewiczf176a5d2009-11-09 14:15:27 +0100150
151
152
153/****************************** Configurations ******************************/
154
Michal Nazarewicz279cc492010-06-21 13:57:03 +0200155static struct fsg_module_parameters fsg_mod_data = { .stall = 1 };
156FSG_MODULE_PARAMETERS(/* no prefix */, fsg_mod_data);
Michal Nazarewiczf176a5d2009-11-09 14:15:27 +0100157
Michal Nazarewicz279cc492010-06-21 13:57:03 +0200158static struct fsg_common fsg_common;
Michal Nazarewiczf176a5d2009-11-09 14:15:27 +0100159
Michal Nazarewicz279cc492010-06-21 13:57:03 +0200160static u8 hostaddr[ETH_ALEN];
161
162
163/********** RNDIS **********/
Michal Nazarewiczf176a5d2009-11-09 14:15:27 +0100164
Michal Nazarewicz396cda92009-11-30 10:55:40 +0100165#ifdef USB_ETH_RNDIS
Michal Nazarewiczf176a5d2009-11-09 14:15:27 +0100166
Michal Nazarewicz279cc492010-06-21 13:57:03 +0200167static __ref int rndis_do_config(struct usb_configuration *c)
Michal Nazarewiczf176a5d2009-11-09 14:15:27 +0100168{
169 int ret;
170
171 if (gadget_is_otg(c->cdev->gadget)) {
172 c->descriptors = otg_desc;
173 c->bmAttributes |= USB_CONFIG_ATT_WAKEUP;
174 }
175
176 ret = rndis_bind_config(c, hostaddr);
177 if (ret < 0)
178 return ret;
179
180 ret = acm_bind_config(c, 0);
181 if (ret < 0)
182 return ret;
183
Michal Nazarewicz279cc492010-06-21 13:57:03 +0200184 ret = fsg_bind_config(c->cdev, c, &fsg_common);
Michal Nazarewiczf176a5d2009-11-09 14:15:27 +0100185 if (ret < 0)
186 return ret;
187
188 return 0;
189}
190
Michal Nazarewicz279cc492010-06-21 13:57:03 +0200191static int rndis_config_register(struct usb_composite_dev *cdev)
192{
193 static struct usb_configuration config = {
194 .bind = rndis_do_config,
195 .bConfigurationValue = MULTI_RNDIS_CONFIG_NUM,
196 .bmAttributes = USB_CONFIG_ATT_SELFPOWER,
197 };
198
199 config.label = strings_dev[MULTI_STRING_RNDIS_CONFIG_IDX].s;
200 config.iConfiguration = strings_dev[MULTI_STRING_RNDIS_CONFIG_IDX].id;
201
202 return usb_add_config(cdev, &config);
203}
204
205#else
206
207static int rndis_config_register(struct usb_composite_dev *cdev)
208{
209 return 0;
210}
Michal Nazarewiczf176a5d2009-11-09 14:15:27 +0100211
212#endif
213
Michal Nazarewicz279cc492010-06-21 13:57:03 +0200214
215/********** CDC ECM **********/
216
Michal Nazarewiczf176a5d2009-11-09 14:15:27 +0100217#ifdef CONFIG_USB_G_MULTI_CDC
218
Michal Nazarewicz279cc492010-06-21 13:57:03 +0200219static __ref int cdc_do_config(struct usb_configuration *c)
Michal Nazarewiczf176a5d2009-11-09 14:15:27 +0100220{
221 int ret;
222
223 if (gadget_is_otg(c->cdev->gadget)) {
224 c->descriptors = otg_desc;
225 c->bmAttributes |= USB_CONFIG_ATT_WAKEUP;
226 }
227
228 ret = ecm_bind_config(c, hostaddr);
229 if (ret < 0)
230 return ret;
231
232 ret = acm_bind_config(c, 0);
233 if (ret < 0)
234 return ret;
235
Michal Nazarewicz279cc492010-06-21 13:57:03 +0200236 ret = fsg_bind_config(c->cdev, c, &fsg_common);
Michal Nazarewiczf176a5d2009-11-09 14:15:27 +0100237 if (ret < 0)
238 return ret;
Michal Nazarewiczf176a5d2009-11-09 14:15:27 +0100239
240 return 0;
241}
242
Michal Nazarewicz279cc492010-06-21 13:57:03 +0200243static int cdc_config_register(struct usb_composite_dev *cdev)
244{
245 static struct usb_configuration config = {
246 .bind = cdc_do_config,
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
254 return usb_add_config(cdev, &config);
255}
256
257#else
258
259static int cdc_config_register(struct usb_composite_dev *cdev)
260{
261 return 0;
262}
Michal Nazarewiczf176a5d2009-11-09 14:15:27 +0100263
264#endif
265
266
267
268/****************************** Gadget Bind ******************************/
269
270
Michal Nazarewicz279cc492010-06-21 13:57:03 +0200271static int __ref multi_bind(struct usb_composite_dev *cdev)
Michal Nazarewiczf176a5d2009-11-09 14:15:27 +0100272{
273 struct usb_gadget *gadget = cdev->gadget;
274 int status, gcnum;
275
276 if (!can_support_ecm(cdev->gadget)) {
277 dev_err(&gadget->dev, "controller '%s' not usable\n",
278 gadget->name);
279 return -EINVAL;
280 }
281
282 /* set up network link layer */
283 status = gether_setup(cdev->gadget, hostaddr);
284 if (status < 0)
285 return status;
286
287 /* set up serial link layer */
288 status = gserial_setup(cdev->gadget, 1);
289 if (status < 0)
290 goto fail0;
291
292 /* set up mass storage function */
Michal Nazarewicz279cc492010-06-21 13:57:03 +0200293 {
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 }
Michal Nazarewiczf176a5d2009-11-09 14:15:27 +0100300 }
301
Michal Nazarewicz279cc492010-06-21 13:57:03 +0200302 /* set bcdDevice */
Michal Nazarewiczf176a5d2009-11-09 14:15:27 +0100303 gcnum = usb_gadget_controller_number(gadget);
Michal Nazarewicz279cc492010-06-21 13:57:03 +0200304 if (gcnum >= 0) {
Michal Nazarewiczf176a5d2009-11-09 14:15:27 +0100305 device_desc.bcdDevice = cpu_to_le16(0x0300 | gcnum);
Michal Nazarewicz279cc492010-06-21 13:57:03 +0200306 } else {
307 WARNING(cdev, "controller '%s' not recognized\n", gadget->name);
Michal Nazarewiczf176a5d2009-11-09 14:15:27 +0100308 device_desc.bcdDevice = cpu_to_le16(0x0300 | 0x0099);
309 }
310
Michal Nazarewicza99d8a42010-08-12 17:43:49 +0200311 /* allocate string IDs */
Michal Nazarewicz279cc492010-06-21 13:57:03 +0200312 status = usb_string_ids_tab(cdev, strings_dev);
313 if (unlikely(status < 0))
Michal Nazarewiczf176a5d2009-11-09 14:15:27 +0100314 goto fail2;
Michal Nazarewiczf176a5d2009-11-09 14:15:27 +0100315
Michal Nazarewicz279cc492010-06-21 13:57:03 +0200316 /* register configurations */
317 status = rndis_config_register(cdev);
318 if (unlikely(status < 0))
Michal Nazarewiczf176a5d2009-11-09 14:15:27 +0100319 goto fail2;
Michal Nazarewiczf176a5d2009-11-09 14:15:27 +0100320
Michal Nazarewicz279cc492010-06-21 13:57:03 +0200321 status = cdc_config_register(cdev);
322 if (unlikely(status < 0))
Michal Nazarewiczf176a5d2009-11-09 14:15:27 +0100323 goto fail2;
Michal Nazarewiczf176a5d2009-11-09 14:15:27 +0100324
Michal Nazarewicz279cc492010-06-21 13:57:03 +0200325 /* we're done */
326 dev_info(&gadget->dev, DRIVER_DESC "\n");
327 fsg_common_put(&fsg_common);
Michal Nazarewiczf176a5d2009-11-09 14:15:27 +0100328 return 0;
329
Michal Nazarewicz279cc492010-06-21 13:57:03 +0200330
331 /* error recovery */
Michal Nazarewiczf176a5d2009-11-09 14:15:27 +0100332fail2:
Michal Nazarewicz279cc492010-06-21 13:57:03 +0200333 fsg_common_put(&fsg_common);
Michal Nazarewiczf176a5d2009-11-09 14:15:27 +0100334fail1:
335 gserial_cleanup();
336fail0:
337 gether_cleanup();
338 return status;
339}
340
341static int __exit multi_unbind(struct usb_composite_dev *cdev)
342{
343 gserial_cleanup();
344 gether_cleanup();
345 return 0;
346}
347
348
349/****************************** Some noise ******************************/
350
351
352static struct usb_composite_driver multi_driver = {
353 .name = "g_multi",
354 .dev = &device_desc,
355 .strings = dev_strings,
356 .bind = multi_bind,
357 .unbind = __exit_p(multi_unbind),
Michal Nazarewicza99d8a42010-08-12 17:43:49 +0200358 .iProduct = DRIVER_DESC,
359 .needs_serial = 1,
Michal Nazarewiczf176a5d2009-11-09 14:15:27 +0100360};
361
Michal Nazarewiczf176a5d2009-11-09 14:15:27 +0100362
Michal Nazarewicz279cc492010-06-21 13:57:03 +0200363static int __init multi_init(void)
Michal Nazarewiczf176a5d2009-11-09 14:15:27 +0100364{
365 return usb_composite_register(&multi_driver);
366}
Michal Nazarewicz279cc492010-06-21 13:57:03 +0200367module_init(multi_init);
Michal Nazarewiczf176a5d2009-11-09 14:15:27 +0100368
Michal Nazarewicz279cc492010-06-21 13:57:03 +0200369static void __exit multi_exit(void)
Michal Nazarewiczf176a5d2009-11-09 14:15:27 +0100370{
371 usb_composite_unregister(&multi_driver);
372}
Michal Nazarewicz279cc492010-06-21 13:57:03 +0200373module_exit(multi_exit);