serial.c 7.5 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 18
 *
 * 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/utsname.h>
#include <linux/device.h>
#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
/*-------------------------------------------------------------------------*/
L
Linus Torvalds 已提交
32

33 34 35 36 37 38 39 40 41 42
/*
 * 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 "composite.c"

#include "f_acm.c"
F
Felipe Balbi 已提交
43
#include "f_obex.c"
44 45 46 47 48
#include "f_serial.c"
#include "u_serial.c"

/*-------------------------------------------------------------------------*/

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

59
/* string IDs are assigned dynamically */
L
Linus Torvalds 已提交
60

61 62 63
#define STRING_MANUFACTURER_IDX		0
#define STRING_PRODUCT_IDX		1
#define STRING_DESCRIPTION_IDX		2
D
David Brownell 已提交
64

L
Linus Torvalds 已提交
65
static char manufacturer[50];
66 67 68 69 70

static struct usb_string strings_dev[] = {
	[STRING_MANUFACTURER_IDX].s = manufacturer,
	[STRING_PRODUCT_IDX].s = GS_VERSION_NAME,
	[STRING_DESCRIPTION_IDX].s = NULL /* updated; f(use_acm) */,
L
Linus Torvalds 已提交
71 72 73
	{  } /* end of list */
};

74 75 76
static struct usb_gadget_strings stringtab_dev = {
	.language	= 0x0409,	/* en-us */
	.strings	= strings_dev,
L
Linus Torvalds 已提交
77 78
};

79 80 81 82 83 84
static struct usb_gadget_strings *dev_strings[] = {
	&stringtab_dev,
	NULL,
};

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

100 101
static struct usb_otg_descriptor otg_descriptor = {
	.bLength =		sizeof otg_descriptor,
L
Linus Torvalds 已提交
102 103
	.bDescriptorType =	USB_DT_OTG,

104 105 106 107
	/* REVISIT SRP-only hardware is possible, although
	 * it would not be called "OTG" ...
	 */
	.bmAttributes =		USB_OTG_SRP | USB_OTG_HNP,
D
David Brownell 已提交
108 109
};

110 111
static const struct usb_descriptor_header *otg_desc[] = {
	(struct usb_descriptor_header *) &otg_descriptor,
D
David Brownell 已提交
112 113
	NULL,
};
L
Linus Torvalds 已提交
114

D
David Brownell 已提交
115
/*-------------------------------------------------------------------------*/
L
Linus Torvalds 已提交
116

D
David Brownell 已提交
117 118 119 120 121
/* Module */
MODULE_DESCRIPTION(GS_VERSION_NAME);
MODULE_AUTHOR("Al Borchers");
MODULE_AUTHOR("David Brownell");
MODULE_LICENSE("GPL");
L
Linus Torvalds 已提交
122

123
static bool use_acm = true;
124 125
module_param(use_acm, bool, 0);
MODULE_PARM_DESC(use_acm, "Use CDC ACM, default=yes");
L
Linus Torvalds 已提交
126

127
static bool use_obex = false;
F
Felipe Balbi 已提交
128 129 130
module_param(use_obex, bool, 0);
MODULE_PARM_DESC(use_obex, "Use CDC OBEX, default=no");

131 132 133
static unsigned n_ports = 1;
module_param(n_ports, uint, 0);
MODULE_PARM_DESC(n_ports, "number of ports to create, default=1");
134

135
/*-------------------------------------------------------------------------*/
L
Linus Torvalds 已提交
136

137
static int __init serial_bind_config(struct usb_configuration *c)
138
{
139 140
	unsigned i;
	int status = 0;
141

142 143 144
	for (i = 0; i < n_ports && status == 0; i++) {
		if (use_acm)
			status = acm_bind_config(c, i);
F
Felipe Balbi 已提交
145 146
		else if (use_obex)
			status = obex_bind_config(c, i);
147 148
		else
			status = gser_bind_config(c, i);
149
	}
150
	return status;
151 152
}

153 154 155 156 157 158 159
static struct usb_configuration serial_config_driver = {
	/* .label = f(use_acm) */
	/* .bConfigurationValue = f(use_acm) */
	/* .iConfiguration = DYNAMIC */
	.bmAttributes	= USB_CONFIG_ATT_SELFPOWER,
};

160
static int __init gs_bind(struct usb_composite_dev *cdev)
L
Linus Torvalds 已提交
161
{
162 163 164
	int			gcnum;
	struct usb_gadget	*gadget = cdev->gadget;
	int			status;
L
Linus Torvalds 已提交
165

166 167 168
	status = gserial_setup(cdev->gadget, n_ports);
	if (status < 0)
		return status;
D
David Brownell 已提交
169

170 171
	/* Allocate string descriptor numbers ... note that string
	 * contents can be overridden by the composite_dev glue.
172
	 */
L
Linus Torvalds 已提交
173

174 175
	/* device description: manufacturer, product */
	snprintf(manufacturer, sizeof manufacturer, "%s %s with %s",
176
		init_utsname()->sysname, init_utsname()->release,
L
Linus Torvalds 已提交
177
		gadget->name);
178 179 180 181
	status = usb_string_id(cdev);
	if (status < 0)
		goto fail;
	strings_dev[STRING_MANUFACTURER_IDX].id = status;
L
Linus Torvalds 已提交
182

183
	device_desc.iManufacturer = status;
L
Linus Torvalds 已提交
184

185 186 187 188
	status = usb_string_id(cdev);
	if (status < 0)
		goto fail;
	strings_dev[STRING_PRODUCT_IDX].id = status;
L
Linus Torvalds 已提交
189

190
	device_desc.iProduct = status;
L
Linus Torvalds 已提交
191

192 193 194 195 196
	/* config description */
	status = usb_string_id(cdev);
	if (status < 0)
		goto fail;
	strings_dev[STRING_DESCRIPTION_IDX].id = status;
L
Linus Torvalds 已提交
197

198
	serial_config_driver.iConfiguration = status;
L
Linus Torvalds 已提交
199

200 201 202 203 204 205 206 207 208 209 210
	/* 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.
211
		 */
212 213 214
		pr_warning("gs_bind: controller '%s' not recognized\n",
			gadget->name);
		device_desc.bcdDevice =
215
			cpu_to_le16(GS_VERSION_NUM | 0x0099);
216 217
	}

218 219 220
	if (gadget_is_otg(cdev->gadget)) {
		serial_config_driver.descriptors = otg_desc;
		serial_config_driver.bmAttributes |= USB_CONFIG_ATT_WAKEUP;
L
Linus Torvalds 已提交
221
	}
222

223
	/* register our configuration */
224 225
	status = usb_add_config(cdev, &serial_config_driver,
			serial_bind_config);
226 227
	if (status < 0)
		goto fail;
L
Linus Torvalds 已提交
228

229
	INFO(cdev, "%s\n", GS_VERSION_NAME);
L
Linus Torvalds 已提交
230

231
	return 0;
L
Linus Torvalds 已提交
232

233 234 235
fail:
	gserial_cleanup();
	return status;
L
Linus Torvalds 已提交
236 237
}

238
static __refdata struct usb_composite_driver gserial_driver = {
239 240 241
	.name		= "g_serial",
	.dev		= &device_desc,
	.strings	= dev_strings,
242
	.max_speed	= USB_SPEED_SUPER,
243
	.bind		= gs_bind,
244 245
};

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

272
	return usb_composite_probe(&gserial_driver);
273
}
274
module_init(init);
275

276
static void __exit cleanup(void)
277
{
278 279
	usb_composite_unregister(&gserial_driver);
	gserial_cleanup();
280
}
281
module_exit(cleanup);