blob: ae783d40f55aa31e0995999f330052367c646f0a [file] [log] [blame]
Daniel Macke5779992010-03-04 19:46:13 +01001/*
2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; either version 2 of the License, or
5 * (at your option) any later version.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 *
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
15 */
16
17#include <linux/init.h>
Stephen Rothwell9966dda2010-03-29 19:01:48 +110018#include <linux/slab.h>
Daniel Mackedcd3632012-04-12 13:51:12 +020019#include <linux/ratelimit.h>
Daniel Macke5779992010-03-04 19:46:13 +010020#include <linux/usb.h>
21#include <linux/usb/audio.h>
Daniel Mack7e847892010-03-11 21:13:20 +010022#include <linux/usb/audio-v2.h>
Daniel Macke5779992010-03-04 19:46:13 +010023
24#include <sound/core.h>
25#include <sound/pcm.h>
26#include <sound/pcm_params.h>
27
28#include "usbaudio.h"
29#include "card.h"
30#include "quirks.h"
31#include "debug.h"
Daniel Mackc731bc92011-09-14 12:46:57 +020032#include "endpoint.h"
Daniel Macke5779992010-03-04 19:46:13 +010033#include "helper.h"
34#include "pcm.h"
Daniel Mack79f920f2010-05-31 14:51:31 +020035#include "clock.h"
Oliver Neukum88a85162011-03-11 14:51:12 +010036#include "power.h"
Daniel Macke5779992010-03-04 19:46:13 +010037
Daniel Mackedcd3632012-04-12 13:51:12 +020038#define SUBSTREAM_FLAG_DATA_EP_STARTED 0
39#define SUBSTREAM_FLAG_SYNC_EP_STARTED 1
40
Pierre-Louis Bossart294c4fb2011-09-06 19:15:34 -050041/* return the estimated delay based on USB frame counters */
42snd_pcm_uframes_t snd_usb_pcm_delay(struct snd_usb_substream *subs,
43 unsigned int rate)
44{
45 int current_frame_number;
46 int frame_diff;
47 int est_delay;
48
49 current_frame_number = usb_get_current_frame_number(subs->dev);
50 /*
51 * HCD implementations use different widths, use lower 8 bits.
52 * The delay will be managed up to 256ms, which is more than
53 * enough
54 */
55 frame_diff = (current_frame_number - subs->last_frame_number) & 0xff;
56
57 /* Approximation based on number of samples per USB frame (ms),
58 some truncation for 44.1 but the estimate is good enough */
59 est_delay = subs->last_delay - (frame_diff * rate / 1000);
60 if (est_delay < 0)
61 est_delay = 0;
62 return est_delay;
63}
64
Daniel Macke5779992010-03-04 19:46:13 +010065/*
66 * return the current pcm pointer. just based on the hwptr_done value.
67 */
68static snd_pcm_uframes_t snd_usb_pcm_pointer(struct snd_pcm_substream *substream)
69{
70 struct snd_usb_substream *subs;
71 unsigned int hwptr_done;
72
73 subs = (struct snd_usb_substream *)substream->runtime->private_data;
74 spin_lock(&subs->lock);
75 hwptr_done = subs->hwptr_done;
Pierre-Louis Bossart294c4fb2011-09-06 19:15:34 -050076 substream->runtime->delay = snd_usb_pcm_delay(subs,
77 substream->runtime->rate);
Daniel Macke5779992010-03-04 19:46:13 +010078 spin_unlock(&subs->lock);
79 return hwptr_done / (substream->runtime->frame_bits >> 3);
80}
81
82/*
83 * find a matching audio format
84 */
Dylan Reid61a70952012-09-18 09:49:48 -070085static struct audioformat *find_format(struct snd_usb_substream *subs)
Daniel Macke5779992010-03-04 19:46:13 +010086{
87 struct list_head *p;
88 struct audioformat *found = NULL;
89 int cur_attr = 0, attr;
90
91 list_for_each(p, &subs->fmt_list) {
92 struct audioformat *fp;
93 fp = list_entry(p, struct audioformat, list);
Dylan Reid61a70952012-09-18 09:49:48 -070094 if (!(fp->formats & (1uLL << subs->pcm_format)))
Clemens Ladisch015eb0b2010-03-04 19:46:15 +010095 continue;
Dylan Reid61a70952012-09-18 09:49:48 -070096 if (fp->channels != subs->channels)
Daniel Macke5779992010-03-04 19:46:13 +010097 continue;
Dylan Reid61a70952012-09-18 09:49:48 -070098 if (subs->cur_rate < fp->rate_min ||
99 subs->cur_rate > fp->rate_max)
Daniel Macke5779992010-03-04 19:46:13 +0100100 continue;
101 if (! (fp->rates & SNDRV_PCM_RATE_CONTINUOUS)) {
102 unsigned int i;
103 for (i = 0; i < fp->nr_rates; i++)
Dylan Reid61a70952012-09-18 09:49:48 -0700104 if (fp->rate_table[i] == subs->cur_rate)
Daniel Macke5779992010-03-04 19:46:13 +0100105 break;
106 if (i >= fp->nr_rates)
107 continue;
108 }
109 attr = fp->ep_attr & USB_ENDPOINT_SYNCTYPE;
110 if (! found) {
111 found = fp;
112 cur_attr = attr;
113 continue;
114 }
115 /* avoid async out and adaptive in if the other method
116 * supports the same format.
117 * this is a workaround for the case like
118 * M-audio audiophile USB.
119 */
120 if (attr != cur_attr) {
121 if ((attr == USB_ENDPOINT_SYNC_ASYNC &&
122 subs->direction == SNDRV_PCM_STREAM_PLAYBACK) ||
123 (attr == USB_ENDPOINT_SYNC_ADAPTIVE &&
124 subs->direction == SNDRV_PCM_STREAM_CAPTURE))
125 continue;
126 if ((cur_attr == USB_ENDPOINT_SYNC_ASYNC &&
127 subs->direction == SNDRV_PCM_STREAM_PLAYBACK) ||
128 (cur_attr == USB_ENDPOINT_SYNC_ADAPTIVE &&
129 subs->direction == SNDRV_PCM_STREAM_CAPTURE)) {
130 found = fp;
131 cur_attr = attr;
132 continue;
133 }
134 }
135 /* find the format with the largest max. packet size */
136 if (fp->maxpacksize > found->maxpacksize) {
137 found = fp;
138 cur_attr = attr;
139 }
140 }
141 return found;
142}
143
Daniel Mack767d75a2010-03-04 19:46:17 +0100144static int init_pitch_v1(struct snd_usb_audio *chip, int iface,
145 struct usb_host_interface *alts,
146 struct audioformat *fmt)
Daniel Macke5779992010-03-04 19:46:13 +0100147{
Daniel Mack767d75a2010-03-04 19:46:17 +0100148 struct usb_device *dev = chip->dev;
Daniel Macke5779992010-03-04 19:46:13 +0100149 unsigned int ep;
150 unsigned char data[1];
151 int err;
152
153 ep = get_endpoint(alts, 0)->bEndpointAddress;
Daniel Mack767d75a2010-03-04 19:46:17 +0100154
Daniel Mack767d75a2010-03-04 19:46:17 +0100155 data[0] = 1;
156 if ((err = snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), UAC_SET_CUR,
157 USB_TYPE_CLASS|USB_RECIP_ENDPOINT|USB_DIR_OUT,
158 UAC_EP_CS_ATTR_PITCH_CONTROL << 8, ep,
Clemens Ladisch17d900c2011-09-26 21:15:27 +0200159 data, sizeof(data))) < 0) {
Daniel Mack767d75a2010-03-04 19:46:17 +0100160 snd_printk(KERN_ERR "%d:%d:%d: cannot set enable PITCH\n",
161 dev->devnum, iface, ep);
162 return err;
Daniel Macke5779992010-03-04 19:46:13 +0100163 }
Daniel Mack767d75a2010-03-04 19:46:17 +0100164
Daniel Macke5779992010-03-04 19:46:13 +0100165 return 0;
166}
167
Daniel Mack92c25612010-05-26 18:11:39 +0200168static int init_pitch_v2(struct snd_usb_audio *chip, int iface,
169 struct usb_host_interface *alts,
170 struct audioformat *fmt)
171{
172 struct usb_device *dev = chip->dev;
173 unsigned char data[1];
174 unsigned int ep;
175 int err;
176
177 ep = get_endpoint(alts, 0)->bEndpointAddress;
178
179 data[0] = 1;
180 if ((err = snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), UAC2_CS_CUR,
181 USB_TYPE_CLASS | USB_RECIP_ENDPOINT | USB_DIR_OUT,
182 UAC2_EP_CS_PITCH << 8, 0,
Clemens Ladisch17d900c2011-09-26 21:15:27 +0200183 data, sizeof(data))) < 0) {
Daniel Mack92c25612010-05-26 18:11:39 +0200184 snd_printk(KERN_ERR "%d:%d:%d: cannot set enable PITCH (v2)\n",
185 dev->devnum, iface, fmt->altsetting);
186 return err;
187 }
188
189 return 0;
190}
191
Daniel Mack767d75a2010-03-04 19:46:17 +0100192/*
Daniel Mack92c25612010-05-26 18:11:39 +0200193 * initialize the pitch control and sample rate
Daniel Mack767d75a2010-03-04 19:46:17 +0100194 */
195int snd_usb_init_pitch(struct snd_usb_audio *chip, int iface,
196 struct usb_host_interface *alts,
197 struct audioformat *fmt)
198{
199 struct usb_interface_descriptor *altsd = get_iface_desc(alts);
200
Daniel Mack92c25612010-05-26 18:11:39 +0200201 /* if endpoint doesn't have pitch control, bail out */
202 if (!(fmt->attributes & UAC_EP_CS_ATTR_PITCH_CONTROL))
203 return 0;
204
Daniel Mack767d75a2010-03-04 19:46:17 +0100205 switch (altsd->bInterfaceProtocol) {
206 case UAC_VERSION_1:
Clemens Ladischa2acad82010-09-03 10:53:11 +0200207 default:
Daniel Mack767d75a2010-03-04 19:46:17 +0100208 return init_pitch_v1(chip, iface, alts, fmt);
209
210 case UAC_VERSION_2:
Daniel Mack92c25612010-05-26 18:11:39 +0200211 return init_pitch_v2(chip, iface, alts, fmt);
Daniel Mack767d75a2010-03-04 19:46:17 +0100212 }
Daniel Mack767d75a2010-03-04 19:46:17 +0100213}
214
Daniel Mack015618b2012-08-29 13:17:05 +0200215static int start_endpoints(struct snd_usb_substream *subs, int can_sleep)
Daniel Mackedcd3632012-04-12 13:51:12 +0200216{
217 int err;
218
219 if (!subs->data_endpoint)
220 return -EINVAL;
221
222 if (!test_and_set_bit(SUBSTREAM_FLAG_DATA_EP_STARTED, &subs->flags)) {
223 struct snd_usb_endpoint *ep = subs->data_endpoint;
224
225 snd_printdd(KERN_DEBUG "Starting data EP @%p\n", ep);
226
227 ep->data_subs = subs;
Daniel Mack015618b2012-08-29 13:17:05 +0200228 err = snd_usb_endpoint_start(ep, can_sleep);
Daniel Mackedcd3632012-04-12 13:51:12 +0200229 if (err < 0) {
230 clear_bit(SUBSTREAM_FLAG_DATA_EP_STARTED, &subs->flags);
231 return err;
232 }
233 }
234
235 if (subs->sync_endpoint &&
236 !test_and_set_bit(SUBSTREAM_FLAG_SYNC_EP_STARTED, &subs->flags)) {
237 struct snd_usb_endpoint *ep = subs->sync_endpoint;
238
Daniel Mack2e4a2632012-08-30 18:52:31 +0200239 if (subs->data_endpoint->iface != subs->sync_endpoint->iface ||
240 subs->data_endpoint->alt_idx != subs->sync_endpoint->alt_idx) {
241 err = usb_set_interface(subs->dev,
242 subs->sync_endpoint->iface,
243 subs->sync_endpoint->alt_idx);
244 if (err < 0) {
245 snd_printk(KERN_ERR
246 "%d:%d:%d: cannot set interface (%d)\n",
247 subs->dev->devnum,
248 subs->sync_endpoint->iface,
249 subs->sync_endpoint->alt_idx, err);
250 return -EIO;
251 }
252 }
253
Daniel Mackedcd3632012-04-12 13:51:12 +0200254 snd_printdd(KERN_DEBUG "Starting sync EP @%p\n", ep);
255
256 ep->sync_slave = subs->data_endpoint;
Daniel Mack015618b2012-08-29 13:17:05 +0200257 err = snd_usb_endpoint_start(ep, can_sleep);
Daniel Mackedcd3632012-04-12 13:51:12 +0200258 if (err < 0) {
259 clear_bit(SUBSTREAM_FLAG_SYNC_EP_STARTED, &subs->flags);
260 return err;
261 }
262 }
263
264 return 0;
265}
266
267static void stop_endpoints(struct snd_usb_substream *subs,
268 int force, int can_sleep, int wait)
269{
270 if (test_and_clear_bit(SUBSTREAM_FLAG_SYNC_EP_STARTED, &subs->flags))
271 snd_usb_endpoint_stop(subs->sync_endpoint,
272 force, can_sleep, wait);
273
274 if (test_and_clear_bit(SUBSTREAM_FLAG_DATA_EP_STARTED, &subs->flags))
275 snd_usb_endpoint_stop(subs->data_endpoint,
276 force, can_sleep, wait);
277}
278
Daniel Mackedcd3632012-04-12 13:51:12 +0200279static int deactivate_endpoints(struct snd_usb_substream *subs)
280{
281 int reta, retb;
282
283 reta = snd_usb_endpoint_deactivate(subs->sync_endpoint);
284 retb = snd_usb_endpoint_deactivate(subs->data_endpoint);
285
286 if (reta < 0)
287 return reta;
288
289 if (retb < 0)
290 return retb;
291
292 return 0;
293}
294
Daniel Macke5779992010-03-04 19:46:13 +0100295/*
296 * find a matching format and set up the interface
297 */
298static int set_format(struct snd_usb_substream *subs, struct audioformat *fmt)
299{
300 struct usb_device *dev = subs->dev;
301 struct usb_host_interface *alts;
302 struct usb_interface_descriptor *altsd;
303 struct usb_interface *iface;
304 unsigned int ep, attr;
305 int is_playback = subs->direction == SNDRV_PCM_STREAM_PLAYBACK;
Daniel Mackc75a8a72012-04-12 13:51:14 +0200306 int err, implicit_fb = 0;
Daniel Macke5779992010-03-04 19:46:13 +0100307
308 iface = usb_ifnum_to_if(dev, fmt->iface);
309 if (WARN_ON(!iface))
310 return -EINVAL;
311 alts = &iface->altsetting[fmt->altset_idx];
312 altsd = get_iface_desc(alts);
313 if (WARN_ON(altsd->bAlternateSetting != fmt->altsetting))
314 return -EINVAL;
315
316 if (fmt == subs->cur_audiofmt)
317 return 0;
318
Daniel Mack68e67f42012-07-12 13:08:40 +0200319 /* close the old interface */
320 if (subs->interface >= 0 && subs->interface != fmt->iface) {
321 err = usb_set_interface(subs->dev, subs->interface, 0);
322 if (err < 0) {
323 snd_printk(KERN_ERR "%d:%d:%d: return to setting 0 failed (%d)\n",
324 dev->devnum, fmt->iface, fmt->altsetting, err);
325 return -EIO;
326 }
327 subs->interface = -1;
328 subs->altset_idx = 0;
329 }
330
331 /* set interface */
332 if (subs->interface != fmt->iface ||
333 subs->altset_idx != fmt->altset_idx) {
334 err = usb_set_interface(dev, fmt->iface, fmt->altsetting);
335 if (err < 0) {
336 snd_printk(KERN_ERR "%d:%d:%d: usb_set_interface failed (%d)\n",
337 dev->devnum, fmt->iface, fmt->altsetting, err);
338 return -EIO;
339 }
340 snd_printdd(KERN_INFO "setting usb interface %d:%d\n",
341 fmt->iface, fmt->altsetting);
342 subs->interface = fmt->iface;
343 subs->altset_idx = fmt->altset_idx;
344 }
345
Daniel Mackedcd3632012-04-12 13:51:12 +0200346 subs->data_endpoint = snd_usb_add_endpoint(subs->stream->chip,
347 alts, fmt->endpoint, subs->direction,
348 SND_USB_ENDPOINT_TYPE_DATA);
349 if (!subs->data_endpoint)
350 return -EINVAL;
Daniel Macke5779992010-03-04 19:46:13 +0100351
352 /* we need a sync pipe in async OUT or adaptive IN mode */
353 /* check the number of EP, since some devices have broken
354 * descriptors which fool us. if it has only one EP,
355 * assume it as adaptive-out or sync-in.
356 */
357 attr = fmt->ep_attr & USB_ENDPOINT_SYNCTYPE;
Daniel Mackc75a8a72012-04-12 13:51:14 +0200358
359 switch (subs->stream->chip->usb_id) {
360 case USB_ID(0x0763, 0x2080): /* M-Audio FastTrack Ultra */
361 case USB_ID(0x0763, 0x2081):
362 if (is_playback) {
363 implicit_fb = 1;
Daniel Mackedcd3632012-04-12 13:51:12 +0200364 ep = 0x81;
365 iface = usb_ifnum_to_if(dev, 2);
Daniel Mackc75a8a72012-04-12 13:51:14 +0200366
367 if (!iface || iface->num_altsetting == 0)
368 return -EINVAL;
369
Daniel Mackedcd3632012-04-12 13:51:12 +0200370 alts = &iface->altsetting[1];
371 goto add_sync_ep;
372 }
Daniel Mackc75a8a72012-04-12 13:51:14 +0200373 }
Daniel Mackedcd3632012-04-12 13:51:12 +0200374
Daniel Mackc75a8a72012-04-12 13:51:14 +0200375 if (((is_playback && attr == USB_ENDPOINT_SYNC_ASYNC) ||
376 (!is_playback && attr == USB_ENDPOINT_SYNC_ADAPTIVE)) &&
377 altsd->bNumEndpoints >= 2) {
Daniel Macke5779992010-03-04 19:46:13 +0100378 /* check sync-pipe endpoint */
379 /* ... and check descriptor size before accessing bSynchAddress
380 because there is a version of the SB Audigy 2 NX firmware lacking
381 the audio fields in the endpoint descriptors */
382 if ((get_endpoint(alts, 1)->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) != 0x01 ||
383 (get_endpoint(alts, 1)->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE &&
Daniel Mackc75a8a72012-04-12 13:51:14 +0200384 get_endpoint(alts, 1)->bSynchAddress != 0 &&
385 !implicit_fb)) {
Daniel Mack7fb75db2012-06-17 13:44:27 +0200386 snd_printk(KERN_ERR "%d:%d:%d : invalid sync pipe. bmAttributes %02x, bLength %d, bSynchAddress %02x\n",
387 dev->devnum, fmt->iface, fmt->altsetting,
388 get_endpoint(alts, 1)->bmAttributes,
389 get_endpoint(alts, 1)->bLength,
390 get_endpoint(alts, 1)->bSynchAddress);
Daniel Macke5779992010-03-04 19:46:13 +0100391 return -EINVAL;
392 }
393 ep = get_endpoint(alts, 1)->bEndpointAddress;
Daniel Mack7fb75db2012-06-17 13:44:27 +0200394 if (!implicit_fb &&
395 get_endpoint(alts, 0)->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE &&
Daniel Macke5779992010-03-04 19:46:13 +0100396 (( is_playback && ep != (unsigned int)(get_endpoint(alts, 0)->bSynchAddress | USB_DIR_IN)) ||
Daniel Mack7fb75db2012-06-17 13:44:27 +0200397 (!is_playback && ep != (unsigned int)(get_endpoint(alts, 0)->bSynchAddress & ~USB_DIR_IN)))) {
398 snd_printk(KERN_ERR "%d:%d:%d : invalid sync pipe. is_playback %d, ep %02x, bSynchAddress %02x\n",
399 dev->devnum, fmt->iface, fmt->altsetting,
400 is_playback, ep, get_endpoint(alts, 0)->bSynchAddress);
Daniel Macke5779992010-03-04 19:46:13 +0100401 return -EINVAL;
402 }
Daniel Mackc75a8a72012-04-12 13:51:14 +0200403
404 implicit_fb = (get_endpoint(alts, 1)->bmAttributes & USB_ENDPOINT_USAGE_MASK)
405 == USB_ENDPOINT_USAGE_IMPLICIT_FB;
406
Daniel Mackedcd3632012-04-12 13:51:12 +0200407add_sync_ep:
408 subs->sync_endpoint = snd_usb_add_endpoint(subs->stream->chip,
409 alts, ep, !subs->direction,
Daniel Mackc75a8a72012-04-12 13:51:14 +0200410 implicit_fb ?
411 SND_USB_ENDPOINT_TYPE_DATA :
412 SND_USB_ENDPOINT_TYPE_SYNC);
Daniel Mackedcd3632012-04-12 13:51:12 +0200413 if (!subs->sync_endpoint)
414 return -EINVAL;
415
416 subs->data_endpoint->sync_master = subs->sync_endpoint;
417 }
Daniel Macke5779992010-03-04 19:46:13 +0100418
Takashi Iwai9e9b5942012-07-06 08:11:43 +0200419 if ((err = snd_usb_init_pitch(subs->stream->chip, fmt->iface, alts, fmt)) < 0)
Daniel Macke5779992010-03-04 19:46:13 +0100420 return err;
421
422 subs->cur_audiofmt = fmt;
423
424 snd_usb_set_format_quirk(subs, fmt);
425
426#if 0
427 printk(KERN_DEBUG
428 "setting done: format = %d, rate = %d..%d, channels = %d\n",
429 fmt->format, fmt->rate_min, fmt->rate_max, fmt->channels);
430 printk(KERN_DEBUG
431 " datapipe = 0x%0x, syncpipe = 0x%0x\n",
432 subs->datapipe, subs->syncpipe);
433#endif
434
435 return 0;
436}
437
438/*
Dylan Reid61a70952012-09-18 09:49:48 -0700439 * configure endpoint params
440 *
441 * called during initial setup and upon resume
442 */
443static int configure_endpoint(struct snd_usb_substream *subs)
444{
445 int ret;
446
447 mutex_lock(&subs->stream->chip->shutdown_mutex);
448 /* format changed */
449 stop_endpoints(subs, 0, 0, 0);
450 ret = snd_usb_endpoint_set_params(subs->data_endpoint,
451 subs->pcm_format,
452 subs->channels,
453 subs->period_bytes,
454 subs->cur_rate,
455 subs->cur_audiofmt,
456 subs->sync_endpoint);
457 if (ret < 0)
458 goto unlock;
459
460 if (subs->sync_endpoint)
461 ret = snd_usb_endpoint_set_params(subs->data_endpoint,
462 subs->pcm_format,
463 subs->channels,
464 subs->period_bytes,
465 subs->cur_rate,
466 subs->cur_audiofmt,
467 NULL);
468
469unlock:
470 mutex_unlock(&subs->stream->chip->shutdown_mutex);
471 return ret;
472}
473
474/*
Daniel Macke5779992010-03-04 19:46:13 +0100475 * hw_params callback
476 *
477 * allocate a buffer and set the given audio format.
478 *
479 * so far we use a physically linear buffer although packetize transfer
480 * doesn't need a continuous area.
481 * if sg buffer is supported on the later version of alsa, we'll follow
482 * that.
483 */
484static int snd_usb_hw_params(struct snd_pcm_substream *substream,
485 struct snd_pcm_hw_params *hw_params)
486{
487 struct snd_usb_substream *subs = substream->runtime->private_data;
488 struct audioformat *fmt;
Dylan Reid61a70952012-09-18 09:49:48 -0700489 int ret;
Daniel Macke5779992010-03-04 19:46:13 +0100490
491 ret = snd_pcm_lib_alloc_vmalloc_buffer(substream,
492 params_buffer_bytes(hw_params));
493 if (ret < 0)
494 return ret;
495
Dylan Reid61a70952012-09-18 09:49:48 -0700496 subs->pcm_format = params_format(hw_params);
497 subs->period_bytes = params_period_bytes(hw_params);
498 subs->channels = params_channels(hw_params);
499 subs->cur_rate = params_rate(hw_params);
500
501 fmt = find_format(subs);
Daniel Macke5779992010-03-04 19:46:13 +0100502 if (!fmt) {
503 snd_printd(KERN_DEBUG "cannot set format: format = %#x, rate = %d, channels = %d\n",
Dylan Reid61a70952012-09-18 09:49:48 -0700504 subs->pcm_format, subs->cur_rate, subs->channels);
Daniel Macke5779992010-03-04 19:46:13 +0100505 return -EINVAL;
506 }
507
Daniel Macke5779992010-03-04 19:46:13 +0100508 if ((ret = set_format(subs, fmt)) < 0)
509 return ret;
510
Dylan Reid61a70952012-09-18 09:49:48 -0700511 subs->interface = fmt->iface;
512 subs->altset_idx = fmt->altset_idx;
Daniel Macke5779992010-03-04 19:46:13 +0100513
Dylan Reid61a70952012-09-18 09:49:48 -0700514 return 0;
Daniel Macke5779992010-03-04 19:46:13 +0100515}
516
517/*
518 * hw_free callback
519 *
520 * reset the audio format and release the buffer
521 */
522static int snd_usb_hw_free(struct snd_pcm_substream *substream)
523{
524 struct snd_usb_substream *subs = substream->runtime->private_data;
525
526 subs->cur_audiofmt = NULL;
527 subs->cur_rate = 0;
528 subs->period_bytes = 0;
Takashi Iwai382225e2011-02-22 10:21:18 +0100529 mutex_lock(&subs->stream->chip->shutdown_mutex);
Daniel Mackedcd3632012-04-12 13:51:12 +0200530 stop_endpoints(subs, 0, 1, 1);
Daniel Mack68e67f42012-07-12 13:08:40 +0200531 deactivate_endpoints(subs);
Takashi Iwai382225e2011-02-22 10:21:18 +0100532 mutex_unlock(&subs->stream->chip->shutdown_mutex);
Daniel Macke5779992010-03-04 19:46:13 +0100533 return snd_pcm_lib_free_vmalloc_buffer(substream);
534}
535
536/*
537 * prepare callback
538 *
539 * only a few subtle things...
540 */
541static int snd_usb_pcm_prepare(struct snd_pcm_substream *substream)
542{
543 struct snd_pcm_runtime *runtime = substream->runtime;
544 struct snd_usb_substream *subs = runtime->private_data;
Dylan Reid61a70952012-09-18 09:49:48 -0700545 struct usb_host_interface *alts;
546 struct usb_interface *iface;
547 int ret;
Daniel Macke5779992010-03-04 19:46:13 +0100548
549 if (! subs->cur_audiofmt) {
550 snd_printk(KERN_ERR "usbaudio: no format is specified!\n");
551 return -ENXIO;
552 }
553
Daniel Mackedcd3632012-04-12 13:51:12 +0200554 if (snd_BUG_ON(!subs->data_endpoint))
555 return -EIO;
556
Dylan Reid61a70952012-09-18 09:49:48 -0700557 ret = set_format(subs, subs->cur_audiofmt);
558 if (ret < 0)
559 return ret;
560
561 iface = usb_ifnum_to_if(subs->dev, subs->cur_audiofmt->iface);
562 alts = &iface->altsetting[subs->cur_audiofmt->altset_idx];
563 ret = snd_usb_init_sample_rate(subs->stream->chip,
564 subs->cur_audiofmt->iface,
565 alts,
566 subs->cur_audiofmt,
567 subs->cur_rate);
568 if (ret < 0)
569 return ret;
570
571 ret = configure_endpoint(subs);
572 if (ret < 0)
573 return ret;
574
Daniel Macke5779992010-03-04 19:46:13 +0100575 /* some unit conversions in runtime */
Daniel Mackedcd3632012-04-12 13:51:12 +0200576 subs->data_endpoint->maxframesize =
577 bytes_to_frames(runtime, subs->data_endpoint->maxpacksize);
578 subs->data_endpoint->curframesize =
579 bytes_to_frames(runtime, subs->data_endpoint->curpacksize);
Daniel Macke5779992010-03-04 19:46:13 +0100580
581 /* reset the pointer */
582 subs->hwptr_done = 0;
583 subs->transfer_done = 0;
Pierre-Louis Bossart294c4fb2011-09-06 19:15:34 -0500584 subs->last_delay = 0;
585 subs->last_frame_number = 0;
Daniel Macke5779992010-03-04 19:46:13 +0100586 runtime->delay = 0;
587
Daniel Mackedcd3632012-04-12 13:51:12 +0200588 /* for playback, submit the URBs now; otherwise, the first hwptr_done
589 * updates for all URBs would happen at the same time when starting */
590 if (subs->direction == SNDRV_PCM_STREAM_PLAYBACK)
Daniel Mack015618b2012-08-29 13:17:05 +0200591 return start_endpoints(subs, 1);
Daniel Mackedcd3632012-04-12 13:51:12 +0200592
593 return 0;
Daniel Macke5779992010-03-04 19:46:13 +0100594}
595
596static struct snd_pcm_hardware snd_usb_hardware =
597{
598 .info = SNDRV_PCM_INFO_MMAP |
599 SNDRV_PCM_INFO_MMAP_VALID |
600 SNDRV_PCM_INFO_BATCH |
601 SNDRV_PCM_INFO_INTERLEAVED |
602 SNDRV_PCM_INFO_BLOCK_TRANSFER |
603 SNDRV_PCM_INFO_PAUSE,
604 .buffer_bytes_max = 1024 * 1024,
605 .period_bytes_min = 64,
606 .period_bytes_max = 512 * 1024,
607 .periods_min = 2,
608 .periods_max = 1024,
609};
610
611static int hw_check_valid_format(struct snd_usb_substream *subs,
612 struct snd_pcm_hw_params *params,
613 struct audioformat *fp)
614{
615 struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
616 struct snd_interval *ct = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
617 struct snd_mask *fmts = hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT);
618 struct snd_interval *pt = hw_param_interval(params, SNDRV_PCM_HW_PARAM_PERIOD_TIME);
Clemens Ladisch015eb0b2010-03-04 19:46:15 +0100619 struct snd_mask check_fmts;
Daniel Macke5779992010-03-04 19:46:13 +0100620 unsigned int ptime;
621
622 /* check the format */
Clemens Ladisch015eb0b2010-03-04 19:46:15 +0100623 snd_mask_none(&check_fmts);
624 check_fmts.bits[0] = (u32)fp->formats;
625 check_fmts.bits[1] = (u32)(fp->formats >> 32);
626 snd_mask_intersect(&check_fmts, fmts);
627 if (snd_mask_empty(&check_fmts)) {
Daniel Macke5779992010-03-04 19:46:13 +0100628 hwc_debug(" > check: no supported format %d\n", fp->format);
629 return 0;
630 }
631 /* check the channels */
632 if (fp->channels < ct->min || fp->channels > ct->max) {
633 hwc_debug(" > check: no valid channels %d (%d/%d)\n", fp->channels, ct->min, ct->max);
634 return 0;
635 }
636 /* check the rate is within the range */
637 if (fp->rate_min > it->max || (fp->rate_min == it->max && it->openmax)) {
638 hwc_debug(" > check: rate_min %d > max %d\n", fp->rate_min, it->max);
639 return 0;
640 }
641 if (fp->rate_max < it->min || (fp->rate_max == it->min && it->openmin)) {
642 hwc_debug(" > check: rate_max %d < min %d\n", fp->rate_max, it->min);
643 return 0;
644 }
645 /* check whether the period time is >= the data packet interval */
Paul Zimmerman4f4e8f62010-08-13 12:42:07 -0700646 if (snd_usb_get_speed(subs->dev) != USB_SPEED_FULL) {
Daniel Macke5779992010-03-04 19:46:13 +0100647 ptime = 125 * (1 << fp->datainterval);
648 if (ptime > pt->max || (ptime == pt->max && pt->openmax)) {
649 hwc_debug(" > check: ptime %u > max %u\n", ptime, pt->max);
650 return 0;
651 }
652 }
653 return 1;
654}
655
656static int hw_rule_rate(struct snd_pcm_hw_params *params,
657 struct snd_pcm_hw_rule *rule)
658{
659 struct snd_usb_substream *subs = rule->private;
660 struct list_head *p;
661 struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
662 unsigned int rmin, rmax;
663 int changed;
664
665 hwc_debug("hw_rule_rate: (%d,%d)\n", it->min, it->max);
666 changed = 0;
667 rmin = rmax = 0;
668 list_for_each(p, &subs->fmt_list) {
669 struct audioformat *fp;
670 fp = list_entry(p, struct audioformat, list);
671 if (!hw_check_valid_format(subs, params, fp))
672 continue;
673 if (changed++) {
674 if (rmin > fp->rate_min)
675 rmin = fp->rate_min;
676 if (rmax < fp->rate_max)
677 rmax = fp->rate_max;
678 } else {
679 rmin = fp->rate_min;
680 rmax = fp->rate_max;
681 }
682 }
683
684 if (!changed) {
685 hwc_debug(" --> get empty\n");
686 it->empty = 1;
687 return -EINVAL;
688 }
689
690 changed = 0;
691 if (it->min < rmin) {
692 it->min = rmin;
693 it->openmin = 0;
694 changed = 1;
695 }
696 if (it->max > rmax) {
697 it->max = rmax;
698 it->openmax = 0;
699 changed = 1;
700 }
701 if (snd_interval_checkempty(it)) {
702 it->empty = 1;
703 return -EINVAL;
704 }
705 hwc_debug(" --> (%d, %d) (changed = %d)\n", it->min, it->max, changed);
706 return changed;
707}
708
709
710static int hw_rule_channels(struct snd_pcm_hw_params *params,
711 struct snd_pcm_hw_rule *rule)
712{
713 struct snd_usb_substream *subs = rule->private;
714 struct list_head *p;
715 struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
716 unsigned int rmin, rmax;
717 int changed;
718
719 hwc_debug("hw_rule_channels: (%d,%d)\n", it->min, it->max);
720 changed = 0;
721 rmin = rmax = 0;
722 list_for_each(p, &subs->fmt_list) {
723 struct audioformat *fp;
724 fp = list_entry(p, struct audioformat, list);
725 if (!hw_check_valid_format(subs, params, fp))
726 continue;
727 if (changed++) {
728 if (rmin > fp->channels)
729 rmin = fp->channels;
730 if (rmax < fp->channels)
731 rmax = fp->channels;
732 } else {
733 rmin = fp->channels;
734 rmax = fp->channels;
735 }
736 }
737
738 if (!changed) {
739 hwc_debug(" --> get empty\n");
740 it->empty = 1;
741 return -EINVAL;
742 }
743
744 changed = 0;
745 if (it->min < rmin) {
746 it->min = rmin;
747 it->openmin = 0;
748 changed = 1;
749 }
750 if (it->max > rmax) {
751 it->max = rmax;
752 it->openmax = 0;
753 changed = 1;
754 }
755 if (snd_interval_checkempty(it)) {
756 it->empty = 1;
757 return -EINVAL;
758 }
759 hwc_debug(" --> (%d, %d) (changed = %d)\n", it->min, it->max, changed);
760 return changed;
761}
762
763static int hw_rule_format(struct snd_pcm_hw_params *params,
764 struct snd_pcm_hw_rule *rule)
765{
766 struct snd_usb_substream *subs = rule->private;
767 struct list_head *p;
768 struct snd_mask *fmt = hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT);
769 u64 fbits;
770 u32 oldbits[2];
771 int changed;
772
773 hwc_debug("hw_rule_format: %x:%x\n", fmt->bits[0], fmt->bits[1]);
774 fbits = 0;
775 list_for_each(p, &subs->fmt_list) {
776 struct audioformat *fp;
777 fp = list_entry(p, struct audioformat, list);
778 if (!hw_check_valid_format(subs, params, fp))
779 continue;
Clemens Ladisch015eb0b2010-03-04 19:46:15 +0100780 fbits |= fp->formats;
Daniel Macke5779992010-03-04 19:46:13 +0100781 }
782
783 oldbits[0] = fmt->bits[0];
784 oldbits[1] = fmt->bits[1];
785 fmt->bits[0] &= (u32)fbits;
786 fmt->bits[1] &= (u32)(fbits >> 32);
787 if (!fmt->bits[0] && !fmt->bits[1]) {
788 hwc_debug(" --> get empty\n");
789 return -EINVAL;
790 }
791 changed = (oldbits[0] != fmt->bits[0] || oldbits[1] != fmt->bits[1]);
792 hwc_debug(" --> %x:%x (changed = %d)\n", fmt->bits[0], fmt->bits[1], changed);
793 return changed;
794}
795
796static int hw_rule_period_time(struct snd_pcm_hw_params *params,
797 struct snd_pcm_hw_rule *rule)
798{
799 struct snd_usb_substream *subs = rule->private;
800 struct audioformat *fp;
801 struct snd_interval *it;
802 unsigned char min_datainterval;
803 unsigned int pmin;
804 int changed;
805
806 it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_PERIOD_TIME);
807 hwc_debug("hw_rule_period_time: (%u,%u)\n", it->min, it->max);
808 min_datainterval = 0xff;
809 list_for_each_entry(fp, &subs->fmt_list, list) {
810 if (!hw_check_valid_format(subs, params, fp))
811 continue;
812 min_datainterval = min(min_datainterval, fp->datainterval);
813 }
814 if (min_datainterval == 0xff) {
Uwe Kleine-Königa7ce2e02010-07-12 17:15:44 +0200815 hwc_debug(" --> get empty\n");
Daniel Macke5779992010-03-04 19:46:13 +0100816 it->empty = 1;
817 return -EINVAL;
818 }
819 pmin = 125 * (1 << min_datainterval);
820 changed = 0;
821 if (it->min < pmin) {
822 it->min = pmin;
823 it->openmin = 0;
824 changed = 1;
825 }
826 if (snd_interval_checkempty(it)) {
827 it->empty = 1;
828 return -EINVAL;
829 }
830 hwc_debug(" --> (%u,%u) (changed = %d)\n", it->min, it->max, changed);
831 return changed;
832}
833
834/*
835 * If the device supports unusual bit rates, does the request meet these?
836 */
837static int snd_usb_pcm_check_knot(struct snd_pcm_runtime *runtime,
838 struct snd_usb_substream *subs)
839{
840 struct audioformat *fp;
Takashi Iwai0717d0f2012-03-15 16:14:38 +0100841 int *rate_list;
Daniel Macke5779992010-03-04 19:46:13 +0100842 int count = 0, needs_knot = 0;
843 int err;
844
Clemens Ladisch5cd5d7c2012-05-18 18:00:43 +0200845 kfree(subs->rate_list.list);
846 subs->rate_list.list = NULL;
847
Daniel Macke5779992010-03-04 19:46:13 +0100848 list_for_each_entry(fp, &subs->fmt_list, list) {
849 if (fp->rates & SNDRV_PCM_RATE_CONTINUOUS)
850 return 0;
851 count += fp->nr_rates;
852 if (fp->rates & SNDRV_PCM_RATE_KNOT)
853 needs_knot = 1;
854 }
855 if (!needs_knot)
856 return 0;
857
Takashi Iwai0717d0f2012-03-15 16:14:38 +0100858 subs->rate_list.list = rate_list =
859 kmalloc(sizeof(int) * count, GFP_KERNEL);
Jesper Juhl8a8d56b2010-10-29 20:40:23 +0200860 if (!subs->rate_list.list)
861 return -ENOMEM;
862 subs->rate_list.count = count;
Daniel Macke5779992010-03-04 19:46:13 +0100863 subs->rate_list.mask = 0;
864 count = 0;
865 list_for_each_entry(fp, &subs->fmt_list, list) {
866 int i;
867 for (i = 0; i < fp->nr_rates; i++)
Takashi Iwai0717d0f2012-03-15 16:14:38 +0100868 rate_list[count++] = fp->rate_table[i];
Daniel Macke5779992010-03-04 19:46:13 +0100869 }
870 err = snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
871 &subs->rate_list);
872 if (err < 0)
873 return err;
874
875 return 0;
876}
877
878
879/*
880 * set up the runtime hardware information.
881 */
882
883static int setup_hw_info(struct snd_pcm_runtime *runtime, struct snd_usb_substream *subs)
884{
885 struct list_head *p;
886 unsigned int pt, ptmin;
887 int param_period_time_if_needed;
888 int err;
889
890 runtime->hw.formats = subs->formats;
891
892 runtime->hw.rate_min = 0x7fffffff;
893 runtime->hw.rate_max = 0;
894 runtime->hw.channels_min = 256;
895 runtime->hw.channels_max = 0;
896 runtime->hw.rates = 0;
897 ptmin = UINT_MAX;
898 /* check min/max rates and channels */
899 list_for_each(p, &subs->fmt_list) {
900 struct audioformat *fp;
901 fp = list_entry(p, struct audioformat, list);
902 runtime->hw.rates |= fp->rates;
903 if (runtime->hw.rate_min > fp->rate_min)
904 runtime->hw.rate_min = fp->rate_min;
905 if (runtime->hw.rate_max < fp->rate_max)
906 runtime->hw.rate_max = fp->rate_max;
907 if (runtime->hw.channels_min > fp->channels)
908 runtime->hw.channels_min = fp->channels;
909 if (runtime->hw.channels_max < fp->channels)
910 runtime->hw.channels_max = fp->channels;
911 if (fp->fmt_type == UAC_FORMAT_TYPE_II && fp->frame_size > 0) {
912 /* FIXME: there might be more than one audio formats... */
913 runtime->hw.period_bytes_min = runtime->hw.period_bytes_max =
914 fp->frame_size;
915 }
916 pt = 125 * (1 << fp->datainterval);
917 ptmin = min(ptmin, pt);
918 }
Oliver Neukum88a85162011-03-11 14:51:12 +0100919 err = snd_usb_autoresume(subs->stream->chip);
920 if (err < 0)
921 return err;
Daniel Macke5779992010-03-04 19:46:13 +0100922
923 param_period_time_if_needed = SNDRV_PCM_HW_PARAM_PERIOD_TIME;
Paul Zimmerman4f4e8f62010-08-13 12:42:07 -0700924 if (snd_usb_get_speed(subs->dev) == USB_SPEED_FULL)
Daniel Macke5779992010-03-04 19:46:13 +0100925 /* full speed devices have fixed data packet interval */
926 ptmin = 1000;
927 if (ptmin == 1000)
928 /* if period time doesn't go below 1 ms, no rules needed */
929 param_period_time_if_needed = -1;
930 snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_PERIOD_TIME,
931 ptmin, UINT_MAX);
932
933 if ((err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
934 hw_rule_rate, subs,
935 SNDRV_PCM_HW_PARAM_FORMAT,
936 SNDRV_PCM_HW_PARAM_CHANNELS,
937 param_period_time_if_needed,
938 -1)) < 0)
Oliver Neukum88a85162011-03-11 14:51:12 +0100939 goto rep_err;
Daniel Macke5779992010-03-04 19:46:13 +0100940 if ((err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS,
941 hw_rule_channels, subs,
942 SNDRV_PCM_HW_PARAM_FORMAT,
943 SNDRV_PCM_HW_PARAM_RATE,
944 param_period_time_if_needed,
945 -1)) < 0)
Oliver Neukum88a85162011-03-11 14:51:12 +0100946 goto rep_err;
Daniel Macke5779992010-03-04 19:46:13 +0100947 if ((err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_FORMAT,
948 hw_rule_format, subs,
949 SNDRV_PCM_HW_PARAM_RATE,
950 SNDRV_PCM_HW_PARAM_CHANNELS,
951 param_period_time_if_needed,
952 -1)) < 0)
Oliver Neukum88a85162011-03-11 14:51:12 +0100953 goto rep_err;
Daniel Macke5779992010-03-04 19:46:13 +0100954 if (param_period_time_if_needed >= 0) {
955 err = snd_pcm_hw_rule_add(runtime, 0,
956 SNDRV_PCM_HW_PARAM_PERIOD_TIME,
957 hw_rule_period_time, subs,
958 SNDRV_PCM_HW_PARAM_FORMAT,
959 SNDRV_PCM_HW_PARAM_CHANNELS,
960 SNDRV_PCM_HW_PARAM_RATE,
961 -1);
962 if (err < 0)
Oliver Neukum88a85162011-03-11 14:51:12 +0100963 goto rep_err;
Daniel Macke5779992010-03-04 19:46:13 +0100964 }
965 if ((err = snd_usb_pcm_check_knot(runtime, subs)) < 0)
Oliver Neukum88a85162011-03-11 14:51:12 +0100966 goto rep_err;
Daniel Macke5779992010-03-04 19:46:13 +0100967 return 0;
Oliver Neukum88a85162011-03-11 14:51:12 +0100968
969rep_err:
970 snd_usb_autosuspend(subs->stream->chip);
971 return err;
Daniel Macke5779992010-03-04 19:46:13 +0100972}
973
974static int snd_usb_pcm_open(struct snd_pcm_substream *substream, int direction)
975{
976 struct snd_usb_stream *as = snd_pcm_substream_chip(substream);
977 struct snd_pcm_runtime *runtime = substream->runtime;
978 struct snd_usb_substream *subs = &as->substream[direction];
979
980 subs->interface = -1;
Clemens Ladische11b4e02010-03-04 19:46:14 +0100981 subs->altset_idx = 0;
Daniel Macke5779992010-03-04 19:46:13 +0100982 runtime->hw = snd_usb_hardware;
983 runtime->private_data = subs;
984 subs->pcm_substream = substream;
Oliver Neukum88a85162011-03-11 14:51:12 +0100985 /* runtime PM is also done there */
Daniel Macke5779992010-03-04 19:46:13 +0100986 return setup_hw_info(runtime, subs);
987}
988
989static int snd_usb_pcm_close(struct snd_pcm_substream *substream, int direction)
990{
991 struct snd_usb_stream *as = snd_pcm_substream_chip(substream);
992 struct snd_usb_substream *subs = &as->substream[direction];
993
Daniel Mackedcd3632012-04-12 13:51:12 +0200994 stop_endpoints(subs, 0, 0, 0);
Daniel Mack68e67f42012-07-12 13:08:40 +0200995
996 if (!as->chip->shutdown && subs->interface >= 0) {
997 usb_set_interface(subs->dev, subs->interface, 0);
998 subs->interface = -1;
999 }
1000
Daniel Macke5779992010-03-04 19:46:13 +01001001 subs->pcm_substream = NULL;
Oliver Neukum88a85162011-03-11 14:51:12 +01001002 snd_usb_autosuspend(subs->stream->chip);
Daniel Mackedcd3632012-04-12 13:51:12 +02001003
Daniel Mack68e67f42012-07-12 13:08:40 +02001004 return 0;
Daniel Mackedcd3632012-04-12 13:51:12 +02001005}
1006
1007/* Since a URB can handle only a single linear buffer, we must use double
1008 * buffering when the data to be transferred overflows the buffer boundary.
1009 * To avoid inconsistencies when updating hwptr_done, we use double buffering
1010 * for all URBs.
1011 */
1012static void retire_capture_urb(struct snd_usb_substream *subs,
1013 struct urb *urb)
1014{
1015 struct snd_pcm_runtime *runtime = subs->pcm_substream->runtime;
1016 unsigned int stride, frames, bytes, oldptr;
1017 int i, period_elapsed = 0;
1018 unsigned long flags;
1019 unsigned char *cp;
1020
1021 stride = runtime->frame_bits >> 3;
1022
1023 for (i = 0; i < urb->number_of_packets; i++) {
1024 cp = (unsigned char *)urb->transfer_buffer + urb->iso_frame_desc[i].offset;
1025 if (urb->iso_frame_desc[i].status && printk_ratelimit()) {
1026 snd_printdd(KERN_ERR "frame %d active: %d\n", i, urb->iso_frame_desc[i].status);
1027 // continue;
1028 }
1029 bytes = urb->iso_frame_desc[i].actual_length;
1030 frames = bytes / stride;
1031 if (!subs->txfr_quirk)
1032 bytes = frames * stride;
1033 if (bytes % (runtime->sample_bits >> 3) != 0) {
1034#ifdef CONFIG_SND_DEBUG_VERBOSE
1035 int oldbytes = bytes;
1036#endif
1037 bytes = frames * stride;
1038 snd_printdd(KERN_ERR "Corrected urb data len. %d->%d\n",
1039 oldbytes, bytes);
1040 }
1041 /* update the current pointer */
1042 spin_lock_irqsave(&subs->lock, flags);
1043 oldptr = subs->hwptr_done;
1044 subs->hwptr_done += bytes;
1045 if (subs->hwptr_done >= runtime->buffer_size * stride)
1046 subs->hwptr_done -= runtime->buffer_size * stride;
1047 frames = (bytes + (oldptr % stride)) / stride;
1048 subs->transfer_done += frames;
1049 if (subs->transfer_done >= runtime->period_size) {
1050 subs->transfer_done -= runtime->period_size;
1051 period_elapsed = 1;
1052 }
1053 spin_unlock_irqrestore(&subs->lock, flags);
1054 /* copy a data chunk */
1055 if (oldptr + bytes > runtime->buffer_size * stride) {
1056 unsigned int bytes1 =
1057 runtime->buffer_size * stride - oldptr;
1058 memcpy(runtime->dma_area + oldptr, cp, bytes1);
1059 memcpy(runtime->dma_area, cp + bytes1, bytes - bytes1);
1060 } else {
1061 memcpy(runtime->dma_area + oldptr, cp, bytes);
1062 }
1063 }
1064
1065 if (period_elapsed)
1066 snd_pcm_period_elapsed(subs->pcm_substream);
1067}
1068
1069static void prepare_playback_urb(struct snd_usb_substream *subs,
1070 struct urb *urb)
1071{
1072 struct snd_pcm_runtime *runtime = subs->pcm_substream->runtime;
Daniel Mack245baf92012-08-30 18:52:30 +02001073 struct snd_usb_endpoint *ep = subs->data_endpoint;
Daniel Mackedcd3632012-04-12 13:51:12 +02001074 struct snd_urb_ctx *ctx = urb->context;
1075 unsigned int counts, frames, bytes;
1076 int i, stride, period_elapsed = 0;
1077 unsigned long flags;
1078
1079 stride = runtime->frame_bits >> 3;
1080
1081 frames = 0;
1082 urb->number_of_packets = 0;
1083 spin_lock_irqsave(&subs->lock, flags);
1084 for (i = 0; i < ctx->packets; i++) {
Daniel Mack245baf92012-08-30 18:52:30 +02001085 if (ctx->packet_size[i])
1086 counts = ctx->packet_size[i];
1087 else
1088 counts = snd_usb_endpoint_next_packet_size(ep);
1089
Daniel Mackedcd3632012-04-12 13:51:12 +02001090 /* set up descriptor */
1091 urb->iso_frame_desc[i].offset = frames * stride;
1092 urb->iso_frame_desc[i].length = counts * stride;
1093 frames += counts;
1094 urb->number_of_packets++;
1095 subs->transfer_done += counts;
1096 if (subs->transfer_done >= runtime->period_size) {
1097 subs->transfer_done -= runtime->period_size;
1098 period_elapsed = 1;
1099 if (subs->fmt_type == UAC_FORMAT_TYPE_II) {
1100 if (subs->transfer_done > 0) {
1101 /* FIXME: fill-max mode is not
1102 * supported yet */
1103 frames -= subs->transfer_done;
1104 counts -= subs->transfer_done;
1105 urb->iso_frame_desc[i].length =
1106 counts * stride;
1107 subs->transfer_done = 0;
1108 }
1109 i++;
1110 if (i < ctx->packets) {
1111 /* add a transfer delimiter */
1112 urb->iso_frame_desc[i].offset =
1113 frames * stride;
1114 urb->iso_frame_desc[i].length = 0;
1115 urb->number_of_packets++;
1116 }
1117 break;
1118 }
1119 }
1120 if (period_elapsed &&
1121 !snd_usb_endpoint_implict_feedback_sink(subs->data_endpoint)) /* finish at the period boundary */
1122 break;
1123 }
1124 bytes = frames * stride;
1125 if (subs->hwptr_done + bytes > runtime->buffer_size * stride) {
1126 /* err, the transferred area goes over buffer boundary. */
1127 unsigned int bytes1 =
1128 runtime->buffer_size * stride - subs->hwptr_done;
1129 memcpy(urb->transfer_buffer,
1130 runtime->dma_area + subs->hwptr_done, bytes1);
1131 memcpy(urb->transfer_buffer + bytes1,
1132 runtime->dma_area, bytes - bytes1);
1133 } else {
1134 memcpy(urb->transfer_buffer,
1135 runtime->dma_area + subs->hwptr_done, bytes);
1136 }
1137 subs->hwptr_done += bytes;
1138 if (subs->hwptr_done >= runtime->buffer_size * stride)
1139 subs->hwptr_done -= runtime->buffer_size * stride;
Daniel Mackfbcfbf52012-08-30 18:52:29 +02001140
1141 /* update delay with exact number of samples queued */
1142 runtime->delay = subs->last_delay;
Daniel Mackedcd3632012-04-12 13:51:12 +02001143 runtime->delay += frames;
Daniel Mackfbcfbf52012-08-30 18:52:29 +02001144 subs->last_delay = runtime->delay;
1145
1146 /* realign last_frame_number */
1147 subs->last_frame_number = usb_get_current_frame_number(subs->dev);
1148 subs->last_frame_number &= 0xFF; /* keep 8 LSBs */
1149
Daniel Mackedcd3632012-04-12 13:51:12 +02001150 spin_unlock_irqrestore(&subs->lock, flags);
1151 urb->transfer_buffer_length = bytes;
1152 if (period_elapsed)
1153 snd_pcm_period_elapsed(subs->pcm_substream);
1154}
1155
1156/*
1157 * process after playback data complete
1158 * - decrease the delay count again
1159 */
1160static void retire_playback_urb(struct snd_usb_substream *subs,
1161 struct urb *urb)
1162{
1163 unsigned long flags;
1164 struct snd_pcm_runtime *runtime = subs->pcm_substream->runtime;
1165 int stride = runtime->frame_bits >> 3;
1166 int processed = urb->transfer_buffer_length / stride;
Daniel Mackfbcfbf52012-08-30 18:52:29 +02001167 int est_delay;
Daniel Mackedcd3632012-04-12 13:51:12 +02001168
Takashi Iwai1213a202012-09-06 14:58:00 +02001169 /* ignore the delay accounting when procssed=0 is given, i.e.
1170 * silent payloads are procssed before handling the actual data
1171 */
1172 if (!processed)
1173 return;
1174
Daniel Mackedcd3632012-04-12 13:51:12 +02001175 spin_lock_irqsave(&subs->lock, flags);
Daniel Mackfbcfbf52012-08-30 18:52:29 +02001176 est_delay = snd_usb_pcm_delay(subs, runtime->rate);
1177 /* update delay with exact number of samples played */
1178 if (processed > subs->last_delay)
1179 subs->last_delay = 0;
Daniel Mackedcd3632012-04-12 13:51:12 +02001180 else
Daniel Mackfbcfbf52012-08-30 18:52:29 +02001181 subs->last_delay -= processed;
1182 runtime->delay = subs->last_delay;
1183
1184 /*
1185 * Report when delay estimate is off by more than 2ms.
1186 * The error should be lower than 2ms since the estimate relies
1187 * on two reads of a counter updated every ms.
1188 */
1189 if (abs(est_delay - subs->last_delay) * 1000 > runtime->rate * 2)
1190 snd_printk(KERN_DEBUG "delay: estimated %d, actual %d\n",
1191 est_delay, subs->last_delay);
1192
Daniel Mackedcd3632012-04-12 13:51:12 +02001193 spin_unlock_irqrestore(&subs->lock, flags);
Daniel Macke5779992010-03-04 19:46:13 +01001194}
1195
1196static int snd_usb_playback_open(struct snd_pcm_substream *substream)
1197{
1198 return snd_usb_pcm_open(substream, SNDRV_PCM_STREAM_PLAYBACK);
1199}
1200
1201static int snd_usb_playback_close(struct snd_pcm_substream *substream)
1202{
1203 return snd_usb_pcm_close(substream, SNDRV_PCM_STREAM_PLAYBACK);
1204}
1205
1206static int snd_usb_capture_open(struct snd_pcm_substream *substream)
1207{
1208 return snd_usb_pcm_open(substream, SNDRV_PCM_STREAM_CAPTURE);
1209}
1210
1211static int snd_usb_capture_close(struct snd_pcm_substream *substream)
1212{
1213 return snd_usb_pcm_close(substream, SNDRV_PCM_STREAM_CAPTURE);
1214}
1215
Daniel Mackedcd3632012-04-12 13:51:12 +02001216static int snd_usb_substream_playback_trigger(struct snd_pcm_substream *substream,
1217 int cmd)
1218{
1219 struct snd_usb_substream *subs = substream->runtime->private_data;
1220
1221 switch (cmd) {
1222 case SNDRV_PCM_TRIGGER_START:
1223 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
1224 subs->data_endpoint->prepare_data_urb = prepare_playback_urb;
1225 subs->data_endpoint->retire_data_urb = retire_playback_urb;
Daniel Mack97f8d3b2012-05-21 12:47:36 +02001226 subs->running = 1;
Daniel Mackedcd3632012-04-12 13:51:12 +02001227 return 0;
1228 case SNDRV_PCM_TRIGGER_STOP:
1229 stop_endpoints(subs, 0, 0, 0);
Daniel Mack97f8d3b2012-05-21 12:47:36 +02001230 subs->running = 0;
Daniel Mackedcd3632012-04-12 13:51:12 +02001231 return 0;
1232 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
1233 subs->data_endpoint->prepare_data_urb = NULL;
1234 subs->data_endpoint->retire_data_urb = NULL;
Daniel Mack97f8d3b2012-05-21 12:47:36 +02001235 subs->running = 0;
Daniel Mackedcd3632012-04-12 13:51:12 +02001236 return 0;
1237 }
1238
1239 return -EINVAL;
1240}
1241
Daniel Mackafe25962012-06-16 16:58:04 +02001242static int snd_usb_substream_capture_trigger(struct snd_pcm_substream *substream,
1243 int cmd)
Daniel Mackedcd3632012-04-12 13:51:12 +02001244{
1245 int err;
1246 struct snd_usb_substream *subs = substream->runtime->private_data;
1247
1248 switch (cmd) {
1249 case SNDRV_PCM_TRIGGER_START:
Daniel Mack015618b2012-08-29 13:17:05 +02001250 err = start_endpoints(subs, 0);
Daniel Mackedcd3632012-04-12 13:51:12 +02001251 if (err < 0)
1252 return err;
1253
1254 subs->data_endpoint->retire_data_urb = retire_capture_urb;
Daniel Mack97f8d3b2012-05-21 12:47:36 +02001255 subs->running = 1;
Daniel Mackedcd3632012-04-12 13:51:12 +02001256 return 0;
1257 case SNDRV_PCM_TRIGGER_STOP:
1258 stop_endpoints(subs, 0, 0, 0);
Daniel Mack97f8d3b2012-05-21 12:47:36 +02001259 subs->running = 0;
Daniel Mackedcd3632012-04-12 13:51:12 +02001260 return 0;
1261 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
1262 subs->data_endpoint->retire_data_urb = NULL;
Daniel Mack97f8d3b2012-05-21 12:47:36 +02001263 subs->running = 0;
Daniel Mackedcd3632012-04-12 13:51:12 +02001264 return 0;
1265 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
1266 subs->data_endpoint->retire_data_urb = retire_capture_urb;
Daniel Mack97f8d3b2012-05-21 12:47:36 +02001267 subs->running = 1;
Daniel Mackedcd3632012-04-12 13:51:12 +02001268 return 0;
1269 }
1270
1271 return -EINVAL;
1272}
1273
Daniel Macke5779992010-03-04 19:46:13 +01001274static struct snd_pcm_ops snd_usb_playback_ops = {
1275 .open = snd_usb_playback_open,
1276 .close = snd_usb_playback_close,
1277 .ioctl = snd_pcm_lib_ioctl,
1278 .hw_params = snd_usb_hw_params,
1279 .hw_free = snd_usb_hw_free,
1280 .prepare = snd_usb_pcm_prepare,
1281 .trigger = snd_usb_substream_playback_trigger,
1282 .pointer = snd_usb_pcm_pointer,
1283 .page = snd_pcm_lib_get_vmalloc_page,
1284 .mmap = snd_pcm_lib_mmap_vmalloc,
1285};
1286
1287static struct snd_pcm_ops snd_usb_capture_ops = {
1288 .open = snd_usb_capture_open,
1289 .close = snd_usb_capture_close,
1290 .ioctl = snd_pcm_lib_ioctl,
1291 .hw_params = snd_usb_hw_params,
1292 .hw_free = snd_usb_hw_free,
1293 .prepare = snd_usb_pcm_prepare,
1294 .trigger = snd_usb_substream_capture_trigger,
1295 .pointer = snd_usb_pcm_pointer,
1296 .page = snd_pcm_lib_get_vmalloc_page,
1297 .mmap = snd_pcm_lib_mmap_vmalloc,
1298};
1299
1300void snd_usb_set_pcm_ops(struct snd_pcm *pcm, int stream)
1301{
1302 snd_pcm_set_ops(pcm, stream,
1303 stream == SNDRV_PCM_STREAM_PLAYBACK ?
1304 &snd_usb_playback_ops : &snd_usb_capture_ops);
1305}