diff options
-rw-r--r-- | drivers/usb/gadget/Kconfig | 42 | ||||
-rw-r--r-- | drivers/usb/gadget/Makefile | 2 | ||||
-rw-r--r-- | drivers/usb/gadget/multi.c | 355 |
3 files changed, 399 insertions, 0 deletions
diff --git a/drivers/usb/gadget/Kconfig b/drivers/usb/gadget/Kconfig index 3bb250fd5321..df8b11d6c0fe 100644 --- a/drivers/usb/gadget/Kconfig +++ b/drivers/usb/gadget/Kconfig | |||
@@ -812,6 +812,48 @@ config USB_CDC_COMPOSITE | |||
812 | Say "y" to link the driver statically, or "m" to build a | 812 | Say "y" to link the driver statically, or "m" to build a |
813 | dynamically linked module. | 813 | dynamically linked module. |
814 | 814 | ||
815 | config USB_G_MULTI | ||
816 | tristate "Multifunction Composite Gadget (EXPERIMENTAL)" | ||
817 | help | ||
818 | The Multifunction Composite Gadget provides Ethernet (RNDIS | ||
819 | and/or CDC Ethernet), mass storage and ACM serial link | ||
820 | interfaces. | ||
821 | |||
822 | You will be asked too choose which of the two configurations are | ||
823 | to be available in the gadget. At least one configuration must | ||
824 | be choosen to make gadget usable. Selecting more then one | ||
825 | configuration will prevent Windows from automatically detecting | ||
826 | the gadget as a composite gadget an INF file will be needed to | ||
827 | use the gadget. | ||
828 | |||
829 | Say "y" to link the driver statically, or "m" to build a | ||
830 | dynamically linked module called "g_multi". | ||
831 | |||
832 | config USB_G_MULTI_RNDIS | ||
833 | bool "RNDIS + CDC Serial + Storage configuration" | ||
834 | depends on USB_G_MULTI | ||
835 | default y | ||
836 | help | ||
837 | This option enables a configuration with RNDIS, CDC Serial and | ||
838 | Mass Storage functions available in the Multifunction Composite | ||
839 | Gadget. This is configuration dedicated for Windows since RNDIS | ||
840 | is Microsfot's protocol. | ||
841 | |||
842 | If unsure, say "y". | ||
843 | |||
844 | config USB_G_MULTI_CDC | ||
845 | bool "CDC Ethernet + CDC Serial + Storage configuration" | ||
846 | depends on USB_G_MULTI | ||
847 | default n | ||
848 | help | ||
849 | This option enables a configuration with CDC Ethernet (ECM), CDC | ||
850 | Serial and Mass Storage functions available in the Multifunction | ||
851 | Composite Gadget. This is configuration dedicated for Windows | ||
852 | since RNDIS is Microsfot's protocol. | ||
853 | |||
854 | If unsure, say "y". | ||
855 | |||
856 | |||
815 | # put drivers that need isochronous transfer support (for audio | 857 | # put drivers that need isochronous transfer support (for audio |
816 | # or video class gadget drivers), or specific hardware, here. | 858 | # or video class gadget drivers), or specific hardware, here. |
817 | 859 | ||
diff --git a/drivers/usb/gadget/Makefile b/drivers/usb/gadget/Makefile index 025ba2ed7907..2e2c047262b7 100644 --- a/drivers/usb/gadget/Makefile +++ b/drivers/usb/gadget/Makefile | |||
@@ -42,6 +42,7 @@ g_file_storage-objs := file_storage.o | |||
42 | g_mass_storage-objs := mass_storage.o | 42 | g_mass_storage-objs := mass_storage.o |
43 | g_printer-objs := printer.o | 43 | g_printer-objs := printer.o |
44 | g_cdc-objs := cdc2.o | 44 | g_cdc-objs := cdc2.o |
45 | g_multi-objs := multi.o | ||
45 | 46 | ||
46 | obj-$(CONFIG_USB_ZERO) += g_zero.o | 47 | obj-$(CONFIG_USB_ZERO) += g_zero.o |
47 | obj-$(CONFIG_USB_AUDIO) += g_audio.o | 48 | obj-$(CONFIG_USB_AUDIO) += g_audio.o |
@@ -53,4 +54,5 @@ obj-$(CONFIG_USB_G_SERIAL) += g_serial.o | |||
53 | obj-$(CONFIG_USB_G_PRINTER) += g_printer.o | 54 | obj-$(CONFIG_USB_G_PRINTER) += g_printer.o |
54 | obj-$(CONFIG_USB_MIDI_GADGET) += g_midi.o | 55 | obj-$(CONFIG_USB_MIDI_GADGET) += g_midi.o |
55 | obj-$(CONFIG_USB_CDC_COMPOSITE) += g_cdc.o | 56 | obj-$(CONFIG_USB_CDC_COMPOSITE) += g_cdc.o |
57 | obj-$(CONFIG_USB_G_MULTI) += g_multi.o | ||
56 | 58 | ||
diff --git a/drivers/usb/gadget/multi.c b/drivers/usb/gadget/multi.c new file mode 100644 index 000000000000..64711feca845 --- /dev/null +++ b/drivers/usb/gadget/multi.c | |||
@@ -0,0 +1,355 @@ | |||
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. | ||
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> | ||
27 | |||
28 | |||
29 | #if defined CONFIG_USB_G_MULTI_RNDIS | ||
30 | # define CONFIG_USB_ETH_RNDIS y | ||
31 | #endif | ||
32 | |||
33 | |||
34 | #define DRIVER_DESC "Multifunction Composite Gadget" | ||
35 | #define DRIVER_VERSION "2009/07/21" | ||
36 | |||
37 | /*-------------------------------------------------------------------------*/ | ||
38 | |||
39 | #define MULTI_VENDOR_NUM 0x0525 /* XXX NetChip */ | ||
40 | #define MULTI_PRODUCT_NUM 0xa4ab /* XXX */ | ||
41 | |||
42 | /*-------------------------------------------------------------------------*/ | ||
43 | |||
44 | /* | ||
45 | * kbuild is not very cooperative with respect to linking separately | ||
46 | * compiled library objects into one module. So for now we won't use | ||
47 | * separate compilation ... ensuring init/exit sections work to shrink | ||
48 | * the runtime footprint, and giving us at least some parts of what | ||
49 | * a "gcc --combine ... part1.c part2.c part3.c ... " build would. | ||
50 | */ | ||
51 | |||
52 | #include "composite.c" | ||
53 | #include "usbstring.c" | ||
54 | #include "config.c" | ||
55 | #include "epautoconf.c" | ||
56 | |||
57 | #include "u_serial.c" | ||
58 | #include "f_acm.c" | ||
59 | |||
60 | #include "f_ecm.c" | ||
61 | #include "f_subset.c" | ||
62 | #ifdef CONFIG_USB_ETH_RNDIS | ||
63 | # include "f_rndis.c" | ||
64 | # include "rndis.c" | ||
65 | #endif | ||
66 | #include "u_ether.c" | ||
67 | |||
68 | #undef DBG /* u_ether.c has broken idea about macros */ | ||
69 | #undef VDBG /* so clean up after it */ | ||
70 | #undef ERROR | ||
71 | #undef INFO | ||
72 | #include "f_mass_storage.c" | ||
73 | |||
74 | /*-------------------------------------------------------------------------*/ | ||
75 | |||
76 | static struct usb_device_descriptor device_desc = { | ||
77 | .bLength = sizeof device_desc, | ||
78 | .bDescriptorType = USB_DT_DEVICE, | ||
79 | |||
80 | .bcdUSB = cpu_to_le16(0x0200), | ||
81 | |||
82 | /* .bDeviceClass = USB_CLASS_COMM, */ | ||
83 | /* .bDeviceSubClass = 0, */ | ||
84 | /* .bDeviceProtocol = 0, */ | ||
85 | .bDeviceClass = 0xEF, | ||
86 | .bDeviceSubClass = 2, | ||
87 | .bDeviceProtocol = 1, | ||
88 | /* .bMaxPacketSize0 = f(hardware) */ | ||
89 | |||
90 | /* Vendor and product id can be overridden by module parameters. */ | ||
91 | .idVendor = cpu_to_le16(MULTI_VENDOR_NUM), | ||
92 | .idProduct = cpu_to_le16(MULTI_PRODUCT_NUM), | ||
93 | /* .bcdDevice = f(hardware) */ | ||
94 | /* .iManufacturer = DYNAMIC */ | ||
95 | /* .iProduct = DYNAMIC */ | ||
96 | /* NO SERIAL NUMBER */ | ||
97 | .bNumConfigurations = 1, | ||
98 | }; | ||
99 | |||
100 | static struct usb_otg_descriptor otg_descriptor = { | ||
101 | .bLength = sizeof otg_descriptor, | ||
102 | .bDescriptorType = USB_DT_OTG, | ||
103 | |||
104 | /* REVISIT SRP-only hardware is possible, although | ||
105 | * it would not be called "OTG" ... | ||
106 | */ | ||
107 | .bmAttributes = USB_OTG_SRP | USB_OTG_HNP, | ||
108 | }; | ||
109 | |||
110 | static const struct usb_descriptor_header *otg_desc[] = { | ||
111 | (struct usb_descriptor_header *) &otg_descriptor, | ||
112 | NULL, | ||
113 | }; | ||
114 | |||
115 | |||
116 | /* string IDs are assigned dynamically */ | ||
117 | |||
118 | #define STRING_MANUFACTURER_IDX 0 | ||
119 | #define STRING_PRODUCT_IDX 1 | ||
120 | |||
121 | static char manufacturer[50]; | ||
122 | |||
123 | static struct usb_string strings_dev[] = { | ||
124 | [STRING_MANUFACTURER_IDX].s = manufacturer, | ||
125 | [STRING_PRODUCT_IDX].s = DRIVER_DESC, | ||
126 | { } /* end of list */ | ||
127 | }; | ||
128 | |||
129 | static struct usb_gadget_strings stringtab_dev = { | ||
130 | .language = 0x0409, /* en-us */ | ||
131 | .strings = strings_dev, | ||
132 | }; | ||
133 | |||
134 | static struct usb_gadget_strings *dev_strings[] = { | ||
135 | &stringtab_dev, | ||
136 | NULL, | ||
137 | }; | ||
138 | |||
139 | static u8 hostaddr[ETH_ALEN]; | ||
140 | |||
141 | |||
142 | |||
143 | /****************************** Configurations ******************************/ | ||
144 | |||
145 | static struct fsg_module_parameters mod_data = { | ||
146 | .stall = 1 | ||
147 | }; | ||
148 | FSG_MODULE_PARAMETERS(/* no prefix */, mod_data); | ||
149 | |||
150 | static struct fsg_common *fsg_common; | ||
151 | |||
152 | |||
153 | #ifdef CONFIG_USB_ETH_RNDIS | ||
154 | |||
155 | static int __init rndis_do_config(struct usb_configuration *c) | ||
156 | { | ||
157 | int ret; | ||
158 | |||
159 | if (gadget_is_otg(c->cdev->gadget)) { | ||
160 | c->descriptors = otg_desc; | ||
161 | c->bmAttributes |= USB_CONFIG_ATT_WAKEUP; | ||
162 | } | ||
163 | |||
164 | ret = rndis_bind_config(c, hostaddr); | ||
165 | if (ret < 0) | ||
166 | return ret; | ||
167 | |||
168 | ret = acm_bind_config(c, 0); | ||
169 | if (ret < 0) | ||
170 | return ret; | ||
171 | |||
172 | ret = fsg_add(c->cdev, c, fsg_common); | ||
173 | if (ret < 0) | ||
174 | return ret; | ||
175 | |||
176 | return 0; | ||
177 | } | ||
178 | |||
179 | static struct usb_configuration rndis_config_driver = { | ||
180 | .label = "Multifunction Composite (RNDIS + MS + ACM)", | ||
181 | .bind = rndis_do_config, | ||
182 | .bConfigurationValue = 2, | ||
183 | /* .iConfiguration = DYNAMIC */ | ||
184 | .bmAttributes = USB_CONFIG_ATT_SELFPOWER, | ||
185 | }; | ||
186 | |||
187 | #endif | ||
188 | |||
189 | #ifdef CONFIG_USB_G_MULTI_CDC | ||
190 | |||
191 | static int __init cdc_do_config(struct usb_configuration *c) | ||
192 | { | ||
193 | int ret; | ||
194 | |||
195 | if (gadget_is_otg(c->cdev->gadget)) { | ||
196 | c->descriptors = otg_desc; | ||
197 | c->bmAttributes |= USB_CONFIG_ATT_WAKEUP; | ||
198 | } | ||
199 | |||
200 | ret = ecm_bind_config(c, hostaddr); | ||
201 | if (ret < 0) | ||
202 | return ret; | ||
203 | |||
204 | ret = acm_bind_config(c, 0); | ||
205 | if (ret < 0) | ||
206 | return ret; | ||
207 | |||
208 | ret = fsg_add(c->cdev, c, fsg_common); | ||
209 | if (ret < 0) | ||
210 | return ret; | ||
211 | if (ret < 0) | ||
212 | return ret; | ||
213 | |||
214 | return 0; | ||
215 | } | ||
216 | |||
217 | static struct usb_configuration cdc_config_driver = { | ||
218 | .label = "Multifunction Composite (CDC + MS + ACM)", | ||
219 | .bind = cdc_do_config, | ||
220 | .bConfigurationValue = 1, | ||
221 | /* .iConfiguration = DYNAMIC */ | ||
222 | .bmAttributes = USB_CONFIG_ATT_SELFPOWER, | ||
223 | }; | ||
224 | |||
225 | #endif | ||
226 | |||
227 | |||
228 | |||
229 | /****************************** Gadget Bind ******************************/ | ||
230 | |||
231 | |||
232 | static int __init multi_bind(struct usb_composite_dev *cdev) | ||
233 | { | ||
234 | struct usb_gadget *gadget = cdev->gadget; | ||
235 | int status, gcnum; | ||
236 | |||
237 | if (!can_support_ecm(cdev->gadget)) { | ||
238 | dev_err(&gadget->dev, "controller '%s' not usable\n", | ||
239 | gadget->name); | ||
240 | return -EINVAL; | ||
241 | } | ||
242 | |||
243 | /* set up network link layer */ | ||
244 | status = gether_setup(cdev->gadget, hostaddr); | ||
245 | if (status < 0) | ||
246 | return status; | ||
247 | |||
248 | /* set up serial link layer */ | ||
249 | status = gserial_setup(cdev->gadget, 1); | ||
250 | if (status < 0) | ||
251 | goto fail0; | ||
252 | |||
253 | /* set up mass storage function */ | ||
254 | fsg_common = fsg_common_from_params(0, cdev, &mod_data); | ||
255 | if (IS_ERR(fsg_common)) { | ||
256 | status = PTR_ERR(fsg_common); | ||
257 | goto fail1; | ||
258 | } | ||
259 | |||
260 | |||
261 | gcnum = usb_gadget_controller_number(gadget); | ||
262 | if (gcnum >= 0) | ||
263 | device_desc.bcdDevice = cpu_to_le16(0x0300 | gcnum); | ||
264 | else { | ||
265 | /* We assume that can_support_ecm() tells the truth; | ||
266 | * but if the controller isn't recognized at all then | ||
267 | * that assumption is a bit more likely to be wrong. | ||
268 | */ | ||
269 | WARNING(cdev, "controller '%s' not recognized\n", | ||
270 | gadget->name); | ||
271 | device_desc.bcdDevice = cpu_to_le16(0x0300 | 0x0099); | ||
272 | } | ||
273 | |||
274 | |||
275 | /* Allocate string descriptor numbers ... note that string | ||
276 | * contents can be overridden by the composite_dev glue. | ||
277 | */ | ||
278 | |||
279 | /* device descriptor strings: manufacturer, product */ | ||
280 | snprintf(manufacturer, sizeof manufacturer, "%s %s with %s", | ||
281 | init_utsname()->sysname, init_utsname()->release, | ||
282 | gadget->name); | ||
283 | status = usb_string_id(cdev); | ||
284 | if (status < 0) | ||
285 | goto fail2; | ||
286 | strings_dev[STRING_MANUFACTURER_IDX].id = status; | ||
287 | device_desc.iManufacturer = status; | ||
288 | |||
289 | status = usb_string_id(cdev); | ||
290 | if (status < 0) | ||
291 | goto fail2; | ||
292 | strings_dev[STRING_PRODUCT_IDX].id = status; | ||
293 | device_desc.iProduct = status; | ||
294 | |||
295 | #ifdef CONFIG_USB_ETH_RNDIS | ||
296 | /* register our first configuration */ | ||
297 | status = usb_add_config(cdev, &rndis_config_driver); | ||
298 | if (status < 0) | ||
299 | goto fail2; | ||
300 | #endif | ||
301 | |||
302 | #ifdef CONFIG_USB_G_MULTI_CDC | ||
303 | /* register our second configuration */ | ||
304 | status = usb_add_config(cdev, &cdc_config_driver); | ||
305 | if (status < 0) | ||
306 | goto fail2; | ||
307 | #endif | ||
308 | |||
309 | dev_info(&gadget->dev, DRIVER_DESC ", version: " DRIVER_VERSION "\n"); | ||
310 | fsg_common_put(fsg_common); | ||
311 | return 0; | ||
312 | |||
313 | fail2: | ||
314 | fsg_common_put(fsg_common); | ||
315 | fail1: | ||
316 | gserial_cleanup(); | ||
317 | fail0: | ||
318 | gether_cleanup(); | ||
319 | return status; | ||
320 | } | ||
321 | |||
322 | static int __exit multi_unbind(struct usb_composite_dev *cdev) | ||
323 | { | ||
324 | gserial_cleanup(); | ||
325 | gether_cleanup(); | ||
326 | return 0; | ||
327 | } | ||
328 | |||
329 | |||
330 | /****************************** Some noise ******************************/ | ||
331 | |||
332 | |||
333 | static struct usb_composite_driver multi_driver = { | ||
334 | .name = "g_multi", | ||
335 | .dev = &device_desc, | ||
336 | .strings = dev_strings, | ||
337 | .bind = multi_bind, | ||
338 | .unbind = __exit_p(multi_unbind), | ||
339 | }; | ||
340 | |||
341 | MODULE_DESCRIPTION(DRIVER_DESC); | ||
342 | MODULE_AUTHOR("Michal Nazarewicz"); | ||
343 | MODULE_LICENSE("GPL"); | ||
344 | |||
345 | static int __init g_multi_init(void) | ||
346 | { | ||
347 | return usb_composite_register(&multi_driver); | ||
348 | } | ||
349 | module_init(g_multi_init); | ||
350 | |||
351 | static void __exit g_multi_cleanup(void) | ||
352 | { | ||
353 | usb_composite_unregister(&multi_driver); | ||
354 | } | ||
355 | module_exit(g_multi_cleanup); | ||