2 * audio.c -- Audio gadget driver
4 * Copyright (C) 2008 Bryan Wu <cooloney@kernel.org>
5 * Copyright (C) 2008 Analog Devices, Inc
7 * Enter bugs at http://blackfin.uclinux.org/
9 * Licensed under the GPL-2 or later.
12 /* #define VERBOSE_DEBUG */
14 #include <linux/kernel.h>
15 #include <linux/utsname.h>
19 #define DRIVER_DESC "Linux USB Audio Gadget"
20 #define DRIVER_VERSION "Dec 18, 2008"
22 /*-------------------------------------------------------------------------*/
25 * Kbuild is not very cooperative with respect to linking separately
26 * compiled library objects into one module. So for now we won't use
27 * separate compilation ... ensuring init/exit sections work to shrink
28 * the runtime footprint, and giving us at least some parts of what
29 * a "gcc --combine ... part1.c part2.c part3.c ... " build would.
31 #include "composite.c"
32 #include "usbstring.c"
34 #include "epautoconf.c"
39 /*-------------------------------------------------------------------------*/
41 /* DO NOT REUSE THESE IDs with a protocol-incompatible driver!! Ever!!
42 * Instead: allocate your own, using normal USB-IF procedures.
45 /* Thanks to Linux Foundation for donating this product ID. */
46 #define AUDIO_VENDOR_NUM 0x1d6b /* Linux Foundation */
47 #define AUDIO_PRODUCT_NUM 0x0101 /* Linux-USB Audio Gadget */
49 /*-------------------------------------------------------------------------*/
51 static struct usb_device_descriptor device_desc
= {
52 .bLength
= sizeof device_desc
,
53 .bDescriptorType
= USB_DT_DEVICE
,
55 .bcdUSB
= __constant_cpu_to_le16(0x200),
57 .bDeviceClass
= USB_CLASS_PER_INTERFACE
,
60 /* .bMaxPacketSize0 = f(hardware) */
62 /* Vendor and product id defaults change according to what configs
63 * we support. (As does bNumConfigurations.) These values can
64 * also be overridden by module parameters.
66 .idVendor
= __constant_cpu_to_le16(AUDIO_VENDOR_NUM
),
67 .idProduct
= __constant_cpu_to_le16(AUDIO_PRODUCT_NUM
),
68 /* .bcdDevice = f(hardware) */
69 /* .iManufacturer = DYNAMIC */
70 /* .iProduct = DYNAMIC */
71 /* NO SERIAL NUMBER */
72 .bNumConfigurations
= 1,
75 static struct usb_otg_descriptor otg_descriptor
= {
76 .bLength
= sizeof otg_descriptor
,
77 .bDescriptorType
= USB_DT_OTG
,
79 /* REVISIT SRP-only hardware is possible, although
80 * it would not be called "OTG" ...
82 .bmAttributes
= USB_OTG_SRP
| USB_OTG_HNP
,
85 static const struct usb_descriptor_header
*otg_desc
[] = {
86 (struct usb_descriptor_header
*) &otg_descriptor
,
90 /*-------------------------------------------------------------------------*/
93 * Handle USB audio endpoint set/get command in setup class request
96 static int audio_set_endpoint_req(struct usb_configuration
*c
,
97 const struct usb_ctrlrequest
*ctrl
)
99 struct usb_composite_dev
*cdev
= c
->cdev
;
100 int value
= -EOPNOTSUPP
;
101 u16 ep
= le16_to_cpu(ctrl
->wIndex
);
102 u16 len
= le16_to_cpu(ctrl
->wLength
);
103 u16 w_value
= le16_to_cpu(ctrl
->wValue
);
105 DBG(cdev
, "bRequest 0x%x, w_value 0x%04x, len %d, endpoint %d\n",
106 ctrl
->bRequest
, w_value
, len
, ep
);
108 switch (ctrl
->bRequest
) {
132 static int audio_get_endpoint_req(struct usb_configuration
*c
,
133 const struct usb_ctrlrequest
*ctrl
)
135 struct usb_composite_dev
*cdev
= c
->cdev
;
136 int value
= -EOPNOTSUPP
;
137 u8 ep
= ((le16_to_cpu(ctrl
->wIndex
) >> 8) & 0xFF);
138 u16 len
= le16_to_cpu(ctrl
->wLength
);
139 u16 w_value
= le16_to_cpu(ctrl
->wValue
);
141 DBG(cdev
, "bRequest 0x%x, w_value 0x%04x, len %d, endpoint %d\n",
142 ctrl
->bRequest
, w_value
, len
, ep
);
144 switch (ctrl
->bRequest
) {
161 audio_setup(struct usb_configuration
*c
, const struct usb_ctrlrequest
*ctrl
)
163 struct usb_composite_dev
*cdev
= c
->cdev
;
164 struct usb_request
*req
= cdev
->req
;
165 int value
= -EOPNOTSUPP
;
166 u16 w_index
= le16_to_cpu(ctrl
->wIndex
);
167 u16 w_value
= le16_to_cpu(ctrl
->wValue
);
168 u16 w_length
= le16_to_cpu(ctrl
->wLength
);
170 /* composite driver infrastructure handles everything except
171 * Audio class messages; interface activation uses set_alt().
173 switch (ctrl
->bRequestType
) {
174 case USB_AUDIO_SET_ENDPOINT
:
175 value
= audio_set_endpoint_req(c
, ctrl
);
178 case USB_AUDIO_GET_ENDPOINT
:
179 value
= audio_get_endpoint_req(c
, ctrl
);
183 ERROR(cdev
, "Invalid control req%02x.%02x v%04x i%04x l%d\n",
184 ctrl
->bRequestType
, ctrl
->bRequest
,
185 w_value
, w_index
, w_length
);
188 /* respond with data transfer or status phase? */
190 DBG(cdev
, "Audio req%02x.%02x v%04x i%04x l%d\n",
191 ctrl
->bRequestType
, ctrl
->bRequest
,
192 w_value
, w_index
, w_length
);
195 value
= usb_ep_queue(cdev
->gadget
->ep0
, req
, GFP_ATOMIC
);
197 ERROR(cdev
, "Audio response on err %d\n", value
);
200 /* device either stalls (value < 0) or reports success */
204 /*-------------------------------------------------------------------------*/
206 static int __init
audio_do_config(struct usb_configuration
*c
)
208 /* FIXME alloc iConfiguration string, set it in c->strings */
210 if (gadget_is_otg(c
->cdev
->gadget
)) {
211 c
->descriptors
= otg_desc
;
212 c
->bmAttributes
|= USB_CONFIG_ATT_WAKEUP
;
215 audio_bind_config(c
);
220 static struct usb_configuration audio_config_driver
= {
221 .label
= DRIVER_DESC
,
222 .bind
= audio_do_config
,
223 .setup
= audio_setup
,
224 .bConfigurationValue
= 1,
225 /* .iConfiguration = DYNAMIC */
226 .bmAttributes
= USB_CONFIG_ATT_SELFPOWER
,
229 /*-------------------------------------------------------------------------*/
231 static int __init
audio_bind(struct usb_composite_dev
*cdev
)
236 gcnum
= usb_gadget_controller_number(cdev
->gadget
);
238 device_desc
.bcdDevice
= cpu_to_le16(0x0300 | gcnum
);
240 ERROR(cdev
, "controller '%s' not recognized; trying %s\n",
242 audio_config_driver
.label
);
243 device_desc
.bcdDevice
=
244 __constant_cpu_to_le16(0x0300 | 0x0099);
247 /* device descriptor strings: manufacturer, product */
248 snprintf(manufacturer
, sizeof manufacturer
, "%s %s with %s",
249 init_utsname()->sysname
, init_utsname()->release
,
251 status
= usb_string_id(cdev
);
254 strings_dev
[STRING_MANUFACTURER_IDX
].id
= status
;
255 device_desc
.iManufacturer
= status
;
257 status
= usb_string_id(cdev
);
260 strings_dev
[STRING_PRODUCT_IDX
].id
= status
;
261 device_desc
.iProduct
= status
;
263 status
= usb_add_config(cdev
, &audio_config_driver
);
267 INFO(cdev
, "%s, version: %s\n", DRIVER_DESC
, DRIVER_VERSION
);
274 static int __exit
audio_unbind(struct usb_composite_dev
*cdev
)
279 static struct usb_composite_driver audio_driver
= {
282 .strings
= audio_strings
,
284 .unbind
= __exit_p(audio_unbind
),
287 static int __init
init(void)
289 return usb_composite_register(&audio_driver
);
293 static void __exit
cleanup(void)
295 usb_composite_unregister(&audio_driver
);
297 module_exit(cleanup
);
299 MODULE_DESCRIPTION(DRIVER_DESC
);
300 MODULE_AUTHOR("Bryan Wu <cooloney@kernel.org>");
301 MODULE_LICENSE("GPL");