blob: 3faa7a7022df24926270d27399cfa92c69062b0e [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"
41#include "usbstring.c"
42#include "config.c"
43#include "epautoconf.c"
44
45#include "f_acm.c"
46#include "f_serial.c"
47#include "u_serial.c"
48
49/*-------------------------------------------------------------------------*/
50
Linus Torvalds1da177e2005-04-16 15:20:36 -070051/* Thanks to NetChip Technologies for donating this product ID.
David Brownell7bb5ea52008-06-19 18:19:03 -070052*
53* DO NOT REUSE THESE IDs with a protocol-incompatible driver!! Ever!!
54* Instead: allocate your own, using normal USB-IF procedures.
55*/
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#define GS_VENDOR_ID 0x0525 /* NetChip */
57#define GS_PRODUCT_ID 0xa4a6 /* Linux-USB Serial Gadget */
58#define GS_CDC_PRODUCT_ID 0xa4a7 /* ... as CDC-ACM */
59
David Brownell7bb5ea52008-06-19 18:19:03 -070060/* string IDs are assigned dynamically */
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
David Brownell7bb5ea52008-06-19 18:19:03 -070062#define STRING_MANUFACTURER_IDX 0
63#define STRING_PRODUCT_IDX 1
64#define STRING_DESCRIPTION_IDX 2
David Brownella7707ad2008-06-19 17:52:07 -070065
Linus Torvalds1da177e2005-04-16 15:20:36 -070066static char manufacturer[50];
David Brownell7bb5ea52008-06-19 18:19:03 -070067
68static struct usb_string strings_dev[] = {
69 [STRING_MANUFACTURER_IDX].s = manufacturer,
70 [STRING_PRODUCT_IDX].s = GS_VERSION_NAME,
71 [STRING_DESCRIPTION_IDX].s = NULL /* updated; f(use_acm) */,
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 { } /* end of list */
73};
74
David Brownell7bb5ea52008-06-19 18:19:03 -070075static struct usb_gadget_strings stringtab_dev = {
76 .language = 0x0409, /* en-us */
77 .strings = strings_dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -070078};
79
David Brownell7bb5ea52008-06-19 18:19:03 -070080static struct usb_gadget_strings *dev_strings[] = {
81 &stringtab_dev,
82 NULL,
83};
84
85static struct usb_device_descriptor device_desc = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 .bLength = USB_DT_DEVICE_SIZE,
87 .bDescriptorType = USB_DT_DEVICE,
88 .bcdUSB = __constant_cpu_to_le16(0x0200),
David Brownell7bb5ea52008-06-19 18:19:03 -070089 /* .bDeviceClass = f(use_acm) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 .bDeviceSubClass = 0,
91 .bDeviceProtocol = 0,
David Brownell7bb5ea52008-06-19 18:19:03 -070092 /* .bMaxPacketSize0 = f(hardware) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 .idVendor = __constant_cpu_to_le16(GS_VENDOR_ID),
David Brownell7bb5ea52008-06-19 18:19:03 -070094 /* .idProduct = f(use_acm) */
95 /* .bcdDevice = f(hardware) */
96 /* .iManufacturer = DYNAMIC */
97 /* .iProduct = DYNAMIC */
98 .bNumConfigurations = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -070099};
100
David Brownell7bb5ea52008-06-19 18:19:03 -0700101static struct usb_otg_descriptor otg_descriptor = {
102 .bLength = sizeof otg_descriptor,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 .bDescriptorType = USB_DT_OTG,
David Brownell7bb5ea52008-06-19 18:19:03 -0700104
105 /* REVISIT SRP-only hardware is possible, although
106 * it would not be called "OTG" ...
107 */
108 .bmAttributes = USB_OTG_SRP | USB_OTG_HNP,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109};
110
David Brownell7bb5ea52008-06-19 18:19:03 -0700111static const struct usb_descriptor_header *otg_desc[] = {
112 (struct usb_descriptor_header *) &otg_descriptor,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 NULL,
114};
115
David Brownell9079e912008-05-07 16:00:36 -0700116/*-------------------------------------------------------------------------*/
117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118/* Module */
David Brownella7707ad2008-06-19 17:52:07 -0700119MODULE_DESCRIPTION(GS_VERSION_NAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120MODULE_AUTHOR("Al Borchers");
David Brownella7707ad2008-06-19 17:52:07 -0700121MODULE_AUTHOR("David Brownell");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122MODULE_LICENSE("GPL");
123
David Brownell7bb5ea52008-06-19 18:19:03 -0700124static int use_acm = true;
125module_param(use_acm, bool, 0);
126MODULE_PARM_DESC(use_acm, "Use CDC ACM, default=yes");
127
128static unsigned n_ports = 1;
129module_param(n_ports, uint, 0);
130MODULE_PARM_DESC(n_ports, "number of ports to create, default=1");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
David Brownell9079e912008-05-07 16:00:36 -0700132/*-------------------------------------------------------------------------*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
David Brownell7bb5ea52008-06-19 18:19:03 -0700134static int __init serial_bind_config(struct usb_configuration *c)
David Brownell9079e912008-05-07 16:00:36 -0700135{
David Brownell7bb5ea52008-06-19 18:19:03 -0700136 unsigned i;
137 int status = 0;
David Brownell9079e912008-05-07 16:00:36 -0700138
David Brownell7bb5ea52008-06-19 18:19:03 -0700139 for (i = 0; i < n_ports && status == 0; i++) {
140 if (use_acm)
141 status = acm_bind_config(c, i);
142 else
143 status = gser_bind_config(c, i);
David Brownell9079e912008-05-07 16:00:36 -0700144 }
David Brownell7bb5ea52008-06-19 18:19:03 -0700145 return status;
David Brownell9079e912008-05-07 16:00:36 -0700146}
147
David Brownell7bb5ea52008-06-19 18:19:03 -0700148static struct usb_configuration serial_config_driver = {
149 /* .label = f(use_acm) */
150 .bind = serial_bind_config,
151 /* .bConfigurationValue = f(use_acm) */
152 /* .iConfiguration = DYNAMIC */
153 .bmAttributes = USB_CONFIG_ATT_SELFPOWER,
154 .bMaxPower = 1, /* 2 mA, minimal */
David Brownell9079e912008-05-07 16:00:36 -0700155};
156
David Brownell7bb5ea52008-06-19 18:19:03 -0700157static int __init gs_bind(struct usb_composite_dev *cdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158{
David Brownell7bb5ea52008-06-19 18:19:03 -0700159 int gcnum;
160 struct usb_gadget *gadget = cdev->gadget;
161 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
David Brownell7bb5ea52008-06-19 18:19:03 -0700163 status = gserial_setup(cdev->gadget, n_ports);
164 if (status < 0)
165 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
David Brownell7bb5ea52008-06-19 18:19:03 -0700167 /* Allocate string descriptor numbers ... note that string
168 * contents can be overridden by the composite_dev glue.
David Brownellf371e752008-04-18 17:37:49 -0700169 */
170
David Brownell7bb5ea52008-06-19 18:19:03 -0700171 /* device description: manufacturer, product */
172 snprintf(manufacturer, sizeof manufacturer, "%s %s with %s",
173 init_utsname()->sysname, init_utsname()->release,
174 gadget->name);
175 status = usb_string_id(cdev);
176 if (status < 0)
177 goto fail;
178 strings_dev[STRING_MANUFACTURER_IDX].id = status;
179
180 device_desc.iManufacturer = status;
181
182 status = usb_string_id(cdev);
183 if (status < 0)
184 goto fail;
185 strings_dev[STRING_PRODUCT_IDX].id = status;
186
187 device_desc.iProduct = status;
188
189 /* config description */
190 status = usb_string_id(cdev);
191 if (status < 0)
192 goto fail;
193 strings_dev[STRING_DESCRIPTION_IDX].id = status;
194
195 serial_config_driver.iConfiguration = status;
196
197 /* set up other descriptors */
198 gcnum = usb_gadget_controller_number(gadget);
199 if (gcnum >= 0)
200 device_desc.bcdDevice = cpu_to_le16(GS_VERSION_NUM | gcnum);
201 else {
202 /* this is so simple (for now, no altsettings) that it
203 * SHOULD NOT have problems with bulk-capable hardware.
204 * so warn about unrcognized controllers -- don't panic.
205 *
206 * things like configuration and altsetting numbering
207 * can need hardware-specific attention though.
208 */
209 pr_warning("gs_bind: controller '%s' not recognized\n",
210 gadget->name);
211 device_desc.bcdDevice =
212 __constant_cpu_to_le16(GS_VERSION_NUM | 0x0099);
213 }
214
215 if (gadget_is_otg(cdev->gadget)) {
216 serial_config_driver.descriptors = otg_desc;
217 serial_config_driver.bmAttributes |= USB_CONFIG_ATT_WAKEUP;
218 }
219
220 /* register our configuration */
221 status = usb_add_config(cdev, &serial_config_driver);
222 if (status < 0)
223 goto fail;
224
225 INFO(cdev, "%s\n", GS_VERSION_NAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
227 return 0;
David Brownell7bb5ea52008-06-19 18:19:03 -0700228
229fail:
230 gserial_cleanup();
231 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232}
233
David Brownell7bb5ea52008-06-19 18:19:03 -0700234static struct usb_composite_driver gserial_driver = {
235 .name = "g_serial",
236 .dev = &device_desc,
237 .strings = dev_strings,
238 .bind = gs_bind,
239};
240
241static int __init init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242{
David Brownell7bb5ea52008-06-19 18:19:03 -0700243 /* We *could* export two configs; that'd be much cleaner...
244 * but neither of these product IDs was defined that way.
245 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 if (use_acm) {
David Brownell7bb5ea52008-06-19 18:19:03 -0700247 serial_config_driver.label = "CDC ACM config";
248 serial_config_driver.bConfigurationValue = 2;
249 device_desc.bDeviceClass = USB_CLASS_COMM;
250 device_desc.idProduct =
251 __constant_cpu_to_le16(GS_CDC_PRODUCT_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 } else {
David Brownell7bb5ea52008-06-19 18:19:03 -0700253 serial_config_driver.label = "Generic Serial config";
254 serial_config_driver.bConfigurationValue = 1;
255 device_desc.bDeviceClass = USB_CLASS_VENDOR_SPEC;
256 device_desc.idProduct =
257 __constant_cpu_to_le16(GS_PRODUCT_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 }
David Brownell7bb5ea52008-06-19 18:19:03 -0700259 strings_dev[STRING_DESCRIPTION_IDX].s = serial_config_driver.label;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
David Brownell7bb5ea52008-06-19 18:19:03 -0700261 return usb_composite_register(&gserial_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262}
David Brownell7bb5ea52008-06-19 18:19:03 -0700263module_init(init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
David Brownell7bb5ea52008-06-19 18:19:03 -0700265static void __exit cleanup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266{
David Brownell7bb5ea52008-06-19 18:19:03 -0700267 usb_composite_unregister(&gserial_driver);
268 gserial_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269}
David Brownell7bb5ea52008-06-19 18:19:03 -0700270module_exit(cleanup);