usb: gadget: start with libcomposite
[linux-block.git] / drivers / usb / gadget / serial.c
1 /*
2  * serial.c -- USB gadget serial driver
3  *
4  * Copyright (C) 2003 Al Borchers (alborchers@steinerpoint.com)
5  * Copyright (C) 2008 by David Brownell
6  * Copyright (C) 2008 by Nokia Corporation
7  *
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.
11  */
12
13 #include <linux/kernel.h>
14 #include <linux/utsname.h>
15 #include <linux/device.h>
16 #include <linux/tty.h>
17 #include <linux/tty_flip.h>
18
19 #include "u_serial.h"
20 #include "gadget_chips.h"
21
22
23 /* Defines */
24
25 #define GS_VERSION_STR                  "v2.4"
26 #define GS_VERSION_NUM                  0x2400
27
28 #define GS_LONG_NAME                    "Gadget Serial"
29 #define GS_VERSION_NAME                 GS_LONG_NAME " " GS_VERSION_STR
30
31 /*-------------------------------------------------------------------------*/
32
33 /*
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 "config.c"
42 #include "epautoconf.c"
43
44 #include "f_acm.c"
45 #include "f_obex.c"
46 #include "f_serial.c"
47 #include "u_serial.c"
48
49 /*-------------------------------------------------------------------------*/
50
51 /* Thanks to NetChip Technologies for donating this product ID.
52 *
53 * DO NOT REUSE THESE IDs with a protocol-incompatible driver!!  Ever!!
54 * Instead:  allocate your own, using normal USB-IF procedures.
55 */
56 #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 #define GS_CDC_OBEX_PRODUCT_ID          0xa4a9  /* ... as CDC-OBEX */
60
61 /* string IDs are assigned dynamically */
62
63 #define STRING_MANUFACTURER_IDX         0
64 #define STRING_PRODUCT_IDX              1
65 #define STRING_DESCRIPTION_IDX          2
66
67 static char manufacturer[50];
68
69 static struct usb_string strings_dev[] = {
70         [STRING_MANUFACTURER_IDX].s = manufacturer,
71         [STRING_PRODUCT_IDX].s = GS_VERSION_NAME,
72         [STRING_DESCRIPTION_IDX].s = NULL /* updated; f(use_acm) */,
73         {  } /* end of list */
74 };
75
76 static struct usb_gadget_strings stringtab_dev = {
77         .language       = 0x0409,       /* en-us */
78         .strings        = strings_dev,
79 };
80
81 static struct usb_gadget_strings *dev_strings[] = {
82         &stringtab_dev,
83         NULL,
84 };
85
86 static struct usb_device_descriptor device_desc = {
87         .bLength =              USB_DT_DEVICE_SIZE,
88         .bDescriptorType =      USB_DT_DEVICE,
89         .bcdUSB =               cpu_to_le16(0x0200),
90         /* .bDeviceClass = f(use_acm) */
91         .bDeviceSubClass =      0,
92         .bDeviceProtocol =      0,
93         /* .bMaxPacketSize0 = f(hardware) */
94         .idVendor =             cpu_to_le16(GS_VENDOR_ID),
95         /* .idProduct = f(use_acm) */
96         /* .bcdDevice = f(hardware) */
97         /* .iManufacturer = DYNAMIC */
98         /* .iProduct = DYNAMIC */
99         .bNumConfigurations =   1,
100 };
101
102 static struct usb_otg_descriptor otg_descriptor = {
103         .bLength =              sizeof otg_descriptor,
104         .bDescriptorType =      USB_DT_OTG,
105
106         /* REVISIT SRP-only hardware is possible, although
107          * it would not be called "OTG" ...
108          */
109         .bmAttributes =         USB_OTG_SRP | USB_OTG_HNP,
110 };
111
112 static const struct usb_descriptor_header *otg_desc[] = {
113         (struct usb_descriptor_header *) &otg_descriptor,
114         NULL,
115 };
116
117 /*-------------------------------------------------------------------------*/
118
119 /* Module */
120 MODULE_DESCRIPTION(GS_VERSION_NAME);
121 MODULE_AUTHOR("Al Borchers");
122 MODULE_AUTHOR("David Brownell");
123 MODULE_LICENSE("GPL");
124
125 static bool use_acm = true;
126 module_param(use_acm, bool, 0);
127 MODULE_PARM_DESC(use_acm, "Use CDC ACM, default=yes");
128
129 static bool use_obex = false;
130 module_param(use_obex, bool, 0);
131 MODULE_PARM_DESC(use_obex, "Use CDC OBEX, default=no");
132
133 static unsigned n_ports = 1;
134 module_param(n_ports, uint, 0);
135 MODULE_PARM_DESC(n_ports, "number of ports to create, default=1");
136
137 /*-------------------------------------------------------------------------*/
138
139 static int __init serial_bind_config(struct usb_configuration *c)
140 {
141         unsigned i;
142         int status = 0;
143
144         for (i = 0; i < n_ports && status == 0; i++) {
145                 if (use_acm)
146                         status = acm_bind_config(c, i);
147                 else if (use_obex)
148                         status = obex_bind_config(c, i);
149                 else
150                         status = gser_bind_config(c, i);
151         }
152         return status;
153 }
154
155 static struct usb_configuration serial_config_driver = {
156         /* .label = f(use_acm) */
157         /* .bConfigurationValue = f(use_acm) */
158         /* .iConfiguration = DYNAMIC */
159         .bmAttributes   = USB_CONFIG_ATT_SELFPOWER,
160 };
161
162 static int __init gs_bind(struct usb_composite_dev *cdev)
163 {
164         int                     gcnum;
165         struct usb_gadget       *gadget = cdev->gadget;
166         int                     status;
167
168         status = gserial_setup(cdev->gadget, n_ports);
169         if (status < 0)
170                 return status;
171
172         /* Allocate string descriptor numbers ... note that string
173          * contents can be overridden by the composite_dev glue.
174          */
175
176         /* device description: manufacturer, product */
177         snprintf(manufacturer, sizeof manufacturer, "%s %s with %s",
178                 init_utsname()->sysname, init_utsname()->release,
179                 gadget->name);
180         status = usb_string_id(cdev);
181         if (status < 0)
182                 goto fail;
183         strings_dev[STRING_MANUFACTURER_IDX].id = status;
184
185         device_desc.iManufacturer = status;
186
187         status = usb_string_id(cdev);
188         if (status < 0)
189                 goto fail;
190         strings_dev[STRING_PRODUCT_IDX].id = status;
191
192         device_desc.iProduct = status;
193
194         /* config description */
195         status = usb_string_id(cdev);
196         if (status < 0)
197                 goto fail;
198         strings_dev[STRING_DESCRIPTION_IDX].id = status;
199
200         serial_config_driver.iConfiguration = status;
201
202         /* set up other descriptors */
203         gcnum = usb_gadget_controller_number(gadget);
204         if (gcnum >= 0)
205                 device_desc.bcdDevice = cpu_to_le16(GS_VERSION_NUM | gcnum);
206         else {
207                 /* this is so simple (for now, no altsettings) that it
208                  * SHOULD NOT have problems with bulk-capable hardware.
209                  * so warn about unrcognized controllers -- don't panic.
210                  *
211                  * things like configuration and altsetting numbering
212                  * can need hardware-specific attention though.
213                  */
214                 pr_warning("gs_bind: controller '%s' not recognized\n",
215                         gadget->name);
216                 device_desc.bcdDevice =
217                         cpu_to_le16(GS_VERSION_NUM | 0x0099);
218         }
219
220         if (gadget_is_otg(cdev->gadget)) {
221                 serial_config_driver.descriptors = otg_desc;
222                 serial_config_driver.bmAttributes |= USB_CONFIG_ATT_WAKEUP;
223         }
224
225         /* register our configuration */
226         status = usb_add_config(cdev, &serial_config_driver,
227                         serial_bind_config);
228         if (status < 0)
229                 goto fail;
230
231         INFO(cdev, "%s\n", GS_VERSION_NAME);
232
233         return 0;
234
235 fail:
236         gserial_cleanup();
237         return status;
238 }
239
240 static __refdata struct usb_composite_driver gserial_driver = {
241         .name           = "g_serial",
242         .dev            = &device_desc,
243         .strings        = dev_strings,
244         .max_speed      = USB_SPEED_SUPER,
245         .bind           = gs_bind,
246 };
247
248 static int __init init(void)
249 {
250         /* We *could* export two configs; that'd be much cleaner...
251          * but neither of these product IDs was defined that way.
252          */
253         if (use_acm) {
254                 serial_config_driver.label = "CDC ACM config";
255                 serial_config_driver.bConfigurationValue = 2;
256                 device_desc.bDeviceClass = USB_CLASS_COMM;
257                 device_desc.idProduct =
258                                 cpu_to_le16(GS_CDC_PRODUCT_ID);
259         } else if (use_obex) {
260                 serial_config_driver.label = "CDC OBEX config";
261                 serial_config_driver.bConfigurationValue = 3;
262                 device_desc.bDeviceClass = USB_CLASS_COMM;
263                 device_desc.idProduct =
264                         cpu_to_le16(GS_CDC_OBEX_PRODUCT_ID);
265         } else {
266                 serial_config_driver.label = "Generic Serial config";
267                 serial_config_driver.bConfigurationValue = 1;
268                 device_desc.bDeviceClass = USB_CLASS_VENDOR_SPEC;
269                 device_desc.idProduct =
270                                 cpu_to_le16(GS_PRODUCT_ID);
271         }
272         strings_dev[STRING_DESCRIPTION_IDX].s = serial_config_driver.label;
273
274         return usb_composite_probe(&gserial_driver);
275 }
276 module_init(init);
277
278 static void __exit cleanup(void)
279 {
280         usb_composite_unregister(&gserial_driver);
281         gserial_cleanup();
282 }
283 module_exit(cleanup);