serial.c 7.2 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 15 16 17
 *
 * 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>
#include <linux/tty.h>
#include <linux/tty_flip.h>

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


/* Defines */

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

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

30
/*-------------------------------------------------------------------------*/
L
Linus Torvalds 已提交
31

32 33 34 35 36 37 38 39
/*
 * Kbuild is not very cooperative with respect to linking separately
 * compiled library objects into one module.  So for now we won't use
 * separate compilation ... ensuring init/exit sections work to shrink
 * the runtime footprint, and giving us at least some parts of what
 * a "gcc --combine ... part1.c part2.c part3.c ... " build would.
 */
#include "f_acm.c"
F
Felipe Balbi 已提交
40
#include "f_obex.c"
41 42 43 44
#include "f_serial.c"
#include "u_serial.c"

/*-------------------------------------------------------------------------*/
45
USB_GADGET_COMPOSITE_OPTIONS();
46

L
Linus Torvalds 已提交
47
/* Thanks to NetChip Technologies for donating this product ID.
48 49 50 51
*
* DO NOT REUSE THESE IDs with a protocol-incompatible driver!!  Ever!!
* Instead:  allocate your own, using normal USB-IF procedures.
*/
L
Linus Torvalds 已提交
52 53 54
#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 已提交
55
#define GS_CDC_OBEX_PRODUCT_ID		0xa4a9	/* ... as CDC-OBEX */
L
Linus Torvalds 已提交
56

57
/* string IDs are assigned dynamically */
L
Linus Torvalds 已提交
58

59
#define STRING_DESCRIPTION_IDX		USB_GADGET_FIRST_AVAIL_IDX
D
David Brownell 已提交
60

61
static struct usb_string strings_dev[] = {
62
	[USB_GADGET_MANUFACTURER_IDX].s = "",
63 64
	[USB_GADGET_PRODUCT_IDX].s = GS_VERSION_NAME,
	[USB_GADGET_SERIAL_IDX].s = "",
65
	[STRING_DESCRIPTION_IDX].s = NULL /* updated; f(use_acm) */,
L
Linus Torvalds 已提交
66 67 68
	{  } /* end of list */
};

69 70 71
static struct usb_gadget_strings stringtab_dev = {
	.language	= 0x0409,	/* en-us */
	.strings	= strings_dev,
L
Linus Torvalds 已提交
72 73
};

74 75 76 77 78 79
static struct usb_gadget_strings *dev_strings[] = {
	&stringtab_dev,
	NULL,
};

static struct usb_device_descriptor device_desc = {
L
Linus Torvalds 已提交
80 81
	.bLength =		USB_DT_DEVICE_SIZE,
	.bDescriptorType =	USB_DT_DEVICE,
82
	.bcdUSB =		cpu_to_le16(0x0200),
83
	/* .bDeviceClass = f(use_acm) */
L
Linus Torvalds 已提交
84 85
	.bDeviceSubClass =	0,
	.bDeviceProtocol =	0,
86
	/* .bMaxPacketSize0 = f(hardware) */
87
	.idVendor =		cpu_to_le16(GS_VENDOR_ID),
88 89 90 91 92
	/* .idProduct =	f(use_acm) */
	/* .bcdDevice = f(hardware) */
	/* .iManufacturer = DYNAMIC */
	/* .iProduct = DYNAMIC */
	.bNumConfigurations =	1,
L
Linus Torvalds 已提交
93 94
};

95 96
static struct usb_otg_descriptor otg_descriptor = {
	.bLength =		sizeof otg_descriptor,
L
Linus Torvalds 已提交
97 98
	.bDescriptorType =	USB_DT_OTG,

99 100 101 102
	/* REVISIT SRP-only hardware is possible, although
	 * it would not be called "OTG" ...
	 */
	.bmAttributes =		USB_OTG_SRP | USB_OTG_HNP,
D
David Brownell 已提交
103 104
};

105 106
static const struct usb_descriptor_header *otg_desc[] = {
	(struct usb_descriptor_header *) &otg_descriptor,
D
David Brownell 已提交
107 108
	NULL,
};
L
Linus Torvalds 已提交
109

D
David Brownell 已提交
110
/*-------------------------------------------------------------------------*/
L
Linus Torvalds 已提交
111

D
David Brownell 已提交
112 113 114 115 116
/* Module */
MODULE_DESCRIPTION(GS_VERSION_NAME);
MODULE_AUTHOR("Al Borchers");
MODULE_AUTHOR("David Brownell");
MODULE_LICENSE("GPL");
L
Linus Torvalds 已提交
117

118
static bool use_acm = true;
119 120
module_param(use_acm, bool, 0);
MODULE_PARM_DESC(use_acm, "Use CDC ACM, default=yes");
L
Linus Torvalds 已提交
121

122
static bool use_obex = false;
F
Felipe Balbi 已提交
123 124 125
module_param(use_obex, bool, 0);
MODULE_PARM_DESC(use_obex, "Use CDC OBEX, default=no");

126 127 128
static unsigned n_ports = 1;
module_param(n_ports, uint, 0);
MODULE_PARM_DESC(n_ports, "number of ports to create, default=1");
129

130
/*-------------------------------------------------------------------------*/
L
Linus Torvalds 已提交
131

132
static int __init serial_bind_config(struct usb_configuration *c)
133
{
134 135
	unsigned i;
	int status = 0;
136

137 138 139
	for (i = 0; i < n_ports && status == 0; i++) {
		if (use_acm)
			status = acm_bind_config(c, i);
F
Felipe Balbi 已提交
140 141
		else if (use_obex)
			status = obex_bind_config(c, i);
142 143
		else
			status = gser_bind_config(c, i);
144
	}
145
	return status;
146 147
}

148 149 150 151 152 153 154
static struct usb_configuration serial_config_driver = {
	/* .label = f(use_acm) */
	/* .bConfigurationValue = f(use_acm) */
	/* .iConfiguration = DYNAMIC */
	.bmAttributes	= USB_CONFIG_ATT_SELFPOWER,
};

155
static int __init gs_bind(struct usb_composite_dev *cdev)
L
Linus Torvalds 已提交
156
{
157 158 159
	int			gcnum;
	struct usb_gadget	*gadget = cdev->gadget;
	int			status;
L
Linus Torvalds 已提交
160

161 162 163
	status = gserial_setup(cdev->gadget, n_ports);
	if (status < 0)
		return status;
D
David Brownell 已提交
164

165 166
	/* Allocate string descriptor numbers ... note that string
	 * contents can be overridden by the composite_dev glue.
167
	 */
L
Linus Torvalds 已提交
168

169
	status = usb_string_ids_tab(cdev, strings_dev);
170 171
	if (status < 0)
		goto fail;
172 173
	device_desc.iManufacturer = strings_dev[USB_GADGET_MANUFACTURER_IDX].id;
	device_desc.iProduct = strings_dev[USB_GADGET_PRODUCT_IDX].id;
174
	status = strings_dev[STRING_DESCRIPTION_IDX].id;
175
	serial_config_driver.iConfiguration = status;
L
Linus Torvalds 已提交
176

177 178 179 180 181 182 183 184 185 186 187
	/* set up other descriptors */
	gcnum = usb_gadget_controller_number(gadget);
	if (gcnum >= 0)
		device_desc.bcdDevice = cpu_to_le16(GS_VERSION_NUM | gcnum);
	else {
		/* this is so simple (for now, no altsettings) that it
		 * SHOULD NOT have problems with bulk-capable hardware.
		 * so warn about unrcognized controllers -- don't panic.
		 *
		 * things like configuration and altsetting numbering
		 * can need hardware-specific attention though.
188
		 */
189 190 191
		pr_warning("gs_bind: controller '%s' not recognized\n",
			gadget->name);
		device_desc.bcdDevice =
192
			cpu_to_le16(GS_VERSION_NUM | 0x0099);
193 194
	}

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

200
	/* register our configuration */
201 202
	status = usb_add_config(cdev, &serial_config_driver,
			serial_bind_config);
203 204
	if (status < 0)
		goto fail;
L
Linus Torvalds 已提交
205

206
	usb_composite_overwrite_options(cdev, &coverwrite);
207
	INFO(cdev, "%s\n", GS_VERSION_NAME);
L
Linus Torvalds 已提交
208

209
	return 0;
L
Linus Torvalds 已提交
210

211 212 213
fail:
	gserial_cleanup();
	return status;
L
Linus Torvalds 已提交
214 215
}

216
static __refdata struct usb_composite_driver gserial_driver = {
217 218 219
	.name		= "g_serial",
	.dev		= &device_desc,
	.strings	= dev_strings,
220
	.max_speed	= USB_SPEED_SUPER,
221
	.bind		= gs_bind,
222 223
};

224
static int __init init(void)
L
Linus Torvalds 已提交
225
{
226 227
	/* We *could* export two configs; that'd be much cleaner...
	 * but neither of these product IDs was defined that way.
228
	 */
L
Linus Torvalds 已提交
229
	if (use_acm) {
230 231 232 233
		serial_config_driver.label = "CDC ACM config";
		serial_config_driver.bConfigurationValue = 2;
		device_desc.bDeviceClass = USB_CLASS_COMM;
		device_desc.idProduct =
234
				cpu_to_le16(GS_CDC_PRODUCT_ID);
F
Felipe Balbi 已提交
235 236 237 238 239
	} 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 =
240
			cpu_to_le16(GS_CDC_OBEX_PRODUCT_ID);
L
Linus Torvalds 已提交
241
	} else {
242 243 244 245
		serial_config_driver.label = "Generic Serial config";
		serial_config_driver.bConfigurationValue = 1;
		device_desc.bDeviceClass = USB_CLASS_VENDOR_SPEC;
		device_desc.idProduct =
246
				cpu_to_le16(GS_PRODUCT_ID);
L
Linus Torvalds 已提交
247
	}
248
	strings_dev[STRING_DESCRIPTION_IDX].s = serial_config_driver.label;
249

250
	return usb_composite_probe(&gserial_driver);
251
}
252
module_init(init);
253

254
static void __exit cleanup(void)
255
{
256 257
	usb_composite_unregister(&gserial_driver);
	gserial_cleanup();
258
}
259
module_exit(cleanup);