serial.c 7.0 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
D
David Brownell 已提交
2
 * serial.c -- USB gadget serial driver
L
Linus Torvalds 已提交
3
 *
D
David Brownell 已提交
4 5
 * Copyright (C) 2003 Al Borchers (alborchers@steinerpoint.com)
 * Copyright (C) 2008 by David Brownell
6
 * Copyright (C) 2008 by Nokia Corporation
L
Linus Torvalds 已提交
7 8 9 10 11 12 13 14
 *
 * This software is distributed under the terms of the GNU General
 * Public License ("GPL") as published by the Free Software Foundation,
 * either version 2 of that License or (at your option) any later version.
 */

#include <linux/kernel.h>
#include <linux/device.h>
15
#include <linux/module.h>
L
Linus Torvalds 已提交
16 17 18
#include <linux/tty.h>
#include <linux/tty_flip.h>

D
David Brownell 已提交
19
#include "u_serial.h"
L
Linus Torvalds 已提交
20 21 22 23 24
#include "gadget_chips.h"


/* Defines */

25 26
#define GS_VERSION_STR			"v2.4"
#define GS_VERSION_NUM			0x2400
L
Linus Torvalds 已提交
27 28

#define GS_LONG_NAME			"Gadget Serial"
D
David Brownell 已提交
29 30
#define GS_VERSION_NAME			GS_LONG_NAME " " GS_VERSION_STR

31
/*-------------------------------------------------------------------------*/
32
USB_GADGET_COMPOSITE_OPTIONS();
33

L
Linus Torvalds 已提交
34
/* Thanks to NetChip Technologies for donating this product ID.
35 36 37 38
*
* DO NOT REUSE THESE IDs with a protocol-incompatible driver!!  Ever!!
* Instead:  allocate your own, using normal USB-IF procedures.
*/
L
Linus Torvalds 已提交
39 40 41
#define GS_VENDOR_ID			0x0525	/* NetChip */
#define GS_PRODUCT_ID			0xa4a6	/* Linux-USB Serial Gadget */
#define GS_CDC_PRODUCT_ID		0xa4a7	/* ... as CDC-ACM */
F
Felipe Balbi 已提交
42
#define GS_CDC_OBEX_PRODUCT_ID		0xa4a9	/* ... as CDC-OBEX */
L
Linus Torvalds 已提交
43

44
/* string IDs are assigned dynamically */
L
Linus Torvalds 已提交
45

46
#define STRING_DESCRIPTION_IDX		USB_GADGET_FIRST_AVAIL_IDX
D
David Brownell 已提交
47

48
static struct usb_string strings_dev[] = {
49
	[USB_GADGET_MANUFACTURER_IDX].s = "",
50 51
	[USB_GADGET_PRODUCT_IDX].s = GS_VERSION_NAME,
	[USB_GADGET_SERIAL_IDX].s = "",
52
	[STRING_DESCRIPTION_IDX].s = NULL /* updated; f(use_acm) */,
L
Linus Torvalds 已提交
53 54 55
	{  } /* end of list */
};

56 57 58
static struct usb_gadget_strings stringtab_dev = {
	.language	= 0x0409,	/* en-us */
	.strings	= strings_dev,
L
Linus Torvalds 已提交
59 60
};

61 62 63 64 65 66
static struct usb_gadget_strings *dev_strings[] = {
	&stringtab_dev,
	NULL,
};

static struct usb_device_descriptor device_desc = {
L
Linus Torvalds 已提交
67 68
	.bLength =		USB_DT_DEVICE_SIZE,
	.bDescriptorType =	USB_DT_DEVICE,
69
	.bcdUSB =		cpu_to_le16(0x0200),
70
	/* .bDeviceClass = f(use_acm) */
L
Linus Torvalds 已提交
71 72
	.bDeviceSubClass =	0,
	.bDeviceProtocol =	0,
73
	/* .bMaxPacketSize0 = f(hardware) */
74
	.idVendor =		cpu_to_le16(GS_VENDOR_ID),
75
	/* .idProduct =	f(use_acm) */
76
	.bcdDevice = cpu_to_le16(GS_VERSION_NUM),
77 78 79
	/* .iManufacturer = DYNAMIC */
	/* .iProduct = DYNAMIC */
	.bNumConfigurations =	1,
L
Linus Torvalds 已提交
80 81
};

82 83
static struct usb_otg_descriptor otg_descriptor = {
	.bLength =		sizeof otg_descriptor,
L
Linus Torvalds 已提交
84 85
	.bDescriptorType =	USB_DT_OTG,

86 87 88 89
	/* REVISIT SRP-only hardware is possible, although
	 * it would not be called "OTG" ...
	 */
	.bmAttributes =		USB_OTG_SRP | USB_OTG_HNP,
D
David Brownell 已提交
90 91
};

92 93
static const struct usb_descriptor_header *otg_desc[] = {
	(struct usb_descriptor_header *) &otg_descriptor,
D
David Brownell 已提交
94 95
	NULL,
};
L
Linus Torvalds 已提交
96

D
David Brownell 已提交
97
/*-------------------------------------------------------------------------*/
L
Linus Torvalds 已提交
98

D
David Brownell 已提交
99 100 101 102 103
/* Module */
MODULE_DESCRIPTION(GS_VERSION_NAME);
MODULE_AUTHOR("Al Borchers");
MODULE_AUTHOR("David Brownell");
MODULE_LICENSE("GPL");
L
Linus Torvalds 已提交
104

105
static bool use_acm = true;
106 107
module_param(use_acm, bool, 0);
MODULE_PARM_DESC(use_acm, "Use CDC ACM, default=yes");
L
Linus Torvalds 已提交
108

109
static bool use_obex = false;
F
Felipe Balbi 已提交
110 111 112
module_param(use_obex, bool, 0);
MODULE_PARM_DESC(use_obex, "Use CDC OBEX, default=no");

113 114 115
static unsigned n_ports = 1;
module_param(n_ports, uint, 0);
MODULE_PARM_DESC(n_ports, "number of ports to create, default=1");
116

117
/*-------------------------------------------------------------------------*/
118

119 120 121 122 123 124 125
static struct usb_configuration serial_config_driver = {
	/* .label = f(use_acm) */
	/* .bConfigurationValue = f(use_acm) */
	/* .iConfiguration = DYNAMIC */
	.bmAttributes	= USB_CONFIG_ATT_SELFPOWER,
};

126 127 128 129 130
static struct usb_function_instance *fi_serial[MAX_U_SERIAL_PORTS];
static struct usb_function *f_serial[MAX_U_SERIAL_PORTS];

static int serial_register_ports(struct usb_composite_dev *cdev,
		struct usb_configuration *c, const char *f_name)
131 132
{
	int i;
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
	int ret;

	ret = usb_add_config_only(cdev, c);
	if (ret)
		goto out;

	for (i = 0; i < n_ports; i++) {

		fi_serial[i] = usb_get_function_instance(f_name);
		if (IS_ERR(fi_serial[i])) {
			ret = PTR_ERR(fi_serial[i]);
			goto fail;
		}

		f_serial[i] = usb_get_function(fi_serial[i]);
		if (IS_ERR(f_serial[i])) {
			ret = PTR_ERR(f_serial[i]);
			goto err_get_func;
		}

		ret = usb_add_function(c, f_serial[i]);
		if (ret)
			goto err_add_func;
	}
157 158

	return 0;
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174

err_add_func:
	usb_put_function(f_serial[i]);
err_get_func:
	usb_put_function_instance(fi_serial[i]);

fail:
	i--;
	while (i >= 0) {
		usb_remove_function(c, f_serial[i]);
		usb_put_function(f_serial[i]);
		usb_put_function_instance(fi_serial[i]);
		i--;
	}
out:
	return ret;
175 176
}

177
static int gs_bind(struct usb_composite_dev *cdev)
L
Linus Torvalds 已提交
178
{
179
	int			status;
D
David Brownell 已提交
180

181 182
	/* Allocate string descriptor numbers ... note that string
	 * contents can be overridden by the composite_dev glue.
183
	 */
L
Linus Torvalds 已提交
184

185
	status = usb_string_ids_tab(cdev, strings_dev);
186 187
	if (status < 0)
		goto fail;
188 189
	device_desc.iManufacturer = strings_dev[USB_GADGET_MANUFACTURER_IDX].id;
	device_desc.iProduct = strings_dev[USB_GADGET_PRODUCT_IDX].id;
190
	status = strings_dev[STRING_DESCRIPTION_IDX].id;
191
	serial_config_driver.iConfiguration = status;
L
Linus Torvalds 已提交
192

193 194 195
	if (gadget_is_otg(cdev->gadget)) {
		serial_config_driver.descriptors = otg_desc;
		serial_config_driver.bmAttributes |= USB_CONFIG_ATT_WAKEUP;
L
Linus Torvalds 已提交
196
	}
197

198
	/* register our configuration */
199 200 201 202 203
	if (use_acm) {
		status  = serial_register_ports(cdev, &serial_config_driver,
				"acm");
		usb_ep_autoconfig_reset(cdev->gadget);
	} else if (use_obex)
204 205
		status = serial_register_ports(cdev, &serial_config_driver,
				"obex");
206 207 208 209
	else {
		status = serial_register_ports(cdev, &serial_config_driver,
				"gser");
	}
210 211
	if (status < 0)
		goto fail;
L
Linus Torvalds 已提交
212

213
	usb_composite_overwrite_options(cdev, &coverwrite);
214
	INFO(cdev, "%s\n", GS_VERSION_NAME);
L
Linus Torvalds 已提交
215

216
	return 0;
L
Linus Torvalds 已提交
217

218 219
fail:
	return status;
L
Linus Torvalds 已提交
220 221
}

222 223 224 225 226 227 228 229 230 231 232
static int gs_unbind(struct usb_composite_dev *cdev)
{
	int i;

	for (i = 0; i < n_ports; i++) {
		usb_put_function(f_serial[i]);
		usb_put_function_instance(fi_serial[i]);
	}
	return 0;
}

233
static struct usb_composite_driver gserial_driver = {
234 235 236
	.name		= "g_serial",
	.dev		= &device_desc,
	.strings	= dev_strings,
237
	.max_speed	= USB_SPEED_SUPER,
238
	.bind		= gs_bind,
239
	.unbind		= gs_unbind,
240 241
};

242
static int __init init(void)
L
Linus Torvalds 已提交
243
{
244 245
	/* We *could* export two configs; that'd be much cleaner...
	 * but neither of these product IDs was defined that way.
246
	 */
L
Linus Torvalds 已提交
247
	if (use_acm) {
248 249 250 251
		serial_config_driver.label = "CDC ACM config";
		serial_config_driver.bConfigurationValue = 2;
		device_desc.bDeviceClass = USB_CLASS_COMM;
		device_desc.idProduct =
252
				cpu_to_le16(GS_CDC_PRODUCT_ID);
F
Felipe Balbi 已提交
253 254 255 256 257
	} else if (use_obex) {
		serial_config_driver.label = "CDC OBEX config";
		serial_config_driver.bConfigurationValue = 3;
		device_desc.bDeviceClass = USB_CLASS_COMM;
		device_desc.idProduct =
258
			cpu_to_le16(GS_CDC_OBEX_PRODUCT_ID);
L
Linus Torvalds 已提交
259
	} else {
260 261 262 263
		serial_config_driver.label = "Generic Serial config";
		serial_config_driver.bConfigurationValue = 1;
		device_desc.bDeviceClass = USB_CLASS_VENDOR_SPEC;
		device_desc.idProduct =
264
				cpu_to_le16(GS_PRODUCT_ID);
L
Linus Torvalds 已提交
265
	}
266
	strings_dev[STRING_DESCRIPTION_IDX].s = serial_config_driver.label;
267

268
	return usb_composite_probe(&gserial_driver);
269
}
270
module_init(init);
271

272
static void __exit cleanup(void)
273
{
274
	usb_composite_unregister(&gserial_driver);
275
}
276
module_exit(cleanup);