blob: 1f81e0f4fab928bb20308b6e3cb94f1d0d0a1654 [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>
Sebastian Andrzej Siewior7d16e8d2012-09-10 15:01:53 +020015#include <linux/usb/composite.h>
Bryan Wuc6994e62009-06-03 09:17:58 -040016
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"
Sebastian Andrzej Siewior7d16e8d2012-09-10 15:01:53 +020031USB_GADGET_COMPOSITE_OPTIONS();
Bryan Wuc6994e62009-06-03 09:17:58 -040032
Jassi Brard747a912012-02-02 22:01:12 +053033/* string IDs are assigned dynamically */
34
Jassi Brard747a912012-02-02 22:01:12 +053035static struct usb_string strings_dev[] = {
Sebastian Andrzej Siewiorcc2683c2012-09-10 15:01:58 +020036 [USB_GADGET_MANUFACTURER_IDX].s = "",
Sebastian Andrzej Siewior276e2e42012-09-06 20:11:21 +020037 [USB_GADGET_PRODUCT_IDX].s = DRIVER_DESC,
38 [USB_GADGET_SERIAL_IDX].s = "",
Jassi Brard747a912012-02-02 22:01:12 +053039 { } /* end of list */
40};
41
42static struct usb_gadget_strings stringtab_dev = {
43 .language = 0x0409, /* en-us */
44 .strings = strings_dev,
45};
46
47static struct usb_gadget_strings *audio_strings[] = {
48 &stringtab_dev,
49 NULL,
50};
51
Jassi Brar132fcb42012-02-02 22:01:34 +053052#ifdef CONFIG_GADGET_UAC1
53#include "u_uac1.h"
Jassi Brar18b5b3b2012-02-02 21:59:53 +053054#include "u_uac1.c"
55#include "f_uac1.c"
Jassi Brar132fcb42012-02-02 22:01:34 +053056#else
57#include "f_uac2.c"
58#endif
Bryan Wuc6994e62009-06-03 09:17:58 -040059
60/*-------------------------------------------------------------------------*/
61
62/* DO NOT REUSE THESE IDs with a protocol-incompatible driver!! Ever!!
63 * Instead: allocate your own, using normal USB-IF procedures.
64 */
65
Greg Kroah-Hartman05cbc2d2009-06-23 16:01:06 -070066/* Thanks to Linux Foundation for donating this product ID. */
67#define AUDIO_VENDOR_NUM 0x1d6b /* Linux Foundation */
68#define AUDIO_PRODUCT_NUM 0x0101 /* Linux-USB Audio Gadget */
Bryan Wuc6994e62009-06-03 09:17:58 -040069
70/*-------------------------------------------------------------------------*/
71
72static struct usb_device_descriptor device_desc = {
73 .bLength = sizeof device_desc,
74 .bDescriptorType = USB_DT_DEVICE,
75
76 .bcdUSB = __constant_cpu_to_le16(0x200),
77
Jassi Brar132fcb42012-02-02 22:01:34 +053078#ifdef CONFIG_GADGET_UAC1
Bryan Wuc6994e62009-06-03 09:17:58 -040079 .bDeviceClass = USB_CLASS_PER_INTERFACE,
80 .bDeviceSubClass = 0,
81 .bDeviceProtocol = 0,
Jassi Brar132fcb42012-02-02 22:01:34 +053082#else
83 .bDeviceClass = USB_CLASS_MISC,
84 .bDeviceSubClass = 0x02,
85 .bDeviceProtocol = 0x01,
86#endif
Bryan Wuc6994e62009-06-03 09:17:58 -040087 /* .bMaxPacketSize0 = f(hardware) */
88
89 /* Vendor and product id defaults change according to what configs
90 * we support. (As does bNumConfigurations.) These values can
91 * also be overridden by module parameters.
92 */
93 .idVendor = __constant_cpu_to_le16(AUDIO_VENDOR_NUM),
94 .idProduct = __constant_cpu_to_le16(AUDIO_PRODUCT_NUM),
95 /* .bcdDevice = f(hardware) */
96 /* .iManufacturer = DYNAMIC */
97 /* .iProduct = DYNAMIC */
98 /* NO SERIAL NUMBER */
99 .bNumConfigurations = 1,
100};
101
102static 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
112static const struct usb_descriptor_header *otg_desc[] = {
113 (struct usb_descriptor_header *) &otg_descriptor,
114 NULL,
115};
116
117/*-------------------------------------------------------------------------*/
118
Michal Nazarewicze12995e2010-08-12 17:43:52 +0200119static int __init audio_do_config(struct usb_configuration *c)
Bryan Wuc6994e62009-06-03 09:17:58 -0400120{
121 /* FIXME alloc iConfiguration string, set it in c->strings */
122
123 if (gadget_is_otg(c->cdev->gadget)) {
124 c->descriptors = otg_desc;
125 c->bmAttributes |= USB_CONFIG_ATT_WAKEUP;
126 }
127
128 audio_bind_config(c);
129
130 return 0;
131}
132
133static struct usb_configuration audio_config_driver = {
134 .label = DRIVER_DESC,
Bryan Wuc6994e62009-06-03 09:17:58 -0400135 .bConfigurationValue = 1,
136 /* .iConfiguration = DYNAMIC */
137 .bmAttributes = USB_CONFIG_ATT_SELFPOWER,
Jassi Brar132fcb42012-02-02 22:01:34 +0530138#ifndef CONFIG_GADGET_UAC1
139 .unbind = uac2_unbind_config,
140#endif
Bryan Wuc6994e62009-06-03 09:17:58 -0400141};
142
143/*-------------------------------------------------------------------------*/
144
Michal Nazarewicze12995e2010-08-12 17:43:52 +0200145static int __init audio_bind(struct usb_composite_dev *cdev)
Bryan Wuc6994e62009-06-03 09:17:58 -0400146{
147 int gcnum;
148 int status;
149
150 gcnum = usb_gadget_controller_number(cdev->gadget);
151 if (gcnum >= 0)
152 device_desc.bcdDevice = cpu_to_le16(0x0300 | gcnum);
153 else {
154 ERROR(cdev, "controller '%s' not recognized; trying %s\n",
155 cdev->gadget->name,
156 audio_config_driver.label);
157 device_desc.bcdDevice =
158 __constant_cpu_to_le16(0x0300 | 0x0099);
159 }
160
Sebastian Andrzej Siewiore1f15cc2012-09-06 20:11:16 +0200161 status = usb_string_ids_tab(cdev, strings_dev);
Bryan Wuc6994e62009-06-03 09:17:58 -0400162 if (status < 0)
163 goto fail;
Sebastian Andrzej Siewior276e2e42012-09-06 20:11:21 +0200164 device_desc.iManufacturer = strings_dev[USB_GADGET_MANUFACTURER_IDX].id;
165 device_desc.iProduct = strings_dev[USB_GADGET_PRODUCT_IDX].id;
Bryan Wuc6994e62009-06-03 09:17:58 -0400166
Uwe Kleine-Königc9bfff92010-08-12 17:43:55 +0200167 status = usb_add_config(cdev, &audio_config_driver, audio_do_config);
Bryan Wuc6994e62009-06-03 09:17:58 -0400168 if (status < 0)
169 goto fail;
Sebastian Andrzej Siewior7d16e8d2012-09-10 15:01:53 +0200170 usb_composite_overwrite_options(cdev, &coverwrite);
Bryan Wuc6994e62009-06-03 09:17:58 -0400171
172 INFO(cdev, "%s, version: %s\n", DRIVER_DESC, DRIVER_VERSION);
173 return 0;
174
175fail:
176 return status;
177}
178
179static int __exit audio_unbind(struct usb_composite_dev *cdev)
180{
Jassi Brar132fcb42012-02-02 22:01:34 +0530181#ifdef CONFIG_GADGET_UAC1
Cliff Caifeef1d92009-12-09 22:28:39 -0500182 gaudio_cleanup();
Jassi Brar132fcb42012-02-02 22:01:34 +0530183#endif
Bryan Wuc6994e62009-06-03 09:17:58 -0400184 return 0;
185}
186
Sebastian Andrzej Siewiorc2ec75c2012-09-06 20:11:03 +0200187static __refdata struct usb_composite_driver audio_driver = {
Bryan Wuc6994e62009-06-03 09:17:58 -0400188 .name = "g_audio",
189 .dev = &device_desc,
190 .strings = audio_strings,
Tatyana Brokhman35a0e0b2011-06-29 16:41:49 +0300191 .max_speed = USB_SPEED_HIGH,
Sebastian Andrzej Siewior03e42bd2012-09-06 20:11:04 +0200192 .bind = audio_bind,
Bryan Wuc6994e62009-06-03 09:17:58 -0400193 .unbind = __exit_p(audio_unbind),
194};
195
196static int __init init(void)
197{
Sebastian Andrzej Siewior03e42bd2012-09-06 20:11:04 +0200198 return usb_composite_probe(&audio_driver);
Bryan Wuc6994e62009-06-03 09:17:58 -0400199}
200module_init(init);
201
202static void __exit cleanup(void)
203{
204 usb_composite_unregister(&audio_driver);
205}
206module_exit(cleanup);
207
208MODULE_DESCRIPTION(DRIVER_DESC);
209MODULE_AUTHOR("Bryan Wu <cooloney@kernel.org>");
210MODULE_LICENSE("GPL");
211