Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * (Tentative) USB Audio Driver for ALSA |
| 3 | * |
| 4 | * Main and PCM part |
| 5 | * |
| 6 | * Copyright (c) 2002 by Takashi Iwai <tiwai@suse.de> |
| 7 | * |
| 8 | * Many codes borrowed from audio.c by |
| 9 | * Alan Cox (alan@lxorguk.ukuu.org.uk) |
| 10 | * Thomas Sailer (sailer@ife.ee.ethz.ch) |
| 11 | * |
| 12 | * |
| 13 | * This program is free software; you can redistribute it and/or modify |
| 14 | * it under the terms of the GNU General Public License as published by |
| 15 | * the Free Software Foundation; either version 2 of the License, or |
| 16 | * (at your option) any later version. |
| 17 | * |
| 18 | * This program is distributed in the hope that it will be useful, |
| 19 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 20 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 21 | * GNU General Public License for more details. |
| 22 | * |
| 23 | * You should have received a copy of the GNU General Public License |
| 24 | * along with this program; if not, write to the Free Software |
| 25 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 26 | * |
| 27 | * |
| 28 | * NOTES: |
| 29 | * |
| 30 | * - async unlink should be used for avoiding the sleep inside lock. |
| 31 | * 2.4.22 usb-uhci seems buggy for async unlinking and results in |
| 32 | * oops. in such a cse, pass async_unlink=0 option. |
| 33 | * - the linked URBs would be preferred but not used so far because of |
| 34 | * the instability of unlinking. |
| 35 | * - type II is not supported properly. there is no device which supports |
| 36 | * this type *correctly*. SB extigy looks as if it supports, but it's |
| 37 | * indeed an AC3 stream packed in SPDIF frames (i.e. no real AC3 stream). |
| 38 | */ |
| 39 | |
| 40 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | #include <linux/bitops.h> |
| 42 | #include <linux/init.h> |
| 43 | #include <linux/list.h> |
| 44 | #include <linux/slab.h> |
| 45 | #include <linux/string.h> |
| 46 | #include <linux/usb.h> |
Clemens Ladisch | 6207e51 | 2005-08-15 08:35:25 +0200 | [diff] [blame] | 47 | #include <linux/vmalloc.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | #include <linux/moduleparam.h> |
Ingo Molnar | 12aa757 | 2006-01-16 16:36:05 +0100 | [diff] [blame] | 49 | #include <linux/mutex.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | #include <sound/core.h> |
| 51 | #include <sound/info.h> |
| 52 | #include <sound/pcm.h> |
| 53 | #include <sound/pcm_params.h> |
| 54 | #include <sound/initval.h> |
| 55 | |
| 56 | #include "usbaudio.h" |
| 57 | |
| 58 | |
| 59 | MODULE_AUTHOR("Takashi Iwai <tiwai@suse.de>"); |
| 60 | MODULE_DESCRIPTION("USB Audio"); |
| 61 | MODULE_LICENSE("GPL"); |
| 62 | MODULE_SUPPORTED_DEVICE("{{Generic,USB Audio}}"); |
| 63 | |
| 64 | |
| 65 | static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */ |
| 66 | static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ |
Pavel Machek | 07f51a7 | 2008-04-14 13:15:56 +0200 | [diff] [blame] | 67 | static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP;/* Enable this card */ |
| 68 | /* Vendor/product IDs for this card */ |
| 69 | static int vid[SNDRV_CARDS] = { [0 ... (SNDRV_CARDS-1)] = -1 }; |
| 70 | static int pid[SNDRV_CARDS] = { [0 ... (SNDRV_CARDS-1)] = -1 }; |
Clemens Ladisch | 92b9ac7 | 2006-09-22 10:57:36 +0200 | [diff] [blame] | 71 | static int nrpacks = 8; /* max. number of packets per urb */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | static int async_unlink = 1; |
Thibault LE MEUR | e311334 | 2006-03-14 11:44:53 +0100 | [diff] [blame] | 73 | static int device_setup[SNDRV_CARDS]; /* device parameter for this card*/ |
Takashi Iwai | 7a9b806 | 2008-08-13 15:40:53 +0200 | [diff] [blame] | 74 | static int ignore_ctl_error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | |
| 76 | module_param_array(index, int, NULL, 0444); |
| 77 | MODULE_PARM_DESC(index, "Index value for the USB audio adapter."); |
| 78 | module_param_array(id, charp, NULL, 0444); |
| 79 | MODULE_PARM_DESC(id, "ID string for the USB audio adapter."); |
| 80 | module_param_array(enable, bool, NULL, 0444); |
| 81 | MODULE_PARM_DESC(enable, "Enable USB audio adapter."); |
| 82 | module_param_array(vid, int, NULL, 0444); |
| 83 | MODULE_PARM_DESC(vid, "Vendor ID for the USB audio device."); |
| 84 | module_param_array(pid, int, NULL, 0444); |
| 85 | MODULE_PARM_DESC(pid, "Product ID for the USB audio device."); |
Clemens Ladisch | 71d848c | 2005-08-12 15:18:00 +0200 | [diff] [blame] | 86 | module_param(nrpacks, int, 0644); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | MODULE_PARM_DESC(nrpacks, "Max. number of packets per URB."); |
| 88 | module_param(async_unlink, bool, 0444); |
| 89 | MODULE_PARM_DESC(async_unlink, "Use async unlink mode."); |
Thibault LE MEUR | e311334 | 2006-03-14 11:44:53 +0100 | [diff] [blame] | 90 | module_param_array(device_setup, int, NULL, 0444); |
| 91 | MODULE_PARM_DESC(device_setup, "Specific device setup (if needed)."); |
Takashi Iwai | 7a9b806 | 2008-08-13 15:40:53 +0200 | [diff] [blame] | 92 | module_param(ignore_ctl_error, bool, 0444); |
| 93 | MODULE_PARM_DESC(ignore_ctl_error, |
| 94 | "Ignore errors from USB controller for mixer interfaces."); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | |
| 96 | /* |
| 97 | * debug the h/w constraints |
| 98 | */ |
| 99 | /* #define HW_CONST_DEBUG */ |
| 100 | |
| 101 | |
| 102 | /* |
| 103 | * |
| 104 | */ |
| 105 | |
Clemens Ladisch | 92b9ac7 | 2006-09-22 10:57:36 +0200 | [diff] [blame] | 106 | #define MAX_PACKS 20 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | #define MAX_PACKS_HS (MAX_PACKS * 8) /* in high speed mode */ |
Clemens Ladisch | 15a24c07 | 2005-08-12 08:25:26 +0200 | [diff] [blame] | 108 | #define MAX_URBS 8 |
Clemens Ladisch | 604cf49 | 2005-05-17 09:15:27 +0200 | [diff] [blame] | 109 | #define SYNC_URBS 4 /* always four urbs for sync */ |
Clemens Ladisch | 4d788e0 | 2009-01-26 08:09:28 +0100 | [diff] [blame] | 110 | #define MAX_QUEUE 24 /* try not to exceed this queue length, in ms */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | struct audioformat { |
| 113 | struct list_head list; |
| 114 | snd_pcm_format_t format; /* format type */ |
| 115 | unsigned int channels; /* # channels */ |
| 116 | unsigned int fmt_type; /* USB audio format type (1-3) */ |
| 117 | unsigned int frame_size; /* samples per frame for non-audio */ |
| 118 | int iface; /* interface number */ |
| 119 | unsigned char altsetting; /* corresponding alternate setting */ |
| 120 | unsigned char altset_idx; /* array index of altenate setting */ |
| 121 | unsigned char attributes; /* corresponding attributes of cs endpoint */ |
| 122 | unsigned char endpoint; /* endpoint */ |
| 123 | unsigned char ep_attr; /* endpoint attributes */ |
Clemens Ladisch | 744b89e | 2009-04-03 09:45:01 +0200 | [diff] [blame^] | 124 | unsigned char datainterval; /* log_2 of data packet interval */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | unsigned int maxpacksize; /* max. packet size */ |
| 126 | unsigned int rates; /* rate bitmasks */ |
| 127 | unsigned int rate_min, rate_max; /* min/max rates */ |
| 128 | unsigned int nr_rates; /* number of rate table entries */ |
| 129 | unsigned int *rate_table; /* rate table */ |
| 130 | }; |
| 131 | |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 132 | struct snd_usb_substream; |
| 133 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | struct snd_urb_ctx { |
| 135 | struct urb *urb; |
Clemens Ladisch | 55851f7 | 2005-08-15 08:34:16 +0200 | [diff] [blame] | 136 | unsigned int buffer_size; /* size of data buffer, if data URB */ |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 137 | struct snd_usb_substream *subs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | int index; /* index for urb array */ |
| 139 | int packets; /* number of packets per urb */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | }; |
| 141 | |
| 142 | struct snd_urb_ops { |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 143 | int (*prepare)(struct snd_usb_substream *subs, struct snd_pcm_runtime *runtime, struct urb *u); |
| 144 | int (*retire)(struct snd_usb_substream *subs, struct snd_pcm_runtime *runtime, struct urb *u); |
| 145 | int (*prepare_sync)(struct snd_usb_substream *subs, struct snd_pcm_runtime *runtime, struct urb *u); |
| 146 | int (*retire_sync)(struct snd_usb_substream *subs, struct snd_pcm_runtime *runtime, struct urb *u); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | }; |
| 148 | |
| 149 | struct snd_usb_substream { |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 150 | struct snd_usb_stream *stream; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | struct usb_device *dev; |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 152 | struct snd_pcm_substream *pcm_substream; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | int direction; /* playback or capture */ |
| 154 | int interface; /* current interface */ |
| 155 | int endpoint; /* assigned endpoint */ |
| 156 | struct audioformat *cur_audiofmt; /* current audioformat pointer (for hw_params callback) */ |
| 157 | unsigned int cur_rate; /* current rate (for hw_params callback) */ |
| 158 | unsigned int period_bytes; /* current period bytes (for hw_params callback) */ |
| 159 | unsigned int format; /* USB data format */ |
| 160 | unsigned int datapipe; /* the data i/o pipe */ |
| 161 | unsigned int syncpipe; /* 1 - async out or adaptive in */ |
Clemens Ladisch | 573567e | 2005-06-27 08:17:30 +0200 | [diff] [blame] | 162 | unsigned int datainterval; /* log_2 of data packet interval */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | unsigned int syncinterval; /* P for adaptive mode, 0 otherwise */ |
| 164 | unsigned int freqn; /* nominal sampling rate in fs/fps in Q16.16 format */ |
| 165 | unsigned int freqm; /* momentary sampling rate in fs/fps in Q16.16 format */ |
| 166 | unsigned int freqmax; /* maximum sampling rate, used for buffer management */ |
| 167 | unsigned int phase; /* phase accumulator */ |
| 168 | unsigned int maxpacksize; /* max packet size in bytes */ |
| 169 | unsigned int maxframesize; /* max packet size in frames */ |
| 170 | unsigned int curpacksize; /* current packet size in bytes (for capture) */ |
| 171 | unsigned int curframesize; /* current packet size in frames (for capture) */ |
| 172 | unsigned int fill_max: 1; /* fill max packet size always */ |
| 173 | unsigned int fmt_type; /* USB audio format type (1-3) */ |
Clemens Ladisch | 9624ea8 | 2005-08-15 08:25:24 +0200 | [diff] [blame] | 174 | unsigned int packs_per_ms; /* packets per millisecond (for playback) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | |
| 176 | unsigned int running: 1; /* running status */ |
| 177 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | unsigned int hwptr_done; /* processed frame position in the buffer */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | unsigned int transfer_done; /* processed frames since last period update */ |
| 180 | unsigned long active_mask; /* bitmask of active urbs */ |
| 181 | unsigned long unlink_mask; /* bitmask of unlinked urbs */ |
| 182 | |
| 183 | unsigned int nurbs; /* # urbs */ |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 184 | struct snd_urb_ctx dataurb[MAX_URBS]; /* data urb table */ |
| 185 | struct snd_urb_ctx syncurb[SYNC_URBS]; /* sync urb table */ |
Clemens Ladisch | 55851f7 | 2005-08-15 08:34:16 +0200 | [diff] [blame] | 186 | char *syncbuf; /* sync buffer for all sync URBs */ |
| 187 | dma_addr_t sync_dma; /* DMA address of syncbuf */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | |
| 189 | u64 formats; /* format bitmasks (all or'ed) */ |
| 190 | unsigned int num_formats; /* number of supported audio formats (list) */ |
| 191 | struct list_head fmt_list; /* format list */ |
Takashi Iwai | 8fec560 | 2007-02-01 11:50:56 +0100 | [diff] [blame] | 192 | struct snd_pcm_hw_constraint_list rate_list; /* limited rates */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | spinlock_t lock; |
| 194 | |
| 195 | struct snd_urb_ops ops; /* callbacks (must be filled at init) */ |
| 196 | }; |
| 197 | |
| 198 | |
| 199 | struct snd_usb_stream { |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 200 | struct snd_usb_audio *chip; |
| 201 | struct snd_pcm *pcm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | int pcm_index; |
| 203 | unsigned int fmt_type; /* USB audio format type (1-3) */ |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 204 | struct snd_usb_substream substream[2]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | struct list_head list; |
| 206 | }; |
| 207 | |
| 208 | |
| 209 | /* |
| 210 | * we keep the snd_usb_audio_t instances by ourselves for merging |
| 211 | * the all interfaces on the same card as one sound device. |
| 212 | */ |
| 213 | |
Ingo Molnar | 12aa757 | 2006-01-16 16:36:05 +0100 | [diff] [blame] | 214 | static DEFINE_MUTEX(register_mutex); |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 215 | static struct snd_usb_audio *usb_chip[SNDRV_CARDS]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | |
| 217 | |
| 218 | /* |
| 219 | * convert a sampling rate into our full speed format (fs/1000 in Q16.16) |
| 220 | * this will overflow at approx 524 kHz |
| 221 | */ |
Jesper Juhl | 77933d7 | 2005-07-27 11:46:09 -0700 | [diff] [blame] | 222 | static inline unsigned get_usb_full_speed_rate(unsigned int rate) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | { |
| 224 | return ((rate << 13) + 62) / 125; |
| 225 | } |
| 226 | |
| 227 | /* |
| 228 | * convert a sampling rate into USB high speed format (fs/8000 in Q16.16) |
| 229 | * this will overflow at approx 4 MHz |
| 230 | */ |
Jesper Juhl | 77933d7 | 2005-07-27 11:46:09 -0700 | [diff] [blame] | 231 | static inline unsigned get_usb_high_speed_rate(unsigned int rate) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | { |
| 233 | return ((rate << 10) + 62) / 125; |
| 234 | } |
| 235 | |
| 236 | /* convert our full speed USB rate into sampling rate in Hz */ |
Jesper Juhl | 77933d7 | 2005-07-27 11:46:09 -0700 | [diff] [blame] | 237 | static inline unsigned get_full_speed_hz(unsigned int usb_rate) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | { |
| 239 | return (usb_rate * 125 + (1 << 12)) >> 13; |
| 240 | } |
| 241 | |
| 242 | /* convert our high speed USB rate into sampling rate in Hz */ |
Jesper Juhl | 77933d7 | 2005-07-27 11:46:09 -0700 | [diff] [blame] | 243 | static inline unsigned get_high_speed_hz(unsigned int usb_rate) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | { |
| 245 | return (usb_rate * 125 + (1 << 9)) >> 10; |
| 246 | } |
| 247 | |
| 248 | |
| 249 | /* |
| 250 | * prepare urb for full speed capture sync pipe |
| 251 | * |
| 252 | * fill the length and offset of each urb descriptor. |
| 253 | * the fixed 10.14 frequency is passed through the pipe. |
| 254 | */ |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 255 | static int prepare_capture_sync_urb(struct snd_usb_substream *subs, |
| 256 | struct snd_pcm_runtime *runtime, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | struct urb *urb) |
| 258 | { |
| 259 | unsigned char *cp = urb->transfer_buffer; |
John Daiker | 8851827 | 2006-12-28 13:55:05 +0100 | [diff] [blame] | 260 | struct snd_urb_ctx *ctx = urb->context; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | urb->dev = ctx->subs->dev; /* we need to set this at each time */ |
Clemens Ladisch | ca81090 | 2005-05-02 08:55:54 +0200 | [diff] [blame] | 263 | urb->iso_frame_desc[0].length = 3; |
| 264 | urb->iso_frame_desc[0].offset = 0; |
| 265 | cp[0] = subs->freqn >> 2; |
| 266 | cp[1] = subs->freqn >> 10; |
| 267 | cp[2] = subs->freqn >> 18; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | return 0; |
| 269 | } |
| 270 | |
| 271 | /* |
| 272 | * prepare urb for high speed capture sync pipe |
| 273 | * |
| 274 | * fill the length and offset of each urb descriptor. |
| 275 | * the fixed 12.13 frequency is passed as 16.16 through the pipe. |
| 276 | */ |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 277 | static int prepare_capture_sync_urb_hs(struct snd_usb_substream *subs, |
| 278 | struct snd_pcm_runtime *runtime, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | struct urb *urb) |
| 280 | { |
| 281 | unsigned char *cp = urb->transfer_buffer; |
John Daiker | 8851827 | 2006-12-28 13:55:05 +0100 | [diff] [blame] | 282 | struct snd_urb_ctx *ctx = urb->context; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | urb->dev = ctx->subs->dev; /* we need to set this at each time */ |
Clemens Ladisch | ca81090 | 2005-05-02 08:55:54 +0200 | [diff] [blame] | 285 | urb->iso_frame_desc[0].length = 4; |
| 286 | urb->iso_frame_desc[0].offset = 0; |
| 287 | cp[0] = subs->freqn; |
| 288 | cp[1] = subs->freqn >> 8; |
| 289 | cp[2] = subs->freqn >> 16; |
| 290 | cp[3] = subs->freqn >> 24; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | return 0; |
| 292 | } |
| 293 | |
| 294 | /* |
| 295 | * process after capture sync complete |
| 296 | * - nothing to do |
| 297 | */ |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 298 | static int retire_capture_sync_urb(struct snd_usb_substream *subs, |
| 299 | struct snd_pcm_runtime *runtime, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | struct urb *urb) |
| 301 | { |
| 302 | return 0; |
| 303 | } |
| 304 | |
| 305 | /* |
| 306 | * prepare urb for capture data pipe |
| 307 | * |
| 308 | * fill the offset and length of each descriptor. |
| 309 | * |
| 310 | * we use a temporary buffer to write the captured data. |
| 311 | * since the length of written data is determined by host, we cannot |
| 312 | * write onto the pcm buffer directly... the data is thus copied |
| 313 | * later at complete callback to the global buffer. |
| 314 | */ |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 315 | static int prepare_capture_urb(struct snd_usb_substream *subs, |
| 316 | struct snd_pcm_runtime *runtime, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | struct urb *urb) |
| 318 | { |
| 319 | int i, offs; |
John Daiker | 8851827 | 2006-12-28 13:55:05 +0100 | [diff] [blame] | 320 | struct snd_urb_ctx *ctx = urb->context; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | |
| 322 | offs = 0; |
| 323 | urb->dev = ctx->subs->dev; /* we need to set this at each time */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | for (i = 0; i < ctx->packets; i++) { |
| 325 | urb->iso_frame_desc[i].offset = offs; |
| 326 | urb->iso_frame_desc[i].length = subs->curpacksize; |
| 327 | offs += subs->curpacksize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | urb->transfer_buffer_length = offs; |
Clemens Ladisch | b263a9b | 2005-08-15 08:22:39 +0200 | [diff] [blame] | 330 | urb->number_of_packets = ctx->packets; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | return 0; |
| 332 | } |
| 333 | |
| 334 | /* |
| 335 | * process after capture complete |
| 336 | * |
| 337 | * copy the data from each desctiptor to the pcm buffer, and |
| 338 | * update the current position. |
| 339 | */ |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 340 | static int retire_capture_urb(struct snd_usb_substream *subs, |
| 341 | struct snd_pcm_runtime *runtime, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | struct urb *urb) |
| 343 | { |
| 344 | unsigned long flags; |
| 345 | unsigned char *cp; |
| 346 | int i; |
| 347 | unsigned int stride, len, oldptr; |
Clemens Ladisch | b263a9b | 2005-08-15 08:22:39 +0200 | [diff] [blame] | 348 | int period_elapsed = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | |
| 350 | stride = runtime->frame_bits >> 3; |
| 351 | |
| 352 | for (i = 0; i < urb->number_of_packets; i++) { |
| 353 | cp = (unsigned char *)urb->transfer_buffer + urb->iso_frame_desc[i].offset; |
| 354 | if (urb->iso_frame_desc[i].status) { |
| 355 | snd_printd(KERN_ERR "frame %d active: %d\n", i, urb->iso_frame_desc[i].status); |
| 356 | // continue; |
| 357 | } |
| 358 | len = urb->iso_frame_desc[i].actual_length / stride; |
| 359 | if (! len) |
| 360 | continue; |
| 361 | /* update the current pointer */ |
| 362 | spin_lock_irqsave(&subs->lock, flags); |
| 363 | oldptr = subs->hwptr_done; |
| 364 | subs->hwptr_done += len; |
| 365 | if (subs->hwptr_done >= runtime->buffer_size) |
| 366 | subs->hwptr_done -= runtime->buffer_size; |
| 367 | subs->transfer_done += len; |
Clemens Ladisch | b263a9b | 2005-08-15 08:22:39 +0200 | [diff] [blame] | 368 | if (subs->transfer_done >= runtime->period_size) { |
| 369 | subs->transfer_done -= runtime->period_size; |
| 370 | period_elapsed = 1; |
| 371 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | spin_unlock_irqrestore(&subs->lock, flags); |
| 373 | /* copy a data chunk */ |
| 374 | if (oldptr + len > runtime->buffer_size) { |
| 375 | unsigned int cnt = runtime->buffer_size - oldptr; |
| 376 | unsigned int blen = cnt * stride; |
| 377 | memcpy(runtime->dma_area + oldptr * stride, cp, blen); |
| 378 | memcpy(runtime->dma_area, cp + blen, len * stride - blen); |
| 379 | } else { |
| 380 | memcpy(runtime->dma_area + oldptr * stride, cp, len * stride); |
| 381 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | } |
Clemens Ladisch | b263a9b | 2005-08-15 08:22:39 +0200 | [diff] [blame] | 383 | if (period_elapsed) |
| 384 | snd_pcm_period_elapsed(subs->pcm_substream); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | return 0; |
| 386 | } |
| 387 | |
Clemens Ladisch | e4f8e65 | 2006-10-04 13:42:57 +0200 | [diff] [blame] | 388 | /* |
| 389 | * Process after capture complete when paused. Nothing to do. |
| 390 | */ |
| 391 | static int retire_paused_capture_urb(struct snd_usb_substream *subs, |
| 392 | struct snd_pcm_runtime *runtime, |
| 393 | struct urb *urb) |
| 394 | { |
| 395 | return 0; |
| 396 | } |
| 397 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | |
| 399 | /* |
| 400 | * prepare urb for full speed playback sync pipe |
| 401 | * |
| 402 | * set up the offset and length to receive the current frequency. |
| 403 | */ |
| 404 | |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 405 | static int prepare_playback_sync_urb(struct snd_usb_substream *subs, |
| 406 | struct snd_pcm_runtime *runtime, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | struct urb *urb) |
| 408 | { |
John Daiker | 8851827 | 2006-12-28 13:55:05 +0100 | [diff] [blame] | 409 | struct snd_urb_ctx *ctx = urb->context; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | urb->dev = ctx->subs->dev; /* we need to set this at each time */ |
Clemens Ladisch | ca81090 | 2005-05-02 08:55:54 +0200 | [diff] [blame] | 412 | urb->iso_frame_desc[0].length = 3; |
| 413 | urb->iso_frame_desc[0].offset = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | return 0; |
| 415 | } |
| 416 | |
| 417 | /* |
| 418 | * prepare urb for high speed playback sync pipe |
| 419 | * |
| 420 | * set up the offset and length to receive the current frequency. |
| 421 | */ |
| 422 | |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 423 | static int prepare_playback_sync_urb_hs(struct snd_usb_substream *subs, |
| 424 | struct snd_pcm_runtime *runtime, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | struct urb *urb) |
| 426 | { |
John Daiker | 8851827 | 2006-12-28 13:55:05 +0100 | [diff] [blame] | 427 | struct snd_urb_ctx *ctx = urb->context; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 429 | urb->dev = ctx->subs->dev; /* we need to set this at each time */ |
Clemens Ladisch | ca81090 | 2005-05-02 08:55:54 +0200 | [diff] [blame] | 430 | urb->iso_frame_desc[0].length = 4; |
| 431 | urb->iso_frame_desc[0].offset = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | return 0; |
| 433 | } |
| 434 | |
| 435 | /* |
| 436 | * process after full speed playback sync complete |
| 437 | * |
| 438 | * retrieve the current 10.14 frequency from pipe, and set it. |
| 439 | * the value is referred in prepare_playback_urb(). |
| 440 | */ |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 441 | static int retire_playback_sync_urb(struct snd_usb_substream *subs, |
| 442 | struct snd_pcm_runtime *runtime, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | struct urb *urb) |
| 444 | { |
Clemens Ladisch | ca81090 | 2005-05-02 08:55:54 +0200 | [diff] [blame] | 445 | unsigned int f; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | unsigned long flags; |
| 447 | |
Clemens Ladisch | ca81090 | 2005-05-02 08:55:54 +0200 | [diff] [blame] | 448 | if (urb->iso_frame_desc[0].status == 0 && |
| 449 | urb->iso_frame_desc[0].actual_length == 3) { |
| 450 | f = combine_triple((u8*)urb->transfer_buffer) << 2; |
Clemens Ladisch | 50cdbf1 | 2005-05-13 07:44:13 +0200 | [diff] [blame] | 451 | if (f >= subs->freqn - subs->freqn / 8 && f <= subs->freqmax) { |
| 452 | spin_lock_irqsave(&subs->lock, flags); |
| 453 | subs->freqm = f; |
| 454 | spin_unlock_irqrestore(&subs->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | } |
| 457 | |
| 458 | return 0; |
| 459 | } |
| 460 | |
| 461 | /* |
| 462 | * process after high speed playback sync complete |
| 463 | * |
| 464 | * retrieve the current 12.13 frequency from pipe, and set it. |
| 465 | * the value is referred in prepare_playback_urb(). |
| 466 | */ |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 467 | static int retire_playback_sync_urb_hs(struct snd_usb_substream *subs, |
| 468 | struct snd_pcm_runtime *runtime, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | struct urb *urb) |
| 470 | { |
Clemens Ladisch | ca81090 | 2005-05-02 08:55:54 +0200 | [diff] [blame] | 471 | unsigned int f; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | unsigned long flags; |
| 473 | |
Clemens Ladisch | ca81090 | 2005-05-02 08:55:54 +0200 | [diff] [blame] | 474 | if (urb->iso_frame_desc[0].status == 0 && |
| 475 | urb->iso_frame_desc[0].actual_length == 4) { |
| 476 | f = combine_quad((u8*)urb->transfer_buffer) & 0x0fffffff; |
Clemens Ladisch | 50cdbf1 | 2005-05-13 07:44:13 +0200 | [diff] [blame] | 477 | if (f >= subs->freqn - subs->freqn / 8 && f <= subs->freqmax) { |
| 478 | spin_lock_irqsave(&subs->lock, flags); |
| 479 | subs->freqm = f; |
| 480 | spin_unlock_irqrestore(&subs->lock, flags); |
| 481 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | } |
| 483 | |
| 484 | return 0; |
| 485 | } |
| 486 | |
Clemens Ladisch | d513202 | 2008-02-25 11:01:00 +0100 | [diff] [blame] | 487 | /* |
Eran Tromer | 97c889a | 2008-09-26 01:07:03 -0400 | [diff] [blame] | 488 | * process after E-Mu 0202/0404/Tracker Pre high speed playback sync complete |
Clemens Ladisch | d513202 | 2008-02-25 11:01:00 +0100 | [diff] [blame] | 489 | * |
| 490 | * These devices return the number of samples per packet instead of the number |
| 491 | * of samples per microframe. |
| 492 | */ |
| 493 | static int retire_playback_sync_urb_hs_emu(struct snd_usb_substream *subs, |
| 494 | struct snd_pcm_runtime *runtime, |
| 495 | struct urb *urb) |
| 496 | { |
| 497 | unsigned int f; |
| 498 | unsigned long flags; |
| 499 | |
| 500 | if (urb->iso_frame_desc[0].status == 0 && |
| 501 | urb->iso_frame_desc[0].actual_length == 4) { |
| 502 | f = combine_quad((u8*)urb->transfer_buffer) & 0x0fffffff; |
| 503 | f >>= subs->datainterval; |
| 504 | if (f >= subs->freqn - subs->freqn / 8 && f <= subs->freqmax) { |
| 505 | spin_lock_irqsave(&subs->lock, flags); |
| 506 | subs->freqm = f; |
| 507 | spin_unlock_irqrestore(&subs->lock, flags); |
| 508 | } |
| 509 | } |
| 510 | |
| 511 | return 0; |
| 512 | } |
| 513 | |
Clemens Ladisch | 9568f46 | 2006-01-12 08:19:21 +0100 | [diff] [blame] | 514 | /* determine the number of frames in the next packet */ |
| 515 | static int snd_usb_audio_next_packet_size(struct snd_usb_substream *subs) |
| 516 | { |
| 517 | if (subs->fill_max) |
| 518 | return subs->maxframesize; |
| 519 | else { |
| 520 | subs->phase = (subs->phase & 0xffff) |
| 521 | + (subs->freqm << subs->datainterval); |
| 522 | return min(subs->phase >> 16, subs->maxframesize); |
| 523 | } |
| 524 | } |
| 525 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | /* |
Clemens Ladisch | e4f8e65 | 2006-10-04 13:42:57 +0200 | [diff] [blame] | 527 | * Prepare urb for streaming before playback starts or when paused. |
Clemens Ladisch | b55bbf0 | 2005-11-02 11:32:52 +0100 | [diff] [blame] | 528 | * |
Clemens Ladisch | b7eb4a0 | 2009-01-26 08:08:34 +0100 | [diff] [blame] | 529 | * We don't have any data, so we send silence. |
Clemens Ladisch | b55bbf0 | 2005-11-02 11:32:52 +0100 | [diff] [blame] | 530 | */ |
Clemens Ladisch | e4f8e65 | 2006-10-04 13:42:57 +0200 | [diff] [blame] | 531 | static int prepare_nodata_playback_urb(struct snd_usb_substream *subs, |
| 532 | struct snd_pcm_runtime *runtime, |
| 533 | struct urb *urb) |
Clemens Ladisch | b55bbf0 | 2005-11-02 11:32:52 +0100 | [diff] [blame] | 534 | { |
Clemens Ladisch | 4b28492 | 2006-01-12 08:17:49 +0100 | [diff] [blame] | 535 | unsigned int i, offs, counts; |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 536 | struct snd_urb_ctx *ctx = urb->context; |
Clemens Ladisch | 4b28492 | 2006-01-12 08:17:49 +0100 | [diff] [blame] | 537 | int stride = runtime->frame_bits >> 3; |
Clemens Ladisch | b55bbf0 | 2005-11-02 11:32:52 +0100 | [diff] [blame] | 538 | |
Clemens Ladisch | 4b28492 | 2006-01-12 08:17:49 +0100 | [diff] [blame] | 539 | offs = 0; |
Clemens Ladisch | b55bbf0 | 2005-11-02 11:32:52 +0100 | [diff] [blame] | 540 | urb->dev = ctx->subs->dev; |
Clemens Ladisch | b7eb4a0 | 2009-01-26 08:08:34 +0100 | [diff] [blame] | 541 | for (i = 0; i < ctx->packets; ++i) { |
Clemens Ladisch | 9568f46 | 2006-01-12 08:19:21 +0100 | [diff] [blame] | 542 | counts = snd_usb_audio_next_packet_size(subs); |
Clemens Ladisch | 4b28492 | 2006-01-12 08:17:49 +0100 | [diff] [blame] | 543 | urb->iso_frame_desc[i].offset = offs * stride; |
| 544 | urb->iso_frame_desc[i].length = counts * stride; |
| 545 | offs += counts; |
Clemens Ladisch | b55bbf0 | 2005-11-02 11:32:52 +0100 | [diff] [blame] | 546 | } |
Clemens Ladisch | b7eb4a0 | 2009-01-26 08:08:34 +0100 | [diff] [blame] | 547 | urb->number_of_packets = ctx->packets; |
Clemens Ladisch | 4b28492 | 2006-01-12 08:17:49 +0100 | [diff] [blame] | 548 | urb->transfer_buffer_length = offs * stride; |
| 549 | memset(urb->transfer_buffer, |
| 550 | subs->cur_audiofmt->format == SNDRV_PCM_FORMAT_U8 ? 0x80 : 0, |
| 551 | offs * stride); |
Clemens Ladisch | b55bbf0 | 2005-11-02 11:32:52 +0100 | [diff] [blame] | 552 | return 0; |
| 553 | } |
| 554 | |
| 555 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | * prepare urb for playback data pipe |
| 557 | * |
Clemens Ladisch | 7efd8bc8 | 2005-08-15 08:24:44 +0200 | [diff] [blame] | 558 | * Since a URB can handle only a single linear buffer, we must use double |
| 559 | * buffering when the data to be transferred overflows the buffer boundary. |
| 560 | * To avoid inconsistencies when updating hwptr_done, we use double buffering |
| 561 | * for all URBs. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | */ |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 563 | static int prepare_playback_urb(struct snd_usb_substream *subs, |
| 564 | struct snd_pcm_runtime *runtime, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | struct urb *urb) |
| 566 | { |
| 567 | int i, stride, offs; |
| 568 | unsigned int counts; |
| 569 | unsigned long flags; |
Clemens Ladisch | 7efd8bc8 | 2005-08-15 08:24:44 +0200 | [diff] [blame] | 570 | int period_elapsed = 0; |
John Daiker | 8851827 | 2006-12-28 13:55:05 +0100 | [diff] [blame] | 571 | struct snd_urb_ctx *ctx = urb->context; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 572 | |
| 573 | stride = runtime->frame_bits >> 3; |
| 574 | |
| 575 | offs = 0; |
| 576 | urb->dev = ctx->subs->dev; /* we need to set this at each time */ |
| 577 | urb->number_of_packets = 0; |
| 578 | spin_lock_irqsave(&subs->lock, flags); |
| 579 | for (i = 0; i < ctx->packets; i++) { |
Clemens Ladisch | 9568f46 | 2006-01-12 08:19:21 +0100 | [diff] [blame] | 580 | counts = snd_usb_audio_next_packet_size(subs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 581 | /* set up descriptor */ |
| 582 | urb->iso_frame_desc[i].offset = offs * stride; |
| 583 | urb->iso_frame_desc[i].length = counts * stride; |
| 584 | offs += counts; |
| 585 | urb->number_of_packets++; |
Clemens Ladisch | 7efd8bc8 | 2005-08-15 08:24:44 +0200 | [diff] [blame] | 586 | subs->transfer_done += counts; |
| 587 | if (subs->transfer_done >= runtime->period_size) { |
| 588 | subs->transfer_done -= runtime->period_size; |
| 589 | period_elapsed = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 | if (subs->fmt_type == USB_FORMAT_TYPE_II) { |
Clemens Ladisch | 7efd8bc8 | 2005-08-15 08:24:44 +0200 | [diff] [blame] | 591 | if (subs->transfer_done > 0) { |
| 592 | /* FIXME: fill-max mode is not |
| 593 | * supported yet */ |
| 594 | offs -= subs->transfer_done; |
| 595 | counts -= subs->transfer_done; |
| 596 | urb->iso_frame_desc[i].length = |
| 597 | counts * stride; |
| 598 | subs->transfer_done = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | } |
| 600 | i++; |
| 601 | if (i < ctx->packets) { |
| 602 | /* add a transfer delimiter */ |
Clemens Ladisch | 7efd8bc8 | 2005-08-15 08:24:44 +0200 | [diff] [blame] | 603 | urb->iso_frame_desc[i].offset = |
| 604 | offs * stride; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | urb->iso_frame_desc[i].length = 0; |
| 606 | urb->number_of_packets++; |
| 607 | } |
Clemens Ladisch | 9624ea8 | 2005-08-15 08:25:24 +0200 | [diff] [blame] | 608 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 | } |
Clemens Ladisch | 9624ea8 | 2005-08-15 08:25:24 +0200 | [diff] [blame] | 611 | /* finish at the frame boundary at/after the period boundary */ |
| 612 | if (period_elapsed && |
| 613 | (i & (subs->packs_per_ms - 1)) == subs->packs_per_ms - 1) |
| 614 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 615 | } |
Clemens Ladisch | 7efd8bc8 | 2005-08-15 08:24:44 +0200 | [diff] [blame] | 616 | if (subs->hwptr_done + offs > runtime->buffer_size) { |
| 617 | /* err, the transferred area goes over buffer boundary. */ |
| 618 | unsigned int len = runtime->buffer_size - subs->hwptr_done; |
| 619 | memcpy(urb->transfer_buffer, |
| 620 | runtime->dma_area + subs->hwptr_done * stride, |
| 621 | len * stride); |
| 622 | memcpy(urb->transfer_buffer + len * stride, |
| 623 | runtime->dma_area, |
| 624 | (offs - len) * stride); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 625 | } else { |
Clemens Ladisch | 7efd8bc8 | 2005-08-15 08:24:44 +0200 | [diff] [blame] | 626 | memcpy(urb->transfer_buffer, |
| 627 | runtime->dma_area + subs->hwptr_done * stride, |
| 628 | offs * stride); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | } |
Clemens Ladisch | 7efd8bc8 | 2005-08-15 08:24:44 +0200 | [diff] [blame] | 630 | subs->hwptr_done += offs; |
| 631 | if (subs->hwptr_done >= runtime->buffer_size) |
| 632 | subs->hwptr_done -= runtime->buffer_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 633 | spin_unlock_irqrestore(&subs->lock, flags); |
| 634 | urb->transfer_buffer_length = offs * stride; |
Clemens Ladisch | b55bbf0 | 2005-11-02 11:32:52 +0100 | [diff] [blame] | 635 | if (period_elapsed) |
| 636 | snd_pcm_period_elapsed(subs->pcm_substream); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 637 | return 0; |
| 638 | } |
| 639 | |
| 640 | /* |
| 641 | * process after playback data complete |
Clemens Ladisch | 7efd8bc8 | 2005-08-15 08:24:44 +0200 | [diff] [blame] | 642 | * - nothing to do |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 643 | */ |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 644 | static int retire_playback_urb(struct snd_usb_substream *subs, |
| 645 | struct snd_pcm_runtime *runtime, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 646 | struct urb *urb) |
| 647 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | return 0; |
| 649 | } |
| 650 | |
| 651 | |
| 652 | /* |
| 653 | */ |
| 654 | static struct snd_urb_ops audio_urb_ops[2] = { |
| 655 | { |
Clemens Ladisch | e4f8e65 | 2006-10-04 13:42:57 +0200 | [diff] [blame] | 656 | .prepare = prepare_nodata_playback_urb, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 | .retire = retire_playback_urb, |
| 658 | .prepare_sync = prepare_playback_sync_urb, |
| 659 | .retire_sync = retire_playback_sync_urb, |
| 660 | }, |
| 661 | { |
| 662 | .prepare = prepare_capture_urb, |
| 663 | .retire = retire_capture_urb, |
| 664 | .prepare_sync = prepare_capture_sync_urb, |
| 665 | .retire_sync = retire_capture_sync_urb, |
| 666 | }, |
| 667 | }; |
| 668 | |
| 669 | static struct snd_urb_ops audio_urb_ops_high_speed[2] = { |
| 670 | { |
Clemens Ladisch | e4f8e65 | 2006-10-04 13:42:57 +0200 | [diff] [blame] | 671 | .prepare = prepare_nodata_playback_urb, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 672 | .retire = retire_playback_urb, |
| 673 | .prepare_sync = prepare_playback_sync_urb_hs, |
| 674 | .retire_sync = retire_playback_sync_urb_hs, |
| 675 | }, |
| 676 | { |
| 677 | .prepare = prepare_capture_urb, |
| 678 | .retire = retire_capture_urb, |
| 679 | .prepare_sync = prepare_capture_sync_urb_hs, |
| 680 | .retire_sync = retire_capture_sync_urb, |
| 681 | }, |
| 682 | }; |
| 683 | |
| 684 | /* |
| 685 | * complete callback from data urb |
| 686 | */ |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 687 | static void snd_complete_urb(struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 688 | { |
John Daiker | 8851827 | 2006-12-28 13:55:05 +0100 | [diff] [blame] | 689 | struct snd_urb_ctx *ctx = urb->context; |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 690 | struct snd_usb_substream *subs = ctx->subs; |
| 691 | struct snd_pcm_substream *substream = ctx->subs->pcm_substream; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 692 | int err = 0; |
| 693 | |
| 694 | if ((subs->running && subs->ops.retire(subs, substream->runtime, urb)) || |
Pavel Machek | 07f51a7 | 2008-04-14 13:15:56 +0200 | [diff] [blame] | 695 | !subs->running || /* can be stopped during retire callback */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 696 | (err = subs->ops.prepare(subs, substream->runtime, urb)) < 0 || |
| 697 | (err = usb_submit_urb(urb, GFP_ATOMIC)) < 0) { |
| 698 | clear_bit(ctx->index, &subs->active_mask); |
| 699 | if (err < 0) { |
| 700 | snd_printd(KERN_ERR "cannot submit urb (err = %d)\n", err); |
| 701 | snd_pcm_stop(substream, SNDRV_PCM_STATE_XRUN); |
| 702 | } |
| 703 | } |
| 704 | } |
| 705 | |
| 706 | |
| 707 | /* |
| 708 | * complete callback from sync urb |
| 709 | */ |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 710 | static void snd_complete_sync_urb(struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 711 | { |
John Daiker | 8851827 | 2006-12-28 13:55:05 +0100 | [diff] [blame] | 712 | struct snd_urb_ctx *ctx = urb->context; |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 713 | struct snd_usb_substream *subs = ctx->subs; |
| 714 | struct snd_pcm_substream *substream = ctx->subs->pcm_substream; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 715 | int err = 0; |
| 716 | |
| 717 | if ((subs->running && subs->ops.retire_sync(subs, substream->runtime, urb)) || |
Pavel Machek | 07f51a7 | 2008-04-14 13:15:56 +0200 | [diff] [blame] | 718 | !subs->running || /* can be stopped during retire callback */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 719 | (err = subs->ops.prepare_sync(subs, substream->runtime, urb)) < 0 || |
| 720 | (err = usb_submit_urb(urb, GFP_ATOMIC)) < 0) { |
| 721 | clear_bit(ctx->index + 16, &subs->active_mask); |
| 722 | if (err < 0) { |
| 723 | snd_printd(KERN_ERR "cannot submit sync urb (err = %d)\n", err); |
| 724 | snd_pcm_stop(substream, SNDRV_PCM_STATE_XRUN); |
| 725 | } |
| 726 | } |
| 727 | } |
| 728 | |
| 729 | |
Clemens Ladisch | 6207e51 | 2005-08-15 08:35:25 +0200 | [diff] [blame] | 730 | /* get the physical page pointer at the given offset */ |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 731 | static struct page *snd_pcm_get_vmalloc_page(struct snd_pcm_substream *subs, |
Clemens Ladisch | 6207e51 | 2005-08-15 08:35:25 +0200 | [diff] [blame] | 732 | unsigned long offset) |
| 733 | { |
| 734 | void *pageptr = subs->runtime->dma_area + offset; |
| 735 | return vmalloc_to_page(pageptr); |
| 736 | } |
| 737 | |
| 738 | /* allocate virtual buffer; may be called more than once */ |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 739 | static int snd_pcm_alloc_vmalloc_buffer(struct snd_pcm_substream *subs, size_t size) |
Clemens Ladisch | 6207e51 | 2005-08-15 08:35:25 +0200 | [diff] [blame] | 740 | { |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 741 | struct snd_pcm_runtime *runtime = subs->runtime; |
Clemens Ladisch | 6207e51 | 2005-08-15 08:35:25 +0200 | [diff] [blame] | 742 | if (runtime->dma_area) { |
| 743 | if (runtime->dma_bytes >= size) |
| 744 | return 0; /* already large enough */ |
Takashi Iwai | b1d5776 | 2005-10-10 11:56:31 +0200 | [diff] [blame] | 745 | vfree(runtime->dma_area); |
Clemens Ladisch | 6207e51 | 2005-08-15 08:35:25 +0200 | [diff] [blame] | 746 | } |
Takashi Iwai | b1d5776 | 2005-10-10 11:56:31 +0200 | [diff] [blame] | 747 | runtime->dma_area = vmalloc(size); |
Pavel Machek | 07f51a7 | 2008-04-14 13:15:56 +0200 | [diff] [blame] | 748 | if (!runtime->dma_area) |
Clemens Ladisch | 6207e51 | 2005-08-15 08:35:25 +0200 | [diff] [blame] | 749 | return -ENOMEM; |
| 750 | runtime->dma_bytes = size; |
| 751 | return 0; |
| 752 | } |
| 753 | |
| 754 | /* free virtual buffer; may be called more than once */ |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 755 | static int snd_pcm_free_vmalloc_buffer(struct snd_pcm_substream *subs) |
Clemens Ladisch | 6207e51 | 2005-08-15 08:35:25 +0200 | [diff] [blame] | 756 | { |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 757 | struct snd_pcm_runtime *runtime = subs->runtime; |
Jesper Juhl | 9c4be3d | 2006-02-09 20:04:16 +0100 | [diff] [blame] | 758 | |
| 759 | vfree(runtime->dma_area); |
| 760 | runtime->dma_area = NULL; |
Clemens Ladisch | 6207e51 | 2005-08-15 08:35:25 +0200 | [diff] [blame] | 761 | return 0; |
| 762 | } |
| 763 | |
| 764 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 765 | /* |
| 766 | * unlink active urbs. |
| 767 | */ |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 768 | static int deactivate_urbs(struct snd_usb_substream *subs, int force, int can_sleep) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | { |
| 770 | unsigned int i; |
| 771 | int async; |
| 772 | |
| 773 | subs->running = 0; |
| 774 | |
| 775 | if (!force && subs->stream->chip->shutdown) /* to be sure... */ |
| 776 | return -EBADFD; |
| 777 | |
| 778 | async = !can_sleep && async_unlink; |
| 779 | |
Pavel Machek | 07f51a7 | 2008-04-14 13:15:56 +0200 | [diff] [blame] | 780 | if (!async && in_interrupt()) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 781 | return 0; |
| 782 | |
| 783 | for (i = 0; i < subs->nurbs; i++) { |
| 784 | if (test_bit(i, &subs->active_mask)) { |
Pavel Machek | 07f51a7 | 2008-04-14 13:15:56 +0200 | [diff] [blame] | 785 | if (!test_and_set_bit(i, &subs->unlink_mask)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 786 | struct urb *u = subs->dataurb[i].urb; |
Alan Stern | b375a04 | 2005-07-29 16:11:07 -0400 | [diff] [blame] | 787 | if (async) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 788 | usb_unlink_urb(u); |
Alan Stern | b375a04 | 2005-07-29 16:11:07 -0400 | [diff] [blame] | 789 | else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 790 | usb_kill_urb(u); |
| 791 | } |
| 792 | } |
| 793 | } |
| 794 | if (subs->syncpipe) { |
| 795 | for (i = 0; i < SYNC_URBS; i++) { |
| 796 | if (test_bit(i+16, &subs->active_mask)) { |
Pavel Machek | 07f51a7 | 2008-04-14 13:15:56 +0200 | [diff] [blame] | 797 | if (!test_and_set_bit(i+16, &subs->unlink_mask)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 798 | struct urb *u = subs->syncurb[i].urb; |
Alan Stern | b375a04 | 2005-07-29 16:11:07 -0400 | [diff] [blame] | 799 | if (async) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 800 | usb_unlink_urb(u); |
Alan Stern | b375a04 | 2005-07-29 16:11:07 -0400 | [diff] [blame] | 801 | else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 802 | usb_kill_urb(u); |
| 803 | } |
| 804 | } |
| 805 | } |
| 806 | } |
| 807 | return 0; |
| 808 | } |
| 809 | |
| 810 | |
Clemens Ladisch | 32e19e8 | 2006-03-09 07:58:39 +0100 | [diff] [blame] | 811 | static const char *usb_error_string(int err) |
| 812 | { |
| 813 | switch (err) { |
| 814 | case -ENODEV: |
| 815 | return "no device"; |
| 816 | case -ENOENT: |
| 817 | return "endpoint not enabled"; |
| 818 | case -EPIPE: |
| 819 | return "endpoint stalled"; |
| 820 | case -ENOSPC: |
| 821 | return "not enough bandwidth"; |
| 822 | case -ESHUTDOWN: |
| 823 | return "device disabled"; |
| 824 | case -EHOSTUNREACH: |
| 825 | return "device suspended"; |
| 826 | case -EINVAL: |
| 827 | case -EAGAIN: |
| 828 | case -EFBIG: |
| 829 | case -EMSGSIZE: |
| 830 | return "internal error"; |
| 831 | default: |
| 832 | return "unknown error"; |
| 833 | } |
| 834 | } |
| 835 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 836 | /* |
| 837 | * set up and start data/sync urbs |
| 838 | */ |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 839 | static int start_urbs(struct snd_usb_substream *subs, struct snd_pcm_runtime *runtime) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 840 | { |
| 841 | unsigned int i; |
| 842 | int err; |
| 843 | |
| 844 | if (subs->stream->chip->shutdown) |
| 845 | return -EBADFD; |
| 846 | |
| 847 | for (i = 0; i < subs->nurbs; i++) { |
Takashi Iwai | 5e246b8 | 2008-08-08 17:12:47 +0200 | [diff] [blame] | 848 | if (snd_BUG_ON(!subs->dataurb[i].urb)) |
| 849 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 850 | if (subs->ops.prepare(subs, runtime, subs->dataurb[i].urb) < 0) { |
| 851 | snd_printk(KERN_ERR "cannot prepare datapipe for urb %d\n", i); |
| 852 | goto __error; |
| 853 | } |
| 854 | } |
| 855 | if (subs->syncpipe) { |
| 856 | for (i = 0; i < SYNC_URBS; i++) { |
Takashi Iwai | 5e246b8 | 2008-08-08 17:12:47 +0200 | [diff] [blame] | 857 | if (snd_BUG_ON(!subs->syncurb[i].urb)) |
| 858 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 859 | if (subs->ops.prepare_sync(subs, runtime, subs->syncurb[i].urb) < 0) { |
| 860 | snd_printk(KERN_ERR "cannot prepare syncpipe for urb %d\n", i); |
| 861 | goto __error; |
| 862 | } |
| 863 | } |
| 864 | } |
| 865 | |
| 866 | subs->active_mask = 0; |
| 867 | subs->unlink_mask = 0; |
| 868 | subs->running = 1; |
| 869 | for (i = 0; i < subs->nurbs; i++) { |
Clemens Ladisch | 32e19e8 | 2006-03-09 07:58:39 +0100 | [diff] [blame] | 870 | err = usb_submit_urb(subs->dataurb[i].urb, GFP_ATOMIC); |
| 871 | if (err < 0) { |
| 872 | snd_printk(KERN_ERR "cannot submit datapipe " |
| 873 | "for urb %d, error %d: %s\n", |
| 874 | i, err, usb_error_string(err)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 875 | goto __error; |
| 876 | } |
| 877 | set_bit(i, &subs->active_mask); |
| 878 | } |
| 879 | if (subs->syncpipe) { |
| 880 | for (i = 0; i < SYNC_URBS; i++) { |
Clemens Ladisch | 32e19e8 | 2006-03-09 07:58:39 +0100 | [diff] [blame] | 881 | err = usb_submit_urb(subs->syncurb[i].urb, GFP_ATOMIC); |
| 882 | if (err < 0) { |
| 883 | snd_printk(KERN_ERR "cannot submit syncpipe " |
| 884 | "for urb %d, error %d: %s\n", |
| 885 | i, err, usb_error_string(err)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 886 | goto __error; |
| 887 | } |
| 888 | set_bit(i + 16, &subs->active_mask); |
| 889 | } |
| 890 | } |
| 891 | return 0; |
| 892 | |
| 893 | __error: |
| 894 | // snd_pcm_stop(subs->pcm_substream, SNDRV_PCM_STATE_XRUN); |
| 895 | deactivate_urbs(subs, 0, 0); |
| 896 | return -EPIPE; |
| 897 | } |
| 898 | |
| 899 | |
| 900 | /* |
| 901 | * wait until all urbs are processed. |
| 902 | */ |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 903 | static int wait_clear_urbs(struct snd_usb_substream *subs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 904 | { |
Nishanth Aravamudan | b27c187 | 2005-07-09 10:54:37 +0200 | [diff] [blame] | 905 | unsigned long end_time = jiffies + msecs_to_jiffies(1000); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 906 | unsigned int i; |
| 907 | int alive; |
| 908 | |
| 909 | do { |
| 910 | alive = 0; |
| 911 | for (i = 0; i < subs->nurbs; i++) { |
| 912 | if (test_bit(i, &subs->active_mask)) |
| 913 | alive++; |
| 914 | } |
| 915 | if (subs->syncpipe) { |
| 916 | for (i = 0; i < SYNC_URBS; i++) { |
| 917 | if (test_bit(i + 16, &subs->active_mask)) |
| 918 | alive++; |
| 919 | } |
| 920 | } |
| 921 | if (! alive) |
| 922 | break; |
Nishanth Aravamudan | 8433a50 | 2005-10-24 15:02:37 +0200 | [diff] [blame] | 923 | schedule_timeout_uninterruptible(1); |
Nishanth Aravamudan | b27c187 | 2005-07-09 10:54:37 +0200 | [diff] [blame] | 924 | } while (time_before(jiffies, end_time)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 925 | if (alive) |
| 926 | snd_printk(KERN_ERR "timeout: still %d active urbs..\n", alive); |
| 927 | return 0; |
| 928 | } |
| 929 | |
| 930 | |
| 931 | /* |
| 932 | * return the current pcm pointer. just return the hwptr_done value. |
| 933 | */ |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 934 | static snd_pcm_uframes_t snd_usb_pcm_pointer(struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 935 | { |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 936 | struct snd_usb_substream *subs; |
Clemens Ladisch | daa150e | 2005-08-15 08:25:50 +0200 | [diff] [blame] | 937 | snd_pcm_uframes_t hwptr_done; |
| 938 | |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 939 | subs = (struct snd_usb_substream *)substream->runtime->private_data; |
Clemens Ladisch | daa150e | 2005-08-15 08:25:50 +0200 | [diff] [blame] | 940 | spin_lock(&subs->lock); |
| 941 | hwptr_done = subs->hwptr_done; |
| 942 | spin_unlock(&subs->lock); |
| 943 | return hwptr_done; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 944 | } |
| 945 | |
| 946 | |
| 947 | /* |
Clemens Ladisch | b55bbf0 | 2005-11-02 11:32:52 +0100 | [diff] [blame] | 948 | * start/stop playback substream |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 949 | */ |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 950 | static int snd_usb_pcm_playback_trigger(struct snd_pcm_substream *substream, |
Clemens Ladisch | b55bbf0 | 2005-11-02 11:32:52 +0100 | [diff] [blame] | 951 | int cmd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 952 | { |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 953 | struct snd_usb_substream *subs = substream->runtime->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 954 | |
| 955 | switch (cmd) { |
| 956 | case SNDRV_PCM_TRIGGER_START: |
Clemens Ladisch | e4f8e65 | 2006-10-04 13:42:57 +0200 | [diff] [blame] | 957 | case SNDRV_PCM_TRIGGER_PAUSE_RELEASE: |
Clemens Ladisch | b55bbf0 | 2005-11-02 11:32:52 +0100 | [diff] [blame] | 958 | subs->ops.prepare = prepare_playback_urb; |
| 959 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 960 | case SNDRV_PCM_TRIGGER_STOP: |
Clemens Ladisch | b55bbf0 | 2005-11-02 11:32:52 +0100 | [diff] [blame] | 961 | return deactivate_urbs(subs, 0, 0); |
Clemens Ladisch | e4f8e65 | 2006-10-04 13:42:57 +0200 | [diff] [blame] | 962 | case SNDRV_PCM_TRIGGER_PAUSE_PUSH: |
| 963 | subs->ops.prepare = prepare_nodata_playback_urb; |
| 964 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 965 | default: |
Clemens Ladisch | b55bbf0 | 2005-11-02 11:32:52 +0100 | [diff] [blame] | 966 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 967 | } |
Clemens Ladisch | b55bbf0 | 2005-11-02 11:32:52 +0100 | [diff] [blame] | 968 | } |
| 969 | |
| 970 | /* |
| 971 | * start/stop capture substream |
| 972 | */ |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 973 | static int snd_usb_pcm_capture_trigger(struct snd_pcm_substream *substream, |
Clemens Ladisch | b55bbf0 | 2005-11-02 11:32:52 +0100 | [diff] [blame] | 974 | int cmd) |
| 975 | { |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 976 | struct snd_usb_substream *subs = substream->runtime->private_data; |
Clemens Ladisch | b55bbf0 | 2005-11-02 11:32:52 +0100 | [diff] [blame] | 977 | |
| 978 | switch (cmd) { |
| 979 | case SNDRV_PCM_TRIGGER_START: |
Clemens Ladisch | e4f8e65 | 2006-10-04 13:42:57 +0200 | [diff] [blame] | 980 | subs->ops.retire = retire_capture_urb; |
Clemens Ladisch | b55bbf0 | 2005-11-02 11:32:52 +0100 | [diff] [blame] | 981 | return start_urbs(subs, substream->runtime); |
| 982 | case SNDRV_PCM_TRIGGER_STOP: |
| 983 | return deactivate_urbs(subs, 0, 0); |
Clemens Ladisch | e4f8e65 | 2006-10-04 13:42:57 +0200 | [diff] [blame] | 984 | case SNDRV_PCM_TRIGGER_PAUSE_PUSH: |
| 985 | subs->ops.retire = retire_paused_capture_urb; |
| 986 | return 0; |
| 987 | case SNDRV_PCM_TRIGGER_PAUSE_RELEASE: |
| 988 | subs->ops.retire = retire_capture_urb; |
| 989 | return 0; |
Clemens Ladisch | b55bbf0 | 2005-11-02 11:32:52 +0100 | [diff] [blame] | 990 | default: |
| 991 | return -EINVAL; |
| 992 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 993 | } |
| 994 | |
| 995 | |
| 996 | /* |
| 997 | * release a urb data |
| 998 | */ |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 999 | static void release_urb_ctx(struct snd_urb_ctx *u) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1000 | { |
| 1001 | if (u->urb) { |
Clemens Ladisch | 55851f7 | 2005-08-15 08:34:16 +0200 | [diff] [blame] | 1002 | if (u->buffer_size) |
| 1003 | usb_buffer_free(u->subs->dev, u->buffer_size, |
| 1004 | u->urb->transfer_buffer, |
| 1005 | u->urb->transfer_dma); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1006 | usb_free_urb(u->urb); |
| 1007 | u->urb = NULL; |
| 1008 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1009 | } |
| 1010 | |
| 1011 | /* |
| 1012 | * release a substream |
| 1013 | */ |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 1014 | static void release_substream_urbs(struct snd_usb_substream *subs, int force) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1015 | { |
| 1016 | int i; |
| 1017 | |
| 1018 | /* stop urbs (to be sure) */ |
| 1019 | deactivate_urbs(subs, force, 1); |
| 1020 | wait_clear_urbs(subs); |
| 1021 | |
| 1022 | for (i = 0; i < MAX_URBS; i++) |
| 1023 | release_urb_ctx(&subs->dataurb[i]); |
| 1024 | for (i = 0; i < SYNC_URBS; i++) |
| 1025 | release_urb_ctx(&subs->syncurb[i]); |
Clemens Ladisch | 55851f7 | 2005-08-15 08:34:16 +0200 | [diff] [blame] | 1026 | usb_buffer_free(subs->dev, SYNC_URBS * 4, |
| 1027 | subs->syncbuf, subs->sync_dma); |
| 1028 | subs->syncbuf = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1029 | subs->nurbs = 0; |
| 1030 | } |
| 1031 | |
| 1032 | /* |
| 1033 | * initialize a substream for plaback/capture |
| 1034 | */ |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 1035 | static int init_substream_urbs(struct snd_usb_substream *subs, unsigned int period_bytes, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1036 | unsigned int rate, unsigned int frame_bits) |
| 1037 | { |
Clemens Ladisch | 160389c | 2009-01-26 08:10:19 +0100 | [diff] [blame] | 1038 | unsigned int maxsize, i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1039 | int is_playback = subs->direction == SNDRV_PCM_STREAM_PLAYBACK; |
Clemens Ladisch | 160389c | 2009-01-26 08:10:19 +0100 | [diff] [blame] | 1040 | unsigned int urb_packs, total_packs, packs_per_ms; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1041 | |
| 1042 | /* calculate the frequency in 16.16 format */ |
| 1043 | if (snd_usb_get_speed(subs->dev) == USB_SPEED_FULL) |
| 1044 | subs->freqn = get_usb_full_speed_rate(rate); |
| 1045 | else |
| 1046 | subs->freqn = get_usb_high_speed_rate(rate); |
| 1047 | subs->freqm = subs->freqn; |
Clemens Ladisch | 573567e | 2005-06-27 08:17:30 +0200 | [diff] [blame] | 1048 | /* calculate max. frequency */ |
| 1049 | if (subs->maxpacksize) { |
| 1050 | /* whatever fits into a max. size packet */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1051 | maxsize = subs->maxpacksize; |
Clemens Ladisch | 573567e | 2005-06-27 08:17:30 +0200 | [diff] [blame] | 1052 | subs->freqmax = (maxsize / (frame_bits >> 3)) |
| 1053 | << (16 - subs->datainterval); |
| 1054 | } else { |
| 1055 | /* no max. packet size: just take 25% higher than nominal */ |
| 1056 | subs->freqmax = subs->freqn + (subs->freqn >> 2); |
| 1057 | maxsize = ((subs->freqmax + 0xffff) * (frame_bits >> 3)) |
| 1058 | >> (16 - subs->datainterval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1059 | } |
Clemens Ladisch | 573567e | 2005-06-27 08:17:30 +0200 | [diff] [blame] | 1060 | subs->phase = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1061 | |
| 1062 | if (subs->fill_max) |
| 1063 | subs->curpacksize = subs->maxpacksize; |
| 1064 | else |
| 1065 | subs->curpacksize = maxsize; |
| 1066 | |
Clemens Ladisch | a93bf99 | 2005-08-12 15:19:39 +0200 | [diff] [blame] | 1067 | if (snd_usb_get_speed(subs->dev) == USB_SPEED_HIGH) |
| 1068 | packs_per_ms = 8 >> subs->datainterval; |
| 1069 | else |
| 1070 | packs_per_ms = 1; |
Clemens Ladisch | 9624ea8 | 2005-08-15 08:25:24 +0200 | [diff] [blame] | 1071 | subs->packs_per_ms = packs_per_ms; |
Clemens Ladisch | a93bf99 | 2005-08-12 15:19:39 +0200 | [diff] [blame] | 1072 | |
Clemens Ladisch | 71d848c | 2005-08-12 15:18:00 +0200 | [diff] [blame] | 1073 | if (is_playback) { |
Clemens Ladisch | f3990e6 | 2009-02-20 09:32:40 +0100 | [diff] [blame] | 1074 | urb_packs = max(nrpacks, 1); |
Clemens Ladisch | 71d848c | 2005-08-12 15:18:00 +0200 | [diff] [blame] | 1075 | urb_packs = min(urb_packs, (unsigned int)MAX_PACKS); |
| 1076 | } else |
Clemens Ladisch | 15a24c07 | 2005-08-12 08:25:26 +0200 | [diff] [blame] | 1077 | urb_packs = 1; |
Clemens Ladisch | a93bf99 | 2005-08-12 15:19:39 +0200 | [diff] [blame] | 1078 | urb_packs *= packs_per_ms; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1079 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1080 | /* decide how many packets to be used */ |
Clemens Ladisch | 15a24c07 | 2005-08-12 08:25:26 +0200 | [diff] [blame] | 1081 | if (is_playback) { |
Clemens Ladisch | 4d788e0 | 2009-01-26 08:09:28 +0100 | [diff] [blame] | 1082 | unsigned int minsize, maxpacks; |
Clemens Ladisch | d6db392 | 2005-08-12 08:28:27 +0200 | [diff] [blame] | 1083 | /* determine how small a packet can be */ |
| 1084 | minsize = (subs->freqn >> (16 - subs->datainterval)) |
| 1085 | * (frame_bits >> 3); |
Clemens Ladisch | 7efd8bc8 | 2005-08-15 08:24:44 +0200 | [diff] [blame] | 1086 | /* with sync from device, assume it can be 12% lower */ |
Clemens Ladisch | d6db392 | 2005-08-12 08:28:27 +0200 | [diff] [blame] | 1087 | if (subs->syncpipe) |
Clemens Ladisch | 7efd8bc8 | 2005-08-15 08:24:44 +0200 | [diff] [blame] | 1088 | minsize -= minsize >> 3; |
Clemens Ladisch | d6db392 | 2005-08-12 08:28:27 +0200 | [diff] [blame] | 1089 | minsize = max(minsize, 1u); |
| 1090 | total_packs = (period_bytes + minsize - 1) / minsize; |
Clemens Ladisch | a93bf99 | 2005-08-12 15:19:39 +0200 | [diff] [blame] | 1091 | /* round up to multiple of packs_per_ms */ |
| 1092 | total_packs = (total_packs + packs_per_ms - 1) |
| 1093 | & ~(packs_per_ms - 1); |
| 1094 | /* we need at least two URBs for queueing */ |
Clemens Ladisch | f3990e6 | 2009-02-20 09:32:40 +0100 | [diff] [blame] | 1095 | if (total_packs < 2 * packs_per_ms) { |
| 1096 | total_packs = 2 * packs_per_ms; |
| 1097 | } else { |
Clemens Ladisch | 4d788e0 | 2009-01-26 08:09:28 +0100 | [diff] [blame] | 1098 | /* and we don't want too long a queue either */ |
Clemens Ladisch | b1c86bb | 2009-03-02 12:06:28 +0100 | [diff] [blame] | 1099 | maxpacks = max(MAX_QUEUE * packs_per_ms, urb_packs * 2); |
| 1100 | total_packs = min(total_packs, maxpacks); |
Clemens Ladisch | 4d788e0 | 2009-01-26 08:09:28 +0100 | [diff] [blame] | 1101 | } |
Clemens Ladisch | 15a24c07 | 2005-08-12 08:25:26 +0200 | [diff] [blame] | 1102 | } else { |
| 1103 | total_packs = MAX_URBS * urb_packs; |
| 1104 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1105 | subs->nurbs = (total_packs + urb_packs - 1) / urb_packs; |
| 1106 | if (subs->nurbs > MAX_URBS) { |
| 1107 | /* too much... */ |
| 1108 | subs->nurbs = MAX_URBS; |
| 1109 | total_packs = MAX_URBS * urb_packs; |
Clemens Ladisch | 160389c | 2009-01-26 08:10:19 +0100 | [diff] [blame] | 1110 | } else if (subs->nurbs < 2) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1111 | /* too little - we need at least two packets |
| 1112 | * to ensure contiguous playback/capture |
| 1113 | */ |
| 1114 | subs->nurbs = 2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1115 | } |
| 1116 | |
| 1117 | /* allocate and initialize data urbs */ |
| 1118 | for (i = 0; i < subs->nurbs; i++) { |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 1119 | struct snd_urb_ctx *u = &subs->dataurb[i]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1120 | u->index = i; |
| 1121 | u->subs = subs; |
Clemens Ladisch | 160389c | 2009-01-26 08:10:19 +0100 | [diff] [blame] | 1122 | u->packets = (i + 1) * total_packs / subs->nurbs |
| 1123 | - i * total_packs / subs->nurbs; |
Clemens Ladisch | 55851f7 | 2005-08-15 08:34:16 +0200 | [diff] [blame] | 1124 | u->buffer_size = maxsize * u->packets; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1125 | if (subs->fmt_type == USB_FORMAT_TYPE_II) |
| 1126 | u->packets++; /* for transfer delimiter */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1127 | u->urb = usb_alloc_urb(u->packets, GFP_KERNEL); |
Pavel Machek | 07f51a7 | 2008-04-14 13:15:56 +0200 | [diff] [blame] | 1128 | if (!u->urb) |
Clemens Ladisch | 55851f7 | 2005-08-15 08:34:16 +0200 | [diff] [blame] | 1129 | goto out_of_memory; |
| 1130 | u->urb->transfer_buffer = |
| 1131 | usb_buffer_alloc(subs->dev, u->buffer_size, GFP_KERNEL, |
| 1132 | &u->urb->transfer_dma); |
Pavel Machek | 07f51a7 | 2008-04-14 13:15:56 +0200 | [diff] [blame] | 1133 | if (!u->urb->transfer_buffer) |
Clemens Ladisch | 55851f7 | 2005-08-15 08:34:16 +0200 | [diff] [blame] | 1134 | goto out_of_memory; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1135 | u->urb->pipe = subs->datapipe; |
Clemens Ladisch | 55851f7 | 2005-08-15 08:34:16 +0200 | [diff] [blame] | 1136 | u->urb->transfer_flags = URB_ISO_ASAP | URB_NO_TRANSFER_DMA_MAP; |
Clemens Ladisch | 573567e | 2005-06-27 08:17:30 +0200 | [diff] [blame] | 1137 | u->urb->interval = 1 << subs->datainterval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1138 | u->urb->context = u; |
Clemens Ladisch | 3527a00 | 2005-09-26 10:03:09 +0200 | [diff] [blame] | 1139 | u->urb->complete = snd_complete_urb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1140 | } |
| 1141 | |
| 1142 | if (subs->syncpipe) { |
| 1143 | /* allocate and initialize sync urbs */ |
Clemens Ladisch | 55851f7 | 2005-08-15 08:34:16 +0200 | [diff] [blame] | 1144 | subs->syncbuf = usb_buffer_alloc(subs->dev, SYNC_URBS * 4, |
| 1145 | GFP_KERNEL, &subs->sync_dma); |
Pavel Machek | 07f51a7 | 2008-04-14 13:15:56 +0200 | [diff] [blame] | 1146 | if (!subs->syncbuf) |
Clemens Ladisch | 55851f7 | 2005-08-15 08:34:16 +0200 | [diff] [blame] | 1147 | goto out_of_memory; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1148 | for (i = 0; i < SYNC_URBS; i++) { |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 1149 | struct snd_urb_ctx *u = &subs->syncurb[i]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1150 | u->index = i; |
| 1151 | u->subs = subs; |
Clemens Ladisch | ca81090 | 2005-05-02 08:55:54 +0200 | [diff] [blame] | 1152 | u->packets = 1; |
| 1153 | u->urb = usb_alloc_urb(1, GFP_KERNEL); |
Pavel Machek | 07f51a7 | 2008-04-14 13:15:56 +0200 | [diff] [blame] | 1154 | if (!u->urb) |
Clemens Ladisch | 55851f7 | 2005-08-15 08:34:16 +0200 | [diff] [blame] | 1155 | goto out_of_memory; |
Clemens Ladisch | ca81090 | 2005-05-02 08:55:54 +0200 | [diff] [blame] | 1156 | u->urb->transfer_buffer = subs->syncbuf + i * 4; |
Clemens Ladisch | 55851f7 | 2005-08-15 08:34:16 +0200 | [diff] [blame] | 1157 | u->urb->transfer_dma = subs->sync_dma + i * 4; |
Clemens Ladisch | ca81090 | 2005-05-02 08:55:54 +0200 | [diff] [blame] | 1158 | u->urb->transfer_buffer_length = 4; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1159 | u->urb->pipe = subs->syncpipe; |
Clemens Ladisch | 55851f7 | 2005-08-15 08:34:16 +0200 | [diff] [blame] | 1160 | u->urb->transfer_flags = URB_ISO_ASAP | |
| 1161 | URB_NO_TRANSFER_DMA_MAP; |
Clemens Ladisch | ca81090 | 2005-05-02 08:55:54 +0200 | [diff] [blame] | 1162 | u->urb->number_of_packets = 1; |
Clemens Ladisch | 1149a64 | 2005-05-02 08:53:46 +0200 | [diff] [blame] | 1163 | u->urb->interval = 1 << subs->syncinterval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1164 | u->urb->context = u; |
Clemens Ladisch | 3527a00 | 2005-09-26 10:03:09 +0200 | [diff] [blame] | 1165 | u->urb->complete = snd_complete_sync_urb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1166 | } |
| 1167 | } |
| 1168 | return 0; |
Clemens Ladisch | 55851f7 | 2005-08-15 08:34:16 +0200 | [diff] [blame] | 1169 | |
| 1170 | out_of_memory: |
| 1171 | release_substream_urbs(subs, 0); |
| 1172 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1173 | } |
| 1174 | |
| 1175 | |
| 1176 | /* |
| 1177 | * find a matching audio format |
| 1178 | */ |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 1179 | static struct audioformat *find_format(struct snd_usb_substream *subs, unsigned int format, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1180 | unsigned int rate, unsigned int channels) |
| 1181 | { |
| 1182 | struct list_head *p; |
| 1183 | struct audioformat *found = NULL; |
| 1184 | int cur_attr = 0, attr; |
| 1185 | |
| 1186 | list_for_each(p, &subs->fmt_list) { |
| 1187 | struct audioformat *fp; |
| 1188 | fp = list_entry(p, struct audioformat, list); |
| 1189 | if (fp->format != format || fp->channels != channels) |
| 1190 | continue; |
| 1191 | if (rate < fp->rate_min || rate > fp->rate_max) |
| 1192 | continue; |
| 1193 | if (! (fp->rates & SNDRV_PCM_RATE_CONTINUOUS)) { |
| 1194 | unsigned int i; |
| 1195 | for (i = 0; i < fp->nr_rates; i++) |
| 1196 | if (fp->rate_table[i] == rate) |
| 1197 | break; |
| 1198 | if (i >= fp->nr_rates) |
| 1199 | continue; |
| 1200 | } |
| 1201 | attr = fp->ep_attr & EP_ATTR_MASK; |
| 1202 | if (! found) { |
| 1203 | found = fp; |
| 1204 | cur_attr = attr; |
| 1205 | continue; |
| 1206 | } |
| 1207 | /* avoid async out and adaptive in if the other method |
| 1208 | * supports the same format. |
| 1209 | * this is a workaround for the case like |
| 1210 | * M-audio audiophile USB. |
| 1211 | */ |
| 1212 | if (attr != cur_attr) { |
| 1213 | if ((attr == EP_ATTR_ASYNC && |
| 1214 | subs->direction == SNDRV_PCM_STREAM_PLAYBACK) || |
| 1215 | (attr == EP_ATTR_ADAPTIVE && |
| 1216 | subs->direction == SNDRV_PCM_STREAM_CAPTURE)) |
| 1217 | continue; |
| 1218 | if ((cur_attr == EP_ATTR_ASYNC && |
| 1219 | subs->direction == SNDRV_PCM_STREAM_PLAYBACK) || |
| 1220 | (cur_attr == EP_ATTR_ADAPTIVE && |
| 1221 | subs->direction == SNDRV_PCM_STREAM_CAPTURE)) { |
| 1222 | found = fp; |
| 1223 | cur_attr = attr; |
| 1224 | continue; |
| 1225 | } |
| 1226 | } |
| 1227 | /* find the format with the largest max. packet size */ |
| 1228 | if (fp->maxpacksize > found->maxpacksize) { |
| 1229 | found = fp; |
| 1230 | cur_attr = attr; |
| 1231 | } |
| 1232 | } |
| 1233 | return found; |
| 1234 | } |
| 1235 | |
| 1236 | |
| 1237 | /* |
| 1238 | * initialize the picth control and sample rate |
| 1239 | */ |
| 1240 | static int init_usb_pitch(struct usb_device *dev, int iface, |
| 1241 | struct usb_host_interface *alts, |
| 1242 | struct audioformat *fmt) |
| 1243 | { |
| 1244 | unsigned int ep; |
| 1245 | unsigned char data[1]; |
| 1246 | int err; |
| 1247 | |
| 1248 | ep = get_endpoint(alts, 0)->bEndpointAddress; |
| 1249 | /* if endpoint has pitch control, enable it */ |
| 1250 | if (fmt->attributes & EP_CS_ATTR_PITCH_CONTROL) { |
| 1251 | data[0] = 1; |
| 1252 | if ((err = snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), SET_CUR, |
| 1253 | USB_TYPE_CLASS|USB_RECIP_ENDPOINT|USB_DIR_OUT, |
| 1254 | PITCH_CONTROL << 8, ep, data, 1, 1000)) < 0) { |
| 1255 | snd_printk(KERN_ERR "%d:%d:%d: cannot set enable PITCH\n", |
| 1256 | dev->devnum, iface, ep); |
| 1257 | return err; |
| 1258 | } |
| 1259 | } |
| 1260 | return 0; |
| 1261 | } |
| 1262 | |
| 1263 | static int init_usb_sample_rate(struct usb_device *dev, int iface, |
| 1264 | struct usb_host_interface *alts, |
| 1265 | struct audioformat *fmt, int rate) |
| 1266 | { |
| 1267 | unsigned int ep; |
| 1268 | unsigned char data[3]; |
| 1269 | int err; |
| 1270 | |
| 1271 | ep = get_endpoint(alts, 0)->bEndpointAddress; |
| 1272 | /* if endpoint has sampling rate control, set it */ |
| 1273 | if (fmt->attributes & EP_CS_ATTR_SAMPLE_RATE) { |
| 1274 | int crate; |
| 1275 | data[0] = rate; |
| 1276 | data[1] = rate >> 8; |
| 1277 | data[2] = rate >> 16; |
| 1278 | if ((err = snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), SET_CUR, |
| 1279 | USB_TYPE_CLASS|USB_RECIP_ENDPOINT|USB_DIR_OUT, |
| 1280 | SAMPLING_FREQ_CONTROL << 8, ep, data, 3, 1000)) < 0) { |
Andreas Bergmeier | b9d710b | 2009-01-24 12:15:14 +0100 | [diff] [blame] | 1281 | snd_printk(KERN_ERR "%d:%d:%d: cannot set freq %d to ep %#x\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1282 | dev->devnum, iface, fmt->altsetting, rate, ep); |
| 1283 | return err; |
| 1284 | } |
| 1285 | if ((err = snd_usb_ctl_msg(dev, usb_rcvctrlpipe(dev, 0), GET_CUR, |
| 1286 | USB_TYPE_CLASS|USB_RECIP_ENDPOINT|USB_DIR_IN, |
| 1287 | SAMPLING_FREQ_CONTROL << 8, ep, data, 3, 1000)) < 0) { |
Andreas Bergmeier | b9d710b | 2009-01-24 12:15:14 +0100 | [diff] [blame] | 1288 | snd_printk(KERN_WARNING "%d:%d:%d: cannot get freq at ep %#x\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1289 | dev->devnum, iface, fmt->altsetting, ep); |
| 1290 | return 0; /* some devices don't support reading */ |
| 1291 | } |
| 1292 | crate = data[0] | (data[1] << 8) | (data[2] << 16); |
| 1293 | if (crate != rate) { |
| 1294 | snd_printd(KERN_WARNING "current rate %d is different from the runtime rate %d\n", crate, rate); |
| 1295 | // runtime->rate = crate; |
| 1296 | } |
| 1297 | } |
| 1298 | return 0; |
| 1299 | } |
| 1300 | |
| 1301 | /* |
| 1302 | * find a matching format and set up the interface |
| 1303 | */ |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 1304 | static int set_format(struct snd_usb_substream *subs, struct audioformat *fmt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1305 | { |
| 1306 | struct usb_device *dev = subs->dev; |
| 1307 | struct usb_host_interface *alts; |
| 1308 | struct usb_interface_descriptor *altsd; |
| 1309 | struct usb_interface *iface; |
| 1310 | unsigned int ep, attr; |
| 1311 | int is_playback = subs->direction == SNDRV_PCM_STREAM_PLAYBACK; |
| 1312 | int err; |
| 1313 | |
| 1314 | iface = usb_ifnum_to_if(dev, fmt->iface); |
Takashi Iwai | 5e246b8 | 2008-08-08 17:12:47 +0200 | [diff] [blame] | 1315 | if (WARN_ON(!iface)) |
| 1316 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1317 | alts = &iface->altsetting[fmt->altset_idx]; |
| 1318 | altsd = get_iface_desc(alts); |
Takashi Iwai | 5e246b8 | 2008-08-08 17:12:47 +0200 | [diff] [blame] | 1319 | if (WARN_ON(altsd->bAlternateSetting != fmt->altsetting)) |
| 1320 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1321 | |
| 1322 | if (fmt == subs->cur_audiofmt) |
| 1323 | return 0; |
| 1324 | |
| 1325 | /* close the old interface */ |
| 1326 | if (subs->interface >= 0 && subs->interface != fmt->iface) { |
Oliver Neukum | 5149fe2c | 2007-08-31 12:15:27 +0200 | [diff] [blame] | 1327 | if (usb_set_interface(subs->dev, subs->interface, 0) < 0) { |
| 1328 | snd_printk(KERN_ERR "%d:%d:%d: return to setting 0 failed\n", |
| 1329 | dev->devnum, fmt->iface, fmt->altsetting); |
| 1330 | return -EIO; |
| 1331 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1332 | subs->interface = -1; |
| 1333 | subs->format = 0; |
| 1334 | } |
| 1335 | |
| 1336 | /* set interface */ |
| 1337 | if (subs->interface != fmt->iface || subs->format != fmt->altset_idx) { |
| 1338 | if (usb_set_interface(dev, fmt->iface, fmt->altsetting) < 0) { |
| 1339 | snd_printk(KERN_ERR "%d:%d:%d: usb_set_interface failed\n", |
| 1340 | dev->devnum, fmt->iface, fmt->altsetting); |
| 1341 | return -EIO; |
| 1342 | } |
| 1343 | snd_printdd(KERN_INFO "setting usb interface %d:%d\n", fmt->iface, fmt->altsetting); |
| 1344 | subs->interface = fmt->iface; |
| 1345 | subs->format = fmt->altset_idx; |
| 1346 | } |
| 1347 | |
| 1348 | /* create a data pipe */ |
| 1349 | ep = fmt->endpoint & USB_ENDPOINT_NUMBER_MASK; |
| 1350 | if (is_playback) |
| 1351 | subs->datapipe = usb_sndisocpipe(dev, ep); |
| 1352 | else |
| 1353 | subs->datapipe = usb_rcvisocpipe(dev, ep); |
Clemens Ladisch | 744b89e | 2009-04-03 09:45:01 +0200 | [diff] [blame^] | 1354 | subs->datainterval = fmt->datainterval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1355 | subs->syncpipe = subs->syncinterval = 0; |
| 1356 | subs->maxpacksize = fmt->maxpacksize; |
| 1357 | subs->fill_max = 0; |
| 1358 | |
| 1359 | /* we need a sync pipe in async OUT or adaptive IN mode */ |
| 1360 | /* check the number of EP, since some devices have broken |
| 1361 | * descriptors which fool us. if it has only one EP, |
| 1362 | * assume it as adaptive-out or sync-in. |
| 1363 | */ |
| 1364 | attr = fmt->ep_attr & EP_ATTR_MASK; |
| 1365 | if (((is_playback && attr == EP_ATTR_ASYNC) || |
| 1366 | (! is_playback && attr == EP_ATTR_ADAPTIVE)) && |
| 1367 | altsd->bNumEndpoints >= 2) { |
| 1368 | /* check sync-pipe endpoint */ |
| 1369 | /* ... and check descriptor size before accessing bSynchAddress |
| 1370 | because there is a version of the SB Audigy 2 NX firmware lacking |
| 1371 | the audio fields in the endpoint descriptors */ |
| 1372 | if ((get_endpoint(alts, 1)->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) != 0x01 || |
| 1373 | (get_endpoint(alts, 1)->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE && |
| 1374 | get_endpoint(alts, 1)->bSynchAddress != 0)) { |
| 1375 | snd_printk(KERN_ERR "%d:%d:%d : invalid synch pipe\n", |
| 1376 | dev->devnum, fmt->iface, fmt->altsetting); |
| 1377 | return -EINVAL; |
| 1378 | } |
| 1379 | ep = get_endpoint(alts, 1)->bEndpointAddress; |
| 1380 | if (get_endpoint(alts, 0)->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE && |
| 1381 | (( is_playback && ep != (unsigned int)(get_endpoint(alts, 0)->bSynchAddress | USB_DIR_IN)) || |
| 1382 | (!is_playback && ep != (unsigned int)(get_endpoint(alts, 0)->bSynchAddress & ~USB_DIR_IN)))) { |
| 1383 | snd_printk(KERN_ERR "%d:%d:%d : invalid synch pipe\n", |
| 1384 | dev->devnum, fmt->iface, fmt->altsetting); |
| 1385 | return -EINVAL; |
| 1386 | } |
| 1387 | ep &= USB_ENDPOINT_NUMBER_MASK; |
| 1388 | if (is_playback) |
| 1389 | subs->syncpipe = usb_rcvisocpipe(dev, ep); |
| 1390 | else |
| 1391 | subs->syncpipe = usb_sndisocpipe(dev, ep); |
Clemens Ladisch | 1149a64 | 2005-05-02 08:53:46 +0200 | [diff] [blame] | 1392 | if (get_endpoint(alts, 1)->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE && |
| 1393 | get_endpoint(alts, 1)->bRefresh >= 1 && |
| 1394 | get_endpoint(alts, 1)->bRefresh <= 9) |
| 1395 | subs->syncinterval = get_endpoint(alts, 1)->bRefresh; |
Clemens Ladisch | 604cf49 | 2005-05-17 09:15:27 +0200 | [diff] [blame] | 1396 | else if (snd_usb_get_speed(subs->dev) == USB_SPEED_FULL) |
Clemens Ladisch | 1149a64 | 2005-05-02 08:53:46 +0200 | [diff] [blame] | 1397 | subs->syncinterval = 1; |
Clemens Ladisch | 604cf49 | 2005-05-17 09:15:27 +0200 | [diff] [blame] | 1398 | else if (get_endpoint(alts, 1)->bInterval >= 1 && |
| 1399 | get_endpoint(alts, 1)->bInterval <= 16) |
| 1400 | subs->syncinterval = get_endpoint(alts, 1)->bInterval - 1; |
| 1401 | else |
| 1402 | subs->syncinterval = 3; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1403 | } |
| 1404 | |
| 1405 | /* always fill max packet size */ |
| 1406 | if (fmt->attributes & EP_CS_ATTR_FILL_MAX) |
| 1407 | subs->fill_max = 1; |
| 1408 | |
| 1409 | if ((err = init_usb_pitch(dev, subs->interface, alts, fmt)) < 0) |
| 1410 | return err; |
| 1411 | |
| 1412 | subs->cur_audiofmt = fmt; |
| 1413 | |
| 1414 | #if 0 |
Takashi Iwai | 54530bd | 2009-02-05 15:55:18 +0100 | [diff] [blame] | 1415 | printk(KERN_DEBUG |
| 1416 | "setting done: format = %d, rate = %d..%d, channels = %d\n", |
Pavel Machek | 2a56f51 | 2008-04-14 13:14:22 +0200 | [diff] [blame] | 1417 | fmt->format, fmt->rate_min, fmt->rate_max, fmt->channels); |
Takashi Iwai | 54530bd | 2009-02-05 15:55:18 +0100 | [diff] [blame] | 1418 | printk(KERN_DEBUG |
| 1419 | " datapipe = 0x%0x, syncpipe = 0x%0x\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1420 | subs->datapipe, subs->syncpipe); |
| 1421 | #endif |
| 1422 | |
| 1423 | return 0; |
| 1424 | } |
| 1425 | |
| 1426 | /* |
| 1427 | * hw_params callback |
| 1428 | * |
| 1429 | * allocate a buffer and set the given audio format. |
| 1430 | * |
| 1431 | * so far we use a physically linear buffer although packetize transfer |
| 1432 | * doesn't need a continuous area. |
| 1433 | * if sg buffer is supported on the later version of alsa, we'll follow |
| 1434 | * that. |
| 1435 | */ |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 1436 | static int snd_usb_hw_params(struct snd_pcm_substream *substream, |
| 1437 | struct snd_pcm_hw_params *hw_params) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1438 | { |
John Daiker | 8851827 | 2006-12-28 13:55:05 +0100 | [diff] [blame] | 1439 | struct snd_usb_substream *subs = substream->runtime->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1440 | struct audioformat *fmt; |
| 1441 | unsigned int channels, rate, format; |
| 1442 | int ret, changed; |
| 1443 | |
Clemens Ladisch | 6207e51 | 2005-08-15 08:35:25 +0200 | [diff] [blame] | 1444 | ret = snd_pcm_alloc_vmalloc_buffer(substream, |
| 1445 | params_buffer_bytes(hw_params)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1446 | if (ret < 0) |
| 1447 | return ret; |
| 1448 | |
| 1449 | format = params_format(hw_params); |
| 1450 | rate = params_rate(hw_params); |
| 1451 | channels = params_channels(hw_params); |
| 1452 | fmt = find_format(subs, format, rate, channels); |
Pavel Machek | 07f51a7 | 2008-04-14 13:15:56 +0200 | [diff] [blame] | 1453 | if (!fmt) { |
Andreas Bergmeier | b9d710b | 2009-01-24 12:15:14 +0100 | [diff] [blame] | 1454 | snd_printd(KERN_DEBUG "cannot set format: format = %#x, rate = %d, channels = %d\n", |
Jaroslav Kysela | 21a3479 | 2006-01-13 09:12:11 +0100 | [diff] [blame] | 1455 | format, rate, channels); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1456 | return -EINVAL; |
| 1457 | } |
| 1458 | |
| 1459 | changed = subs->cur_audiofmt != fmt || |
| 1460 | subs->period_bytes != params_period_bytes(hw_params) || |
| 1461 | subs->cur_rate != rate; |
| 1462 | if ((ret = set_format(subs, fmt)) < 0) |
| 1463 | return ret; |
| 1464 | |
| 1465 | if (subs->cur_rate != rate) { |
| 1466 | struct usb_host_interface *alts; |
| 1467 | struct usb_interface *iface; |
| 1468 | iface = usb_ifnum_to_if(subs->dev, fmt->iface); |
| 1469 | alts = &iface->altsetting[fmt->altset_idx]; |
| 1470 | ret = init_usb_sample_rate(subs->dev, subs->interface, alts, fmt, rate); |
| 1471 | if (ret < 0) |
| 1472 | return ret; |
| 1473 | subs->cur_rate = rate; |
| 1474 | } |
| 1475 | |
| 1476 | if (changed) { |
| 1477 | /* format changed */ |
| 1478 | release_substream_urbs(subs, 0); |
| 1479 | /* influenced: period_bytes, channels, rate, format, */ |
| 1480 | ret = init_substream_urbs(subs, params_period_bytes(hw_params), |
| 1481 | params_rate(hw_params), |
| 1482 | snd_pcm_format_physical_width(params_format(hw_params)) * params_channels(hw_params)); |
| 1483 | } |
| 1484 | |
| 1485 | return ret; |
| 1486 | } |
| 1487 | |
| 1488 | /* |
| 1489 | * hw_free callback |
| 1490 | * |
| 1491 | * reset the audio format and release the buffer |
| 1492 | */ |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 1493 | static int snd_usb_hw_free(struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1494 | { |
John Daiker | 8851827 | 2006-12-28 13:55:05 +0100 | [diff] [blame] | 1495 | struct snd_usb_substream *subs = substream->runtime->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1496 | |
| 1497 | subs->cur_audiofmt = NULL; |
| 1498 | subs->cur_rate = 0; |
| 1499 | subs->period_bytes = 0; |
Takashi Iwai | de1b8b9 | 2006-11-08 15:41:29 +0100 | [diff] [blame] | 1500 | if (!subs->stream->chip->shutdown) |
| 1501 | release_substream_urbs(subs, 0); |
Clemens Ladisch | 6207e51 | 2005-08-15 08:35:25 +0200 | [diff] [blame] | 1502 | return snd_pcm_free_vmalloc_buffer(substream); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1503 | } |
| 1504 | |
| 1505 | /* |
| 1506 | * prepare callback |
| 1507 | * |
| 1508 | * only a few subtle things... |
| 1509 | */ |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 1510 | static int snd_usb_pcm_prepare(struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1511 | { |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 1512 | struct snd_pcm_runtime *runtime = substream->runtime; |
| 1513 | struct snd_usb_substream *subs = runtime->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1514 | |
| 1515 | if (! subs->cur_audiofmt) { |
| 1516 | snd_printk(KERN_ERR "usbaudio: no format is specified!\n"); |
| 1517 | return -ENXIO; |
| 1518 | } |
| 1519 | |
| 1520 | /* some unit conversions in runtime */ |
| 1521 | subs->maxframesize = bytes_to_frames(runtime, subs->maxpacksize); |
| 1522 | subs->curframesize = bytes_to_frames(runtime, subs->curpacksize); |
| 1523 | |
| 1524 | /* reset the pointer */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1525 | subs->hwptr_done = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1526 | subs->transfer_done = 0; |
| 1527 | subs->phase = 0; |
| 1528 | |
| 1529 | /* clear urbs (to be sure) */ |
| 1530 | deactivate_urbs(subs, 0, 1); |
| 1531 | wait_clear_urbs(subs); |
| 1532 | |
Clemens Ladisch | b55bbf0 | 2005-11-02 11:32:52 +0100 | [diff] [blame] | 1533 | /* for playback, submit the URBs now; otherwise, the first hwptr_done |
| 1534 | * updates for all URBs would happen at the same time when starting */ |
| 1535 | if (subs->direction == SNDRV_PCM_STREAM_PLAYBACK) { |
Clemens Ladisch | e4f8e65 | 2006-10-04 13:42:57 +0200 | [diff] [blame] | 1536 | subs->ops.prepare = prepare_nodata_playback_urb; |
Clemens Ladisch | b55bbf0 | 2005-11-02 11:32:52 +0100 | [diff] [blame] | 1537 | return start_urbs(subs, runtime); |
| 1538 | } else |
| 1539 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1540 | } |
| 1541 | |
Clemens Ladisch | 1700f30 | 2006-10-04 13:41:25 +0200 | [diff] [blame] | 1542 | static struct snd_pcm_hardware snd_usb_hardware = |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1543 | { |
Clemens Ladisch | 49045d3 | 2005-09-05 10:31:05 +0200 | [diff] [blame] | 1544 | .info = SNDRV_PCM_INFO_MMAP | |
| 1545 | SNDRV_PCM_INFO_MMAP_VALID | |
| 1546 | SNDRV_PCM_INFO_BATCH | |
| 1547 | SNDRV_PCM_INFO_INTERLEAVED | |
Clemens Ladisch | e4f8e65 | 2006-10-04 13:42:57 +0200 | [diff] [blame] | 1548 | SNDRV_PCM_INFO_BLOCK_TRANSFER | |
| 1549 | SNDRV_PCM_INFO_PAUSE, |
Clemens Ladisch | d31cbbf | 2005-09-26 09:59:57 +0200 | [diff] [blame] | 1550 | .buffer_bytes_max = 1024 * 1024, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1551 | .period_bytes_min = 64, |
Clemens Ladisch | d31cbbf | 2005-09-26 09:59:57 +0200 | [diff] [blame] | 1552 | .period_bytes_max = 512 * 1024, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1553 | .periods_min = 2, |
| 1554 | .periods_max = 1024, |
| 1555 | }; |
| 1556 | |
| 1557 | /* |
| 1558 | * h/w constraints |
| 1559 | */ |
| 1560 | |
| 1561 | #ifdef HW_CONST_DEBUG |
| 1562 | #define hwc_debug(fmt, args...) printk(KERN_DEBUG fmt, ##args) |
| 1563 | #else |
| 1564 | #define hwc_debug(fmt, args...) /**/ |
| 1565 | #endif |
| 1566 | |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 1567 | static int hw_check_valid_format(struct snd_pcm_hw_params *params, struct audioformat *fp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1568 | { |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 1569 | struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE); |
| 1570 | struct snd_interval *ct = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS); |
| 1571 | struct snd_mask *fmts = hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1572 | |
| 1573 | /* check the format */ |
Pavel Machek | 07f51a7 | 2008-04-14 13:15:56 +0200 | [diff] [blame] | 1574 | if (!snd_mask_test(fmts, fp->format)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1575 | hwc_debug(" > check: no supported format %d\n", fp->format); |
| 1576 | return 0; |
| 1577 | } |
| 1578 | /* check the channels */ |
| 1579 | if (fp->channels < ct->min || fp->channels > ct->max) { |
| 1580 | hwc_debug(" > check: no valid channels %d (%d/%d)\n", fp->channels, ct->min, ct->max); |
| 1581 | return 0; |
| 1582 | } |
| 1583 | /* check the rate is within the range */ |
| 1584 | if (fp->rate_min > it->max || (fp->rate_min == it->max && it->openmax)) { |
| 1585 | hwc_debug(" > check: rate_min %d > max %d\n", fp->rate_min, it->max); |
| 1586 | return 0; |
| 1587 | } |
| 1588 | if (fp->rate_max < it->min || (fp->rate_max == it->min && it->openmin)) { |
| 1589 | hwc_debug(" > check: rate_max %d < min %d\n", fp->rate_max, it->min); |
| 1590 | return 0; |
| 1591 | } |
| 1592 | return 1; |
| 1593 | } |
| 1594 | |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 1595 | static int hw_rule_rate(struct snd_pcm_hw_params *params, |
| 1596 | struct snd_pcm_hw_rule *rule) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1597 | { |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 1598 | struct snd_usb_substream *subs = rule->private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1599 | struct list_head *p; |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 1600 | struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1601 | unsigned int rmin, rmax; |
| 1602 | int changed; |
| 1603 | |
| 1604 | hwc_debug("hw_rule_rate: (%d,%d)\n", it->min, it->max); |
| 1605 | changed = 0; |
| 1606 | rmin = rmax = 0; |
| 1607 | list_for_each(p, &subs->fmt_list) { |
| 1608 | struct audioformat *fp; |
| 1609 | fp = list_entry(p, struct audioformat, list); |
Pavel Machek | 07f51a7 | 2008-04-14 13:15:56 +0200 | [diff] [blame] | 1610 | if (!hw_check_valid_format(params, fp)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1611 | continue; |
| 1612 | if (changed++) { |
| 1613 | if (rmin > fp->rate_min) |
| 1614 | rmin = fp->rate_min; |
| 1615 | if (rmax < fp->rate_max) |
| 1616 | rmax = fp->rate_max; |
| 1617 | } else { |
| 1618 | rmin = fp->rate_min; |
| 1619 | rmax = fp->rate_max; |
| 1620 | } |
| 1621 | } |
| 1622 | |
Pavel Machek | 07f51a7 | 2008-04-14 13:15:56 +0200 | [diff] [blame] | 1623 | if (!changed) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1624 | hwc_debug(" --> get empty\n"); |
| 1625 | it->empty = 1; |
| 1626 | return -EINVAL; |
| 1627 | } |
| 1628 | |
| 1629 | changed = 0; |
| 1630 | if (it->min < rmin) { |
| 1631 | it->min = rmin; |
| 1632 | it->openmin = 0; |
| 1633 | changed = 1; |
| 1634 | } |
| 1635 | if (it->max > rmax) { |
| 1636 | it->max = rmax; |
| 1637 | it->openmax = 0; |
| 1638 | changed = 1; |
| 1639 | } |
| 1640 | if (snd_interval_checkempty(it)) { |
| 1641 | it->empty = 1; |
| 1642 | return -EINVAL; |
| 1643 | } |
| 1644 | hwc_debug(" --> (%d, %d) (changed = %d)\n", it->min, it->max, changed); |
| 1645 | return changed; |
| 1646 | } |
| 1647 | |
| 1648 | |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 1649 | static int hw_rule_channels(struct snd_pcm_hw_params *params, |
| 1650 | struct snd_pcm_hw_rule *rule) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1651 | { |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 1652 | struct snd_usb_substream *subs = rule->private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1653 | struct list_head *p; |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 1654 | struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1655 | unsigned int rmin, rmax; |
| 1656 | int changed; |
| 1657 | |
| 1658 | hwc_debug("hw_rule_channels: (%d,%d)\n", it->min, it->max); |
| 1659 | changed = 0; |
| 1660 | rmin = rmax = 0; |
| 1661 | list_for_each(p, &subs->fmt_list) { |
| 1662 | struct audioformat *fp; |
| 1663 | fp = list_entry(p, struct audioformat, list); |
Pavel Machek | 07f51a7 | 2008-04-14 13:15:56 +0200 | [diff] [blame] | 1664 | if (!hw_check_valid_format(params, fp)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1665 | continue; |
| 1666 | if (changed++) { |
| 1667 | if (rmin > fp->channels) |
| 1668 | rmin = fp->channels; |
| 1669 | if (rmax < fp->channels) |
| 1670 | rmax = fp->channels; |
| 1671 | } else { |
| 1672 | rmin = fp->channels; |
| 1673 | rmax = fp->channels; |
| 1674 | } |
| 1675 | } |
| 1676 | |
Pavel Machek | 07f51a7 | 2008-04-14 13:15:56 +0200 | [diff] [blame] | 1677 | if (!changed) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1678 | hwc_debug(" --> get empty\n"); |
| 1679 | it->empty = 1; |
| 1680 | return -EINVAL; |
| 1681 | } |
| 1682 | |
| 1683 | changed = 0; |
| 1684 | if (it->min < rmin) { |
| 1685 | it->min = rmin; |
| 1686 | it->openmin = 0; |
| 1687 | changed = 1; |
| 1688 | } |
| 1689 | if (it->max > rmax) { |
| 1690 | it->max = rmax; |
| 1691 | it->openmax = 0; |
| 1692 | changed = 1; |
| 1693 | } |
| 1694 | if (snd_interval_checkempty(it)) { |
| 1695 | it->empty = 1; |
| 1696 | return -EINVAL; |
| 1697 | } |
| 1698 | hwc_debug(" --> (%d, %d) (changed = %d)\n", it->min, it->max, changed); |
| 1699 | return changed; |
| 1700 | } |
| 1701 | |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 1702 | static int hw_rule_format(struct snd_pcm_hw_params *params, |
| 1703 | struct snd_pcm_hw_rule *rule) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1704 | { |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 1705 | struct snd_usb_substream *subs = rule->private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1706 | struct list_head *p; |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 1707 | struct snd_mask *fmt = hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1708 | u64 fbits; |
| 1709 | u32 oldbits[2]; |
| 1710 | int changed; |
| 1711 | |
| 1712 | hwc_debug("hw_rule_format: %x:%x\n", fmt->bits[0], fmt->bits[1]); |
| 1713 | fbits = 0; |
| 1714 | list_for_each(p, &subs->fmt_list) { |
| 1715 | struct audioformat *fp; |
| 1716 | fp = list_entry(p, struct audioformat, list); |
Pavel Machek | 07f51a7 | 2008-04-14 13:15:56 +0200 | [diff] [blame] | 1717 | if (!hw_check_valid_format(params, fp)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1718 | continue; |
| 1719 | fbits |= (1ULL << fp->format); |
| 1720 | } |
| 1721 | |
| 1722 | oldbits[0] = fmt->bits[0]; |
| 1723 | oldbits[1] = fmt->bits[1]; |
| 1724 | fmt->bits[0] &= (u32)fbits; |
| 1725 | fmt->bits[1] &= (u32)(fbits >> 32); |
Pavel Machek | 07f51a7 | 2008-04-14 13:15:56 +0200 | [diff] [blame] | 1726 | if (!fmt->bits[0] && !fmt->bits[1]) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1727 | hwc_debug(" --> get empty\n"); |
| 1728 | return -EINVAL; |
| 1729 | } |
| 1730 | changed = (oldbits[0] != fmt->bits[0] || oldbits[1] != fmt->bits[1]); |
| 1731 | hwc_debug(" --> %x:%x (changed = %d)\n", fmt->bits[0], fmt->bits[1], changed); |
| 1732 | return changed; |
| 1733 | } |
| 1734 | |
Luke Ross | a79eee8 | 2006-08-29 10:46:32 +0200 | [diff] [blame] | 1735 | /* |
| 1736 | * If the device supports unusual bit rates, does the request meet these? |
| 1737 | */ |
| 1738 | static int snd_usb_pcm_check_knot(struct snd_pcm_runtime *runtime, |
| 1739 | struct snd_usb_substream *subs) |
| 1740 | { |
Takashi Iwai | 8fec560 | 2007-02-01 11:50:56 +0100 | [diff] [blame] | 1741 | struct audioformat *fp; |
| 1742 | int count = 0, needs_knot = 0; |
Luke Ross | a79eee8 | 2006-08-29 10:46:32 +0200 | [diff] [blame] | 1743 | int err; |
| 1744 | |
Takashi Iwai | 8fec560 | 2007-02-01 11:50:56 +0100 | [diff] [blame] | 1745 | list_for_each_entry(fp, &subs->fmt_list, list) { |
| 1746 | if (fp->rates & SNDRV_PCM_RATE_CONTINUOUS) |
| 1747 | return 0; |
| 1748 | count += fp->nr_rates; |
Clemens Ladisch | 918f3a0 | 2007-08-13 17:40:54 +0200 | [diff] [blame] | 1749 | if (fp->rates & SNDRV_PCM_RATE_KNOT) |
Takashi Iwai | 8fec560 | 2007-02-01 11:50:56 +0100 | [diff] [blame] | 1750 | needs_knot = 1; |
Luke Ross | a79eee8 | 2006-08-29 10:46:32 +0200 | [diff] [blame] | 1751 | } |
Takashi Iwai | 8fec560 | 2007-02-01 11:50:56 +0100 | [diff] [blame] | 1752 | if (!needs_knot) |
| 1753 | return 0; |
| 1754 | |
| 1755 | subs->rate_list.count = count; |
| 1756 | subs->rate_list.list = kmalloc(sizeof(int) * count, GFP_KERNEL); |
| 1757 | subs->rate_list.mask = 0; |
| 1758 | count = 0; |
| 1759 | list_for_each_entry(fp, &subs->fmt_list, list) { |
| 1760 | int i; |
| 1761 | for (i = 0; i < fp->nr_rates; i++) |
| 1762 | subs->rate_list.list[count++] = fp->rate_table[i]; |
| 1763 | } |
| 1764 | err = snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_RATE, |
| 1765 | &subs->rate_list); |
| 1766 | if (err < 0) |
| 1767 | return err; |
Luke Ross | a79eee8 | 2006-08-29 10:46:32 +0200 | [diff] [blame] | 1768 | |
| 1769 | return 0; |
| 1770 | } |
| 1771 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1772 | |
| 1773 | /* |
| 1774 | * set up the runtime hardware information. |
| 1775 | */ |
| 1776 | |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 1777 | static int setup_hw_info(struct snd_pcm_runtime *runtime, struct snd_usb_substream *subs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1778 | { |
| 1779 | struct list_head *p; |
| 1780 | int err; |
| 1781 | |
| 1782 | runtime->hw.formats = subs->formats; |
| 1783 | |
| 1784 | runtime->hw.rate_min = 0x7fffffff; |
| 1785 | runtime->hw.rate_max = 0; |
| 1786 | runtime->hw.channels_min = 256; |
| 1787 | runtime->hw.channels_max = 0; |
| 1788 | runtime->hw.rates = 0; |
| 1789 | /* check min/max rates and channels */ |
| 1790 | list_for_each(p, &subs->fmt_list) { |
| 1791 | struct audioformat *fp; |
| 1792 | fp = list_entry(p, struct audioformat, list); |
| 1793 | runtime->hw.rates |= fp->rates; |
| 1794 | if (runtime->hw.rate_min > fp->rate_min) |
| 1795 | runtime->hw.rate_min = fp->rate_min; |
| 1796 | if (runtime->hw.rate_max < fp->rate_max) |
| 1797 | runtime->hw.rate_max = fp->rate_max; |
| 1798 | if (runtime->hw.channels_min > fp->channels) |
| 1799 | runtime->hw.channels_min = fp->channels; |
| 1800 | if (runtime->hw.channels_max < fp->channels) |
| 1801 | runtime->hw.channels_max = fp->channels; |
| 1802 | if (fp->fmt_type == USB_FORMAT_TYPE_II && fp->frame_size > 0) { |
| 1803 | /* FIXME: there might be more than one audio formats... */ |
| 1804 | runtime->hw.period_bytes_min = runtime->hw.period_bytes_max = |
| 1805 | fp->frame_size; |
| 1806 | } |
| 1807 | } |
| 1808 | |
| 1809 | /* set the period time minimum 1ms */ |
Takashi Iwai | 81c4899 | 2007-05-03 12:26:14 +0200 | [diff] [blame] | 1810 | /* FIXME: high-speed mode allows 125us minimum period, but many parts |
| 1811 | * in the current code assume the 1ms period. |
| 1812 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1813 | snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_PERIOD_TIME, |
Clemens Ladisch | f3990e6 | 2009-02-20 09:32:40 +0100 | [diff] [blame] | 1814 | 1000, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1815 | /*(nrpacks * MAX_URBS) * 1000*/ UINT_MAX); |
| 1816 | |
Clemens Ladisch | 4608eb0 | 2009-04-03 09:42:42 +0200 | [diff] [blame] | 1817 | if ((err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE, |
| 1818 | hw_rule_rate, subs, |
| 1819 | SNDRV_PCM_HW_PARAM_FORMAT, |
| 1820 | SNDRV_PCM_HW_PARAM_CHANNELS, |
| 1821 | -1)) < 0) |
Takashi Iwai | 5a220c8 | 2008-03-17 09:59:32 +0100 | [diff] [blame] | 1822 | return err; |
Clemens Ladisch | 4608eb0 | 2009-04-03 09:42:42 +0200 | [diff] [blame] | 1823 | if ((err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS, |
| 1824 | hw_rule_channels, subs, |
| 1825 | SNDRV_PCM_HW_PARAM_FORMAT, |
| 1826 | SNDRV_PCM_HW_PARAM_RATE, |
| 1827 | -1)) < 0) |
| 1828 | return err; |
| 1829 | if ((err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_FORMAT, |
| 1830 | hw_rule_format, subs, |
| 1831 | SNDRV_PCM_HW_PARAM_RATE, |
| 1832 | SNDRV_PCM_HW_PARAM_CHANNELS, |
| 1833 | -1)) < 0) |
| 1834 | return err; |
| 1835 | if ((err = snd_usb_pcm_check_knot(runtime, subs)) < 0) |
| 1836 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1837 | return 0; |
| 1838 | } |
| 1839 | |
Clemens Ladisch | 1700f30 | 2006-10-04 13:41:25 +0200 | [diff] [blame] | 1840 | static int snd_usb_pcm_open(struct snd_pcm_substream *substream, int direction) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1841 | { |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 1842 | struct snd_usb_stream *as = snd_pcm_substream_chip(substream); |
| 1843 | struct snd_pcm_runtime *runtime = substream->runtime; |
| 1844 | struct snd_usb_substream *subs = &as->substream[direction]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1845 | |
| 1846 | subs->interface = -1; |
| 1847 | subs->format = 0; |
Clemens Ladisch | 1700f30 | 2006-10-04 13:41:25 +0200 | [diff] [blame] | 1848 | runtime->hw = snd_usb_hardware; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1849 | runtime->private_data = subs; |
| 1850 | subs->pcm_substream = substream; |
| 1851 | return setup_hw_info(runtime, subs); |
| 1852 | } |
| 1853 | |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 1854 | static int snd_usb_pcm_close(struct snd_pcm_substream *substream, int direction) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1855 | { |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 1856 | struct snd_usb_stream *as = snd_pcm_substream_chip(substream); |
| 1857 | struct snd_usb_substream *subs = &as->substream[direction]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1858 | |
| 1859 | if (subs->interface >= 0) { |
| 1860 | usb_set_interface(subs->dev, subs->interface, 0); |
| 1861 | subs->interface = -1; |
| 1862 | } |
| 1863 | subs->pcm_substream = NULL; |
| 1864 | return 0; |
| 1865 | } |
| 1866 | |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 1867 | static int snd_usb_playback_open(struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1868 | { |
Clemens Ladisch | 1700f30 | 2006-10-04 13:41:25 +0200 | [diff] [blame] | 1869 | return snd_usb_pcm_open(substream, SNDRV_PCM_STREAM_PLAYBACK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1870 | } |
| 1871 | |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 1872 | static int snd_usb_playback_close(struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1873 | { |
| 1874 | return snd_usb_pcm_close(substream, SNDRV_PCM_STREAM_PLAYBACK); |
| 1875 | } |
| 1876 | |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 1877 | static int snd_usb_capture_open(struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1878 | { |
Clemens Ladisch | 1700f30 | 2006-10-04 13:41:25 +0200 | [diff] [blame] | 1879 | return snd_usb_pcm_open(substream, SNDRV_PCM_STREAM_CAPTURE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1880 | } |
| 1881 | |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 1882 | static int snd_usb_capture_close(struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1883 | { |
| 1884 | return snd_usb_pcm_close(substream, SNDRV_PCM_STREAM_CAPTURE); |
| 1885 | } |
| 1886 | |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 1887 | static struct snd_pcm_ops snd_usb_playback_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1888 | .open = snd_usb_playback_open, |
| 1889 | .close = snd_usb_playback_close, |
| 1890 | .ioctl = snd_pcm_lib_ioctl, |
| 1891 | .hw_params = snd_usb_hw_params, |
| 1892 | .hw_free = snd_usb_hw_free, |
| 1893 | .prepare = snd_usb_pcm_prepare, |
Clemens Ladisch | b55bbf0 | 2005-11-02 11:32:52 +0100 | [diff] [blame] | 1894 | .trigger = snd_usb_pcm_playback_trigger, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1895 | .pointer = snd_usb_pcm_pointer, |
Clemens Ladisch | 6207e51 | 2005-08-15 08:35:25 +0200 | [diff] [blame] | 1896 | .page = snd_pcm_get_vmalloc_page, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1897 | }; |
| 1898 | |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 1899 | static struct snd_pcm_ops snd_usb_capture_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1900 | .open = snd_usb_capture_open, |
| 1901 | .close = snd_usb_capture_close, |
| 1902 | .ioctl = snd_pcm_lib_ioctl, |
| 1903 | .hw_params = snd_usb_hw_params, |
| 1904 | .hw_free = snd_usb_hw_free, |
| 1905 | .prepare = snd_usb_pcm_prepare, |
Clemens Ladisch | b55bbf0 | 2005-11-02 11:32:52 +0100 | [diff] [blame] | 1906 | .trigger = snd_usb_pcm_capture_trigger, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1907 | .pointer = snd_usb_pcm_pointer, |
Clemens Ladisch | 6207e51 | 2005-08-15 08:35:25 +0200 | [diff] [blame] | 1908 | .page = snd_pcm_get_vmalloc_page, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1909 | }; |
| 1910 | |
| 1911 | |
| 1912 | |
| 1913 | /* |
| 1914 | * helper functions |
| 1915 | */ |
| 1916 | |
| 1917 | /* |
| 1918 | * combine bytes and get an integer value |
| 1919 | */ |
| 1920 | unsigned int snd_usb_combine_bytes(unsigned char *bytes, int size) |
| 1921 | { |
| 1922 | switch (size) { |
| 1923 | case 1: return *bytes; |
| 1924 | case 2: return combine_word(bytes); |
| 1925 | case 3: return combine_triple(bytes); |
| 1926 | case 4: return combine_quad(bytes); |
| 1927 | default: return 0; |
| 1928 | } |
| 1929 | } |
| 1930 | |
| 1931 | /* |
| 1932 | * parse descriptor buffer and return the pointer starting the given |
| 1933 | * descriptor type. |
| 1934 | */ |
| 1935 | void *snd_usb_find_desc(void *descstart, int desclen, void *after, u8 dtype) |
| 1936 | { |
| 1937 | u8 *p, *end, *next; |
| 1938 | |
| 1939 | p = descstart; |
| 1940 | end = p + desclen; |
| 1941 | for (; p < end;) { |
| 1942 | if (p[0] < 2) |
| 1943 | return NULL; |
| 1944 | next = p + p[0]; |
| 1945 | if (next > end) |
| 1946 | return NULL; |
| 1947 | if (p[1] == dtype && (!after || (void *)p > after)) { |
| 1948 | return p; |
| 1949 | } |
| 1950 | p = next; |
| 1951 | } |
| 1952 | return NULL; |
| 1953 | } |
| 1954 | |
| 1955 | /* |
| 1956 | * find a class-specified interface descriptor with the given subtype. |
| 1957 | */ |
| 1958 | void *snd_usb_find_csint_desc(void *buffer, int buflen, void *after, u8 dsubtype) |
| 1959 | { |
| 1960 | unsigned char *p = after; |
| 1961 | |
| 1962 | while ((p = snd_usb_find_desc(buffer, buflen, p, |
| 1963 | USB_DT_CS_INTERFACE)) != NULL) { |
| 1964 | if (p[0] >= 3 && p[2] == dsubtype) |
| 1965 | return p; |
| 1966 | } |
| 1967 | return NULL; |
| 1968 | } |
| 1969 | |
| 1970 | /* |
| 1971 | * Wrapper for usb_control_msg(). |
| 1972 | * Allocates a temp buffer to prevent dmaing from/to the stack. |
| 1973 | */ |
| 1974 | int snd_usb_ctl_msg(struct usb_device *dev, unsigned int pipe, __u8 request, |
| 1975 | __u8 requesttype, __u16 value, __u16 index, void *data, |
| 1976 | __u16 size, int timeout) |
| 1977 | { |
| 1978 | int err; |
| 1979 | void *buf = NULL; |
| 1980 | |
| 1981 | if (size > 0) { |
Alexey Dobriyan | 52978be | 2006-09-30 23:27:21 -0700 | [diff] [blame] | 1982 | buf = kmemdup(data, size, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1983 | if (!buf) |
| 1984 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1985 | } |
| 1986 | err = usb_control_msg(dev, pipe, request, requesttype, |
| 1987 | value, index, buf, size, timeout); |
| 1988 | if (size > 0) { |
| 1989 | memcpy(data, buf, size); |
| 1990 | kfree(buf); |
| 1991 | } |
| 1992 | return err; |
| 1993 | } |
| 1994 | |
| 1995 | |
| 1996 | /* |
| 1997 | * entry point for linux usb interface |
| 1998 | */ |
| 1999 | |
| 2000 | static int usb_audio_probe(struct usb_interface *intf, |
| 2001 | const struct usb_device_id *id); |
| 2002 | static void usb_audio_disconnect(struct usb_interface *intf); |
Andrew Morton | 93521d2 | 2007-12-24 14:40:56 +0100 | [diff] [blame] | 2003 | |
| 2004 | #ifdef CONFIG_PM |
Oliver Neukum | f85bf29 | 2007-12-14 14:42:41 +0100 | [diff] [blame] | 2005 | static int usb_audio_suspend(struct usb_interface *intf, pm_message_t message); |
| 2006 | static int usb_audio_resume(struct usb_interface *intf); |
Andrew Morton | 93521d2 | 2007-12-24 14:40:56 +0100 | [diff] [blame] | 2007 | #else |
| 2008 | #define usb_audio_suspend NULL |
| 2009 | #define usb_audio_resume NULL |
| 2010 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2011 | |
| 2012 | static struct usb_device_id usb_audio_ids [] = { |
| 2013 | #include "usbquirks.h" |
| 2014 | { .match_flags = (USB_DEVICE_ID_MATCH_INT_CLASS | USB_DEVICE_ID_MATCH_INT_SUBCLASS), |
| 2015 | .bInterfaceClass = USB_CLASS_AUDIO, |
| 2016 | .bInterfaceSubClass = USB_SUBCLASS_AUDIO_CONTROL }, |
| 2017 | { } /* Terminating entry */ |
| 2018 | }; |
| 2019 | |
| 2020 | MODULE_DEVICE_TABLE (usb, usb_audio_ids); |
| 2021 | |
| 2022 | static struct usb_driver usb_audio_driver = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2023 | .name = "snd-usb-audio", |
| 2024 | .probe = usb_audio_probe, |
| 2025 | .disconnect = usb_audio_disconnect, |
Oliver Neukum | f85bf29 | 2007-12-14 14:42:41 +0100 | [diff] [blame] | 2026 | .suspend = usb_audio_suspend, |
| 2027 | .resume = usb_audio_resume, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2028 | .id_table = usb_audio_ids, |
| 2029 | }; |
| 2030 | |
| 2031 | |
Takashi Iwai | 727f317 | 2006-08-04 19:08:03 +0200 | [diff] [blame] | 2032 | #if defined(CONFIG_PROC_FS) && defined(CONFIG_SND_VERBOSE_PROCFS) |
Jaroslav Kysela | 21a3479 | 2006-01-13 09:12:11 +0100 | [diff] [blame] | 2033 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2034 | /* |
| 2035 | * proc interface for list the supported pcm formats |
| 2036 | */ |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 2037 | static void proc_dump_substream_formats(struct snd_usb_substream *subs, struct snd_info_buffer *buffer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2038 | { |
| 2039 | struct list_head *p; |
| 2040 | static char *sync_types[4] = { |
| 2041 | "NONE", "ASYNC", "ADAPTIVE", "SYNC" |
| 2042 | }; |
| 2043 | |
| 2044 | list_for_each(p, &subs->fmt_list) { |
| 2045 | struct audioformat *fp; |
| 2046 | fp = list_entry(p, struct audioformat, list); |
| 2047 | snd_iprintf(buffer, " Interface %d\n", fp->iface); |
| 2048 | snd_iprintf(buffer, " Altset %d\n", fp->altsetting); |
Clemens Ladisch | 488fe16 | 2009-04-03 09:41:40 +0200 | [diff] [blame] | 2049 | snd_iprintf(buffer, " Format: %#x (%d bits)\n", |
| 2050 | fp->format, snd_pcm_format_width(fp->format)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2051 | snd_iprintf(buffer, " Channels: %d\n", fp->channels); |
| 2052 | snd_iprintf(buffer, " Endpoint: %d %s (%s)\n", |
| 2053 | fp->endpoint & USB_ENDPOINT_NUMBER_MASK, |
| 2054 | fp->endpoint & USB_DIR_IN ? "IN" : "OUT", |
| 2055 | sync_types[(fp->ep_attr & EP_ATTR_MASK) >> 2]); |
| 2056 | if (fp->rates & SNDRV_PCM_RATE_CONTINUOUS) { |
| 2057 | snd_iprintf(buffer, " Rates: %d - %d (continuous)\n", |
| 2058 | fp->rate_min, fp->rate_max); |
| 2059 | } else { |
| 2060 | unsigned int i; |
| 2061 | snd_iprintf(buffer, " Rates: "); |
| 2062 | for (i = 0; i < fp->nr_rates; i++) { |
| 2063 | if (i > 0) |
| 2064 | snd_iprintf(buffer, ", "); |
| 2065 | snd_iprintf(buffer, "%d", fp->rate_table[i]); |
| 2066 | } |
| 2067 | snd_iprintf(buffer, "\n"); |
| 2068 | } |
Clemens Ladisch | 744b89e | 2009-04-03 09:45:01 +0200 | [diff] [blame^] | 2069 | if (snd_usb_get_speed(subs->dev) == USB_SPEED_HIGH) |
| 2070 | snd_iprintf(buffer, " Data packet interval: %d us\n", |
| 2071 | 125 * (1 << fp->datainterval)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2072 | // snd_iprintf(buffer, " Max Packet Size = %d\n", fp->maxpacksize); |
Andreas Bergmeier | b9d710b | 2009-01-24 12:15:14 +0100 | [diff] [blame] | 2073 | // snd_iprintf(buffer, " EP Attribute = %#x\n", fp->attributes); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2074 | } |
| 2075 | } |
| 2076 | |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 2077 | static void proc_dump_substream_status(struct snd_usb_substream *subs, struct snd_info_buffer *buffer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2078 | { |
| 2079 | if (subs->running) { |
| 2080 | unsigned int i; |
| 2081 | snd_iprintf(buffer, " Status: Running\n"); |
| 2082 | snd_iprintf(buffer, " Interface = %d\n", subs->interface); |
| 2083 | snd_iprintf(buffer, " Altset = %d\n", subs->format); |
| 2084 | snd_iprintf(buffer, " URBs = %d [ ", subs->nurbs); |
| 2085 | for (i = 0; i < subs->nurbs; i++) |
| 2086 | snd_iprintf(buffer, "%d ", subs->dataurb[i].packets); |
| 2087 | snd_iprintf(buffer, "]\n"); |
| 2088 | snd_iprintf(buffer, " Packet Size = %d\n", subs->curpacksize); |
Clemens Ladisch | 08fe158 | 2005-04-22 15:33:01 +0200 | [diff] [blame] | 2089 | snd_iprintf(buffer, " Momentary freq = %u Hz (%#x.%04x)\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2090 | snd_usb_get_speed(subs->dev) == USB_SPEED_FULL |
| 2091 | ? get_full_speed_hz(subs->freqm) |
Clemens Ladisch | 08fe158 | 2005-04-22 15:33:01 +0200 | [diff] [blame] | 2092 | : get_high_speed_hz(subs->freqm), |
| 2093 | subs->freqm >> 16, subs->freqm & 0xffff); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2094 | } else { |
| 2095 | snd_iprintf(buffer, " Status: Stop\n"); |
| 2096 | } |
| 2097 | } |
| 2098 | |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 2099 | static void proc_pcm_format_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2100 | { |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 2101 | struct snd_usb_stream *stream = entry->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2102 | |
| 2103 | snd_iprintf(buffer, "%s : %s\n", stream->chip->card->longname, stream->pcm->name); |
| 2104 | |
| 2105 | if (stream->substream[SNDRV_PCM_STREAM_PLAYBACK].num_formats) { |
| 2106 | snd_iprintf(buffer, "\nPlayback:\n"); |
| 2107 | proc_dump_substream_status(&stream->substream[SNDRV_PCM_STREAM_PLAYBACK], buffer); |
| 2108 | proc_dump_substream_formats(&stream->substream[SNDRV_PCM_STREAM_PLAYBACK], buffer); |
| 2109 | } |
| 2110 | if (stream->substream[SNDRV_PCM_STREAM_CAPTURE].num_formats) { |
| 2111 | snd_iprintf(buffer, "\nCapture:\n"); |
| 2112 | proc_dump_substream_status(&stream->substream[SNDRV_PCM_STREAM_CAPTURE], buffer); |
| 2113 | proc_dump_substream_formats(&stream->substream[SNDRV_PCM_STREAM_CAPTURE], buffer); |
| 2114 | } |
| 2115 | } |
| 2116 | |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 2117 | static void proc_pcm_format_add(struct snd_usb_stream *stream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2118 | { |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 2119 | struct snd_info_entry *entry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2120 | char name[32]; |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 2121 | struct snd_card *card = stream->chip->card; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2122 | |
| 2123 | sprintf(name, "stream%d", stream->pcm_index); |
Pavel Machek | 07f51a7 | 2008-04-14 13:15:56 +0200 | [diff] [blame] | 2124 | if (!snd_card_proc_new(card, name, &entry)) |
Takashi Iwai | bf85020 | 2006-04-28 15:13:41 +0200 | [diff] [blame] | 2125 | snd_info_set_text_ops(entry, stream, proc_pcm_format_read); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2126 | } |
| 2127 | |
Jaroslav Kysela | 21a3479 | 2006-01-13 09:12:11 +0100 | [diff] [blame] | 2128 | #else |
| 2129 | |
| 2130 | static inline void proc_pcm_format_add(struct snd_usb_stream *stream) |
| 2131 | { |
| 2132 | } |
| 2133 | |
| 2134 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2135 | |
| 2136 | /* |
| 2137 | * initialize the substream instance. |
| 2138 | */ |
| 2139 | |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 2140 | static void init_substream(struct snd_usb_stream *as, int stream, struct audioformat *fp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2141 | { |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 2142 | struct snd_usb_substream *subs = &as->substream[stream]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2143 | |
| 2144 | INIT_LIST_HEAD(&subs->fmt_list); |
| 2145 | spin_lock_init(&subs->lock); |
| 2146 | |
| 2147 | subs->stream = as; |
| 2148 | subs->direction = stream; |
| 2149 | subs->dev = as->chip->dev; |
Clemens Ladisch | d513202 | 2008-02-25 11:01:00 +0100 | [diff] [blame] | 2150 | if (snd_usb_get_speed(subs->dev) == USB_SPEED_FULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2151 | subs->ops = audio_urb_ops[stream]; |
Clemens Ladisch | d513202 | 2008-02-25 11:01:00 +0100 | [diff] [blame] | 2152 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2153 | subs->ops = audio_urb_ops_high_speed[stream]; |
Clemens Ladisch | d513202 | 2008-02-25 11:01:00 +0100 | [diff] [blame] | 2154 | switch (as->chip->usb_id) { |
| 2155 | case USB_ID(0x041e, 0x3f02): /* E-Mu 0202 USB */ |
| 2156 | case USB_ID(0x041e, 0x3f04): /* E-Mu 0404 USB */ |
Eran Tromer | 97c889a | 2008-09-26 01:07:03 -0400 | [diff] [blame] | 2157 | case USB_ID(0x041e, 0x3f0a): /* E-Mu Tracker Pre */ |
Clemens Ladisch | d513202 | 2008-02-25 11:01:00 +0100 | [diff] [blame] | 2158 | subs->ops.retire_sync = retire_playback_sync_urb_hs_emu; |
| 2159 | break; |
| 2160 | } |
| 2161 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2162 | snd_pcm_set_ops(as->pcm, stream, |
| 2163 | stream == SNDRV_PCM_STREAM_PLAYBACK ? |
| 2164 | &snd_usb_playback_ops : &snd_usb_capture_ops); |
| 2165 | |
| 2166 | list_add_tail(&fp->list, &subs->fmt_list); |
| 2167 | subs->formats |= 1ULL << fp->format; |
| 2168 | subs->endpoint = fp->endpoint; |
| 2169 | subs->num_formats++; |
| 2170 | subs->fmt_type = fp->fmt_type; |
| 2171 | } |
| 2172 | |
| 2173 | |
| 2174 | /* |
| 2175 | * free a substream |
| 2176 | */ |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 2177 | static void free_substream(struct snd_usb_substream *subs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2178 | { |
| 2179 | struct list_head *p, *n; |
| 2180 | |
Pavel Machek | 07f51a7 | 2008-04-14 13:15:56 +0200 | [diff] [blame] | 2181 | if (!subs->num_formats) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2182 | return; /* not initialized */ |
| 2183 | list_for_each_safe(p, n, &subs->fmt_list) { |
| 2184 | struct audioformat *fp = list_entry(p, struct audioformat, list); |
| 2185 | kfree(fp->rate_table); |
| 2186 | kfree(fp); |
| 2187 | } |
Takashi Iwai | 8fec560 | 2007-02-01 11:50:56 +0100 | [diff] [blame] | 2188 | kfree(subs->rate_list.list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2189 | } |
| 2190 | |
| 2191 | |
| 2192 | /* |
| 2193 | * free a usb stream instance |
| 2194 | */ |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 2195 | static void snd_usb_audio_stream_free(struct snd_usb_stream *stream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2196 | { |
| 2197 | free_substream(&stream->substream[0]); |
| 2198 | free_substream(&stream->substream[1]); |
| 2199 | list_del(&stream->list); |
| 2200 | kfree(stream); |
| 2201 | } |
| 2202 | |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 2203 | static void snd_usb_audio_pcm_free(struct snd_pcm *pcm) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2204 | { |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 2205 | struct snd_usb_stream *stream = pcm->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2206 | if (stream) { |
| 2207 | stream->pcm = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2208 | snd_usb_audio_stream_free(stream); |
| 2209 | } |
| 2210 | } |
| 2211 | |
| 2212 | |
| 2213 | /* |
| 2214 | * add this endpoint to the chip instance. |
| 2215 | * if a stream with the same endpoint already exists, append to it. |
| 2216 | * if not, create a new pcm stream. |
| 2217 | */ |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 2218 | static int add_audio_endpoint(struct snd_usb_audio *chip, int stream, struct audioformat *fp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2219 | { |
| 2220 | struct list_head *p; |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 2221 | struct snd_usb_stream *as; |
| 2222 | struct snd_usb_substream *subs; |
| 2223 | struct snd_pcm *pcm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2224 | int err; |
| 2225 | |
| 2226 | list_for_each(p, &chip->pcm_list) { |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 2227 | as = list_entry(p, struct snd_usb_stream, list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2228 | if (as->fmt_type != fp->fmt_type) |
| 2229 | continue; |
| 2230 | subs = &as->substream[stream]; |
Pavel Machek | 07f51a7 | 2008-04-14 13:15:56 +0200 | [diff] [blame] | 2231 | if (!subs->endpoint) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2232 | continue; |
| 2233 | if (subs->endpoint == fp->endpoint) { |
| 2234 | list_add_tail(&fp->list, &subs->fmt_list); |
| 2235 | subs->num_formats++; |
| 2236 | subs->formats |= 1ULL << fp->format; |
| 2237 | return 0; |
| 2238 | } |
| 2239 | } |
| 2240 | /* look for an empty stream */ |
| 2241 | list_for_each(p, &chip->pcm_list) { |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 2242 | as = list_entry(p, struct snd_usb_stream, list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2243 | if (as->fmt_type != fp->fmt_type) |
| 2244 | continue; |
| 2245 | subs = &as->substream[stream]; |
| 2246 | if (subs->endpoint) |
| 2247 | continue; |
| 2248 | err = snd_pcm_new_stream(as->pcm, stream, 1); |
| 2249 | if (err < 0) |
| 2250 | return err; |
| 2251 | init_substream(as, stream, fp); |
| 2252 | return 0; |
| 2253 | } |
| 2254 | |
| 2255 | /* create a new pcm */ |
Panagiotis Issaris | 59feddb | 2006-07-25 15:28:03 +0200 | [diff] [blame] | 2256 | as = kzalloc(sizeof(*as), GFP_KERNEL); |
Pavel Machek | 07f51a7 | 2008-04-14 13:15:56 +0200 | [diff] [blame] | 2257 | if (!as) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2258 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2259 | as->pcm_index = chip->pcm_devs; |
| 2260 | as->chip = chip; |
| 2261 | as->fmt_type = fp->fmt_type; |
| 2262 | err = snd_pcm_new(chip->card, "USB Audio", chip->pcm_devs, |
| 2263 | stream == SNDRV_PCM_STREAM_PLAYBACK ? 1 : 0, |
| 2264 | stream == SNDRV_PCM_STREAM_PLAYBACK ? 0 : 1, |
| 2265 | &pcm); |
| 2266 | if (err < 0) { |
| 2267 | kfree(as); |
| 2268 | return err; |
| 2269 | } |
| 2270 | as->pcm = pcm; |
| 2271 | pcm->private_data = as; |
| 2272 | pcm->private_free = snd_usb_audio_pcm_free; |
| 2273 | pcm->info_flags = 0; |
| 2274 | if (chip->pcm_devs > 0) |
| 2275 | sprintf(pcm->name, "USB Audio #%d", chip->pcm_devs); |
| 2276 | else |
| 2277 | strcpy(pcm->name, "USB Audio"); |
| 2278 | |
| 2279 | init_substream(as, stream, fp); |
| 2280 | |
| 2281 | list_add(&as->list, &chip->pcm_list); |
| 2282 | chip->pcm_devs++; |
| 2283 | |
| 2284 | proc_pcm_format_add(as); |
| 2285 | |
| 2286 | return 0; |
| 2287 | } |
| 2288 | |
| 2289 | |
| 2290 | /* |
| 2291 | * check if the device uses big-endian samples |
| 2292 | */ |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 2293 | static int is_big_endian_format(struct snd_usb_audio *chip, struct audioformat *fp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2294 | { |
Clemens Ladisch | 27d10f5 | 2005-05-02 08:51:26 +0200 | [diff] [blame] | 2295 | switch (chip->usb_id) { |
| 2296 | case USB_ID(0x0763, 0x2001): /* M-Audio Quattro: captured data only */ |
| 2297 | if (fp->endpoint & USB_DIR_IN) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2298 | return 1; |
Clemens Ladisch | 27d10f5 | 2005-05-02 08:51:26 +0200 | [diff] [blame] | 2299 | break; |
| 2300 | case USB_ID(0x0763, 0x2003): /* M-Audio Audiophile USB */ |
Thibault Le Meur | f8c78b8 | 2007-07-12 11:26:35 +0200 | [diff] [blame] | 2301 | if (device_setup[chip->index] == 0x00 || |
| 2302 | fp->altsetting==1 || fp->altsetting==2 || fp->altsetting==3) |
| 2303 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2304 | } |
| 2305 | return 0; |
| 2306 | } |
| 2307 | |
| 2308 | /* |
| 2309 | * parse the audio format type I descriptor |
| 2310 | * and returns the corresponding pcm format |
| 2311 | * |
| 2312 | * @dev: usb device |
| 2313 | * @fp: audioformat record |
| 2314 | * @format: the format tag (wFormatTag) |
| 2315 | * @fmt: the format type descriptor |
| 2316 | */ |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 2317 | static int parse_audio_format_i_type(struct snd_usb_audio *chip, struct audioformat *fp, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2318 | int format, unsigned char *fmt) |
| 2319 | { |
| 2320 | int pcm_format; |
| 2321 | int sample_width, sample_bytes; |
| 2322 | |
| 2323 | /* FIXME: correct endianess and sign? */ |
| 2324 | pcm_format = -1; |
| 2325 | sample_width = fmt[6]; |
| 2326 | sample_bytes = fmt[5]; |
| 2327 | switch (format) { |
| 2328 | case 0: /* some devices don't define this correctly... */ |
| 2329 | snd_printdd(KERN_INFO "%d:%u:%d : format type 0 is detected, processed as PCM\n", |
Clemens Ladisch | 27d10f5 | 2005-05-02 08:51:26 +0200 | [diff] [blame] | 2330 | chip->dev->devnum, fp->iface, fp->altsetting); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2331 | /* fall-through */ |
| 2332 | case USB_AUDIO_FORMAT_PCM: |
| 2333 | if (sample_width > sample_bytes * 8) { |
| 2334 | snd_printk(KERN_INFO "%d:%u:%d : sample bitwidth %d in over sample bytes %d\n", |
Clemens Ladisch | 27d10f5 | 2005-05-02 08:51:26 +0200 | [diff] [blame] | 2335 | chip->dev->devnum, fp->iface, fp->altsetting, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2336 | sample_width, sample_bytes); |
| 2337 | } |
| 2338 | /* check the format byte size */ |
| 2339 | switch (fmt[5]) { |
| 2340 | case 1: |
| 2341 | pcm_format = SNDRV_PCM_FORMAT_S8; |
| 2342 | break; |
| 2343 | case 2: |
Clemens Ladisch | 27d10f5 | 2005-05-02 08:51:26 +0200 | [diff] [blame] | 2344 | if (is_big_endian_format(chip, fp)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2345 | pcm_format = SNDRV_PCM_FORMAT_S16_BE; /* grrr, big endian!! */ |
| 2346 | else |
| 2347 | pcm_format = SNDRV_PCM_FORMAT_S16_LE; |
| 2348 | break; |
| 2349 | case 3: |
Clemens Ladisch | 27d10f5 | 2005-05-02 08:51:26 +0200 | [diff] [blame] | 2350 | if (is_big_endian_format(chip, fp)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2351 | pcm_format = SNDRV_PCM_FORMAT_S24_3BE; /* grrr, big endian!! */ |
| 2352 | else |
| 2353 | pcm_format = SNDRV_PCM_FORMAT_S24_3LE; |
| 2354 | break; |
| 2355 | case 4: |
| 2356 | pcm_format = SNDRV_PCM_FORMAT_S32_LE; |
| 2357 | break; |
| 2358 | default: |
| 2359 | snd_printk(KERN_INFO "%d:%u:%d : unsupported sample bitwidth %d in %d bytes\n", |
Clemens Ladisch | 27d10f5 | 2005-05-02 08:51:26 +0200 | [diff] [blame] | 2360 | chip->dev->devnum, fp->iface, |
| 2361 | fp->altsetting, sample_width, sample_bytes); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2362 | break; |
| 2363 | } |
| 2364 | break; |
| 2365 | case USB_AUDIO_FORMAT_PCM8: |
Pavel Machek | 2a56f51 | 2008-04-14 13:14:22 +0200 | [diff] [blame] | 2366 | pcm_format = SNDRV_PCM_FORMAT_U8; |
| 2367 | |
| 2368 | /* Dallas DS4201 workaround: it advertises U8 format, but really |
| 2369 | supports S8. */ |
Clemens Ladisch | 27d10f5 | 2005-05-02 08:51:26 +0200 | [diff] [blame] | 2370 | if (chip->usb_id == USB_ID(0x04fa, 0x4201)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2371 | pcm_format = SNDRV_PCM_FORMAT_S8; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2372 | break; |
| 2373 | case USB_AUDIO_FORMAT_IEEE_FLOAT: |
| 2374 | pcm_format = SNDRV_PCM_FORMAT_FLOAT_LE; |
| 2375 | break; |
| 2376 | case USB_AUDIO_FORMAT_ALAW: |
| 2377 | pcm_format = SNDRV_PCM_FORMAT_A_LAW; |
| 2378 | break; |
| 2379 | case USB_AUDIO_FORMAT_MU_LAW: |
| 2380 | pcm_format = SNDRV_PCM_FORMAT_MU_LAW; |
| 2381 | break; |
| 2382 | default: |
| 2383 | snd_printk(KERN_INFO "%d:%u:%d : unsupported format type %d\n", |
Clemens Ladisch | 27d10f5 | 2005-05-02 08:51:26 +0200 | [diff] [blame] | 2384 | chip->dev->devnum, fp->iface, fp->altsetting, format); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2385 | break; |
| 2386 | } |
| 2387 | return pcm_format; |
| 2388 | } |
| 2389 | |
| 2390 | |
| 2391 | /* |
| 2392 | * parse the format descriptor and stores the possible sample rates |
| 2393 | * on the audioformat table. |
| 2394 | * |
| 2395 | * @dev: usb device |
| 2396 | * @fp: audioformat record |
| 2397 | * @fmt: the format descriptor |
| 2398 | * @offset: the start offset of descriptor pointing the rate type |
| 2399 | * (7 for type I and II, 8 for type II) |
| 2400 | */ |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 2401 | static int parse_audio_format_rates(struct snd_usb_audio *chip, struct audioformat *fp, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2402 | unsigned char *fmt, int offset) |
| 2403 | { |
| 2404 | int nr_rates = fmt[offset]; |
Clemens Ladisch | 918f3a0 | 2007-08-13 17:40:54 +0200 | [diff] [blame] | 2405 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2406 | if (fmt[0] < offset + 1 + 3 * (nr_rates ? nr_rates : 2)) { |
| 2407 | snd_printk(KERN_ERR "%d:%u:%d : invalid FORMAT_TYPE desc\n", |
Clemens Ladisch | 27d10f5 | 2005-05-02 08:51:26 +0200 | [diff] [blame] | 2408 | chip->dev->devnum, fp->iface, fp->altsetting); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2409 | return -1; |
| 2410 | } |
| 2411 | |
| 2412 | if (nr_rates) { |
| 2413 | /* |
| 2414 | * build the rate table and bitmap flags |
| 2415 | */ |
Clemens Ladisch | 918f3a0 | 2007-08-13 17:40:54 +0200 | [diff] [blame] | 2416 | int r, idx; |
Clemens Ladisch | 918f3a0 | 2007-08-13 17:40:54 +0200 | [diff] [blame] | 2417 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2418 | fp->rate_table = kmalloc(sizeof(int) * nr_rates, GFP_KERNEL); |
| 2419 | if (fp->rate_table == NULL) { |
| 2420 | snd_printk(KERN_ERR "cannot malloc\n"); |
| 2421 | return -1; |
| 2422 | } |
| 2423 | |
Takashi Iwai | 0412558 | 2009-02-16 22:48:12 +0100 | [diff] [blame] | 2424 | fp->nr_rates = 0; |
| 2425 | fp->rate_min = fp->rate_max = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2426 | for (r = 0, idx = offset + 1; r < nr_rates; r++, idx += 3) { |
Clemens Ladisch | 987411b | 2006-11-20 14:14:39 +0100 | [diff] [blame] | 2427 | unsigned int rate = combine_triple(&fmt[idx]); |
Takashi Iwai | 0412558 | 2009-02-16 22:48:12 +0100 | [diff] [blame] | 2428 | if (!rate) |
| 2429 | continue; |
Clemens Ladisch | 987411b | 2006-11-20 14:14:39 +0100 | [diff] [blame] | 2430 | /* C-Media CM6501 mislabels its 96 kHz altsetting */ |
| 2431 | if (rate == 48000 && nr_rates == 1 && |
Joris van Rantwijk | 3b03cc5 | 2009-02-16 22:58:23 +0100 | [diff] [blame] | 2432 | (chip->usb_id == USB_ID(0x0d8c, 0x0201) || |
| 2433 | chip->usb_id == USB_ID(0x0d8c, 0x0102)) && |
Clemens Ladisch | 987411b | 2006-11-20 14:14:39 +0100 | [diff] [blame] | 2434 | fp->altsetting == 5 && fp->maxpacksize == 392) |
| 2435 | rate = 96000; |
Takashi Iwai | 0412558 | 2009-02-16 22:48:12 +0100 | [diff] [blame] | 2436 | fp->rate_table[fp->nr_rates] = rate; |
| 2437 | if (!fp->rate_min || rate < fp->rate_min) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2438 | fp->rate_min = rate; |
Takashi Iwai | 0412558 | 2009-02-16 22:48:12 +0100 | [diff] [blame] | 2439 | if (!fp->rate_max || rate > fp->rate_max) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2440 | fp->rate_max = rate; |
Clemens Ladisch | 918f3a0 | 2007-08-13 17:40:54 +0200 | [diff] [blame] | 2441 | fp->rates |= snd_pcm_rate_to_rate_bit(rate); |
Takashi Iwai | 0412558 | 2009-02-16 22:48:12 +0100 | [diff] [blame] | 2442 | fp->nr_rates++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2443 | } |
Takashi Iwai | 0412558 | 2009-02-16 22:48:12 +0100 | [diff] [blame] | 2444 | if (!fp->nr_rates) { |
Gregor Jasny | beb6011 | 2007-01-31 12:27:39 +0100 | [diff] [blame] | 2445 | hwc_debug("All rates were zero. Skipping format!\n"); |
| 2446 | return -1; |
| 2447 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2448 | } else { |
| 2449 | /* continuous rates */ |
| 2450 | fp->rates = SNDRV_PCM_RATE_CONTINUOUS; |
| 2451 | fp->rate_min = combine_triple(&fmt[offset + 1]); |
| 2452 | fp->rate_max = combine_triple(&fmt[offset + 4]); |
| 2453 | } |
| 2454 | return 0; |
| 2455 | } |
| 2456 | |
| 2457 | /* |
| 2458 | * parse the format type I and III descriptors |
| 2459 | */ |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 2460 | static int parse_audio_format_i(struct snd_usb_audio *chip, struct audioformat *fp, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2461 | int format, unsigned char *fmt) |
| 2462 | { |
| 2463 | int pcm_format; |
| 2464 | |
| 2465 | if (fmt[3] == USB_FORMAT_TYPE_III) { |
| 2466 | /* FIXME: the format type is really IECxxx |
| 2467 | * but we give normal PCM format to get the existing |
| 2468 | * apps working... |
| 2469 | */ |
Thibault Le Meur | cac19c3 | 2007-07-13 11:50:23 +0200 | [diff] [blame] | 2470 | switch (chip->usb_id) { |
| 2471 | |
| 2472 | case USB_ID(0x0763, 0x2003): /* M-Audio Audiophile USB */ |
| 2473 | if (device_setup[chip->index] == 0x00 && |
| 2474 | fp->altsetting == 6) |
| 2475 | pcm_format = SNDRV_PCM_FORMAT_S16_BE; |
| 2476 | else |
| 2477 | pcm_format = SNDRV_PCM_FORMAT_S16_LE; |
| 2478 | break; |
| 2479 | default: |
| 2480 | pcm_format = SNDRV_PCM_FORMAT_S16_LE; |
| 2481 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2482 | } else { |
Clemens Ladisch | 27d10f5 | 2005-05-02 08:51:26 +0200 | [diff] [blame] | 2483 | pcm_format = parse_audio_format_i_type(chip, fp, format, fmt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2484 | if (pcm_format < 0) |
| 2485 | return -1; |
| 2486 | } |
| 2487 | fp->format = pcm_format; |
| 2488 | fp->channels = fmt[4]; |
| 2489 | if (fp->channels < 1) { |
| 2490 | snd_printk(KERN_ERR "%d:%u:%d : invalid channels %d\n", |
Clemens Ladisch | 27d10f5 | 2005-05-02 08:51:26 +0200 | [diff] [blame] | 2491 | chip->dev->devnum, fp->iface, fp->altsetting, fp->channels); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2492 | return -1; |
| 2493 | } |
Clemens Ladisch | 27d10f5 | 2005-05-02 08:51:26 +0200 | [diff] [blame] | 2494 | return parse_audio_format_rates(chip, fp, fmt, 7); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2495 | } |
| 2496 | |
| 2497 | /* |
| 2498 | * prase the format type II descriptor |
| 2499 | */ |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 2500 | static int parse_audio_format_ii(struct snd_usb_audio *chip, struct audioformat *fp, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2501 | int format, unsigned char *fmt) |
| 2502 | { |
| 2503 | int brate, framesize; |
| 2504 | switch (format) { |
| 2505 | case USB_AUDIO_FORMAT_AC3: |
| 2506 | /* FIXME: there is no AC3 format defined yet */ |
| 2507 | // fp->format = SNDRV_PCM_FORMAT_AC3; |
| 2508 | fp->format = SNDRV_PCM_FORMAT_U8; /* temporarily hack to receive byte streams */ |
| 2509 | break; |
| 2510 | case USB_AUDIO_FORMAT_MPEG: |
| 2511 | fp->format = SNDRV_PCM_FORMAT_MPEG; |
| 2512 | break; |
| 2513 | default: |
Andreas Bergmeier | b9d710b | 2009-01-24 12:15:14 +0100 | [diff] [blame] | 2514 | snd_printd(KERN_INFO "%d:%u:%d : unknown format tag %#x is detected. processed as MPEG.\n", |
Clemens Ladisch | 27d10f5 | 2005-05-02 08:51:26 +0200 | [diff] [blame] | 2515 | chip->dev->devnum, fp->iface, fp->altsetting, format); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2516 | fp->format = SNDRV_PCM_FORMAT_MPEG; |
| 2517 | break; |
| 2518 | } |
| 2519 | fp->channels = 1; |
| 2520 | brate = combine_word(&fmt[4]); /* fmt[4,5] : wMaxBitRate (in kbps) */ |
| 2521 | framesize = combine_word(&fmt[6]); /* fmt[6,7]: wSamplesPerFrame */ |
| 2522 | snd_printd(KERN_INFO "found format II with max.bitrate = %d, frame size=%d\n", brate, framesize); |
| 2523 | fp->frame_size = framesize; |
Clemens Ladisch | 27d10f5 | 2005-05-02 08:51:26 +0200 | [diff] [blame] | 2524 | return parse_audio_format_rates(chip, fp, fmt, 8); /* fmt[8..] sample rates */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2525 | } |
| 2526 | |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 2527 | static int parse_audio_format(struct snd_usb_audio *chip, struct audioformat *fp, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2528 | int format, unsigned char *fmt, int stream) |
| 2529 | { |
| 2530 | int err; |
| 2531 | |
| 2532 | switch (fmt[3]) { |
| 2533 | case USB_FORMAT_TYPE_I: |
| 2534 | case USB_FORMAT_TYPE_III: |
Clemens Ladisch | 27d10f5 | 2005-05-02 08:51:26 +0200 | [diff] [blame] | 2535 | err = parse_audio_format_i(chip, fp, format, fmt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2536 | break; |
| 2537 | case USB_FORMAT_TYPE_II: |
Clemens Ladisch | 27d10f5 | 2005-05-02 08:51:26 +0200 | [diff] [blame] | 2538 | err = parse_audio_format_ii(chip, fp, format, fmt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2539 | break; |
| 2540 | default: |
| 2541 | snd_printd(KERN_INFO "%d:%u:%d : format type %d is not supported yet\n", |
Clemens Ladisch | 27d10f5 | 2005-05-02 08:51:26 +0200 | [diff] [blame] | 2542 | chip->dev->devnum, fp->iface, fp->altsetting, fmt[3]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2543 | return -1; |
| 2544 | } |
| 2545 | fp->fmt_type = fmt[3]; |
| 2546 | if (err < 0) |
| 2547 | return err; |
| 2548 | #if 1 |
Clemens Ladisch | 3315937 | 2006-01-13 08:11:22 +0100 | [diff] [blame] | 2549 | /* FIXME: temporary hack for extigy/audigy 2 nx/zs */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2550 | /* extigy apparently supports sample rates other than 48k |
| 2551 | * but not in ordinary way. so we enable only 48k atm. |
| 2552 | */ |
Clemens Ladisch | 27d10f5 | 2005-05-02 08:51:26 +0200 | [diff] [blame] | 2553 | if (chip->usb_id == USB_ID(0x041e, 0x3000) || |
Clemens Ladisch | 3315937 | 2006-01-13 08:11:22 +0100 | [diff] [blame] | 2554 | chip->usb_id == USB_ID(0x041e, 0x3020) || |
| 2555 | chip->usb_id == USB_ID(0x041e, 0x3061)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2556 | if (fmt[3] == USB_FORMAT_TYPE_I && |
Clemens Ladisch | 8c1872d | 2005-04-28 09:31:53 +0200 | [diff] [blame] | 2557 | fp->rates != SNDRV_PCM_RATE_48000 && |
| 2558 | fp->rates != SNDRV_PCM_RATE_96000) |
Clemens Ladisch | b4d3f9d | 2005-06-27 08:18:27 +0200 | [diff] [blame] | 2559 | return -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2560 | } |
| 2561 | #endif |
| 2562 | return 0; |
| 2563 | } |
| 2564 | |
Clemens Ladisch | 744b89e | 2009-04-03 09:45:01 +0200 | [diff] [blame^] | 2565 | static unsigned char parse_datainterval(struct snd_usb_audio *chip, |
| 2566 | struct usb_host_interface *alts) |
| 2567 | { |
| 2568 | if (snd_usb_get_speed(chip->dev) == USB_SPEED_HIGH && |
| 2569 | get_endpoint(alts, 0)->bInterval >= 1 && |
| 2570 | get_endpoint(alts, 0)->bInterval <= 4) |
| 2571 | return get_endpoint(alts, 0)->bInterval - 1; |
| 2572 | else |
| 2573 | return 0; |
| 2574 | } |
| 2575 | |
Thibault LE MEUR | e311334 | 2006-03-14 11:44:53 +0100 | [diff] [blame] | 2576 | static int audiophile_skip_setting_quirk(struct snd_usb_audio *chip, |
| 2577 | int iface, int altno); |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 2578 | static int parse_audio_endpoints(struct snd_usb_audio *chip, int iface_no) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2579 | { |
| 2580 | struct usb_device *dev; |
| 2581 | struct usb_interface *iface; |
| 2582 | struct usb_host_interface *alts; |
| 2583 | struct usb_interface_descriptor *altsd; |
| 2584 | int i, altno, err, stream; |
| 2585 | int format; |
| 2586 | struct audioformat *fp; |
| 2587 | unsigned char *fmt, *csep; |
Pavel Machek | b9d43bc | 2008-04-14 13:12:47 +0200 | [diff] [blame] | 2588 | int num; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2589 | |
| 2590 | dev = chip->dev; |
| 2591 | |
| 2592 | /* parse the interface's altsettings */ |
| 2593 | iface = usb_ifnum_to_if(dev, iface_no); |
Pavel Machek | b9d43bc | 2008-04-14 13:12:47 +0200 | [diff] [blame] | 2594 | |
| 2595 | num = iface->num_altsetting; |
| 2596 | |
| 2597 | /* |
| 2598 | * Dallas DS4201 workaround: It presents 5 altsettings, but the last |
| 2599 | * one misses syncpipe, and does not produce any sound. |
| 2600 | */ |
| 2601 | if (chip->usb_id == USB_ID(0x04fa, 0x4201)) |
| 2602 | num = 4; |
| 2603 | |
| 2604 | for (i = 0; i < num; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2605 | alts = &iface->altsetting[i]; |
| 2606 | altsd = get_iface_desc(alts); |
| 2607 | /* skip invalid one */ |
| 2608 | if ((altsd->bInterfaceClass != USB_CLASS_AUDIO && |
| 2609 | altsd->bInterfaceClass != USB_CLASS_VENDOR_SPEC) || |
| 2610 | (altsd->bInterfaceSubClass != USB_SUBCLASS_AUDIO_STREAMING && |
| 2611 | altsd->bInterfaceSubClass != USB_SUBCLASS_VENDOR_SPEC) || |
| 2612 | altsd->bNumEndpoints < 1 || |
| 2613 | le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize) == 0) |
| 2614 | continue; |
| 2615 | /* must be isochronous */ |
| 2616 | if ((get_endpoint(alts, 0)->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) != |
| 2617 | USB_ENDPOINT_XFER_ISOC) |
| 2618 | continue; |
| 2619 | /* check direction */ |
| 2620 | stream = (get_endpoint(alts, 0)->bEndpointAddress & USB_DIR_IN) ? |
| 2621 | SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK; |
| 2622 | altno = altsd->bAlternateSetting; |
Thibault LE MEUR | e311334 | 2006-03-14 11:44:53 +0100 | [diff] [blame] | 2623 | |
| 2624 | /* audiophile usb: skip altsets incompatible with device_setup |
| 2625 | */ |
| 2626 | if (chip->usb_id == USB_ID(0x0763, 0x2003) && |
| 2627 | audiophile_skip_setting_quirk(chip, iface_no, altno)) |
| 2628 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2629 | |
| 2630 | /* get audio formats */ |
| 2631 | fmt = snd_usb_find_csint_desc(alts->extra, alts->extralen, NULL, AS_GENERAL); |
| 2632 | if (!fmt) { |
| 2633 | snd_printk(KERN_ERR "%d:%u:%d : AS_GENERAL descriptor not found\n", |
| 2634 | dev->devnum, iface_no, altno); |
| 2635 | continue; |
| 2636 | } |
| 2637 | |
| 2638 | if (fmt[0] < 7) { |
| 2639 | snd_printk(KERN_ERR "%d:%u:%d : invalid AS_GENERAL desc\n", |
| 2640 | dev->devnum, iface_no, altno); |
| 2641 | continue; |
| 2642 | } |
| 2643 | |
| 2644 | format = (fmt[6] << 8) | fmt[5]; /* remember the format value */ |
| 2645 | |
| 2646 | /* get format type */ |
| 2647 | fmt = snd_usb_find_csint_desc(alts->extra, alts->extralen, NULL, FORMAT_TYPE); |
| 2648 | if (!fmt) { |
| 2649 | snd_printk(KERN_ERR "%d:%u:%d : no FORMAT_TYPE desc\n", |
| 2650 | dev->devnum, iface_no, altno); |
| 2651 | continue; |
| 2652 | } |
| 2653 | if (fmt[0] < 8) { |
| 2654 | snd_printk(KERN_ERR "%d:%u:%d : invalid FORMAT_TYPE desc\n", |
| 2655 | dev->devnum, iface_no, altno); |
| 2656 | continue; |
| 2657 | } |
| 2658 | |
| 2659 | csep = snd_usb_find_desc(alts->endpoint[0].extra, alts->endpoint[0].extralen, NULL, USB_DT_CS_ENDPOINT); |
| 2660 | /* Creamware Noah has this descriptor after the 2nd endpoint */ |
| 2661 | if (!csep && altsd->bNumEndpoints >= 2) |
| 2662 | csep = snd_usb_find_desc(alts->endpoint[1].extra, alts->endpoint[1].extralen, NULL, USB_DT_CS_ENDPOINT); |
| 2663 | if (!csep || csep[0] < 7 || csep[2] != EP_GENERAL) { |
Takashi Iwai | f8c7579 | 2006-05-18 14:47:03 +0200 | [diff] [blame] | 2664 | snd_printk(KERN_WARNING "%d:%u:%d : no or invalid" |
Clemens Ladisch | faf8d11 | 2006-05-18 09:35:15 +0200 | [diff] [blame] | 2665 | " class specific endpoint descriptor\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2666 | dev->devnum, iface_no, altno); |
Clemens Ladisch | faf8d11 | 2006-05-18 09:35:15 +0200 | [diff] [blame] | 2667 | csep = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2668 | } |
| 2669 | |
Panagiotis Issaris | 59feddb | 2006-07-25 15:28:03 +0200 | [diff] [blame] | 2670 | fp = kzalloc(sizeof(*fp), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2671 | if (! fp) { |
| 2672 | snd_printk(KERN_ERR "cannot malloc\n"); |
| 2673 | return -ENOMEM; |
| 2674 | } |
| 2675 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2676 | fp->iface = iface_no; |
| 2677 | fp->altsetting = altno; |
| 2678 | fp->altset_idx = i; |
| 2679 | fp->endpoint = get_endpoint(alts, 0)->bEndpointAddress; |
| 2680 | fp->ep_attr = get_endpoint(alts, 0)->bmAttributes; |
Clemens Ladisch | 744b89e | 2009-04-03 09:45:01 +0200 | [diff] [blame^] | 2681 | fp->datainterval = parse_datainterval(chip, alts); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2682 | fp->maxpacksize = le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize); |
Clemens Ladisch | 573567e | 2005-06-27 08:17:30 +0200 | [diff] [blame] | 2683 | if (snd_usb_get_speed(dev) == USB_SPEED_HIGH) |
| 2684 | fp->maxpacksize = (((fp->maxpacksize >> 11) & 3) + 1) |
| 2685 | * (fp->maxpacksize & 0x7ff); |
Clemens Ladisch | faf8d11 | 2006-05-18 09:35:15 +0200 | [diff] [blame] | 2686 | fp->attributes = csep ? csep[3] : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2687 | |
| 2688 | /* some quirks for attributes here */ |
| 2689 | |
Clemens Ladisch | c3f9329 | 2005-05-04 14:56:04 +0200 | [diff] [blame] | 2690 | switch (chip->usb_id) { |
| 2691 | case USB_ID(0x0a92, 0x0053): /* AudioTrak Optoplay */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2692 | /* Optoplay sets the sample rate attribute although |
| 2693 | * it seems not supporting it in fact. |
| 2694 | */ |
| 2695 | fp->attributes &= ~EP_CS_ATTR_SAMPLE_RATE; |
Clemens Ladisch | c3f9329 | 2005-05-04 14:56:04 +0200 | [diff] [blame] | 2696 | break; |
| 2697 | case USB_ID(0x041e, 0x3020): /* Creative SB Audigy 2 NX */ |
| 2698 | case USB_ID(0x0763, 0x2003): /* M-Audio Audiophile USB */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2699 | /* doesn't set the sample rate attribute, but supports it */ |
| 2700 | fp->attributes |= EP_CS_ATTR_SAMPLE_RATE; |
Clemens Ladisch | c3f9329 | 2005-05-04 14:56:04 +0200 | [diff] [blame] | 2701 | break; |
| 2702 | case USB_ID(0x047f, 0x0ca1): /* plantronics headset */ |
| 2703 | case USB_ID(0x077d, 0x07af): /* Griffin iMic (note that there is |
| 2704 | an older model 77d:223) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2705 | /* |
| 2706 | * plantronics headset and Griffin iMic have set adaptive-in |
| 2707 | * although it's really not... |
| 2708 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2709 | fp->ep_attr &= ~EP_ATTR_MASK; |
| 2710 | if (stream == SNDRV_PCM_STREAM_PLAYBACK) |
| 2711 | fp->ep_attr |= EP_ATTR_ADAPTIVE; |
| 2712 | else |
| 2713 | fp->ep_attr |= EP_ATTR_SYNC; |
Clemens Ladisch | c3f9329 | 2005-05-04 14:56:04 +0200 | [diff] [blame] | 2714 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2715 | } |
| 2716 | |
| 2717 | /* ok, let's parse further... */ |
Clemens Ladisch | 27d10f5 | 2005-05-02 08:51:26 +0200 | [diff] [blame] | 2718 | if (parse_audio_format(chip, fp, format, fmt, stream) < 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2719 | kfree(fp->rate_table); |
| 2720 | kfree(fp); |
| 2721 | continue; |
| 2722 | } |
| 2723 | |
Andreas Bergmeier | b9d710b | 2009-01-24 12:15:14 +0100 | [diff] [blame] | 2724 | snd_printdd(KERN_INFO "%d:%u:%d: add audio endpoint %#x\n", dev->devnum, iface_no, altno, fp->endpoint); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2725 | err = add_audio_endpoint(chip, stream, fp); |
| 2726 | if (err < 0) { |
| 2727 | kfree(fp->rate_table); |
| 2728 | kfree(fp); |
| 2729 | return err; |
| 2730 | } |
| 2731 | /* try to set the interface... */ |
| 2732 | usb_set_interface(chip->dev, iface_no, altno); |
| 2733 | init_usb_pitch(chip->dev, iface_no, alts, fp); |
| 2734 | init_usb_sample_rate(chip->dev, iface_no, alts, fp, fp->rate_max); |
| 2735 | } |
| 2736 | return 0; |
| 2737 | } |
| 2738 | |
| 2739 | |
| 2740 | /* |
| 2741 | * disconnect streams |
| 2742 | * called from snd_usb_audio_disconnect() |
| 2743 | */ |
Clemens Ladisch | ee73339 | 2005-04-25 10:34:13 +0200 | [diff] [blame] | 2744 | static void snd_usb_stream_disconnect(struct list_head *head) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2745 | { |
| 2746 | int idx; |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 2747 | struct snd_usb_stream *as; |
| 2748 | struct snd_usb_substream *subs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2749 | |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 2750 | as = list_entry(head, struct snd_usb_stream, list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2751 | for (idx = 0; idx < 2; idx++) { |
| 2752 | subs = &as->substream[idx]; |
| 2753 | if (!subs->num_formats) |
| 2754 | return; |
| 2755 | release_substream_urbs(subs, 1); |
| 2756 | subs->interface = -1; |
| 2757 | } |
| 2758 | } |
| 2759 | |
| 2760 | /* |
| 2761 | * parse audio control descriptor and create pcm/midi streams |
| 2762 | */ |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 2763 | static int snd_usb_create_streams(struct snd_usb_audio *chip, int ctrlif) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2764 | { |
| 2765 | struct usb_device *dev = chip->dev; |
| 2766 | struct usb_host_interface *host_iface; |
| 2767 | struct usb_interface *iface; |
| 2768 | unsigned char *p1; |
| 2769 | int i, j; |
| 2770 | |
| 2771 | /* find audiocontrol interface */ |
| 2772 | host_iface = &usb_ifnum_to_if(dev, ctrlif)->altsetting[0]; |
| 2773 | if (!(p1 = snd_usb_find_csint_desc(host_iface->extra, host_iface->extralen, NULL, HEADER))) { |
| 2774 | snd_printk(KERN_ERR "cannot find HEADER\n"); |
| 2775 | return -EINVAL; |
| 2776 | } |
| 2777 | if (! p1[7] || p1[0] < 8 + p1[7]) { |
| 2778 | snd_printk(KERN_ERR "invalid HEADER\n"); |
| 2779 | return -EINVAL; |
| 2780 | } |
| 2781 | |
| 2782 | /* |
| 2783 | * parse all USB audio streaming interfaces |
| 2784 | */ |
| 2785 | for (i = 0; i < p1[7]; i++) { |
| 2786 | struct usb_host_interface *alts; |
| 2787 | struct usb_interface_descriptor *altsd; |
| 2788 | j = p1[8 + i]; |
| 2789 | iface = usb_ifnum_to_if(dev, j); |
| 2790 | if (!iface) { |
| 2791 | snd_printk(KERN_ERR "%d:%u:%d : does not exist\n", |
| 2792 | dev->devnum, ctrlif, j); |
| 2793 | continue; |
| 2794 | } |
| 2795 | if (usb_interface_claimed(iface)) { |
| 2796 | snd_printdd(KERN_INFO "%d:%d:%d: skipping, already claimed\n", dev->devnum, ctrlif, j); |
| 2797 | continue; |
| 2798 | } |
| 2799 | alts = &iface->altsetting[0]; |
| 2800 | altsd = get_iface_desc(alts); |
| 2801 | if ((altsd->bInterfaceClass == USB_CLASS_AUDIO || |
| 2802 | altsd->bInterfaceClass == USB_CLASS_VENDOR_SPEC) && |
| 2803 | altsd->bInterfaceSubClass == USB_SUBCLASS_MIDI_STREAMING) { |
| 2804 | if (snd_usb_create_midi_interface(chip, iface, NULL) < 0) { |
| 2805 | snd_printk(KERN_ERR "%d:%u:%d: cannot create sequencer device\n", dev->devnum, ctrlif, j); |
| 2806 | continue; |
| 2807 | } |
| 2808 | usb_driver_claim_interface(&usb_audio_driver, iface, (void *)-1L); |
| 2809 | continue; |
| 2810 | } |
| 2811 | if ((altsd->bInterfaceClass != USB_CLASS_AUDIO && |
| 2812 | altsd->bInterfaceClass != USB_CLASS_VENDOR_SPEC) || |
| 2813 | altsd->bInterfaceSubClass != USB_SUBCLASS_AUDIO_STREAMING) { |
| 2814 | snd_printdd(KERN_ERR "%d:%u:%d: skipping non-supported interface %d\n", dev->devnum, ctrlif, j, altsd->bInterfaceClass); |
| 2815 | /* skip non-supported classes */ |
| 2816 | continue; |
| 2817 | } |
Clemens Ladisch | 076639f | 2007-08-21 08:56:54 +0200 | [diff] [blame] | 2818 | if (snd_usb_get_speed(dev) == USB_SPEED_LOW) { |
| 2819 | snd_printk(KERN_ERR "low speed audio streaming not supported\n"); |
| 2820 | continue; |
| 2821 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2822 | if (! parse_audio_endpoints(chip, j)) { |
| 2823 | usb_set_interface(dev, j, 0); /* reset the current interface */ |
| 2824 | usb_driver_claim_interface(&usb_audio_driver, iface, (void *)-1L); |
| 2825 | } |
| 2826 | } |
| 2827 | |
| 2828 | return 0; |
| 2829 | } |
| 2830 | |
| 2831 | /* |
| 2832 | * create a stream for an endpoint/altsetting without proper descriptors |
| 2833 | */ |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 2834 | static int create_fixed_stream_quirk(struct snd_usb_audio *chip, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2835 | struct usb_interface *iface, |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 2836 | const struct snd_usb_audio_quirk *quirk) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2837 | { |
| 2838 | struct audioformat *fp; |
| 2839 | struct usb_host_interface *alts; |
| 2840 | int stream, err; |
Al Viro | b4482a4 | 2007-10-14 19:35:40 +0100 | [diff] [blame] | 2841 | unsigned *rate_table = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2842 | |
Alexey Dobriyan | 52978be | 2006-09-30 23:27:21 -0700 | [diff] [blame] | 2843 | fp = kmemdup(quirk->data, sizeof(*fp), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2844 | if (! fp) { |
Alexey Dobriyan | 52978be | 2006-09-30 23:27:21 -0700 | [diff] [blame] | 2845 | snd_printk(KERN_ERR "cannot memdup\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2846 | return -ENOMEM; |
| 2847 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2848 | if (fp->nr_rates > 0) { |
| 2849 | rate_table = kmalloc(sizeof(int) * fp->nr_rates, GFP_KERNEL); |
| 2850 | if (!rate_table) { |
| 2851 | kfree(fp); |
| 2852 | return -ENOMEM; |
| 2853 | } |
| 2854 | memcpy(rate_table, fp->rate_table, sizeof(int) * fp->nr_rates); |
| 2855 | fp->rate_table = rate_table; |
| 2856 | } |
| 2857 | |
| 2858 | stream = (fp->endpoint & USB_DIR_IN) |
| 2859 | ? SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK; |
| 2860 | err = add_audio_endpoint(chip, stream, fp); |
| 2861 | if (err < 0) { |
| 2862 | kfree(fp); |
| 2863 | kfree(rate_table); |
| 2864 | return err; |
| 2865 | } |
| 2866 | if (fp->iface != get_iface_desc(&iface->altsetting[0])->bInterfaceNumber || |
| 2867 | fp->altset_idx >= iface->num_altsetting) { |
| 2868 | kfree(fp); |
| 2869 | kfree(rate_table); |
| 2870 | return -EINVAL; |
| 2871 | } |
| 2872 | alts = &iface->altsetting[fp->altset_idx]; |
Clemens Ladisch | 744b89e | 2009-04-03 09:45:01 +0200 | [diff] [blame^] | 2873 | fp->datainterval = parse_datainterval(chip, alts); |
Clemens Ladisch | 894dcd7 | 2009-02-06 08:13:07 +0100 | [diff] [blame] | 2874 | fp->maxpacksize = le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2875 | usb_set_interface(chip->dev, fp->iface, 0); |
| 2876 | init_usb_pitch(chip->dev, fp->iface, alts, fp); |
| 2877 | init_usb_sample_rate(chip->dev, fp->iface, alts, fp, fp->rate_max); |
| 2878 | return 0; |
| 2879 | } |
| 2880 | |
| 2881 | /* |
| 2882 | * create a stream for an interface with proper descriptors |
| 2883 | */ |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 2884 | static int create_standard_audio_quirk(struct snd_usb_audio *chip, |
Clemens Ladisch | d1bda04 | 2005-09-14 08:36:03 +0200 | [diff] [blame] | 2885 | struct usb_interface *iface, |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 2886 | const struct snd_usb_audio_quirk *quirk) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2887 | { |
| 2888 | struct usb_host_interface *alts; |
| 2889 | struct usb_interface_descriptor *altsd; |
| 2890 | int err; |
| 2891 | |
| 2892 | alts = &iface->altsetting[0]; |
| 2893 | altsd = get_iface_desc(alts); |
Clemens Ladisch | d1bda04 | 2005-09-14 08:36:03 +0200 | [diff] [blame] | 2894 | err = parse_audio_endpoints(chip, altsd->bInterfaceNumber); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2895 | if (err < 0) { |
| 2896 | snd_printk(KERN_ERR "cannot setup if %d: error %d\n", |
| 2897 | altsd->bInterfaceNumber, err); |
| 2898 | return err; |
| 2899 | } |
Clemens Ladisch | d1bda04 | 2005-09-14 08:36:03 +0200 | [diff] [blame] | 2900 | /* reset the current interface */ |
| 2901 | usb_set_interface(chip->dev, altsd->bInterfaceNumber, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2902 | return 0; |
| 2903 | } |
| 2904 | |
| 2905 | /* |
Pedro Lopez-Cabanillas | 310e0dc | 2008-10-04 16:27:36 +0200 | [diff] [blame] | 2906 | * Create a stream for an Edirol UA-700/UA-25/UA-4FX interface. |
| 2907 | * The only way to detect the sample rate is by looking at wMaxPacketSize. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2908 | */ |
Pedro Lopez-Cabanillas | 310e0dc | 2008-10-04 16:27:36 +0200 | [diff] [blame] | 2909 | static int create_uaxx_quirk(struct snd_usb_audio *chip, |
| 2910 | struct usb_interface *iface, |
| 2911 | const struct snd_usb_audio_quirk *quirk) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2912 | { |
| 2913 | static const struct audioformat ua_format = { |
| 2914 | .format = SNDRV_PCM_FORMAT_S24_3LE, |
| 2915 | .channels = 2, |
| 2916 | .fmt_type = USB_FORMAT_TYPE_I, |
| 2917 | .altsetting = 1, |
| 2918 | .altset_idx = 1, |
| 2919 | .rates = SNDRV_PCM_RATE_CONTINUOUS, |
| 2920 | }; |
| 2921 | struct usb_host_interface *alts; |
| 2922 | struct usb_interface_descriptor *altsd; |
| 2923 | struct audioformat *fp; |
| 2924 | int stream, err; |
| 2925 | |
Pedro Lopez-Cabanillas | 310e0dc | 2008-10-04 16:27:36 +0200 | [diff] [blame] | 2926 | /* both PCM and MIDI interfaces have 2 or more altsettings */ |
| 2927 | if (iface->num_altsetting < 2) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2928 | return -ENXIO; |
| 2929 | alts = &iface->altsetting[1]; |
| 2930 | altsd = get_iface_desc(alts); |
| 2931 | |
Pedro Lopez-Cabanillas | 59b3db6 | 2008-10-07 20:54:18 +0200 | [diff] [blame] | 2932 | if (altsd->bNumEndpoints == 2) { |
| 2933 | static const struct snd_usb_midi_endpoint_info ua700_ep = { |
| 2934 | .out_cables = 0x0003, |
| 2935 | .in_cables = 0x0003 |
| 2936 | }; |
| 2937 | static const struct snd_usb_audio_quirk ua700_quirk = { |
| 2938 | .type = QUIRK_MIDI_FIXED_ENDPOINT, |
| 2939 | .data = &ua700_ep |
| 2940 | }; |
| 2941 | static const struct snd_usb_midi_endpoint_info uaxx_ep = { |
| 2942 | .out_cables = 0x0001, |
| 2943 | .in_cables = 0x0001 |
| 2944 | }; |
| 2945 | static const struct snd_usb_audio_quirk uaxx_quirk = { |
| 2946 | .type = QUIRK_MIDI_FIXED_ENDPOINT, |
| 2947 | .data = &uaxx_ep |
| 2948 | }; |
| 2949 | if (chip->usb_id == USB_ID(0x0582, 0x002b)) |
| 2950 | return snd_usb_create_midi_interface(chip, iface, |
| 2951 | &ua700_quirk); |
| 2952 | else |
| 2953 | return snd_usb_create_midi_interface(chip, iface, |
| 2954 | &uaxx_quirk); |
| 2955 | } |
| 2956 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2957 | if (altsd->bNumEndpoints != 1) |
| 2958 | return -ENXIO; |
| 2959 | |
| 2960 | fp = kmalloc(sizeof(*fp), GFP_KERNEL); |
| 2961 | if (!fp) |
| 2962 | return -ENOMEM; |
| 2963 | memcpy(fp, &ua_format, sizeof(*fp)); |
| 2964 | |
| 2965 | fp->iface = altsd->bInterfaceNumber; |
| 2966 | fp->endpoint = get_endpoint(alts, 0)->bEndpointAddress; |
| 2967 | fp->ep_attr = get_endpoint(alts, 0)->bmAttributes; |
Clemens Ladisch | 744b89e | 2009-04-03 09:45:01 +0200 | [diff] [blame^] | 2968 | fp->datainterval = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2969 | fp->maxpacksize = le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize); |
| 2970 | |
| 2971 | switch (fp->maxpacksize) { |
| 2972 | case 0x120: |
| 2973 | fp->rate_max = fp->rate_min = 44100; |
| 2974 | break; |
| 2975 | case 0x138: |
| 2976 | case 0x140: |
| 2977 | fp->rate_max = fp->rate_min = 48000; |
| 2978 | break; |
| 2979 | case 0x258: |
| 2980 | case 0x260: |
| 2981 | fp->rate_max = fp->rate_min = 96000; |
| 2982 | break; |
| 2983 | default: |
| 2984 | snd_printk(KERN_ERR "unknown sample rate\n"); |
| 2985 | kfree(fp); |
| 2986 | return -ENXIO; |
| 2987 | } |
| 2988 | |
| 2989 | stream = (fp->endpoint & USB_DIR_IN) |
| 2990 | ? SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK; |
| 2991 | err = add_audio_endpoint(chip, stream, fp); |
| 2992 | if (err < 0) { |
| 2993 | kfree(fp); |
| 2994 | return err; |
| 2995 | } |
| 2996 | usb_set_interface(chip->dev, fp->iface, 0); |
| 2997 | return 0; |
| 2998 | } |
| 2999 | |
| 3000 | /* |
| 3001 | * Create a stream for an Edirol UA-1000 interface. |
| 3002 | */ |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 3003 | static int create_ua1000_quirk(struct snd_usb_audio *chip, |
Clemens Ladisch | 854af95 | 2005-07-25 16:19:10 +0200 | [diff] [blame] | 3004 | struct usb_interface *iface, |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 3005 | const struct snd_usb_audio_quirk *quirk) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3006 | { |
| 3007 | static const struct audioformat ua1000_format = { |
| 3008 | .format = SNDRV_PCM_FORMAT_S32_LE, |
| 3009 | .fmt_type = USB_FORMAT_TYPE_I, |
| 3010 | .altsetting = 1, |
| 3011 | .altset_idx = 1, |
| 3012 | .attributes = 0, |
| 3013 | .rates = SNDRV_PCM_RATE_CONTINUOUS, |
| 3014 | }; |
| 3015 | struct usb_host_interface *alts; |
| 3016 | struct usb_interface_descriptor *altsd; |
| 3017 | struct audioformat *fp; |
| 3018 | int stream, err; |
| 3019 | |
| 3020 | if (iface->num_altsetting != 2) |
| 3021 | return -ENXIO; |
| 3022 | alts = &iface->altsetting[1]; |
| 3023 | altsd = get_iface_desc(alts); |
Ben Williamson | c4a87ef | 2006-06-19 17:20:09 +0200 | [diff] [blame] | 3024 | if (alts->extralen != 11 || alts->extra[1] != USB_DT_CS_INTERFACE || |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3025 | altsd->bNumEndpoints != 1) |
| 3026 | return -ENXIO; |
| 3027 | |
Alexey Dobriyan | 52978be | 2006-09-30 23:27:21 -0700 | [diff] [blame] | 3028 | fp = kmemdup(&ua1000_format, sizeof(*fp), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3029 | if (!fp) |
| 3030 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3031 | |
| 3032 | fp->channels = alts->extra[4]; |
| 3033 | fp->iface = altsd->bInterfaceNumber; |
| 3034 | fp->endpoint = get_endpoint(alts, 0)->bEndpointAddress; |
| 3035 | fp->ep_attr = get_endpoint(alts, 0)->bmAttributes; |
Clemens Ladisch | 744b89e | 2009-04-03 09:45:01 +0200 | [diff] [blame^] | 3036 | fp->datainterval = parse_datainterval(chip, alts); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3037 | fp->maxpacksize = le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize); |
| 3038 | fp->rate_max = fp->rate_min = combine_triple(&alts->extra[8]); |
| 3039 | |
| 3040 | stream = (fp->endpoint & USB_DIR_IN) |
| 3041 | ? SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK; |
| 3042 | err = add_audio_endpoint(chip, stream, fp); |
| 3043 | if (err < 0) { |
| 3044 | kfree(fp); |
| 3045 | return err; |
| 3046 | } |
| 3047 | /* FIXME: playback must be synchronized to capture */ |
| 3048 | usb_set_interface(chip->dev, fp->iface, 0); |
| 3049 | return 0; |
| 3050 | } |
| 3051 | |
Bjoern Fay | d0b0fac | 2007-02-05 12:27:21 +0100 | [diff] [blame] | 3052 | /* |
| 3053 | * Create a stream for an Edirol UA-101 interface. |
| 3054 | * Copy, paste and modify from Edirol UA-1000 |
| 3055 | */ |
| 3056 | static int create_ua101_quirk(struct snd_usb_audio *chip, |
| 3057 | struct usb_interface *iface, |
| 3058 | const struct snd_usb_audio_quirk *quirk) |
| 3059 | { |
| 3060 | static const struct audioformat ua101_format = { |
| 3061 | .format = SNDRV_PCM_FORMAT_S32_LE, |
| 3062 | .fmt_type = USB_FORMAT_TYPE_I, |
| 3063 | .altsetting = 1, |
| 3064 | .altset_idx = 1, |
| 3065 | .attributes = 0, |
| 3066 | .rates = SNDRV_PCM_RATE_CONTINUOUS, |
| 3067 | }; |
| 3068 | struct usb_host_interface *alts; |
| 3069 | struct usb_interface_descriptor *altsd; |
| 3070 | struct audioformat *fp; |
| 3071 | int stream, err; |
| 3072 | |
| 3073 | if (iface->num_altsetting != 2) |
| 3074 | return -ENXIO; |
| 3075 | alts = &iface->altsetting[1]; |
| 3076 | altsd = get_iface_desc(alts); |
| 3077 | if (alts->extralen != 18 || alts->extra[1] != USB_DT_CS_INTERFACE || |
| 3078 | altsd->bNumEndpoints != 1) |
| 3079 | return -ENXIO; |
| 3080 | |
| 3081 | fp = kmemdup(&ua101_format, sizeof(*fp), GFP_KERNEL); |
| 3082 | if (!fp) |
| 3083 | return -ENOMEM; |
| 3084 | |
| 3085 | fp->channels = alts->extra[11]; |
| 3086 | fp->iface = altsd->bInterfaceNumber; |
| 3087 | fp->endpoint = get_endpoint(alts, 0)->bEndpointAddress; |
| 3088 | fp->ep_attr = get_endpoint(alts, 0)->bmAttributes; |
Clemens Ladisch | 744b89e | 2009-04-03 09:45:01 +0200 | [diff] [blame^] | 3089 | fp->datainterval = parse_datainterval(chip, alts); |
Bjoern Fay | d0b0fac | 2007-02-05 12:27:21 +0100 | [diff] [blame] | 3090 | fp->maxpacksize = le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize); |
| 3091 | fp->rate_max = fp->rate_min = combine_triple(&alts->extra[15]); |
| 3092 | |
| 3093 | stream = (fp->endpoint & USB_DIR_IN) |
| 3094 | ? SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK; |
| 3095 | err = add_audio_endpoint(chip, stream, fp); |
| 3096 | if (err < 0) { |
| 3097 | kfree(fp); |
| 3098 | return err; |
| 3099 | } |
| 3100 | /* FIXME: playback must be synchronized to capture */ |
| 3101 | usb_set_interface(chip->dev, fp->iface, 0); |
| 3102 | return 0; |
| 3103 | } |
| 3104 | |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 3105 | static int snd_usb_create_quirk(struct snd_usb_audio *chip, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3106 | struct usb_interface *iface, |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 3107 | const struct snd_usb_audio_quirk *quirk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3108 | |
| 3109 | /* |
| 3110 | * handle the quirks for the contained interfaces |
| 3111 | */ |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 3112 | static int create_composite_quirk(struct snd_usb_audio *chip, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3113 | struct usb_interface *iface, |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 3114 | const struct snd_usb_audio_quirk *quirk) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3115 | { |
| 3116 | int probed_ifnum = get_iface_desc(iface->altsetting)->bInterfaceNumber; |
| 3117 | int err; |
| 3118 | |
| 3119 | for (quirk = quirk->data; quirk->ifnum >= 0; ++quirk) { |
| 3120 | iface = usb_ifnum_to_if(chip->dev, quirk->ifnum); |
| 3121 | if (!iface) |
| 3122 | continue; |
| 3123 | if (quirk->ifnum != probed_ifnum && |
| 3124 | usb_interface_claimed(iface)) |
| 3125 | continue; |
| 3126 | err = snd_usb_create_quirk(chip, iface, quirk); |
| 3127 | if (err < 0) |
| 3128 | return err; |
| 3129 | if (quirk->ifnum != probed_ifnum) |
| 3130 | usb_driver_claim_interface(&usb_audio_driver, iface, (void *)-1L); |
| 3131 | } |
| 3132 | return 0; |
| 3133 | } |
| 3134 | |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 3135 | static int ignore_interface_quirk(struct snd_usb_audio *chip, |
Clemens Ladisch | 854af95 | 2005-07-25 16:19:10 +0200 | [diff] [blame] | 3136 | struct usb_interface *iface, |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 3137 | const struct snd_usb_audio_quirk *quirk) |
Clemens Ladisch | 854af95 | 2005-07-25 16:19:10 +0200 | [diff] [blame] | 3138 | { |
| 3139 | return 0; |
| 3140 | } |
| 3141 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3142 | |
| 3143 | /* |
| 3144 | * boot quirks |
| 3145 | */ |
| 3146 | |
| 3147 | #define EXTIGY_FIRMWARE_SIZE_OLD 794 |
| 3148 | #define EXTIGY_FIRMWARE_SIZE_NEW 483 |
| 3149 | |
| 3150 | static int snd_usb_extigy_boot_quirk(struct usb_device *dev, struct usb_interface *intf) |
| 3151 | { |
| 3152 | struct usb_host_config *config = dev->actconfig; |
| 3153 | int err; |
| 3154 | |
| 3155 | if (le16_to_cpu(get_cfg_desc(config)->wTotalLength) == EXTIGY_FIRMWARE_SIZE_OLD || |
| 3156 | le16_to_cpu(get_cfg_desc(config)->wTotalLength) == EXTIGY_FIRMWARE_SIZE_NEW) { |
| 3157 | snd_printdd("sending Extigy boot sequence...\n"); |
| 3158 | /* Send message to force it to reconnect with full interface. */ |
| 3159 | err = snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev,0), |
| 3160 | 0x10, 0x43, 0x0001, 0x000a, NULL, 0, 1000); |
| 3161 | if (err < 0) snd_printdd("error sending boot message: %d\n", err); |
| 3162 | err = usb_get_descriptor(dev, USB_DT_DEVICE, 0, |
| 3163 | &dev->descriptor, sizeof(dev->descriptor)); |
| 3164 | config = dev->actconfig; |
| 3165 | if (err < 0) snd_printdd("error usb_get_descriptor: %d\n", err); |
| 3166 | err = usb_reset_configuration(dev); |
| 3167 | if (err < 0) snd_printdd("error usb_reset_configuration: %d\n", err); |
| 3168 | snd_printdd("extigy_boot: new boot length = %d\n", |
| 3169 | le16_to_cpu(get_cfg_desc(config)->wTotalLength)); |
| 3170 | return -ENODEV; /* quit this anyway */ |
| 3171 | } |
| 3172 | return 0; |
| 3173 | } |
| 3174 | |
Clemens Ladisch | 3a2f085 | 2005-05-09 09:20:31 +0200 | [diff] [blame] | 3175 | static int snd_usb_audigy2nx_boot_quirk(struct usb_device *dev) |
| 3176 | { |
Clemens Ladisch | 3a2f085 | 2005-05-09 09:20:31 +0200 | [diff] [blame] | 3177 | u8 buf = 1; |
| 3178 | |
| 3179 | snd_usb_ctl_msg(dev, usb_rcvctrlpipe(dev, 0), 0x2a, |
| 3180 | USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_OTHER, |
| 3181 | 0, 0, &buf, 1, 1000); |
| 3182 | if (buf == 0) { |
| 3183 | snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), 0x29, |
| 3184 | USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_OTHER, |
| 3185 | 1, 2000, NULL, 0, 1000); |
| 3186 | return -ENODEV; |
| 3187 | } |
Clemens Ladisch | 3a2f085 | 2005-05-09 09:20:31 +0200 | [diff] [blame] | 3188 | return 0; |
| 3189 | } |
| 3190 | |
Thibault LE MEUR | e311334 | 2006-03-14 11:44:53 +0100 | [diff] [blame] | 3191 | /* |
Sam Revitch | e217e30 | 2006-06-23 15:10:18 +0200 | [diff] [blame] | 3192 | * C-Media CM106/CM106+ have four 16-bit internal registers that are nicely |
| 3193 | * documented in the device's data sheet. |
| 3194 | */ |
| 3195 | static int snd_usb_cm106_write_int_reg(struct usb_device *dev, int reg, u16 value) |
| 3196 | { |
| 3197 | u8 buf[4]; |
| 3198 | buf[0] = 0x20; |
| 3199 | buf[1] = value & 0xff; |
| 3200 | buf[2] = (value >> 8) & 0xff; |
| 3201 | buf[3] = reg; |
| 3202 | return snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), USB_REQ_SET_CONFIGURATION, |
| 3203 | USB_DIR_OUT | USB_TYPE_CLASS | USB_RECIP_ENDPOINT, |
| 3204 | 0, 0, &buf, 4, 1000); |
| 3205 | } |
| 3206 | |
| 3207 | static int snd_usb_cm106_boot_quirk(struct usb_device *dev) |
| 3208 | { |
| 3209 | /* |
| 3210 | * Enable line-out driver mode, set headphone source to front |
| 3211 | * channels, enable stereo mic. |
| 3212 | */ |
| 3213 | return snd_usb_cm106_write_int_reg(dev, 2, 0x8004); |
| 3214 | } |
| 3215 | |
| 3216 | |
| 3217 | /* |
Thibault LE MEUR | e311334 | 2006-03-14 11:44:53 +0100 | [diff] [blame] | 3218 | * Setup quirks |
| 3219 | */ |
| 3220 | #define AUDIOPHILE_SET 0x01 /* if set, parse device_setup */ |
| 3221 | #define AUDIOPHILE_SET_DTS 0x02 /* if set, enable DTS Digital Output */ |
| 3222 | #define AUDIOPHILE_SET_96K 0x04 /* 48-96KHz rate if set, 8-48KHz otherwise */ |
| 3223 | #define AUDIOPHILE_SET_24B 0x08 /* 24bits sample if set, 16bits otherwise */ |
| 3224 | #define AUDIOPHILE_SET_DI 0x10 /* if set, enable Digital Input */ |
| 3225 | #define AUDIOPHILE_SET_MASK 0x1F /* bit mask for setup value */ |
| 3226 | #define AUDIOPHILE_SET_24B_48K_DI 0x19 /* value for 24bits+48KHz+Digital Input */ |
| 3227 | #define AUDIOPHILE_SET_24B_48K_NOTDI 0x09 /* value for 24bits+48KHz+No Digital Input */ |
| 3228 | #define AUDIOPHILE_SET_16B_48K_DI 0x11 /* value for 16bits+48KHz+Digital Input */ |
| 3229 | #define AUDIOPHILE_SET_16B_48K_NOTDI 0x01 /* value for 16bits+48KHz+No Digital Input */ |
| 3230 | |
| 3231 | static int audiophile_skip_setting_quirk(struct snd_usb_audio *chip, |
| 3232 | int iface, int altno) |
| 3233 | { |
Thibault Le Meur | f8c78b8 | 2007-07-12 11:26:35 +0200 | [diff] [blame] | 3234 | /* Reset ALL ifaces to 0 altsetting. |
| 3235 | * Call it for every possible altsetting of every interface. |
| 3236 | */ |
| 3237 | usb_set_interface(chip->dev, iface, 0); |
| 3238 | |
Thibault LE MEUR | e311334 | 2006-03-14 11:44:53 +0100 | [diff] [blame] | 3239 | if (device_setup[chip->index] & AUDIOPHILE_SET) { |
| 3240 | if ((device_setup[chip->index] & AUDIOPHILE_SET_DTS) |
| 3241 | && altno != 6) |
| 3242 | return 1; /* skip this altsetting */ |
| 3243 | if ((device_setup[chip->index] & AUDIOPHILE_SET_96K) |
| 3244 | && altno != 1) |
| 3245 | return 1; /* skip this altsetting */ |
| 3246 | if ((device_setup[chip->index] & AUDIOPHILE_SET_MASK) == |
| 3247 | AUDIOPHILE_SET_24B_48K_DI && altno != 2) |
| 3248 | return 1; /* skip this altsetting */ |
| 3249 | if ((device_setup[chip->index] & AUDIOPHILE_SET_MASK) == |
| 3250 | AUDIOPHILE_SET_24B_48K_NOTDI && altno != 3) |
| 3251 | return 1; /* skip this altsetting */ |
| 3252 | if ((device_setup[chip->index] & AUDIOPHILE_SET_MASK) == |
| 3253 | AUDIOPHILE_SET_16B_48K_DI && altno != 4) |
| 3254 | return 1; /* skip this altsetting */ |
| 3255 | if ((device_setup[chip->index] & AUDIOPHILE_SET_MASK) == |
| 3256 | AUDIOPHILE_SET_16B_48K_NOTDI && altno != 5) |
| 3257 | return 1; /* skip this altsetting */ |
| 3258 | } |
| 3259 | return 0; /* keep this altsetting */ |
| 3260 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3261 | |
| 3262 | /* |
| 3263 | * audio-interface quirks |
| 3264 | * |
| 3265 | * returns zero if no standard audio/MIDI parsing is needed. |
| 3266 | * returns a postive value if standard audio/midi interfaces are parsed |
| 3267 | * after this. |
| 3268 | * returns a negative value at error. |
| 3269 | */ |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 3270 | static int snd_usb_create_quirk(struct snd_usb_audio *chip, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3271 | struct usb_interface *iface, |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 3272 | const struct snd_usb_audio_quirk *quirk) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3273 | { |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 3274 | typedef int (*quirk_func_t)(struct snd_usb_audio *, struct usb_interface *, |
| 3275 | const struct snd_usb_audio_quirk *); |
Clemens Ladisch | 854af95 | 2005-07-25 16:19:10 +0200 | [diff] [blame] | 3276 | static const quirk_func_t quirk_funcs[] = { |
| 3277 | [QUIRK_IGNORE_INTERFACE] = ignore_interface_quirk, |
| 3278 | [QUIRK_COMPOSITE] = create_composite_quirk, |
| 3279 | [QUIRK_MIDI_STANDARD_INTERFACE] = snd_usb_create_midi_interface, |
| 3280 | [QUIRK_MIDI_FIXED_ENDPOINT] = snd_usb_create_midi_interface, |
| 3281 | [QUIRK_MIDI_YAMAHA] = snd_usb_create_midi_interface, |
| 3282 | [QUIRK_MIDI_MIDIMAN] = snd_usb_create_midi_interface, |
| 3283 | [QUIRK_MIDI_NOVATION] = snd_usb_create_midi_interface, |
| 3284 | [QUIRK_MIDI_RAW] = snd_usb_create_midi_interface, |
| 3285 | [QUIRK_MIDI_EMAGIC] = snd_usb_create_midi_interface, |
Clemens Ladisch | cc7a59b | 2006-02-07 17:11:06 +0100 | [diff] [blame] | 3286 | [QUIRK_MIDI_CME] = snd_usb_create_midi_interface, |
Clemens Ladisch | d1bda04 | 2005-09-14 08:36:03 +0200 | [diff] [blame] | 3287 | [QUIRK_AUDIO_STANDARD_INTERFACE] = create_standard_audio_quirk, |
Clemens Ladisch | 854af95 | 2005-07-25 16:19:10 +0200 | [diff] [blame] | 3288 | [QUIRK_AUDIO_FIXED_ENDPOINT] = create_fixed_stream_quirk, |
Clemens Ladisch | 854af95 | 2005-07-25 16:19:10 +0200 | [diff] [blame] | 3289 | [QUIRK_AUDIO_EDIROL_UA1000] = create_ua1000_quirk, |
Bjoern Fay | d0b0fac | 2007-02-05 12:27:21 +0100 | [diff] [blame] | 3290 | [QUIRK_AUDIO_EDIROL_UA101] = create_ua101_quirk, |
Pedro Lopez-Cabanillas | 310e0dc | 2008-10-04 16:27:36 +0200 | [diff] [blame] | 3291 | [QUIRK_AUDIO_EDIROL_UAXX] = create_uaxx_quirk |
Clemens Ladisch | 854af95 | 2005-07-25 16:19:10 +0200 | [diff] [blame] | 3292 | }; |
| 3293 | |
| 3294 | if (quirk->type < QUIRK_TYPE_COUNT) { |
| 3295 | return quirk_funcs[quirk->type](chip, iface, quirk); |
| 3296 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3297 | snd_printd(KERN_ERR "invalid quirk type %d\n", quirk->type); |
| 3298 | return -ENXIO; |
| 3299 | } |
| 3300 | } |
| 3301 | |
| 3302 | |
| 3303 | /* |
| 3304 | * common proc files to show the usb device info |
| 3305 | */ |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 3306 | static void proc_audio_usbbus_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3307 | { |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 3308 | struct snd_usb_audio *chip = entry->private_data; |
Pavel Machek | 07f51a7 | 2008-04-14 13:15:56 +0200 | [diff] [blame] | 3309 | if (!chip->shutdown) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3310 | snd_iprintf(buffer, "%03d/%03d\n", chip->dev->bus->busnum, chip->dev->devnum); |
| 3311 | } |
| 3312 | |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 3313 | static void proc_audio_usbid_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3314 | { |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 3315 | struct snd_usb_audio *chip = entry->private_data; |
Pavel Machek | 07f51a7 | 2008-04-14 13:15:56 +0200 | [diff] [blame] | 3316 | if (!chip->shutdown) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3317 | snd_iprintf(buffer, "%04x:%04x\n", |
Clemens Ladisch | 27d10f5 | 2005-05-02 08:51:26 +0200 | [diff] [blame] | 3318 | USB_ID_VENDOR(chip->usb_id), |
| 3319 | USB_ID_PRODUCT(chip->usb_id)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3320 | } |
| 3321 | |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 3322 | static void snd_usb_audio_create_proc(struct snd_usb_audio *chip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3323 | { |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 3324 | struct snd_info_entry *entry; |
Pavel Machek | 07f51a7 | 2008-04-14 13:15:56 +0200 | [diff] [blame] | 3325 | if (!snd_card_proc_new(chip->card, "usbbus", &entry)) |
Takashi Iwai | bf85020 | 2006-04-28 15:13:41 +0200 | [diff] [blame] | 3326 | snd_info_set_text_ops(entry, chip, proc_audio_usbbus_read); |
Pavel Machek | 07f51a7 | 2008-04-14 13:15:56 +0200 | [diff] [blame] | 3327 | if (!snd_card_proc_new(chip->card, "usbid", &entry)) |
Takashi Iwai | bf85020 | 2006-04-28 15:13:41 +0200 | [diff] [blame] | 3328 | snd_info_set_text_ops(entry, chip, proc_audio_usbid_read); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3329 | } |
| 3330 | |
| 3331 | /* |
| 3332 | * free the chip instance |
| 3333 | * |
| 3334 | * here we have to do not much, since pcm and controls are already freed |
| 3335 | * |
| 3336 | */ |
| 3337 | |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 3338 | static int snd_usb_audio_free(struct snd_usb_audio *chip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3339 | { |
| 3340 | kfree(chip); |
| 3341 | return 0; |
| 3342 | } |
| 3343 | |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 3344 | static int snd_usb_audio_dev_free(struct snd_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3345 | { |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 3346 | struct snd_usb_audio *chip = device->device_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3347 | return snd_usb_audio_free(chip); |
| 3348 | } |
| 3349 | |
| 3350 | |
| 3351 | /* |
| 3352 | * create a chip instance and set its names. |
| 3353 | */ |
| 3354 | static int snd_usb_audio_create(struct usb_device *dev, int idx, |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 3355 | const struct snd_usb_audio_quirk *quirk, |
| 3356 | struct snd_usb_audio **rchip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3357 | { |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 3358 | struct snd_card *card; |
| 3359 | struct snd_usb_audio *chip; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3360 | int err, len; |
| 3361 | char component[14]; |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 3362 | static struct snd_device_ops ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3363 | .dev_free = snd_usb_audio_dev_free, |
| 3364 | }; |
| 3365 | |
| 3366 | *rchip = NULL; |
| 3367 | |
Clemens Ladisch | 076639f | 2007-08-21 08:56:54 +0200 | [diff] [blame] | 3368 | if (snd_usb_get_speed(dev) != USB_SPEED_LOW && |
| 3369 | snd_usb_get_speed(dev) != USB_SPEED_FULL && |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3370 | snd_usb_get_speed(dev) != USB_SPEED_HIGH) { |
| 3371 | snd_printk(KERN_ERR "unknown device speed %d\n", snd_usb_get_speed(dev)); |
| 3372 | return -ENXIO; |
| 3373 | } |
| 3374 | |
Takashi Iwai | bd7dd77 | 2008-12-28 16:45:02 +0100 | [diff] [blame] | 3375 | err = snd_card_create(index[idx], id[idx], THIS_MODULE, 0, &card); |
| 3376 | if (err < 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3377 | snd_printk(KERN_ERR "cannot create card instance %d\n", idx); |
Takashi Iwai | bd7dd77 | 2008-12-28 16:45:02 +0100 | [diff] [blame] | 3378 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3379 | } |
| 3380 | |
Takashi Iwai | 561b220 | 2005-09-09 14:22:34 +0200 | [diff] [blame] | 3381 | chip = kzalloc(sizeof(*chip), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3382 | if (! chip) { |
| 3383 | snd_card_free(card); |
| 3384 | return -ENOMEM; |
| 3385 | } |
| 3386 | |
| 3387 | chip->index = idx; |
| 3388 | chip->dev = dev; |
| 3389 | chip->card = card; |
Clemens Ladisch | 27d10f5 | 2005-05-02 08:51:26 +0200 | [diff] [blame] | 3390 | chip->usb_id = USB_ID(le16_to_cpu(dev->descriptor.idVendor), |
| 3391 | le16_to_cpu(dev->descriptor.idProduct)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3392 | INIT_LIST_HEAD(&chip->pcm_list); |
| 3393 | INIT_LIST_HEAD(&chip->midi_list); |
Clemens Ladisch | 84957a8 | 2005-04-29 16:23:13 +0200 | [diff] [blame] | 3394 | INIT_LIST_HEAD(&chip->mixer_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3395 | |
| 3396 | if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) < 0) { |
| 3397 | snd_usb_audio_free(chip); |
| 3398 | snd_card_free(card); |
| 3399 | return err; |
| 3400 | } |
| 3401 | |
| 3402 | strcpy(card->driver, "USB-Audio"); |
| 3403 | sprintf(component, "USB%04x:%04x", |
Clemens Ladisch | 27d10f5 | 2005-05-02 08:51:26 +0200 | [diff] [blame] | 3404 | USB_ID_VENDOR(chip->usb_id), USB_ID_PRODUCT(chip->usb_id)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3405 | snd_component_add(card, component); |
| 3406 | |
| 3407 | /* retrieve the device string as shortname */ |
| 3408 | if (quirk && quirk->product_name) { |
| 3409 | strlcpy(card->shortname, quirk->product_name, sizeof(card->shortname)); |
| 3410 | } else { |
| 3411 | if (!dev->descriptor.iProduct || |
| 3412 | usb_string(dev, dev->descriptor.iProduct, |
| 3413 | card->shortname, sizeof(card->shortname)) <= 0) { |
| 3414 | /* no name available from anywhere, so use ID */ |
| 3415 | sprintf(card->shortname, "USB Device %#04x:%#04x", |
Clemens Ladisch | 27d10f5 | 2005-05-02 08:51:26 +0200 | [diff] [blame] | 3416 | USB_ID_VENDOR(chip->usb_id), |
| 3417 | USB_ID_PRODUCT(chip->usb_id)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3418 | } |
| 3419 | } |
| 3420 | |
| 3421 | /* retrieve the vendor and device strings as longname */ |
| 3422 | if (quirk && quirk->vendor_name) { |
| 3423 | len = strlcpy(card->longname, quirk->vendor_name, sizeof(card->longname)); |
| 3424 | } else { |
| 3425 | if (dev->descriptor.iManufacturer) |
| 3426 | len = usb_string(dev, dev->descriptor.iManufacturer, |
| 3427 | card->longname, sizeof(card->longname)); |
| 3428 | else |
| 3429 | len = 0; |
| 3430 | /* we don't really care if there isn't any vendor string */ |
| 3431 | } |
| 3432 | if (len > 0) |
| 3433 | strlcat(card->longname, " ", sizeof(card->longname)); |
| 3434 | |
| 3435 | strlcat(card->longname, card->shortname, sizeof(card->longname)); |
| 3436 | |
| 3437 | len = strlcat(card->longname, " at ", sizeof(card->longname)); |
| 3438 | |
| 3439 | if (len < sizeof(card->longname)) |
| 3440 | usb_make_path(dev, card->longname + len, sizeof(card->longname) - len); |
| 3441 | |
| 3442 | strlcat(card->longname, |
Clemens Ladisch | 076639f | 2007-08-21 08:56:54 +0200 | [diff] [blame] | 3443 | snd_usb_get_speed(dev) == USB_SPEED_LOW ? ", low speed" : |
| 3444 | snd_usb_get_speed(dev) == USB_SPEED_FULL ? ", full speed" : |
| 3445 | ", high speed", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3446 | sizeof(card->longname)); |
| 3447 | |
| 3448 | snd_usb_audio_create_proc(chip); |
| 3449 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3450 | *rchip = chip; |
| 3451 | return 0; |
| 3452 | } |
| 3453 | |
| 3454 | |
| 3455 | /* |
| 3456 | * probe the active usb device |
| 3457 | * |
| 3458 | * note that this can be called multiple times per a device, when it |
| 3459 | * includes multiple audio control interfaces. |
| 3460 | * |
| 3461 | * thus we check the usb device pointer and creates the card instance |
| 3462 | * only at the first time. the successive calls of this function will |
| 3463 | * append the pcm interface to the corresponding card. |
| 3464 | */ |
| 3465 | static void *snd_usb_audio_probe(struct usb_device *dev, |
| 3466 | struct usb_interface *intf, |
| 3467 | const struct usb_device_id *usb_id) |
| 3468 | { |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 3469 | const struct snd_usb_audio_quirk *quirk = (const struct snd_usb_audio_quirk *)usb_id->driver_info; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3470 | int i, err; |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 3471 | struct snd_usb_audio *chip; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3472 | struct usb_host_interface *alts; |
| 3473 | int ifnum; |
Clemens Ladisch | 27d10f5 | 2005-05-02 08:51:26 +0200 | [diff] [blame] | 3474 | u32 id; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3475 | |
| 3476 | alts = &intf->altsetting[0]; |
| 3477 | ifnum = get_iface_desc(alts)->bInterfaceNumber; |
Clemens Ladisch | 27d10f5 | 2005-05-02 08:51:26 +0200 | [diff] [blame] | 3478 | id = USB_ID(le16_to_cpu(dev->descriptor.idVendor), |
| 3479 | le16_to_cpu(dev->descriptor.idProduct)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3480 | |
| 3481 | if (quirk && quirk->ifnum >= 0 && ifnum != quirk->ifnum) |
| 3482 | goto __err_val; |
| 3483 | |
| 3484 | /* SB Extigy needs special boot-up sequence */ |
| 3485 | /* if more models come, this will go to the quirk list. */ |
Clemens Ladisch | 27d10f5 | 2005-05-02 08:51:26 +0200 | [diff] [blame] | 3486 | if (id == USB_ID(0x041e, 0x3000)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3487 | if (snd_usb_extigy_boot_quirk(dev, intf) < 0) |
| 3488 | goto __err_val; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3489 | } |
Clemens Ladisch | 3a2f085 | 2005-05-09 09:20:31 +0200 | [diff] [blame] | 3490 | /* SB Audigy 2 NX needs its own boot-up magic, too */ |
| 3491 | if (id == USB_ID(0x041e, 0x3020)) { |
| 3492 | if (snd_usb_audigy2nx_boot_quirk(dev) < 0) |
| 3493 | goto __err_val; |
| 3494 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3495 | |
Sam Revitch | e217e30 | 2006-06-23 15:10:18 +0200 | [diff] [blame] | 3496 | /* C-Media CM106 / Turtle Beach Audio Advantage Roadie */ |
| 3497 | if (id == USB_ID(0x10f5, 0x0200)) { |
| 3498 | if (snd_usb_cm106_boot_quirk(dev) < 0) |
| 3499 | goto __err_val; |
| 3500 | } |
| 3501 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3502 | /* |
| 3503 | * found a config. now register to ALSA |
| 3504 | */ |
| 3505 | |
| 3506 | /* check whether it's already registered */ |
| 3507 | chip = NULL; |
Ingo Molnar | 12aa757 | 2006-01-16 16:36:05 +0100 | [diff] [blame] | 3508 | mutex_lock(®ister_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3509 | for (i = 0; i < SNDRV_CARDS; i++) { |
| 3510 | if (usb_chip[i] && usb_chip[i]->dev == dev) { |
| 3511 | if (usb_chip[i]->shutdown) { |
| 3512 | snd_printk(KERN_ERR "USB device is in the shutdown state, cannot create a card instance\n"); |
| 3513 | goto __error; |
| 3514 | } |
| 3515 | chip = usb_chip[i]; |
| 3516 | break; |
| 3517 | } |
| 3518 | } |
| 3519 | if (! chip) { |
| 3520 | /* it's a fresh one. |
| 3521 | * now look for an empty slot and create a new card instance |
| 3522 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3523 | for (i = 0; i < SNDRV_CARDS; i++) |
| 3524 | if (enable[i] && ! usb_chip[i] && |
Clemens Ladisch | 27d10f5 | 2005-05-02 08:51:26 +0200 | [diff] [blame] | 3525 | (vid[i] == -1 || vid[i] == USB_ID_VENDOR(id)) && |
| 3526 | (pid[i] == -1 || pid[i] == USB_ID_PRODUCT(id))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3527 | if (snd_usb_audio_create(dev, i, quirk, &chip) < 0) { |
| 3528 | goto __error; |
| 3529 | } |
Clemens Ladisch | 1dcd3ec | 2005-05-10 14:51:40 +0200 | [diff] [blame] | 3530 | snd_card_set_dev(chip->card, &intf->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3531 | break; |
| 3532 | } |
Pavel Machek | 07f51a7 | 2008-04-14 13:15:56 +0200 | [diff] [blame] | 3533 | if (!chip) { |
| 3534 | printk(KERN_ERR "no available usb audio device\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3535 | goto __error; |
| 3536 | } |
| 3537 | } |
| 3538 | |
| 3539 | err = 1; /* continue */ |
| 3540 | if (quirk && quirk->ifnum != QUIRK_NO_INTERFACE) { |
| 3541 | /* need some special handlings */ |
| 3542 | if ((err = snd_usb_create_quirk(chip, intf, quirk)) < 0) |
| 3543 | goto __error; |
| 3544 | } |
| 3545 | |
| 3546 | if (err > 0) { |
| 3547 | /* create normal USB audio interfaces */ |
| 3548 | if (snd_usb_create_streams(chip, ifnum) < 0 || |
Takashi Iwai | 7a9b806 | 2008-08-13 15:40:53 +0200 | [diff] [blame] | 3549 | snd_usb_create_mixer(chip, ifnum, ignore_ctl_error) < 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3550 | goto __error; |
| 3551 | } |
| 3552 | } |
| 3553 | |
| 3554 | /* we are allowed to call snd_card_register() many times */ |
| 3555 | if (snd_card_register(chip->card) < 0) { |
| 3556 | goto __error; |
| 3557 | } |
| 3558 | |
| 3559 | usb_chip[chip->index] = chip; |
| 3560 | chip->num_interfaces++; |
Ingo Molnar | 12aa757 | 2006-01-16 16:36:05 +0100 | [diff] [blame] | 3561 | mutex_unlock(®ister_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3562 | return chip; |
| 3563 | |
| 3564 | __error: |
| 3565 | if (chip && !chip->num_interfaces) |
| 3566 | snd_card_free(chip->card); |
Ingo Molnar | 12aa757 | 2006-01-16 16:36:05 +0100 | [diff] [blame] | 3567 | mutex_unlock(®ister_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3568 | __err_val: |
| 3569 | return NULL; |
| 3570 | } |
| 3571 | |
| 3572 | /* |
| 3573 | * we need to take care of counter, since disconnection can be called also |
| 3574 | * many times as well as usb_audio_probe(). |
| 3575 | */ |
| 3576 | static void snd_usb_audio_disconnect(struct usb_device *dev, void *ptr) |
| 3577 | { |
Takashi Iwai | 86e07d3 | 2005-11-17 15:08:02 +0100 | [diff] [blame] | 3578 | struct snd_usb_audio *chip; |
| 3579 | struct snd_card *card; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3580 | struct list_head *p; |
| 3581 | |
| 3582 | if (ptr == (void *)-1L) |
| 3583 | return; |
| 3584 | |
| 3585 | chip = ptr; |
| 3586 | card = chip->card; |
Ingo Molnar | 12aa757 | 2006-01-16 16:36:05 +0100 | [diff] [blame] | 3587 | mutex_lock(®ister_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3588 | chip->shutdown = 1; |
| 3589 | chip->num_interfaces--; |
| 3590 | if (chip->num_interfaces <= 0) { |
| 3591 | snd_card_disconnect(card); |
| 3592 | /* release the pcm resources */ |
| 3593 | list_for_each(p, &chip->pcm_list) { |
Clemens Ladisch | ee73339 | 2005-04-25 10:34:13 +0200 | [diff] [blame] | 3594 | snd_usb_stream_disconnect(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3595 | } |
| 3596 | /* release the midi resources */ |
| 3597 | list_for_each(p, &chip->midi_list) { |
Clemens Ladisch | ee73339 | 2005-04-25 10:34:13 +0200 | [diff] [blame] | 3598 | snd_usbmidi_disconnect(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3599 | } |
Clemens Ladisch | 84957a8 | 2005-04-29 16:23:13 +0200 | [diff] [blame] | 3600 | /* release mixer resources */ |
| 3601 | list_for_each(p, &chip->mixer_list) { |
| 3602 | snd_usb_mixer_disconnect(p); |
| 3603 | } |
Takashi Iwai | 9eb70e6 | 2008-04-17 12:53:26 +0200 | [diff] [blame] | 3604 | usb_chip[chip->index] = NULL; |
Ingo Molnar | 12aa757 | 2006-01-16 16:36:05 +0100 | [diff] [blame] | 3605 | mutex_unlock(®ister_mutex); |
Takashi Iwai | c461482 | 2006-06-23 14:38:23 +0200 | [diff] [blame] | 3606 | snd_card_free_when_closed(card); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3607 | } else { |
Ingo Molnar | 12aa757 | 2006-01-16 16:36:05 +0100 | [diff] [blame] | 3608 | mutex_unlock(®ister_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3609 | } |
| 3610 | } |
| 3611 | |
| 3612 | /* |
| 3613 | * new 2.5 USB kernel API |
| 3614 | */ |
| 3615 | static int usb_audio_probe(struct usb_interface *intf, |
| 3616 | const struct usb_device_id *id) |
| 3617 | { |
| 3618 | void *chip; |
| 3619 | chip = snd_usb_audio_probe(interface_to_usbdev(intf), intf, id); |
| 3620 | if (chip) { |
Julia Lawall | f4e9749 | 2009-01-01 18:14:35 +0100 | [diff] [blame] | 3621 | usb_set_intfdata(intf, chip); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3622 | return 0; |
| 3623 | } else |
| 3624 | return -EIO; |
| 3625 | } |
| 3626 | |
| 3627 | static void usb_audio_disconnect(struct usb_interface *intf) |
| 3628 | { |
| 3629 | snd_usb_audio_disconnect(interface_to_usbdev(intf), |
Julia Lawall | f4e9749 | 2009-01-01 18:14:35 +0100 | [diff] [blame] | 3630 | usb_get_intfdata(intf)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3631 | } |
| 3632 | |
Andrew Morton | 93521d2 | 2007-12-24 14:40:56 +0100 | [diff] [blame] | 3633 | #ifdef CONFIG_PM |
Oliver Neukum | f85bf29 | 2007-12-14 14:42:41 +0100 | [diff] [blame] | 3634 | static int usb_audio_suspend(struct usb_interface *intf, pm_message_t message) |
| 3635 | { |
Julia Lawall | f4e9749 | 2009-01-01 18:14:35 +0100 | [diff] [blame] | 3636 | struct snd_usb_audio *chip = usb_get_intfdata(intf); |
Oliver Neukum | f85bf29 | 2007-12-14 14:42:41 +0100 | [diff] [blame] | 3637 | struct list_head *p; |
| 3638 | struct snd_usb_stream *as; |
| 3639 | |
| 3640 | if (chip == (void *)-1L) |
| 3641 | return 0; |
| 3642 | |
| 3643 | snd_power_change_state(chip->card, SNDRV_CTL_POWER_D3hot); |
| 3644 | if (!chip->num_suspended_intf++) { |
| 3645 | list_for_each(p, &chip->pcm_list) { |
| 3646 | as = list_entry(p, struct snd_usb_stream, list); |
| 3647 | snd_pcm_suspend_all(as->pcm); |
| 3648 | } |
| 3649 | } |
| 3650 | |
| 3651 | return 0; |
| 3652 | } |
| 3653 | |
| 3654 | static int usb_audio_resume(struct usb_interface *intf) |
| 3655 | { |
Julia Lawall | f4e9749 | 2009-01-01 18:14:35 +0100 | [diff] [blame] | 3656 | struct snd_usb_audio *chip = usb_get_intfdata(intf); |
Oliver Neukum | f85bf29 | 2007-12-14 14:42:41 +0100 | [diff] [blame] | 3657 | |
| 3658 | if (chip == (void *)-1L) |
| 3659 | return 0; |
| 3660 | if (--chip->num_suspended_intf) |
| 3661 | return 0; |
| 3662 | /* |
| 3663 | * ALSA leaves material resumption to user space |
| 3664 | * we just notify |
| 3665 | */ |
| 3666 | |
| 3667 | snd_power_change_state(chip->card, SNDRV_CTL_POWER_D0); |
| 3668 | |
| 3669 | return 0; |
| 3670 | } |
Andrew Morton | 93521d2 | 2007-12-24 14:40:56 +0100 | [diff] [blame] | 3671 | #endif /* CONFIG_PM */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3672 | |
| 3673 | static int __init snd_usb_audio_init(void) |
| 3674 | { |
Clemens Ladisch | f3990e6 | 2009-02-20 09:32:40 +0100 | [diff] [blame] | 3675 | if (nrpacks < 1 || nrpacks > MAX_PACKS) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3676 | printk(KERN_WARNING "invalid nrpacks value.\n"); |
| 3677 | return -EINVAL; |
| 3678 | } |
Tobias Klauser | cf78bbc | 2006-10-04 18:12:43 +0200 | [diff] [blame] | 3679 | return usb_register(&usb_audio_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3680 | } |
| 3681 | |
| 3682 | |
| 3683 | static void __exit snd_usb_audio_cleanup(void) |
| 3684 | { |
| 3685 | usb_deregister(&usb_audio_driver); |
| 3686 | } |
| 3687 | |
| 3688 | module_init(snd_usb_audio_init); |
| 3689 | module_exit(snd_usb_audio_cleanup); |