blob: 5702ce3777fbadfc4d7d363301e8b2d588b53fe4 [file] [log] [blame]
Bryan Wuc6994e62009-06-03 09:17:58 -04001/*
2 * audio.c -- Audio gadget driver
3 *
4 * Copyright (C) 2008 Bryan Wu <cooloney@kernel.org>
5 * Copyright (C) 2008 Analog Devices, Inc
6 *
7 * Enter bugs at http://blackfin.uclinux.org/
8 *
9 * Licensed under the GPL-2 or later.
10 */
11
12/* #define VERBOSE_DEBUG */
13
14#include <linux/kernel.h>
15#include <linux/utsname.h>
16
Sebastian Andrzej Siewiordc995fc2012-09-06 20:11:12 +020017#include "gadget_chips.h"
Bryan Wuc6994e62009-06-03 09:17:58 -040018#define DRIVER_DESC "Linux USB Audio Gadget"
Jassi Brar132fcb42012-02-02 22:01:34 +053019#define DRIVER_VERSION "Feb 2, 2012"
Bryan Wuc6994e62009-06-03 09:17:58 -040020
21/*-------------------------------------------------------------------------*/
22
23/*
24 * Kbuild is not very cooperative with respect to linking separately
25 * compiled library objects into one module. So for now we won't use
26 * separate compilation ... ensuring init/exit sections work to shrink
27 * the runtime footprint, and giving us at least some parts of what
28 * a "gcc --combine ... part1.c part2.c part3.c ... " build would.
29 */
30#include "composite.c"
Bryan Wuc6994e62009-06-03 09:17:58 -040031
Jassi Brard747a912012-02-02 22:01:12 +053032/* string IDs are assigned dynamically */
33
34#define STRING_MANUFACTURER_IDX 0
35#define STRING_PRODUCT_IDX 1
36
37static char manufacturer[50];
38
39static struct usb_string strings_dev[] = {
40 [STRING_MANUFACTURER_IDX].s = manufacturer,
41 [STRING_PRODUCT_IDX].s = DRIVER_DESC,
42 { } /* end of list */
43};
44
45static struct usb_gadget_strings stringtab_dev = {
46 .language = 0x0409, /* en-us */
47 .strings = strings_dev,
48};
49
50static struct usb_gadget_strings *audio_strings[] = {
51 &stringtab_dev,
52 NULL,
53};
54
Jassi Brar132fcb42012-02-02 22:01:34 +053055#ifdef CONFIG_GADGET_UAC1
56#include "u_uac1.h"
Jassi Brar18b5b3b2012-02-02 21:59:53 +053057#include "u_uac1.c"
58#include "f_uac1.c"
Jassi Brar132fcb42012-02-02 22:01:34 +053059#else
60#include "f_uac2.c"
61#endif
Bryan Wuc6994e62009-06-03 09:17:58 -040062
63/*-------------------------------------------------------------------------*/
64
65/* DO NOT REUSE THESE IDs with a protocol-incompatible driver!! Ever!!
66 * Instead: allocate your own, using normal USB-IF procedures.
67 */
68
Greg Kroah-Hartman05cbc2d2009-06-23 16:01:06 -070069/* Thanks to Linux Foundation for donating this product ID. */
70#define AUDIO_VENDOR_NUM 0x1d6b /* Linux Foundation */
71#define AUDIO_PRODUCT_NUM 0x0101 /* Linux-USB Audio Gadget */
Bryan Wuc6994e62009-06-03 09:17:58 -040072
73/*-------------------------------------------------------------------------*/
74
75static struct usb_device_descriptor device_desc = {
76 .bLength = sizeof device_desc,
77 .bDescriptorType = USB_DT_DEVICE,
78
79 .bcdUSB = __constant_cpu_to_le16(0x200),
80
Jassi Brar132fcb42012-02-02 22:01:34 +053081#ifdef CONFIG_GADGET_UAC1
Bryan Wuc6994e62009-06-03 09:17:58 -040082 .bDeviceClass = USB_CLASS_PER_INTERFACE,
83 .bDeviceSubClass = 0,
84 .bDeviceProtocol = 0,
Jassi Brar132fcb42012-02-02 22:01:34 +053085#else
86 .bDeviceClass = USB_CLASS_MISC,
87 .bDeviceSubClass = 0x02,
88 .bDeviceProtocol = 0x01,
89#endif
Bryan Wuc6994e62009-06-03 09:17:58 -040090 /* .bMaxPacketSize0 = f(hardware) */
91
92 /* Vendor and product id defaults change according to what configs
93 * we support. (As does bNumConfigurations.) These values can
94 * also be overridden by module parameters.
95 */
96 .idVendor = __constant_cpu_to_le16(AUDIO_VENDOR_NUM),
97 .idProduct = __constant_cpu_to_le16(AUDIO_PRODUCT_NUM),
98 /* .bcdDevice = f(hardware) */
99 /* .iManufacturer = DYNAMIC */
100 /* .iProduct = DYNAMIC */
101 /* NO SERIAL NUMBER */
102 .bNumConfigurations = 1,
103};
104
105static struct usb_otg_descriptor otg_descriptor = {
106 .bLength = sizeof otg_descriptor,
107 .bDescriptorType = USB_DT_OTG,
108
109 /* REVISIT SRP-only hardware is possible, although
110 * it would not be called "OTG" ...
111 */
112 .bmAttributes = USB_OTG_SRP | USB_OTG_HNP,
113};
114
115static const struct usb_descriptor_header *otg_desc[] = {
116 (struct usb_descriptor_header *) &otg_descriptor,
117 NULL,
118};
119
120/*-------------------------------------------------------------------------*/
121
Michal Nazarewicze12995e2010-08-12 17:43:52 +0200122static int __init audio_do_config(struct usb_configuration *c)
Bryan Wuc6994e62009-06-03 09:17:58 -0400123{
124 /* FIXME alloc iConfiguration string, set it in c->strings */
125
126 if (gadget_is_otg(c->cdev->gadget)) {
127 c->descriptors = otg_desc;
128 c->bmAttributes |= USB_CONFIG_ATT_WAKEUP;
129 }
130
131 audio_bind_config(c);
132
133 return 0;
134}
135
136static struct usb_configuration audio_config_driver = {
137 .label = DRIVER_DESC,
Bryan Wuc6994e62009-06-03 09:17:58 -0400138 .bConfigurationValue = 1,
139 /* .iConfiguration = DYNAMIC */
140 .bmAttributes = USB_CONFIG_ATT_SELFPOWER,
Jassi Brar132fcb42012-02-02 22:01:34 +0530141#ifndef CONFIG_GADGET_UAC1
142 .unbind = uac2_unbind_config,
143#endif
Bryan Wuc6994e62009-06-03 09:17:58 -0400144};
145
146/*-------------------------------------------------------------------------*/
147
Michal Nazarewicze12995e2010-08-12 17:43:52 +0200148static int __init audio_bind(struct usb_composite_dev *cdev)
Bryan Wuc6994e62009-06-03 09:17:58 -0400149{
150 int gcnum;
151 int status;
152
153 gcnum = usb_gadget_controller_number(cdev->gadget);
154 if (gcnum >= 0)
155 device_desc.bcdDevice = cpu_to_le16(0x0300 | gcnum);
156 else {
157 ERROR(cdev, "controller '%s' not recognized; trying %s\n",
158 cdev->gadget->name,
159 audio_config_driver.label);
160 device_desc.bcdDevice =
161 __constant_cpu_to_le16(0x0300 | 0x0099);
162 }
163
164 /* device descriptor strings: manufacturer, product */
165 snprintf(manufacturer, sizeof manufacturer, "%s %s with %s",
166 init_utsname()->sysname, init_utsname()->release,
167 cdev->gadget->name);
Sebastian Andrzej Siewiore1f15cc2012-09-06 20:11:16 +0200168 status = usb_string_ids_tab(cdev, strings_dev);
Bryan Wuc6994e62009-06-03 09:17:58 -0400169 if (status < 0)
170 goto fail;
Sebastian Andrzej Siewiore1f15cc2012-09-06 20:11:16 +0200171 device_desc.iManufacturer = strings_dev[STRING_MANUFACTURER_IDX].id;
172 device_desc.iProduct = strings_dev[STRING_PRODUCT_IDX].id;
Bryan Wuc6994e62009-06-03 09:17:58 -0400173
Uwe Kleine-Königc9bfff92010-08-12 17:43:55 +0200174 status = usb_add_config(cdev, &audio_config_driver, audio_do_config);
Bryan Wuc6994e62009-06-03 09:17:58 -0400175 if (status < 0)
176 goto fail;
177
178 INFO(cdev, "%s, version: %s\n", DRIVER_DESC, DRIVER_VERSION);
179 return 0;
180
181fail:
182 return status;
183}
184
185static int __exit audio_unbind(struct usb_composite_dev *cdev)
186{
Jassi Brar132fcb42012-02-02 22:01:34 +0530187#ifdef CONFIG_GADGET_UAC1
Cliff Caifeef1d92009-12-09 22:28:39 -0500188 gaudio_cleanup();
Jassi Brar132fcb42012-02-02 22:01:34 +0530189#endif
Bryan Wuc6994e62009-06-03 09:17:58 -0400190 return 0;
191}
192
Sebastian Andrzej Siewiorc2ec75c2012-09-06 20:11:03 +0200193static __refdata struct usb_composite_driver audio_driver = {
Bryan Wuc6994e62009-06-03 09:17:58 -0400194 .name = "g_audio",
195 .dev = &device_desc,
196 .strings = audio_strings,
Tatyana Brokhman35a0e0b2011-06-29 16:41:49 +0300197 .max_speed = USB_SPEED_HIGH,
Sebastian Andrzej Siewior03e42bd2012-09-06 20:11:04 +0200198 .bind = audio_bind,
Bryan Wuc6994e62009-06-03 09:17:58 -0400199 .unbind = __exit_p(audio_unbind),
200};
201
202static int __init init(void)
203{
Sebastian Andrzej Siewior03e42bd2012-09-06 20:11:04 +0200204 return usb_composite_probe(&audio_driver);
Bryan Wuc6994e62009-06-03 09:17:58 -0400205}
206module_init(init);
207
208static void __exit cleanup(void)
209{
210 usb_composite_unregister(&audio_driver);
211}
212module_exit(cleanup);
213
214MODULE_DESCRIPTION(DRIVER_DESC);
215MODULE_AUTHOR("Bryan Wu <cooloney@kernel.org>");
216MODULE_LICENSE("GPL");
217