blob: 49a691a0b281d24e6712567126776dc00ee340f5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __USBAUDIO_H
2#define __USBAUDIO_H
3/*
4 * (Tentative) USB Audio Driver for ALSA
5 *
6 * Copyright (c) 2002 by Takashi Iwai <tiwai@suse.de>
7 *
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 */
23
Clemens Ladisch27d10f52005-05-02 08:51:26 +020024/* handling of USB vendor/product ID pairs as 32-bit numbers */
25#define USB_ID(vendor, product) (((vendor) << 16) | (product))
26#define USB_ID_VENDOR(id) ((id) >> 16)
27#define USB_ID_PRODUCT(id) ((u16)(id))
28
Linus Torvalds1da177e2005-04-16 15:20:36 -070029/*
30 */
31
Linus Torvalds1da177e2005-04-16 15:20:36 -070032struct snd_usb_audio {
33 int index;
34 struct usb_device *dev;
Takashi Iwai86e07d32005-11-17 15:08:02 +010035 struct snd_card *card;
Clemens Ladisch27d10f52005-05-02 08:51:26 +020036 u32 usb_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 int shutdown;
John S. Gruber98e89f62009-12-27 12:19:58 -050038 unsigned int txfr_quirk:1; /* Subframe boundaries on transfers */
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 int num_interfaces;
Oliver Neukumf85bf292007-12-14 14:42:41 +010040 int num_suspended_intf;
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Daniel Mack53ee98f2010-02-22 23:49:11 +010042 /* for audio class v2 */
43 int clock_id;
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 struct list_head pcm_list; /* list of pcm streams */
46 int pcm_devs;
47
48 struct list_head midi_list; /* list of midi interfaces */
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Clemens Ladisch84957a82005-04-29 16:23:13 +020050 struct list_head mixer_list; /* list of mixer interfaces */
Linus Torvalds1da177e2005-04-16 15:20:36 -070051};
52
53/*
54 * Information about devices with broken descriptors
55 */
56
57/* special values for .ifnum */
58#define QUIRK_NO_INTERFACE -2
59#define QUIRK_ANY_INTERFACE -1
60
Clemens Ladisch854af952005-07-25 16:19:10 +020061enum quirk_type {
62 QUIRK_IGNORE_INTERFACE,
63 QUIRK_COMPOSITE,
64 QUIRK_MIDI_STANDARD_INTERFACE,
65 QUIRK_MIDI_FIXED_ENDPOINT,
66 QUIRK_MIDI_YAMAHA,
67 QUIRK_MIDI_MIDIMAN,
68 QUIRK_MIDI_NOVATION,
Clemens Ladisch55de5ef2009-05-27 10:49:30 +020069 QUIRK_MIDI_FASTLANE,
Clemens Ladisch854af952005-07-25 16:19:10 +020070 QUIRK_MIDI_EMAGIC,
Clemens Ladischcc7a59b2006-02-07 17:11:06 +010071 QUIRK_MIDI_CME,
Karsten Wiese030a07e2008-07-30 15:13:29 +020072 QUIRK_MIDI_US122L,
Clemens Ladisch854af952005-07-25 16:19:10 +020073 QUIRK_AUDIO_STANDARD_INTERFACE,
74 QUIRK_AUDIO_FIXED_ENDPOINT,
Pedro Lopez-Cabanillas310e0dc2008-10-04 16:27:36 +020075 QUIRK_AUDIO_EDIROL_UAXX,
John S. Gruber52a7a582009-12-27 12:19:59 -050076 QUIRK_AUDIO_ALIGN_TRANSFER,
Clemens Ladisch854af952005-07-25 16:19:10 +020077
78 QUIRK_TYPE_COUNT
79};
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Linus Torvalds1da177e2005-04-16 15:20:36 -070081struct snd_usb_audio_quirk {
82 const char *vendor_name;
83 const char *product_name;
84 int16_t ifnum;
Clemens Ladisch854af952005-07-25 16:19:10 +020085 uint16_t type;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 const void *data;
87};
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089/*
90 */
91
Sergiy Kovalchuk7d2b4512009-12-27 09:13:41 -080092/*E-mu USB samplerate control quirk*/
93enum {
94 EMU_QUIRK_SR_44100HZ = 0,
95 EMU_QUIRK_SR_48000HZ,
96 EMU_QUIRK_SR_88200HZ,
97 EMU_QUIRK_SR_96000HZ,
98 EMU_QUIRK_SR_176400HZ,
99 EMU_QUIRK_SR_192000HZ
100};
101
Julian Anastasovf4950882009-11-06 23:44:53 +0200102#define combine_word(s) ((*(s)) | ((unsigned int)(s)[1] << 8))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103#define combine_triple(s) (combine_word(s) | ((unsigned int)(s)[2] << 16))
104#define combine_quad(s) (combine_triple(s) | ((unsigned int)(s)[3] << 24))
105
106unsigned int snd_usb_combine_bytes(unsigned char *bytes, int size);
107
108void *snd_usb_find_desc(void *descstart, int desclen, void *after, u8 dtype);
109void *snd_usb_find_csint_desc(void *descstart, int desclen, void *after, u8 dsubtype);
110
Takashi Iwai86e07d32005-11-17 15:08:02 +0100111int snd_usb_ctl_msg(struct usb_device *dev, unsigned int pipe,
112 __u8 request, __u8 requesttype, __u16 value, __u16 index,
113 void *data, __u16 size, int timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115/*
116 * retrieve usb_interface descriptor from the host interface
117 * (conditional for compatibility with the older API)
118 */
119#ifndef get_iface_desc
120#define get_iface_desc(iface) (&(iface)->desc)
121#define get_endpoint(alt,ep) (&(alt)->endpoint[ep].desc)
122#define get_ep_desc(ep) (&(ep)->desc)
123#define get_cfg_desc(cfg) (&(cfg)->desc)
124#endif
125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126#ifndef snd_usb_get_speed
127#define snd_usb_get_speed(dev) ((dev)->speed)
128#endif
129
130#endif /* __USBAUDIO_H */