blob: 9962504e14f1148e095093448bcd43f649bcd08f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
David Brownella7707ad2008-06-19 17:52:07 -07002 * serial.c -- USB gadget serial driver
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
David Brownella7707ad2008-06-19 17:52:07 -07004 * Copyright (C) 2003 Al Borchers (alborchers@steinerpoint.com)
5 * Copyright (C) 2008 by David Brownell
David Brownell7bb5ea52008-06-19 18:19:03 -07006 * Copyright (C) 2008 by Nokia Corporation
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
8 * This software is distributed under the terms of the GNU General
9 * Public License ("GPL") as published by the Free Software Foundation,
10 * either version 2 of that License or (at your option) any later version.
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 */
12
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/utsname.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/device.h>
16#include <linux/tty.h>
17#include <linux/tty_flip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
David Brownella7707ad2008-06-19 17:52:07 -070019#include "u_serial.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "gadget_chips.h"
21
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023/* Defines */
24
David Brownell7bb5ea52008-06-19 18:19:03 -070025#define GS_VERSION_STR "v2.4"
26#define GS_VERSION_NUM 0x2400
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28#define GS_LONG_NAME "Gadget Serial"
David Brownella7707ad2008-06-19 17:52:07 -070029#define GS_VERSION_NAME GS_LONG_NAME " " GS_VERSION_STR
30
David Brownell7bb5ea52008-06-19 18:19:03 -070031/*-------------------------------------------------------------------------*/
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
David Brownell4e9ba512008-08-18 17:41:02 -070033/*
34 * Kbuild is not very cooperative with respect to linking separately
35 * compiled library objects into one module. So for now we won't use
36 * separate compilation ... ensuring init/exit sections work to shrink
37 * the runtime footprint, and giving us at least some parts of what
38 * a "gcc --combine ... part1.c part2.c part3.c ... " build would.
39 */
40#include "composite.c"
David Brownell4e9ba512008-08-18 17:41:02 -070041
42#include "f_acm.c"
Felipe Balbi30867752008-08-18 17:39:30 -070043#include "f_obex.c"
David Brownell4e9ba512008-08-18 17:41:02 -070044#include "f_serial.c"
45#include "u_serial.c"
46
47/*-------------------------------------------------------------------------*/
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049/* Thanks to NetChip Technologies for donating this product ID.
David Brownell7bb5ea52008-06-19 18:19:03 -070050*
51* DO NOT REUSE THESE IDs with a protocol-incompatible driver!! Ever!!
52* Instead: allocate your own, using normal USB-IF procedures.
53*/
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#define GS_VENDOR_ID 0x0525 /* NetChip */
55#define GS_PRODUCT_ID 0xa4a6 /* Linux-USB Serial Gadget */
56#define GS_CDC_PRODUCT_ID 0xa4a7 /* ... as CDC-ACM */
Felipe Balbi30867752008-08-18 17:39:30 -070057#define GS_CDC_OBEX_PRODUCT_ID 0xa4a9 /* ... as CDC-OBEX */
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
David Brownell7bb5ea52008-06-19 18:19:03 -070059/* string IDs are assigned dynamically */
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
David Brownell7bb5ea52008-06-19 18:19:03 -070061#define STRING_MANUFACTURER_IDX 0
62#define STRING_PRODUCT_IDX 1
63#define STRING_DESCRIPTION_IDX 2
David Brownella7707ad2008-06-19 17:52:07 -070064
Linus Torvalds1da177e2005-04-16 15:20:36 -070065static char manufacturer[50];
David Brownell7bb5ea52008-06-19 18:19:03 -070066
67static struct usb_string strings_dev[] = {
68 [STRING_MANUFACTURER_IDX].s = manufacturer,
69 [STRING_PRODUCT_IDX].s = GS_VERSION_NAME,
70 [STRING_DESCRIPTION_IDX].s = NULL /* updated; f(use_acm) */,
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 { } /* end of list */
72};
73
David Brownell7bb5ea52008-06-19 18:19:03 -070074static struct usb_gadget_strings stringtab_dev = {
75 .language = 0x0409, /* en-us */
76 .strings = strings_dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -070077};
78
David Brownell7bb5ea52008-06-19 18:19:03 -070079static struct usb_gadget_strings *dev_strings[] = {
80 &stringtab_dev,
81 NULL,
82};
83
84static struct usb_device_descriptor device_desc = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 .bLength = USB_DT_DEVICE_SIZE,
86 .bDescriptorType = USB_DT_DEVICE,
Harvey Harrison551509d2009-02-11 14:11:36 -080087 .bcdUSB = cpu_to_le16(0x0200),
David Brownell7bb5ea52008-06-19 18:19:03 -070088 /* .bDeviceClass = f(use_acm) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 .bDeviceSubClass = 0,
90 .bDeviceProtocol = 0,
David Brownell7bb5ea52008-06-19 18:19:03 -070091 /* .bMaxPacketSize0 = f(hardware) */
Harvey Harrison551509d2009-02-11 14:11:36 -080092 .idVendor = cpu_to_le16(GS_VENDOR_ID),
David Brownell7bb5ea52008-06-19 18:19:03 -070093 /* .idProduct = f(use_acm) */
94 /* .bcdDevice = f(hardware) */
95 /* .iManufacturer = DYNAMIC */
96 /* .iProduct = DYNAMIC */
97 .bNumConfigurations = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -070098};
99
David Brownell7bb5ea52008-06-19 18:19:03 -0700100static struct usb_otg_descriptor otg_descriptor = {
101 .bLength = sizeof otg_descriptor,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 .bDescriptorType = USB_DT_OTG,
David Brownell7bb5ea52008-06-19 18:19:03 -0700103
104 /* REVISIT SRP-only hardware is possible, although
105 * it would not be called "OTG" ...
106 */
107 .bmAttributes = USB_OTG_SRP | USB_OTG_HNP,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108};
109
David Brownell7bb5ea52008-06-19 18:19:03 -0700110static const struct usb_descriptor_header *otg_desc[] = {
111 (struct usb_descriptor_header *) &otg_descriptor,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 NULL,
113};
114
David Brownell9079e912008-05-07 16:00:36 -0700115/*-------------------------------------------------------------------------*/
116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117/* Module */
David Brownella7707ad2008-06-19 17:52:07 -0700118MODULE_DESCRIPTION(GS_VERSION_NAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119MODULE_AUTHOR("Al Borchers");
David Brownella7707ad2008-06-19 17:52:07 -0700120MODULE_AUTHOR("David Brownell");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121MODULE_LICENSE("GPL");
122
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030123static bool use_acm = true;
David Brownell7bb5ea52008-06-19 18:19:03 -0700124module_param(use_acm, bool, 0);
125MODULE_PARM_DESC(use_acm, "Use CDC ACM, default=yes");
126
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030127static bool use_obex = false;
Felipe Balbi30867752008-08-18 17:39:30 -0700128module_param(use_obex, bool, 0);
129MODULE_PARM_DESC(use_obex, "Use CDC OBEX, default=no");
130
David Brownell7bb5ea52008-06-19 18:19:03 -0700131static unsigned n_ports = 1;
132module_param(n_ports, uint, 0);
133MODULE_PARM_DESC(n_ports, "number of ports to create, default=1");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
David Brownell9079e912008-05-07 16:00:36 -0700135/*-------------------------------------------------------------------------*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Michal Nazarewicze12995e2010-08-12 17:43:52 +0200137static int __init serial_bind_config(struct usb_configuration *c)
David Brownell9079e912008-05-07 16:00:36 -0700138{
David Brownell7bb5ea52008-06-19 18:19:03 -0700139 unsigned i;
140 int status = 0;
David Brownell9079e912008-05-07 16:00:36 -0700141
David Brownell7bb5ea52008-06-19 18:19:03 -0700142 for (i = 0; i < n_ports && status == 0; i++) {
143 if (use_acm)
144 status = acm_bind_config(c, i);
Felipe Balbi30867752008-08-18 17:39:30 -0700145 else if (use_obex)
146 status = obex_bind_config(c, i);
David Brownell7bb5ea52008-06-19 18:19:03 -0700147 else
148 status = gser_bind_config(c, i);
David Brownell9079e912008-05-07 16:00:36 -0700149 }
David Brownell7bb5ea52008-06-19 18:19:03 -0700150 return status;
David Brownell9079e912008-05-07 16:00:36 -0700151}
152
David Brownell7bb5ea52008-06-19 18:19:03 -0700153static struct usb_configuration serial_config_driver = {
154 /* .label = f(use_acm) */
David Brownell7bb5ea52008-06-19 18:19:03 -0700155 /* .bConfigurationValue = f(use_acm) */
156 /* .iConfiguration = DYNAMIC */
157 .bmAttributes = USB_CONFIG_ATT_SELFPOWER,
David Brownell9079e912008-05-07 16:00:36 -0700158};
159
Michal Nazarewicze12995e2010-08-12 17:43:52 +0200160static int __init gs_bind(struct usb_composite_dev *cdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
David Brownell7bb5ea52008-06-19 18:19:03 -0700162 int gcnum;
163 struct usb_gadget *gadget = cdev->gadget;
164 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
David Brownell7bb5ea52008-06-19 18:19:03 -0700166 status = gserial_setup(cdev->gadget, n_ports);
167 if (status < 0)
168 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
David Brownell7bb5ea52008-06-19 18:19:03 -0700170 /* Allocate string descriptor numbers ... note that string
171 * contents can be overridden by the composite_dev glue.
David Brownellf371e752008-04-18 17:37:49 -0700172 */
173
David Brownell7bb5ea52008-06-19 18:19:03 -0700174 /* device description: manufacturer, product */
175 snprintf(manufacturer, sizeof manufacturer, "%s %s with %s",
176 init_utsname()->sysname, init_utsname()->release,
177 gadget->name);
Sebastian Andrzej Siewiore1f15cc2012-09-06 20:11:16 +0200178 status = usb_string_ids_tab(cdev, strings_dev);
David Brownell7bb5ea52008-06-19 18:19:03 -0700179 if (status < 0)
180 goto fail;
Sebastian Andrzej Siewiore1f15cc2012-09-06 20:11:16 +0200181 device_desc.iManufacturer = strings_dev[STRING_MANUFACTURER_IDX].id;
182 device_desc.iProduct = strings_dev[STRING_PRODUCT_IDX].id;
183 status = strings_dev[STRING_DESCRIPTION_IDX].id;
David Brownell7bb5ea52008-06-19 18:19:03 -0700184 serial_config_driver.iConfiguration = status;
185
186 /* set up other descriptors */
187 gcnum = usb_gadget_controller_number(gadget);
188 if (gcnum >= 0)
189 device_desc.bcdDevice = cpu_to_le16(GS_VERSION_NUM | gcnum);
190 else {
191 /* this is so simple (for now, no altsettings) that it
192 * SHOULD NOT have problems with bulk-capable hardware.
193 * so warn about unrcognized controllers -- don't panic.
194 *
195 * things like configuration and altsetting numbering
196 * can need hardware-specific attention though.
197 */
198 pr_warning("gs_bind: controller '%s' not recognized\n",
199 gadget->name);
200 device_desc.bcdDevice =
Harvey Harrison551509d2009-02-11 14:11:36 -0800201 cpu_to_le16(GS_VERSION_NUM | 0x0099);
David Brownell7bb5ea52008-06-19 18:19:03 -0700202 }
203
204 if (gadget_is_otg(cdev->gadget)) {
205 serial_config_driver.descriptors = otg_desc;
206 serial_config_driver.bmAttributes |= USB_CONFIG_ATT_WAKEUP;
207 }
208
209 /* register our configuration */
Uwe Kleine-Königc9bfff92010-08-12 17:43:55 +0200210 status = usb_add_config(cdev, &serial_config_driver,
211 serial_bind_config);
David Brownell7bb5ea52008-06-19 18:19:03 -0700212 if (status < 0)
213 goto fail;
214
215 INFO(cdev, "%s\n", GS_VERSION_NAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217 return 0;
David Brownell7bb5ea52008-06-19 18:19:03 -0700218
219fail:
220 gserial_cleanup();
221 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222}
223
Sebastian Andrzej Siewiorc2ec75c2012-09-06 20:11:03 +0200224static __refdata struct usb_composite_driver gserial_driver = {
David Brownell7bb5ea52008-06-19 18:19:03 -0700225 .name = "g_serial",
226 .dev = &device_desc,
227 .strings = dev_strings,
Sebastian Andrzej Siewior6fecfb02012-02-06 18:46:36 +0100228 .max_speed = USB_SPEED_SUPER,
Sebastian Andrzej Siewior03e42bd2012-09-06 20:11:04 +0200229 .bind = gs_bind,
David Brownell7bb5ea52008-06-19 18:19:03 -0700230};
231
232static int __init init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233{
David Brownell7bb5ea52008-06-19 18:19:03 -0700234 /* We *could* export two configs; that'd be much cleaner...
235 * but neither of these product IDs was defined that way.
236 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 if (use_acm) {
David Brownell7bb5ea52008-06-19 18:19:03 -0700238 serial_config_driver.label = "CDC ACM config";
239 serial_config_driver.bConfigurationValue = 2;
240 device_desc.bDeviceClass = USB_CLASS_COMM;
241 device_desc.idProduct =
Harvey Harrison551509d2009-02-11 14:11:36 -0800242 cpu_to_le16(GS_CDC_PRODUCT_ID);
Felipe Balbi30867752008-08-18 17:39:30 -0700243 } else if (use_obex) {
244 serial_config_driver.label = "CDC OBEX config";
245 serial_config_driver.bConfigurationValue = 3;
246 device_desc.bDeviceClass = USB_CLASS_COMM;
247 device_desc.idProduct =
Harvey Harrison551509d2009-02-11 14:11:36 -0800248 cpu_to_le16(GS_CDC_OBEX_PRODUCT_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 } else {
David Brownell7bb5ea52008-06-19 18:19:03 -0700250 serial_config_driver.label = "Generic Serial config";
251 serial_config_driver.bConfigurationValue = 1;
252 device_desc.bDeviceClass = USB_CLASS_VENDOR_SPEC;
253 device_desc.idProduct =
Harvey Harrison551509d2009-02-11 14:11:36 -0800254 cpu_to_le16(GS_PRODUCT_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 }
David Brownell7bb5ea52008-06-19 18:19:03 -0700256 strings_dev[STRING_DESCRIPTION_IDX].s = serial_config_driver.label;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Sebastian Andrzej Siewior03e42bd2012-09-06 20:11:04 +0200258 return usb_composite_probe(&gserial_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259}
David Brownell7bb5ea52008-06-19 18:19:03 -0700260module_init(init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
David Brownell7bb5ea52008-06-19 18:19:03 -0700262static void __exit cleanup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263{
David Brownell7bb5ea52008-06-19 18:19:03 -0700264 usb_composite_unregister(&gserial_driver);
265 gserial_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266}
David Brownell7bb5ea52008-06-19 18:19:03 -0700267module_exit(cleanup);