ALSA: usb-audio: Deprecate async_unlink option
[deliverable/linux.git] / sound / usb / pcm.c
CommitLineData
e5779998
DM
1/*
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>
9966ddaf 18#include <linux/slab.h>
edcd3633 19#include <linux/ratelimit.h>
e5779998
DM
20#include <linux/usb.h>
21#include <linux/usb/audio.h>
7e847894 22#include <linux/usb/audio-v2.h>
e5779998
DM
23
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"
c731bc96 32#include "endpoint.h"
e5779998
DM
33#include "helper.h"
34#include "pcm.h"
79f920fb 35#include "clock.h"
88a8516a 36#include "power.h"
e5779998 37
edcd3633
DM
38#define SUBSTREAM_FLAG_DATA_EP_STARTED 0
39#define SUBSTREAM_FLAG_SYNC_EP_STARTED 1
40
294c4fb8
PLB
41/* 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
e5779998
DM
65/*
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;
978520b7
TI
74 if (subs->stream->chip->shutdown)
75 return SNDRV_PCM_POS_XRUN;
e5779998
DM
76 spin_lock(&subs->lock);
77 hwptr_done = subs->hwptr_done;
294c4fb8
PLB
78 substream->runtime->delay = snd_usb_pcm_delay(subs,
79 substream->runtime->rate);
e5779998
DM
80 spin_unlock(&subs->lock);
81 return hwptr_done / (substream->runtime->frame_bits >> 3);
82}
83
84/*
85 * find a matching audio format
86 */
61a70950 87static struct audioformat *find_format(struct snd_usb_substream *subs)
e5779998
DM
88{
89 struct list_head *p;
90 struct audioformat *found = NULL;
91 int cur_attr = 0, attr;
92
93 list_for_each(p, &subs->fmt_list) {
94 struct audioformat *fp;
95 fp = list_entry(p, struct audioformat, list);
61a70950 96 if (!(fp->formats & (1uLL << subs->pcm_format)))
015eb0b0 97 continue;
61a70950 98 if (fp->channels != subs->channels)
e5779998 99 continue;
61a70950
DR
100 if (subs->cur_rate < fp->rate_min ||
101 subs->cur_rate > fp->rate_max)
e5779998
DM
102 continue;
103 if (! (fp->rates & SNDRV_PCM_RATE_CONTINUOUS)) {
104 unsigned int i;
105 for (i = 0; i < fp->nr_rates; i++)
61a70950 106 if (fp->rate_table[i] == subs->cur_rate)
e5779998
DM
107 break;
108 if (i >= fp->nr_rates)
109 continue;
110 }
111 attr = fp->ep_attr & USB_ENDPOINT_SYNCTYPE;
112 if (! found) {
113 found = fp;
114 cur_attr = attr;
115 continue;
116 }
117 /* avoid async out and adaptive in if the other method
118 * supports the same format.
119 * this is a workaround for the case like
120 * M-audio audiophile USB.
121 */
122 if (attr != cur_attr) {
123 if ((attr == USB_ENDPOINT_SYNC_ASYNC &&
124 subs->direction == SNDRV_PCM_STREAM_PLAYBACK) ||
125 (attr == USB_ENDPOINT_SYNC_ADAPTIVE &&
126 subs->direction == SNDRV_PCM_STREAM_CAPTURE))
127 continue;
128 if ((cur_attr == USB_ENDPOINT_SYNC_ASYNC &&
129 subs->direction == SNDRV_PCM_STREAM_PLAYBACK) ||
130 (cur_attr == USB_ENDPOINT_SYNC_ADAPTIVE &&
131 subs->direction == SNDRV_PCM_STREAM_CAPTURE)) {
132 found = fp;
133 cur_attr = attr;
134 continue;
135 }
136 }
137 /* find the format with the largest max. packet size */
138 if (fp->maxpacksize > found->maxpacksize) {
139 found = fp;
140 cur_attr = attr;
141 }
142 }
143 return found;
144}
145
767d75ad
DM
146static int init_pitch_v1(struct snd_usb_audio *chip, int iface,
147 struct usb_host_interface *alts,
148 struct audioformat *fmt)
149{
150 struct usb_device *dev = chip->dev;
151 unsigned int ep;
152 unsigned char data[1];
153 int err;
154
155 ep = get_endpoint(alts, 0)->bEndpointAddress;
156
767d75ad
DM
157 data[0] = 1;
158 if ((err = snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), UAC_SET_CUR,
159 USB_TYPE_CLASS|USB_RECIP_ENDPOINT|USB_DIR_OUT,
160 UAC_EP_CS_ATTR_PITCH_CONTROL << 8, ep,
17d900c4 161 data, sizeof(data))) < 0) {
767d75ad
DM
162 snd_printk(KERN_ERR "%d:%d:%d: cannot set enable PITCH\n",
163 dev->devnum, iface, ep);
164 return err;
165 }
166
167 return 0;
168}
e5779998 169
92c25611
DM
170static int init_pitch_v2(struct snd_usb_audio *chip, int iface,
171 struct usb_host_interface *alts,
172 struct audioformat *fmt)
173{
174 struct usb_device *dev = chip->dev;
175 unsigned char data[1];
92c25611
DM
176 int err;
177
92c25611
DM
178 data[0] = 1;
179 if ((err = snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), UAC2_CS_CUR,
180 USB_TYPE_CLASS | USB_RECIP_ENDPOINT | USB_DIR_OUT,
181 UAC2_EP_CS_PITCH << 8, 0,
17d900c4 182 data, sizeof(data))) < 0) {
92c25611
DM
183 snd_printk(KERN_ERR "%d:%d:%d: cannot set enable PITCH (v2)\n",
184 dev->devnum, iface, fmt->altsetting);
185 return err;
186 }
187
188 return 0;
189}
190
e5779998 191/*
92c25611 192 * initialize the pitch control and sample rate
e5779998 193 */
767d75ad 194int snd_usb_init_pitch(struct snd_usb_audio *chip, int iface,
e5779998
DM
195 struct usb_host_interface *alts,
196 struct audioformat *fmt)
197{
767d75ad
DM
198 struct usb_interface_descriptor *altsd = get_iface_desc(alts);
199
92c25611
DM
200 /* if endpoint doesn't have pitch control, bail out */
201 if (!(fmt->attributes & UAC_EP_CS_ATTR_PITCH_CONTROL))
202 return 0;
203
767d75ad
DM
204 switch (altsd->bInterfaceProtocol) {
205 case UAC_VERSION_1:
a2acad82 206 default:
767d75ad
DM
207 return init_pitch_v1(chip, iface, alts, fmt);
208
209 case UAC_VERSION_2:
92c25611 210 return init_pitch_v2(chip, iface, alts, fmt);
767d75ad 211 }
767d75ad
DM
212}
213
015618b9 214static int start_endpoints(struct snd_usb_substream *subs, int can_sleep)
edcd3633
DM
215{
216 int err;
217
218 if (!subs->data_endpoint)
219 return -EINVAL;
220
221 if (!test_and_set_bit(SUBSTREAM_FLAG_DATA_EP_STARTED, &subs->flags)) {
222 struct snd_usb_endpoint *ep = subs->data_endpoint;
223
224 snd_printdd(KERN_DEBUG "Starting data EP @%p\n", ep);
225
226 ep->data_subs = subs;
015618b9 227 err = snd_usb_endpoint_start(ep, can_sleep);
edcd3633
DM
228 if (err < 0) {
229 clear_bit(SUBSTREAM_FLAG_DATA_EP_STARTED, &subs->flags);
230 return err;
231 }
232 }
233
234 if (subs->sync_endpoint &&
235 !test_and_set_bit(SUBSTREAM_FLAG_SYNC_EP_STARTED, &subs->flags)) {
236 struct snd_usb_endpoint *ep = subs->sync_endpoint;
237
2e4a263c
DM
238 if (subs->data_endpoint->iface != subs->sync_endpoint->iface ||
239 subs->data_endpoint->alt_idx != subs->sync_endpoint->alt_idx) {
240 err = usb_set_interface(subs->dev,
241 subs->sync_endpoint->iface,
242 subs->sync_endpoint->alt_idx);
243 if (err < 0) {
244 snd_printk(KERN_ERR
245 "%d:%d:%d: cannot set interface (%d)\n",
246 subs->dev->devnum,
247 subs->sync_endpoint->iface,
248 subs->sync_endpoint->alt_idx, err);
249 return -EIO;
250 }
251 }
252
edcd3633
DM
253 snd_printdd(KERN_DEBUG "Starting sync EP @%p\n", ep);
254
255 ep->sync_slave = subs->data_endpoint;
015618b9 256 err = snd_usb_endpoint_start(ep, can_sleep);
edcd3633
DM
257 if (err < 0) {
258 clear_bit(SUBSTREAM_FLAG_SYNC_EP_STARTED, &subs->flags);
259 return err;
260 }
261 }
262
263 return 0;
264}
265
266static void stop_endpoints(struct snd_usb_substream *subs,
267 int force, int can_sleep, int wait)
268{
269 if (test_and_clear_bit(SUBSTREAM_FLAG_SYNC_EP_STARTED, &subs->flags))
270 snd_usb_endpoint_stop(subs->sync_endpoint,
271 force, can_sleep, wait);
272
273 if (test_and_clear_bit(SUBSTREAM_FLAG_DATA_EP_STARTED, &subs->flags))
274 snd_usb_endpoint_stop(subs->data_endpoint,
275 force, can_sleep, wait);
276}
277
edcd3633
DM
278static int deactivate_endpoints(struct snd_usb_substream *subs)
279{
280 int reta, retb;
281
282 reta = snd_usb_endpoint_deactivate(subs->sync_endpoint);
283 retb = snd_usb_endpoint_deactivate(subs->data_endpoint);
284
285 if (reta < 0)
286 return reta;
287
288 if (retb < 0)
289 return retb;
290
291 return 0;
292}
293
e5779998
DM
294/*
295 * find a matching format and set up the interface
296 */
297static int set_format(struct snd_usb_substream *subs, struct audioformat *fmt)
298{
299 struct usb_device *dev = subs->dev;
300 struct usb_host_interface *alts;
301 struct usb_interface_descriptor *altsd;
302 struct usb_interface *iface;
303 unsigned int ep, attr;
304 int is_playback = subs->direction == SNDRV_PCM_STREAM_PLAYBACK;
c75a8a7a 305 int err, implicit_fb = 0;
e5779998
DM
306
307 iface = usb_ifnum_to_if(dev, fmt->iface);
308 if (WARN_ON(!iface))
309 return -EINVAL;
310 alts = &iface->altsetting[fmt->altset_idx];
311 altsd = get_iface_desc(alts);
312 if (WARN_ON(altsd->bAlternateSetting != fmt->altsetting))
313 return -EINVAL;
314
315 if (fmt == subs->cur_audiofmt)
316 return 0;
317
68e67f40
DM
318 /* close the old interface */
319 if (subs->interface >= 0 && subs->interface != fmt->iface) {
320 err = usb_set_interface(subs->dev, subs->interface, 0);
321 if (err < 0) {
322 snd_printk(KERN_ERR "%d:%d:%d: return to setting 0 failed (%d)\n",
323 dev->devnum, fmt->iface, fmt->altsetting, err);
324 return -EIO;
325 }
326 subs->interface = -1;
327 subs->altset_idx = 0;
328 }
329
330 /* set interface */
331 if (subs->interface != fmt->iface ||
332 subs->altset_idx != fmt->altset_idx) {
333 err = usb_set_interface(dev, fmt->iface, fmt->altsetting);
334 if (err < 0) {
335 snd_printk(KERN_ERR "%d:%d:%d: usb_set_interface failed (%d)\n",
336 dev->devnum, fmt->iface, fmt->altsetting, err);
337 return -EIO;
338 }
339 snd_printdd(KERN_INFO "setting usb interface %d:%d\n",
340 fmt->iface, fmt->altsetting);
341 subs->interface = fmt->iface;
342 subs->altset_idx = fmt->altset_idx;
343 }
344
edcd3633
DM
345 subs->data_endpoint = snd_usb_add_endpoint(subs->stream->chip,
346 alts, fmt->endpoint, subs->direction,
347 SND_USB_ENDPOINT_TYPE_DATA);
348 if (!subs->data_endpoint)
349 return -EINVAL;
e5779998
DM
350
351 /* we need a sync pipe in async OUT or adaptive IN mode */
352 /* check the number of EP, since some devices have broken
353 * descriptors which fool us. if it has only one EP,
354 * assume it as adaptive-out or sync-in.
355 */
356 attr = fmt->ep_attr & USB_ENDPOINT_SYNCTYPE;
c75a8a7a
DM
357
358 switch (subs->stream->chip->usb_id) {
359 case USB_ID(0x0763, 0x2080): /* M-Audio FastTrack Ultra */
360 case USB_ID(0x0763, 0x2081):
361 if (is_playback) {
362 implicit_fb = 1;
edcd3633
DM
363 ep = 0x81;
364 iface = usb_ifnum_to_if(dev, 2);
c75a8a7a
DM
365
366 if (!iface || iface->num_altsetting == 0)
367 return -EINVAL;
368
edcd3633
DM
369 alts = &iface->altsetting[1];
370 goto add_sync_ep;
371 }
c75a8a7a 372 }
edcd3633 373
c75a8a7a
DM
374 if (((is_playback && attr == USB_ENDPOINT_SYNC_ASYNC) ||
375 (!is_playback && attr == USB_ENDPOINT_SYNC_ADAPTIVE)) &&
376 altsd->bNumEndpoints >= 2) {
e5779998
DM
377 /* check sync-pipe endpoint */
378 /* ... and check descriptor size before accessing bSynchAddress
379 because there is a version of the SB Audigy 2 NX firmware lacking
380 the audio fields in the endpoint descriptors */
381 if ((get_endpoint(alts, 1)->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) != 0x01 ||
382 (get_endpoint(alts, 1)->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE &&
c75a8a7a
DM
383 get_endpoint(alts, 1)->bSynchAddress != 0 &&
384 !implicit_fb)) {
7fb75db1
DM
385 snd_printk(KERN_ERR "%d:%d:%d : invalid sync pipe. bmAttributes %02x, bLength %d, bSynchAddress %02x\n",
386 dev->devnum, fmt->iface, fmt->altsetting,
387 get_endpoint(alts, 1)->bmAttributes,
388 get_endpoint(alts, 1)->bLength,
389 get_endpoint(alts, 1)->bSynchAddress);
e5779998
DM
390 return -EINVAL;
391 }
392 ep = get_endpoint(alts, 1)->bEndpointAddress;
7fb75db1
DM
393 if (!implicit_fb &&
394 get_endpoint(alts, 0)->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE &&
e5779998 395 (( is_playback && ep != (unsigned int)(get_endpoint(alts, 0)->bSynchAddress | USB_DIR_IN)) ||
7fb75db1
DM
396 (!is_playback && ep != (unsigned int)(get_endpoint(alts, 0)->bSynchAddress & ~USB_DIR_IN)))) {
397 snd_printk(KERN_ERR "%d:%d:%d : invalid sync pipe. is_playback %d, ep %02x, bSynchAddress %02x\n",
398 dev->devnum, fmt->iface, fmt->altsetting,
399 is_playback, ep, get_endpoint(alts, 0)->bSynchAddress);
e5779998
DM
400 return -EINVAL;
401 }
c75a8a7a
DM
402
403 implicit_fb = (get_endpoint(alts, 1)->bmAttributes & USB_ENDPOINT_USAGE_MASK)
404 == USB_ENDPOINT_USAGE_IMPLICIT_FB;
405
edcd3633
DM
406add_sync_ep:
407 subs->sync_endpoint = snd_usb_add_endpoint(subs->stream->chip,
408 alts, ep, !subs->direction,
c75a8a7a
DM
409 implicit_fb ?
410 SND_USB_ENDPOINT_TYPE_DATA :
411 SND_USB_ENDPOINT_TYPE_SYNC);
edcd3633
DM
412 if (!subs->sync_endpoint)
413 return -EINVAL;
414
415 subs->data_endpoint->sync_master = subs->sync_endpoint;
416 }
e5779998 417
9e9b5946 418 if ((err = snd_usb_init_pitch(subs->stream->chip, fmt->iface, alts, fmt)) < 0)
e5779998
DM
419 return err;
420
421 subs->cur_audiofmt = fmt;
422
423 snd_usb_set_format_quirk(subs, fmt);
424
425#if 0
426 printk(KERN_DEBUG
427 "setting done: format = %d, rate = %d..%d, channels = %d\n",
428 fmt->format, fmt->rate_min, fmt->rate_max, fmt->channels);
429 printk(KERN_DEBUG
430 " datapipe = 0x%0x, syncpipe = 0x%0x\n",
431 subs->datapipe, subs->syncpipe);
432#endif
433
434 return 0;
435}
436
61a70950
DR
437/*
438 * configure endpoint params
439 *
440 * called during initial setup and upon resume
441 */
442static int configure_endpoint(struct snd_usb_substream *subs)
443{
444 int ret;
445
61a70950
DR
446 /* format changed */
447 stop_endpoints(subs, 0, 0, 0);
448 ret = snd_usb_endpoint_set_params(subs->data_endpoint,
449 subs->pcm_format,
450 subs->channels,
451 subs->period_bytes,
452 subs->cur_rate,
453 subs->cur_audiofmt,
454 subs->sync_endpoint);
455 if (ret < 0)
978520b7 456 return ret;
61a70950
DR
457
458 if (subs->sync_endpoint)
459 ret = snd_usb_endpoint_set_params(subs->data_endpoint,
460 subs->pcm_format,
461 subs->channels,
462 subs->period_bytes,
463 subs->cur_rate,
464 subs->cur_audiofmt,
465 NULL);
61a70950
DR
466 return ret;
467}
468
e5779998
DM
469/*
470 * hw_params callback
471 *
472 * allocate a buffer and set the given audio format.
473 *
474 * so far we use a physically linear buffer although packetize transfer
475 * doesn't need a continuous area.
476 * if sg buffer is supported on the later version of alsa, we'll follow
477 * that.
478 */
479static int snd_usb_hw_params(struct snd_pcm_substream *substream,
480 struct snd_pcm_hw_params *hw_params)
481{
482 struct snd_usb_substream *subs = substream->runtime->private_data;
483 struct audioformat *fmt;
61a70950 484 int ret;
e5779998
DM
485
486 ret = snd_pcm_lib_alloc_vmalloc_buffer(substream,
487 params_buffer_bytes(hw_params));
488 if (ret < 0)
489 return ret;
490
61a70950
DR
491 subs->pcm_format = params_format(hw_params);
492 subs->period_bytes = params_period_bytes(hw_params);
493 subs->channels = params_channels(hw_params);
494 subs->cur_rate = params_rate(hw_params);
495
496 fmt = find_format(subs);
e5779998
DM
497 if (!fmt) {
498 snd_printd(KERN_DEBUG "cannot set format: format = %#x, rate = %d, channels = %d\n",
61a70950 499 subs->pcm_format, subs->cur_rate, subs->channels);
e5779998
DM
500 return -EINVAL;
501 }
502
34f3c89f 503 down_read(&subs->stream->chip->shutdown_rwsem);
978520b7
TI
504 if (subs->stream->chip->shutdown)
505 ret = -ENODEV;
506 else
507 ret = set_format(subs, fmt);
34f3c89f 508 up_read(&subs->stream->chip->shutdown_rwsem);
978520b7 509 if (ret < 0)
e5779998
DM
510 return ret;
511
61a70950
DR
512 subs->interface = fmt->iface;
513 subs->altset_idx = fmt->altset_idx;
384dc085 514 subs->need_setup_ep = true;
715a1705 515
61a70950 516 return 0;
e5779998
DM
517}
518
519/*
520 * hw_free callback
521 *
522 * reset the audio format and release the buffer
523 */
524static int snd_usb_hw_free(struct snd_pcm_substream *substream)
525{
526 struct snd_usb_substream *subs = substream->runtime->private_data;
527
528 subs->cur_audiofmt = NULL;
529 subs->cur_rate = 0;
530 subs->period_bytes = 0;
34f3c89f 531 down_read(&subs->stream->chip->shutdown_rwsem);
978520b7
TI
532 if (!subs->stream->chip->shutdown) {
533 stop_endpoints(subs, 0, 1, 1);
534 deactivate_endpoints(subs);
535 }
34f3c89f 536 up_read(&subs->stream->chip->shutdown_rwsem);
e5779998
DM
537 return snd_pcm_lib_free_vmalloc_buffer(substream);
538}
539
540/*
541 * prepare callback
542 *
543 * only a few subtle things...
544 */
545static int snd_usb_pcm_prepare(struct snd_pcm_substream *substream)
546{
547 struct snd_pcm_runtime *runtime = substream->runtime;
548 struct snd_usb_substream *subs = runtime->private_data;
61a70950
DR
549 struct usb_host_interface *alts;
550 struct usb_interface *iface;
551 int ret;
e5779998
DM
552
553 if (! subs->cur_audiofmt) {
554 snd_printk(KERN_ERR "usbaudio: no format is specified!\n");
555 return -ENXIO;
556 }
557
34f3c89f 558 down_read(&subs->stream->chip->shutdown_rwsem);
978520b7
TI
559 if (subs->stream->chip->shutdown) {
560 ret = -ENODEV;
561 goto unlock;
562 }
563 if (snd_BUG_ON(!subs->data_endpoint)) {
564 ret = -EIO;
565 goto unlock;
566 }
edcd3633 567
f58161ba
TI
568 snd_usb_endpoint_sync_pending_stop(subs->sync_endpoint);
569 snd_usb_endpoint_sync_pending_stop(subs->data_endpoint);
570
61a70950
DR
571 ret = set_format(subs, subs->cur_audiofmt);
572 if (ret < 0)
978520b7 573 goto unlock;
61a70950
DR
574
575 iface = usb_ifnum_to_if(subs->dev, subs->cur_audiofmt->iface);
576 alts = &iface->altsetting[subs->cur_audiofmt->altset_idx];
577 ret = snd_usb_init_sample_rate(subs->stream->chip,
578 subs->cur_audiofmt->iface,
579 alts,
580 subs->cur_audiofmt,
581 subs->cur_rate);
582 if (ret < 0)
978520b7 583 goto unlock;
61a70950 584
384dc085
TI
585 if (subs->need_setup_ep) {
586 ret = configure_endpoint(subs);
587 if (ret < 0)
978520b7 588 goto unlock;
384dc085
TI
589 subs->need_setup_ep = false;
590 }
61a70950 591
e5779998 592 /* some unit conversions in runtime */
edcd3633
DM
593 subs->data_endpoint->maxframesize =
594 bytes_to_frames(runtime, subs->data_endpoint->maxpacksize);
595 subs->data_endpoint->curframesize =
596 bytes_to_frames(runtime, subs->data_endpoint->curpacksize);
e5779998
DM
597
598 /* reset the pointer */
599 subs->hwptr_done = 0;
600 subs->transfer_done = 0;
294c4fb8
PLB
601 subs->last_delay = 0;
602 subs->last_frame_number = 0;
e5779998
DM
603 runtime->delay = 0;
604
edcd3633
DM
605 /* for playback, submit the URBs now; otherwise, the first hwptr_done
606 * updates for all URBs would happen at the same time when starting */
607 if (subs->direction == SNDRV_PCM_STREAM_PLAYBACK)
978520b7 608 ret = start_endpoints(subs, 1);
edcd3633 609
978520b7 610 unlock:
34f3c89f 611 up_read(&subs->stream->chip->shutdown_rwsem);
978520b7 612 return ret;
e5779998
DM
613}
614
615static struct snd_pcm_hardware snd_usb_hardware =
616{
617 .info = SNDRV_PCM_INFO_MMAP |
618 SNDRV_PCM_INFO_MMAP_VALID |
619 SNDRV_PCM_INFO_BATCH |
620 SNDRV_PCM_INFO_INTERLEAVED |
621 SNDRV_PCM_INFO_BLOCK_TRANSFER |
622 SNDRV_PCM_INFO_PAUSE,
623 .buffer_bytes_max = 1024 * 1024,
624 .period_bytes_min = 64,
625 .period_bytes_max = 512 * 1024,
626 .periods_min = 2,
627 .periods_max = 1024,
628};
629
630static int hw_check_valid_format(struct snd_usb_substream *subs,
631 struct snd_pcm_hw_params *params,
632 struct audioformat *fp)
633{
634 struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
635 struct snd_interval *ct = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
636 struct snd_mask *fmts = hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT);
637 struct snd_interval *pt = hw_param_interval(params, SNDRV_PCM_HW_PARAM_PERIOD_TIME);
015eb0b0 638 struct snd_mask check_fmts;
e5779998
DM
639 unsigned int ptime;
640
641 /* check the format */
015eb0b0
CL
642 snd_mask_none(&check_fmts);
643 check_fmts.bits[0] = (u32)fp->formats;
644 check_fmts.bits[1] = (u32)(fp->formats >> 32);
645 snd_mask_intersect(&check_fmts, fmts);
646 if (snd_mask_empty(&check_fmts)) {
e5779998
DM
647 hwc_debug(" > check: no supported format %d\n", fp->format);
648 return 0;
649 }
650 /* check the channels */
651 if (fp->channels < ct->min || fp->channels > ct->max) {
652 hwc_debug(" > check: no valid channels %d (%d/%d)\n", fp->channels, ct->min, ct->max);
653 return 0;
654 }
655 /* check the rate is within the range */
656 if (fp->rate_min > it->max || (fp->rate_min == it->max && it->openmax)) {
657 hwc_debug(" > check: rate_min %d > max %d\n", fp->rate_min, it->max);
658 return 0;
659 }
660 if (fp->rate_max < it->min || (fp->rate_max == it->min && it->openmin)) {
661 hwc_debug(" > check: rate_max %d < min %d\n", fp->rate_max, it->min);
662 return 0;
663 }
664 /* check whether the period time is >= the data packet interval */
978520b7 665 if (subs->speed != USB_SPEED_FULL) {
e5779998
DM
666 ptime = 125 * (1 << fp->datainterval);
667 if (ptime > pt->max || (ptime == pt->max && pt->openmax)) {
668 hwc_debug(" > check: ptime %u > max %u\n", ptime, pt->max);
669 return 0;
670 }
671 }
672 return 1;
673}
674
675static int hw_rule_rate(struct snd_pcm_hw_params *params,
676 struct snd_pcm_hw_rule *rule)
677{
678 struct snd_usb_substream *subs = rule->private;
679 struct list_head *p;
680 struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
681 unsigned int rmin, rmax;
682 int changed;
683
684 hwc_debug("hw_rule_rate: (%d,%d)\n", it->min, it->max);
685 changed = 0;
686 rmin = rmax = 0;
687 list_for_each(p, &subs->fmt_list) {
688 struct audioformat *fp;
689 fp = list_entry(p, struct audioformat, list);
690 if (!hw_check_valid_format(subs, params, fp))
691 continue;
692 if (changed++) {
693 if (rmin > fp->rate_min)
694 rmin = fp->rate_min;
695 if (rmax < fp->rate_max)
696 rmax = fp->rate_max;
697 } else {
698 rmin = fp->rate_min;
699 rmax = fp->rate_max;
700 }
701 }
702
703 if (!changed) {
704 hwc_debug(" --> get empty\n");
705 it->empty = 1;
706 return -EINVAL;
707 }
708
709 changed = 0;
710 if (it->min < rmin) {
711 it->min = rmin;
712 it->openmin = 0;
713 changed = 1;
714 }
715 if (it->max > rmax) {
716 it->max = rmax;
717 it->openmax = 0;
718 changed = 1;
719 }
720 if (snd_interval_checkempty(it)) {
721 it->empty = 1;
722 return -EINVAL;
723 }
724 hwc_debug(" --> (%d, %d) (changed = %d)\n", it->min, it->max, changed);
725 return changed;
726}
727
728
729static int hw_rule_channels(struct snd_pcm_hw_params *params,
730 struct snd_pcm_hw_rule *rule)
731{
732 struct snd_usb_substream *subs = rule->private;
733 struct list_head *p;
734 struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
735 unsigned int rmin, rmax;
736 int changed;
737
738 hwc_debug("hw_rule_channels: (%d,%d)\n", it->min, it->max);
739 changed = 0;
740 rmin = rmax = 0;
741 list_for_each(p, &subs->fmt_list) {
742 struct audioformat *fp;
743 fp = list_entry(p, struct audioformat, list);
744 if (!hw_check_valid_format(subs, params, fp))
745 continue;
746 if (changed++) {
747 if (rmin > fp->channels)
748 rmin = fp->channels;
749 if (rmax < fp->channels)
750 rmax = fp->channels;
751 } else {
752 rmin = fp->channels;
753 rmax = fp->channels;
754 }
755 }
756
757 if (!changed) {
758 hwc_debug(" --> get empty\n");
759 it->empty = 1;
760 return -EINVAL;
761 }
762
763 changed = 0;
764 if (it->min < rmin) {
765 it->min = rmin;
766 it->openmin = 0;
767 changed = 1;
768 }
769 if (it->max > rmax) {
770 it->max = rmax;
771 it->openmax = 0;
772 changed = 1;
773 }
774 if (snd_interval_checkempty(it)) {
775 it->empty = 1;
776 return -EINVAL;
777 }
778 hwc_debug(" --> (%d, %d) (changed = %d)\n", it->min, it->max, changed);
779 return changed;
780}
781
782static int hw_rule_format(struct snd_pcm_hw_params *params,
783 struct snd_pcm_hw_rule *rule)
784{
785 struct snd_usb_substream *subs = rule->private;
786 struct list_head *p;
787 struct snd_mask *fmt = hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT);
788 u64 fbits;
789 u32 oldbits[2];
790 int changed;
791
792 hwc_debug("hw_rule_format: %x:%x\n", fmt->bits[0], fmt->bits[1]);
793 fbits = 0;
794 list_for_each(p, &subs->fmt_list) {
795 struct audioformat *fp;
796 fp = list_entry(p, struct audioformat, list);
797 if (!hw_check_valid_format(subs, params, fp))
798 continue;
015eb0b0 799 fbits |= fp->formats;
e5779998
DM
800 }
801
802 oldbits[0] = fmt->bits[0];
803 oldbits[1] = fmt->bits[1];
804 fmt->bits[0] &= (u32)fbits;
805 fmt->bits[1] &= (u32)(fbits >> 32);
806 if (!fmt->bits[0] && !fmt->bits[1]) {
807 hwc_debug(" --> get empty\n");
808 return -EINVAL;
809 }
810 changed = (oldbits[0] != fmt->bits[0] || oldbits[1] != fmt->bits[1]);
811 hwc_debug(" --> %x:%x (changed = %d)\n", fmt->bits[0], fmt->bits[1], changed);
812 return changed;
813}
814
815static int hw_rule_period_time(struct snd_pcm_hw_params *params,
816 struct snd_pcm_hw_rule *rule)
817{
818 struct snd_usb_substream *subs = rule->private;
819 struct audioformat *fp;
820 struct snd_interval *it;
821 unsigned char min_datainterval;
822 unsigned int pmin;
823 int changed;
824
825 it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_PERIOD_TIME);
826 hwc_debug("hw_rule_period_time: (%u,%u)\n", it->min, it->max);
827 min_datainterval = 0xff;
828 list_for_each_entry(fp, &subs->fmt_list, list) {
829 if (!hw_check_valid_format(subs, params, fp))
830 continue;
831 min_datainterval = min(min_datainterval, fp->datainterval);
832 }
833 if (min_datainterval == 0xff) {
a7ce2e0d 834 hwc_debug(" --> get empty\n");
e5779998
DM
835 it->empty = 1;
836 return -EINVAL;
837 }
838 pmin = 125 * (1 << min_datainterval);
839 changed = 0;
840 if (it->min < pmin) {
841 it->min = pmin;
842 it->openmin = 0;
843 changed = 1;
844 }
845 if (snd_interval_checkempty(it)) {
846 it->empty = 1;
847 return -EINVAL;
848 }
849 hwc_debug(" --> (%u,%u) (changed = %d)\n", it->min, it->max, changed);
850 return changed;
851}
852
853/*
854 * If the device supports unusual bit rates, does the request meet these?
855 */
856static int snd_usb_pcm_check_knot(struct snd_pcm_runtime *runtime,
857 struct snd_usb_substream *subs)
858{
859 struct audioformat *fp;
0717d0f5 860 int *rate_list;
e5779998
DM
861 int count = 0, needs_knot = 0;
862 int err;
863
5cd5d7c4
CL
864 kfree(subs->rate_list.list);
865 subs->rate_list.list = NULL;
866
e5779998
DM
867 list_for_each_entry(fp, &subs->fmt_list, list) {
868 if (fp->rates & SNDRV_PCM_RATE_CONTINUOUS)
869 return 0;
870 count += fp->nr_rates;
871 if (fp->rates & SNDRV_PCM_RATE_KNOT)
872 needs_knot = 1;
873 }
874 if (!needs_knot)
875 return 0;
876
0717d0f5
TI
877 subs->rate_list.list = rate_list =
878 kmalloc(sizeof(int) * count, GFP_KERNEL);
8a8d56b2
JJ
879 if (!subs->rate_list.list)
880 return -ENOMEM;
881 subs->rate_list.count = count;
e5779998
DM
882 subs->rate_list.mask = 0;
883 count = 0;
884 list_for_each_entry(fp, &subs->fmt_list, list) {
885 int i;
886 for (i = 0; i < fp->nr_rates; i++)
0717d0f5 887 rate_list[count++] = fp->rate_table[i];
e5779998
DM
888 }
889 err = snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
890 &subs->rate_list);
891 if (err < 0)
892 return err;
893
894 return 0;
895}
896
897
898/*
899 * set up the runtime hardware information.
900 */
901
902static int setup_hw_info(struct snd_pcm_runtime *runtime, struct snd_usb_substream *subs)
903{
904 struct list_head *p;
905 unsigned int pt, ptmin;
906 int param_period_time_if_needed;
907 int err;
908
909 runtime->hw.formats = subs->formats;
910
911 runtime->hw.rate_min = 0x7fffffff;
912 runtime->hw.rate_max = 0;
913 runtime->hw.channels_min = 256;
914 runtime->hw.channels_max = 0;
915 runtime->hw.rates = 0;
916 ptmin = UINT_MAX;
917 /* check min/max rates and channels */
918 list_for_each(p, &subs->fmt_list) {
919 struct audioformat *fp;
920 fp = list_entry(p, struct audioformat, list);
921 runtime->hw.rates |= fp->rates;
922 if (runtime->hw.rate_min > fp->rate_min)
923 runtime->hw.rate_min = fp->rate_min;
924 if (runtime->hw.rate_max < fp->rate_max)
925 runtime->hw.rate_max = fp->rate_max;
926 if (runtime->hw.channels_min > fp->channels)
927 runtime->hw.channels_min = fp->channels;
928 if (runtime->hw.channels_max < fp->channels)
929 runtime->hw.channels_max = fp->channels;
930 if (fp->fmt_type == UAC_FORMAT_TYPE_II && fp->frame_size > 0) {
931 /* FIXME: there might be more than one audio formats... */
932 runtime->hw.period_bytes_min = runtime->hw.period_bytes_max =
933 fp->frame_size;
934 }
935 pt = 125 * (1 << fp->datainterval);
936 ptmin = min(ptmin, pt);
937 }
88a8516a
ON
938 err = snd_usb_autoresume(subs->stream->chip);
939 if (err < 0)
940 return err;
e5779998
DM
941
942 param_period_time_if_needed = SNDRV_PCM_HW_PARAM_PERIOD_TIME;
978520b7 943 if (subs->speed == USB_SPEED_FULL)
e5779998
DM
944 /* full speed devices have fixed data packet interval */
945 ptmin = 1000;
946 if (ptmin == 1000)
947 /* if period time doesn't go below 1 ms, no rules needed */
948 param_period_time_if_needed = -1;
949 snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_PERIOD_TIME,
950 ptmin, UINT_MAX);
951
952 if ((err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
953 hw_rule_rate, subs,
954 SNDRV_PCM_HW_PARAM_FORMAT,
955 SNDRV_PCM_HW_PARAM_CHANNELS,
956 param_period_time_if_needed,
957 -1)) < 0)
88a8516a 958 goto rep_err;
e5779998
DM
959 if ((err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS,
960 hw_rule_channels, subs,
961 SNDRV_PCM_HW_PARAM_FORMAT,
962 SNDRV_PCM_HW_PARAM_RATE,
963 param_period_time_if_needed,
964 -1)) < 0)
88a8516a 965 goto rep_err;
e5779998
DM
966 if ((err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_FORMAT,
967 hw_rule_format, subs,
968 SNDRV_PCM_HW_PARAM_RATE,
969 SNDRV_PCM_HW_PARAM_CHANNELS,
970 param_period_time_if_needed,
971 -1)) < 0)
88a8516a 972 goto rep_err;
e5779998
DM
973 if (param_period_time_if_needed >= 0) {
974 err = snd_pcm_hw_rule_add(runtime, 0,
975 SNDRV_PCM_HW_PARAM_PERIOD_TIME,
976 hw_rule_period_time, subs,
977 SNDRV_PCM_HW_PARAM_FORMAT,
978 SNDRV_PCM_HW_PARAM_CHANNELS,
979 SNDRV_PCM_HW_PARAM_RATE,
980 -1);
981 if (err < 0)
88a8516a 982 goto rep_err;
e5779998
DM
983 }
984 if ((err = snd_usb_pcm_check_knot(runtime, subs)) < 0)
88a8516a 985 goto rep_err;
e5779998 986 return 0;
88a8516a
ON
987
988rep_err:
989 snd_usb_autosuspend(subs->stream->chip);
990 return err;
e5779998
DM
991}
992
993static int snd_usb_pcm_open(struct snd_pcm_substream *substream, int direction)
994{
995 struct snd_usb_stream *as = snd_pcm_substream_chip(substream);
996 struct snd_pcm_runtime *runtime = substream->runtime;
997 struct snd_usb_substream *subs = &as->substream[direction];
998
999 subs->interface = -1;
e11b4e0e 1000 subs->altset_idx = 0;
e5779998
DM
1001 runtime->hw = snd_usb_hardware;
1002 runtime->private_data = subs;
1003 subs->pcm_substream = substream;
88a8516a 1004 /* runtime PM is also done there */
e5779998
DM
1005 return setup_hw_info(runtime, subs);
1006}
1007
1008static int snd_usb_pcm_close(struct snd_pcm_substream *substream, int direction)
1009{
1010 struct snd_usb_stream *as = snd_pcm_substream_chip(substream);
1011 struct snd_usb_substream *subs = &as->substream[direction];
1012
edcd3633 1013 stop_endpoints(subs, 0, 0, 0);
68e67f40
DM
1014
1015 if (!as->chip->shutdown && subs->interface >= 0) {
1016 usb_set_interface(subs->dev, subs->interface, 0);
1017 subs->interface = -1;
1018 }
1019
e5779998 1020 subs->pcm_substream = NULL;
88a8516a 1021 snd_usb_autosuspend(subs->stream->chip);
edcd3633 1022
68e67f40 1023 return 0;
edcd3633
DM
1024}
1025
1026/* Since a URB can handle only a single linear buffer, we must use double
1027 * buffering when the data to be transferred overflows the buffer boundary.
1028 * To avoid inconsistencies when updating hwptr_done, we use double buffering
1029 * for all URBs.
1030 */
1031static void retire_capture_urb(struct snd_usb_substream *subs,
1032 struct urb *urb)
1033{
1034 struct snd_pcm_runtime *runtime = subs->pcm_substream->runtime;
1035 unsigned int stride, frames, bytes, oldptr;
1036 int i, period_elapsed = 0;
1037 unsigned long flags;
1038 unsigned char *cp;
1039
1040 stride = runtime->frame_bits >> 3;
1041
1042 for (i = 0; i < urb->number_of_packets; i++) {
1043 cp = (unsigned char *)urb->transfer_buffer + urb->iso_frame_desc[i].offset;
1044 if (urb->iso_frame_desc[i].status && printk_ratelimit()) {
1045 snd_printdd(KERN_ERR "frame %d active: %d\n", i, urb->iso_frame_desc[i].status);
1046 // continue;
1047 }
1048 bytes = urb->iso_frame_desc[i].actual_length;
1049 frames = bytes / stride;
1050 if (!subs->txfr_quirk)
1051 bytes = frames * stride;
1052 if (bytes % (runtime->sample_bits >> 3) != 0) {
1053#ifdef CONFIG_SND_DEBUG_VERBOSE
1054 int oldbytes = bytes;
1055#endif
1056 bytes = frames * stride;
1057 snd_printdd(KERN_ERR "Corrected urb data len. %d->%d\n",
1058 oldbytes, bytes);
1059 }
1060 /* update the current pointer */
1061 spin_lock_irqsave(&subs->lock, flags);
1062 oldptr = subs->hwptr_done;
1063 subs->hwptr_done += bytes;
1064 if (subs->hwptr_done >= runtime->buffer_size * stride)
1065 subs->hwptr_done -= runtime->buffer_size * stride;
1066 frames = (bytes + (oldptr % stride)) / stride;
1067 subs->transfer_done += frames;
1068 if (subs->transfer_done >= runtime->period_size) {
1069 subs->transfer_done -= runtime->period_size;
1070 period_elapsed = 1;
1071 }
1072 spin_unlock_irqrestore(&subs->lock, flags);
1073 /* copy a data chunk */
1074 if (oldptr + bytes > runtime->buffer_size * stride) {
1075 unsigned int bytes1 =
1076 runtime->buffer_size * stride - oldptr;
1077 memcpy(runtime->dma_area + oldptr, cp, bytes1);
1078 memcpy(runtime->dma_area, cp + bytes1, bytes - bytes1);
1079 } else {
1080 memcpy(runtime->dma_area + oldptr, cp, bytes);
1081 }
1082 }
1083
1084 if (period_elapsed)
1085 snd_pcm_period_elapsed(subs->pcm_substream);
1086}
1087
1088static void prepare_playback_urb(struct snd_usb_substream *subs,
1089 struct urb *urb)
1090{
1091 struct snd_pcm_runtime *runtime = subs->pcm_substream->runtime;
245baf98 1092 struct snd_usb_endpoint *ep = subs->data_endpoint;
edcd3633
DM
1093 struct snd_urb_ctx *ctx = urb->context;
1094 unsigned int counts, frames, bytes;
1095 int i, stride, period_elapsed = 0;
1096 unsigned long flags;
1097
1098 stride = runtime->frame_bits >> 3;
1099
1100 frames = 0;
1101 urb->number_of_packets = 0;
1102 spin_lock_irqsave(&subs->lock, flags);
1103 for (i = 0; i < ctx->packets; i++) {
245baf98
DM
1104 if (ctx->packet_size[i])
1105 counts = ctx->packet_size[i];
1106 else
1107 counts = snd_usb_endpoint_next_packet_size(ep);
1108
edcd3633
DM
1109 /* set up descriptor */
1110 urb->iso_frame_desc[i].offset = frames * stride;
1111 urb->iso_frame_desc[i].length = counts * stride;
1112 frames += counts;
1113 urb->number_of_packets++;
1114 subs->transfer_done += counts;
1115 if (subs->transfer_done >= runtime->period_size) {
1116 subs->transfer_done -= runtime->period_size;
1117 period_elapsed = 1;
1118 if (subs->fmt_type == UAC_FORMAT_TYPE_II) {
1119 if (subs->transfer_done > 0) {
1120 /* FIXME: fill-max mode is not
1121 * supported yet */
1122 frames -= subs->transfer_done;
1123 counts -= subs->transfer_done;
1124 urb->iso_frame_desc[i].length =
1125 counts * stride;
1126 subs->transfer_done = 0;
1127 }
1128 i++;
1129 if (i < ctx->packets) {
1130 /* add a transfer delimiter */
1131 urb->iso_frame_desc[i].offset =
1132 frames * stride;
1133 urb->iso_frame_desc[i].length = 0;
1134 urb->number_of_packets++;
1135 }
1136 break;
1137 }
1138 }
1139 if (period_elapsed &&
1140 !snd_usb_endpoint_implict_feedback_sink(subs->data_endpoint)) /* finish at the period boundary */
1141 break;
1142 }
1143 bytes = frames * stride;
1144 if (subs->hwptr_done + bytes > runtime->buffer_size * stride) {
1145 /* err, the transferred area goes over buffer boundary. */
1146 unsigned int bytes1 =
1147 runtime->buffer_size * stride - subs->hwptr_done;
1148 memcpy(urb->transfer_buffer,
1149 runtime->dma_area + subs->hwptr_done, bytes1);
1150 memcpy(urb->transfer_buffer + bytes1,
1151 runtime->dma_area, bytes - bytes1);
1152 } else {
1153 memcpy(urb->transfer_buffer,
1154 runtime->dma_area + subs->hwptr_done, bytes);
1155 }
1156 subs->hwptr_done += bytes;
1157 if (subs->hwptr_done >= runtime->buffer_size * stride)
1158 subs->hwptr_done -= runtime->buffer_size * stride;
fbcfbf5f
DM
1159
1160 /* update delay with exact number of samples queued */
1161 runtime->delay = subs->last_delay;
edcd3633 1162 runtime->delay += frames;
fbcfbf5f
DM
1163 subs->last_delay = runtime->delay;
1164
1165 /* realign last_frame_number */
1166 subs->last_frame_number = usb_get_current_frame_number(subs->dev);
1167 subs->last_frame_number &= 0xFF; /* keep 8 LSBs */
1168
edcd3633
DM
1169 spin_unlock_irqrestore(&subs->lock, flags);
1170 urb->transfer_buffer_length = bytes;
1171 if (period_elapsed)
1172 snd_pcm_period_elapsed(subs->pcm_substream);
1173}
1174
1175/*
1176 * process after playback data complete
1177 * - decrease the delay count again
1178 */
1179static void retire_playback_urb(struct snd_usb_substream *subs,
1180 struct urb *urb)
1181{
1182 unsigned long flags;
1183 struct snd_pcm_runtime *runtime = subs->pcm_substream->runtime;
1184 int stride = runtime->frame_bits >> 3;
1185 int processed = urb->transfer_buffer_length / stride;
fbcfbf5f 1186 int est_delay;
edcd3633 1187
1213a205
TI
1188 /* ignore the delay accounting when procssed=0 is given, i.e.
1189 * silent payloads are procssed before handling the actual data
1190 */
1191 if (!processed)
1192 return;
1193
edcd3633 1194 spin_lock_irqsave(&subs->lock, flags);
fbcfbf5f
DM
1195 est_delay = snd_usb_pcm_delay(subs, runtime->rate);
1196 /* update delay with exact number of samples played */
1197 if (processed > subs->last_delay)
1198 subs->last_delay = 0;
edcd3633 1199 else
fbcfbf5f
DM
1200 subs->last_delay -= processed;
1201 runtime->delay = subs->last_delay;
1202
1203 /*
1204 * Report when delay estimate is off by more than 2ms.
1205 * The error should be lower than 2ms since the estimate relies
1206 * on two reads of a counter updated every ms.
1207 */
1208 if (abs(est_delay - subs->last_delay) * 1000 > runtime->rate * 2)
1209 snd_printk(KERN_DEBUG "delay: estimated %d, actual %d\n",
1210 est_delay, subs->last_delay);
1211
edcd3633 1212 spin_unlock_irqrestore(&subs->lock, flags);
e5779998
DM
1213}
1214
1215static int snd_usb_playback_open(struct snd_pcm_substream *substream)
1216{
1217 return snd_usb_pcm_open(substream, SNDRV_PCM_STREAM_PLAYBACK);
1218}
1219
1220static int snd_usb_playback_close(struct snd_pcm_substream *substream)
1221{
1222 return snd_usb_pcm_close(substream, SNDRV_PCM_STREAM_PLAYBACK);
1223}
1224
1225static int snd_usb_capture_open(struct snd_pcm_substream *substream)
1226{
1227 return snd_usb_pcm_open(substream, SNDRV_PCM_STREAM_CAPTURE);
1228}
1229
1230static int snd_usb_capture_close(struct snd_pcm_substream *substream)
1231{
1232 return snd_usb_pcm_close(substream, SNDRV_PCM_STREAM_CAPTURE);
1233}
1234
edcd3633
DM
1235static int snd_usb_substream_playback_trigger(struct snd_pcm_substream *substream,
1236 int cmd)
1237{
1238 struct snd_usb_substream *subs = substream->runtime->private_data;
1239
1240 switch (cmd) {
1241 case SNDRV_PCM_TRIGGER_START:
1242 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
1243 subs->data_endpoint->prepare_data_urb = prepare_playback_urb;
1244 subs->data_endpoint->retire_data_urb = retire_playback_urb;
97f8d3b6 1245 subs->running = 1;
edcd3633
DM
1246 return 0;
1247 case SNDRV_PCM_TRIGGER_STOP:
1248 stop_endpoints(subs, 0, 0, 0);
97f8d3b6 1249 subs->running = 0;
edcd3633
DM
1250 return 0;
1251 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
1252 subs->data_endpoint->prepare_data_urb = NULL;
1253 subs->data_endpoint->retire_data_urb = NULL;
97f8d3b6 1254 subs->running = 0;
edcd3633
DM
1255 return 0;
1256 }
1257
1258 return -EINVAL;
1259}
1260
afe25967
DM
1261static int snd_usb_substream_capture_trigger(struct snd_pcm_substream *substream,
1262 int cmd)
edcd3633
DM
1263{
1264 int err;
1265 struct snd_usb_substream *subs = substream->runtime->private_data;
1266
1267 switch (cmd) {
1268 case SNDRV_PCM_TRIGGER_START:
015618b9 1269 err = start_endpoints(subs, 0);
edcd3633
DM
1270 if (err < 0)
1271 return err;
1272
1273 subs->data_endpoint->retire_data_urb = retire_capture_urb;
97f8d3b6 1274 subs->running = 1;
edcd3633
DM
1275 return 0;
1276 case SNDRV_PCM_TRIGGER_STOP:
1277 stop_endpoints(subs, 0, 0, 0);
97f8d3b6 1278 subs->running = 0;
edcd3633
DM
1279 return 0;
1280 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
1281 subs->data_endpoint->retire_data_urb = NULL;
97f8d3b6 1282 subs->running = 0;
edcd3633
DM
1283 return 0;
1284 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
1285 subs->data_endpoint->retire_data_urb = retire_capture_urb;
97f8d3b6 1286 subs->running = 1;
edcd3633
DM
1287 return 0;
1288 }
1289
1290 return -EINVAL;
1291}
1292
e5779998
DM
1293static struct snd_pcm_ops snd_usb_playback_ops = {
1294 .open = snd_usb_playback_open,
1295 .close = snd_usb_playback_close,
1296 .ioctl = snd_pcm_lib_ioctl,
1297 .hw_params = snd_usb_hw_params,
1298 .hw_free = snd_usb_hw_free,
1299 .prepare = snd_usb_pcm_prepare,
1300 .trigger = snd_usb_substream_playback_trigger,
1301 .pointer = snd_usb_pcm_pointer,
1302 .page = snd_pcm_lib_get_vmalloc_page,
1303 .mmap = snd_pcm_lib_mmap_vmalloc,
1304};
1305
1306static struct snd_pcm_ops snd_usb_capture_ops = {
1307 .open = snd_usb_capture_open,
1308 .close = snd_usb_capture_close,
1309 .ioctl = snd_pcm_lib_ioctl,
1310 .hw_params = snd_usb_hw_params,
1311 .hw_free = snd_usb_hw_free,
1312 .prepare = snd_usb_pcm_prepare,
1313 .trigger = snd_usb_substream_capture_trigger,
1314 .pointer = snd_usb_pcm_pointer,
1315 .page = snd_pcm_lib_get_vmalloc_page,
1316 .mmap = snd_pcm_lib_mmap_vmalloc,
1317};
1318
1319void snd_usb_set_pcm_ops(struct snd_pcm *pcm, int stream)
1320{
1321 snd_pcm_set_ops(pcm, stream,
1322 stream == SNDRV_PCM_STREAM_PLAYBACK ?
1323 &snd_usb_playback_ops : &snd_usb_capture_ops);
1324}
This page took 0.28129 seconds and 5 git commands to generate.