xref: /openbmc/linux/sound/usb/pcm.c (revision 4c0eaac7)
1 /*
2  *   This program is free software; you can redistribute it and/or modify
3  *   it under the terms of the GNU General Public License as published by
4  *   the Free Software Foundation; either version 2 of the License, or
5  *   (at your option) any later version.
6  *
7  *   This program is distributed in the hope that it will be useful,
8  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
9  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10  *   GNU General Public License for more details.
11  *
12  *   You should have received a copy of the GNU General Public License
13  *   along with this program; if not, write to the Free Software
14  *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
15  */
16 
17 #include <linux/init.h>
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>
24 
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"
33 #include "endpoint.h"
34 #include "helper.h"
35 #include "pcm.h"
36 #include "clock.h"
37 #include "power.h"
38 
39 #define SUBSTREAM_FLAG_DATA_EP_STARTED	0
40 #define SUBSTREAM_FLAG_SYNC_EP_STARTED	1
41 
42 /* return the estimated delay based on USB frame counters */
43 snd_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 
50 	if (!subs->last_delay)
51 		return 0; /* short path */
52 
53 	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 */
63 	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 
69 	if (est_delay < 0)
70 		est_delay = 0;
71 	return est_delay;
72 }
73 
74 /*
75  * return the current pcm pointer.  just based on the hwptr_done value.
76  */
77 static snd_pcm_uframes_t snd_usb_pcm_pointer(struct snd_pcm_substream *substream)
78 {
79 	struct snd_usb_substream *subs = substream->runtime->private_data;
80 	unsigned int hwptr_done;
81 
82 	if (atomic_read(&subs->stream->chip->shutdown))
83 		return SNDRV_PCM_POS_XRUN;
84 	spin_lock(&subs->lock);
85 	hwptr_done = subs->hwptr_done;
86 	substream->runtime->delay = snd_usb_pcm_delay(subs,
87 						substream->runtime->rate);
88 	spin_unlock(&subs->lock);
89 	return hwptr_done / (substream->runtime->frame_bits >> 3);
90 }
91 
92 /*
93  * find a matching audio format
94  */
95 static struct audioformat *find_format(struct snd_usb_substream *subs)
96 {
97 	struct audioformat *fp;
98 	struct audioformat *found = NULL;
99 	int cur_attr = 0, attr;
100 
101 	list_for_each_entry(fp, &subs->fmt_list, list) {
102 		if (!(fp->formats & pcm_format_to_bits(subs->pcm_format)))
103 			continue;
104 		if (fp->channels != subs->channels)
105 			continue;
106 		if (subs->cur_rate < fp->rate_min ||
107 		    subs->cur_rate > fp->rate_max)
108 			continue;
109 		if (! (fp->rates & SNDRV_PCM_RATE_CONTINUOUS)) {
110 			unsigned int i;
111 			for (i = 0; i < fp->nr_rates; i++)
112 				if (fp->rate_table[i] == subs->cur_rate)
113 					break;
114 			if (i >= fp->nr_rates)
115 				continue;
116 		}
117 		attr = fp->ep_attr & USB_ENDPOINT_SYNCTYPE;
118 		if (! found) {
119 			found = fp;
120 			cur_attr = attr;
121 			continue;
122 		}
123 		/* avoid async out and adaptive in if the other method
124 		 * supports the same format.
125 		 * this is a workaround for the case like
126 		 * M-audio audiophile USB.
127 		 */
128 		if (attr != cur_attr) {
129 			if ((attr == USB_ENDPOINT_SYNC_ASYNC &&
130 			     subs->direction == SNDRV_PCM_STREAM_PLAYBACK) ||
131 			    (attr == USB_ENDPOINT_SYNC_ADAPTIVE &&
132 			     subs->direction == SNDRV_PCM_STREAM_CAPTURE))
133 				continue;
134 			if ((cur_attr == USB_ENDPOINT_SYNC_ASYNC &&
135 			     subs->direction == SNDRV_PCM_STREAM_PLAYBACK) ||
136 			    (cur_attr == USB_ENDPOINT_SYNC_ADAPTIVE &&
137 			     subs->direction == SNDRV_PCM_STREAM_CAPTURE)) {
138 				found = fp;
139 				cur_attr = attr;
140 				continue;
141 			}
142 		}
143 		/* find the format with the largest max. packet size */
144 		if (fp->maxpacksize > found->maxpacksize) {
145 			found = fp;
146 			cur_attr = attr;
147 		}
148 	}
149 	return found;
150 }
151 
152 static int init_pitch_v1(struct snd_usb_audio *chip, int iface,
153 			 struct usb_host_interface *alts,
154 			 struct audioformat *fmt)
155 {
156 	struct usb_device *dev = chip->dev;
157 	unsigned int ep;
158 	unsigned char data[1];
159 	int err;
160 
161 	if (get_iface_desc(alts)->bNumEndpoints < 1)
162 		return -EINVAL;
163 	ep = get_endpoint(alts, 0)->bEndpointAddress;
164 
165 	data[0] = 1;
166 	err = snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), UAC_SET_CUR,
167 			      USB_TYPE_CLASS|USB_RECIP_ENDPOINT|USB_DIR_OUT,
168 			      UAC_EP_CS_ATTR_PITCH_CONTROL << 8, ep,
169 			      data, sizeof(data));
170 	if (err < 0) {
171 		usb_audio_err(chip, "%d:%d: cannot set enable PITCH\n",
172 			      iface, ep);
173 		return err;
174 	}
175 
176 	return 0;
177 }
178 
179 static int init_pitch_v2(struct snd_usb_audio *chip, int iface,
180 			 struct usb_host_interface *alts,
181 			 struct audioformat *fmt)
182 {
183 	struct usb_device *dev = chip->dev;
184 	unsigned char data[1];
185 	int err;
186 
187 	data[0] = 1;
188 	err = snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), UAC2_CS_CUR,
189 			      USB_TYPE_CLASS | USB_RECIP_ENDPOINT | USB_DIR_OUT,
190 			      UAC2_EP_CS_PITCH << 8, 0,
191 			      data, sizeof(data));
192 	if (err < 0) {
193 		usb_audio_err(chip, "%d:%d: cannot set enable PITCH (v2)\n",
194 			      iface, fmt->altsetting);
195 		return err;
196 	}
197 
198 	return 0;
199 }
200 
201 /*
202  * initialize the pitch control and sample rate
203  */
204 int snd_usb_init_pitch(struct snd_usb_audio *chip, int iface,
205 		       struct usb_host_interface *alts,
206 		       struct audioformat *fmt)
207 {
208 	/* if endpoint doesn't have pitch control, bail out */
209 	if (!(fmt->attributes & UAC_EP_CS_ATTR_PITCH_CONTROL))
210 		return 0;
211 
212 	switch (fmt->protocol) {
213 	case UAC_VERSION_1:
214 	default:
215 		return init_pitch_v1(chip, iface, alts, fmt);
216 
217 	case UAC_VERSION_2:
218 		return init_pitch_v2(chip, iface, alts, fmt);
219 	}
220 }
221 
222 static int start_endpoints(struct snd_usb_substream *subs)
223 {
224 	int err;
225 
226 	if (!subs->data_endpoint)
227 		return -EINVAL;
228 
229 	if (!test_and_set_bit(SUBSTREAM_FLAG_DATA_EP_STARTED, &subs->flags)) {
230 		struct snd_usb_endpoint *ep = subs->data_endpoint;
231 
232 		dev_dbg(&subs->dev->dev, "Starting data EP @%p\n", ep);
233 
234 		ep->data_subs = subs;
235 		err = snd_usb_endpoint_start(ep);
236 		if (err < 0) {
237 			clear_bit(SUBSTREAM_FLAG_DATA_EP_STARTED, &subs->flags);
238 			return err;
239 		}
240 	}
241 
242 	if (subs->sync_endpoint &&
243 	    !test_and_set_bit(SUBSTREAM_FLAG_SYNC_EP_STARTED, &subs->flags)) {
244 		struct snd_usb_endpoint *ep = subs->sync_endpoint;
245 
246 		if (subs->data_endpoint->iface != subs->sync_endpoint->iface ||
247 		    subs->data_endpoint->altsetting != subs->sync_endpoint->altsetting) {
248 			err = usb_set_interface(subs->dev,
249 						subs->sync_endpoint->iface,
250 						subs->sync_endpoint->altsetting);
251 			if (err < 0) {
252 				clear_bit(SUBSTREAM_FLAG_SYNC_EP_STARTED, &subs->flags);
253 				dev_err(&subs->dev->dev,
254 					   "%d:%d: cannot set interface (%d)\n",
255 					   subs->sync_endpoint->iface,
256 					   subs->sync_endpoint->altsetting, err);
257 				return -EIO;
258 			}
259 		}
260 
261 		dev_dbg(&subs->dev->dev, "Starting sync EP @%p\n", ep);
262 
263 		ep->sync_slave = subs->data_endpoint;
264 		err = snd_usb_endpoint_start(ep);
265 		if (err < 0) {
266 			clear_bit(SUBSTREAM_FLAG_SYNC_EP_STARTED, &subs->flags);
267 			return err;
268 		}
269 	}
270 
271 	return 0;
272 }
273 
274 static void stop_endpoints(struct snd_usb_substream *subs, bool wait)
275 {
276 	if (test_and_clear_bit(SUBSTREAM_FLAG_SYNC_EP_STARTED, &subs->flags))
277 		snd_usb_endpoint_stop(subs->sync_endpoint);
278 
279 	if (test_and_clear_bit(SUBSTREAM_FLAG_DATA_EP_STARTED, &subs->flags))
280 		snd_usb_endpoint_stop(subs->data_endpoint);
281 
282 	if (wait) {
283 		snd_usb_endpoint_sync_pending_stop(subs->sync_endpoint);
284 		snd_usb_endpoint_sync_pending_stop(subs->data_endpoint);
285 	}
286 }
287 
288 static int search_roland_implicit_fb(struct usb_device *dev, int ifnum,
289 				     unsigned int altsetting,
290 				     struct usb_host_interface **alts,
291 				     unsigned int *ep)
292 {
293 	struct usb_interface *iface;
294 	struct usb_interface_descriptor *altsd;
295 	struct usb_endpoint_descriptor *epd;
296 
297 	iface = usb_ifnum_to_if(dev, ifnum);
298 	if (!iface || iface->num_altsetting < altsetting + 1)
299 		return -ENOENT;
300 	*alts = &iface->altsetting[altsetting];
301 	altsd = get_iface_desc(*alts);
302 	if (altsd->bAlternateSetting != altsetting ||
303 	    altsd->bInterfaceClass != USB_CLASS_VENDOR_SPEC ||
304 	    (altsd->bInterfaceSubClass != 2 &&
305 	     altsd->bInterfaceProtocol != 2   ) ||
306 	    altsd->bNumEndpoints < 1)
307 		return -ENOENT;
308 	epd = get_endpoint(*alts, 0);
309 	if (!usb_endpoint_is_isoc_in(epd) ||
310 	    (epd->bmAttributes & USB_ENDPOINT_USAGE_MASK) !=
311 					USB_ENDPOINT_USAGE_IMPLICIT_FB)
312 		return -ENOENT;
313 	*ep = epd->bEndpointAddress;
314 	return 0;
315 }
316 
317 static int set_sync_ep_implicit_fb_quirk(struct snd_usb_substream *subs,
318 					 struct usb_device *dev,
319 					 struct usb_interface_descriptor *altsd,
320 					 unsigned int attr)
321 {
322 	struct usb_host_interface *alts;
323 	struct usb_interface *iface;
324 	unsigned int ep;
325 	unsigned int ifnum;
326 
327 	/* Implicit feedback sync EPs consumers are always playback EPs */
328 	if (subs->direction != SNDRV_PCM_STREAM_PLAYBACK)
329 		return 0;
330 
331 	switch (subs->stream->chip->usb_id) {
332 	case USB_ID(0x0763, 0x2030): /* M-Audio Fast Track C400 */
333 	case USB_ID(0x0763, 0x2031): /* M-Audio Fast Track C600 */
334 		ep = 0x81;
335 		ifnum = 3;
336 		goto add_sync_ep_from_ifnum;
337 	case USB_ID(0x0763, 0x2080): /* M-Audio FastTrack Ultra */
338 	case USB_ID(0x0763, 0x2081):
339 		ep = 0x81;
340 		ifnum = 2;
341 		goto add_sync_ep_from_ifnum;
342 	case USB_ID(0x2466, 0x8003): /* Fractal Audio Axe-Fx II */
343 		ep = 0x86;
344 		ifnum = 2;
345 		goto add_sync_ep_from_ifnum;
346 	case USB_ID(0x2466, 0x8010): /* Fractal Audio Axe-Fx III */
347 		ep = 0x81;
348 		ifnum = 2;
349 		goto add_sync_ep_from_ifnum;
350 	case USB_ID(0x1397, 0x0002): /* Behringer UFX1204 */
351 		ep = 0x81;
352 		ifnum = 1;
353 		goto add_sync_ep_from_ifnum;
354 	}
355 
356 	if (attr == USB_ENDPOINT_SYNC_ASYNC &&
357 	    altsd->bInterfaceClass == USB_CLASS_VENDOR_SPEC &&
358 	    altsd->bInterfaceProtocol == 2 &&
359 	    altsd->bNumEndpoints == 1 &&
360 	    USB_ID_VENDOR(subs->stream->chip->usb_id) == 0x0582 /* Roland */ &&
361 	    search_roland_implicit_fb(dev, altsd->bInterfaceNumber + 1,
362 				      altsd->bAlternateSetting,
363 				      &alts, &ep) >= 0) {
364 		goto add_sync_ep;
365 	}
366 
367 	/* No quirk */
368 	return 0;
369 
370 add_sync_ep_from_ifnum:
371 	iface = usb_ifnum_to_if(dev, ifnum);
372 
373 	if (!iface || iface->num_altsetting == 0)
374 		return -EINVAL;
375 
376 	alts = &iface->altsetting[1];
377 
378 add_sync_ep:
379 	subs->sync_endpoint = snd_usb_add_endpoint(subs->stream->chip,
380 						   alts, ep, !subs->direction,
381 						   SND_USB_ENDPOINT_TYPE_DATA);
382 	if (!subs->sync_endpoint)
383 		return -EINVAL;
384 
385 	subs->data_endpoint->sync_master = subs->sync_endpoint;
386 
387 	return 0;
388 }
389 
390 static int set_sync_endpoint(struct snd_usb_substream *subs,
391 			     struct audioformat *fmt,
392 			     struct usb_device *dev,
393 			     struct usb_host_interface *alts,
394 			     struct usb_interface_descriptor *altsd)
395 {
396 	int is_playback = subs->direction == SNDRV_PCM_STREAM_PLAYBACK;
397 	unsigned int ep, attr;
398 	bool implicit_fb;
399 	int err;
400 
401 	/* we need a sync pipe in async OUT or adaptive IN mode */
402 	/* check the number of EP, since some devices have broken
403 	 * descriptors which fool us.  if it has only one EP,
404 	 * assume it as adaptive-out or sync-in.
405 	 */
406 	attr = fmt->ep_attr & USB_ENDPOINT_SYNCTYPE;
407 
408 	if ((is_playback && (attr != USB_ENDPOINT_SYNC_ASYNC)) ||
409 		(!is_playback && (attr != USB_ENDPOINT_SYNC_ADAPTIVE))) {
410 
411 		/*
412 		 * In these modes the notion of sync_endpoint is irrelevant.
413 		 * Reset pointers to avoid using stale data from previously
414 		 * used settings, e.g. when configuration and endpoints were
415 		 * changed
416 		 */
417 
418 		subs->sync_endpoint = NULL;
419 		subs->data_endpoint->sync_master = NULL;
420 	}
421 
422 	err = set_sync_ep_implicit_fb_quirk(subs, dev, altsd, attr);
423 	if (err < 0)
424 		return err;
425 
426 	if (altsd->bNumEndpoints < 2)
427 		return 0;
428 
429 	if ((is_playback && (attr == USB_ENDPOINT_SYNC_SYNC ||
430 			     attr == USB_ENDPOINT_SYNC_ADAPTIVE)) ||
431 	    (!is_playback && attr != USB_ENDPOINT_SYNC_ADAPTIVE))
432 		return 0;
433 
434 	/*
435 	 * In case of illegal SYNC_NONE for OUT endpoint, we keep going to see
436 	 * if we don't find a sync endpoint, as on M-Audio Transit. In case of
437 	 * error fall back to SYNC mode and don't create sync endpoint
438 	 */
439 
440 	/* check sync-pipe endpoint */
441 	/* ... and check descriptor size before accessing bSynchAddress
442 	   because there is a version of the SB Audigy 2 NX firmware lacking
443 	   the audio fields in the endpoint descriptors */
444 	if ((get_endpoint(alts, 1)->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) != USB_ENDPOINT_XFER_ISOC ||
445 	    (get_endpoint(alts, 1)->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE &&
446 	     get_endpoint(alts, 1)->bSynchAddress != 0)) {
447 		dev_err(&dev->dev,
448 			"%d:%d : invalid sync pipe. bmAttributes %02x, bLength %d, bSynchAddress %02x\n",
449 			   fmt->iface, fmt->altsetting,
450 			   get_endpoint(alts, 1)->bmAttributes,
451 			   get_endpoint(alts, 1)->bLength,
452 			   get_endpoint(alts, 1)->bSynchAddress);
453 		if (is_playback && attr == USB_ENDPOINT_SYNC_NONE)
454 			return 0;
455 		return -EINVAL;
456 	}
457 	ep = get_endpoint(alts, 1)->bEndpointAddress;
458 	if (get_endpoint(alts, 0)->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE &&
459 	    ((is_playback && ep != (unsigned int)(get_endpoint(alts, 0)->bSynchAddress | USB_DIR_IN)) ||
460 	     (!is_playback && ep != (unsigned int)(get_endpoint(alts, 0)->bSynchAddress & ~USB_DIR_IN)))) {
461 		dev_err(&dev->dev,
462 			"%d:%d : invalid sync pipe. is_playback %d, ep %02x, bSynchAddress %02x\n",
463 			   fmt->iface, fmt->altsetting,
464 			   is_playback, ep, get_endpoint(alts, 0)->bSynchAddress);
465 		if (is_playback && attr == USB_ENDPOINT_SYNC_NONE)
466 			return 0;
467 		return -EINVAL;
468 	}
469 
470 	implicit_fb = (get_endpoint(alts, 1)->bmAttributes & USB_ENDPOINT_USAGE_MASK)
471 			== USB_ENDPOINT_USAGE_IMPLICIT_FB;
472 
473 	subs->sync_endpoint = snd_usb_add_endpoint(subs->stream->chip,
474 						   alts, ep, !subs->direction,
475 						   implicit_fb ?
476 							SND_USB_ENDPOINT_TYPE_DATA :
477 							SND_USB_ENDPOINT_TYPE_SYNC);
478 	if (!subs->sync_endpoint) {
479 		if (is_playback && attr == USB_ENDPOINT_SYNC_NONE)
480 			return 0;
481 		return -EINVAL;
482 	}
483 
484 	subs->data_endpoint->sync_master = subs->sync_endpoint;
485 
486 	return 0;
487 }
488 
489 /*
490  * find a matching format and set up the interface
491  */
492 static int set_format(struct snd_usb_substream *subs, struct audioformat *fmt)
493 {
494 	struct usb_device *dev = subs->dev;
495 	struct usb_host_interface *alts;
496 	struct usb_interface_descriptor *altsd;
497 	struct usb_interface *iface;
498 	int err;
499 
500 	iface = usb_ifnum_to_if(dev, fmt->iface);
501 	if (WARN_ON(!iface))
502 		return -EINVAL;
503 	alts = usb_altnum_to_altsetting(iface, fmt->altsetting);
504 	altsd = get_iface_desc(alts);
505 	if (WARN_ON(altsd->bAlternateSetting != fmt->altsetting))
506 		return -EINVAL;
507 
508 	if (fmt == subs->cur_audiofmt)
509 		return 0;
510 
511 	/* close the old interface */
512 	if (subs->interface >= 0 && subs->interface != fmt->iface) {
513 		if (!subs->stream->chip->keep_iface) {
514 			err = usb_set_interface(subs->dev, subs->interface, 0);
515 			if (err < 0) {
516 				dev_err(&dev->dev,
517 					"%d:%d: return to setting 0 failed (%d)\n",
518 					fmt->iface, fmt->altsetting, err);
519 				return -EIO;
520 			}
521 		}
522 		subs->interface = -1;
523 		subs->altset_idx = 0;
524 	}
525 
526 	/* set interface */
527 	if (iface->cur_altsetting != alts) {
528 		err = snd_usb_select_mode_quirk(subs, fmt);
529 		if (err < 0)
530 			return -EIO;
531 
532 		err = usb_set_interface(dev, fmt->iface, fmt->altsetting);
533 		if (err < 0) {
534 			dev_err(&dev->dev,
535 				"%d:%d: usb_set_interface failed (%d)\n",
536 				fmt->iface, fmt->altsetting, err);
537 			return -EIO;
538 		}
539 		dev_dbg(&dev->dev, "setting usb interface %d:%d\n",
540 			fmt->iface, fmt->altsetting);
541 		snd_usb_set_interface_quirk(dev);
542 	}
543 
544 	subs->interface = fmt->iface;
545 	subs->altset_idx = fmt->altset_idx;
546 	subs->data_endpoint = snd_usb_add_endpoint(subs->stream->chip,
547 						   alts, fmt->endpoint, subs->direction,
548 						   SND_USB_ENDPOINT_TYPE_DATA);
549 
550 	if (!subs->data_endpoint)
551 		return -EINVAL;
552 
553 	err = set_sync_endpoint(subs, fmt, dev, alts, altsd);
554 	if (err < 0)
555 		return err;
556 
557 	err = snd_usb_init_pitch(subs->stream->chip, fmt->iface, alts, fmt);
558 	if (err < 0)
559 		return err;
560 
561 	subs->cur_audiofmt = fmt;
562 
563 	snd_usb_set_format_quirk(subs, fmt);
564 
565 	return 0;
566 }
567 
568 /*
569  * Return the score of matching two audioformats.
570  * Veto the audioformat if:
571  * - It has no channels for some reason.
572  * - Requested PCM format is not supported.
573  * - Requested sample rate is not supported.
574  */
575 static int match_endpoint_audioformats(struct snd_usb_substream *subs,
576 				       struct audioformat *fp,
577 				       struct audioformat *match, int rate,
578 				       snd_pcm_format_t pcm_format)
579 {
580 	int i;
581 	int score = 0;
582 
583 	if (fp->channels < 1) {
584 		dev_dbg(&subs->dev->dev,
585 			"%s: (fmt @%p) no channels\n", __func__, fp);
586 		return 0;
587 	}
588 
589 	if (!(fp->formats & pcm_format_to_bits(pcm_format))) {
590 		dev_dbg(&subs->dev->dev,
591 			"%s: (fmt @%p) no match for format %d\n", __func__,
592 			fp, pcm_format);
593 		return 0;
594 	}
595 
596 	for (i = 0; i < fp->nr_rates; i++) {
597 		if (fp->rate_table[i] == rate) {
598 			score++;
599 			break;
600 		}
601 	}
602 	if (!score) {
603 		dev_dbg(&subs->dev->dev,
604 			"%s: (fmt @%p) no match for rate %d\n", __func__,
605 			fp, rate);
606 		return 0;
607 	}
608 
609 	if (fp->channels == match->channels)
610 		score++;
611 
612 	dev_dbg(&subs->dev->dev,
613 		"%s: (fmt @%p) score %d\n", __func__, fp, score);
614 
615 	return score;
616 }
617 
618 /*
619  * Configure the sync ep using the rate and pcm format of the data ep.
620  */
621 static int configure_sync_endpoint(struct snd_usb_substream *subs)
622 {
623 	int ret;
624 	struct audioformat *fp;
625 	struct audioformat *sync_fp = NULL;
626 	int cur_score = 0;
627 	int sync_period_bytes = subs->period_bytes;
628 	struct snd_usb_substream *sync_subs =
629 		&subs->stream->substream[subs->direction ^ 1];
630 
631 	if (subs->sync_endpoint->type != SND_USB_ENDPOINT_TYPE_DATA ||
632 	    !subs->stream)
633 		return snd_usb_endpoint_set_params(subs->sync_endpoint,
634 						   subs->pcm_format,
635 						   subs->channels,
636 						   subs->period_bytes,
637 						   0, 0,
638 						   subs->cur_rate,
639 						   subs->cur_audiofmt,
640 						   NULL);
641 
642 	/* Try to find the best matching audioformat. */
643 	list_for_each_entry(fp, &sync_subs->fmt_list, list) {
644 		int score = match_endpoint_audioformats(subs,
645 							fp, subs->cur_audiofmt,
646 			subs->cur_rate, subs->pcm_format);
647 
648 		if (score > cur_score) {
649 			sync_fp = fp;
650 			cur_score = score;
651 		}
652 	}
653 
654 	if (unlikely(sync_fp == NULL)) {
655 		dev_err(&subs->dev->dev,
656 			"%s: no valid audioformat for sync ep %x found\n",
657 			__func__, sync_subs->ep_num);
658 		return -EINVAL;
659 	}
660 
661 	/*
662 	 * Recalculate the period bytes if channel number differ between
663 	 * data and sync ep audioformat.
664 	 */
665 	if (sync_fp->channels != subs->channels) {
666 		sync_period_bytes = (subs->period_bytes / subs->channels) *
667 			sync_fp->channels;
668 		dev_dbg(&subs->dev->dev,
669 			"%s: adjusted sync ep period bytes (%d -> %d)\n",
670 			__func__, subs->period_bytes, sync_period_bytes);
671 	}
672 
673 	ret = snd_usb_endpoint_set_params(subs->sync_endpoint,
674 					  subs->pcm_format,
675 					  sync_fp->channels,
676 					  sync_period_bytes,
677 					  0, 0,
678 					  subs->cur_rate,
679 					  sync_fp,
680 					  NULL);
681 
682 	return ret;
683 }
684 
685 /*
686  * configure endpoint params
687  *
688  * called  during initial setup and upon resume
689  */
690 static int configure_endpoint(struct snd_usb_substream *subs)
691 {
692 	int ret;
693 
694 	/* format changed */
695 	stop_endpoints(subs, true);
696 	ret = snd_usb_endpoint_set_params(subs->data_endpoint,
697 					  subs->pcm_format,
698 					  subs->channels,
699 					  subs->period_bytes,
700 					  subs->period_frames,
701 					  subs->buffer_periods,
702 					  subs->cur_rate,
703 					  subs->cur_audiofmt,
704 					  subs->sync_endpoint);
705 	if (ret < 0)
706 		return ret;
707 
708 	if (subs->sync_endpoint)
709 		ret = configure_sync_endpoint(subs);
710 
711 	return ret;
712 }
713 
714 /*
715  * hw_params callback
716  *
717  * allocate a buffer and set the given audio format.
718  *
719  * so far we use a physically linear buffer although packetize transfer
720  * doesn't need a continuous area.
721  * if sg buffer is supported on the later version of alsa, we'll follow
722  * that.
723  */
724 static int snd_usb_hw_params(struct snd_pcm_substream *substream,
725 			     struct snd_pcm_hw_params *hw_params)
726 {
727 	struct snd_usb_substream *subs = substream->runtime->private_data;
728 	struct audioformat *fmt;
729 	int ret;
730 
731 	ret = snd_pcm_lib_alloc_vmalloc_buffer(substream,
732 					       params_buffer_bytes(hw_params));
733 	if (ret < 0)
734 		return ret;
735 
736 	subs->pcm_format = params_format(hw_params);
737 	subs->period_bytes = params_period_bytes(hw_params);
738 	subs->period_frames = params_period_size(hw_params);
739 	subs->buffer_periods = params_periods(hw_params);
740 	subs->channels = params_channels(hw_params);
741 	subs->cur_rate = params_rate(hw_params);
742 
743 	fmt = find_format(subs);
744 	if (!fmt) {
745 		dev_dbg(&subs->dev->dev,
746 			"cannot set format: format = %#x, rate = %d, channels = %d\n",
747 			   subs->pcm_format, subs->cur_rate, subs->channels);
748 		return -EINVAL;
749 	}
750 
751 	ret = snd_usb_lock_shutdown(subs->stream->chip);
752 	if (ret < 0)
753 		return ret;
754 	ret = set_format(subs, fmt);
755 	snd_usb_unlock_shutdown(subs->stream->chip);
756 	if (ret < 0)
757 		return ret;
758 
759 	subs->interface = fmt->iface;
760 	subs->altset_idx = fmt->altset_idx;
761 	subs->need_setup_ep = true;
762 
763 	return 0;
764 }
765 
766 /*
767  * hw_free callback
768  *
769  * reset the audio format and release the buffer
770  */
771 static int snd_usb_hw_free(struct snd_pcm_substream *substream)
772 {
773 	struct snd_usb_substream *subs = substream->runtime->private_data;
774 
775 	subs->cur_audiofmt = NULL;
776 	subs->cur_rate = 0;
777 	subs->period_bytes = 0;
778 	if (!snd_usb_lock_shutdown(subs->stream->chip)) {
779 		stop_endpoints(subs, true);
780 		snd_usb_endpoint_deactivate(subs->sync_endpoint);
781 		snd_usb_endpoint_deactivate(subs->data_endpoint);
782 		snd_usb_unlock_shutdown(subs->stream->chip);
783 	}
784 	return snd_pcm_lib_free_vmalloc_buffer(substream);
785 }
786 
787 /*
788  * prepare callback
789  *
790  * only a few subtle things...
791  */
792 static int snd_usb_pcm_prepare(struct snd_pcm_substream *substream)
793 {
794 	struct snd_pcm_runtime *runtime = substream->runtime;
795 	struct snd_usb_substream *subs = runtime->private_data;
796 	struct usb_host_interface *alts;
797 	struct usb_interface *iface;
798 	int ret;
799 
800 	if (! subs->cur_audiofmt) {
801 		dev_err(&subs->dev->dev, "no format is specified!\n");
802 		return -ENXIO;
803 	}
804 
805 	ret = snd_usb_lock_shutdown(subs->stream->chip);
806 	if (ret < 0)
807 		return ret;
808 	if (snd_BUG_ON(!subs->data_endpoint)) {
809 		ret = -EIO;
810 		goto unlock;
811 	}
812 
813 	snd_usb_endpoint_sync_pending_stop(subs->sync_endpoint);
814 	snd_usb_endpoint_sync_pending_stop(subs->data_endpoint);
815 
816 	ret = set_format(subs, subs->cur_audiofmt);
817 	if (ret < 0)
818 		goto unlock;
819 
820 	if (subs->need_setup_ep) {
821 
822 		iface = usb_ifnum_to_if(subs->dev, subs->cur_audiofmt->iface);
823 		alts = &iface->altsetting[subs->cur_audiofmt->altset_idx];
824 		ret = snd_usb_init_sample_rate(subs->stream->chip,
825 					       subs->cur_audiofmt->iface,
826 					       alts,
827 					       subs->cur_audiofmt,
828 					       subs->cur_rate);
829 		if (ret < 0)
830 			goto unlock;
831 
832 		ret = configure_endpoint(subs);
833 		if (ret < 0)
834 			goto unlock;
835 		subs->need_setup_ep = false;
836 	}
837 
838 	/* some unit conversions in runtime */
839 	subs->data_endpoint->maxframesize =
840 		bytes_to_frames(runtime, subs->data_endpoint->maxpacksize);
841 	subs->data_endpoint->curframesize =
842 		bytes_to_frames(runtime, subs->data_endpoint->curpacksize);
843 
844 	/* reset the pointer */
845 	subs->hwptr_done = 0;
846 	subs->transfer_done = 0;
847 	subs->last_delay = 0;
848 	subs->last_frame_number = 0;
849 	runtime->delay = 0;
850 
851 	/* for playback, submit the URBs now; otherwise, the first hwptr_done
852 	 * updates for all URBs would happen at the same time when starting */
853 	if (subs->direction == SNDRV_PCM_STREAM_PLAYBACK)
854 		ret = start_endpoints(subs);
855 
856  unlock:
857 	snd_usb_unlock_shutdown(subs->stream->chip);
858 	return ret;
859 }
860 
861 static const struct snd_pcm_hardware snd_usb_hardware =
862 {
863 	.info =			SNDRV_PCM_INFO_MMAP |
864 				SNDRV_PCM_INFO_MMAP_VALID |
865 				SNDRV_PCM_INFO_BATCH |
866 				SNDRV_PCM_INFO_INTERLEAVED |
867 				SNDRV_PCM_INFO_BLOCK_TRANSFER |
868 				SNDRV_PCM_INFO_PAUSE,
869 	.buffer_bytes_max =	1024 * 1024,
870 	.period_bytes_min =	64,
871 	.period_bytes_max =	512 * 1024,
872 	.periods_min =		2,
873 	.periods_max =		1024,
874 };
875 
876 static int hw_check_valid_format(struct snd_usb_substream *subs,
877 				 struct snd_pcm_hw_params *params,
878 				 struct audioformat *fp)
879 {
880 	struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
881 	struct snd_interval *ct = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
882 	struct snd_mask *fmts = hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT);
883 	struct snd_interval *pt = hw_param_interval(params, SNDRV_PCM_HW_PARAM_PERIOD_TIME);
884 	struct snd_mask check_fmts;
885 	unsigned int ptime;
886 
887 	/* check the format */
888 	snd_mask_none(&check_fmts);
889 	check_fmts.bits[0] = (u32)fp->formats;
890 	check_fmts.bits[1] = (u32)(fp->formats >> 32);
891 	snd_mask_intersect(&check_fmts, fmts);
892 	if (snd_mask_empty(&check_fmts)) {
893 		hwc_debug("   > check: no supported format %d\n", fp->format);
894 		return 0;
895 	}
896 	/* check the channels */
897 	if (fp->channels < ct->min || fp->channels > ct->max) {
898 		hwc_debug("   > check: no valid channels %d (%d/%d)\n", fp->channels, ct->min, ct->max);
899 		return 0;
900 	}
901 	/* check the rate is within the range */
902 	if (fp->rate_min > it->max || (fp->rate_min == it->max && it->openmax)) {
903 		hwc_debug("   > check: rate_min %d > max %d\n", fp->rate_min, it->max);
904 		return 0;
905 	}
906 	if (fp->rate_max < it->min || (fp->rate_max == it->min && it->openmin)) {
907 		hwc_debug("   > check: rate_max %d < min %d\n", fp->rate_max, it->min);
908 		return 0;
909 	}
910 	/* check whether the period time is >= the data packet interval */
911 	if (subs->speed != USB_SPEED_FULL) {
912 		ptime = 125 * (1 << fp->datainterval);
913 		if (ptime > pt->max || (ptime == pt->max && pt->openmax)) {
914 			hwc_debug("   > check: ptime %u > max %u\n", ptime, pt->max);
915 			return 0;
916 		}
917 	}
918 	return 1;
919 }
920 
921 static int hw_rule_rate(struct snd_pcm_hw_params *params,
922 			struct snd_pcm_hw_rule *rule)
923 {
924 	struct snd_usb_substream *subs = rule->private;
925 	struct audioformat *fp;
926 	struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
927 	unsigned int rmin, rmax;
928 	int changed;
929 
930 	hwc_debug("hw_rule_rate: (%d,%d)\n", it->min, it->max);
931 	changed = 0;
932 	rmin = rmax = 0;
933 	list_for_each_entry(fp, &subs->fmt_list, list) {
934 		if (!hw_check_valid_format(subs, params, fp))
935 			continue;
936 		if (changed++) {
937 			if (rmin > fp->rate_min)
938 				rmin = fp->rate_min;
939 			if (rmax < fp->rate_max)
940 				rmax = fp->rate_max;
941 		} else {
942 			rmin = fp->rate_min;
943 			rmax = fp->rate_max;
944 		}
945 	}
946 
947 	if (!changed) {
948 		hwc_debug("  --> get empty\n");
949 		it->empty = 1;
950 		return -EINVAL;
951 	}
952 
953 	changed = 0;
954 	if (it->min < rmin) {
955 		it->min = rmin;
956 		it->openmin = 0;
957 		changed = 1;
958 	}
959 	if (it->max > rmax) {
960 		it->max = rmax;
961 		it->openmax = 0;
962 		changed = 1;
963 	}
964 	if (snd_interval_checkempty(it)) {
965 		it->empty = 1;
966 		return -EINVAL;
967 	}
968 	hwc_debug("  --> (%d, %d) (changed = %d)\n", it->min, it->max, changed);
969 	return changed;
970 }
971 
972 
973 static int hw_rule_channels(struct snd_pcm_hw_params *params,
974 			    struct snd_pcm_hw_rule *rule)
975 {
976 	struct snd_usb_substream *subs = rule->private;
977 	struct audioformat *fp;
978 	struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
979 	unsigned int rmin, rmax;
980 	int changed;
981 
982 	hwc_debug("hw_rule_channels: (%d,%d)\n", it->min, it->max);
983 	changed = 0;
984 	rmin = rmax = 0;
985 	list_for_each_entry(fp, &subs->fmt_list, list) {
986 		if (!hw_check_valid_format(subs, params, fp))
987 			continue;
988 		if (changed++) {
989 			if (rmin > fp->channels)
990 				rmin = fp->channels;
991 			if (rmax < fp->channels)
992 				rmax = fp->channels;
993 		} else {
994 			rmin = fp->channels;
995 			rmax = fp->channels;
996 		}
997 	}
998 
999 	if (!changed) {
1000 		hwc_debug("  --> get empty\n");
1001 		it->empty = 1;
1002 		return -EINVAL;
1003 	}
1004 
1005 	changed = 0;
1006 	if (it->min < rmin) {
1007 		it->min = rmin;
1008 		it->openmin = 0;
1009 		changed = 1;
1010 	}
1011 	if (it->max > rmax) {
1012 		it->max = rmax;
1013 		it->openmax = 0;
1014 		changed = 1;
1015 	}
1016 	if (snd_interval_checkempty(it)) {
1017 		it->empty = 1;
1018 		return -EINVAL;
1019 	}
1020 	hwc_debug("  --> (%d, %d) (changed = %d)\n", it->min, it->max, changed);
1021 	return changed;
1022 }
1023 
1024 static int hw_rule_format(struct snd_pcm_hw_params *params,
1025 			  struct snd_pcm_hw_rule *rule)
1026 {
1027 	struct snd_usb_substream *subs = rule->private;
1028 	struct audioformat *fp;
1029 	struct snd_mask *fmt = hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT);
1030 	u64 fbits;
1031 	u32 oldbits[2];
1032 	int changed;
1033 
1034 	hwc_debug("hw_rule_format: %x:%x\n", fmt->bits[0], fmt->bits[1]);
1035 	fbits = 0;
1036 	list_for_each_entry(fp, &subs->fmt_list, list) {
1037 		if (!hw_check_valid_format(subs, params, fp))
1038 			continue;
1039 		fbits |= fp->formats;
1040 	}
1041 
1042 	oldbits[0] = fmt->bits[0];
1043 	oldbits[1] = fmt->bits[1];
1044 	fmt->bits[0] &= (u32)fbits;
1045 	fmt->bits[1] &= (u32)(fbits >> 32);
1046 	if (!fmt->bits[0] && !fmt->bits[1]) {
1047 		hwc_debug("  --> get empty\n");
1048 		return -EINVAL;
1049 	}
1050 	changed = (oldbits[0] != fmt->bits[0] || oldbits[1] != fmt->bits[1]);
1051 	hwc_debug("  --> %x:%x (changed = %d)\n", fmt->bits[0], fmt->bits[1], changed);
1052 	return changed;
1053 }
1054 
1055 static int hw_rule_period_time(struct snd_pcm_hw_params *params,
1056 			       struct snd_pcm_hw_rule *rule)
1057 {
1058 	struct snd_usb_substream *subs = rule->private;
1059 	struct audioformat *fp;
1060 	struct snd_interval *it;
1061 	unsigned char min_datainterval;
1062 	unsigned int pmin;
1063 	int changed;
1064 
1065 	it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_PERIOD_TIME);
1066 	hwc_debug("hw_rule_period_time: (%u,%u)\n", it->min, it->max);
1067 	min_datainterval = 0xff;
1068 	list_for_each_entry(fp, &subs->fmt_list, list) {
1069 		if (!hw_check_valid_format(subs, params, fp))
1070 			continue;
1071 		min_datainterval = min(min_datainterval, fp->datainterval);
1072 	}
1073 	if (min_datainterval == 0xff) {
1074 		hwc_debug("  --> get empty\n");
1075 		it->empty = 1;
1076 		return -EINVAL;
1077 	}
1078 	pmin = 125 * (1 << min_datainterval);
1079 	changed = 0;
1080 	if (it->min < pmin) {
1081 		it->min = pmin;
1082 		it->openmin = 0;
1083 		changed = 1;
1084 	}
1085 	if (snd_interval_checkempty(it)) {
1086 		it->empty = 1;
1087 		return -EINVAL;
1088 	}
1089 	hwc_debug("  --> (%u,%u) (changed = %d)\n", it->min, it->max, changed);
1090 	return changed;
1091 }
1092 
1093 /*
1094  *  If the device supports unusual bit rates, does the request meet these?
1095  */
1096 static int snd_usb_pcm_check_knot(struct snd_pcm_runtime *runtime,
1097 				  struct snd_usb_substream *subs)
1098 {
1099 	struct audioformat *fp;
1100 	int *rate_list;
1101 	int count = 0, needs_knot = 0;
1102 	int err;
1103 
1104 	kfree(subs->rate_list.list);
1105 	subs->rate_list.list = NULL;
1106 
1107 	list_for_each_entry(fp, &subs->fmt_list, list) {
1108 		if (fp->rates & SNDRV_PCM_RATE_CONTINUOUS)
1109 			return 0;
1110 		count += fp->nr_rates;
1111 		if (fp->rates & SNDRV_PCM_RATE_KNOT)
1112 			needs_knot = 1;
1113 	}
1114 	if (!needs_knot)
1115 		return 0;
1116 
1117 	subs->rate_list.list = rate_list =
1118 		kmalloc(sizeof(int) * count, GFP_KERNEL);
1119 	if (!subs->rate_list.list)
1120 		return -ENOMEM;
1121 	subs->rate_list.count = count;
1122 	subs->rate_list.mask = 0;
1123 	count = 0;
1124 	list_for_each_entry(fp, &subs->fmt_list, list) {
1125 		int i;
1126 		for (i = 0; i < fp->nr_rates; i++)
1127 			rate_list[count++] = fp->rate_table[i];
1128 	}
1129 	err = snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
1130 					 &subs->rate_list);
1131 	if (err < 0)
1132 		return err;
1133 
1134 	return 0;
1135 }
1136 
1137 
1138 /*
1139  * set up the runtime hardware information.
1140  */
1141 
1142 static int setup_hw_info(struct snd_pcm_runtime *runtime, struct snd_usb_substream *subs)
1143 {
1144 	struct audioformat *fp;
1145 	unsigned int pt, ptmin;
1146 	int param_period_time_if_needed;
1147 	int err;
1148 
1149 	runtime->hw.formats = subs->formats;
1150 
1151 	runtime->hw.rate_min = 0x7fffffff;
1152 	runtime->hw.rate_max = 0;
1153 	runtime->hw.channels_min = 256;
1154 	runtime->hw.channels_max = 0;
1155 	runtime->hw.rates = 0;
1156 	ptmin = UINT_MAX;
1157 	/* check min/max rates and channels */
1158 	list_for_each_entry(fp, &subs->fmt_list, list) {
1159 		runtime->hw.rates |= fp->rates;
1160 		if (runtime->hw.rate_min > fp->rate_min)
1161 			runtime->hw.rate_min = fp->rate_min;
1162 		if (runtime->hw.rate_max < fp->rate_max)
1163 			runtime->hw.rate_max = fp->rate_max;
1164 		if (runtime->hw.channels_min > fp->channels)
1165 			runtime->hw.channels_min = fp->channels;
1166 		if (runtime->hw.channels_max < fp->channels)
1167 			runtime->hw.channels_max = fp->channels;
1168 		if (fp->fmt_type == UAC_FORMAT_TYPE_II && fp->frame_size > 0) {
1169 			/* FIXME: there might be more than one audio formats... */
1170 			runtime->hw.period_bytes_min = runtime->hw.period_bytes_max =
1171 				fp->frame_size;
1172 		}
1173 		pt = 125 * (1 << fp->datainterval);
1174 		ptmin = min(ptmin, pt);
1175 	}
1176 
1177 	param_period_time_if_needed = SNDRV_PCM_HW_PARAM_PERIOD_TIME;
1178 	if (subs->speed == USB_SPEED_FULL)
1179 		/* full speed devices have fixed data packet interval */
1180 		ptmin = 1000;
1181 	if (ptmin == 1000)
1182 		/* if period time doesn't go below 1 ms, no rules needed */
1183 		param_period_time_if_needed = -1;
1184 
1185 	err = snd_pcm_hw_constraint_minmax(runtime,
1186 					   SNDRV_PCM_HW_PARAM_PERIOD_TIME,
1187 					   ptmin, UINT_MAX);
1188 	if (err < 0)
1189 		return err;
1190 
1191 	err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
1192 				  hw_rule_rate, subs,
1193 				  SNDRV_PCM_HW_PARAM_FORMAT,
1194 				  SNDRV_PCM_HW_PARAM_CHANNELS,
1195 				  param_period_time_if_needed,
1196 				  -1);
1197 	if (err < 0)
1198 		return err;
1199 	err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS,
1200 				  hw_rule_channels, subs,
1201 				  SNDRV_PCM_HW_PARAM_FORMAT,
1202 				  SNDRV_PCM_HW_PARAM_RATE,
1203 				  param_period_time_if_needed,
1204 				  -1);
1205 	if (err < 0)
1206 		return err;
1207 	err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_FORMAT,
1208 				  hw_rule_format, subs,
1209 				  SNDRV_PCM_HW_PARAM_RATE,
1210 				  SNDRV_PCM_HW_PARAM_CHANNELS,
1211 				  param_period_time_if_needed,
1212 				  -1);
1213 	if (err < 0)
1214 		return err;
1215 	if (param_period_time_if_needed >= 0) {
1216 		err = snd_pcm_hw_rule_add(runtime, 0,
1217 					  SNDRV_PCM_HW_PARAM_PERIOD_TIME,
1218 					  hw_rule_period_time, subs,
1219 					  SNDRV_PCM_HW_PARAM_FORMAT,
1220 					  SNDRV_PCM_HW_PARAM_CHANNELS,
1221 					  SNDRV_PCM_HW_PARAM_RATE,
1222 					  -1);
1223 		if (err < 0)
1224 			return err;
1225 	}
1226 	err = snd_usb_pcm_check_knot(runtime, subs);
1227 	if (err < 0)
1228 		return err;
1229 
1230 	return snd_usb_autoresume(subs->stream->chip);
1231 }
1232 
1233 static int snd_usb_pcm_open(struct snd_pcm_substream *substream)
1234 {
1235 	int direction = substream->stream;
1236 	struct snd_usb_stream *as = snd_pcm_substream_chip(substream);
1237 	struct snd_pcm_runtime *runtime = substream->runtime;
1238 	struct snd_usb_substream *subs = &as->substream[direction];
1239 
1240 	subs->interface = -1;
1241 	subs->altset_idx = 0;
1242 	runtime->hw = snd_usb_hardware;
1243 	runtime->private_data = subs;
1244 	subs->pcm_substream = substream;
1245 	/* runtime PM is also done there */
1246 
1247 	/* initialize DSD/DOP context */
1248 	subs->dsd_dop.byte_idx = 0;
1249 	subs->dsd_dop.channel = 0;
1250 	subs->dsd_dop.marker = 1;
1251 
1252 	return setup_hw_info(runtime, subs);
1253 }
1254 
1255 static int snd_usb_pcm_close(struct snd_pcm_substream *substream)
1256 {
1257 	int direction = substream->stream;
1258 	struct snd_usb_stream *as = snd_pcm_substream_chip(substream);
1259 	struct snd_usb_substream *subs = &as->substream[direction];
1260 
1261 	stop_endpoints(subs, true);
1262 
1263 	if (!as->chip->keep_iface &&
1264 	    subs->interface >= 0 &&
1265 	    !snd_usb_lock_shutdown(subs->stream->chip)) {
1266 		usb_set_interface(subs->dev, subs->interface, 0);
1267 		subs->interface = -1;
1268 		snd_usb_unlock_shutdown(subs->stream->chip);
1269 	}
1270 
1271 	subs->pcm_substream = NULL;
1272 	snd_usb_autosuspend(subs->stream->chip);
1273 
1274 	return 0;
1275 }
1276 
1277 /* Since a URB can handle only a single linear buffer, we must use double
1278  * buffering when the data to be transferred overflows the buffer boundary.
1279  * To avoid inconsistencies when updating hwptr_done, we use double buffering
1280  * for all URBs.
1281  */
1282 static void retire_capture_urb(struct snd_usb_substream *subs,
1283 			       struct urb *urb)
1284 {
1285 	struct snd_pcm_runtime *runtime = subs->pcm_substream->runtime;
1286 	unsigned int stride, frames, bytes, oldptr;
1287 	int i, period_elapsed = 0;
1288 	unsigned long flags;
1289 	unsigned char *cp;
1290 	int current_frame_number;
1291 
1292 	/* read frame number here, update pointer in critical section */
1293 	current_frame_number = usb_get_current_frame_number(subs->dev);
1294 
1295 	stride = runtime->frame_bits >> 3;
1296 
1297 	for (i = 0; i < urb->number_of_packets; i++) {
1298 		cp = (unsigned char *)urb->transfer_buffer + urb->iso_frame_desc[i].offset + subs->pkt_offset_adj;
1299 		if (urb->iso_frame_desc[i].status && printk_ratelimit()) {
1300 			dev_dbg(&subs->dev->dev, "frame %d active: %d\n",
1301 				i, urb->iso_frame_desc[i].status);
1302 			// continue;
1303 		}
1304 		bytes = urb->iso_frame_desc[i].actual_length;
1305 		frames = bytes / stride;
1306 		if (!subs->txfr_quirk)
1307 			bytes = frames * stride;
1308 		if (bytes % (runtime->sample_bits >> 3) != 0) {
1309 			int oldbytes = bytes;
1310 			bytes = frames * stride;
1311 			dev_warn_ratelimited(&subs->dev->dev,
1312 				 "Corrected urb data len. %d->%d\n",
1313 							oldbytes, bytes);
1314 		}
1315 		/* update the current pointer */
1316 		spin_lock_irqsave(&subs->lock, flags);
1317 		oldptr = subs->hwptr_done;
1318 		subs->hwptr_done += bytes;
1319 		if (subs->hwptr_done >= runtime->buffer_size * stride)
1320 			subs->hwptr_done -= runtime->buffer_size * stride;
1321 		frames = (bytes + (oldptr % stride)) / stride;
1322 		subs->transfer_done += frames;
1323 		if (subs->transfer_done >= runtime->period_size) {
1324 			subs->transfer_done -= runtime->period_size;
1325 			period_elapsed = 1;
1326 		}
1327 		/* capture delay is by construction limited to one URB,
1328 		 * reset delays here
1329 		 */
1330 		runtime->delay = subs->last_delay = 0;
1331 
1332 		/* realign last_frame_number */
1333 		subs->last_frame_number = current_frame_number;
1334 		subs->last_frame_number &= 0xFF; /* keep 8 LSBs */
1335 
1336 		spin_unlock_irqrestore(&subs->lock, flags);
1337 		/* copy a data chunk */
1338 		if (oldptr + bytes > runtime->buffer_size * stride) {
1339 			unsigned int bytes1 =
1340 					runtime->buffer_size * stride - oldptr;
1341 			memcpy(runtime->dma_area + oldptr, cp, bytes1);
1342 			memcpy(runtime->dma_area, cp + bytes1, bytes - bytes1);
1343 		} else {
1344 			memcpy(runtime->dma_area + oldptr, cp, bytes);
1345 		}
1346 	}
1347 
1348 	if (period_elapsed)
1349 		snd_pcm_period_elapsed(subs->pcm_substream);
1350 }
1351 
1352 static inline void fill_playback_urb_dsd_dop(struct snd_usb_substream *subs,
1353 					     struct urb *urb, unsigned int bytes)
1354 {
1355 	struct snd_pcm_runtime *runtime = subs->pcm_substream->runtime;
1356 	unsigned int stride = runtime->frame_bits >> 3;
1357 	unsigned int dst_idx = 0;
1358 	unsigned int src_idx = subs->hwptr_done;
1359 	unsigned int wrap = runtime->buffer_size * stride;
1360 	u8 *dst = urb->transfer_buffer;
1361 	u8 *src = runtime->dma_area;
1362 	u8 marker[] = { 0x05, 0xfa };
1363 
1364 	/*
1365 	 * The DSP DOP format defines a way to transport DSD samples over
1366 	 * normal PCM data endpoints. It requires stuffing of marker bytes
1367 	 * (0x05 and 0xfa, alternating per sample frame), and then expects
1368 	 * 2 additional bytes of actual payload. The whole frame is stored
1369 	 * LSB.
1370 	 *
1371 	 * Hence, for a stereo transport, the buffer layout looks like this,
1372 	 * where L refers to left channel samples and R to right.
1373 	 *
1374 	 *   L1 L2 0x05   R1 R2 0x05   L3 L4 0xfa  R3 R4 0xfa
1375 	 *   L5 L6 0x05   R5 R6 0x05   L7 L8 0xfa  R7 R8 0xfa
1376 	 *   .....
1377 	 *
1378 	 */
1379 
1380 	while (bytes--) {
1381 		if (++subs->dsd_dop.byte_idx == 3) {
1382 			/* frame boundary? */
1383 			dst[dst_idx++] = marker[subs->dsd_dop.marker];
1384 			src_idx += 2;
1385 			subs->dsd_dop.byte_idx = 0;
1386 
1387 			if (++subs->dsd_dop.channel % runtime->channels == 0) {
1388 				/* alternate the marker */
1389 				subs->dsd_dop.marker++;
1390 				subs->dsd_dop.marker %= ARRAY_SIZE(marker);
1391 				subs->dsd_dop.channel = 0;
1392 			}
1393 		} else {
1394 			/* stuff the DSD payload */
1395 			int idx = (src_idx + subs->dsd_dop.byte_idx - 1) % wrap;
1396 
1397 			if (subs->cur_audiofmt->dsd_bitrev)
1398 				dst[dst_idx++] = bitrev8(src[idx]);
1399 			else
1400 				dst[dst_idx++] = src[idx];
1401 
1402 			subs->hwptr_done++;
1403 		}
1404 	}
1405 	if (subs->hwptr_done >= runtime->buffer_size * stride)
1406 		subs->hwptr_done -= runtime->buffer_size * stride;
1407 }
1408 
1409 static void copy_to_urb(struct snd_usb_substream *subs, struct urb *urb,
1410 			int offset, int stride, unsigned int bytes)
1411 {
1412 	struct snd_pcm_runtime *runtime = subs->pcm_substream->runtime;
1413 
1414 	if (subs->hwptr_done + bytes > runtime->buffer_size * stride) {
1415 		/* err, the transferred area goes over buffer boundary. */
1416 		unsigned int bytes1 =
1417 			runtime->buffer_size * stride - subs->hwptr_done;
1418 		memcpy(urb->transfer_buffer + offset,
1419 		       runtime->dma_area + subs->hwptr_done, bytes1);
1420 		memcpy(urb->transfer_buffer + offset + bytes1,
1421 		       runtime->dma_area, bytes - bytes1);
1422 	} else {
1423 		memcpy(urb->transfer_buffer + offset,
1424 		       runtime->dma_area + subs->hwptr_done, bytes);
1425 	}
1426 	subs->hwptr_done += bytes;
1427 	if (subs->hwptr_done >= runtime->buffer_size * stride)
1428 		subs->hwptr_done -= runtime->buffer_size * stride;
1429 }
1430 
1431 static unsigned int copy_to_urb_quirk(struct snd_usb_substream *subs,
1432 				      struct urb *urb, int stride,
1433 				      unsigned int bytes)
1434 {
1435 	__le32 packet_length;
1436 	int i;
1437 
1438 	/* Put __le32 length descriptor at start of each packet. */
1439 	for (i = 0; i < urb->number_of_packets; i++) {
1440 		unsigned int length = urb->iso_frame_desc[i].length;
1441 		unsigned int offset = urb->iso_frame_desc[i].offset;
1442 
1443 		packet_length = cpu_to_le32(length);
1444 		offset += i * sizeof(packet_length);
1445 		urb->iso_frame_desc[i].offset = offset;
1446 		urb->iso_frame_desc[i].length += sizeof(packet_length);
1447 		memcpy(urb->transfer_buffer + offset,
1448 		       &packet_length, sizeof(packet_length));
1449 		copy_to_urb(subs, urb, offset + sizeof(packet_length),
1450 			    stride, length);
1451 	}
1452 	/* Adjust transfer size accordingly. */
1453 	bytes += urb->number_of_packets * sizeof(packet_length);
1454 	return bytes;
1455 }
1456 
1457 static void prepare_playback_urb(struct snd_usb_substream *subs,
1458 				 struct urb *urb)
1459 {
1460 	struct snd_pcm_runtime *runtime = subs->pcm_substream->runtime;
1461 	struct snd_usb_endpoint *ep = subs->data_endpoint;
1462 	struct snd_urb_ctx *ctx = urb->context;
1463 	unsigned int counts, frames, bytes;
1464 	int i, stride, period_elapsed = 0;
1465 	unsigned long flags;
1466 
1467 	stride = runtime->frame_bits >> 3;
1468 
1469 	frames = 0;
1470 	urb->number_of_packets = 0;
1471 	spin_lock_irqsave(&subs->lock, flags);
1472 	subs->frame_limit += ep->max_urb_frames;
1473 	for (i = 0; i < ctx->packets; i++) {
1474 		if (ctx->packet_size[i])
1475 			counts = ctx->packet_size[i];
1476 		else
1477 			counts = snd_usb_endpoint_next_packet_size(ep);
1478 
1479 		/* set up descriptor */
1480 		urb->iso_frame_desc[i].offset = frames * ep->stride;
1481 		urb->iso_frame_desc[i].length = counts * ep->stride;
1482 		frames += counts;
1483 		urb->number_of_packets++;
1484 		subs->transfer_done += counts;
1485 		if (subs->transfer_done >= runtime->period_size) {
1486 			subs->transfer_done -= runtime->period_size;
1487 			subs->frame_limit = 0;
1488 			period_elapsed = 1;
1489 			if (subs->fmt_type == UAC_FORMAT_TYPE_II) {
1490 				if (subs->transfer_done > 0) {
1491 					/* FIXME: fill-max mode is not
1492 					 * supported yet */
1493 					frames -= subs->transfer_done;
1494 					counts -= subs->transfer_done;
1495 					urb->iso_frame_desc[i].length =
1496 						counts * ep->stride;
1497 					subs->transfer_done = 0;
1498 				}
1499 				i++;
1500 				if (i < ctx->packets) {
1501 					/* add a transfer delimiter */
1502 					urb->iso_frame_desc[i].offset =
1503 						frames * ep->stride;
1504 					urb->iso_frame_desc[i].length = 0;
1505 					urb->number_of_packets++;
1506 				}
1507 				break;
1508 			}
1509 		}
1510 		/* finish at the period boundary or after enough frames */
1511 		if ((period_elapsed ||
1512 				subs->transfer_done >= subs->frame_limit) &&
1513 		    !snd_usb_endpoint_implicit_feedback_sink(ep))
1514 			break;
1515 	}
1516 	bytes = frames * ep->stride;
1517 
1518 	if (unlikely(subs->pcm_format == SNDRV_PCM_FORMAT_DSD_U16_LE &&
1519 		     subs->cur_audiofmt->dsd_dop)) {
1520 		fill_playback_urb_dsd_dop(subs, urb, bytes);
1521 	} else if (unlikely(subs->pcm_format == SNDRV_PCM_FORMAT_DSD_U8 &&
1522 			   subs->cur_audiofmt->dsd_bitrev)) {
1523 		/* bit-reverse the bytes */
1524 		u8 *buf = urb->transfer_buffer;
1525 		for (i = 0; i < bytes; i++) {
1526 			int idx = (subs->hwptr_done + i)
1527 				% (runtime->buffer_size * stride);
1528 			buf[i] = bitrev8(runtime->dma_area[idx]);
1529 		}
1530 
1531 		subs->hwptr_done += bytes;
1532 		if (subs->hwptr_done >= runtime->buffer_size * stride)
1533 			subs->hwptr_done -= runtime->buffer_size * stride;
1534 	} else {
1535 		/* usual PCM */
1536 		if (!subs->tx_length_quirk)
1537 			copy_to_urb(subs, urb, 0, stride, bytes);
1538 		else
1539 			bytes = copy_to_urb_quirk(subs, urb, stride, bytes);
1540 			/* bytes is now amount of outgoing data */
1541 	}
1542 
1543 	/* update delay with exact number of samples queued */
1544 	runtime->delay = subs->last_delay;
1545 	runtime->delay += frames;
1546 	subs->last_delay = runtime->delay;
1547 
1548 	/* realign last_frame_number */
1549 	subs->last_frame_number = usb_get_current_frame_number(subs->dev);
1550 	subs->last_frame_number &= 0xFF; /* keep 8 LSBs */
1551 
1552 	if (subs->trigger_tstamp_pending_update) {
1553 		/* this is the first actual URB submitted,
1554 		 * update trigger timestamp to reflect actual start time
1555 		 */
1556 		snd_pcm_gettime(runtime, &runtime->trigger_tstamp);
1557 		subs->trigger_tstamp_pending_update = false;
1558 	}
1559 
1560 	spin_unlock_irqrestore(&subs->lock, flags);
1561 	urb->transfer_buffer_length = bytes;
1562 	if (period_elapsed)
1563 		snd_pcm_period_elapsed(subs->pcm_substream);
1564 }
1565 
1566 /*
1567  * process after playback data complete
1568  * - decrease the delay count again
1569  */
1570 static void retire_playback_urb(struct snd_usb_substream *subs,
1571 			       struct urb *urb)
1572 {
1573 	unsigned long flags;
1574 	struct snd_pcm_runtime *runtime = subs->pcm_substream->runtime;
1575 	struct snd_usb_endpoint *ep = subs->data_endpoint;
1576 	int processed = urb->transfer_buffer_length / ep->stride;
1577 	int est_delay;
1578 
1579 	/* ignore the delay accounting when procssed=0 is given, i.e.
1580 	 * silent payloads are procssed before handling the actual data
1581 	 */
1582 	if (!processed)
1583 		return;
1584 
1585 	spin_lock_irqsave(&subs->lock, flags);
1586 	if (!subs->last_delay)
1587 		goto out; /* short path */
1588 
1589 	est_delay = snd_usb_pcm_delay(subs, runtime->rate);
1590 	/* update delay with exact number of samples played */
1591 	if (processed > subs->last_delay)
1592 		subs->last_delay = 0;
1593 	else
1594 		subs->last_delay -= processed;
1595 	runtime->delay = subs->last_delay;
1596 
1597 	/*
1598 	 * Report when delay estimate is off by more than 2ms.
1599 	 * The error should be lower than 2ms since the estimate relies
1600 	 * on two reads of a counter updated every ms.
1601 	 */
1602 	if (abs(est_delay - subs->last_delay) * 1000 > runtime->rate * 2)
1603 		dev_dbg_ratelimited(&subs->dev->dev,
1604 			"delay: estimated %d, actual %d\n",
1605 			est_delay, subs->last_delay);
1606 
1607 	if (!subs->running) {
1608 		/* update last_frame_number for delay counting here since
1609 		 * prepare_playback_urb won't be called during pause
1610 		 */
1611 		subs->last_frame_number =
1612 			usb_get_current_frame_number(subs->dev) & 0xff;
1613 	}
1614 
1615  out:
1616 	spin_unlock_irqrestore(&subs->lock, flags);
1617 }
1618 
1619 static int snd_usb_substream_playback_trigger(struct snd_pcm_substream *substream,
1620 					      int cmd)
1621 {
1622 	struct snd_usb_substream *subs = substream->runtime->private_data;
1623 
1624 	switch (cmd) {
1625 	case SNDRV_PCM_TRIGGER_START:
1626 		subs->trigger_tstamp_pending_update = true;
1627 	case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
1628 		subs->data_endpoint->prepare_data_urb = prepare_playback_urb;
1629 		subs->data_endpoint->retire_data_urb = retire_playback_urb;
1630 		subs->running = 1;
1631 		return 0;
1632 	case SNDRV_PCM_TRIGGER_STOP:
1633 		stop_endpoints(subs, false);
1634 		subs->running = 0;
1635 		return 0;
1636 	case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
1637 		subs->data_endpoint->prepare_data_urb = NULL;
1638 		/* keep retire_data_urb for delay calculation */
1639 		subs->data_endpoint->retire_data_urb = retire_playback_urb;
1640 		subs->running = 0;
1641 		return 0;
1642 	}
1643 
1644 	return -EINVAL;
1645 }
1646 
1647 static int snd_usb_substream_capture_trigger(struct snd_pcm_substream *substream,
1648 					     int cmd)
1649 {
1650 	int err;
1651 	struct snd_usb_substream *subs = substream->runtime->private_data;
1652 
1653 	switch (cmd) {
1654 	case SNDRV_PCM_TRIGGER_START:
1655 		err = start_endpoints(subs);
1656 		if (err < 0)
1657 			return err;
1658 
1659 		subs->data_endpoint->retire_data_urb = retire_capture_urb;
1660 		subs->running = 1;
1661 		return 0;
1662 	case SNDRV_PCM_TRIGGER_STOP:
1663 		stop_endpoints(subs, false);
1664 		subs->running = 0;
1665 		return 0;
1666 	case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
1667 		subs->data_endpoint->retire_data_urb = NULL;
1668 		subs->running = 0;
1669 		return 0;
1670 	case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
1671 		subs->data_endpoint->retire_data_urb = retire_capture_urb;
1672 		subs->running = 1;
1673 		return 0;
1674 	}
1675 
1676 	return -EINVAL;
1677 }
1678 
1679 static const struct snd_pcm_ops snd_usb_playback_ops = {
1680 	.open =		snd_usb_pcm_open,
1681 	.close =	snd_usb_pcm_close,
1682 	.ioctl =	snd_pcm_lib_ioctl,
1683 	.hw_params =	snd_usb_hw_params,
1684 	.hw_free =	snd_usb_hw_free,
1685 	.prepare =	snd_usb_pcm_prepare,
1686 	.trigger =	snd_usb_substream_playback_trigger,
1687 	.pointer =	snd_usb_pcm_pointer,
1688 	.page =		snd_pcm_lib_get_vmalloc_page,
1689 	.mmap =		snd_pcm_lib_mmap_vmalloc,
1690 };
1691 
1692 static const struct snd_pcm_ops snd_usb_capture_ops = {
1693 	.open =		snd_usb_pcm_open,
1694 	.close =	snd_usb_pcm_close,
1695 	.ioctl =	snd_pcm_lib_ioctl,
1696 	.hw_params =	snd_usb_hw_params,
1697 	.hw_free =	snd_usb_hw_free,
1698 	.prepare =	snd_usb_pcm_prepare,
1699 	.trigger =	snd_usb_substream_capture_trigger,
1700 	.pointer =	snd_usb_pcm_pointer,
1701 	.page =		snd_pcm_lib_get_vmalloc_page,
1702 	.mmap =		snd_pcm_lib_mmap_vmalloc,
1703 };
1704 
1705 void snd_usb_set_pcm_ops(struct snd_pcm *pcm, int stream)
1706 {
1707 	snd_pcm_set_ops(pcm, stream,
1708 			stream == SNDRV_PCM_STREAM_PLAYBACK ?
1709 			&snd_usb_playback_ops : &snd_usb_capture_ops);
1710 }
1711