blob: 15b151ed4899c6032704d361b9c641d2b53b849f [file] [log] [blame]
Daniel Macke5779992010-03-04 19:46:13 +01001/*
2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; either version 2 of the License, or
5 * (at your option) any later version.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 *
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
15 */
16
17#include <linux/init.h>
Stephen Rothwell9966dda2010-03-29 19:01:48 +110018#include <linux/slab.h>
Daniel Mack44dcbbb2013-04-17 00:01:39 +080019#include <linux/bitrev.h>
Daniel Mackedcd3632012-04-12 13:51:12 +020020#include <linux/ratelimit.h>
Daniel Macke5779992010-03-04 19:46:13 +010021#include <linux/usb.h>
22#include <linux/usb/audio.h>
Daniel Mack7e847892010-03-11 21:13:20 +010023#include <linux/usb/audio-v2.h>
Daniel Macke5779992010-03-04 19:46:13 +010024
25#include <sound/core.h>
26#include <sound/pcm.h>
27#include <sound/pcm_params.h>
28
29#include "usbaudio.h"
30#include "card.h"
31#include "quirks.h"
32#include "debug.h"
Daniel Mackc731bc92011-09-14 12:46:57 +020033#include "endpoint.h"
Daniel Macke5779992010-03-04 19:46:13 +010034#include "helper.h"
35#include "pcm.h"
Daniel Mack79f920f2010-05-31 14:51:31 +020036#include "clock.h"
Oliver Neukum88a85162011-03-11 14:51:12 +010037#include "power.h"
Daniel Macke5779992010-03-04 19:46:13 +010038
Daniel Mackedcd3632012-04-12 13:51:12 +020039#define SUBSTREAM_FLAG_DATA_EP_STARTED 0
40#define SUBSTREAM_FLAG_SYNC_EP_STARTED 1
41
Pierre-Louis Bossart294c4fb2011-09-06 19:15:34 -050042/* return the estimated delay based on USB frame counters */
43snd_pcm_uframes_t snd_usb_pcm_delay(struct snd_usb_substream *subs,
44 unsigned int rate)
45{
46 int current_frame_number;
47 int frame_diff;
48 int est_delay;
49
Takashi Iwai48779a02012-11-23 16:00:37 +010050 if (!subs->last_delay)
51 return 0; /* short path */
52
Pierre-Louis Bossart294c4fb2011-09-06 19:15:34 -050053 current_frame_number = usb_get_current_frame_number(subs->dev);
54 /*
55 * HCD implementations use different widths, use lower 8 bits.
56 * The delay will be managed up to 256ms, which is more than
57 * enough
58 */
59 frame_diff = (current_frame_number - subs->last_frame_number) & 0xff;
60
61 /* Approximation based on number of samples per USB frame (ms),
62 some truncation for 44.1 but the estimate is good enough */
Pierre-Louis Bossarte4cc6152012-12-19 11:39:05 -060063 est_delay = frame_diff * rate / 1000;
64 if (subs->direction == SNDRV_PCM_STREAM_PLAYBACK)
65 est_delay = subs->last_delay - est_delay;
66 else
67 est_delay = subs->last_delay + est_delay;
68
Pierre-Louis Bossart294c4fb2011-09-06 19:15:34 -050069 if (est_delay < 0)
70 est_delay = 0;
71 return est_delay;
72}
73
Daniel Macke5779992010-03-04 19:46:13 +010074/*
75 * return the current pcm pointer. just based on the hwptr_done value.
76 */
77static snd_pcm_uframes_t snd_usb_pcm_pointer(struct snd_pcm_substream *substream)
78{
79 struct snd_usb_substream *subs;
80 unsigned int hwptr_done;
81
82 subs = (struct snd_usb_substream *)substream->runtime->private_data;
Takashi Iwai978520b2012-10-12 15:12:55 +020083 if (subs->stream->chip->shutdown)
84 return SNDRV_PCM_POS_XRUN;
Daniel Macke5779992010-03-04 19:46:13 +010085 spin_lock(&subs->lock);
86 hwptr_done = subs->hwptr_done;
Pierre-Louis Bossarte4cc6152012-12-19 11:39:05 -060087 substream->runtime->delay = snd_usb_pcm_delay(subs,
Pierre-Louis Bossart294c4fb2011-09-06 19:15:34 -050088 substream->runtime->rate);
Daniel Macke5779992010-03-04 19:46:13 +010089 spin_unlock(&subs->lock);
90 return hwptr_done / (substream->runtime->frame_bits >> 3);
91}
92
93/*
94 * find a matching audio format
95 */
Dylan Reid61a70952012-09-18 09:49:48 -070096static struct audioformat *find_format(struct snd_usb_substream *subs)
Daniel Macke5779992010-03-04 19:46:13 +010097{
Eldad Zack88766f02013-04-03 23:18:49 +020098 struct audioformat *fp;
Daniel Macke5779992010-03-04 19:46:13 +010099 struct audioformat *found = NULL;
100 int cur_attr = 0, attr;
101
Eldad Zack88766f02013-04-03 23:18:49 +0200102 list_for_each_entry(fp, &subs->fmt_list, list) {
Eldad Zack74c34ca2013-04-23 01:00:41 +0200103 if (!(fp->formats & pcm_format_to_bits(subs->pcm_format)))
Clemens Ladisch015eb0b2010-03-04 19:46:15 +0100104 continue;
Dylan Reid61a70952012-09-18 09:49:48 -0700105 if (fp->channels != subs->channels)
Daniel Macke5779992010-03-04 19:46:13 +0100106 continue;
Dylan Reid61a70952012-09-18 09:49:48 -0700107 if (subs->cur_rate < fp->rate_min ||
108 subs->cur_rate > fp->rate_max)
Daniel Macke5779992010-03-04 19:46:13 +0100109 continue;
110 if (! (fp->rates & SNDRV_PCM_RATE_CONTINUOUS)) {
111 unsigned int i;
112 for (i = 0; i < fp->nr_rates; i++)
Dylan Reid61a70952012-09-18 09:49:48 -0700113 if (fp->rate_table[i] == subs->cur_rate)
Daniel Macke5779992010-03-04 19:46:13 +0100114 break;
115 if (i >= fp->nr_rates)
116 continue;
117 }
118 attr = fp->ep_attr & USB_ENDPOINT_SYNCTYPE;
119 if (! found) {
120 found = fp;
121 cur_attr = attr;
122 continue;
123 }
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.
128 */
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))
134 continue;
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)) {
139 found = fp;
140 cur_attr = attr;
141 continue;
142 }
143 }
144 /* find the format with the largest max. packet size */
145 if (fp->maxpacksize > found->maxpacksize) {
146 found = fp;
147 cur_attr = attr;
148 }
149 }
150 return found;
151}
152
Daniel Mack767d75a2010-03-04 19:46:17 +0100153static int init_pitch_v1(struct snd_usb_audio *chip, int iface,
154 struct usb_host_interface *alts,
155 struct audioformat *fmt)
Daniel Macke5779992010-03-04 19:46:13 +0100156{
Daniel Mack767d75a2010-03-04 19:46:17 +0100157 struct usb_device *dev = chip->dev;
Daniel Macke5779992010-03-04 19:46:13 +0100158 unsigned int ep;
159 unsigned char data[1];
160 int err;
161
162 ep = get_endpoint(alts, 0)->bEndpointAddress;
Daniel Mack767d75a2010-03-04 19:46:17 +0100163
Daniel Mack767d75a2010-03-04 19:46:17 +0100164 data[0] = 1;
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,
Clemens Ladisch17d900c2011-09-26 21:15:27 +0200168 data, sizeof(data))) < 0) {
Daniel Mack767d75a2010-03-04 19:46:17 +0100169 snd_printk(KERN_ERR "%d:%d:%d: cannot set enable PITCH\n",
170 dev->devnum, iface, ep);
171 return err;
Daniel Macke5779992010-03-04 19:46:13 +0100172 }
Daniel Mack767d75a2010-03-04 19:46:17 +0100173
Daniel Macke5779992010-03-04 19:46:13 +0100174 return 0;
175}
176
Daniel Mack92c25612010-05-26 18:11:39 +0200177static int init_pitch_v2(struct snd_usb_audio *chip, int iface,
178 struct usb_host_interface *alts,
179 struct audioformat *fmt)
180{
181 struct usb_device *dev = chip->dev;
182 unsigned char data[1];
Daniel Mack92c25612010-05-26 18:11:39 +0200183 int err;
184
Daniel Mack92c25612010-05-26 18:11:39 +0200185 data[0] = 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,
Clemens Ladisch17d900c2011-09-26 21:15:27 +0200189 data, sizeof(data))) < 0) {
Daniel Mack92c25612010-05-26 18:11:39 +0200190 snd_printk(KERN_ERR "%d:%d:%d: cannot set enable PITCH (v2)\n",
191 dev->devnum, iface, fmt->altsetting);
192 return err;
193 }
194
195 return 0;
196}
197
Daniel Mack767d75a2010-03-04 19:46:17 +0100198/*
Daniel Mack92c25612010-05-26 18:11:39 +0200199 * initialize the pitch control and sample rate
Daniel Mack767d75a2010-03-04 19:46:17 +0100200 */
201int snd_usb_init_pitch(struct snd_usb_audio *chip, int iface,
202 struct usb_host_interface *alts,
203 struct audioformat *fmt)
204{
Daniel Mack92c25612010-05-26 18:11:39 +0200205 /* if endpoint doesn't have pitch control, bail out */
206 if (!(fmt->attributes & UAC_EP_CS_ATTR_PITCH_CONTROL))
207 return 0;
208
Clemens Ladisch8f898e92013-01-31 21:39:17 +0100209 switch (fmt->protocol) {
Daniel Mack767d75a2010-03-04 19:46:17 +0100210 case UAC_VERSION_1:
Clemens Ladischa2acad82010-09-03 10:53:11 +0200211 default:
Daniel Mack767d75a2010-03-04 19:46:17 +0100212 return init_pitch_v1(chip, iface, alts, fmt);
213
214 case UAC_VERSION_2:
Daniel Mack92c25612010-05-26 18:11:39 +0200215 return init_pitch_v2(chip, iface, alts, fmt);
Daniel Mack767d75a2010-03-04 19:46:17 +0100216 }
Daniel Mack767d75a2010-03-04 19:46:17 +0100217}
218
Takashi Iwaia9bb3622012-11-20 18:32:06 +0100219static int start_endpoints(struct snd_usb_substream *subs, bool can_sleep)
Daniel Mackedcd3632012-04-12 13:51:12 +0200220{
221 int err;
222
223 if (!subs->data_endpoint)
224 return -EINVAL;
225
226 if (!test_and_set_bit(SUBSTREAM_FLAG_DATA_EP_STARTED, &subs->flags)) {
227 struct snd_usb_endpoint *ep = subs->data_endpoint;
228
229 snd_printdd(KERN_DEBUG "Starting data EP @%p\n", ep);
230
231 ep->data_subs = subs;
Daniel Mack015618b2012-08-29 13:17:05 +0200232 err = snd_usb_endpoint_start(ep, can_sleep);
Daniel Mackedcd3632012-04-12 13:51:12 +0200233 if (err < 0) {
234 clear_bit(SUBSTREAM_FLAG_DATA_EP_STARTED, &subs->flags);
235 return err;
236 }
237 }
238
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;
242
Daniel Mack2e4a2632012-08-30 18:52:31 +0200243 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);
248 if (err < 0) {
249 snd_printk(KERN_ERR
250 "%d:%d:%d: cannot set interface (%d)\n",
251 subs->dev->devnum,
252 subs->sync_endpoint->iface,
253 subs->sync_endpoint->alt_idx, err);
254 return -EIO;
255 }
256 }
257
Daniel Mackedcd3632012-04-12 13:51:12 +0200258 snd_printdd(KERN_DEBUG "Starting sync EP @%p\n", ep);
259
260 ep->sync_slave = subs->data_endpoint;
Daniel Mack015618b2012-08-29 13:17:05 +0200261 err = snd_usb_endpoint_start(ep, can_sleep);
Daniel Mackedcd3632012-04-12 13:51:12 +0200262 if (err < 0) {
263 clear_bit(SUBSTREAM_FLAG_SYNC_EP_STARTED, &subs->flags);
264 return err;
265 }
266 }
267
268 return 0;
269}
270
Takashi Iwaia9bb3622012-11-20 18:32:06 +0100271static void stop_endpoints(struct snd_usb_substream *subs, bool wait)
Daniel Mackedcd3632012-04-12 13:51:12 +0200272{
273 if (test_and_clear_bit(SUBSTREAM_FLAG_SYNC_EP_STARTED, &subs->flags))
Takashi Iwaib2eb9502012-11-21 08:30:48 +0100274 snd_usb_endpoint_stop(subs->sync_endpoint);
Daniel Mackedcd3632012-04-12 13:51:12 +0200275
276 if (test_and_clear_bit(SUBSTREAM_FLAG_DATA_EP_STARTED, &subs->flags))
Takashi Iwaib2eb9502012-11-21 08:30:48 +0100277 snd_usb_endpoint_stop(subs->data_endpoint);
278
279 if (wait) {
280 snd_usb_endpoint_sync_pending_stop(subs->sync_endpoint);
281 snd_usb_endpoint_sync_pending_stop(subs->data_endpoint);
282 }
Daniel Mackedcd3632012-04-12 13:51:12 +0200283}
284
Daniel Mackedcd3632012-04-12 13:51:12 +0200285static int deactivate_endpoints(struct snd_usb_substream *subs)
286{
287 int reta, retb;
288
289 reta = snd_usb_endpoint_deactivate(subs->sync_endpoint);
290 retb = snd_usb_endpoint_deactivate(subs->data_endpoint);
291
292 if (reta < 0)
293 return reta;
294
295 if (retb < 0)
296 return retb;
297
298 return 0;
299}
300
Clemens Ladischba7c2be2013-02-03 22:31:20 +0100301static int search_roland_implicit_fb(struct usb_device *dev, int ifnum,
302 unsigned int altsetting,
303 struct usb_host_interface **alts,
304 unsigned int *ep)
305{
306 struct usb_interface *iface;
307 struct usb_interface_descriptor *altsd;
308 struct usb_endpoint_descriptor *epd;
309
310 iface = usb_ifnum_to_if(dev, ifnum);
311 if (!iface || iface->num_altsetting < altsetting + 1)
312 return -ENOENT;
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)
320 return -ENOENT;
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)
325 return -ENOENT;
326 *ep = epd->bEndpointAddress;
327 return 0;
328}
329
Daniel Macke5779992010-03-04 19:46:13 +0100330/*
331 * find a matching format and set up the interface
332 */
333static int set_format(struct snd_usb_substream *subs, struct audioformat *fmt)
334{
335 struct usb_device *dev = subs->dev;
336 struct usb_host_interface *alts;
337 struct usb_interface_descriptor *altsd;
338 struct usb_interface *iface;
339 unsigned int ep, attr;
340 int is_playback = subs->direction == SNDRV_PCM_STREAM_PLAYBACK;
Daniel Mackc75a8a72012-04-12 13:51:14 +0200341 int err, implicit_fb = 0;
Daniel Macke5779992010-03-04 19:46:13 +0100342
343 iface = usb_ifnum_to_if(dev, fmt->iface);
344 if (WARN_ON(!iface))
345 return -EINVAL;
346 alts = &iface->altsetting[fmt->altset_idx];
347 altsd = get_iface_desc(alts);
348 if (WARN_ON(altsd->bAlternateSetting != fmt->altsetting))
349 return -EINVAL;
350
351 if (fmt == subs->cur_audiofmt)
352 return 0;
353
Daniel Mack68e67f42012-07-12 13:08:40 +0200354 /* close the old interface */
355 if (subs->interface >= 0 && subs->interface != fmt->iface) {
356 err = usb_set_interface(subs->dev, subs->interface, 0);
357 if (err < 0) {
358 snd_printk(KERN_ERR "%d:%d:%d: return to setting 0 failed (%d)\n",
359 dev->devnum, fmt->iface, fmt->altsetting, err);
360 return -EIO;
361 }
362 subs->interface = -1;
363 subs->altset_idx = 0;
364 }
365
366 /* set interface */
367 if (subs->interface != fmt->iface ||
368 subs->altset_idx != fmt->altset_idx) {
369 err = usb_set_interface(dev, fmt->iface, fmt->altsetting);
370 if (err < 0) {
371 snd_printk(KERN_ERR "%d:%d:%d: usb_set_interface failed (%d)\n",
372 dev->devnum, fmt->iface, fmt->altsetting, err);
373 return -EIO;
374 }
375 snd_printdd(KERN_INFO "setting usb interface %d:%d\n",
376 fmt->iface, fmt->altsetting);
377 subs->interface = fmt->iface;
378 subs->altset_idx = fmt->altset_idx;
Daniel Mack0959f222013-03-17 20:07:26 +0800379
Daniel Mack21bb5aa2013-04-10 00:56:03 +0800380 snd_usb_set_interface_quirk(dev);
Daniel Mack68e67f42012-07-12 13:08:40 +0200381 }
382
Daniel Mackedcd3632012-04-12 13:51:12 +0200383 subs->data_endpoint = snd_usb_add_endpoint(subs->stream->chip,
384 alts, fmt->endpoint, subs->direction,
385 SND_USB_ENDPOINT_TYPE_DATA);
386 if (!subs->data_endpoint)
387 return -EINVAL;
Daniel Macke5779992010-03-04 19:46:13 +0100388
389 /* we need a sync pipe in async OUT or adaptive IN mode */
390 /* check the number of EP, since some devices have broken
391 * descriptors which fool us. if it has only one EP,
392 * assume it as adaptive-out or sync-in.
393 */
394 attr = fmt->ep_attr & USB_ENDPOINT_SYNCTYPE;
Daniel Mackc75a8a72012-04-12 13:51:14 +0200395
396 switch (subs->stream->chip->usb_id) {
Eldad Zackca10a7e2012-11-28 23:55:41 +0100397 case USB_ID(0x0763, 0x2030): /* M-Audio Fast Track C400 */
Matt Gruskine9a25e02013-02-09 12:56:35 -0500398 case USB_ID(0x0763, 0x2031): /* M-Audio Fast Track C600 */
Eldad Zackca10a7e2012-11-28 23:55:41 +0100399 if (is_playback) {
400 implicit_fb = 1;
401 ep = 0x81;
402 iface = usb_ifnum_to_if(dev, 3);
403
404 if (!iface || iface->num_altsetting == 0)
405 return -EINVAL;
406
407 alts = &iface->altsetting[1];
408 goto add_sync_ep;
409 }
410 break;
Daniel Mackc75a8a72012-04-12 13:51:14 +0200411 case USB_ID(0x0763, 0x2080): /* M-Audio FastTrack Ultra */
412 case USB_ID(0x0763, 0x2081):
413 if (is_playback) {
414 implicit_fb = 1;
Daniel Mackedcd3632012-04-12 13:51:12 +0200415 ep = 0x81;
416 iface = usb_ifnum_to_if(dev, 2);
Daniel Mackc75a8a72012-04-12 13:51:14 +0200417
418 if (!iface || iface->num_altsetting == 0)
419 return -EINVAL;
420
Daniel Mackedcd3632012-04-12 13:51:12 +0200421 alts = &iface->altsetting[1];
422 goto add_sync_ep;
423 }
Daniel Mackc75a8a72012-04-12 13:51:14 +0200424 }
Clemens Ladischba7c2be2013-02-03 22:31:20 +0100425 if (is_playback &&
426 attr == USB_ENDPOINT_SYNC_ASYNC &&
427 altsd->bInterfaceClass == USB_CLASS_VENDOR_SPEC &&
428 altsd->bInterfaceProtocol == 2 &&
429 altsd->bNumEndpoints == 1 &&
430 USB_ID_VENDOR(subs->stream->chip->usb_id) == 0x0582 /* Roland */ &&
431 search_roland_implicit_fb(dev, altsd->bInterfaceNumber + 1,
432 altsd->bAlternateSetting,
433 &alts, &ep) >= 0) {
434 implicit_fb = 1;
435 goto add_sync_ep;
436 }
Daniel Mackedcd3632012-04-12 13:51:12 +0200437
Daniel Mackc75a8a72012-04-12 13:51:14 +0200438 if (((is_playback && attr == USB_ENDPOINT_SYNC_ASYNC) ||
439 (!is_playback && attr == USB_ENDPOINT_SYNC_ADAPTIVE)) &&
440 altsd->bNumEndpoints >= 2) {
Daniel Macke5779992010-03-04 19:46:13 +0100441 /* check sync-pipe endpoint */
442 /* ... and check descriptor size before accessing bSynchAddress
443 because there is a version of the SB Audigy 2 NX firmware lacking
444 the audio fields in the endpoint descriptors */
Eldad Zackfde854b2012-11-28 23:55:32 +0100445 if ((get_endpoint(alts, 1)->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) != USB_ENDPOINT_XFER_ISOC ||
Daniel Macke5779992010-03-04 19:46:13 +0100446 (get_endpoint(alts, 1)->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE &&
Daniel Mackc75a8a72012-04-12 13:51:14 +0200447 get_endpoint(alts, 1)->bSynchAddress != 0 &&
448 !implicit_fb)) {
Daniel Mack7fb75db2012-06-17 13:44:27 +0200449 snd_printk(KERN_ERR "%d:%d:%d : invalid sync pipe. bmAttributes %02x, bLength %d, bSynchAddress %02x\n",
450 dev->devnum, fmt->iface, fmt->altsetting,
451 get_endpoint(alts, 1)->bmAttributes,
452 get_endpoint(alts, 1)->bLength,
453 get_endpoint(alts, 1)->bSynchAddress);
Daniel Macke5779992010-03-04 19:46:13 +0100454 return -EINVAL;
455 }
456 ep = get_endpoint(alts, 1)->bEndpointAddress;
Daniel Mack7fb75db2012-06-17 13:44:27 +0200457 if (!implicit_fb &&
458 get_endpoint(alts, 0)->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE &&
Daniel Macke5779992010-03-04 19:46:13 +0100459 (( is_playback && ep != (unsigned int)(get_endpoint(alts, 0)->bSynchAddress | USB_DIR_IN)) ||
Daniel Mack7fb75db2012-06-17 13:44:27 +0200460 (!is_playback && ep != (unsigned int)(get_endpoint(alts, 0)->bSynchAddress & ~USB_DIR_IN)))) {
461 snd_printk(KERN_ERR "%d:%d:%d : invalid sync pipe. is_playback %d, ep %02x, bSynchAddress %02x\n",
462 dev->devnum, fmt->iface, fmt->altsetting,
463 is_playback, ep, get_endpoint(alts, 0)->bSynchAddress);
Daniel Macke5779992010-03-04 19:46:13 +0100464 return -EINVAL;
465 }
Daniel Mackc75a8a72012-04-12 13:51:14 +0200466
467 implicit_fb = (get_endpoint(alts, 1)->bmAttributes & USB_ENDPOINT_USAGE_MASK)
468 == USB_ENDPOINT_USAGE_IMPLICIT_FB;
469
Daniel Mackedcd3632012-04-12 13:51:12 +0200470add_sync_ep:
471 subs->sync_endpoint = snd_usb_add_endpoint(subs->stream->chip,
472 alts, ep, !subs->direction,
Daniel Mackc75a8a72012-04-12 13:51:14 +0200473 implicit_fb ?
474 SND_USB_ENDPOINT_TYPE_DATA :
475 SND_USB_ENDPOINT_TYPE_SYNC);
Daniel Mackedcd3632012-04-12 13:51:12 +0200476 if (!subs->sync_endpoint)
477 return -EINVAL;
478
479 subs->data_endpoint->sync_master = subs->sync_endpoint;
480 }
Daniel Macke5779992010-03-04 19:46:13 +0100481
Takashi Iwai9e9b5942012-07-06 08:11:43 +0200482 if ((err = snd_usb_init_pitch(subs->stream->chip, fmt->iface, alts, fmt)) < 0)
Daniel Macke5779992010-03-04 19:46:13 +0100483 return err;
484
485 subs->cur_audiofmt = fmt;
486
487 snd_usb_set_format_quirk(subs, fmt);
488
489#if 0
490 printk(KERN_DEBUG
491 "setting done: format = %d, rate = %d..%d, channels = %d\n",
492 fmt->format, fmt->rate_min, fmt->rate_max, fmt->channels);
493 printk(KERN_DEBUG
494 " datapipe = 0x%0x, syncpipe = 0x%0x\n",
495 subs->datapipe, subs->syncpipe);
496#endif
497
498 return 0;
499}
500
501/*
Eldad Zack0d9741c2012-12-03 20:30:09 +0100502 * Return the score of matching two audioformats.
503 * Veto the audioformat if:
504 * - It has no channels for some reason.
505 * - Requested PCM format is not supported.
506 * - Requested sample rate is not supported.
507 */
508static int match_endpoint_audioformats(struct audioformat *fp,
509 struct audioformat *match, int rate,
510 snd_pcm_format_t pcm_format)
511{
512 int i;
513 int score = 0;
514
515 if (fp->channels < 1) {
516 snd_printdd("%s: (fmt @%p) no channels\n", __func__, fp);
517 return 0;
518 }
519
Eldad Zack74c34ca2013-04-23 01:00:41 +0200520 if (!(fp->formats & pcm_format_to_bits(pcm_format))) {
Eldad Zack0d9741c2012-12-03 20:30:09 +0100521 snd_printdd("%s: (fmt @%p) no match for format %d\n", __func__,
522 fp, pcm_format);
523 return 0;
524 }
525
526 for (i = 0; i < fp->nr_rates; i++) {
527 if (fp->rate_table[i] == rate) {
528 score++;
529 break;
530 }
531 }
532 if (!score) {
533 snd_printdd("%s: (fmt @%p) no match for rate %d\n", __func__,
534 fp, rate);
535 return 0;
536 }
537
538 if (fp->channels == match->channels)
539 score++;
540
541 snd_printdd("%s: (fmt @%p) score %d\n", __func__, fp, score);
542
543 return score;
544}
545
546/*
547 * Configure the sync ep using the rate and pcm format of the data ep.
548 */
549static int configure_sync_endpoint(struct snd_usb_substream *subs)
550{
551 int ret;
552 struct audioformat *fp;
553 struct audioformat *sync_fp = NULL;
554 int cur_score = 0;
555 int sync_period_bytes = subs->period_bytes;
556 struct snd_usb_substream *sync_subs =
557 &subs->stream->substream[subs->direction ^ 1];
558
Takashi Iwai31be5422013-01-10 14:06:38 +0100559 if (subs->sync_endpoint->type != SND_USB_ENDPOINT_TYPE_DATA ||
560 !subs->stream)
561 return snd_usb_endpoint_set_params(subs->sync_endpoint,
562 subs->pcm_format,
563 subs->channels,
564 subs->period_bytes,
565 subs->cur_rate,
566 subs->cur_audiofmt,
567 NULL);
568
Eldad Zack0d9741c2012-12-03 20:30:09 +0100569 /* Try to find the best matching audioformat. */
570 list_for_each_entry(fp, &sync_subs->fmt_list, list) {
571 int score = match_endpoint_audioformats(fp, subs->cur_audiofmt,
572 subs->cur_rate, subs->pcm_format);
573
574 if (score > cur_score) {
575 sync_fp = fp;
576 cur_score = score;
577 }
578 }
579
580 if (unlikely(sync_fp == NULL)) {
581 snd_printk(KERN_ERR "%s: no valid audioformat for sync ep %x found\n",
582 __func__, sync_subs->ep_num);
583 return -EINVAL;
584 }
585
586 /*
587 * Recalculate the period bytes if channel number differ between
588 * data and sync ep audioformat.
589 */
590 if (sync_fp->channels != subs->channels) {
591 sync_period_bytes = (subs->period_bytes / subs->channels) *
592 sync_fp->channels;
593 snd_printdd("%s: adjusted sync ep period bytes (%d -> %d)\n",
594 __func__, subs->period_bytes, sync_period_bytes);
595 }
596
597 ret = snd_usb_endpoint_set_params(subs->sync_endpoint,
598 subs->pcm_format,
599 sync_fp->channels,
600 sync_period_bytes,
601 subs->cur_rate,
602 sync_fp,
603 NULL);
604
605 return ret;
606}
607
608/*
Dylan Reid61a70952012-09-18 09:49:48 -0700609 * configure endpoint params
610 *
611 * called during initial setup and upon resume
612 */
613static int configure_endpoint(struct snd_usb_substream *subs)
614{
615 int ret;
616
Dylan Reid61a70952012-09-18 09:49:48 -0700617 /* format changed */
Takashi Iwaib0db6062012-11-21 08:35:42 +0100618 stop_endpoints(subs, true);
Dylan Reid61a70952012-09-18 09:49:48 -0700619 ret = snd_usb_endpoint_set_params(subs->data_endpoint,
620 subs->pcm_format,
621 subs->channels,
622 subs->period_bytes,
623 subs->cur_rate,
624 subs->cur_audiofmt,
625 subs->sync_endpoint);
626 if (ret < 0)
Takashi Iwai978520b2012-10-12 15:12:55 +0200627 return ret;
Dylan Reid61a70952012-09-18 09:49:48 -0700628
629 if (subs->sync_endpoint)
Eldad Zack0d9741c2012-12-03 20:30:09 +0100630 ret = configure_sync_endpoint(subs);
631
Dylan Reid61a70952012-09-18 09:49:48 -0700632 return ret;
633}
634
635/*
Daniel Macke5779992010-03-04 19:46:13 +0100636 * hw_params callback
637 *
638 * allocate a buffer and set the given audio format.
639 *
640 * so far we use a physically linear buffer although packetize transfer
641 * doesn't need a continuous area.
642 * if sg buffer is supported on the later version of alsa, we'll follow
643 * that.
644 */
645static int snd_usb_hw_params(struct snd_pcm_substream *substream,
646 struct snd_pcm_hw_params *hw_params)
647{
648 struct snd_usb_substream *subs = substream->runtime->private_data;
649 struct audioformat *fmt;
Dylan Reid61a70952012-09-18 09:49:48 -0700650 int ret;
Daniel Macke5779992010-03-04 19:46:13 +0100651
652 ret = snd_pcm_lib_alloc_vmalloc_buffer(substream,
653 params_buffer_bytes(hw_params));
654 if (ret < 0)
655 return ret;
656
Dylan Reid61a70952012-09-18 09:49:48 -0700657 subs->pcm_format = params_format(hw_params);
658 subs->period_bytes = params_period_bytes(hw_params);
659 subs->channels = params_channels(hw_params);
660 subs->cur_rate = params_rate(hw_params);
661
662 fmt = find_format(subs);
Daniel Macke5779992010-03-04 19:46:13 +0100663 if (!fmt) {
664 snd_printd(KERN_DEBUG "cannot set format: format = %#x, rate = %d, channels = %d\n",
Dylan Reid61a70952012-09-18 09:49:48 -0700665 subs->pcm_format, subs->cur_rate, subs->channels);
Daniel Macke5779992010-03-04 19:46:13 +0100666 return -EINVAL;
667 }
668
Takashi Iwai34f3c892012-10-15 12:16:02 +0200669 down_read(&subs->stream->chip->shutdown_rwsem);
Takashi Iwai978520b2012-10-12 15:12:55 +0200670 if (subs->stream->chip->shutdown)
671 ret = -ENODEV;
672 else
673 ret = set_format(subs, fmt);
Takashi Iwai34f3c892012-10-15 12:16:02 +0200674 up_read(&subs->stream->chip->shutdown_rwsem);
Takashi Iwai978520b2012-10-12 15:12:55 +0200675 if (ret < 0)
Daniel Macke5779992010-03-04 19:46:13 +0100676 return ret;
677
Dylan Reid61a70952012-09-18 09:49:48 -0700678 subs->interface = fmt->iface;
679 subs->altset_idx = fmt->altset_idx;
Takashi Iwai384dc0852012-09-18 14:49:31 +0200680 subs->need_setup_ep = true;
Daniel Macke5779992010-03-04 19:46:13 +0100681
Dylan Reid61a70952012-09-18 09:49:48 -0700682 return 0;
Daniel Macke5779992010-03-04 19:46:13 +0100683}
684
685/*
686 * hw_free callback
687 *
688 * reset the audio format and release the buffer
689 */
690static int snd_usb_hw_free(struct snd_pcm_substream *substream)
691{
692 struct snd_usb_substream *subs = substream->runtime->private_data;
693
694 subs->cur_audiofmt = NULL;
695 subs->cur_rate = 0;
696 subs->period_bytes = 0;
Takashi Iwai34f3c892012-10-15 12:16:02 +0200697 down_read(&subs->stream->chip->shutdown_rwsem);
Takashi Iwai978520b2012-10-12 15:12:55 +0200698 if (!subs->stream->chip->shutdown) {
Takashi Iwaia9bb3622012-11-20 18:32:06 +0100699 stop_endpoints(subs, true);
Takashi Iwai978520b2012-10-12 15:12:55 +0200700 deactivate_endpoints(subs);
701 }
Takashi Iwai34f3c892012-10-15 12:16:02 +0200702 up_read(&subs->stream->chip->shutdown_rwsem);
Daniel Macke5779992010-03-04 19:46:13 +0100703 return snd_pcm_lib_free_vmalloc_buffer(substream);
704}
705
706/*
707 * prepare callback
708 *
709 * only a few subtle things...
710 */
711static int snd_usb_pcm_prepare(struct snd_pcm_substream *substream)
712{
713 struct snd_pcm_runtime *runtime = substream->runtime;
714 struct snd_usb_substream *subs = runtime->private_data;
Dylan Reid61a70952012-09-18 09:49:48 -0700715 struct usb_host_interface *alts;
716 struct usb_interface *iface;
717 int ret;
Daniel Macke5779992010-03-04 19:46:13 +0100718
719 if (! subs->cur_audiofmt) {
720 snd_printk(KERN_ERR "usbaudio: no format is specified!\n");
721 return -ENXIO;
722 }
723
Takashi Iwai34f3c892012-10-15 12:16:02 +0200724 down_read(&subs->stream->chip->shutdown_rwsem);
Takashi Iwai978520b2012-10-12 15:12:55 +0200725 if (subs->stream->chip->shutdown) {
726 ret = -ENODEV;
727 goto unlock;
728 }
729 if (snd_BUG_ON(!subs->data_endpoint)) {
730 ret = -EIO;
731 goto unlock;
732 }
Daniel Mackedcd3632012-04-12 13:51:12 +0200733
Takashi Iwaif58161b2012-11-08 08:52:45 +0100734 snd_usb_endpoint_sync_pending_stop(subs->sync_endpoint);
735 snd_usb_endpoint_sync_pending_stop(subs->data_endpoint);
736
Dylan Reid61a70952012-09-18 09:49:48 -0700737 ret = set_format(subs, subs->cur_audiofmt);
738 if (ret < 0)
Takashi Iwai978520b2012-10-12 15:12:55 +0200739 goto unlock;
Dylan Reid61a70952012-09-18 09:49:48 -0700740
741 iface = usb_ifnum_to_if(subs->dev, subs->cur_audiofmt->iface);
742 alts = &iface->altsetting[subs->cur_audiofmt->altset_idx];
743 ret = snd_usb_init_sample_rate(subs->stream->chip,
744 subs->cur_audiofmt->iface,
745 alts,
746 subs->cur_audiofmt,
747 subs->cur_rate);
748 if (ret < 0)
Takashi Iwai978520b2012-10-12 15:12:55 +0200749 goto unlock;
Dylan Reid61a70952012-09-18 09:49:48 -0700750
Takashi Iwai384dc0852012-09-18 14:49:31 +0200751 if (subs->need_setup_ep) {
752 ret = configure_endpoint(subs);
753 if (ret < 0)
Takashi Iwai978520b2012-10-12 15:12:55 +0200754 goto unlock;
Takashi Iwai384dc0852012-09-18 14:49:31 +0200755 subs->need_setup_ep = false;
756 }
Dylan Reid61a70952012-09-18 09:49:48 -0700757
Daniel Macke5779992010-03-04 19:46:13 +0100758 /* some unit conversions in runtime */
Daniel Mackedcd3632012-04-12 13:51:12 +0200759 subs->data_endpoint->maxframesize =
760 bytes_to_frames(runtime, subs->data_endpoint->maxpacksize);
761 subs->data_endpoint->curframesize =
762 bytes_to_frames(runtime, subs->data_endpoint->curpacksize);
Daniel Macke5779992010-03-04 19:46:13 +0100763
764 /* reset the pointer */
765 subs->hwptr_done = 0;
766 subs->transfer_done = 0;
Pierre-Louis Bossart294c4fb2011-09-06 19:15:34 -0500767 subs->last_delay = 0;
768 subs->last_frame_number = 0;
Daniel Macke5779992010-03-04 19:46:13 +0100769 runtime->delay = 0;
770
Daniel Mackedcd3632012-04-12 13:51:12 +0200771 /* for playback, submit the URBs now; otherwise, the first hwptr_done
772 * updates for all URBs would happen at the same time when starting */
773 if (subs->direction == SNDRV_PCM_STREAM_PLAYBACK)
Takashi Iwaia9bb3622012-11-20 18:32:06 +0100774 ret = start_endpoints(subs, true);
Daniel Mackedcd3632012-04-12 13:51:12 +0200775
Takashi Iwai978520b2012-10-12 15:12:55 +0200776 unlock:
Takashi Iwai34f3c892012-10-15 12:16:02 +0200777 up_read(&subs->stream->chip->shutdown_rwsem);
Takashi Iwai978520b2012-10-12 15:12:55 +0200778 return ret;
Daniel Macke5779992010-03-04 19:46:13 +0100779}
780
781static struct snd_pcm_hardware snd_usb_hardware =
782{
783 .info = SNDRV_PCM_INFO_MMAP |
784 SNDRV_PCM_INFO_MMAP_VALID |
785 SNDRV_PCM_INFO_BATCH |
786 SNDRV_PCM_INFO_INTERLEAVED |
787 SNDRV_PCM_INFO_BLOCK_TRANSFER |
788 SNDRV_PCM_INFO_PAUSE,
789 .buffer_bytes_max = 1024 * 1024,
790 .period_bytes_min = 64,
791 .period_bytes_max = 512 * 1024,
792 .periods_min = 2,
793 .periods_max = 1024,
794};
795
796static int hw_check_valid_format(struct snd_usb_substream *subs,
797 struct snd_pcm_hw_params *params,
798 struct audioformat *fp)
799{
800 struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
801 struct snd_interval *ct = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
802 struct snd_mask *fmts = hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT);
803 struct snd_interval *pt = hw_param_interval(params, SNDRV_PCM_HW_PARAM_PERIOD_TIME);
Clemens Ladisch015eb0b2010-03-04 19:46:15 +0100804 struct snd_mask check_fmts;
Daniel Macke5779992010-03-04 19:46:13 +0100805 unsigned int ptime;
806
807 /* check the format */
Clemens Ladisch015eb0b2010-03-04 19:46:15 +0100808 snd_mask_none(&check_fmts);
809 check_fmts.bits[0] = (u32)fp->formats;
810 check_fmts.bits[1] = (u32)(fp->formats >> 32);
811 snd_mask_intersect(&check_fmts, fmts);
812 if (snd_mask_empty(&check_fmts)) {
Daniel Macke5779992010-03-04 19:46:13 +0100813 hwc_debug(" > check: no supported format %d\n", fp->format);
814 return 0;
815 }
816 /* check the channels */
817 if (fp->channels < ct->min || fp->channels > ct->max) {
818 hwc_debug(" > check: no valid channels %d (%d/%d)\n", fp->channels, ct->min, ct->max);
819 return 0;
820 }
821 /* check the rate is within the range */
822 if (fp->rate_min > it->max || (fp->rate_min == it->max && it->openmax)) {
823 hwc_debug(" > check: rate_min %d > max %d\n", fp->rate_min, it->max);
824 return 0;
825 }
826 if (fp->rate_max < it->min || (fp->rate_max == it->min && it->openmin)) {
827 hwc_debug(" > check: rate_max %d < min %d\n", fp->rate_max, it->min);
828 return 0;
829 }
830 /* check whether the period time is >= the data packet interval */
Takashi Iwai978520b2012-10-12 15:12:55 +0200831 if (subs->speed != USB_SPEED_FULL) {
Daniel Macke5779992010-03-04 19:46:13 +0100832 ptime = 125 * (1 << fp->datainterval);
833 if (ptime > pt->max || (ptime == pt->max && pt->openmax)) {
834 hwc_debug(" > check: ptime %u > max %u\n", ptime, pt->max);
835 return 0;
836 }
837 }
838 return 1;
839}
840
841static int hw_rule_rate(struct snd_pcm_hw_params *params,
842 struct snd_pcm_hw_rule *rule)
843{
844 struct snd_usb_substream *subs = rule->private;
Eldad Zack88766f02013-04-03 23:18:49 +0200845 struct audioformat *fp;
Daniel Macke5779992010-03-04 19:46:13 +0100846 struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
847 unsigned int rmin, rmax;
848 int changed;
849
850 hwc_debug("hw_rule_rate: (%d,%d)\n", it->min, it->max);
851 changed = 0;
852 rmin = rmax = 0;
Eldad Zack88766f02013-04-03 23:18:49 +0200853 list_for_each_entry(fp, &subs->fmt_list, list) {
Daniel Macke5779992010-03-04 19:46:13 +0100854 if (!hw_check_valid_format(subs, params, fp))
855 continue;
856 if (changed++) {
857 if (rmin > fp->rate_min)
858 rmin = fp->rate_min;
859 if (rmax < fp->rate_max)
860 rmax = fp->rate_max;
861 } else {
862 rmin = fp->rate_min;
863 rmax = fp->rate_max;
864 }
865 }
866
867 if (!changed) {
868 hwc_debug(" --> get empty\n");
869 it->empty = 1;
870 return -EINVAL;
871 }
872
873 changed = 0;
874 if (it->min < rmin) {
875 it->min = rmin;
876 it->openmin = 0;
877 changed = 1;
878 }
879 if (it->max > rmax) {
880 it->max = rmax;
881 it->openmax = 0;
882 changed = 1;
883 }
884 if (snd_interval_checkempty(it)) {
885 it->empty = 1;
886 return -EINVAL;
887 }
888 hwc_debug(" --> (%d, %d) (changed = %d)\n", it->min, it->max, changed);
889 return changed;
890}
891
892
893static int hw_rule_channels(struct snd_pcm_hw_params *params,
894 struct snd_pcm_hw_rule *rule)
895{
896 struct snd_usb_substream *subs = rule->private;
Eldad Zack88766f02013-04-03 23:18:49 +0200897 struct audioformat *fp;
Daniel Macke5779992010-03-04 19:46:13 +0100898 struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
899 unsigned int rmin, rmax;
900 int changed;
901
902 hwc_debug("hw_rule_channels: (%d,%d)\n", it->min, it->max);
903 changed = 0;
904 rmin = rmax = 0;
Eldad Zack88766f02013-04-03 23:18:49 +0200905 list_for_each_entry(fp, &subs->fmt_list, list) {
Daniel Macke5779992010-03-04 19:46:13 +0100906 if (!hw_check_valid_format(subs, params, fp))
907 continue;
908 if (changed++) {
909 if (rmin > fp->channels)
910 rmin = fp->channels;
911 if (rmax < fp->channels)
912 rmax = fp->channels;
913 } else {
914 rmin = fp->channels;
915 rmax = fp->channels;
916 }
917 }
918
919 if (!changed) {
920 hwc_debug(" --> get empty\n");
921 it->empty = 1;
922 return -EINVAL;
923 }
924
925 changed = 0;
926 if (it->min < rmin) {
927 it->min = rmin;
928 it->openmin = 0;
929 changed = 1;
930 }
931 if (it->max > rmax) {
932 it->max = rmax;
933 it->openmax = 0;
934 changed = 1;
935 }
936 if (snd_interval_checkempty(it)) {
937 it->empty = 1;
938 return -EINVAL;
939 }
940 hwc_debug(" --> (%d, %d) (changed = %d)\n", it->min, it->max, changed);
941 return changed;
942}
943
944static int hw_rule_format(struct snd_pcm_hw_params *params,
945 struct snd_pcm_hw_rule *rule)
946{
947 struct snd_usb_substream *subs = rule->private;
Eldad Zack88766f02013-04-03 23:18:49 +0200948 struct audioformat *fp;
Daniel Macke5779992010-03-04 19:46:13 +0100949 struct snd_mask *fmt = hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT);
950 u64 fbits;
951 u32 oldbits[2];
952 int changed;
953
954 hwc_debug("hw_rule_format: %x:%x\n", fmt->bits[0], fmt->bits[1]);
955 fbits = 0;
Eldad Zack88766f02013-04-03 23:18:49 +0200956 list_for_each_entry(fp, &subs->fmt_list, list) {
Daniel Macke5779992010-03-04 19:46:13 +0100957 if (!hw_check_valid_format(subs, params, fp))
958 continue;
Clemens Ladisch015eb0b2010-03-04 19:46:15 +0100959 fbits |= fp->formats;
Daniel Macke5779992010-03-04 19:46:13 +0100960 }
961
962 oldbits[0] = fmt->bits[0];
963 oldbits[1] = fmt->bits[1];
964 fmt->bits[0] &= (u32)fbits;
965 fmt->bits[1] &= (u32)(fbits >> 32);
966 if (!fmt->bits[0] && !fmt->bits[1]) {
967 hwc_debug(" --> get empty\n");
968 return -EINVAL;
969 }
970 changed = (oldbits[0] != fmt->bits[0] || oldbits[1] != fmt->bits[1]);
971 hwc_debug(" --> %x:%x (changed = %d)\n", fmt->bits[0], fmt->bits[1], changed);
972 return changed;
973}
974
975static int hw_rule_period_time(struct snd_pcm_hw_params *params,
976 struct snd_pcm_hw_rule *rule)
977{
978 struct snd_usb_substream *subs = rule->private;
979 struct audioformat *fp;
980 struct snd_interval *it;
981 unsigned char min_datainterval;
982 unsigned int pmin;
983 int changed;
984
985 it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_PERIOD_TIME);
986 hwc_debug("hw_rule_period_time: (%u,%u)\n", it->min, it->max);
987 min_datainterval = 0xff;
988 list_for_each_entry(fp, &subs->fmt_list, list) {
989 if (!hw_check_valid_format(subs, params, fp))
990 continue;
991 min_datainterval = min(min_datainterval, fp->datainterval);
992 }
993 if (min_datainterval == 0xff) {
Uwe Kleine-Königa7ce2e02010-07-12 17:15:44 +0200994 hwc_debug(" --> get empty\n");
Daniel Macke5779992010-03-04 19:46:13 +0100995 it->empty = 1;
996 return -EINVAL;
997 }
998 pmin = 125 * (1 << min_datainterval);
999 changed = 0;
1000 if (it->min < pmin) {
1001 it->min = pmin;
1002 it->openmin = 0;
1003 changed = 1;
1004 }
1005 if (snd_interval_checkempty(it)) {
1006 it->empty = 1;
1007 return -EINVAL;
1008 }
1009 hwc_debug(" --> (%u,%u) (changed = %d)\n", it->min, it->max, changed);
1010 return changed;
1011}
1012
1013/*
1014 * If the device supports unusual bit rates, does the request meet these?
1015 */
1016static int snd_usb_pcm_check_knot(struct snd_pcm_runtime *runtime,
1017 struct snd_usb_substream *subs)
1018{
1019 struct audioformat *fp;
Takashi Iwai0717d0f2012-03-15 16:14:38 +01001020 int *rate_list;
Daniel Macke5779992010-03-04 19:46:13 +01001021 int count = 0, needs_knot = 0;
1022 int err;
1023
Clemens Ladisch5cd5d7c2012-05-18 18:00:43 +02001024 kfree(subs->rate_list.list);
1025 subs->rate_list.list = NULL;
1026
Daniel Macke5779992010-03-04 19:46:13 +01001027 list_for_each_entry(fp, &subs->fmt_list, list) {
1028 if (fp->rates & SNDRV_PCM_RATE_CONTINUOUS)
1029 return 0;
1030 count += fp->nr_rates;
1031 if (fp->rates & SNDRV_PCM_RATE_KNOT)
1032 needs_knot = 1;
1033 }
1034 if (!needs_knot)
1035 return 0;
1036
Takashi Iwai0717d0f2012-03-15 16:14:38 +01001037 subs->rate_list.list = rate_list =
1038 kmalloc(sizeof(int) * count, GFP_KERNEL);
Jesper Juhl8a8d56b2010-10-29 20:40:23 +02001039 if (!subs->rate_list.list)
1040 return -ENOMEM;
1041 subs->rate_list.count = count;
Daniel Macke5779992010-03-04 19:46:13 +01001042 subs->rate_list.mask = 0;
1043 count = 0;
1044 list_for_each_entry(fp, &subs->fmt_list, list) {
1045 int i;
1046 for (i = 0; i < fp->nr_rates; i++)
Takashi Iwai0717d0f2012-03-15 16:14:38 +01001047 rate_list[count++] = fp->rate_table[i];
Daniel Macke5779992010-03-04 19:46:13 +01001048 }
1049 err = snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
1050 &subs->rate_list);
1051 if (err < 0)
1052 return err;
1053
1054 return 0;
1055}
1056
1057
1058/*
1059 * set up the runtime hardware information.
1060 */
1061
1062static int setup_hw_info(struct snd_pcm_runtime *runtime, struct snd_usb_substream *subs)
1063{
Eldad Zack88766f02013-04-03 23:18:49 +02001064 struct audioformat *fp;
Daniel Macke5779992010-03-04 19:46:13 +01001065 unsigned int pt, ptmin;
1066 int param_period_time_if_needed;
1067 int err;
1068
1069 runtime->hw.formats = subs->formats;
1070
1071 runtime->hw.rate_min = 0x7fffffff;
1072 runtime->hw.rate_max = 0;
1073 runtime->hw.channels_min = 256;
1074 runtime->hw.channels_max = 0;
1075 runtime->hw.rates = 0;
1076 ptmin = UINT_MAX;
1077 /* check min/max rates and channels */
Eldad Zack88766f02013-04-03 23:18:49 +02001078 list_for_each_entry(fp, &subs->fmt_list, list) {
Daniel Macke5779992010-03-04 19:46:13 +01001079 runtime->hw.rates |= fp->rates;
1080 if (runtime->hw.rate_min > fp->rate_min)
1081 runtime->hw.rate_min = fp->rate_min;
1082 if (runtime->hw.rate_max < fp->rate_max)
1083 runtime->hw.rate_max = fp->rate_max;
1084 if (runtime->hw.channels_min > fp->channels)
1085 runtime->hw.channels_min = fp->channels;
1086 if (runtime->hw.channels_max < fp->channels)
1087 runtime->hw.channels_max = fp->channels;
1088 if (fp->fmt_type == UAC_FORMAT_TYPE_II && fp->frame_size > 0) {
1089 /* FIXME: there might be more than one audio formats... */
1090 runtime->hw.period_bytes_min = runtime->hw.period_bytes_max =
1091 fp->frame_size;
1092 }
1093 pt = 125 * (1 << fp->datainterval);
1094 ptmin = min(ptmin, pt);
1095 }
Oliver Neukum88a85162011-03-11 14:51:12 +01001096 err = snd_usb_autoresume(subs->stream->chip);
1097 if (err < 0)
1098 return err;
Daniel Macke5779992010-03-04 19:46:13 +01001099
1100 param_period_time_if_needed = SNDRV_PCM_HW_PARAM_PERIOD_TIME;
Takashi Iwai978520b2012-10-12 15:12:55 +02001101 if (subs->speed == USB_SPEED_FULL)
Daniel Macke5779992010-03-04 19:46:13 +01001102 /* full speed devices have fixed data packet interval */
1103 ptmin = 1000;
1104 if (ptmin == 1000)
1105 /* if period time doesn't go below 1 ms, no rules needed */
1106 param_period_time_if_needed = -1;
1107 snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_PERIOD_TIME,
1108 ptmin, UINT_MAX);
1109
1110 if ((err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
1111 hw_rule_rate, subs,
1112 SNDRV_PCM_HW_PARAM_FORMAT,
1113 SNDRV_PCM_HW_PARAM_CHANNELS,
1114 param_period_time_if_needed,
1115 -1)) < 0)
Oliver Neukum88a85162011-03-11 14:51:12 +01001116 goto rep_err;
Daniel Macke5779992010-03-04 19:46:13 +01001117 if ((err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS,
1118 hw_rule_channels, subs,
1119 SNDRV_PCM_HW_PARAM_FORMAT,
1120 SNDRV_PCM_HW_PARAM_RATE,
1121 param_period_time_if_needed,
1122 -1)) < 0)
Oliver Neukum88a85162011-03-11 14:51:12 +01001123 goto rep_err;
Daniel Macke5779992010-03-04 19:46:13 +01001124 if ((err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_FORMAT,
1125 hw_rule_format, subs,
1126 SNDRV_PCM_HW_PARAM_RATE,
1127 SNDRV_PCM_HW_PARAM_CHANNELS,
1128 param_period_time_if_needed,
1129 -1)) < 0)
Oliver Neukum88a85162011-03-11 14:51:12 +01001130 goto rep_err;
Daniel Macke5779992010-03-04 19:46:13 +01001131 if (param_period_time_if_needed >= 0) {
1132 err = snd_pcm_hw_rule_add(runtime, 0,
1133 SNDRV_PCM_HW_PARAM_PERIOD_TIME,
1134 hw_rule_period_time, subs,
1135 SNDRV_PCM_HW_PARAM_FORMAT,
1136 SNDRV_PCM_HW_PARAM_CHANNELS,
1137 SNDRV_PCM_HW_PARAM_RATE,
1138 -1);
1139 if (err < 0)
Oliver Neukum88a85162011-03-11 14:51:12 +01001140 goto rep_err;
Daniel Macke5779992010-03-04 19:46:13 +01001141 }
1142 if ((err = snd_usb_pcm_check_knot(runtime, subs)) < 0)
Oliver Neukum88a85162011-03-11 14:51:12 +01001143 goto rep_err;
Daniel Macke5779992010-03-04 19:46:13 +01001144 return 0;
Oliver Neukum88a85162011-03-11 14:51:12 +01001145
1146rep_err:
1147 snd_usb_autosuspend(subs->stream->chip);
1148 return err;
Daniel Macke5779992010-03-04 19:46:13 +01001149}
1150
1151static int snd_usb_pcm_open(struct snd_pcm_substream *substream, int direction)
1152{
1153 struct snd_usb_stream *as = snd_pcm_substream_chip(substream);
1154 struct snd_pcm_runtime *runtime = substream->runtime;
1155 struct snd_usb_substream *subs = &as->substream[direction];
1156
1157 subs->interface = -1;
Clemens Ladische11b4e02010-03-04 19:46:14 +01001158 subs->altset_idx = 0;
Daniel Macke5779992010-03-04 19:46:13 +01001159 runtime->hw = snd_usb_hardware;
1160 runtime->private_data = subs;
1161 subs->pcm_substream = substream;
Oliver Neukum88a85162011-03-11 14:51:12 +01001162 /* runtime PM is also done there */
Daniel Mackd24f5062013-04-17 00:01:38 +08001163
1164 /* initialize DSD/DOP context */
1165 subs->dsd_dop.byte_idx = 0;
1166 subs->dsd_dop.channel = 0;
1167 subs->dsd_dop.marker = 1;
1168
Daniel Macke5779992010-03-04 19:46:13 +01001169 return setup_hw_info(runtime, subs);
1170}
1171
1172static int snd_usb_pcm_close(struct snd_pcm_substream *substream, int direction)
1173{
1174 struct snd_usb_stream *as = snd_pcm_substream_chip(substream);
1175 struct snd_usb_substream *subs = &as->substream[direction];
1176
Takashi Iwaib0db6062012-11-21 08:35:42 +01001177 stop_endpoints(subs, true);
Daniel Mack68e67f42012-07-12 13:08:40 +02001178
1179 if (!as->chip->shutdown && subs->interface >= 0) {
1180 usb_set_interface(subs->dev, subs->interface, 0);
1181 subs->interface = -1;
1182 }
1183
Daniel Macke5779992010-03-04 19:46:13 +01001184 subs->pcm_substream = NULL;
Oliver Neukum88a85162011-03-11 14:51:12 +01001185 snd_usb_autosuspend(subs->stream->chip);
Daniel Mackedcd3632012-04-12 13:51:12 +02001186
Daniel Mack68e67f42012-07-12 13:08:40 +02001187 return 0;
Daniel Mackedcd3632012-04-12 13:51:12 +02001188}
1189
1190/* Since a URB can handle only a single linear buffer, we must use double
1191 * buffering when the data to be transferred overflows the buffer boundary.
1192 * To avoid inconsistencies when updating hwptr_done, we use double buffering
1193 * for all URBs.
1194 */
1195static void retire_capture_urb(struct snd_usb_substream *subs,
1196 struct urb *urb)
1197{
1198 struct snd_pcm_runtime *runtime = subs->pcm_substream->runtime;
1199 unsigned int stride, frames, bytes, oldptr;
1200 int i, period_elapsed = 0;
1201 unsigned long flags;
1202 unsigned char *cp;
Pierre-Louis Bossarte4cc6152012-12-19 11:39:05 -06001203 int current_frame_number;
1204
1205 /* read frame number here, update pointer in critical section */
1206 current_frame_number = usb_get_current_frame_number(subs->dev);
Daniel Mackedcd3632012-04-12 13:51:12 +02001207
1208 stride = runtime->frame_bits >> 3;
1209
1210 for (i = 0; i < urb->number_of_packets; i++) {
Calvin Owens1539d4f2013-04-12 22:33:59 -05001211 cp = (unsigned char *)urb->transfer_buffer + urb->iso_frame_desc[i].offset + subs->pkt_offset_adj;
Daniel Mackedcd3632012-04-12 13:51:12 +02001212 if (urb->iso_frame_desc[i].status && printk_ratelimit()) {
1213 snd_printdd(KERN_ERR "frame %d active: %d\n", i, urb->iso_frame_desc[i].status);
1214 // continue;
1215 }
1216 bytes = urb->iso_frame_desc[i].actual_length;
1217 frames = bytes / stride;
1218 if (!subs->txfr_quirk)
1219 bytes = frames * stride;
1220 if (bytes % (runtime->sample_bits >> 3) != 0) {
Daniel Mackedcd3632012-04-12 13:51:12 +02001221 int oldbytes = bytes;
Daniel Mackedcd3632012-04-12 13:51:12 +02001222 bytes = frames * stride;
1223 snd_printdd(KERN_ERR "Corrected urb data len. %d->%d\n",
1224 oldbytes, bytes);
1225 }
1226 /* update the current pointer */
1227 spin_lock_irqsave(&subs->lock, flags);
1228 oldptr = subs->hwptr_done;
1229 subs->hwptr_done += bytes;
1230 if (subs->hwptr_done >= runtime->buffer_size * stride)
1231 subs->hwptr_done -= runtime->buffer_size * stride;
1232 frames = (bytes + (oldptr % stride)) / stride;
1233 subs->transfer_done += frames;
1234 if (subs->transfer_done >= runtime->period_size) {
1235 subs->transfer_done -= runtime->period_size;
1236 period_elapsed = 1;
1237 }
Pierre-Louis Bossarte4cc6152012-12-19 11:39:05 -06001238 /* capture delay is by construction limited to one URB,
1239 * reset delays here
1240 */
1241 runtime->delay = subs->last_delay = 0;
1242
1243 /* realign last_frame_number */
1244 subs->last_frame_number = current_frame_number;
1245 subs->last_frame_number &= 0xFF; /* keep 8 LSBs */
1246
Daniel Mackedcd3632012-04-12 13:51:12 +02001247 spin_unlock_irqrestore(&subs->lock, flags);
1248 /* copy a data chunk */
1249 if (oldptr + bytes > runtime->buffer_size * stride) {
1250 unsigned int bytes1 =
1251 runtime->buffer_size * stride - oldptr;
1252 memcpy(runtime->dma_area + oldptr, cp, bytes1);
1253 memcpy(runtime->dma_area, cp + bytes1, bytes - bytes1);
1254 } else {
1255 memcpy(runtime->dma_area + oldptr, cp, bytes);
1256 }
1257 }
1258
1259 if (period_elapsed)
1260 snd_pcm_period_elapsed(subs->pcm_substream);
1261}
1262
Daniel Mackd24f5062013-04-17 00:01:38 +08001263static inline void fill_playback_urb_dsd_dop(struct snd_usb_substream *subs,
1264 struct urb *urb, unsigned int bytes)
1265{
1266 struct snd_pcm_runtime *runtime = subs->pcm_substream->runtime;
1267 unsigned int stride = runtime->frame_bits >> 3;
1268 unsigned int dst_idx = 0;
1269 unsigned int src_idx = subs->hwptr_done;
1270 unsigned int wrap = runtime->buffer_size * stride;
1271 u8 *dst = urb->transfer_buffer;
1272 u8 *src = runtime->dma_area;
1273 u8 marker[] = { 0x05, 0xfa };
1274
1275 /*
1276 * The DSP DOP format defines a way to transport DSD samples over
1277 * normal PCM data endpoints. It requires stuffing of marker bytes
1278 * (0x05 and 0xfa, alternating per sample frame), and then expects
1279 * 2 additional bytes of actual payload. The whole frame is stored
1280 * LSB.
1281 *
1282 * Hence, for a stereo transport, the buffer layout looks like this,
1283 * where L refers to left channel samples and R to right.
1284 *
1285 * L1 L2 0x05 R1 R2 0x05 L3 L4 0xfa R3 R4 0xfa
1286 * L5 L6 0x05 R5 R6 0x05 L7 L8 0xfa R7 R8 0xfa
1287 * .....
1288 *
1289 */
1290
1291 while (bytes--) {
1292 if (++subs->dsd_dop.byte_idx == 3) {
1293 /* frame boundary? */
1294 dst[dst_idx++] = marker[subs->dsd_dop.marker];
1295 src_idx += 2;
1296 subs->dsd_dop.byte_idx = 0;
1297
1298 if (++subs->dsd_dop.channel % runtime->channels == 0) {
1299 /* alternate the marker */
1300 subs->dsd_dop.marker++;
1301 subs->dsd_dop.marker %= ARRAY_SIZE(marker);
1302 subs->dsd_dop.channel = 0;
1303 }
1304 } else {
1305 /* stuff the DSD payload */
1306 int idx = (src_idx + subs->dsd_dop.byte_idx - 1) % wrap;
Daniel Mack44dcbbb2013-04-17 00:01:39 +08001307
1308 if (subs->cur_audiofmt->dsd_bitrev)
1309 dst[dst_idx++] = bitrev8(src[idx]);
1310 else
1311 dst[dst_idx++] = src[idx];
1312
Daniel Mackd24f5062013-04-17 00:01:38 +08001313 subs->hwptr_done++;
1314 }
1315 }
1316}
1317
Daniel Mackedcd3632012-04-12 13:51:12 +02001318static void prepare_playback_urb(struct snd_usb_substream *subs,
1319 struct urb *urb)
1320{
1321 struct snd_pcm_runtime *runtime = subs->pcm_substream->runtime;
Daniel Mack245baf92012-08-30 18:52:30 +02001322 struct snd_usb_endpoint *ep = subs->data_endpoint;
Daniel Mackedcd3632012-04-12 13:51:12 +02001323 struct snd_urb_ctx *ctx = urb->context;
1324 unsigned int counts, frames, bytes;
1325 int i, stride, period_elapsed = 0;
1326 unsigned long flags;
1327
1328 stride = runtime->frame_bits >> 3;
1329
1330 frames = 0;
1331 urb->number_of_packets = 0;
1332 spin_lock_irqsave(&subs->lock, flags);
1333 for (i = 0; i < ctx->packets; i++) {
Daniel Mack245baf92012-08-30 18:52:30 +02001334 if (ctx->packet_size[i])
1335 counts = ctx->packet_size[i];
1336 else
1337 counts = snd_usb_endpoint_next_packet_size(ep);
1338
Daniel Mackedcd3632012-04-12 13:51:12 +02001339 /* set up descriptor */
Daniel Mack8a2a74d2013-04-17 00:01:37 +08001340 urb->iso_frame_desc[i].offset = frames * ep->stride;
1341 urb->iso_frame_desc[i].length = counts * ep->stride;
Daniel Mackedcd3632012-04-12 13:51:12 +02001342 frames += counts;
1343 urb->number_of_packets++;
1344 subs->transfer_done += counts;
1345 if (subs->transfer_done >= runtime->period_size) {
1346 subs->transfer_done -= runtime->period_size;
1347 period_elapsed = 1;
1348 if (subs->fmt_type == UAC_FORMAT_TYPE_II) {
1349 if (subs->transfer_done > 0) {
1350 /* FIXME: fill-max mode is not
1351 * supported yet */
1352 frames -= subs->transfer_done;
1353 counts -= subs->transfer_done;
1354 urb->iso_frame_desc[i].length =
Daniel Mack8a2a74d2013-04-17 00:01:37 +08001355 counts * ep->stride;
Daniel Mackedcd3632012-04-12 13:51:12 +02001356 subs->transfer_done = 0;
1357 }
1358 i++;
1359 if (i < ctx->packets) {
1360 /* add a transfer delimiter */
1361 urb->iso_frame_desc[i].offset =
Daniel Mack8a2a74d2013-04-17 00:01:37 +08001362 frames * ep->stride;
Daniel Mackedcd3632012-04-12 13:51:12 +02001363 urb->iso_frame_desc[i].length = 0;
1364 urb->number_of_packets++;
1365 }
1366 break;
1367 }
1368 }
1369 if (period_elapsed &&
Eldad Zack98ae4722013-04-03 23:18:52 +02001370 !snd_usb_endpoint_implicit_feedback_sink(subs->data_endpoint)) /* finish at the period boundary */
Daniel Mackedcd3632012-04-12 13:51:12 +02001371 break;
1372 }
Daniel Mack8a2a74d2013-04-17 00:01:37 +08001373 bytes = frames * ep->stride;
Daniel Mackd24f5062013-04-17 00:01:38 +08001374
1375 if (unlikely(subs->pcm_format == SNDRV_PCM_FORMAT_DSD_U16_LE &&
1376 subs->cur_audiofmt->dsd_dop)) {
1377 fill_playback_urb_dsd_dop(subs, urb, bytes);
Daniel Mack44dcbbb2013-04-17 00:01:39 +08001378 } else if (unlikely(subs->pcm_format == SNDRV_PCM_FORMAT_DSD_U8 &&
1379 subs->cur_audiofmt->dsd_bitrev)) {
1380 /* bit-reverse the bytes */
1381 u8 *buf = urb->transfer_buffer;
1382 for (i = 0; i < bytes; i++) {
1383 int idx = (subs->hwptr_done + i)
1384 % (runtime->buffer_size * stride);
1385 buf[i] = bitrev8(runtime->dma_area[idx]);
1386 }
1387
1388 subs->hwptr_done += bytes;
Daniel Mackedcd3632012-04-12 13:51:12 +02001389 } else {
Daniel Mackd24f5062013-04-17 00:01:38 +08001390 /* usual PCM */
1391 if (subs->hwptr_done + bytes > runtime->buffer_size * stride) {
1392 /* err, the transferred area goes over buffer boundary. */
1393 unsigned int bytes1 =
1394 runtime->buffer_size * stride - subs->hwptr_done;
1395 memcpy(urb->transfer_buffer,
1396 runtime->dma_area + subs->hwptr_done, bytes1);
1397 memcpy(urb->transfer_buffer + bytes1,
1398 runtime->dma_area, bytes - bytes1);
1399 } else {
1400 memcpy(urb->transfer_buffer,
1401 runtime->dma_area + subs->hwptr_done, bytes);
1402 }
1403
1404 subs->hwptr_done += bytes;
Daniel Mackedcd3632012-04-12 13:51:12 +02001405 }
Daniel Mackd24f5062013-04-17 00:01:38 +08001406
Daniel Mackedcd3632012-04-12 13:51:12 +02001407 if (subs->hwptr_done >= runtime->buffer_size * stride)
1408 subs->hwptr_done -= runtime->buffer_size * stride;
Daniel Mackfbcfbf52012-08-30 18:52:29 +02001409
1410 /* update delay with exact number of samples queued */
1411 runtime->delay = subs->last_delay;
Daniel Mackedcd3632012-04-12 13:51:12 +02001412 runtime->delay += frames;
Daniel Mackfbcfbf52012-08-30 18:52:29 +02001413 subs->last_delay = runtime->delay;
1414
1415 /* realign last_frame_number */
1416 subs->last_frame_number = usb_get_current_frame_number(subs->dev);
1417 subs->last_frame_number &= 0xFF; /* keep 8 LSBs */
1418
Daniel Mackedcd3632012-04-12 13:51:12 +02001419 spin_unlock_irqrestore(&subs->lock, flags);
1420 urb->transfer_buffer_length = bytes;
1421 if (period_elapsed)
1422 snd_pcm_period_elapsed(subs->pcm_substream);
1423}
1424
1425/*
1426 * process after playback data complete
1427 * - decrease the delay count again
1428 */
1429static void retire_playback_urb(struct snd_usb_substream *subs,
1430 struct urb *urb)
1431{
1432 unsigned long flags;
1433 struct snd_pcm_runtime *runtime = subs->pcm_substream->runtime;
Daniel Mack8a2a74d2013-04-17 00:01:37 +08001434 struct snd_usb_endpoint *ep = subs->data_endpoint;
1435 int processed = urb->transfer_buffer_length / ep->stride;
Daniel Mackfbcfbf52012-08-30 18:52:29 +02001436 int est_delay;
Daniel Mackedcd3632012-04-12 13:51:12 +02001437
Takashi Iwai1213a202012-09-06 14:58:00 +02001438 /* ignore the delay accounting when procssed=0 is given, i.e.
1439 * silent payloads are procssed before handling the actual data
1440 */
1441 if (!processed)
1442 return;
1443
Daniel Mackedcd3632012-04-12 13:51:12 +02001444 spin_lock_irqsave(&subs->lock, flags);
Takashi Iwai48779a02012-11-23 16:00:37 +01001445 if (!subs->last_delay)
1446 goto out; /* short path */
1447
Daniel Mackfbcfbf52012-08-30 18:52:29 +02001448 est_delay = snd_usb_pcm_delay(subs, runtime->rate);
1449 /* update delay with exact number of samples played */
1450 if (processed > subs->last_delay)
1451 subs->last_delay = 0;
Daniel Mackedcd3632012-04-12 13:51:12 +02001452 else
Daniel Mackfbcfbf52012-08-30 18:52:29 +02001453 subs->last_delay -= processed;
1454 runtime->delay = subs->last_delay;
1455
1456 /*
1457 * Report when delay estimate is off by more than 2ms.
1458 * The error should be lower than 2ms since the estimate relies
1459 * on two reads of a counter updated every ms.
1460 */
1461 if (abs(est_delay - subs->last_delay) * 1000 > runtime->rate * 2)
1462 snd_printk(KERN_DEBUG "delay: estimated %d, actual %d\n",
1463 est_delay, subs->last_delay);
1464
Takashi Iwai48779a02012-11-23 16:00:37 +01001465 if (!subs->running) {
1466 /* update last_frame_number for delay counting here since
1467 * prepare_playback_urb won't be called during pause
1468 */
1469 subs->last_frame_number =
1470 usb_get_current_frame_number(subs->dev) & 0xff;
1471 }
1472
1473 out:
Daniel Mackedcd3632012-04-12 13:51:12 +02001474 spin_unlock_irqrestore(&subs->lock, flags);
Daniel Macke5779992010-03-04 19:46:13 +01001475}
1476
1477static int snd_usb_playback_open(struct snd_pcm_substream *substream)
1478{
1479 return snd_usb_pcm_open(substream, SNDRV_PCM_STREAM_PLAYBACK);
1480}
1481
1482static int snd_usb_playback_close(struct snd_pcm_substream *substream)
1483{
1484 return snd_usb_pcm_close(substream, SNDRV_PCM_STREAM_PLAYBACK);
1485}
1486
1487static int snd_usb_capture_open(struct snd_pcm_substream *substream)
1488{
1489 return snd_usb_pcm_open(substream, SNDRV_PCM_STREAM_CAPTURE);
1490}
1491
1492static int snd_usb_capture_close(struct snd_pcm_substream *substream)
1493{
1494 return snd_usb_pcm_close(substream, SNDRV_PCM_STREAM_CAPTURE);
1495}
1496
Daniel Mackedcd3632012-04-12 13:51:12 +02001497static int snd_usb_substream_playback_trigger(struct snd_pcm_substream *substream,
1498 int cmd)
1499{
1500 struct snd_usb_substream *subs = substream->runtime->private_data;
1501
1502 switch (cmd) {
1503 case SNDRV_PCM_TRIGGER_START:
1504 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
1505 subs->data_endpoint->prepare_data_urb = prepare_playback_urb;
1506 subs->data_endpoint->retire_data_urb = retire_playback_urb;
Daniel Mack97f8d3b2012-05-21 12:47:36 +02001507 subs->running = 1;
Daniel Mackedcd3632012-04-12 13:51:12 +02001508 return 0;
1509 case SNDRV_PCM_TRIGGER_STOP:
Takashi Iwaia9bb3622012-11-20 18:32:06 +01001510 stop_endpoints(subs, false);
Daniel Mack97f8d3b2012-05-21 12:47:36 +02001511 subs->running = 0;
Daniel Mackedcd3632012-04-12 13:51:12 +02001512 return 0;
1513 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
1514 subs->data_endpoint->prepare_data_urb = NULL;
Takashi Iwai48779a02012-11-23 16:00:37 +01001515 /* keep retire_data_urb for delay calculation */
1516 subs->data_endpoint->retire_data_urb = retire_playback_urb;
Daniel Mack97f8d3b2012-05-21 12:47:36 +02001517 subs->running = 0;
Daniel Mackedcd3632012-04-12 13:51:12 +02001518 return 0;
1519 }
1520
1521 return -EINVAL;
1522}
1523
Daniel Mackafe25962012-06-16 16:58:04 +02001524static int snd_usb_substream_capture_trigger(struct snd_pcm_substream *substream,
1525 int cmd)
Daniel Mackedcd3632012-04-12 13:51:12 +02001526{
1527 int err;
1528 struct snd_usb_substream *subs = substream->runtime->private_data;
1529
1530 switch (cmd) {
1531 case SNDRV_PCM_TRIGGER_START:
Takashi Iwaia9bb3622012-11-20 18:32:06 +01001532 err = start_endpoints(subs, false);
Daniel Mackedcd3632012-04-12 13:51:12 +02001533 if (err < 0)
1534 return err;
1535
1536 subs->data_endpoint->retire_data_urb = retire_capture_urb;
Daniel Mack97f8d3b2012-05-21 12:47:36 +02001537 subs->running = 1;
Daniel Mackedcd3632012-04-12 13:51:12 +02001538 return 0;
1539 case SNDRV_PCM_TRIGGER_STOP:
Takashi Iwaia9bb3622012-11-20 18:32:06 +01001540 stop_endpoints(subs, false);
Daniel Mack97f8d3b2012-05-21 12:47:36 +02001541 subs->running = 0;
Daniel Mackedcd3632012-04-12 13:51:12 +02001542 return 0;
1543 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
1544 subs->data_endpoint->retire_data_urb = NULL;
Daniel Mack97f8d3b2012-05-21 12:47:36 +02001545 subs->running = 0;
Daniel Mackedcd3632012-04-12 13:51:12 +02001546 return 0;
1547 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
1548 subs->data_endpoint->retire_data_urb = retire_capture_urb;
Daniel Mack97f8d3b2012-05-21 12:47:36 +02001549 subs->running = 1;
Daniel Mackedcd3632012-04-12 13:51:12 +02001550 return 0;
1551 }
1552
1553 return -EINVAL;
1554}
1555
Daniel Macke5779992010-03-04 19:46:13 +01001556static struct snd_pcm_ops snd_usb_playback_ops = {
1557 .open = snd_usb_playback_open,
1558 .close = snd_usb_playback_close,
1559 .ioctl = snd_pcm_lib_ioctl,
1560 .hw_params = snd_usb_hw_params,
1561 .hw_free = snd_usb_hw_free,
1562 .prepare = snd_usb_pcm_prepare,
1563 .trigger = snd_usb_substream_playback_trigger,
1564 .pointer = snd_usb_pcm_pointer,
1565 .page = snd_pcm_lib_get_vmalloc_page,
1566 .mmap = snd_pcm_lib_mmap_vmalloc,
1567};
1568
1569static struct snd_pcm_ops snd_usb_capture_ops = {
1570 .open = snd_usb_capture_open,
1571 .close = snd_usb_capture_close,
1572 .ioctl = snd_pcm_lib_ioctl,
1573 .hw_params = snd_usb_hw_params,
1574 .hw_free = snd_usb_hw_free,
1575 .prepare = snd_usb_pcm_prepare,
1576 .trigger = snd_usb_substream_capture_trigger,
1577 .pointer = snd_usb_pcm_pointer,
1578 .page = snd_pcm_lib_get_vmalloc_page,
1579 .mmap = snd_pcm_lib_mmap_vmalloc,
1580};
1581
1582void snd_usb_set_pcm_ops(struct snd_pcm *pcm, int stream)
1583{
1584 snd_pcm_set_ops(pcm, stream,
1585 stream == SNDRV_PCM_STREAM_PLAYBACK ?
1586 &snd_usb_playback_ops : &snd_usb_capture_ops);
1587}