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/usb.h>
20 #include <linux/usb/audio.h>
21 #include <linux/usb/audio-v2.h>
23 #include <sound/core.h>
24 #include <sound/pcm.h>
25 #include <sound/pcm_params.h>
37 * return the current pcm pointer. just based on the hwptr_done value.
39 static snd_pcm_uframes_t
snd_usb_pcm_pointer(struct snd_pcm_substream
*substream
)
41 struct snd_usb_substream
*subs
;
42 unsigned int hwptr_done
;
44 subs
= (struct snd_usb_substream
*)substream
->runtime
->private_data
;
45 spin_lock(&subs
->lock
);
46 hwptr_done
= subs
->hwptr_done
;
47 spin_unlock(&subs
->lock
);
48 return hwptr_done
/ (substream
->runtime
->frame_bits
>> 3);
52 * find a matching audio format
54 static struct audioformat
*find_format(struct snd_usb_substream
*subs
, unsigned int format
,
55 unsigned int rate
, unsigned int channels
)
58 struct audioformat
*found
= NULL
;
59 int cur_attr
= 0, attr
;
61 list_for_each(p
, &subs
->fmt_list
) {
62 struct audioformat
*fp
;
63 fp
= list_entry(p
, struct audioformat
, list
);
64 if (!(fp
->formats
& (1uLL << format
)))
66 if (fp
->channels
!= channels
)
68 if (rate
< fp
->rate_min
|| rate
> fp
->rate_max
)
70 if (! (fp
->rates
& SNDRV_PCM_RATE_CONTINUOUS
)) {
72 for (i
= 0; i
< fp
->nr_rates
; i
++)
73 if (fp
->rate_table
[i
] == rate
)
75 if (i
>= fp
->nr_rates
)
78 attr
= fp
->ep_attr
& USB_ENDPOINT_SYNCTYPE
;
84 /* avoid async out and adaptive in if the other method
85 * supports the same format.
86 * this is a workaround for the case like
87 * M-audio audiophile USB.
89 if (attr
!= cur_attr
) {
90 if ((attr
== USB_ENDPOINT_SYNC_ASYNC
&&
91 subs
->direction
== SNDRV_PCM_STREAM_PLAYBACK
) ||
92 (attr
== USB_ENDPOINT_SYNC_ADAPTIVE
&&
93 subs
->direction
== SNDRV_PCM_STREAM_CAPTURE
))
95 if ((cur_attr
== USB_ENDPOINT_SYNC_ASYNC
&&
96 subs
->direction
== SNDRV_PCM_STREAM_PLAYBACK
) ||
97 (cur_attr
== USB_ENDPOINT_SYNC_ADAPTIVE
&&
98 subs
->direction
== SNDRV_PCM_STREAM_CAPTURE
)) {
104 /* find the format with the largest max. packet size */
105 if (fp
->maxpacksize
> found
->maxpacksize
) {
113 static int init_pitch_v1(struct snd_usb_audio
*chip
, int iface
,
114 struct usb_host_interface
*alts
,
115 struct audioformat
*fmt
)
117 struct usb_device
*dev
= chip
->dev
;
119 unsigned char data
[1];
122 ep
= get_endpoint(alts
, 0)->bEndpointAddress
;
125 if ((err
= snd_usb_ctl_msg(dev
, usb_sndctrlpipe(dev
, 0), UAC_SET_CUR
,
126 USB_TYPE_CLASS
|USB_RECIP_ENDPOINT
|USB_DIR_OUT
,
127 UAC_EP_CS_ATTR_PITCH_CONTROL
<< 8, ep
,
128 data
, sizeof(data
), 1000)) < 0) {
129 snd_printk(KERN_ERR
"%d:%d:%d: cannot set enable PITCH\n",
130 dev
->devnum
, iface
, ep
);
137 static int init_pitch_v2(struct snd_usb_audio
*chip
, int iface
,
138 struct usb_host_interface
*alts
,
139 struct audioformat
*fmt
)
141 struct usb_device
*dev
= chip
->dev
;
142 unsigned char data
[1];
146 ep
= get_endpoint(alts
, 0)->bEndpointAddress
;
149 if ((err
= snd_usb_ctl_msg(dev
, usb_sndctrlpipe(dev
, 0), UAC2_CS_CUR
,
150 USB_TYPE_CLASS
| USB_RECIP_ENDPOINT
| USB_DIR_OUT
,
151 UAC2_EP_CS_PITCH
<< 8, 0,
152 data
, sizeof(data
), 1000)) < 0) {
153 snd_printk(KERN_ERR
"%d:%d:%d: cannot set enable PITCH (v2)\n",
154 dev
->devnum
, iface
, fmt
->altsetting
);
162 * initialize the pitch control and sample rate
164 int snd_usb_init_pitch(struct snd_usb_audio
*chip
, int iface
,
165 struct usb_host_interface
*alts
,
166 struct audioformat
*fmt
)
168 struct usb_interface_descriptor
*altsd
= get_iface_desc(alts
);
170 /* if endpoint doesn't have pitch control, bail out */
171 if (!(fmt
->attributes
& UAC_EP_CS_ATTR_PITCH_CONTROL
))
174 switch (altsd
->bInterfaceProtocol
) {
177 return init_pitch_v1(chip
, iface
, alts
, fmt
);
180 return init_pitch_v2(chip
, iface
, alts
, fmt
);
185 * find a matching format and set up the interface
187 static int set_format(struct snd_usb_substream
*subs
, struct audioformat
*fmt
)
189 struct usb_device
*dev
= subs
->dev
;
190 struct usb_host_interface
*alts
;
191 struct usb_interface_descriptor
*altsd
;
192 struct usb_interface
*iface
;
193 unsigned int ep
, attr
;
194 int is_playback
= subs
->direction
== SNDRV_PCM_STREAM_PLAYBACK
;
197 iface
= usb_ifnum_to_if(dev
, fmt
->iface
);
200 alts
= &iface
->altsetting
[fmt
->altset_idx
];
201 altsd
= get_iface_desc(alts
);
202 if (WARN_ON(altsd
->bAlternateSetting
!= fmt
->altsetting
))
205 if (fmt
== subs
->cur_audiofmt
)
208 /* close the old interface */
209 if (subs
->interface
>= 0 && subs
->interface
!= fmt
->iface
) {
210 if (usb_set_interface(subs
->dev
, subs
->interface
, 0) < 0) {
211 snd_printk(KERN_ERR
"%d:%d:%d: return to setting 0 failed\n",
212 dev
->devnum
, fmt
->iface
, fmt
->altsetting
);
215 subs
->interface
= -1;
216 subs
->altset_idx
= 0;
220 if (subs
->interface
!= fmt
->iface
|| subs
->altset_idx
!= fmt
->altset_idx
) {
221 if (usb_set_interface(dev
, fmt
->iface
, fmt
->altsetting
) < 0) {
222 snd_printk(KERN_ERR
"%d:%d:%d: usb_set_interface failed\n",
223 dev
->devnum
, fmt
->iface
, fmt
->altsetting
);
226 snd_printdd(KERN_INFO
"setting usb interface %d:%d\n", fmt
->iface
, fmt
->altsetting
);
227 subs
->interface
= fmt
->iface
;
228 subs
->altset_idx
= fmt
->altset_idx
;
231 /* create a data pipe */
232 ep
= fmt
->endpoint
& USB_ENDPOINT_NUMBER_MASK
;
234 subs
->datapipe
= usb_sndisocpipe(dev
, ep
);
236 subs
->datapipe
= usb_rcvisocpipe(dev
, ep
);
237 subs
->datainterval
= fmt
->datainterval
;
238 subs
->syncpipe
= subs
->syncinterval
= 0;
239 subs
->maxpacksize
= fmt
->maxpacksize
;
240 subs
->syncmaxsize
= 0;
243 /* we need a sync pipe in async OUT or adaptive IN mode */
244 /* check the number of EP, since some devices have broken
245 * descriptors which fool us. if it has only one EP,
246 * assume it as adaptive-out or sync-in.
248 attr
= fmt
->ep_attr
& USB_ENDPOINT_SYNCTYPE
;
249 if (((is_playback
&& attr
== USB_ENDPOINT_SYNC_ASYNC
) ||
250 (! is_playback
&& attr
== USB_ENDPOINT_SYNC_ADAPTIVE
)) &&
251 altsd
->bNumEndpoints
>= 2) {
252 /* check sync-pipe endpoint */
253 /* ... and check descriptor size before accessing bSynchAddress
254 because there is a version of the SB Audigy 2 NX firmware lacking
255 the audio fields in the endpoint descriptors */
256 if ((get_endpoint(alts
, 1)->bmAttributes
& USB_ENDPOINT_XFERTYPE_MASK
) != 0x01 ||
257 (get_endpoint(alts
, 1)->bLength
>= USB_DT_ENDPOINT_AUDIO_SIZE
&&
258 get_endpoint(alts
, 1)->bSynchAddress
!= 0)) {
259 snd_printk(KERN_ERR
"%d:%d:%d : invalid synch pipe\n",
260 dev
->devnum
, fmt
->iface
, fmt
->altsetting
);
263 ep
= get_endpoint(alts
, 1)->bEndpointAddress
;
264 if (get_endpoint(alts
, 0)->bLength
>= USB_DT_ENDPOINT_AUDIO_SIZE
&&
265 (( is_playback
&& ep
!= (unsigned int)(get_endpoint(alts
, 0)->bSynchAddress
| USB_DIR_IN
)) ||
266 (!is_playback
&& ep
!= (unsigned int)(get_endpoint(alts
, 0)->bSynchAddress
& ~USB_DIR_IN
)))) {
267 snd_printk(KERN_ERR
"%d:%d:%d : invalid synch pipe\n",
268 dev
->devnum
, fmt
->iface
, fmt
->altsetting
);
271 ep
&= USB_ENDPOINT_NUMBER_MASK
;
273 subs
->syncpipe
= usb_rcvisocpipe(dev
, ep
);
275 subs
->syncpipe
= usb_sndisocpipe(dev
, ep
);
276 if (get_endpoint(alts
, 1)->bLength
>= USB_DT_ENDPOINT_AUDIO_SIZE
&&
277 get_endpoint(alts
, 1)->bRefresh
>= 1 &&
278 get_endpoint(alts
, 1)->bRefresh
<= 9)
279 subs
->syncinterval
= get_endpoint(alts
, 1)->bRefresh
;
280 else if (snd_usb_get_speed(subs
->dev
) == USB_SPEED_FULL
)
281 subs
->syncinterval
= 1;
282 else if (get_endpoint(alts
, 1)->bInterval
>= 1 &&
283 get_endpoint(alts
, 1)->bInterval
<= 16)
284 subs
->syncinterval
= get_endpoint(alts
, 1)->bInterval
- 1;
286 subs
->syncinterval
= 3;
287 subs
->syncmaxsize
= le16_to_cpu(get_endpoint(alts
, 1)->wMaxPacketSize
);
290 /* always fill max packet size */
291 if (fmt
->attributes
& UAC_EP_CS_ATTR_FILL_MAX
)
294 if ((err
= snd_usb_init_pitch(subs
->stream
->chip
, subs
->interface
, alts
, fmt
)) < 0)
297 subs
->cur_audiofmt
= fmt
;
299 snd_usb_set_format_quirk(subs
, fmt
);
303 "setting done: format = %d, rate = %d..%d, channels = %d\n",
304 fmt
->format
, fmt
->rate_min
, fmt
->rate_max
, fmt
->channels
);
306 " datapipe = 0x%0x, syncpipe = 0x%0x\n",
307 subs
->datapipe
, subs
->syncpipe
);
316 * allocate a buffer and set the given audio format.
318 * so far we use a physically linear buffer although packetize transfer
319 * doesn't need a continuous area.
320 * if sg buffer is supported on the later version of alsa, we'll follow
323 static int snd_usb_hw_params(struct snd_pcm_substream
*substream
,
324 struct snd_pcm_hw_params
*hw_params
)
326 struct snd_usb_substream
*subs
= substream
->runtime
->private_data
;
327 struct audioformat
*fmt
;
328 unsigned int channels
, rate
, format
;
331 ret
= snd_pcm_lib_alloc_vmalloc_buffer(substream
,
332 params_buffer_bytes(hw_params
));
336 format
= params_format(hw_params
);
337 rate
= params_rate(hw_params
);
338 channels
= params_channels(hw_params
);
339 fmt
= find_format(subs
, format
, rate
, channels
);
341 snd_printd(KERN_DEBUG
"cannot set format: format = %#x, rate = %d, channels = %d\n",
342 format
, rate
, channels
);
346 changed
= subs
->cur_audiofmt
!= fmt
||
347 subs
->period_bytes
!= params_period_bytes(hw_params
) ||
348 subs
->cur_rate
!= rate
;
349 if ((ret
= set_format(subs
, fmt
)) < 0)
352 if (subs
->cur_rate
!= rate
) {
353 struct usb_host_interface
*alts
;
354 struct usb_interface
*iface
;
355 iface
= usb_ifnum_to_if(subs
->dev
, fmt
->iface
);
356 alts
= &iface
->altsetting
[fmt
->altset_idx
];
357 ret
= snd_usb_init_sample_rate(subs
->stream
->chip
, subs
->interface
, alts
, fmt
, rate
);
360 subs
->cur_rate
= rate
;
365 snd_usb_release_substream_urbs(subs
, 0);
366 /* influenced: period_bytes, channels, rate, format, */
367 ret
= snd_usb_init_substream_urbs(subs
, params_period_bytes(hw_params
),
368 params_rate(hw_params
),
369 snd_pcm_format_physical_width(params_format(hw_params
)) *
370 params_channels(hw_params
));
379 * reset the audio format and release the buffer
381 static int snd_usb_hw_free(struct snd_pcm_substream
*substream
)
383 struct snd_usb_substream
*subs
= substream
->runtime
->private_data
;
385 subs
->cur_audiofmt
= NULL
;
387 subs
->period_bytes
= 0;
388 if (!subs
->stream
->chip
->shutdown
)
389 snd_usb_release_substream_urbs(subs
, 0);
390 return snd_pcm_lib_free_vmalloc_buffer(substream
);
396 * only a few subtle things...
398 static int snd_usb_pcm_prepare(struct snd_pcm_substream
*substream
)
400 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
401 struct snd_usb_substream
*subs
= runtime
->private_data
;
403 if (! subs
->cur_audiofmt
) {
404 snd_printk(KERN_ERR
"usbaudio: no format is specified!\n");
408 /* some unit conversions in runtime */
409 subs
->maxframesize
= bytes_to_frames(runtime
, subs
->maxpacksize
);
410 subs
->curframesize
= bytes_to_frames(runtime
, subs
->curpacksize
);
412 /* reset the pointer */
413 subs
->hwptr_done
= 0;
414 subs
->transfer_done
= 0;
418 return snd_usb_substream_prepare(subs
, runtime
);
421 static struct snd_pcm_hardware snd_usb_hardware
=
423 .info
= SNDRV_PCM_INFO_MMAP
|
424 SNDRV_PCM_INFO_MMAP_VALID
|
425 SNDRV_PCM_INFO_BATCH
|
426 SNDRV_PCM_INFO_INTERLEAVED
|
427 SNDRV_PCM_INFO_BLOCK_TRANSFER
|
428 SNDRV_PCM_INFO_PAUSE
,
429 .buffer_bytes_max
= 1024 * 1024,
430 .period_bytes_min
= 64,
431 .period_bytes_max
= 512 * 1024,
436 static int hw_check_valid_format(struct snd_usb_substream
*subs
,
437 struct snd_pcm_hw_params
*params
,
438 struct audioformat
*fp
)
440 struct snd_interval
*it
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_RATE
);
441 struct snd_interval
*ct
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_CHANNELS
);
442 struct snd_mask
*fmts
= hw_param_mask(params
, SNDRV_PCM_HW_PARAM_FORMAT
);
443 struct snd_interval
*pt
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_PERIOD_TIME
);
444 struct snd_mask check_fmts
;
447 /* check the format */
448 snd_mask_none(&check_fmts
);
449 check_fmts
.bits
[0] = (u32
)fp
->formats
;
450 check_fmts
.bits
[1] = (u32
)(fp
->formats
>> 32);
451 snd_mask_intersect(&check_fmts
, fmts
);
452 if (snd_mask_empty(&check_fmts
)) {
453 hwc_debug(" > check: no supported format %d\n", fp
->format
);
456 /* check the channels */
457 if (fp
->channels
< ct
->min
|| fp
->channels
> ct
->max
) {
458 hwc_debug(" > check: no valid channels %d (%d/%d)\n", fp
->channels
, ct
->min
, ct
->max
);
461 /* check the rate is within the range */
462 if (fp
->rate_min
> it
->max
|| (fp
->rate_min
== it
->max
&& it
->openmax
)) {
463 hwc_debug(" > check: rate_min %d > max %d\n", fp
->rate_min
, it
->max
);
466 if (fp
->rate_max
< it
->min
|| (fp
->rate_max
== it
->min
&& it
->openmin
)) {
467 hwc_debug(" > check: rate_max %d < min %d\n", fp
->rate_max
, it
->min
);
470 /* check whether the period time is >= the data packet interval */
471 if (snd_usb_get_speed(subs
->dev
) != USB_SPEED_FULL
) {
472 ptime
= 125 * (1 << fp
->datainterval
);
473 if (ptime
> pt
->max
|| (ptime
== pt
->max
&& pt
->openmax
)) {
474 hwc_debug(" > check: ptime %u > max %u\n", ptime
, pt
->max
);
481 static int hw_rule_rate(struct snd_pcm_hw_params
*params
,
482 struct snd_pcm_hw_rule
*rule
)
484 struct snd_usb_substream
*subs
= rule
->private;
486 struct snd_interval
*it
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_RATE
);
487 unsigned int rmin
, rmax
;
490 hwc_debug("hw_rule_rate: (%d,%d)\n", it
->min
, it
->max
);
493 list_for_each(p
, &subs
->fmt_list
) {
494 struct audioformat
*fp
;
495 fp
= list_entry(p
, struct audioformat
, list
);
496 if (!hw_check_valid_format(subs
, params
, fp
))
499 if (rmin
> fp
->rate_min
)
501 if (rmax
< fp
->rate_max
)
510 hwc_debug(" --> get empty\n");
516 if (it
->min
< rmin
) {
521 if (it
->max
> rmax
) {
526 if (snd_interval_checkempty(it
)) {
530 hwc_debug(" --> (%d, %d) (changed = %d)\n", it
->min
, it
->max
, changed
);
535 static int hw_rule_channels(struct snd_pcm_hw_params
*params
,
536 struct snd_pcm_hw_rule
*rule
)
538 struct snd_usb_substream
*subs
= rule
->private;
540 struct snd_interval
*it
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_CHANNELS
);
541 unsigned int rmin
, rmax
;
544 hwc_debug("hw_rule_channels: (%d,%d)\n", it
->min
, it
->max
);
547 list_for_each(p
, &subs
->fmt_list
) {
548 struct audioformat
*fp
;
549 fp
= list_entry(p
, struct audioformat
, list
);
550 if (!hw_check_valid_format(subs
, params
, fp
))
553 if (rmin
> fp
->channels
)
555 if (rmax
< fp
->channels
)
564 hwc_debug(" --> get empty\n");
570 if (it
->min
< rmin
) {
575 if (it
->max
> rmax
) {
580 if (snd_interval_checkempty(it
)) {
584 hwc_debug(" --> (%d, %d) (changed = %d)\n", it
->min
, it
->max
, changed
);
588 static int hw_rule_format(struct snd_pcm_hw_params
*params
,
589 struct snd_pcm_hw_rule
*rule
)
591 struct snd_usb_substream
*subs
= rule
->private;
593 struct snd_mask
*fmt
= hw_param_mask(params
, SNDRV_PCM_HW_PARAM_FORMAT
);
598 hwc_debug("hw_rule_format: %x:%x\n", fmt
->bits
[0], fmt
->bits
[1]);
600 list_for_each(p
, &subs
->fmt_list
) {
601 struct audioformat
*fp
;
602 fp
= list_entry(p
, struct audioformat
, list
);
603 if (!hw_check_valid_format(subs
, params
, fp
))
605 fbits
|= fp
->formats
;
608 oldbits
[0] = fmt
->bits
[0];
609 oldbits
[1] = fmt
->bits
[1];
610 fmt
->bits
[0] &= (u32
)fbits
;
611 fmt
->bits
[1] &= (u32
)(fbits
>> 32);
612 if (!fmt
->bits
[0] && !fmt
->bits
[1]) {
613 hwc_debug(" --> get empty\n");
616 changed
= (oldbits
[0] != fmt
->bits
[0] || oldbits
[1] != fmt
->bits
[1]);
617 hwc_debug(" --> %x:%x (changed = %d)\n", fmt
->bits
[0], fmt
->bits
[1], changed
);
621 static int hw_rule_period_time(struct snd_pcm_hw_params
*params
,
622 struct snd_pcm_hw_rule
*rule
)
624 struct snd_usb_substream
*subs
= rule
->private;
625 struct audioformat
*fp
;
626 struct snd_interval
*it
;
627 unsigned char min_datainterval
;
631 it
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_PERIOD_TIME
);
632 hwc_debug("hw_rule_period_time: (%u,%u)\n", it
->min
, it
->max
);
633 min_datainterval
= 0xff;
634 list_for_each_entry(fp
, &subs
->fmt_list
, list
) {
635 if (!hw_check_valid_format(subs
, params
, fp
))
637 min_datainterval
= min(min_datainterval
, fp
->datainterval
);
639 if (min_datainterval
== 0xff) {
640 hwc_debug(" --> get empty\n");
644 pmin
= 125 * (1 << min_datainterval
);
646 if (it
->min
< pmin
) {
651 if (snd_interval_checkempty(it
)) {
655 hwc_debug(" --> (%u,%u) (changed = %d)\n", it
->min
, it
->max
, changed
);
660 * If the device supports unusual bit rates, does the request meet these?
662 static int snd_usb_pcm_check_knot(struct snd_pcm_runtime
*runtime
,
663 struct snd_usb_substream
*subs
)
665 struct audioformat
*fp
;
666 int count
= 0, needs_knot
= 0;
669 list_for_each_entry(fp
, &subs
->fmt_list
, list
) {
670 if (fp
->rates
& SNDRV_PCM_RATE_CONTINUOUS
)
672 count
+= fp
->nr_rates
;
673 if (fp
->rates
& SNDRV_PCM_RATE_KNOT
)
679 subs
->rate_list
.list
= kmalloc(sizeof(int) * count
, GFP_KERNEL
);
680 if (!subs
->rate_list
.list
)
682 subs
->rate_list
.count
= count
;
683 subs
->rate_list
.mask
= 0;
685 list_for_each_entry(fp
, &subs
->fmt_list
, list
) {
687 for (i
= 0; i
< fp
->nr_rates
; i
++)
688 subs
->rate_list
.list
[count
++] = fp
->rate_table
[i
];
690 err
= snd_pcm_hw_constraint_list(runtime
, 0, SNDRV_PCM_HW_PARAM_RATE
,
700 * set up the runtime hardware information.
703 static int setup_hw_info(struct snd_pcm_runtime
*runtime
, struct snd_usb_substream
*subs
)
706 unsigned int pt
, ptmin
;
707 int param_period_time_if_needed
;
710 runtime
->hw
.formats
= subs
->formats
;
712 runtime
->hw
.rate_min
= 0x7fffffff;
713 runtime
->hw
.rate_max
= 0;
714 runtime
->hw
.channels_min
= 256;
715 runtime
->hw
.channels_max
= 0;
716 runtime
->hw
.rates
= 0;
718 /* check min/max rates and channels */
719 list_for_each(p
, &subs
->fmt_list
) {
720 struct audioformat
*fp
;
721 fp
= list_entry(p
, struct audioformat
, list
);
722 runtime
->hw
.rates
|= fp
->rates
;
723 if (runtime
->hw
.rate_min
> fp
->rate_min
)
724 runtime
->hw
.rate_min
= fp
->rate_min
;
725 if (runtime
->hw
.rate_max
< fp
->rate_max
)
726 runtime
->hw
.rate_max
= fp
->rate_max
;
727 if (runtime
->hw
.channels_min
> fp
->channels
)
728 runtime
->hw
.channels_min
= fp
->channels
;
729 if (runtime
->hw
.channels_max
< fp
->channels
)
730 runtime
->hw
.channels_max
= fp
->channels
;
731 if (fp
->fmt_type
== UAC_FORMAT_TYPE_II
&& fp
->frame_size
> 0) {
732 /* FIXME: there might be more than one audio formats... */
733 runtime
->hw
.period_bytes_min
= runtime
->hw
.period_bytes_max
=
736 pt
= 125 * (1 << fp
->datainterval
);
737 ptmin
= min(ptmin
, pt
);
740 param_period_time_if_needed
= SNDRV_PCM_HW_PARAM_PERIOD_TIME
;
741 if (snd_usb_get_speed(subs
->dev
) == USB_SPEED_FULL
)
742 /* full speed devices have fixed data packet interval */
745 /* if period time doesn't go below 1 ms, no rules needed */
746 param_period_time_if_needed
= -1;
747 snd_pcm_hw_constraint_minmax(runtime
, SNDRV_PCM_HW_PARAM_PERIOD_TIME
,
750 if ((err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_RATE
,
752 SNDRV_PCM_HW_PARAM_FORMAT
,
753 SNDRV_PCM_HW_PARAM_CHANNELS
,
754 param_period_time_if_needed
,
757 if ((err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_CHANNELS
,
758 hw_rule_channels
, subs
,
759 SNDRV_PCM_HW_PARAM_FORMAT
,
760 SNDRV_PCM_HW_PARAM_RATE
,
761 param_period_time_if_needed
,
764 if ((err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_FORMAT
,
765 hw_rule_format
, subs
,
766 SNDRV_PCM_HW_PARAM_RATE
,
767 SNDRV_PCM_HW_PARAM_CHANNELS
,
768 param_period_time_if_needed
,
771 if (param_period_time_if_needed
>= 0) {
772 err
= snd_pcm_hw_rule_add(runtime
, 0,
773 SNDRV_PCM_HW_PARAM_PERIOD_TIME
,
774 hw_rule_period_time
, subs
,
775 SNDRV_PCM_HW_PARAM_FORMAT
,
776 SNDRV_PCM_HW_PARAM_CHANNELS
,
777 SNDRV_PCM_HW_PARAM_RATE
,
782 if ((err
= snd_usb_pcm_check_knot(runtime
, subs
)) < 0)
787 static int snd_usb_pcm_open(struct snd_pcm_substream
*substream
, int direction
)
789 struct snd_usb_stream
*as
= snd_pcm_substream_chip(substream
);
790 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
791 struct snd_usb_substream
*subs
= &as
->substream
[direction
];
793 subs
->interface
= -1;
794 subs
->altset_idx
= 0;
795 runtime
->hw
= snd_usb_hardware
;
796 runtime
->private_data
= subs
;
797 subs
->pcm_substream
= substream
;
798 return setup_hw_info(runtime
, subs
);
801 static int snd_usb_pcm_close(struct snd_pcm_substream
*substream
, int direction
)
803 struct snd_usb_stream
*as
= snd_pcm_substream_chip(substream
);
804 struct snd_usb_substream
*subs
= &as
->substream
[direction
];
806 if (!as
->chip
->shutdown
&& subs
->interface
>= 0) {
807 usb_set_interface(subs
->dev
, subs
->interface
, 0);
808 subs
->interface
= -1;
810 subs
->pcm_substream
= NULL
;
814 static int snd_usb_playback_open(struct snd_pcm_substream
*substream
)
816 return snd_usb_pcm_open(substream
, SNDRV_PCM_STREAM_PLAYBACK
);
819 static int snd_usb_playback_close(struct snd_pcm_substream
*substream
)
821 return snd_usb_pcm_close(substream
, SNDRV_PCM_STREAM_PLAYBACK
);
824 static int snd_usb_capture_open(struct snd_pcm_substream
*substream
)
826 return snd_usb_pcm_open(substream
, SNDRV_PCM_STREAM_CAPTURE
);
829 static int snd_usb_capture_close(struct snd_pcm_substream
*substream
)
831 return snd_usb_pcm_close(substream
, SNDRV_PCM_STREAM_CAPTURE
);
834 static struct snd_pcm_ops snd_usb_playback_ops
= {
835 .open
= snd_usb_playback_open
,
836 .close
= snd_usb_playback_close
,
837 .ioctl
= snd_pcm_lib_ioctl
,
838 .hw_params
= snd_usb_hw_params
,
839 .hw_free
= snd_usb_hw_free
,
840 .prepare
= snd_usb_pcm_prepare
,
841 .trigger
= snd_usb_substream_playback_trigger
,
842 .pointer
= snd_usb_pcm_pointer
,
843 .page
= snd_pcm_lib_get_vmalloc_page
,
844 .mmap
= snd_pcm_lib_mmap_vmalloc
,
847 static struct snd_pcm_ops snd_usb_capture_ops
= {
848 .open
= snd_usb_capture_open
,
849 .close
= snd_usb_capture_close
,
850 .ioctl
= snd_pcm_lib_ioctl
,
851 .hw_params
= snd_usb_hw_params
,
852 .hw_free
= snd_usb_hw_free
,
853 .prepare
= snd_usb_pcm_prepare
,
854 .trigger
= snd_usb_substream_capture_trigger
,
855 .pointer
= snd_usb_pcm_pointer
,
856 .page
= snd_pcm_lib_get_vmalloc_page
,
857 .mmap
= snd_pcm_lib_mmap_vmalloc
,
860 void snd_usb_set_pcm_ops(struct snd_pcm
*pcm
, int stream
)
862 snd_pcm_set_ops(pcm
, stream
,
863 stream
== SNDRV_PCM_STREAM_PLAYBACK
?
864 &snd_usb_playback_ops
: &snd_usb_capture_ops
);