blob: c3ea237bcbcf4f82274af99ac280f98a5aa2db70 [file] [log] [blame]
Ben Williamsonf2ebf92c2006-08-01 11:28:16 +10001/*
2 * <linux/usb/audio.h> -- USB Audio definitions.
3 *
4 * Copyright (C) 2006 Thumtronics Pty Ltd.
5 * Developed for Thumtronics by Grey Innovation
6 * Ben Williamson <ben.williamson@greyinnovation.com>
7 *
8 * This software is distributed under the terms of the GNU General Public
9 * License ("GPL") version 2, as published by the Free Software Foundation.
10 *
11 * This file holds USB constants and structures defined
12 * by the USB Device Class Definition for Audio Devices.
13 * Comments below reference relevant sections of that document:
14 *
15 * http://www.usb.org/developers/devclass_docs/audio10.pdf
Daniel Mack7e847892010-03-11 21:13:20 +010016 *
17 * Types and defines in this file are either specific to version 1.0 of
18 * this standard or common for newer versions.
Ben Williamsonf2ebf92c2006-08-01 11:28:16 +100019 */
20
21#ifndef __LINUX_USB_AUDIO_H
22#define __LINUX_USB_AUDIO_H
23
24#include <linux/types.h>
25
Daniel Mack7e847892010-03-11 21:13:20 +010026/* bInterfaceProtocol values to denote the version of the standard used */
27#define UAC_VERSION_1 0x00
28#define UAC_VERSION_2 0x20
29
Ben Williamsonf2ebf92c2006-08-01 11:28:16 +100030/* A.2 Audio Interface Subclass Codes */
31#define USB_SUBCLASS_AUDIOCONTROL 0x01
32#define USB_SUBCLASS_AUDIOSTREAMING 0x02
33#define USB_SUBCLASS_MIDISTREAMING 0x03
34
Laurent Pinchart512ad272009-06-21 23:23:05 +020035/* A.5 Audio Class-Specific AC Interface Descriptor Subtypes */
36#define UAC_HEADER 0x01
37#define UAC_INPUT_TERMINAL 0x02
38#define UAC_OUTPUT_TERMINAL 0x03
39#define UAC_MIXER_UNIT 0x04
40#define UAC_SELECTOR_UNIT 0x05
41#define UAC_FEATURE_UNIT 0x06
Daniel Mack69da9bc2010-06-16 17:57:28 +020042#define UAC1_PROCESSING_UNIT 0x07
43#define UAC1_EXTENSION_UNIT 0x08
Daniel Mackde48c7b2010-02-22 23:49:13 +010044
Laurent Pinchart512ad272009-06-21 23:23:05 +020045/* A.6 Audio Class-Specific AS Interface Descriptor Subtypes */
46#define UAC_AS_GENERAL 0x01
47#define UAC_FORMAT_TYPE 0x02
48#define UAC_FORMAT_SPECIFIC 0x03
Bryan Wuc47d7b02009-06-03 09:17:57 -040049
Daniel Mack65f25da2010-05-31 13:35:41 +020050/* A.7 Processing Unit Process Types */
51#define UAC_PROCESS_UNDEFINED 0x00
52#define UAC_PROCESS_UP_DOWNMIX 0x01
53#define UAC_PROCESS_DOLBY_PROLOGIC 0x02
54#define UAC_PROCESS_STEREO_EXTENDER 0x03
55#define UAC_PROCESS_REVERB 0x04
56#define UAC_PROCESS_CHORUS 0x05
57#define UAC_PROCESS_DYN_RANGE_COMP 0x06
58
Laurent Pinchart512ad272009-06-21 23:23:05 +020059/* A.8 Audio Class-Specific Endpoint Descriptor Subtypes */
60#define UAC_EP_GENERAL 0x01
Bryan Wuc47d7b02009-06-03 09:17:57 -040061
Laurent Pinchart512ad272009-06-21 23:23:05 +020062/* A.9 Audio Class-Specific Request Codes */
63#define UAC_SET_ 0x00
64#define UAC_GET_ 0x80
Bryan Wuc47d7b02009-06-03 09:17:57 -040065
Laurent Pinchart512ad272009-06-21 23:23:05 +020066#define UAC__CUR 0x1
67#define UAC__MIN 0x2
68#define UAC__MAX 0x3
69#define UAC__RES 0x4
70#define UAC__MEM 0x5
Bryan Wuc47d7b02009-06-03 09:17:57 -040071
Laurent Pinchart512ad272009-06-21 23:23:05 +020072#define UAC_SET_CUR (UAC_SET_ | UAC__CUR)
73#define UAC_GET_CUR (UAC_GET_ | UAC__CUR)
74#define UAC_SET_MIN (UAC_SET_ | UAC__MIN)
75#define UAC_GET_MIN (UAC_GET_ | UAC__MIN)
76#define UAC_SET_MAX (UAC_SET_ | UAC__MAX)
77#define UAC_GET_MAX (UAC_GET_ | UAC__MAX)
78#define UAC_SET_RES (UAC_SET_ | UAC__RES)
79#define UAC_GET_RES (UAC_GET_ | UAC__RES)
80#define UAC_SET_MEM (UAC_SET_ | UAC__MEM)
81#define UAC_GET_MEM (UAC_GET_ | UAC__MEM)
Bryan Wuc47d7b02009-06-03 09:17:57 -040082
Laurent Pinchart512ad272009-06-21 23:23:05 +020083#define UAC_GET_STAT 0xff
Bryan Wuc47d7b02009-06-03 09:17:57 -040084
Daniel Mack65f25da2010-05-31 13:35:41 +020085/* A.10 Control Selector Codes */
86
87/* A.10.1 Terminal Control Selectors */
88#define UAC_TERM_COPY_PROTECT 0x01
89
90/* A.10.2 Feature Unit Control Selectors */
91#define UAC_FU_MUTE 0x01
92#define UAC_FU_VOLUME 0x02
93#define UAC_FU_BASS 0x03
94#define UAC_FU_MID 0x04
95#define UAC_FU_TREBLE 0x05
96#define UAC_FU_GRAPHIC_EQUALIZER 0x06
97#define UAC_FU_AUTOMATIC_GAIN 0x07
98#define UAC_FU_DELAY 0x08
99#define UAC_FU_BASS_BOOST 0x09
100#define UAC_FU_LOUDNESS 0x0a
101
102#define UAC_CONTROL_BIT(CS) (1 << ((CS) - 1))
103
104/* A.10.3.1 Up/Down-mix Processing Unit Controls Selectors */
105#define UAC_UD_ENABLE 0x01
106#define UAC_UD_MODE_SELECT 0x02
107
108/* A.10.3.2 Dolby Prologic (tm) Processing Unit Controls Selectors */
109#define UAC_DP_ENABLE 0x01
110#define UAC_DP_MODE_SELECT 0x02
111
112/* A.10.3.3 3D Stereo Extender Processing Unit Control Selectors */
113#define UAC_3D_ENABLE 0x01
114#define UAC_3D_SPACE 0x02
115
116/* A.10.3.4 Reverberation Processing Unit Control Selectors */
117#define UAC_REVERB_ENABLE 0x01
118#define UAC_REVERB_LEVEL 0x02
119#define UAC_REVERB_TIME 0x03
120#define UAC_REVERB_FEEDBACK 0x04
121
122/* A.10.3.5 Chorus Processing Unit Control Selectors */
123#define UAC_CHORUS_ENABLE 0x01
124#define UAC_CHORUS_LEVEL 0x02
125#define UAC_CHORUS_RATE 0x03
126#define UAC_CHORUS_DEPTH 0x04
127
128/* A.10.3.6 Dynamic Range Compressor Unit Control Selectors */
129#define UAC_DCR_ENABLE 0x01
130#define UAC_DCR_RATE 0x02
131#define UAC_DCR_MAXAMPL 0x03
132#define UAC_DCR_THRESHOLD 0x04
133#define UAC_DCR_ATTACK_TIME 0x05
134#define UAC_DCR_RELEASE_TIME 0x06
135
136/* A.10.4 Extension Unit Control Selectors */
137#define UAC_XU_ENABLE 0x01
138
Laurent Pinchart512ad272009-06-21 23:23:05 +0200139/* MIDI - A.1 MS Class-Specific Interface Descriptor Subtypes */
140#define UAC_MS_HEADER 0x01
141#define UAC_MIDI_IN_JACK 0x02
142#define UAC_MIDI_OUT_JACK 0x03
Bryan Wuc47d7b02009-06-03 09:17:57 -0400143
Laurent Pinchart512ad272009-06-21 23:23:05 +0200144/* MIDI - A.1 MS Class-Specific Endpoint Descriptor Subtypes */
145#define UAC_MS_GENERAL 0x01
Bryan Wuc47d7b02009-06-03 09:17:57 -0400146
Laurent Pinchart512ad272009-06-21 23:23:05 +0200147/* Terminals - 2.1 USB Terminal Types */
148#define UAC_TERMINAL_UNDEFINED 0x100
149#define UAC_TERMINAL_STREAMING 0x101
150#define UAC_TERMINAL_VENDOR_SPEC 0x1FF
Bryan Wuc47d7b02009-06-03 09:17:57 -0400151
152/* Terminal Control Selectors */
Ben Williamsonf2ebf92c2006-08-01 11:28:16 +1000153/* 4.3.2 Class-Specific AC Interface Descriptor */
Daniel Mack69da9bc2010-06-16 17:57:28 +0200154struct uac1_ac_header_descriptor {
Bryan Wuc47d7b02009-06-03 09:17:57 -0400155 __u8 bLength; /* 8 + n */
Greg Kroah-Hartman41dceed2008-01-30 15:21:33 -0800156 __u8 bDescriptorType; /* USB_DT_CS_INTERFACE */
Laurent Pinchart512ad272009-06-21 23:23:05 +0200157 __u8 bDescriptorSubtype; /* UAC_MS_HEADER */
Greg Kroah-Hartman41dceed2008-01-30 15:21:33 -0800158 __le16 bcdADC; /* 0x0100 */
159 __le16 wTotalLength; /* includes Unit and Terminal desc. */
160 __u8 bInCollection; /* n */
161 __u8 baInterfaceNr[]; /* [n] */
Ben Williamsonf2ebf92c2006-08-01 11:28:16 +1000162} __attribute__ ((packed));
163
Laurent Pinchart512ad272009-06-21 23:23:05 +0200164#define UAC_DT_AC_HEADER_SIZE(n) (8 + (n))
Ben Williamsonf2ebf92c2006-08-01 11:28:16 +1000165
166/* As above, but more useful for defining your own descriptors: */
Greg Kroah-Hartman0858a3a2010-05-17 10:58:12 -0700167#define DECLARE_UAC_AC_HEADER_DESCRIPTOR(n) \
Daniel Mack69da9bc2010-06-16 17:57:28 +0200168struct uac1_ac_header_descriptor_##n { \
Ben Williamsonf2ebf92c2006-08-01 11:28:16 +1000169 __u8 bLength; \
170 __u8 bDescriptorType; \
171 __u8 bDescriptorSubtype; \
172 __le16 bcdADC; \
173 __le16 wTotalLength; \
174 __u8 bInCollection; \
175 __u8 baInterfaceNr[n]; \
176} __attribute__ ((packed))
177
Mike Lockwood11874822012-08-27 16:43:53 +0530178DECLARE_UAC_AC_HEADER_DESCRIPTOR(2);
Bryan Wuc47d7b02009-06-03 09:17:57 -0400179/* 4.3.2.1 Input Terminal Descriptor */
Laurent Pinchart512ad272009-06-21 23:23:05 +0200180struct uac_input_terminal_descriptor {
Bryan Wuc47d7b02009-06-03 09:17:57 -0400181 __u8 bLength; /* in bytes: 12 */
182 __u8 bDescriptorType; /* CS_INTERFACE descriptor type */
183 __u8 bDescriptorSubtype; /* INPUT_TERMINAL descriptor subtype */
184 __u8 bTerminalID; /* Constant uniquely terminal ID */
185 __le16 wTerminalType; /* USB Audio Terminal Types */
186 __u8 bAssocTerminal; /* ID of the Output Terminal associated */
187 __u8 bNrChannels; /* Number of logical output channels */
188 __le16 wChannelConfig;
189 __u8 iChannelNames;
190 __u8 iTerminal;
191} __attribute__ ((packed));
192
Laurent Pinchart512ad272009-06-21 23:23:05 +0200193#define UAC_DT_INPUT_TERMINAL_SIZE 12
Bryan Wuc47d7b02009-06-03 09:17:57 -0400194
Laurent Pinchart512ad272009-06-21 23:23:05 +0200195/* Terminals - 2.2 Input Terminal Types */
196#define UAC_INPUT_TERMINAL_UNDEFINED 0x200
197#define UAC_INPUT_TERMINAL_MICROPHONE 0x201
198#define UAC_INPUT_TERMINAL_DESKTOP_MICROPHONE 0x202
199#define UAC_INPUT_TERMINAL_PERSONAL_MICROPHONE 0x203
200#define UAC_INPUT_TERMINAL_OMNI_DIR_MICROPHONE 0x204
201#define UAC_INPUT_TERMINAL_MICROPHONE_ARRAY 0x205
202#define UAC_INPUT_TERMINAL_PROC_MICROPHONE_ARRAY 0x206
Bryan Wuc47d7b02009-06-03 09:17:57 -0400203
Daniel Mackde48c7b2010-02-22 23:49:13 +0100204/* Terminals - control selectors */
205
206#define UAC_TERMINAL_CS_COPY_PROTECT_CONTROL 0x01
207
Bryan Wuc47d7b02009-06-03 09:17:57 -0400208/* 4.3.2.2 Output Terminal Descriptor */
Daniel Mack69da9bc2010-06-16 17:57:28 +0200209struct uac1_output_terminal_descriptor {
Bryan Wuc47d7b02009-06-03 09:17:57 -0400210 __u8 bLength; /* in bytes: 9 */
211 __u8 bDescriptorType; /* CS_INTERFACE descriptor type */
212 __u8 bDescriptorSubtype; /* OUTPUT_TERMINAL descriptor subtype */
213 __u8 bTerminalID; /* Constant uniquely terminal ID */
214 __le16 wTerminalType; /* USB Audio Terminal Types */
215 __u8 bAssocTerminal; /* ID of the Input Terminal associated */
216 __u8 bSourceID; /* ID of the connected Unit or Terminal*/
217 __u8 iTerminal;
218} __attribute__ ((packed));
219
Laurent Pinchart512ad272009-06-21 23:23:05 +0200220#define UAC_DT_OUTPUT_TERMINAL_SIZE 9
Bryan Wuc47d7b02009-06-03 09:17:57 -0400221
Laurent Pinchart512ad272009-06-21 23:23:05 +0200222/* Terminals - 2.3 Output Terminal Types */
223#define UAC_OUTPUT_TERMINAL_UNDEFINED 0x300
224#define UAC_OUTPUT_TERMINAL_SPEAKER 0x301
225#define UAC_OUTPUT_TERMINAL_HEADPHONES 0x302
226#define UAC_OUTPUT_TERMINAL_HEAD_MOUNTED_DISPLAY_AUDIO 0x303
227#define UAC_OUTPUT_TERMINAL_DESKTOP_SPEAKER 0x304
228#define UAC_OUTPUT_TERMINAL_ROOM_SPEAKER 0x305
229#define UAC_OUTPUT_TERMINAL_COMMUNICATION_SPEAKER 0x306
230#define UAC_OUTPUT_TERMINAL_LOW_FREQ_EFFECTS_SPEAKER 0x307
Bryan Wuc47d7b02009-06-03 09:17:57 -0400231
232/* Set bControlSize = 2 as default setting */
Laurent Pinchart512ad272009-06-21 23:23:05 +0200233#define UAC_DT_FEATURE_UNIT_SIZE(ch) (7 + ((ch) + 1) * 2)
Bryan Wuc47d7b02009-06-03 09:17:57 -0400234
235/* As above, but more useful for defining your own descriptors: */
Greg Kroah-Hartman0858a3a2010-05-17 10:58:12 -0700236#define DECLARE_UAC_FEATURE_UNIT_DESCRIPTOR(ch) \
Laurent Pinchart512ad272009-06-21 23:23:05 +0200237struct uac_feature_unit_descriptor_##ch { \
Bryan Wuc47d7b02009-06-03 09:17:57 -0400238 __u8 bLength; \
239 __u8 bDescriptorType; \
240 __u8 bDescriptorSubtype; \
241 __u8 bUnitID; \
242 __u8 bSourceID; \
243 __u8 bControlSize; \
244 __le16 bmaControls[ch + 1]; \
245 __u8 iFeature; \
246} __attribute__ ((packed))
247
Daniel Mack99fc8642010-03-11 21:13:24 +0100248/* 4.3.2.3 Mixer Unit Descriptor */
249struct uac_mixer_unit_descriptor {
250 __u8 bLength;
251 __u8 bDescriptorType;
252 __u8 bDescriptorSubtype;
253 __u8 bUnitID;
254 __u8 bNrInPins;
255 __u8 baSourceID[];
256} __attribute__ ((packed));
257
258static inline __u8 uac_mixer_unit_bNrChannels(struct uac_mixer_unit_descriptor *desc)
259{
260 return desc->baSourceID[desc->bNrInPins];
261}
262
Daniel Mack23caaf12010-03-11 21:13:25 +0100263static inline __u32 uac_mixer_unit_wChannelConfig(struct uac_mixer_unit_descriptor *desc,
264 int protocol)
Daniel Mack99fc8642010-03-11 21:13:24 +0100265{
Daniel Mack23caaf12010-03-11 21:13:25 +0100266 if (protocol == UAC_VERSION_1)
267 return (desc->baSourceID[desc->bNrInPins + 2] << 8) |
268 desc->baSourceID[desc->bNrInPins + 1];
269 else
270 return (desc->baSourceID[desc->bNrInPins + 4] << 24) |
271 (desc->baSourceID[desc->bNrInPins + 3] << 16) |
272 (desc->baSourceID[desc->bNrInPins + 2] << 8) |
273 (desc->baSourceID[desc->bNrInPins + 1]);
Daniel Mack99fc8642010-03-11 21:13:24 +0100274}
275
Daniel Mack23caaf12010-03-11 21:13:25 +0100276static inline __u8 uac_mixer_unit_iChannelNames(struct uac_mixer_unit_descriptor *desc,
277 int protocol)
Daniel Mack99fc8642010-03-11 21:13:24 +0100278{
Daniel Mack23caaf12010-03-11 21:13:25 +0100279 return (protocol == UAC_VERSION_1) ?
280 desc->baSourceID[desc->bNrInPins + 3] :
281 desc->baSourceID[desc->bNrInPins + 5];
Daniel Mack99fc8642010-03-11 21:13:24 +0100282}
283
Daniel Mack23caaf12010-03-11 21:13:25 +0100284static inline __u8 *uac_mixer_unit_bmControls(struct uac_mixer_unit_descriptor *desc,
285 int protocol)
Daniel Mack99fc8642010-03-11 21:13:24 +0100286{
Daniel Mack23caaf12010-03-11 21:13:25 +0100287 return (protocol == UAC_VERSION_1) ?
288 &desc->baSourceID[desc->bNrInPins + 4] :
289 &desc->baSourceID[desc->bNrInPins + 6];
Daniel Mack99fc8642010-03-11 21:13:24 +0100290}
291
292static inline __u8 uac_mixer_unit_iMixer(struct uac_mixer_unit_descriptor *desc)
293{
294 __u8 *raw = (__u8 *) desc;
295 return raw[desc->bLength - 1];
296}
297
298/* 4.3.2.4 Selector Unit Descriptor */
299struct uac_selector_unit_descriptor {
300 __u8 bLength;
301 __u8 bDescriptorType;
302 __u8 bDescriptorSubtype;
303 __u8 bUintID;
304 __u8 bNrInPins;
305 __u8 baSourceID[];
306} __attribute__ ((packed));
307
308static inline __u8 uac_selector_unit_iSelector(struct uac_selector_unit_descriptor *desc)
309{
310 __u8 *raw = (__u8 *) desc;
Daniel Mack7176d372010-05-31 13:35:39 +0200311 return raw[desc->bLength - 1];
Daniel Mack99fc8642010-03-11 21:13:24 +0100312}
313
314/* 4.3.2.5 Feature Unit Descriptor */
315struct uac_feature_unit_descriptor {
316 __u8 bLength;
317 __u8 bDescriptorType;
318 __u8 bDescriptorSubtype;
319 __u8 bUnitID;
320 __u8 bSourceID;
321 __u8 bControlSize;
322 __u8 bmaControls[0]; /* variable length */
323} __attribute__((packed));
324
325static inline __u8 uac_feature_unit_iFeature(struct uac_feature_unit_descriptor *desc)
326{
327 __u8 *raw = (__u8 *) desc;
328 return raw[desc->bLength - 1];
329}
330
331/* 4.3.2.6 Processing Unit Descriptors */
332struct uac_processing_unit_descriptor {
333 __u8 bLength;
334 __u8 bDescriptorType;
335 __u8 bDescriptorSubtype;
336 __u8 bUnitID;
337 __u16 wProcessType;
338 __u8 bNrInPins;
339 __u8 baSourceID[];
340} __attribute__ ((packed));
341
342static inline __u8 uac_processing_unit_bNrChannels(struct uac_processing_unit_descriptor *desc)
343{
344 return desc->baSourceID[desc->bNrInPins];
345}
346
Daniel Mack23caaf12010-03-11 21:13:25 +0100347static inline __u32 uac_processing_unit_wChannelConfig(struct uac_processing_unit_descriptor *desc,
348 int protocol)
Daniel Mack99fc8642010-03-11 21:13:24 +0100349{
Daniel Mack23caaf12010-03-11 21:13:25 +0100350 if (protocol == UAC_VERSION_1)
351 return (desc->baSourceID[desc->bNrInPins + 2] << 8) |
352 desc->baSourceID[desc->bNrInPins + 1];
353 else
354 return (desc->baSourceID[desc->bNrInPins + 4] << 24) |
355 (desc->baSourceID[desc->bNrInPins + 3] << 16) |
356 (desc->baSourceID[desc->bNrInPins + 2] << 8) |
357 (desc->baSourceID[desc->bNrInPins + 1]);
Daniel Mack99fc8642010-03-11 21:13:24 +0100358}
359
Daniel Mack23caaf12010-03-11 21:13:25 +0100360static inline __u8 uac_processing_unit_iChannelNames(struct uac_processing_unit_descriptor *desc,
361 int protocol)
Daniel Mack99fc8642010-03-11 21:13:24 +0100362{
Daniel Mack23caaf12010-03-11 21:13:25 +0100363 return (protocol == UAC_VERSION_1) ?
364 desc->baSourceID[desc->bNrInPins + 3] :
365 desc->baSourceID[desc->bNrInPins + 5];
Daniel Mack99fc8642010-03-11 21:13:24 +0100366}
367
Daniel Mack23caaf12010-03-11 21:13:25 +0100368static inline __u8 uac_processing_unit_bControlSize(struct uac_processing_unit_descriptor *desc,
369 int protocol)
Daniel Mack99fc8642010-03-11 21:13:24 +0100370{
Daniel Mack23caaf12010-03-11 21:13:25 +0100371 return (protocol == UAC_VERSION_1) ?
372 desc->baSourceID[desc->bNrInPins + 4] :
373 desc->baSourceID[desc->bNrInPins + 6];
Daniel Mack99fc8642010-03-11 21:13:24 +0100374}
375
Daniel Mack23caaf12010-03-11 21:13:25 +0100376static inline __u8 *uac_processing_unit_bmControls(struct uac_processing_unit_descriptor *desc,
377 int protocol)
Daniel Mack99fc8642010-03-11 21:13:24 +0100378{
Daniel Mack23caaf12010-03-11 21:13:25 +0100379 return (protocol == UAC_VERSION_1) ?
380 &desc->baSourceID[desc->bNrInPins + 5] :
381 &desc->baSourceID[desc->bNrInPins + 7];
Daniel Mack99fc8642010-03-11 21:13:24 +0100382}
383
Daniel Mack23caaf12010-03-11 21:13:25 +0100384static inline __u8 uac_processing_unit_iProcessing(struct uac_processing_unit_descriptor *desc,
385 int protocol)
Daniel Mack99fc8642010-03-11 21:13:24 +0100386{
Daniel Mack23caaf12010-03-11 21:13:25 +0100387 __u8 control_size = uac_processing_unit_bControlSize(desc, protocol);
Daniel Mack99fc8642010-03-11 21:13:24 +0100388 return desc->baSourceID[desc->bNrInPins + control_size];
389}
390
Daniel Mack23caaf12010-03-11 21:13:25 +0100391static inline __u8 *uac_processing_unit_specific(struct uac_processing_unit_descriptor *desc,
392 int protocol)
Daniel Mack99fc8642010-03-11 21:13:24 +0100393{
Daniel Mack23caaf12010-03-11 21:13:25 +0100394 __u8 control_size = uac_processing_unit_bControlSize(desc, protocol);
Daniel Mack99fc8642010-03-11 21:13:24 +0100395 return &desc->baSourceID[desc->bNrInPins + control_size + 1];
396}
397
Bryan Wuc47d7b02009-06-03 09:17:57 -0400398/* 4.5.2 Class-Specific AS Interface Descriptor */
Daniel Mack69da9bc2010-06-16 17:57:28 +0200399struct uac1_as_header_descriptor {
Bryan Wuc47d7b02009-06-03 09:17:57 -0400400 __u8 bLength; /* in bytes: 7 */
401 __u8 bDescriptorType; /* USB_DT_CS_INTERFACE */
402 __u8 bDescriptorSubtype; /* AS_GENERAL */
403 __u8 bTerminalLink; /* Terminal ID of connected Terminal */
404 __u8 bDelay; /* Delay introduced by the data path */
405 __le16 wFormatTag; /* The Audio Data Format */
406} __attribute__ ((packed));
407
Laurent Pinchart512ad272009-06-21 23:23:05 +0200408#define UAC_DT_AS_HEADER_SIZE 7
Bryan Wuc47d7b02009-06-03 09:17:57 -0400409
Laurent Pinchart512ad272009-06-21 23:23:05 +0200410/* Formats - A.1.1 Audio Data Format Type I Codes */
411#define UAC_FORMAT_TYPE_I_UNDEFINED 0x0
412#define UAC_FORMAT_TYPE_I_PCM 0x1
413#define UAC_FORMAT_TYPE_I_PCM8 0x2
414#define UAC_FORMAT_TYPE_I_IEEE_FLOAT 0x3
415#define UAC_FORMAT_TYPE_I_ALAW 0x4
416#define UAC_FORMAT_TYPE_I_MULAW 0x5
Bryan Wuc47d7b02009-06-03 09:17:57 -0400417
Laurent Pinchart512ad272009-06-21 23:23:05 +0200418struct uac_format_type_i_continuous_descriptor {
Bryan Wuc47d7b02009-06-03 09:17:57 -0400419 __u8 bLength; /* in bytes: 8 + (ns * 3) */
420 __u8 bDescriptorType; /* USB_DT_CS_INTERFACE */
421 __u8 bDescriptorSubtype; /* FORMAT_TYPE */
422 __u8 bFormatType; /* FORMAT_TYPE_1 */
423 __u8 bNrChannels; /* physical channels in the stream */
424 __u8 bSubframeSize; /* */
425 __u8 bBitResolution;
426 __u8 bSamFreqType;
427 __u8 tLowerSamFreq[3];
428 __u8 tUpperSamFreq[3];
429} __attribute__ ((packed));
430
Laurent Pinchart512ad272009-06-21 23:23:05 +0200431#define UAC_FORMAT_TYPE_I_CONTINUOUS_DESC_SIZE 14
Bryan Wuc47d7b02009-06-03 09:17:57 -0400432
Laurent Pinchart512ad272009-06-21 23:23:05 +0200433struct uac_format_type_i_discrete_descriptor {
Bryan Wuc47d7b02009-06-03 09:17:57 -0400434 __u8 bLength; /* in bytes: 8 + (ns * 3) */
435 __u8 bDescriptorType; /* USB_DT_CS_INTERFACE */
436 __u8 bDescriptorSubtype; /* FORMAT_TYPE */
437 __u8 bFormatType; /* FORMAT_TYPE_1 */
438 __u8 bNrChannels; /* physical channels in the stream */
439 __u8 bSubframeSize; /* */
440 __u8 bBitResolution;
441 __u8 bSamFreqType;
442 __u8 tSamFreq[][3];
443} __attribute__ ((packed));
444
Greg Kroah-Hartman0858a3a2010-05-17 10:58:12 -0700445#define DECLARE_UAC_FORMAT_TYPE_I_DISCRETE_DESC(n) \
Laurent Pinchart512ad272009-06-21 23:23:05 +0200446struct uac_format_type_i_discrete_descriptor_##n { \
Bryan Wuc47d7b02009-06-03 09:17:57 -0400447 __u8 bLength; \
448 __u8 bDescriptorType; \
449 __u8 bDescriptorSubtype; \
450 __u8 bFormatType; \
451 __u8 bNrChannels; \
452 __u8 bSubframeSize; \
453 __u8 bBitResolution; \
454 __u8 bSamFreqType; \
455 __u8 tSamFreq[n][3]; \
456} __attribute__ ((packed))
457
Mike Lockwood11874822012-08-27 16:43:53 +0530458DECLARE_UAC_FORMAT_TYPE_I_DISCRETE_DESC(1);
Laurent Pinchart512ad272009-06-21 23:23:05 +0200459#define UAC_FORMAT_TYPE_I_DISCRETE_DESC_SIZE(n) (8 + (n * 3))
Bryan Wuc47d7b02009-06-03 09:17:57 -0400460
Daniel Mack8fee4af2010-02-22 23:49:10 +0100461struct uac_format_type_i_ext_descriptor {
462 __u8 bLength;
463 __u8 bDescriptorType;
464 __u8 bDescriptorSubtype;
Daniel Mack8fee4af2010-02-22 23:49:10 +0100465 __u8 bFormatType;
Daniel Mack2b9ddcb2010-03-04 19:46:18 +0100466 __u8 bSubslotSize;
Daniel Mack8fee4af2010-02-22 23:49:10 +0100467 __u8 bBitResolution;
468 __u8 bHeaderLength;
469 __u8 bControlSize;
470 __u8 bSideBandProtocol;
471} __attribute__((packed));
472
Daniel Mack28e1b772010-02-22 23:49:09 +0100473/* Formats - Audio Data Format Type I Codes */
474
Daniel Mackde48c7b2010-02-22 23:49:13 +0100475#define UAC_FORMAT_TYPE_II_MPEG 0x1001
476#define UAC_FORMAT_TYPE_II_AC3 0x1002
477
Daniel Mack28e1b772010-02-22 23:49:09 +0100478struct uac_format_type_ii_discrete_descriptor {
479 __u8 bLength;
480 __u8 bDescriptorType;
481 __u8 bDescriptorSubtype;
482 __u8 bFormatType;
483 __le16 wMaxBitRate;
484 __le16 wSamplesPerFrame;
485 __u8 bSamFreqType;
486 __u8 tSamFreq[][3];
487} __attribute__((packed));
488
Daniel Mack8fee4af2010-02-22 23:49:10 +0100489struct uac_format_type_ii_ext_descriptor {
490 __u8 bLength;
491 __u8 bDescriptorType;
492 __u8 bDescriptorSubtype;
493 __u8 bFormatType;
494 __u16 wMaxBitRate;
495 __u16 wSamplesPerFrame;
496 __u8 bHeaderLength;
497 __u8 bSideBandProtocol;
498} __attribute__((packed));
499
Daniel Mackde48c7b2010-02-22 23:49:13 +0100500/* type III */
501#define UAC_FORMAT_TYPE_III_IEC1937_AC3 0x2001
502#define UAC_FORMAT_TYPE_III_IEC1937_MPEG1_LAYER1 0x2002
503#define UAC_FORMAT_TYPE_III_IEC1937_MPEG2_NOEXT 0x2003
504#define UAC_FORMAT_TYPE_III_IEC1937_MPEG2_EXT 0x2004
505#define UAC_FORMAT_TYPE_III_IEC1937_MPEG2_LAYER1_LS 0x2005
506#define UAC_FORMAT_TYPE_III_IEC1937_MPEG2_LAYER23_LS 0x2006
Daniel Mack8fee4af2010-02-22 23:49:10 +0100507
Laurent Pinchart512ad272009-06-21 23:23:05 +0200508/* Formats - A.2 Format Type Codes */
509#define UAC_FORMAT_TYPE_UNDEFINED 0x0
510#define UAC_FORMAT_TYPE_I 0x1
511#define UAC_FORMAT_TYPE_II 0x2
512#define UAC_FORMAT_TYPE_III 0x3
Daniel Mack8fee4af2010-02-22 23:49:10 +0100513#define UAC_EXT_FORMAT_TYPE_I 0x81
514#define UAC_EXT_FORMAT_TYPE_II 0x82
515#define UAC_EXT_FORMAT_TYPE_III 0x83
Bryan Wuc47d7b02009-06-03 09:17:57 -0400516
Laurent Pinchart512ad272009-06-21 23:23:05 +0200517struct uac_iso_endpoint_descriptor {
Bryan Wuc47d7b02009-06-03 09:17:57 -0400518 __u8 bLength; /* in bytes: 7 */
519 __u8 bDescriptorType; /* USB_DT_CS_ENDPOINT */
520 __u8 bDescriptorSubtype; /* EP_GENERAL */
521 __u8 bmAttributes;
522 __u8 bLockDelayUnits;
523 __le16 wLockDelay;
Daniel Mack0350b6a2010-05-11 18:13:49 +0200524} __attribute__((packed));
Laurent Pinchart512ad272009-06-21 23:23:05 +0200525#define UAC_ISO_ENDPOINT_DESC_SIZE 7
Bryan Wuc47d7b02009-06-03 09:17:57 -0400526
Laurent Pinchart512ad272009-06-21 23:23:05 +0200527#define UAC_EP_CS_ATTR_SAMPLE_RATE 0x01
528#define UAC_EP_CS_ATTR_PITCH_CONTROL 0x02
529#define UAC_EP_CS_ATTR_FILL_MAX 0x80
Bryan Wuc47d7b02009-06-03 09:17:57 -0400530
Daniel Macke213e9c2010-05-11 18:13:50 +0200531/* status word format (3.7.1.1) */
532
533#define UAC1_STATUS_TYPE_ORIG_MASK 0x0f
534#define UAC1_STATUS_TYPE_ORIG_AUDIO_CONTROL_IF 0x0
535#define UAC1_STATUS_TYPE_ORIG_AUDIO_STREAM_IF 0x1
536#define UAC1_STATUS_TYPE_ORIG_AUDIO_STREAM_EP 0x2
537
538#define UAC1_STATUS_TYPE_IRQ_PENDING (1 << 7)
539#define UAC1_STATUS_TYPE_MEM_CHANGED (1 << 6)
540
541struct uac1_status_word {
542 __u8 bStatusType;
543 __u8 bOriginator;
544} __attribute__((packed));
545
Michael S. Tsirkinc3501302009-07-29 14:23:25 +0300546#ifdef __KERNEL__
547
Bryan Wuc47d7b02009-06-03 09:17:57 -0400548struct usb_audio_control {
549 struct list_head list;
550 const char *name;
551 u8 type;
552 int data[5];
553 int (*set)(struct usb_audio_control *con, u8 cmd, int value);
554 int (*get)(struct usb_audio_control *con, u8 cmd);
555};
556
Bryan Wuc47d7b02009-06-03 09:17:57 -0400557struct usb_audio_control_selector {
558 struct list_head list;
559 struct list_head control;
560 u8 id;
561 const char *name;
562 u8 type;
563 struct usb_descriptor_header *desc;
564};
565
Michael S. Tsirkinc3501302009-07-29 14:23:25 +0300566#endif /* __KERNEL__ */
567
Robert P. J. Daydda43a02008-03-07 13:45:32 -0500568#endif /* __LINUX_USB_AUDIO_H */