blob: 93c4bed7b128ac1bc4ad834228c1d0a024c3cec9 [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/*
Daniel Macke5779992010-03-04 19:46:13 +010030 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 */
32
Linus Torvalds1da177e2005-04-16 15:20:36 -070033struct snd_usb_audio {
34 int index;
35 struct usb_device *dev;
Takashi Iwai86e07d32005-11-17 15:08:02 +010036 struct snd_card *card;
Oliver Neukum88a85162011-03-11 14:51:12 +010037 struct usb_interface *pm_intf;
Clemens Ladisch27d10f52005-05-02 08:51:26 +020038 u32 usb_id;
Daniel Mack596580d2012-04-12 13:51:10 +020039 struct mutex mutex;
Oliver Neukum88a85162011-03-11 14:51:12 +010040 unsigned int autosuspended:1;
Takashi Iwai47ab1542015-08-25 16:09:00 +020041 atomic_t active;
42 atomic_t shutdown;
43 atomic_t usage_count;
44 wait_queue_head_t shutdown_wait;
John S. Gruber98e89f62009-12-27 12:19:58 -050045 unsigned int txfr_quirk:1; /* Subframe boundaries on transfers */
Ricard Wanderlofe0570442015-10-19 08:52:53 +020046 unsigned int tx_length_quirk:1; /* Put length specifier in transfers */
Oliver Neukum88a85162011-03-11 14:51:12 +010047
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 int num_interfaces;
Oliver Neukumf85bf292007-12-14 14:42:41 +010049 int num_suspended_intf;
Takashi Iwai57dd5412016-04-29 11:49:04 +020050 int sample_rate_read_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52 struct list_head pcm_list; /* list of pcm streams */
Daniel Mack8fdff6a2012-04-12 13:51:11 +020053 struct list_head ep_list; /* list of audio-related endpoints */
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 int pcm_devs;
55
56 struct list_head midi_list; /* list of midi interfaces */
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Clemens Ladisch84957a82005-04-29 16:23:13 +020058 struct list_head mixer_list; /* list of mixer interfaces */
Daniel Macke5779992010-03-04 19:46:13 +010059
60 int setup; /* from the 'device_setup' module param */
Eldad Zackef02e292013-04-03 23:18:56 +020061 bool autoclock; /* from the 'autoclock' module param */
Daniel Mack79f920f2010-05-31 14:51:31 +020062
63 struct usb_host_interface *ctrl_intf; /* the audio control interface */
Hemant Kumar0ef9fbb2016-01-28 11:41:42 -080064
65 struct mutex dev_lock; /* to protect any race with disconnect */
Hemant Kumar9d9dac12016-03-07 14:46:31 -080066 int card_num; /* cache pcm card number to use upon disconnect */
67 void (*disconnect_cb)(struct snd_usb_audio *chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068};
69
Takashi Iwai0ba41d92014-02-26 13:02:17 +010070#define usb_audio_err(chip, fmt, args...) \
71 dev_err(&(chip)->dev->dev, fmt, ##args)
72#define usb_audio_warn(chip, fmt, args...) \
73 dev_warn(&(chip)->dev->dev, fmt, ##args)
74#define usb_audio_info(chip, fmt, args...) \
75 dev_info(&(chip)->dev->dev, fmt, ##args)
76#define usb_audio_dbg(chip, fmt, args...) \
77 dev_dbg(&(chip)->dev->dev, fmt, ##args)
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079/*
80 * Information about devices with broken descriptors
81 */
82
83/* special values for .ifnum */
84#define QUIRK_NO_INTERFACE -2
85#define QUIRK_ANY_INTERFACE -1
86
Clemens Ladisch854af952005-07-25 16:19:10 +020087enum quirk_type {
88 QUIRK_IGNORE_INTERFACE,
89 QUIRK_COMPOSITE,
Clemens Ladischaafe77c2013-03-31 23:43:12 +020090 QUIRK_AUTODETECT,
Clemens Ladisch854af952005-07-25 16:19:10 +020091 QUIRK_MIDI_STANDARD_INTERFACE,
92 QUIRK_MIDI_FIXED_ENDPOINT,
93 QUIRK_MIDI_YAMAHA,
Clemens Ladischaafe77c2013-03-31 23:43:12 +020094 QUIRK_MIDI_ROLAND,
Clemens Ladisch854af952005-07-25 16:19:10 +020095 QUIRK_MIDI_MIDIMAN,
96 QUIRK_MIDI_NOVATION,
Clemens Ladischc7f57212010-10-22 18:20:48 +020097 QUIRK_MIDI_RAW_BYTES,
Clemens Ladisch854af952005-07-25 16:19:10 +020098 QUIRK_MIDI_EMAGIC,
Clemens Ladischcc7a59b2006-02-07 17:11:06 +010099 QUIRK_MIDI_CME,
Krzysztof Foltman4434ade2010-05-20 20:31:10 +0100100 QUIRK_MIDI_AKAI,
Karsten Wiese030a07e2008-07-30 15:13:29 +0200101 QUIRK_MIDI_US122L,
Kristian Amlie1ef0e0a2011-08-26 13:19:49 +0200102 QUIRK_MIDI_FTDI,
Clemens Ladisch1ca8b202015-11-15 22:38:29 +0100103 QUIRK_MIDI_CH345,
Clemens Ladisch854af952005-07-25 16:19:10 +0200104 QUIRK_AUDIO_STANDARD_INTERFACE,
105 QUIRK_AUDIO_FIXED_ENDPOINT,
Pedro Lopez-Cabanillas310e0dc2008-10-04 16:27:36 +0200106 QUIRK_AUDIO_EDIROL_UAXX,
John S. Gruber52a7a582009-12-27 12:19:59 -0500107 QUIRK_AUDIO_ALIGN_TRANSFER,
Daniel Mack014950b2011-05-25 09:09:02 +0200108 QUIRK_AUDIO_STANDARD_MIXER,
Clemens Ladisch854af952005-07-25 16:19:10 +0200109
110 QUIRK_TYPE_COUNT
111};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113struct snd_usb_audio_quirk {
114 const char *vendor_name;
115 const char *product_name;
116 int16_t ifnum;
Clemens Ladisch854af952005-07-25 16:19:10 +0200117 uint16_t type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 const void *data;
119};
120
Julian Anastasovf4950882009-11-06 23:44:53 +0200121#define combine_word(s) ((*(s)) | ((unsigned int)(s)[1] << 8))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122#define combine_triple(s) (combine_word(s) | ((unsigned int)(s)[2] << 16))
123#define combine_quad(s) (combine_triple(s) | ((unsigned int)(s)[3] << 24))
124
Takashi Iwai47ab1542015-08-25 16:09:00 +0200125int snd_usb_lock_shutdown(struct snd_usb_audio *chip);
126void snd_usb_unlock_shutdown(struct snd_usb_audio *chip);
127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128#endif /* __USBAUDIO_H */