| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * multi.c -- Multifunction Composite driver | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (C) 2008 David Brownell | 
					
						
							|  |  |  |  * Copyright (C) 2008 Nokia Corporation | 
					
						
							|  |  |  |  * Copyright (C) 2009 Samsung Electronics | 
					
						
							| 
									
										
										
										
											2012-01-13 15:05:16 +01:00
										 |  |  |  * Author: Michal Nazarewicz (mina86@mina86.com) | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  |  * | 
					
						
							|  |  |  |  * This program is free software; you can redistribute it and/or modify | 
					
						
							|  |  |  |  * it under the terms of the GNU General Public License as published by | 
					
						
							|  |  |  |  * the Free Software Foundation; either version 2 of the License, or | 
					
						
							|  |  |  |  * (at your option) any later version. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/kernel.h>
 | 
					
						
							| 
									
										
										
										
											2010-06-21 13:57:03 +02:00
										 |  |  | #include <linux/module.h>
 | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:25 +02:00
										 |  |  | #include <linux/netdevice.h>
 | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-23 21:10:10 +01:00
										 |  |  | #include "u_serial.h"
 | 
					
						
							| 
									
										
										
										
											2009-11-30 10:55:40 +01:00
										 |  |  | #if defined USB_ETH_RNDIS
 | 
					
						
							|  |  |  | #  undef USB_ETH_RNDIS
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2010-01-22 15:18:21 +01:00
										 |  |  | #ifdef CONFIG_USB_G_MULTI_RNDIS
 | 
					
						
							| 
									
										
										
										
											2009-11-30 10:55:40 +01:00
										 |  |  | #  define USB_ETH_RNDIS y
 | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define DRIVER_DESC		"Multifunction Composite Gadget"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-21 13:57:03 +02:00
										 |  |  | MODULE_DESCRIPTION(DRIVER_DESC); | 
					
						
							|  |  |  | MODULE_AUTHOR("Michal Nazarewicz"); | 
					
						
							|  |  |  | MODULE_LICENSE("GPL"); | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:27 +02:00
										 |  |  | #include "f_mass_storage.h"
 | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:25 +02:00
										 |  |  | #include "u_ecm.h"
 | 
					
						
							| 
									
										
										
										
											2009-11-30 10:55:40 +01:00
										 |  |  | #ifdef USB_ETH_RNDIS
 | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:26 +02:00
										 |  |  | #  include "u_rndis.h"
 | 
					
						
							| 
									
										
										
										
											2013-05-24 10:23:02 +02:00
										 |  |  | #  include "rndis.h"
 | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
											
												usb: gadget: u_ether: convert into module
u_ether.c has been #include'd by all gadgets which implement
USB Ethernet functions. In order to add configfs support,
the f_ecm.c, f_eem.c, f_ncm.c, f_subset.c, f_rndis.c need to be
converted into modules and must not be #include'd. Consequently,
the u_ether.c needs to be a module too, in a manner similar
to u_serial.c. The resulting module should not take any parameters,
so they are pushed to the current users of it, that is ether.c,
g_ffs.c, multi.c, ncm.c, nokia.c.
Signed-off-by: Andrzej Pietrasiewicz <andrzej.p@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
											
										 
											2013-05-23 09:22:03 +02:00
										 |  |  | #include "u_ether.h"
 | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-10 15:01:53 +02:00
										 |  |  | USB_GADGET_COMPOSITE_OPTIONS(); | 
					
						
							| 
									
										
										
										
											2010-06-21 13:57:03 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
											
												usb: gadget: u_ether: convert into module
u_ether.c has been #include'd by all gadgets which implement
USB Ethernet functions. In order to add configfs support,
the f_ecm.c, f_eem.c, f_ncm.c, f_subset.c, f_rndis.c need to be
converted into modules and must not be #include'd. Consequently,
the u_ether.c needs to be a module too, in a manner similar
to u_serial.c. The resulting module should not take any parameters,
so they are pushed to the current users of it, that is ether.c,
g_ffs.c, multi.c, ncm.c, nokia.c.
Signed-off-by: Andrzej Pietrasiewicz <andrzej.p@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
											
										 
											2013-05-23 09:22:03 +02:00
										 |  |  | USB_ETHERNET_MODULE_PARAMETERS(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-21 13:57:03 +02:00
										 |  |  | /***************************** Device Descriptor ****************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-12 17:43:44 +02:00
										 |  |  | #define MULTI_VENDOR_NUM	0x1d6b	/* Linux Foundation */
 | 
					
						
							|  |  |  | #define MULTI_PRODUCT_NUM	0x0104	/* Multifunction Composite Gadget */
 | 
					
						
							| 
									
										
										
										
											2010-06-21 13:57:03 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | enum { | 
					
						
							|  |  |  | 	__MULTI_NO_CONFIG, | 
					
						
							|  |  |  | #ifdef CONFIG_USB_G_MULTI_RNDIS
 | 
					
						
							|  |  |  | 	MULTI_RNDIS_CONFIG_NUM, | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #ifdef CONFIG_USB_G_MULTI_CDC
 | 
					
						
							|  |  |  | 	MULTI_CDC_CONFIG_NUM, | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | static struct usb_device_descriptor device_desc = { | 
					
						
							|  |  |  | 	.bLength =		sizeof device_desc, | 
					
						
							|  |  |  | 	.bDescriptorType =	USB_DT_DEVICE, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	.bcdUSB =		cpu_to_le16(0x0200), | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-21 13:57:03 +02:00
										 |  |  | 	.bDeviceClass =		USB_CLASS_MISC /* 0xEF */, | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | 	.bDeviceSubClass =	2, | 
					
						
							|  |  |  | 	.bDeviceProtocol =	1, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Vendor and product id can be overridden by module parameters.  */ | 
					
						
							|  |  |  | 	.idVendor =		cpu_to_le16(MULTI_VENDOR_NUM), | 
					
						
							|  |  |  | 	.idProduct =		cpu_to_le16(MULTI_PRODUCT_NUM), | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const struct usb_descriptor_header *otg_desc[] = { | 
					
						
							| 
									
										
										
										
											2010-06-21 13:57:03 +02:00
										 |  |  | 	(struct usb_descriptor_header *) &(struct usb_otg_descriptor){ | 
					
						
							|  |  |  | 		.bLength =		sizeof(struct usb_otg_descriptor), | 
					
						
							|  |  |  | 		.bDescriptorType =	USB_DT_OTG, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/*
 | 
					
						
							|  |  |  | 		 * REVISIT SRP-only hardware is possible, although | 
					
						
							|  |  |  | 		 * it would not be called "OTG" ... | 
					
						
							|  |  |  | 		 */ | 
					
						
							|  |  |  | 		.bmAttributes =		USB_OTG_SRP | USB_OTG_HNP, | 
					
						
							|  |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | 	NULL, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-21 13:57:03 +02:00
										 |  |  | enum { | 
					
						
							| 
									
										
										
										
											2012-09-06 20:11:21 +02:00
										 |  |  | 	MULTI_STRING_RNDIS_CONFIG_IDX = USB_GADGET_FIRST_AVAIL_IDX, | 
					
						
							| 
									
										
										
										
											2010-06-21 13:57:03 +02:00
										 |  |  | 	MULTI_STRING_CDC_CONFIG_IDX, | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | static struct usb_string strings_dev[] = { | 
					
						
							| 
									
										
										
										
											2012-09-06 20:11:21 +02:00
										 |  |  | 	[USB_GADGET_MANUFACTURER_IDX].s = "", | 
					
						
							| 
									
										
										
										
											2012-09-10 15:01:57 +02:00
										 |  |  | 	[USB_GADGET_PRODUCT_IDX].s = DRIVER_DESC, | 
					
						
							| 
									
										
										
										
											2012-09-06 20:11:21 +02:00
										 |  |  | 	[USB_GADGET_SERIAL_IDX].s = "", | 
					
						
							| 
									
										
										
										
											2010-06-21 13:57:03 +02:00
										 |  |  | 	[MULTI_STRING_RNDIS_CONFIG_IDX].s = "Multifunction with RNDIS", | 
					
						
							|  |  |  | 	[MULTI_STRING_CDC_CONFIG_IDX].s   = "Multifunction with CDC ECM", | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | 	{  } /* end of list */ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct usb_gadget_strings *dev_strings[] = { | 
					
						
							| 
									
										
										
										
											2010-06-21 13:57:03 +02:00
										 |  |  | 	&(struct usb_gadget_strings){ | 
					
						
							|  |  |  | 		.language	= 0x0409,	/* en-us */ | 
					
						
							|  |  |  | 		.strings	= strings_dev, | 
					
						
							|  |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | 	NULL, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /****************************** Configurations ******************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-21 13:57:03 +02:00
										 |  |  | static struct fsg_module_parameters fsg_mod_data = { .stall = 1 }; | 
					
						
							| 
									
										
										
										
											2013-09-26 14:38:16 +02:00
										 |  |  | #ifdef CONFIG_USB_GADGET_DEBUG_FILES
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static unsigned int fsg_num_buffers = CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Number of buffers we will use. | 
					
						
							|  |  |  |  * 2 is usually enough for good buffering pipeline | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #define fsg_num_buffers	CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-19 15:43:10 -08:00
										 |  |  | #endif /* CONFIG_USB_GADGET_DEBUG_FILES */
 | 
					
						
							| 
									
										
										
										
											2013-09-26 14:38:16 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-21 13:57:03 +02:00
										 |  |  | FSG_MODULE_PARAMETERS(/* no prefix */, fsg_mod_data); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-23 21:10:10 +01:00
										 |  |  | static struct usb_function_instance *fi_acm; | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:27 +02:00
										 |  |  | static struct usb_function_instance *fi_msg; | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-21 13:57:03 +02:00
										 |  |  | /********** RNDIS **********/ | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-30 10:55:40 +01:00
										 |  |  | #ifdef USB_ETH_RNDIS
 | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:26 +02:00
										 |  |  | static struct usb_function_instance *fi_rndis; | 
					
						
							| 
									
										
										
										
											2012-12-23 21:10:10 +01:00
										 |  |  | static struct usb_function *f_acm_rndis; | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:26 +02:00
										 |  |  | static struct usb_function *f_rndis; | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:27 +02:00
										 |  |  | static struct usb_function *f_msg_rndis; | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-12 17:43:55 +02:00
										 |  |  | static __init int rndis_do_config(struct usb_configuration *c) | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:27 +02:00
										 |  |  | 	struct fsg_opts *fsg_opts; | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | 	int ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (gadget_is_otg(c->cdev->gadget)) { | 
					
						
							|  |  |  | 		c->descriptors = otg_desc; | 
					
						
							|  |  |  | 		c->bmAttributes |= USB_CONFIG_ATT_WAKEUP; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:26 +02:00
										 |  |  | 	f_rndis = usb_get_function(fi_rndis); | 
					
						
							|  |  |  | 	if (IS_ERR(f_rndis)) | 
					
						
							|  |  |  | 		return PTR_ERR(f_rndis); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ret = usb_add_function(c, f_rndis); | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | 	if (ret < 0) | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:26 +02:00
										 |  |  | 		goto err_func_rndis; | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-23 21:10:10 +01:00
										 |  |  | 	f_acm_rndis = usb_get_function(fi_acm); | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:26 +02:00
										 |  |  | 	if (IS_ERR(f_acm_rndis)) { | 
					
						
							|  |  |  | 		ret = PTR_ERR(f_acm_rndis); | 
					
						
							|  |  |  | 		goto err_func_acm; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-12-23 21:10:10 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	ret = usb_add_function(c, f_acm_rndis); | 
					
						
							|  |  |  | 	if (ret) | 
					
						
							|  |  |  | 		goto err_conf; | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:27 +02:00
										 |  |  | 	f_msg_rndis = usb_get_function(fi_msg); | 
					
						
							|  |  |  | 	if (IS_ERR(f_msg_rndis)) { | 
					
						
							|  |  |  | 		ret = PTR_ERR(f_msg_rndis); | 
					
						
							| 
									
										
										
										
											2012-12-23 21:10:10 +01:00
										 |  |  | 		goto err_fsg; | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:27 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	fsg_opts = fsg_opts_from_func_inst(fi_msg); | 
					
						
							|  |  |  | 	ret = fsg_common_run_thread(fsg_opts->common); | 
					
						
							|  |  |  | 	if (ret) | 
					
						
							|  |  |  | 		goto err_run; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ret = usb_add_function(c, f_msg_rndis); | 
					
						
							|  |  |  | 	if (ret) | 
					
						
							|  |  |  | 		goto err_run; | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:27 +02:00
										 |  |  | err_run: | 
					
						
							|  |  |  | 	usb_put_function(f_msg_rndis); | 
					
						
							| 
									
										
										
										
											2012-12-23 21:10:10 +01:00
										 |  |  | err_fsg: | 
					
						
							|  |  |  | 	usb_remove_function(c, f_acm_rndis); | 
					
						
							|  |  |  | err_conf: | 
					
						
							|  |  |  | 	usb_put_function(f_acm_rndis); | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:26 +02:00
										 |  |  | err_func_acm: | 
					
						
							|  |  |  | 	usb_remove_function(c, f_rndis); | 
					
						
							|  |  |  | err_func_rndis: | 
					
						
							|  |  |  | 	usb_put_function(f_rndis); | 
					
						
							| 
									
										
										
										
											2012-12-23 21:10:10 +01:00
										 |  |  | 	return ret; | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-02 18:14:42 +08:00
										 |  |  | static __ref int rndis_config_register(struct usb_composite_dev *cdev) | 
					
						
							| 
									
										
										
										
											2010-06-21 13:57:03 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	static struct usb_configuration config = { | 
					
						
							|  |  |  | 		.bConfigurationValue	= MULTI_RNDIS_CONFIG_NUM, | 
					
						
							|  |  |  | 		.bmAttributes		= USB_CONFIG_ATT_SELFPOWER, | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	config.label          = strings_dev[MULTI_STRING_RNDIS_CONFIG_IDX].s; | 
					
						
							|  |  |  | 	config.iConfiguration = strings_dev[MULTI_STRING_RNDIS_CONFIG_IDX].id; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-12 17:43:55 +02:00
										 |  |  | 	return usb_add_config(cdev, &config, rndis_do_config); | 
					
						
							| 
									
										
										
										
											2010-06-21 13:57:03 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-02 18:14:42 +08:00
										 |  |  | static __ref int rndis_config_register(struct usb_composite_dev *cdev) | 
					
						
							| 
									
										
										
										
											2010-06-21 13:57:03 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-21 13:57:03 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | /********** CDC ECM **********/ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | #ifdef CONFIG_USB_G_MULTI_CDC
 | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:25 +02:00
										 |  |  | static struct usb_function_instance *fi_ecm; | 
					
						
							| 
									
										
										
										
											2012-12-23 21:10:10 +01:00
										 |  |  | static struct usb_function *f_acm_multi; | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:25 +02:00
										 |  |  | static struct usb_function *f_ecm; | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:27 +02:00
										 |  |  | static struct usb_function *f_msg_multi; | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-12 17:43:55 +02:00
										 |  |  | static __init int cdc_do_config(struct usb_configuration *c) | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:27 +02:00
										 |  |  | 	struct fsg_opts *fsg_opts; | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | 	int ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (gadget_is_otg(c->cdev->gadget)) { | 
					
						
							|  |  |  | 		c->descriptors = otg_desc; | 
					
						
							|  |  |  | 		c->bmAttributes |= USB_CONFIG_ATT_WAKEUP; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:25 +02:00
										 |  |  | 	f_ecm = usb_get_function(fi_ecm); | 
					
						
							|  |  |  | 	if (IS_ERR(f_ecm)) | 
					
						
							|  |  |  | 		return PTR_ERR(f_ecm); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ret = usb_add_function(c, f_ecm); | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | 	if (ret < 0) | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:25 +02:00
										 |  |  | 		goto err_func_ecm; | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-23 21:10:10 +01:00
										 |  |  | 	/* implicit port_num is zero */ | 
					
						
							|  |  |  | 	f_acm_multi = usb_get_function(fi_acm); | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:25 +02:00
										 |  |  | 	if (IS_ERR(f_acm_multi)) { | 
					
						
							|  |  |  | 		ret = PTR_ERR(f_acm_multi); | 
					
						
							|  |  |  | 		goto err_func_acm; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-12-23 21:10:10 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	ret = usb_add_function(c, f_acm_multi); | 
					
						
							|  |  |  | 	if (ret) | 
					
						
							|  |  |  | 		goto err_conf; | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:27 +02:00
										 |  |  | 	f_msg_multi = usb_get_function(fi_msg); | 
					
						
							|  |  |  | 	if (IS_ERR(f_msg_multi)) { | 
					
						
							|  |  |  | 		ret = PTR_ERR(f_msg_multi); | 
					
						
							| 
									
										
										
										
											2012-12-23 21:10:10 +01:00
										 |  |  | 		goto err_fsg; | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:27 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	fsg_opts = fsg_opts_from_func_inst(fi_msg); | 
					
						
							|  |  |  | 	ret = fsg_common_run_thread(fsg_opts->common); | 
					
						
							|  |  |  | 	if (ret) | 
					
						
							|  |  |  | 		goto err_run; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ret = usb_add_function(c, f_msg_multi); | 
					
						
							|  |  |  | 	if (ret) | 
					
						
							|  |  |  | 		goto err_run; | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:27 +02:00
										 |  |  | err_run: | 
					
						
							|  |  |  | 	usb_put_function(f_msg_multi); | 
					
						
							| 
									
										
										
										
											2012-12-23 21:10:10 +01:00
										 |  |  | err_fsg: | 
					
						
							|  |  |  | 	usb_remove_function(c, f_acm_multi); | 
					
						
							|  |  |  | err_conf: | 
					
						
							|  |  |  | 	usb_put_function(f_acm_multi); | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:25 +02:00
										 |  |  | err_func_acm: | 
					
						
							|  |  |  | 	usb_remove_function(c, f_ecm); | 
					
						
							|  |  |  | err_func_ecm: | 
					
						
							|  |  |  | 	usb_put_function(f_ecm); | 
					
						
							| 
									
										
										
										
											2012-12-23 21:10:10 +01:00
										 |  |  | 	return ret; | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-02 18:14:42 +08:00
										 |  |  | static __ref int cdc_config_register(struct usb_composite_dev *cdev) | 
					
						
							| 
									
										
										
										
											2010-06-21 13:57:03 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	static struct usb_configuration config = { | 
					
						
							|  |  |  | 		.bConfigurationValue	= MULTI_CDC_CONFIG_NUM, | 
					
						
							|  |  |  | 		.bmAttributes		= USB_CONFIG_ATT_SELFPOWER, | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	config.label          = strings_dev[MULTI_STRING_CDC_CONFIG_IDX].s; | 
					
						
							|  |  |  | 	config.iConfiguration = strings_dev[MULTI_STRING_CDC_CONFIG_IDX].id; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-12 17:43:55 +02:00
										 |  |  | 	return usb_add_config(cdev, &config, cdc_do_config); | 
					
						
							| 
									
										
										
										
											2010-06-21 13:57:03 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-02 18:14:42 +08:00
										 |  |  | static __ref int cdc_config_register(struct usb_composite_dev *cdev) | 
					
						
							| 
									
										
										
										
											2010-06-21 13:57:03 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /****************************** Gadget Bind ******************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-21 13:57:03 +02:00
										 |  |  | static int __ref multi_bind(struct usb_composite_dev *cdev) | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct usb_gadget *gadget = cdev->gadget; | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:25 +02:00
										 |  |  | #ifdef CONFIG_USB_G_MULTI_CDC
 | 
					
						
							|  |  |  | 	struct f_ecm_opts *ecm_opts; | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:26 +02:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #ifdef USB_ETH_RNDIS
 | 
					
						
							|  |  |  | 	struct f_rndis_opts *rndis_opts; | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:25 +02:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:27 +02:00
										 |  |  | 	struct fsg_opts *fsg_opts; | 
					
						
							|  |  |  | 	struct fsg_config config; | 
					
						
							| 
									
										
										
										
											2012-09-10 09:16:07 +02:00
										 |  |  | 	int status; | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (!can_support_ecm(cdev->gadget)) { | 
					
						
							|  |  |  | 		dev_err(&gadget->dev, "controller '%s' not usable\n", | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:26 +02:00
										 |  |  | 			gadget->name); | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:25 +02:00
										 |  |  | #ifdef CONFIG_USB_G_MULTI_CDC
 | 
					
						
							|  |  |  | 	fi_ecm = usb_get_function_instance("ecm"); | 
					
						
							|  |  |  | 	if (IS_ERR(fi_ecm)) | 
					
						
							|  |  |  | 		return PTR_ERR(fi_ecm); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ecm_opts = container_of(fi_ecm, struct f_ecm_opts, func_inst); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	gether_set_qmult(ecm_opts->net, qmult); | 
					
						
							|  |  |  | 	if (!gether_set_host_addr(ecm_opts->net, host_addr)) | 
					
						
							|  |  |  | 		pr_info("using host ethernet address: %s", host_addr); | 
					
						
							|  |  |  | 	if (!gether_set_dev_addr(ecm_opts->net, dev_addr)) | 
					
						
							|  |  |  | 		pr_info("using self ethernet address: %s", dev_addr); | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:26 +02:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:25 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:26 +02:00
										 |  |  | #ifdef USB_ETH_RNDIS
 | 
					
						
							|  |  |  | 	fi_rndis = usb_get_function_instance("rndis"); | 
					
						
							|  |  |  | 	if (IS_ERR(fi_rndis)) { | 
					
						
							|  |  |  | 		status = PTR_ERR(fi_rndis); | 
					
						
							|  |  |  | 		goto fail; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:25 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:26 +02:00
										 |  |  | 	rndis_opts = container_of(fi_rndis, struct f_rndis_opts, func_inst); | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:25 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:26 +02:00
										 |  |  | 	gether_set_qmult(rndis_opts->net, qmult); | 
					
						
							|  |  |  | 	if (!gether_set_host_addr(rndis_opts->net, host_addr)) | 
					
						
							|  |  |  | 		pr_info("using host ethernet address: %s", host_addr); | 
					
						
							|  |  |  | 	if (!gether_set_dev_addr(rndis_opts->net, dev_addr)) | 
					
						
							|  |  |  | 		pr_info("using self ethernet address: %s", dev_addr); | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:25 +02:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if (defined CONFIG_USB_G_MULTI_CDC && defined USB_ETH_RNDIS)
 | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:26 +02:00
										 |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * If both ecm and rndis are selected then: | 
					
						
							|  |  |  | 	 *	1) rndis borrows the net interface from ecm | 
					
						
							|  |  |  | 	 *	2) since the interface is shared it must not be bound | 
					
						
							|  |  |  | 	 *	twice - in ecm's _and_ rndis' binds, so do it here. | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:25 +02:00
										 |  |  | 	gether_set_gadget(ecm_opts->net, cdev->gadget); | 
					
						
							|  |  |  | 	status = gether_register_netdev(ecm_opts->net); | 
					
						
							|  |  |  | 	if (status) | 
					
						
							|  |  |  | 		goto fail0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:26 +02:00
										 |  |  | 	rndis_borrow_net(fi_rndis, ecm_opts->net); | 
					
						
							|  |  |  | 	ecm_opts->bound = true; | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:25 +02:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* set up serial link layer */ | 
					
						
							| 
									
										
										
										
											2012-12-23 21:10:10 +01:00
										 |  |  | 	fi_acm = usb_get_function_instance("acm"); | 
					
						
							|  |  |  | 	if (IS_ERR(fi_acm)) { | 
					
						
							|  |  |  | 		status = PTR_ERR(fi_acm); | 
					
						
							| 
									
										
										
										
											2012-12-23 21:10:18 +01:00
										 |  |  | 		goto fail0; | 
					
						
							| 
									
										
										
										
											2012-12-23 21:10:10 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | 	/* set up mass storage function */ | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:27 +02:00
										 |  |  | 	fi_msg = usb_get_function_instance("mass_storage"); | 
					
						
							|  |  |  | 	if (IS_ERR(fi_msg)) { | 
					
						
							|  |  |  | 		status = PTR_ERR(fi_msg); | 
					
						
							|  |  |  | 		goto fail1; | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:27 +02:00
										 |  |  | 	fsg_config_from_params(&config, &fsg_mod_data, fsg_num_buffers); | 
					
						
							|  |  |  | 	fsg_opts = fsg_opts_from_func_inst(fi_msg); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	fsg_opts->no_configfs = true; | 
					
						
							|  |  |  | 	status = fsg_common_set_num_buffers(fsg_opts->common, fsg_num_buffers); | 
					
						
							|  |  |  | 	if (status) | 
					
						
							|  |  |  | 		goto fail2; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	status = fsg_common_set_nluns(fsg_opts->common, config.nluns); | 
					
						
							|  |  |  | 	if (status) | 
					
						
							|  |  |  | 		goto fail_set_nluns; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	status = fsg_common_set_cdev(fsg_opts->common, cdev, config.can_stall); | 
					
						
							|  |  |  | 	if (status) | 
					
						
							|  |  |  | 		goto fail_set_cdev; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	fsg_common_set_sysfs(fsg_opts->common, true); | 
					
						
							|  |  |  | 	status = fsg_common_create_luns(fsg_opts->common, &config); | 
					
						
							|  |  |  | 	if (status) | 
					
						
							|  |  |  | 		goto fail_set_cdev; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	fsg_common_set_inquiry_string(fsg_opts->common, config.vendor_name, | 
					
						
							|  |  |  | 				      config.product_name); | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-12 17:43:49 +02:00
										 |  |  | 	/* allocate string IDs */ | 
					
						
							| 
									
										
										
										
											2010-06-21 13:57:03 +02:00
										 |  |  | 	status = usb_string_ids_tab(cdev, strings_dev); | 
					
						
							|  |  |  | 	if (unlikely(status < 0)) | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:27 +02:00
										 |  |  | 		goto fail_string_ids; | 
					
						
							| 
									
										
										
										
											2012-09-10 15:01:57 +02:00
										 |  |  | 	device_desc.iProduct = strings_dev[USB_GADGET_PRODUCT_IDX].id; | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-21 13:57:03 +02:00
										 |  |  | 	/* register configurations */ | 
					
						
							|  |  |  | 	status = rndis_config_register(cdev); | 
					
						
							|  |  |  | 	if (unlikely(status < 0)) | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:27 +02:00
										 |  |  | 		goto fail_string_ids; | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-21 13:57:03 +02:00
										 |  |  | 	status = cdc_config_register(cdev); | 
					
						
							|  |  |  | 	if (unlikely(status < 0)) | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:27 +02:00
										 |  |  | 		goto fail_string_ids; | 
					
						
							| 
									
										
										
										
											2012-09-10 15:01:53 +02:00
										 |  |  | 	usb_composite_overwrite_options(cdev, &coverwrite); | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-21 13:57:03 +02:00
										 |  |  | 	/* we're done */ | 
					
						
							|  |  |  | 	dev_info(&gadget->dev, DRIVER_DESC "\n"); | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-21 13:57:03 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* error recovery */ | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:27 +02:00
										 |  |  | fail_string_ids: | 
					
						
							|  |  |  | 	fsg_common_remove_luns(fsg_opts->common); | 
					
						
							|  |  |  | fail_set_cdev: | 
					
						
							|  |  |  | 	fsg_common_free_luns(fsg_opts->common); | 
					
						
							|  |  |  | fail_set_nluns: | 
					
						
							|  |  |  | 	fsg_common_free_buffers(fsg_opts->common); | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | fail2: | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:27 +02:00
										 |  |  | 	usb_put_function_instance(fi_msg); | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | fail1: | 
					
						
							| 
									
										
										
										
											2012-12-23 21:10:10 +01:00
										 |  |  | 	usb_put_function_instance(fi_acm); | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | fail0: | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:26 +02:00
										 |  |  | #ifdef USB_ETH_RNDIS
 | 
					
						
							|  |  |  | 	usb_put_function_instance(fi_rndis); | 
					
						
							|  |  |  | fail: | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:25 +02:00
										 |  |  | #ifdef CONFIG_USB_G_MULTI_CDC
 | 
					
						
							|  |  |  | 	usb_put_function_instance(fi_ecm); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int __exit multi_unbind(struct usb_composite_dev *cdev) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:27 +02:00
										 |  |  | #ifdef CONFIG_USB_G_MULTI_CDC
 | 
					
						
							|  |  |  | 	usb_put_function(f_msg_multi); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #ifdef USB_ETH_RNDIS
 | 
					
						
							|  |  |  | 	usb_put_function(f_msg_rndis); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 	usb_put_function_instance(fi_msg); | 
					
						
							| 
									
										
										
										
											2012-12-23 21:10:10 +01:00
										 |  |  | #ifdef CONFIG_USB_G_MULTI_CDC
 | 
					
						
							|  |  |  | 	usb_put_function(f_acm_multi); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #ifdef USB_ETH_RNDIS
 | 
					
						
							|  |  |  | 	usb_put_function(f_acm_rndis); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 	usb_put_function_instance(fi_acm); | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:26 +02:00
										 |  |  | #ifdef USB_ETH_RNDIS
 | 
					
						
							|  |  |  | 	usb_put_function(f_rndis); | 
					
						
							|  |  |  | 	usb_put_function_instance(fi_rndis); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2013-10-09 10:08:25 +02:00
										 |  |  | #ifdef CONFIG_USB_G_MULTI_CDC
 | 
					
						
							|  |  |  | 	usb_put_function(f_ecm); | 
					
						
							|  |  |  | 	usb_put_function_instance(fi_ecm); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /****************************** Some noise ******************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-06 20:11:03 +02:00
										 |  |  | static __refdata struct usb_composite_driver multi_driver = { | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | 	.name		= "g_multi", | 
					
						
							|  |  |  | 	.dev		= &device_desc, | 
					
						
							|  |  |  | 	.strings	= dev_strings, | 
					
						
							| 
									
										
										
										
											2011-06-29 16:41:49 +03:00
										 |  |  | 	.max_speed	= USB_SPEED_HIGH, | 
					
						
							| 
									
										
										
										
											2012-09-06 20:11:04 +02:00
										 |  |  | 	.bind		= multi_bind, | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | 	.unbind		= __exit_p(multi_unbind), | 
					
						
							| 
									
										
										
										
											2010-08-12 17:43:49 +02:00
										 |  |  | 	.needs_serial	= 1, | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-21 13:57:03 +02:00
										 |  |  | static int __init multi_init(void) | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-09-06 20:11:04 +02:00
										 |  |  | 	return usb_composite_probe(&multi_driver); | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2010-06-21 13:57:03 +02:00
										 |  |  | module_init(multi_init); | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-21 13:57:03 +02:00
										 |  |  | static void __exit multi_exit(void) | 
					
						
							| 
									
										
										
										
											2009-11-09 14:15:27 +01:00
										 |  |  | { | 
					
						
							|  |  |  | 	usb_composite_unregister(&multi_driver); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2010-06-21 13:57:03 +02:00
										 |  |  | module_exit(multi_exit); |