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.
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.
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
17 #include <linux/init.h>
18 #include <linux/slab.h>
19 #include <linux/bitrev.h>
20 #include <linux/ratelimit.h>
21 #include <linux/usb.h>
22 #include <linux/usb/audio.h>
23 #include <linux/usb/audio-v2.h>
25 #include <sound/core.h>
26 #include <sound/pcm.h>
27 #include <sound/pcm_params.h>
39 #define SUBSTREAM_FLAG_DATA_EP_STARTED 0
40 #define SUBSTREAM_FLAG_SYNC_EP_STARTED 1
42 /* return the estimated delay based on USB frame counters */
43 snd_pcm_uframes_t
snd_usb_pcm_delay(struct snd_usb_substream
*subs
,
46 int current_frame_number
;
50 if (!subs
->last_delay
)
51 return 0; /* short path */
53 current_frame_number
= usb_get_current_frame_number(subs
->dev
);
55 * HCD implementations use different widths, use lower 8 bits.
56 * The delay will be managed up to 256ms, which is more than
59 frame_diff
= (current_frame_number
- subs
->last_frame_number
) & 0xff;
61 /* Approximation based on number of samples per USB frame (ms),
62 some truncation for 44.1 but the estimate is good enough */
63 est_delay
= frame_diff
* rate
/ 1000;
64 if (subs
->direction
== SNDRV_PCM_STREAM_PLAYBACK
)
65 est_delay
= subs
->last_delay
- est_delay
;
67 est_delay
= subs
->last_delay
+ est_delay
;
75 * return the current pcm pointer. just based on the hwptr_done value.
77 static snd_pcm_uframes_t
snd_usb_pcm_pointer(struct snd_pcm_substream
*substream
)
79 struct snd_usb_substream
*subs
;
80 unsigned int hwptr_done
;
82 subs
= (struct snd_usb_substream
*)substream
->runtime
->private_data
;
83 if (subs
->stream
->chip
->shutdown
)
84 return SNDRV_PCM_POS_XRUN
;
85 spin_lock(&subs
->lock
);
86 hwptr_done
= subs
->hwptr_done
;
87 substream
->runtime
->delay
= snd_usb_pcm_delay(subs
,
88 substream
->runtime
->rate
);
89 spin_unlock(&subs
->lock
);
90 return hwptr_done
/ (substream
->runtime
->frame_bits
>> 3);
94 * find a matching audio format
96 static struct audioformat
*find_format(struct snd_usb_substream
*subs
)
98 struct audioformat
*fp
;
99 struct audioformat
*found
= NULL
;
100 int cur_attr
= 0, attr
;
102 list_for_each_entry(fp
, &subs
->fmt_list
, list
) {
103 if (!(fp
->formats
& pcm_format_to_bits(subs
->pcm_format
)))
105 if (fp
->channels
!= subs
->channels
)
107 if (subs
->cur_rate
< fp
->rate_min
||
108 subs
->cur_rate
> fp
->rate_max
)
110 if (! (fp
->rates
& SNDRV_PCM_RATE_CONTINUOUS
)) {
112 for (i
= 0; i
< fp
->nr_rates
; i
++)
113 if (fp
->rate_table
[i
] == subs
->cur_rate
)
115 if (i
>= fp
->nr_rates
)
118 attr
= fp
->ep_attr
& USB_ENDPOINT_SYNCTYPE
;
124 /* avoid async out and adaptive in if the other method
125 * supports the same format.
126 * this is a workaround for the case like
127 * M-audio audiophile USB.
129 if (attr
!= cur_attr
) {
130 if ((attr
== USB_ENDPOINT_SYNC_ASYNC
&&
131 subs
->direction
== SNDRV_PCM_STREAM_PLAYBACK
) ||
132 (attr
== USB_ENDPOINT_SYNC_ADAPTIVE
&&
133 subs
->direction
== SNDRV_PCM_STREAM_CAPTURE
))
135 if ((cur_attr
== USB_ENDPOINT_SYNC_ASYNC
&&
136 subs
->direction
== SNDRV_PCM_STREAM_PLAYBACK
) ||
137 (cur_attr
== USB_ENDPOINT_SYNC_ADAPTIVE
&&
138 subs
->direction
== SNDRV_PCM_STREAM_CAPTURE
)) {
144 /* find the format with the largest max. packet size */
145 if (fp
->maxpacksize
> found
->maxpacksize
) {
153 static int init_pitch_v1(struct snd_usb_audio
*chip
, int iface
,
154 struct usb_host_interface
*alts
,
155 struct audioformat
*fmt
)
157 struct usb_device
*dev
= chip
->dev
;
159 unsigned char data
[1];
162 ep
= get_endpoint(alts
, 0)->bEndpointAddress
;
165 if ((err
= snd_usb_ctl_msg(dev
, usb_sndctrlpipe(dev
, 0), UAC_SET_CUR
,
166 USB_TYPE_CLASS
|USB_RECIP_ENDPOINT
|USB_DIR_OUT
,
167 UAC_EP_CS_ATTR_PITCH_CONTROL
<< 8, ep
,
168 data
, sizeof(data
))) < 0) {
169 snd_printk(KERN_ERR
"%d:%d:%d: cannot set enable PITCH\n",
170 dev
->devnum
, iface
, ep
);
177 static int init_pitch_v2(struct snd_usb_audio
*chip
, int iface
,
178 struct usb_host_interface
*alts
,
179 struct audioformat
*fmt
)
181 struct usb_device
*dev
= chip
->dev
;
182 unsigned char data
[1];
186 if ((err
= snd_usb_ctl_msg(dev
, usb_sndctrlpipe(dev
, 0), UAC2_CS_CUR
,
187 USB_TYPE_CLASS
| USB_RECIP_ENDPOINT
| USB_DIR_OUT
,
188 UAC2_EP_CS_PITCH
<< 8, 0,
189 data
, sizeof(data
))) < 0) {
190 snd_printk(KERN_ERR
"%d:%d:%d: cannot set enable PITCH (v2)\n",
191 dev
->devnum
, iface
, fmt
->altsetting
);
199 * initialize the pitch control and sample rate
201 int snd_usb_init_pitch(struct snd_usb_audio
*chip
, int iface
,
202 struct usb_host_interface
*alts
,
203 struct audioformat
*fmt
)
205 /* if endpoint doesn't have pitch control, bail out */
206 if (!(fmt
->attributes
& UAC_EP_CS_ATTR_PITCH_CONTROL
))
209 switch (fmt
->protocol
) {
212 return init_pitch_v1(chip
, iface
, alts
, fmt
);
215 return init_pitch_v2(chip
, iface
, alts
, fmt
);
219 static int start_endpoints(struct snd_usb_substream
*subs
, bool can_sleep
)
223 if (!subs
->data_endpoint
)
226 if (!test_and_set_bit(SUBSTREAM_FLAG_DATA_EP_STARTED
, &subs
->flags
)) {
227 struct snd_usb_endpoint
*ep
= subs
->data_endpoint
;
229 snd_printdd(KERN_DEBUG
"Starting data EP @%p\n", ep
);
231 ep
->data_subs
= subs
;
232 err
= snd_usb_endpoint_start(ep
, can_sleep
);
234 clear_bit(SUBSTREAM_FLAG_DATA_EP_STARTED
, &subs
->flags
);
239 if (subs
->sync_endpoint
&&
240 !test_and_set_bit(SUBSTREAM_FLAG_SYNC_EP_STARTED
, &subs
->flags
)) {
241 struct snd_usb_endpoint
*ep
= subs
->sync_endpoint
;
243 if (subs
->data_endpoint
->iface
!= subs
->sync_endpoint
->iface
||
244 subs
->data_endpoint
->alt_idx
!= subs
->sync_endpoint
->alt_idx
) {
245 err
= usb_set_interface(subs
->dev
,
246 subs
->sync_endpoint
->iface
,
247 subs
->sync_endpoint
->alt_idx
);
250 "%d:%d:%d: cannot set interface (%d)\n",
252 subs
->sync_endpoint
->iface
,
253 subs
->sync_endpoint
->alt_idx
, err
);
258 snd_printdd(KERN_DEBUG
"Starting sync EP @%p\n", ep
);
260 ep
->sync_slave
= subs
->data_endpoint
;
261 err
= snd_usb_endpoint_start(ep
, can_sleep
);
263 clear_bit(SUBSTREAM_FLAG_SYNC_EP_STARTED
, &subs
->flags
);
271 static void stop_endpoints(struct snd_usb_substream
*subs
, bool wait
)
273 if (test_and_clear_bit(SUBSTREAM_FLAG_SYNC_EP_STARTED
, &subs
->flags
))
274 snd_usb_endpoint_stop(subs
->sync_endpoint
);
276 if (test_and_clear_bit(SUBSTREAM_FLAG_DATA_EP_STARTED
, &subs
->flags
))
277 snd_usb_endpoint_stop(subs
->data_endpoint
);
280 snd_usb_endpoint_sync_pending_stop(subs
->sync_endpoint
);
281 snd_usb_endpoint_sync_pending_stop(subs
->data_endpoint
);
285 static int deactivate_endpoints(struct snd_usb_substream
*subs
)
289 reta
= snd_usb_endpoint_deactivate(subs
->sync_endpoint
);
290 retb
= snd_usb_endpoint_deactivate(subs
->data_endpoint
);
301 static int search_roland_implicit_fb(struct usb_device
*dev
, int ifnum
,
302 unsigned int altsetting
,
303 struct usb_host_interface
**alts
,
306 struct usb_interface
*iface
;
307 struct usb_interface_descriptor
*altsd
;
308 struct usb_endpoint_descriptor
*epd
;
310 iface
= usb_ifnum_to_if(dev
, ifnum
);
311 if (!iface
|| iface
->num_altsetting
< altsetting
+ 1)
313 *alts
= &iface
->altsetting
[altsetting
];
314 altsd
= get_iface_desc(*alts
);
315 if (altsd
->bAlternateSetting
!= altsetting
||
316 altsd
->bInterfaceClass
!= USB_CLASS_VENDOR_SPEC
||
317 (altsd
->bInterfaceSubClass
!= 2 &&
318 altsd
->bInterfaceProtocol
!= 2 ) ||
319 altsd
->bNumEndpoints
< 1)
321 epd
= get_endpoint(*alts
, 0);
322 if (!usb_endpoint_is_isoc_in(epd
) ||
323 (epd
->bmAttributes
& USB_ENDPOINT_USAGE_MASK
) !=
324 USB_ENDPOINT_USAGE_IMPLICIT_FB
)
326 *ep
= epd
->bEndpointAddress
;
330 static int set_sync_ep_implicit_fb_quirk(struct snd_usb_substream
*subs
,
331 struct usb_device
*dev
,
332 struct usb_interface_descriptor
*altsd
,
335 struct usb_host_interface
*alts
;
336 struct usb_interface
*iface
;
339 /* Implicit feedback sync EPs consumers are always playback EPs */
340 if (subs
->direction
!= SNDRV_PCM_STREAM_PLAYBACK
)
343 switch (subs
->stream
->chip
->usb_id
) {
344 case USB_ID(0x0763, 0x2030): /* M-Audio Fast Track C400 */
345 case USB_ID(0x0763, 0x2031): /* M-Audio Fast Track C600 */
347 iface
= usb_ifnum_to_if(dev
, 3);
349 if (!iface
|| iface
->num_altsetting
== 0)
352 alts
= &iface
->altsetting
[1];
355 case USB_ID(0x0763, 0x2080): /* M-Audio FastTrack Ultra */
356 case USB_ID(0x0763, 0x2081):
358 iface
= usb_ifnum_to_if(dev
, 2);
360 if (!iface
|| iface
->num_altsetting
== 0)
363 alts
= &iface
->altsetting
[1];
366 if (attr
== USB_ENDPOINT_SYNC_ASYNC
&&
367 altsd
->bInterfaceClass
== USB_CLASS_VENDOR_SPEC
&&
368 altsd
->bInterfaceProtocol
== 2 &&
369 altsd
->bNumEndpoints
== 1 &&
370 USB_ID_VENDOR(subs
->stream
->chip
->usb_id
) == 0x0582 /* Roland */ &&
371 search_roland_implicit_fb(dev
, altsd
->bInterfaceNumber
+ 1,
372 altsd
->bAlternateSetting
,
381 subs
->sync_endpoint
= snd_usb_add_endpoint(subs
->stream
->chip
,
382 alts
, ep
, !subs
->direction
,
383 SND_USB_ENDPOINT_TYPE_DATA
);
384 if (!subs
->sync_endpoint
)
387 subs
->data_endpoint
->sync_master
= subs
->sync_endpoint
;
392 static int set_sync_endpoint(struct snd_usb_substream
*subs
,
393 struct audioformat
*fmt
,
394 struct usb_device
*dev
,
395 struct usb_host_interface
*alts
,
396 struct usb_interface_descriptor
*altsd
)
398 int is_playback
= subs
->direction
== SNDRV_PCM_STREAM_PLAYBACK
;
399 unsigned int ep
, attr
;
403 /* we need a sync pipe in async OUT or adaptive IN mode */
404 /* check the number of EP, since some devices have broken
405 * descriptors which fool us. if it has only one EP,
406 * assume it as adaptive-out or sync-in.
408 attr
= fmt
->ep_attr
& USB_ENDPOINT_SYNCTYPE
;
410 err
= set_sync_ep_implicit_fb_quirk(subs
, dev
, altsd
, attr
);
414 if (altsd
->bNumEndpoints
< 2)
417 if ((is_playback
&& attr
!= USB_ENDPOINT_SYNC_ASYNC
) ||
418 (!is_playback
&& attr
!= USB_ENDPOINT_SYNC_ADAPTIVE
))
421 /* check sync-pipe endpoint */
422 /* ... and check descriptor size before accessing bSynchAddress
423 because there is a version of the SB Audigy 2 NX firmware lacking
424 the audio fields in the endpoint descriptors */
425 if ((get_endpoint(alts
, 1)->bmAttributes
& USB_ENDPOINT_XFERTYPE_MASK
) != USB_ENDPOINT_XFER_ISOC
||
426 (get_endpoint(alts
, 1)->bLength
>= USB_DT_ENDPOINT_AUDIO_SIZE
&&
427 get_endpoint(alts
, 1)->bSynchAddress
!= 0)) {
428 snd_printk(KERN_ERR
"%d:%d:%d : invalid sync pipe. bmAttributes %02x, bLength %d, bSynchAddress %02x\n",
429 dev
->devnum
, fmt
->iface
, fmt
->altsetting
,
430 get_endpoint(alts
, 1)->bmAttributes
,
431 get_endpoint(alts
, 1)->bLength
,
432 get_endpoint(alts
, 1)->bSynchAddress
);
435 ep
= get_endpoint(alts
, 1)->bEndpointAddress
;
436 if (get_endpoint(alts
, 0)->bLength
>= USB_DT_ENDPOINT_AUDIO_SIZE
&&
437 ((is_playback
&& ep
!= (unsigned int)(get_endpoint(alts
, 0)->bSynchAddress
| USB_DIR_IN
)) ||
438 (!is_playback
&& ep
!= (unsigned int)(get_endpoint(alts
, 0)->bSynchAddress
& ~USB_DIR_IN
)))) {
439 snd_printk(KERN_ERR
"%d:%d:%d : invalid sync pipe. is_playback %d, ep %02x, bSynchAddress %02x\n",
440 dev
->devnum
, fmt
->iface
, fmt
->altsetting
,
441 is_playback
, ep
, get_endpoint(alts
, 0)->bSynchAddress
);
445 implicit_fb
= (get_endpoint(alts
, 1)->bmAttributes
& USB_ENDPOINT_USAGE_MASK
)
446 == USB_ENDPOINT_USAGE_IMPLICIT_FB
;
448 subs
->sync_endpoint
= snd_usb_add_endpoint(subs
->stream
->chip
,
449 alts
, ep
, !subs
->direction
,
451 SND_USB_ENDPOINT_TYPE_DATA
:
452 SND_USB_ENDPOINT_TYPE_SYNC
);
453 if (!subs
->sync_endpoint
)
456 subs
->data_endpoint
->sync_master
= subs
->sync_endpoint
;
462 * find a matching format and set up the interface
464 static int set_format(struct snd_usb_substream
*subs
, struct audioformat
*fmt
)
466 struct usb_device
*dev
= subs
->dev
;
467 struct usb_host_interface
*alts
;
468 struct usb_interface_descriptor
*altsd
;
469 struct usb_interface
*iface
;
472 iface
= usb_ifnum_to_if(dev
, fmt
->iface
);
475 alts
= &iface
->altsetting
[fmt
->altset_idx
];
476 altsd
= get_iface_desc(alts
);
477 if (WARN_ON(altsd
->bAlternateSetting
!= fmt
->altsetting
))
480 if (fmt
== subs
->cur_audiofmt
)
483 /* close the old interface */
484 if (subs
->interface
>= 0 && subs
->interface
!= fmt
->iface
) {
485 err
= usb_set_interface(subs
->dev
, subs
->interface
, 0);
487 snd_printk(KERN_ERR
"%d:%d:%d: return to setting 0 failed (%d)\n",
488 dev
->devnum
, fmt
->iface
, fmt
->altsetting
, err
);
491 subs
->interface
= -1;
492 subs
->altset_idx
= 0;
496 if (subs
->interface
!= fmt
->iface
||
497 subs
->altset_idx
!= fmt
->altset_idx
) {
498 err
= usb_set_interface(dev
, fmt
->iface
, fmt
->altsetting
);
500 snd_printk(KERN_ERR
"%d:%d:%d: usb_set_interface failed (%d)\n",
501 dev
->devnum
, fmt
->iface
, fmt
->altsetting
, err
);
504 snd_printdd(KERN_INFO
"setting usb interface %d:%d\n",
505 fmt
->iface
, fmt
->altsetting
);
506 subs
->interface
= fmt
->iface
;
507 subs
->altset_idx
= fmt
->altset_idx
;
509 snd_usb_set_interface_quirk(dev
);
512 subs
->data_endpoint
= snd_usb_add_endpoint(subs
->stream
->chip
,
513 alts
, fmt
->endpoint
, subs
->direction
,
514 SND_USB_ENDPOINT_TYPE_DATA
);
516 if (!subs
->data_endpoint
)
519 err
= set_sync_endpoint(subs
, fmt
, dev
, alts
, altsd
);
523 err
= snd_usb_init_pitch(subs
->stream
->chip
, fmt
->iface
, alts
, fmt
);
527 subs
->cur_audiofmt
= fmt
;
529 snd_usb_set_format_quirk(subs
, fmt
);
535 * Return the score of matching two audioformats.
536 * Veto the audioformat if:
537 * - It has no channels for some reason.
538 * - Requested PCM format is not supported.
539 * - Requested sample rate is not supported.
541 static int match_endpoint_audioformats(struct audioformat
*fp
,
542 struct audioformat
*match
, int rate
,
543 snd_pcm_format_t pcm_format
)
548 if (fp
->channels
< 1) {
549 snd_printdd("%s: (fmt @%p) no channels\n", __func__
, fp
);
553 if (!(fp
->formats
& pcm_format_to_bits(pcm_format
))) {
554 snd_printdd("%s: (fmt @%p) no match for format %d\n", __func__
,
559 for (i
= 0; i
< fp
->nr_rates
; i
++) {
560 if (fp
->rate_table
[i
] == rate
) {
566 snd_printdd("%s: (fmt @%p) no match for rate %d\n", __func__
,
571 if (fp
->channels
== match
->channels
)
574 snd_printdd("%s: (fmt @%p) score %d\n", __func__
, fp
, score
);
580 * Configure the sync ep using the rate and pcm format of the data ep.
582 static int configure_sync_endpoint(struct snd_usb_substream
*subs
)
585 struct audioformat
*fp
;
586 struct audioformat
*sync_fp
= NULL
;
588 int sync_period_bytes
= subs
->period_bytes
;
589 struct snd_usb_substream
*sync_subs
=
590 &subs
->stream
->substream
[subs
->direction
^ 1];
592 if (subs
->sync_endpoint
->type
!= SND_USB_ENDPOINT_TYPE_DATA
||
594 return snd_usb_endpoint_set_params(subs
->sync_endpoint
,
602 /* Try to find the best matching audioformat. */
603 list_for_each_entry(fp
, &sync_subs
->fmt_list
, list
) {
604 int score
= match_endpoint_audioformats(fp
, subs
->cur_audiofmt
,
605 subs
->cur_rate
, subs
->pcm_format
);
607 if (score
> cur_score
) {
613 if (unlikely(sync_fp
== NULL
)) {
614 snd_printk(KERN_ERR
"%s: no valid audioformat for sync ep %x found\n",
615 __func__
, sync_subs
->ep_num
);
620 * Recalculate the period bytes if channel number differ between
621 * data and sync ep audioformat.
623 if (sync_fp
->channels
!= subs
->channels
) {
624 sync_period_bytes
= (subs
->period_bytes
/ subs
->channels
) *
626 snd_printdd("%s: adjusted sync ep period bytes (%d -> %d)\n",
627 __func__
, subs
->period_bytes
, sync_period_bytes
);
630 ret
= snd_usb_endpoint_set_params(subs
->sync_endpoint
,
642 * configure endpoint params
644 * called during initial setup and upon resume
646 static int configure_endpoint(struct snd_usb_substream
*subs
)
651 stop_endpoints(subs
, true);
652 ret
= snd_usb_endpoint_set_params(subs
->data_endpoint
,
658 subs
->sync_endpoint
);
662 if (subs
->sync_endpoint
)
663 ret
= configure_sync_endpoint(subs
);
671 * allocate a buffer and set the given audio format.
673 * so far we use a physically linear buffer although packetize transfer
674 * doesn't need a continuous area.
675 * if sg buffer is supported on the later version of alsa, we'll follow
678 static int snd_usb_hw_params(struct snd_pcm_substream
*substream
,
679 struct snd_pcm_hw_params
*hw_params
)
681 struct snd_usb_substream
*subs
= substream
->runtime
->private_data
;
682 struct audioformat
*fmt
;
685 ret
= snd_pcm_lib_alloc_vmalloc_buffer(substream
,
686 params_buffer_bytes(hw_params
));
690 subs
->pcm_format
= params_format(hw_params
);
691 subs
->period_bytes
= params_period_bytes(hw_params
);
692 subs
->channels
= params_channels(hw_params
);
693 subs
->cur_rate
= params_rate(hw_params
);
695 fmt
= find_format(subs
);
697 snd_printd(KERN_DEBUG
"cannot set format: format = %#x, rate = %d, channels = %d\n",
698 subs
->pcm_format
, subs
->cur_rate
, subs
->channels
);
702 down_read(&subs
->stream
->chip
->shutdown_rwsem
);
703 if (subs
->stream
->chip
->shutdown
)
706 ret
= set_format(subs
, fmt
);
707 up_read(&subs
->stream
->chip
->shutdown_rwsem
);
711 subs
->interface
= fmt
->iface
;
712 subs
->altset_idx
= fmt
->altset_idx
;
713 subs
->need_setup_ep
= true;
721 * reset the audio format and release the buffer
723 static int snd_usb_hw_free(struct snd_pcm_substream
*substream
)
725 struct snd_usb_substream
*subs
= substream
->runtime
->private_data
;
727 subs
->cur_audiofmt
= NULL
;
729 subs
->period_bytes
= 0;
730 down_read(&subs
->stream
->chip
->shutdown_rwsem
);
731 if (!subs
->stream
->chip
->shutdown
) {
732 stop_endpoints(subs
, true);
733 deactivate_endpoints(subs
);
735 up_read(&subs
->stream
->chip
->shutdown_rwsem
);
736 return snd_pcm_lib_free_vmalloc_buffer(substream
);
742 * only a few subtle things...
744 static int snd_usb_pcm_prepare(struct snd_pcm_substream
*substream
)
746 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
747 struct snd_usb_substream
*subs
= runtime
->private_data
;
748 struct usb_host_interface
*alts
;
749 struct usb_interface
*iface
;
752 if (! subs
->cur_audiofmt
) {
753 snd_printk(KERN_ERR
"usbaudio: no format is specified!\n");
757 down_read(&subs
->stream
->chip
->shutdown_rwsem
);
758 if (subs
->stream
->chip
->shutdown
) {
762 if (snd_BUG_ON(!subs
->data_endpoint
)) {
767 snd_usb_endpoint_sync_pending_stop(subs
->sync_endpoint
);
768 snd_usb_endpoint_sync_pending_stop(subs
->data_endpoint
);
770 ret
= set_format(subs
, subs
->cur_audiofmt
);
774 iface
= usb_ifnum_to_if(subs
->dev
, subs
->cur_audiofmt
->iface
);
775 alts
= &iface
->altsetting
[subs
->cur_audiofmt
->altset_idx
];
776 ret
= snd_usb_init_sample_rate(subs
->stream
->chip
,
777 subs
->cur_audiofmt
->iface
,
784 if (subs
->need_setup_ep
) {
785 ret
= configure_endpoint(subs
);
788 subs
->need_setup_ep
= false;
791 /* some unit conversions in runtime */
792 subs
->data_endpoint
->maxframesize
=
793 bytes_to_frames(runtime
, subs
->data_endpoint
->maxpacksize
);
794 subs
->data_endpoint
->curframesize
=
795 bytes_to_frames(runtime
, subs
->data_endpoint
->curpacksize
);
797 /* reset the pointer */
798 subs
->hwptr_done
= 0;
799 subs
->transfer_done
= 0;
800 subs
->last_delay
= 0;
801 subs
->last_frame_number
= 0;
804 /* for playback, submit the URBs now; otherwise, the first hwptr_done
805 * updates for all URBs would happen at the same time when starting */
806 if (subs
->direction
== SNDRV_PCM_STREAM_PLAYBACK
)
807 ret
= start_endpoints(subs
, true);
810 up_read(&subs
->stream
->chip
->shutdown_rwsem
);
814 static struct snd_pcm_hardware snd_usb_hardware
=
816 .info
= SNDRV_PCM_INFO_MMAP
|
817 SNDRV_PCM_INFO_MMAP_VALID
|
818 SNDRV_PCM_INFO_BATCH
|
819 SNDRV_PCM_INFO_INTERLEAVED
|
820 SNDRV_PCM_INFO_BLOCK_TRANSFER
|
821 SNDRV_PCM_INFO_PAUSE
,
822 .buffer_bytes_max
= 1024 * 1024,
823 .period_bytes_min
= 64,
824 .period_bytes_max
= 512 * 1024,
829 static int hw_check_valid_format(struct snd_usb_substream
*subs
,
830 struct snd_pcm_hw_params
*params
,
831 struct audioformat
*fp
)
833 struct snd_interval
*it
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_RATE
);
834 struct snd_interval
*ct
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_CHANNELS
);
835 struct snd_mask
*fmts
= hw_param_mask(params
, SNDRV_PCM_HW_PARAM_FORMAT
);
836 struct snd_interval
*pt
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_PERIOD_TIME
);
837 struct snd_mask check_fmts
;
840 /* check the format */
841 snd_mask_none(&check_fmts
);
842 check_fmts
.bits
[0] = (u32
)fp
->formats
;
843 check_fmts
.bits
[1] = (u32
)(fp
->formats
>> 32);
844 snd_mask_intersect(&check_fmts
, fmts
);
845 if (snd_mask_empty(&check_fmts
)) {
846 hwc_debug(" > check: no supported format %d\n", fp
->format
);
849 /* check the channels */
850 if (fp
->channels
< ct
->min
|| fp
->channels
> ct
->max
) {
851 hwc_debug(" > check: no valid channels %d (%d/%d)\n", fp
->channels
, ct
->min
, ct
->max
);
854 /* check the rate is within the range */
855 if (fp
->rate_min
> it
->max
|| (fp
->rate_min
== it
->max
&& it
->openmax
)) {
856 hwc_debug(" > check: rate_min %d > max %d\n", fp
->rate_min
, it
->max
);
859 if (fp
->rate_max
< it
->min
|| (fp
->rate_max
== it
->min
&& it
->openmin
)) {
860 hwc_debug(" > check: rate_max %d < min %d\n", fp
->rate_max
, it
->min
);
863 /* check whether the period time is >= the data packet interval */
864 if (subs
->speed
!= USB_SPEED_FULL
) {
865 ptime
= 125 * (1 << fp
->datainterval
);
866 if (ptime
> pt
->max
|| (ptime
== pt
->max
&& pt
->openmax
)) {
867 hwc_debug(" > check: ptime %u > max %u\n", ptime
, pt
->max
);
874 static int hw_rule_rate(struct snd_pcm_hw_params
*params
,
875 struct snd_pcm_hw_rule
*rule
)
877 struct snd_usb_substream
*subs
= rule
->private;
878 struct audioformat
*fp
;
879 struct snd_interval
*it
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_RATE
);
880 unsigned int rmin
, rmax
;
883 hwc_debug("hw_rule_rate: (%d,%d)\n", it
->min
, it
->max
);
886 list_for_each_entry(fp
, &subs
->fmt_list
, list
) {
887 if (!hw_check_valid_format(subs
, params
, fp
))
890 if (rmin
> fp
->rate_min
)
892 if (rmax
< fp
->rate_max
)
901 hwc_debug(" --> get empty\n");
907 if (it
->min
< rmin
) {
912 if (it
->max
> rmax
) {
917 if (snd_interval_checkempty(it
)) {
921 hwc_debug(" --> (%d, %d) (changed = %d)\n", it
->min
, it
->max
, changed
);
926 static int hw_rule_channels(struct snd_pcm_hw_params
*params
,
927 struct snd_pcm_hw_rule
*rule
)
929 struct snd_usb_substream
*subs
= rule
->private;
930 struct audioformat
*fp
;
931 struct snd_interval
*it
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_CHANNELS
);
932 unsigned int rmin
, rmax
;
935 hwc_debug("hw_rule_channels: (%d,%d)\n", it
->min
, it
->max
);
938 list_for_each_entry(fp
, &subs
->fmt_list
, list
) {
939 if (!hw_check_valid_format(subs
, params
, fp
))
942 if (rmin
> fp
->channels
)
944 if (rmax
< fp
->channels
)
953 hwc_debug(" --> get empty\n");
959 if (it
->min
< rmin
) {
964 if (it
->max
> rmax
) {
969 if (snd_interval_checkempty(it
)) {
973 hwc_debug(" --> (%d, %d) (changed = %d)\n", it
->min
, it
->max
, changed
);
977 static int hw_rule_format(struct snd_pcm_hw_params
*params
,
978 struct snd_pcm_hw_rule
*rule
)
980 struct snd_usb_substream
*subs
= rule
->private;
981 struct audioformat
*fp
;
982 struct snd_mask
*fmt
= hw_param_mask(params
, SNDRV_PCM_HW_PARAM_FORMAT
);
987 hwc_debug("hw_rule_format: %x:%x\n", fmt
->bits
[0], fmt
->bits
[1]);
989 list_for_each_entry(fp
, &subs
->fmt_list
, list
) {
990 if (!hw_check_valid_format(subs
, params
, fp
))
992 fbits
|= fp
->formats
;
995 oldbits
[0] = fmt
->bits
[0];
996 oldbits
[1] = fmt
->bits
[1];
997 fmt
->bits
[0] &= (u32
)fbits
;
998 fmt
->bits
[1] &= (u32
)(fbits
>> 32);
999 if (!fmt
->bits
[0] && !fmt
->bits
[1]) {
1000 hwc_debug(" --> get empty\n");
1003 changed
= (oldbits
[0] != fmt
->bits
[0] || oldbits
[1] != fmt
->bits
[1]);
1004 hwc_debug(" --> %x:%x (changed = %d)\n", fmt
->bits
[0], fmt
->bits
[1], changed
);
1008 static int hw_rule_period_time(struct snd_pcm_hw_params
*params
,
1009 struct snd_pcm_hw_rule
*rule
)
1011 struct snd_usb_substream
*subs
= rule
->private;
1012 struct audioformat
*fp
;
1013 struct snd_interval
*it
;
1014 unsigned char min_datainterval
;
1018 it
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_PERIOD_TIME
);
1019 hwc_debug("hw_rule_period_time: (%u,%u)\n", it
->min
, it
->max
);
1020 min_datainterval
= 0xff;
1021 list_for_each_entry(fp
, &subs
->fmt_list
, list
) {
1022 if (!hw_check_valid_format(subs
, params
, fp
))
1024 min_datainterval
= min(min_datainterval
, fp
->datainterval
);
1026 if (min_datainterval
== 0xff) {
1027 hwc_debug(" --> get empty\n");
1031 pmin
= 125 * (1 << min_datainterval
);
1033 if (it
->min
< pmin
) {
1038 if (snd_interval_checkempty(it
)) {
1042 hwc_debug(" --> (%u,%u) (changed = %d)\n", it
->min
, it
->max
, changed
);
1047 * If the device supports unusual bit rates, does the request meet these?
1049 static int snd_usb_pcm_check_knot(struct snd_pcm_runtime
*runtime
,
1050 struct snd_usb_substream
*subs
)
1052 struct audioformat
*fp
;
1054 int count
= 0, needs_knot
= 0;
1057 kfree(subs
->rate_list
.list
);
1058 subs
->rate_list
.list
= NULL
;
1060 list_for_each_entry(fp
, &subs
->fmt_list
, list
) {
1061 if (fp
->rates
& SNDRV_PCM_RATE_CONTINUOUS
)
1063 count
+= fp
->nr_rates
;
1064 if (fp
->rates
& SNDRV_PCM_RATE_KNOT
)
1070 subs
->rate_list
.list
= rate_list
=
1071 kmalloc(sizeof(int) * count
, GFP_KERNEL
);
1072 if (!subs
->rate_list
.list
)
1074 subs
->rate_list
.count
= count
;
1075 subs
->rate_list
.mask
= 0;
1077 list_for_each_entry(fp
, &subs
->fmt_list
, list
) {
1079 for (i
= 0; i
< fp
->nr_rates
; i
++)
1080 rate_list
[count
++] = fp
->rate_table
[i
];
1082 err
= snd_pcm_hw_constraint_list(runtime
, 0, SNDRV_PCM_HW_PARAM_RATE
,
1092 * set up the runtime hardware information.
1095 static int setup_hw_info(struct snd_pcm_runtime
*runtime
, struct snd_usb_substream
*subs
)
1097 struct audioformat
*fp
;
1098 unsigned int pt
, ptmin
;
1099 int param_period_time_if_needed
;
1102 runtime
->hw
.formats
= subs
->formats
;
1104 runtime
->hw
.rate_min
= 0x7fffffff;
1105 runtime
->hw
.rate_max
= 0;
1106 runtime
->hw
.channels_min
= 256;
1107 runtime
->hw
.channels_max
= 0;
1108 runtime
->hw
.rates
= 0;
1110 /* check min/max rates and channels */
1111 list_for_each_entry(fp
, &subs
->fmt_list
, list
) {
1112 runtime
->hw
.rates
|= fp
->rates
;
1113 if (runtime
->hw
.rate_min
> fp
->rate_min
)
1114 runtime
->hw
.rate_min
= fp
->rate_min
;
1115 if (runtime
->hw
.rate_max
< fp
->rate_max
)
1116 runtime
->hw
.rate_max
= fp
->rate_max
;
1117 if (runtime
->hw
.channels_min
> fp
->channels
)
1118 runtime
->hw
.channels_min
= fp
->channels
;
1119 if (runtime
->hw
.channels_max
< fp
->channels
)
1120 runtime
->hw
.channels_max
= fp
->channels
;
1121 if (fp
->fmt_type
== UAC_FORMAT_TYPE_II
&& fp
->frame_size
> 0) {
1122 /* FIXME: there might be more than one audio formats... */
1123 runtime
->hw
.period_bytes_min
= runtime
->hw
.period_bytes_max
=
1126 pt
= 125 * (1 << fp
->datainterval
);
1127 ptmin
= min(ptmin
, pt
);
1129 err
= snd_usb_autoresume(subs
->stream
->chip
);
1133 param_period_time_if_needed
= SNDRV_PCM_HW_PARAM_PERIOD_TIME
;
1134 if (subs
->speed
== USB_SPEED_FULL
)
1135 /* full speed devices have fixed data packet interval */
1138 /* if period time doesn't go below 1 ms, no rules needed */
1139 param_period_time_if_needed
= -1;
1140 snd_pcm_hw_constraint_minmax(runtime
, SNDRV_PCM_HW_PARAM_PERIOD_TIME
,
1143 if ((err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_RATE
,
1145 SNDRV_PCM_HW_PARAM_FORMAT
,
1146 SNDRV_PCM_HW_PARAM_CHANNELS
,
1147 param_period_time_if_needed
,
1150 if ((err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_CHANNELS
,
1151 hw_rule_channels
, subs
,
1152 SNDRV_PCM_HW_PARAM_FORMAT
,
1153 SNDRV_PCM_HW_PARAM_RATE
,
1154 param_period_time_if_needed
,
1157 if ((err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_FORMAT
,
1158 hw_rule_format
, subs
,
1159 SNDRV_PCM_HW_PARAM_RATE
,
1160 SNDRV_PCM_HW_PARAM_CHANNELS
,
1161 param_period_time_if_needed
,
1164 if (param_period_time_if_needed
>= 0) {
1165 err
= snd_pcm_hw_rule_add(runtime
, 0,
1166 SNDRV_PCM_HW_PARAM_PERIOD_TIME
,
1167 hw_rule_period_time
, subs
,
1168 SNDRV_PCM_HW_PARAM_FORMAT
,
1169 SNDRV_PCM_HW_PARAM_CHANNELS
,
1170 SNDRV_PCM_HW_PARAM_RATE
,
1175 if ((err
= snd_usb_pcm_check_knot(runtime
, subs
)) < 0)
1180 snd_usb_autosuspend(subs
->stream
->chip
);
1184 static int snd_usb_pcm_open(struct snd_pcm_substream
*substream
, int direction
)
1186 struct snd_usb_stream
*as
= snd_pcm_substream_chip(substream
);
1187 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1188 struct snd_usb_substream
*subs
= &as
->substream
[direction
];
1190 subs
->interface
= -1;
1191 subs
->altset_idx
= 0;
1192 runtime
->hw
= snd_usb_hardware
;
1193 runtime
->private_data
= subs
;
1194 subs
->pcm_substream
= substream
;
1195 /* runtime PM is also done there */
1197 /* initialize DSD/DOP context */
1198 subs
->dsd_dop
.byte_idx
= 0;
1199 subs
->dsd_dop
.channel
= 0;
1200 subs
->dsd_dop
.marker
= 1;
1202 return setup_hw_info(runtime
, subs
);
1205 static int snd_usb_pcm_close(struct snd_pcm_substream
*substream
, int direction
)
1207 struct snd_usb_stream
*as
= snd_pcm_substream_chip(substream
);
1208 struct snd_usb_substream
*subs
= &as
->substream
[direction
];
1210 stop_endpoints(subs
, true);
1212 if (!as
->chip
->shutdown
&& subs
->interface
>= 0) {
1213 usb_set_interface(subs
->dev
, subs
->interface
, 0);
1214 subs
->interface
= -1;
1217 subs
->pcm_substream
= NULL
;
1218 snd_usb_autosuspend(subs
->stream
->chip
);
1223 /* Since a URB can handle only a single linear buffer, we must use double
1224 * buffering when the data to be transferred overflows the buffer boundary.
1225 * To avoid inconsistencies when updating hwptr_done, we use double buffering
1228 static void retire_capture_urb(struct snd_usb_substream
*subs
,
1231 struct snd_pcm_runtime
*runtime
= subs
->pcm_substream
->runtime
;
1232 unsigned int stride
, frames
, bytes
, oldptr
;
1233 int i
, period_elapsed
= 0;
1234 unsigned long flags
;
1236 int current_frame_number
;
1238 /* read frame number here, update pointer in critical section */
1239 current_frame_number
= usb_get_current_frame_number(subs
->dev
);
1241 stride
= runtime
->frame_bits
>> 3;
1243 for (i
= 0; i
< urb
->number_of_packets
; i
++) {
1244 cp
= (unsigned char *)urb
->transfer_buffer
+ urb
->iso_frame_desc
[i
].offset
+ subs
->pkt_offset_adj
;
1245 if (urb
->iso_frame_desc
[i
].status
&& printk_ratelimit()) {
1246 snd_printdd(KERN_ERR
"frame %d active: %d\n", i
, urb
->iso_frame_desc
[i
].status
);
1249 bytes
= urb
->iso_frame_desc
[i
].actual_length
;
1250 frames
= bytes
/ stride
;
1251 if (!subs
->txfr_quirk
)
1252 bytes
= frames
* stride
;
1253 if (bytes
% (runtime
->sample_bits
>> 3) != 0) {
1254 int oldbytes
= bytes
;
1255 bytes
= frames
* stride
;
1256 snd_printdd(KERN_ERR
"Corrected urb data len. %d->%d\n",
1259 /* update the current pointer */
1260 spin_lock_irqsave(&subs
->lock
, flags
);
1261 oldptr
= subs
->hwptr_done
;
1262 subs
->hwptr_done
+= bytes
;
1263 if (subs
->hwptr_done
>= runtime
->buffer_size
* stride
)
1264 subs
->hwptr_done
-= runtime
->buffer_size
* stride
;
1265 frames
= (bytes
+ (oldptr
% stride
)) / stride
;
1266 subs
->transfer_done
+= frames
;
1267 if (subs
->transfer_done
>= runtime
->period_size
) {
1268 subs
->transfer_done
-= runtime
->period_size
;
1271 /* capture delay is by construction limited to one URB,
1274 runtime
->delay
= subs
->last_delay
= 0;
1276 /* realign last_frame_number */
1277 subs
->last_frame_number
= current_frame_number
;
1278 subs
->last_frame_number
&= 0xFF; /* keep 8 LSBs */
1280 spin_unlock_irqrestore(&subs
->lock
, flags
);
1281 /* copy a data chunk */
1282 if (oldptr
+ bytes
> runtime
->buffer_size
* stride
) {
1283 unsigned int bytes1
=
1284 runtime
->buffer_size
* stride
- oldptr
;
1285 memcpy(runtime
->dma_area
+ oldptr
, cp
, bytes1
);
1286 memcpy(runtime
->dma_area
, cp
+ bytes1
, bytes
- bytes1
);
1288 memcpy(runtime
->dma_area
+ oldptr
, cp
, bytes
);
1293 snd_pcm_period_elapsed(subs
->pcm_substream
);
1296 static inline void fill_playback_urb_dsd_dop(struct snd_usb_substream
*subs
,
1297 struct urb
*urb
, unsigned int bytes
)
1299 struct snd_pcm_runtime
*runtime
= subs
->pcm_substream
->runtime
;
1300 unsigned int stride
= runtime
->frame_bits
>> 3;
1301 unsigned int dst_idx
= 0;
1302 unsigned int src_idx
= subs
->hwptr_done
;
1303 unsigned int wrap
= runtime
->buffer_size
* stride
;
1304 u8
*dst
= urb
->transfer_buffer
;
1305 u8
*src
= runtime
->dma_area
;
1306 u8 marker
[] = { 0x05, 0xfa };
1309 * The DSP DOP format defines a way to transport DSD samples over
1310 * normal PCM data endpoints. It requires stuffing of marker bytes
1311 * (0x05 and 0xfa, alternating per sample frame), and then expects
1312 * 2 additional bytes of actual payload. The whole frame is stored
1315 * Hence, for a stereo transport, the buffer layout looks like this,
1316 * where L refers to left channel samples and R to right.
1318 * L1 L2 0x05 R1 R2 0x05 L3 L4 0xfa R3 R4 0xfa
1319 * L5 L6 0x05 R5 R6 0x05 L7 L8 0xfa R7 R8 0xfa
1325 if (++subs
->dsd_dop
.byte_idx
== 3) {
1326 /* frame boundary? */
1327 dst
[dst_idx
++] = marker
[subs
->dsd_dop
.marker
];
1329 subs
->dsd_dop
.byte_idx
= 0;
1331 if (++subs
->dsd_dop
.channel
% runtime
->channels
== 0) {
1332 /* alternate the marker */
1333 subs
->dsd_dop
.marker
++;
1334 subs
->dsd_dop
.marker
%= ARRAY_SIZE(marker
);
1335 subs
->dsd_dop
.channel
= 0;
1338 /* stuff the DSD payload */
1339 int idx
= (src_idx
+ subs
->dsd_dop
.byte_idx
- 1) % wrap
;
1341 if (subs
->cur_audiofmt
->dsd_bitrev
)
1342 dst
[dst_idx
++] = bitrev8(src
[idx
]);
1344 dst
[dst_idx
++] = src
[idx
];
1351 static void prepare_playback_urb(struct snd_usb_substream
*subs
,
1354 struct snd_pcm_runtime
*runtime
= subs
->pcm_substream
->runtime
;
1355 struct snd_usb_endpoint
*ep
= subs
->data_endpoint
;
1356 struct snd_urb_ctx
*ctx
= urb
->context
;
1357 unsigned int counts
, frames
, bytes
;
1358 int i
, stride
, period_elapsed
= 0;
1359 unsigned long flags
;
1361 stride
= runtime
->frame_bits
>> 3;
1364 urb
->number_of_packets
= 0;
1365 spin_lock_irqsave(&subs
->lock
, flags
);
1366 for (i
= 0; i
< ctx
->packets
; i
++) {
1367 if (ctx
->packet_size
[i
])
1368 counts
= ctx
->packet_size
[i
];
1370 counts
= snd_usb_endpoint_next_packet_size(ep
);
1372 /* set up descriptor */
1373 urb
->iso_frame_desc
[i
].offset
= frames
* ep
->stride
;
1374 urb
->iso_frame_desc
[i
].length
= counts
* ep
->stride
;
1376 urb
->number_of_packets
++;
1377 subs
->transfer_done
+= counts
;
1378 if (subs
->transfer_done
>= runtime
->period_size
) {
1379 subs
->transfer_done
-= runtime
->period_size
;
1381 if (subs
->fmt_type
== UAC_FORMAT_TYPE_II
) {
1382 if (subs
->transfer_done
> 0) {
1383 /* FIXME: fill-max mode is not
1385 frames
-= subs
->transfer_done
;
1386 counts
-= subs
->transfer_done
;
1387 urb
->iso_frame_desc
[i
].length
=
1388 counts
* ep
->stride
;
1389 subs
->transfer_done
= 0;
1392 if (i
< ctx
->packets
) {
1393 /* add a transfer delimiter */
1394 urb
->iso_frame_desc
[i
].offset
=
1395 frames
* ep
->stride
;
1396 urb
->iso_frame_desc
[i
].length
= 0;
1397 urb
->number_of_packets
++;
1402 if (period_elapsed
&&
1403 !snd_usb_endpoint_implicit_feedback_sink(subs
->data_endpoint
)) /* finish at the period boundary */
1406 bytes
= frames
* ep
->stride
;
1408 if (unlikely(subs
->pcm_format
== SNDRV_PCM_FORMAT_DSD_U16_LE
&&
1409 subs
->cur_audiofmt
->dsd_dop
)) {
1410 fill_playback_urb_dsd_dop(subs
, urb
, bytes
);
1411 } else if (unlikely(subs
->pcm_format
== SNDRV_PCM_FORMAT_DSD_U8
&&
1412 subs
->cur_audiofmt
->dsd_bitrev
)) {
1413 /* bit-reverse the bytes */
1414 u8
*buf
= urb
->transfer_buffer
;
1415 for (i
= 0; i
< bytes
; i
++) {
1416 int idx
= (subs
->hwptr_done
+ i
)
1417 % (runtime
->buffer_size
* stride
);
1418 buf
[i
] = bitrev8(runtime
->dma_area
[idx
]);
1421 subs
->hwptr_done
+= bytes
;
1424 if (subs
->hwptr_done
+ bytes
> runtime
->buffer_size
* stride
) {
1425 /* err, the transferred area goes over buffer boundary. */
1426 unsigned int bytes1
=
1427 runtime
->buffer_size
* stride
- subs
->hwptr_done
;
1428 memcpy(urb
->transfer_buffer
,
1429 runtime
->dma_area
+ subs
->hwptr_done
, bytes1
);
1430 memcpy(urb
->transfer_buffer
+ bytes1
,
1431 runtime
->dma_area
, bytes
- bytes1
);
1433 memcpy(urb
->transfer_buffer
,
1434 runtime
->dma_area
+ subs
->hwptr_done
, bytes
);
1437 subs
->hwptr_done
+= bytes
;
1440 if (subs
->hwptr_done
>= runtime
->buffer_size
* stride
)
1441 subs
->hwptr_done
-= runtime
->buffer_size
* stride
;
1443 /* update delay with exact number of samples queued */
1444 runtime
->delay
= subs
->last_delay
;
1445 runtime
->delay
+= frames
;
1446 subs
->last_delay
= runtime
->delay
;
1448 /* realign last_frame_number */
1449 subs
->last_frame_number
= usb_get_current_frame_number(subs
->dev
);
1450 subs
->last_frame_number
&= 0xFF; /* keep 8 LSBs */
1452 spin_unlock_irqrestore(&subs
->lock
, flags
);
1453 urb
->transfer_buffer_length
= bytes
;
1455 snd_pcm_period_elapsed(subs
->pcm_substream
);
1459 * process after playback data complete
1460 * - decrease the delay count again
1462 static void retire_playback_urb(struct snd_usb_substream
*subs
,
1465 unsigned long flags
;
1466 struct snd_pcm_runtime
*runtime
= subs
->pcm_substream
->runtime
;
1467 struct snd_usb_endpoint
*ep
= subs
->data_endpoint
;
1468 int processed
= urb
->transfer_buffer_length
/ ep
->stride
;
1471 /* ignore the delay accounting when procssed=0 is given, i.e.
1472 * silent payloads are procssed before handling the actual data
1477 spin_lock_irqsave(&subs
->lock
, flags
);
1478 if (!subs
->last_delay
)
1479 goto out
; /* short path */
1481 est_delay
= snd_usb_pcm_delay(subs
, runtime
->rate
);
1482 /* update delay with exact number of samples played */
1483 if (processed
> subs
->last_delay
)
1484 subs
->last_delay
= 0;
1486 subs
->last_delay
-= processed
;
1487 runtime
->delay
= subs
->last_delay
;
1490 * Report when delay estimate is off by more than 2ms.
1491 * The error should be lower than 2ms since the estimate relies
1492 * on two reads of a counter updated every ms.
1494 if (abs(est_delay
- subs
->last_delay
) * 1000 > runtime
->rate
* 2)
1495 dev_dbg_ratelimited(&subs
->dev
->dev
,
1496 "delay: estimated %d, actual %d\n",
1497 est_delay
, subs
->last_delay
);
1499 if (!subs
->running
) {
1500 /* update last_frame_number for delay counting here since
1501 * prepare_playback_urb won't be called during pause
1503 subs
->last_frame_number
=
1504 usb_get_current_frame_number(subs
->dev
) & 0xff;
1508 spin_unlock_irqrestore(&subs
->lock
, flags
);
1511 static int snd_usb_playback_open(struct snd_pcm_substream
*substream
)
1513 return snd_usb_pcm_open(substream
, SNDRV_PCM_STREAM_PLAYBACK
);
1516 static int snd_usb_playback_close(struct snd_pcm_substream
*substream
)
1518 return snd_usb_pcm_close(substream
, SNDRV_PCM_STREAM_PLAYBACK
);
1521 static int snd_usb_capture_open(struct snd_pcm_substream
*substream
)
1523 return snd_usb_pcm_open(substream
, SNDRV_PCM_STREAM_CAPTURE
);
1526 static int snd_usb_capture_close(struct snd_pcm_substream
*substream
)
1528 return snd_usb_pcm_close(substream
, SNDRV_PCM_STREAM_CAPTURE
);
1531 static int snd_usb_substream_playback_trigger(struct snd_pcm_substream
*substream
,
1534 struct snd_usb_substream
*subs
= substream
->runtime
->private_data
;
1537 case SNDRV_PCM_TRIGGER_START
:
1538 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
1539 subs
->data_endpoint
->prepare_data_urb
= prepare_playback_urb
;
1540 subs
->data_endpoint
->retire_data_urb
= retire_playback_urb
;
1543 case SNDRV_PCM_TRIGGER_STOP
:
1544 stop_endpoints(subs
, false);
1547 case SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
1548 subs
->data_endpoint
->prepare_data_urb
= NULL
;
1549 /* keep retire_data_urb for delay calculation */
1550 subs
->data_endpoint
->retire_data_urb
= retire_playback_urb
;
1558 static int snd_usb_substream_capture_trigger(struct snd_pcm_substream
*substream
,
1562 struct snd_usb_substream
*subs
= substream
->runtime
->private_data
;
1565 case SNDRV_PCM_TRIGGER_START
:
1566 err
= start_endpoints(subs
, false);
1570 subs
->data_endpoint
->retire_data_urb
= retire_capture_urb
;
1573 case SNDRV_PCM_TRIGGER_STOP
:
1574 stop_endpoints(subs
, false);
1577 case SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
1578 subs
->data_endpoint
->retire_data_urb
= NULL
;
1581 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
1582 subs
->data_endpoint
->retire_data_urb
= retire_capture_urb
;
1590 static struct snd_pcm_ops snd_usb_playback_ops
= {
1591 .open
= snd_usb_playback_open
,
1592 .close
= snd_usb_playback_close
,
1593 .ioctl
= snd_pcm_lib_ioctl
,
1594 .hw_params
= snd_usb_hw_params
,
1595 .hw_free
= snd_usb_hw_free
,
1596 .prepare
= snd_usb_pcm_prepare
,
1597 .trigger
= snd_usb_substream_playback_trigger
,
1598 .pointer
= snd_usb_pcm_pointer
,
1599 .page
= snd_pcm_lib_get_vmalloc_page
,
1600 .mmap
= snd_pcm_lib_mmap_vmalloc
,
1603 static struct snd_pcm_ops snd_usb_capture_ops
= {
1604 .open
= snd_usb_capture_open
,
1605 .close
= snd_usb_capture_close
,
1606 .ioctl
= snd_pcm_lib_ioctl
,
1607 .hw_params
= snd_usb_hw_params
,
1608 .hw_free
= snd_usb_hw_free
,
1609 .prepare
= snd_usb_pcm_prepare
,
1610 .trigger
= snd_usb_substream_capture_trigger
,
1611 .pointer
= snd_usb_pcm_pointer
,
1612 .page
= snd_pcm_lib_get_vmalloc_page
,
1613 .mmap
= snd_pcm_lib_mmap_vmalloc
,
1616 void snd_usb_set_pcm_ops(struct snd_pcm
*pcm
, int stream
)
1618 snd_pcm_set_ops(pcm
, stream
,
1619 stream
== SNDRV_PCM_STREAM_PLAYBACK
?
1620 &snd_usb_playback_ops
: &snd_usb_capture_ops
);