pcm.c 54.2 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0-or-later
D
Daniel Mack 已提交
2 3 4 5
/*
 */

#include <linux/init.h>
6
#include <linux/slab.h>
7
#include <linux/bitrev.h>
8
#include <linux/ratelimit.h>
D
Daniel Mack 已提交
9 10
#include <linux/usb.h>
#include <linux/usb/audio.h>
D
Daniel Mack 已提交
11
#include <linux/usb/audio-v2.h>
D
Daniel Mack 已提交
12 13 14 15 16 17 18 19 20

#include <sound/core.h>
#include <sound/pcm.h>
#include <sound/pcm_params.h>

#include "usbaudio.h"
#include "card.h"
#include "quirks.h"
#include "debug.h"
21
#include "endpoint.h"
D
Daniel Mack 已提交
22 23
#include "helper.h"
#include "pcm.h"
24
#include "clock.h"
25
#include "power.h"
26
#include "media.h"
D
Daniel Mack 已提交
27

28 29 30
#define SUBSTREAM_FLAG_DATA_EP_STARTED	0
#define SUBSTREAM_FLAG_SYNC_EP_STARTED	1

31 32 33 34 35 36 37 38
/* return the estimated delay based on USB frame counters */
snd_pcm_uframes_t snd_usb_pcm_delay(struct snd_usb_substream *subs,
				    unsigned int rate)
{
	int current_frame_number;
	int frame_diff;
	int est_delay;

39 40 41
	if (!subs->last_delay)
		return 0; /* short path */

42 43 44 45 46 47 48 49 50 51
	current_frame_number = usb_get_current_frame_number(subs->dev);
	/*
	 * HCD implementations use different widths, use lower 8 bits.
	 * The delay will be managed up to 256ms, which is more than
	 * enough
	 */
	frame_diff = (current_frame_number - subs->last_frame_number) & 0xff;

	/* Approximation based on number of samples per USB frame (ms),
	   some truncation for 44.1 but the estimate is good enough */
52 53 54 55 56 57
	est_delay =  frame_diff * rate / 1000;
	if (subs->direction == SNDRV_PCM_STREAM_PLAYBACK)
		est_delay = subs->last_delay - est_delay;
	else
		est_delay = subs->last_delay + est_delay;

58 59 60 61 62
	if (est_delay < 0)
		est_delay = 0;
	return est_delay;
}

D
Daniel Mack 已提交
63 64 65 66 67
/*
 * return the current pcm pointer.  just based on the hwptr_done value.
 */
static snd_pcm_uframes_t snd_usb_pcm_pointer(struct snd_pcm_substream *substream)
{
68
	struct snd_usb_substream *subs = substream->runtime->private_data;
D
Daniel Mack 已提交
69 70
	unsigned int hwptr_done;

71
	if (atomic_read(&subs->stream->chip->shutdown))
72
		return SNDRV_PCM_POS_XRUN;
D
Daniel Mack 已提交
73 74
	spin_lock(&subs->lock);
	hwptr_done = subs->hwptr_done;
75
	substream->runtime->delay = snd_usb_pcm_delay(subs,
76
						substream->runtime->rate);
D
Daniel Mack 已提交
77 78 79 80 81 82 83
	spin_unlock(&subs->lock);
	return hwptr_done / (substream->runtime->frame_bits >> 3);
}

/*
 * find a matching audio format
 */
84 85 86 87 88
static struct audioformat *find_format(struct list_head *fmt_list_head,
				       snd_pcm_format_t format,
				       unsigned int rate,
				       unsigned int channels,
				       struct snd_usb_substream *subs)
D
Daniel Mack 已提交
89
{
90
	struct audioformat *fp;
D
Daniel Mack 已提交
91 92 93
	struct audioformat *found = NULL;
	int cur_attr = 0, attr;

94 95
	list_for_each_entry(fp, fmt_list_head, list) {
		if (!(fp->formats & pcm_format_to_bits(format)))
96
			continue;
97
		if (fp->channels != channels)
D
Daniel Mack 已提交
98
			continue;
99
		if (rate < fp->rate_min || rate > fp->rate_max)
D
Daniel Mack 已提交
100
			continue;
101
		if (!(fp->rates & SNDRV_PCM_RATE_CONTINUOUS)) {
D
Daniel Mack 已提交
102 103
			unsigned int i;
			for (i = 0; i < fp->nr_rates; i++)
104
				if (fp->rate_table[i] == rate)
D
Daniel Mack 已提交
105 106 107 108 109
					break;
			if (i >= fp->nr_rates)
				continue;
		}
		attr = fp->ep_attr & USB_ENDPOINT_SYNCTYPE;
110
		if (!found) {
D
Daniel Mack 已提交
111 112 113 114 115 116 117 118 119
			found = fp;
			cur_attr = attr;
			continue;
		}
		/* avoid async out and adaptive in if the other method
		 * supports the same format.
		 * this is a workaround for the case like
		 * M-audio audiophile USB.
		 */
120
		if (subs && attr != cur_attr) {
D
Daniel Mack 已提交
121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
			if ((attr == USB_ENDPOINT_SYNC_ASYNC &&
			     subs->direction == SNDRV_PCM_STREAM_PLAYBACK) ||
			    (attr == USB_ENDPOINT_SYNC_ADAPTIVE &&
			     subs->direction == SNDRV_PCM_STREAM_CAPTURE))
				continue;
			if ((cur_attr == USB_ENDPOINT_SYNC_ASYNC &&
			     subs->direction == SNDRV_PCM_STREAM_PLAYBACK) ||
			    (cur_attr == USB_ENDPOINT_SYNC_ADAPTIVE &&
			     subs->direction == SNDRV_PCM_STREAM_CAPTURE)) {
				found = fp;
				cur_attr = attr;
				continue;
			}
		}
		/* find the format with the largest max. packet size */
		if (fp->maxpacksize > found->maxpacksize) {
			found = fp;
			cur_attr = attr;
		}
	}
	return found;
}

144 145 146 147 148 149
static struct audioformat *find_substream_format(struct snd_usb_substream *subs)
{
	return find_format(&subs->fmt_list, subs->pcm_format, subs->cur_rate,
			   subs->channels, subs);
}

150 151 152 153 154 155 156 157 158
static int init_pitch_v1(struct snd_usb_audio *chip, int iface,
			 struct usb_host_interface *alts,
			 struct audioformat *fmt)
{
	struct usb_device *dev = chip->dev;
	unsigned int ep;
	unsigned char data[1];
	int err;

159 160
	if (get_iface_desc(alts)->bNumEndpoints < 1)
		return -EINVAL;
161 162 163
	ep = get_endpoint(alts, 0)->bEndpointAddress;

	data[0] = 1;
164 165 166 167 168
	err = snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), UAC_SET_CUR,
			      USB_TYPE_CLASS|USB_RECIP_ENDPOINT|USB_DIR_OUT,
			      UAC_EP_CS_ATTR_PITCH_CONTROL << 8, ep,
			      data, sizeof(data));
	if (err < 0) {
169 170
		usb_audio_err(chip, "%d:%d: cannot set enable PITCH\n",
			      iface, ep);
171 172 173 174 175
		return err;
	}

	return 0;
}
D
Daniel Mack 已提交
176

177 178 179 180 181 182 183 184 185
static int init_pitch_v2(struct snd_usb_audio *chip, int iface,
			 struct usb_host_interface *alts,
			 struct audioformat *fmt)
{
	struct usb_device *dev = chip->dev;
	unsigned char data[1];
	int err;

	data[0] = 1;
186 187 188 189 190
	err = snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), UAC2_CS_CUR,
			      USB_TYPE_CLASS | USB_RECIP_ENDPOINT | USB_DIR_OUT,
			      UAC2_EP_CS_PITCH << 8, 0,
			      data, sizeof(data));
	if (err < 0) {
191 192
		usb_audio_err(chip, "%d:%d: cannot set enable PITCH (v2)\n",
			      iface, fmt->altsetting);
193 194 195 196 197 198
		return err;
	}

	return 0;
}

D
Daniel Mack 已提交
199
/*
200
 * initialize the pitch control and sample rate
D
Daniel Mack 已提交
201
 */
202
int snd_usb_init_pitch(struct snd_usb_audio *chip, int iface,
D
Daniel Mack 已提交
203 204 205
		       struct usb_host_interface *alts,
		       struct audioformat *fmt)
{
206 207 208 209
	/* if endpoint doesn't have pitch control, bail out */
	if (!(fmt->attributes & UAC_EP_CS_ATTR_PITCH_CONTROL))
		return 0;

210
	switch (fmt->protocol) {
211
	case UAC_VERSION_1:
212
	default:
213 214 215
		return init_pitch_v1(chip, iface, alts, fmt);

	case UAC_VERSION_2:
216
		return init_pitch_v2(chip, iface, alts, fmt);
217 218 219
	}
}

220
static int start_endpoints(struct snd_usb_substream *subs)
221 222 223 224 225 226 227 228 229
{
	int err;

	if (!subs->data_endpoint)
		return -EINVAL;

	if (!test_and_set_bit(SUBSTREAM_FLAG_DATA_EP_STARTED, &subs->flags)) {
		struct snd_usb_endpoint *ep = subs->data_endpoint;

230
		dev_dbg(&subs->dev->dev, "Starting data EP 0x%x\n", ep->ep_num);
231 232

		ep->data_subs = subs;
233
		err = snd_usb_endpoint_start(ep);
234 235 236 237 238 239 240 241 242 243
		if (err < 0) {
			clear_bit(SUBSTREAM_FLAG_DATA_EP_STARTED, &subs->flags);
			return err;
		}
	}

	if (subs->sync_endpoint &&
	    !test_and_set_bit(SUBSTREAM_FLAG_SYNC_EP_STARTED, &subs->flags)) {
		struct snd_usb_endpoint *ep = subs->sync_endpoint;

244
		dev_dbg(&subs->dev->dev, "Starting sync EP 0x%x\n", ep->ep_num);
245 246

		ep->sync_slave = subs->data_endpoint;
247
		err = snd_usb_endpoint_start(ep);
248 249
		if (err < 0) {
			clear_bit(SUBSTREAM_FLAG_SYNC_EP_STARTED, &subs->flags);
250
			ep->sync_slave = NULL;
251 252 253 254 255 256 257
			return err;
		}
	}

	return 0;
}

258 259 260 261 262 263 264
static void sync_pending_stops(struct snd_usb_substream *subs)
{
	snd_usb_endpoint_sync_pending_stop(subs->sync_endpoint);
	snd_usb_endpoint_sync_pending_stop(subs->data_endpoint);
}

static void stop_endpoints(struct snd_usb_substream *subs)
265
{
266
	if (test_and_clear_bit(SUBSTREAM_FLAG_SYNC_EP_STARTED, &subs->flags)) {
267 268
		dev_dbg(&subs->dev->dev, "Stopping sync EP 0x%x\n",
			subs->sync_endpoint->ep_num);
269
		snd_usb_endpoint_stop(subs->sync_endpoint);
270 271
		subs->sync_endpoint->sync_slave = NULL;
	}
272

273 274 275
	if (test_and_clear_bit(SUBSTREAM_FLAG_DATA_EP_STARTED, &subs->flags)) {
		dev_dbg(&subs->dev->dev, "Stopping data EP 0x%x\n",
			subs->data_endpoint->ep_num);
276
		snd_usb_endpoint_stop(subs->data_endpoint);
277
	}
278
}
279

280 281 282 283 284 285 286 287
/* PCM sync_stop callback */
static int snd_usb_pcm_sync_stop(struct snd_pcm_substream *substream)
{
	struct snd_usb_substream *subs = substream->runtime->private_data;

	if (!snd_usb_lock_shutdown(subs->stream->chip)) {
		sync_pending_stops(subs);
		snd_usb_unlock_shutdown(subs->stream->chip);
288
	}
289
	return 0;
290 291
}

292 293 294 295 296
/* Check whether the given iface:altsetting points to an implicit fb source */
static bool search_generic_implicit_fb(struct usb_device *dev, int ifnum,
				       unsigned int altsetting,
				       struct usb_host_interface **altsp,
				       unsigned int *ep)
297 298
{
	struct usb_interface *iface;
299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332
	struct usb_host_interface *alts;
	struct usb_interface_descriptor *altsd;
	struct usb_endpoint_descriptor *epd;

	iface = usb_ifnum_to_if(dev, ifnum);
	if (!iface)
		return false;
	alts = usb_altnum_to_altsetting(iface, altsetting);
	if (!alts)
		return false;
	altsd = get_iface_desc(alts);
	if (altsd->bInterfaceClass != USB_CLASS_AUDIO ||
	    altsd->bInterfaceSubClass != USB_SUBCLASS_AUDIOSTREAMING ||
	    altsd->bInterfaceProtocol != UAC_VERSION_2 ||
	    altsd->bNumEndpoints < 1)
		return false;
	epd = get_endpoint(alts, 0);
	if (!usb_endpoint_is_isoc_in(epd) ||
	    (epd->bmAttributes & USB_ENDPOINT_USAGE_MASK) !=
					USB_ENDPOINT_USAGE_IMPLICIT_FB)
		return false;
	*ep = epd->bEndpointAddress;
	*altsp = alts;
	return true;
}

/* Like the function above, but specific to Roland with vendor class and hack */
static bool search_roland_implicit_fb(struct usb_device *dev, int ifnum,
				      unsigned int altsetting,
				      struct usb_host_interface **altsp,
				      unsigned int *ep)
{
	struct usb_interface *iface;
	struct usb_host_interface *alts;
333 334 335 336
	struct usb_interface_descriptor *altsd;
	struct usb_endpoint_descriptor *epd;

	iface = usb_ifnum_to_if(dev, ifnum);
337 338 339 340 341 342 343
	if (!iface)
		return false;
	alts = usb_altnum_to_altsetting(iface, altsetting);
	if (!alts)
		return false;
	altsd = get_iface_desc(alts);
	if (altsd->bInterfaceClass != USB_CLASS_VENDOR_SPEC ||
344
	    (altsd->bInterfaceSubClass != 2 &&
345
	     altsd->bInterfaceProtocol != 2) ||
346
	    altsd->bNumEndpoints < 1)
347 348
		return false;
	epd = get_endpoint(alts, 0);
349 350 351
	if (!usb_endpoint_is_isoc_in(epd) ||
	    (epd->bmAttributes & USB_ENDPOINT_USAGE_MASK) !=
					USB_ENDPOINT_USAGE_IMPLICIT_FB)
352
		return false;
353
	*ep = epd->bEndpointAddress;
354 355
	*altsp = alts;
	return true;
356 357
}

358 359 360
/* Setup an implicit feedback endpoint from a quirk. Returns 0 if no quirk
 * applies. Returns 1 if a quirk was found.
 */
361 362 363 364
static int audioformat_implicit_fb_quirk(struct snd_usb_audio *chip,
					 struct audioformat *fmt,
					 struct usb_interface *iface,
					 struct usb_host_interface *alts)
D
Daniel Mack 已提交
365
{
366 367 368
	struct usb_device *dev = chip->dev;
	struct usb_interface_descriptor *altsd = get_iface_desc(alts);
	unsigned int attr = fmt->ep_attr & USB_ENDPOINT_SYNCTYPE;
369
	unsigned int ep;
370
	unsigned int ifnum;
371

372
	switch (chip->usb_id) {
373
	case USB_ID(0x0763, 0x2030): /* M-Audio Fast Track C400 */
374
	case USB_ID(0x0763, 0x2031): /* M-Audio Fast Track C600 */
375
	case USB_ID(0x22f0, 0x0006): /* Allen&Heath Qu-16 */
376
		ep = 0x81;
377 378
		ifnum = 3;
		goto add_sync_ep_from_ifnum;
379 380
	case USB_ID(0x0763, 0x2080): /* M-Audio FastTrack Ultra */
	case USB_ID(0x0763, 0x2081):
381
		ep = 0x81;
382 383 384
		ifnum = 2;
		goto add_sync_ep_from_ifnum;
	case USB_ID(0x2466, 0x8003): /* Fractal Audio Axe-Fx II */
385
	case USB_ID(0x0499, 0x172a): /* Yamaha MODX */
386
		ep = 0x86;
387 388
		ifnum = 2;
		goto add_sync_ep_from_ifnum;
389 390 391 392
	case USB_ID(0x2466, 0x8010): /* Fractal Audio Axe-Fx III */
		ep = 0x81;
		ifnum = 2;
		goto add_sync_ep_from_ifnum;
393 394 395 396
	case USB_ID(0x1686, 0xf029): /* Zoom UAC-2 */
		ep = 0x82;
		ifnum = 2;
		goto add_sync_ep_from_ifnum;
397
	case USB_ID(0x1397, 0x0001): /* Behringer UFX1604 */
398
	case USB_ID(0x1397, 0x0002): /* Behringer UFX1204 */
399
		ep = 0x81;
400 401
		ifnum = 1;
		goto add_sync_ep_from_ifnum;
402 403 404 405 406 407
	case USB_ID(0x07fd, 0x0004): /* MOTU MicroBook II/IIc */
		/* MicroBook IIc */
		if (altsd->bInterfaceClass == USB_CLASS_AUDIO)
			return 0;

		/* MicroBook II */
408 409 410
		ep = 0x84;
		ifnum = 0;
		goto add_sync_ep_from_ifnum;
411
	case USB_ID(0x07fd, 0x0008): /* MOTU M Series */
412
	case USB_ID(0x31e9, 0x0001): /* Solid State Logic SSL2 */
413
	case USB_ID(0x31e9, 0x0002): /* Solid State Logic SSL2+ */
414
	case USB_ID(0x0499, 0x172f): /* Steinberg UR22C */
415
	case USB_ID(0x0d9a, 0x00df): /* RTX6001 */
416 417 418
		ep = 0x81;
		ifnum = 2;
		goto add_sync_ep_from_ifnum;
419
	case USB_ID(0x2b73, 0x000a): /* Pioneer DJ DJM-900NXS2 */
420
	case USB_ID(0x2b73, 0x0017): /* Pioneer DJ DJM-250MK2 */
421 422 423
		ep = 0x82;
		ifnum = 0;
		goto add_sync_ep_from_ifnum;
424 425 426
	case USB_ID(0x0582, 0x01d8): /* BOSS Katana */
		/* BOSS Katana amplifiers do not need quirks */
		return 0;
427
	}
428

429 430 431 432 433 434 435 436 437 438 439 440 441
	/* Generic UAC2 implicit feedback */
	if (attr == USB_ENDPOINT_SYNC_ASYNC &&
	    altsd->bInterfaceClass == USB_CLASS_AUDIO &&
	    altsd->bInterfaceProtocol == UAC_VERSION_2 &&
	    altsd->bNumEndpoints == 1) {
		ifnum = altsd->bInterfaceNumber + 1;
		if (search_generic_implicit_fb(dev, ifnum,
					       altsd->bAlternateSetting,
					       &alts, &ep))
			goto add_sync_ep;
	}

	/* Roland/BOSS implicit feedback with vendor spec class */
442
	if (attr == USB_ENDPOINT_SYNC_ASYNC &&
443 444 445
	    altsd->bInterfaceClass == USB_CLASS_VENDOR_SPEC &&
	    altsd->bInterfaceProtocol == 2 &&
	    altsd->bNumEndpoints == 1 &&
446 447 448 449 450 451 452
	    USB_ID_VENDOR(chip->usb_id) == 0x0582 /* Roland */) {
		ifnum = altsd->bInterfaceNumber + 1;
		if (search_roland_implicit_fb(dev, ifnum,
					      altsd->bAlternateSetting,
					      &alts, &ep))
			goto add_sync_ep;
	}
453

454 455 456
	/* No quirk */
	return 0;

457 458 459
add_sync_ep_from_ifnum:
	iface = usb_ifnum_to_if(dev, ifnum);

460
	if (!iface || iface->num_altsetting < 2)
461
		return 0;
462 463 464

	alts = &iface->altsetting[1];

465
add_sync_ep:
466 467 468 469 470 471 472
	fmt->sync_ep = ep;
	fmt->sync_iface = ifnum;
	fmt->sync_altsetting = alts->desc.bAlternateSetting;
	fmt->implicit_fb = 1;
	dev_dbg(&dev->dev, "%d:%d: found implicit_fb sync_ep=%x, iface=%d, alt=%d\n",
		fmt->iface, fmt->altsetting, fmt->sync_ep, fmt->sync_iface,
		fmt->sync_altsetting);
473

474
	return 1;
475 476
}

477 478
int snd_usb_audioformat_set_sync_ep(struct snd_usb_audio *chip,
				    struct audioformat *fmt)
479
{
480 481 482 483 484 485
	struct usb_device *dev = chip->dev;
	struct usb_interface *iface;
	struct usb_host_interface *alts;
	struct usb_interface_descriptor *altsd;
	unsigned int ep, attr, sync_attr;
	bool is_playback;
486 487
	int err;

488 489 490 491 492
	iface = usb_ifnum_to_if(dev, fmt->iface);
	if (!iface)
		return 0;
	alts = usb_altnum_to_altsetting(iface, fmt->altsetting);
	if (!alts)
493
		return 0;
494 495 496 497 498 499 500 501
	altsd = get_iface_desc(alts);

	is_playback = !(get_endpoint(alts, 0)->bEndpointAddress & USB_DIR_IN);
	if (is_playback) {
		err = audioformat_implicit_fb_quirk(chip, fmt, iface, alts);
		if (err > 0)
			return 0;
	}
502

503 504
	if (altsd->bNumEndpoints < 2)
		return 0;
505

506
	attr = fmt->ep_attr & USB_ENDPOINT_SYNCTYPE;
507 508
	if ((is_playback && (attr == USB_ENDPOINT_SYNC_SYNC ||
			     attr == USB_ENDPOINT_SYNC_ADAPTIVE)) ||
509 510
	    (!is_playback && attr != USB_ENDPOINT_SYNC_ADAPTIVE))
		return 0;
511

512 513
	sync_attr = get_endpoint(alts, 1)->bmAttributes;

514 515 516 517 518 519
	/*
	 * In case of illegal SYNC_NONE for OUT endpoint, we keep going to see
	 * if we don't find a sync endpoint, as on M-Audio Transit. In case of
	 * error fall back to SYNC mode and don't create sync endpoint
	 */

520 521 522 523
	/* check sync-pipe endpoint */
	/* ... and check descriptor size before accessing bSynchAddress
	   because there is a version of the SB Audigy 2 NX firmware lacking
	   the audio fields in the endpoint descriptors */
524
	if ((sync_attr & USB_ENDPOINT_XFERTYPE_MASK) != USB_ENDPOINT_XFER_ISOC ||
525
	    (get_endpoint(alts, 1)->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE &&
526
	     get_endpoint(alts, 1)->bSynchAddress != 0)) {
527 528 529
		dev_err(&dev->dev,
			"%d:%d : invalid sync pipe. bmAttributes %02x, bLength %d, bSynchAddress %02x\n",
			   fmt->iface, fmt->altsetting,
530 531 532
			   get_endpoint(alts, 1)->bmAttributes,
			   get_endpoint(alts, 1)->bLength,
			   get_endpoint(alts, 1)->bSynchAddress);
533 534
		if (is_playback && attr == USB_ENDPOINT_SYNC_NONE)
			return 0;
535 536 537
		return -EINVAL;
	}
	ep = get_endpoint(alts, 1)->bEndpointAddress;
538
	if (get_endpoint(alts, 0)->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE &&
539
	    get_endpoint(alts, 0)->bSynchAddress != 0 &&
540 541
	    ((is_playback && ep != (unsigned int)(get_endpoint(alts, 0)->bSynchAddress | USB_DIR_IN)) ||
	     (!is_playback && ep != (unsigned int)(get_endpoint(alts, 0)->bSynchAddress & ~USB_DIR_IN)))) {
542 543 544
		dev_err(&dev->dev,
			"%d:%d : invalid sync pipe. is_playback %d, ep %02x, bSynchAddress %02x\n",
			   fmt->iface, fmt->altsetting,
545
			   is_playback, ep, get_endpoint(alts, 0)->bSynchAddress);
546 547
		if (is_playback && attr == USB_ENDPOINT_SYNC_NONE)
			return 0;
548
		return -EINVAL;
549
	}
D
Daniel Mack 已提交
550

551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587
	fmt->sync_ep = ep;
	fmt->sync_iface = altsd->bInterfaceNumber;
	fmt->sync_altsetting = altsd->bAlternateSetting;
	if ((sync_attr & USB_ENDPOINT_USAGE_MASK) == USB_ENDPOINT_USAGE_IMPLICIT_FB)
		fmt->implicit_fb = 1;

	dev_dbg(&dev->dev, "%d:%d: found sync_ep=0x%x, iface=%d, alt=%d, implicit_fb=%d\n",
		fmt->iface, fmt->altsetting, fmt->sync_ep, fmt->sync_iface,
		fmt->sync_altsetting, fmt->implicit_fb);

	return 0;
}

static int set_sync_endpoint(struct snd_usb_substream *subs,
			     struct audioformat *fmt)
{
	struct usb_device *dev = subs->dev;
	struct usb_interface *iface;
	struct usb_host_interface *alts;
	int is_playback = subs->direction == SNDRV_PCM_STREAM_PLAYBACK;
	unsigned int ep;
	int err;

	subs->sync_endpoint = NULL;
	subs->data_endpoint->sync_master = NULL;

	ep = fmt->sync_ep;
	if (!ep)
		return 0;

	iface = usb_ifnum_to_if(dev, fmt->sync_iface);
	if (!iface)
		return 0;

	alts = usb_altnum_to_altsetting(iface, fmt->altsetting);
	if (!alts)
		return 0;
588 589 590

	subs->sync_endpoint = snd_usb_add_endpoint(subs->stream->chip,
						   alts, ep, !subs->direction,
591 592 593
						   fmt->implicit_fb ?
						   SND_USB_ENDPOINT_TYPE_DATA :
						   SND_USB_ENDPOINT_TYPE_SYNC);
594
	if (!subs->sync_endpoint) {
595 596
		if (is_playback &&
		    (fmt->ep_attr & USB_ENDPOINT_SYNCTYPE) == USB_ENDPOINT_SYNC_NONE)
597
			return 0;
598
		return -EINVAL;
599
	}
600

601
	subs->sync_endpoint->is_implicit_feedback = fmt->implicit_fb;
602

603 604
	subs->data_endpoint->sync_master = subs->sync_endpoint;

605 606 607 608 609 610 611 612 613 614 615 616 617
	if (subs->data_endpoint->iface != subs->sync_endpoint->iface ||
	    subs->data_endpoint->altsetting != subs->sync_endpoint->altsetting) {
		err = usb_set_interface(subs->dev,
					subs->sync_endpoint->iface,
					subs->sync_endpoint->altsetting);
		if (err < 0)
			return err;
		dev_dbg(&dev->dev, "setting usb interface %d:%d\n",
			subs->sync_endpoint->iface,
			subs->sync_endpoint->altsetting);
		snd_usb_set_interface_quirk(dev);
	}

618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633
	return 0;
}

/*
 * find a matching format and set up the interface
 */
static int set_format(struct snd_usb_substream *subs, struct audioformat *fmt)
{
	struct usb_device *dev = subs->dev;
	struct usb_host_interface *alts;
	struct usb_interface *iface;
	int err;

	iface = usb_ifnum_to_if(dev, fmt->iface);
	if (WARN_ON(!iface))
		return -EINVAL;
634
	alts = usb_altnum_to_altsetting(iface, fmt->altsetting);
635
	if (WARN_ON(!alts))
636 637
		return -EINVAL;

638
	if (fmt == subs->cur_audiofmt && !subs->need_setup_fmt)
639 640 641
		return 0;

	/* close the old interface */
642
	if (subs->interface >= 0 && (subs->interface != fmt->iface || subs->need_setup_fmt)) {
643 644 645 646 647 648 649 650
		if (!subs->stream->chip->keep_iface) {
			err = usb_set_interface(subs->dev, subs->interface, 0);
			if (err < 0) {
				dev_err(&dev->dev,
					"%d:%d: return to setting 0 failed (%d)\n",
					fmt->iface, fmt->altsetting, err);
				return -EIO;
			}
651 652 653 654 655
		}
		subs->interface = -1;
		subs->altset_idx = 0;
	}

656 657 658
	if (subs->need_setup_fmt)
		subs->need_setup_fmt = false;

659
	/* set interface */
660
	if (iface->cur_altsetting != alts) {
661 662 663 664
		err = snd_usb_select_mode_quirk(subs, fmt);
		if (err < 0)
			return -EIO;

665 666
		err = usb_set_interface(dev, fmt->iface, fmt->altsetting);
		if (err < 0) {
667 668 669
			dev_err(&dev->dev,
				"%d:%d: usb_set_interface failed (%d)\n",
				fmt->iface, fmt->altsetting, err);
670 671
			return -EIO;
		}
672 673
		dev_dbg(&dev->dev, "setting usb interface %d:%d\n",
			fmt->iface, fmt->altsetting);
674 675 676
		snd_usb_set_interface_quirk(dev);
	}

677 678
	subs->interface = fmt->iface;
	subs->altset_idx = fmt->altset_idx;
679 680 681 682 683 684 685
	subs->data_endpoint = snd_usb_add_endpoint(subs->stream->chip,
						   alts, fmt->endpoint, subs->direction,
						   SND_USB_ENDPOINT_TYPE_DATA);

	if (!subs->data_endpoint)
		return -EINVAL;

686
	err = set_sync_endpoint(subs, fmt);
687 688 689
	if (err < 0)
		return err;

690 691
	err = snd_usb_init_pitch(subs->stream->chip, fmt->iface, alts, fmt);
	if (err < 0)
D
Daniel Mack 已提交
692 693 694 695 696 697 698 699 700
		return err;

	subs->cur_audiofmt = fmt;

	snd_usb_set_format_quirk(subs, fmt);

	return 0;
}

701 702 703 704 705 706 707
/*
 * Return the score of matching two audioformats.
 * Veto the audioformat if:
 * - It has no channels for some reason.
 * - Requested PCM format is not supported.
 * - Requested sample rate is not supported.
 */
708 709 710 711
static int match_endpoint_audioformats(struct snd_usb_substream *subs,
				       struct audioformat *fp,
				       struct audioformat *match, int rate,
				       snd_pcm_format_t pcm_format)
712 713 714 715 716
{
	int i;
	int score = 0;

	if (fp->channels < 1) {
717 718
		dev_dbg(&subs->dev->dev,
			"%s: (fmt @%p) no channels\n", __func__, fp);
719 720 721
		return 0;
	}

722
	if (!(fp->formats & pcm_format_to_bits(pcm_format))) {
723 724
		dev_dbg(&subs->dev->dev,
			"%s: (fmt @%p) no match for format %d\n", __func__,
725 726 727 728 729 730 731 732 733 734 735
			fp, pcm_format);
		return 0;
	}

	for (i = 0; i < fp->nr_rates; i++) {
		if (fp->rate_table[i] == rate) {
			score++;
			break;
		}
	}
	if (!score) {
736 737
		dev_dbg(&subs->dev->dev,
			"%s: (fmt @%p) no match for rate %d\n", __func__,
738 739 740 741 742 743 744
			fp, rate);
		return 0;
	}

	if (fp->channels == match->channels)
		score++;

745 746
	dev_dbg(&subs->dev->dev,
		"%s: (fmt @%p) score %d\n", __func__, fp, score);
747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762

	return score;
}

/*
 * Configure the sync ep using the rate and pcm format of the data ep.
 */
static int configure_sync_endpoint(struct snd_usb_substream *subs)
{
	struct audioformat *fp;
	struct audioformat *sync_fp = NULL;
	int cur_score = 0;
	int sync_period_bytes = subs->period_bytes;
	struct snd_usb_substream *sync_subs =
		&subs->stream->substream[subs->direction ^ 1];

763 764 765 766 767 768 769 770 771 772
	if (subs->fixed_hw ||
	    !subs->sync_endpoint->is_implicit_feedback) {
		sync_fp = subs->cur_audiofmt;
		goto configure;
	}

	sync_fp = find_format(&sync_subs->fmt_list, subs->pcm_format,
			      subs->cur_rate, subs->channels, NULL);
	if (sync_fp)
		goto configure;
773

774 775
	/* Try to find the best matching audioformat. */
	list_for_each_entry(fp, &sync_subs->fmt_list, list) {
776 777
		int score = match_endpoint_audioformats(subs,
							fp, subs->cur_audiofmt,
778 779 780 781 782 783 784 785 786
			subs->cur_rate, subs->pcm_format);

		if (score > cur_score) {
			sync_fp = fp;
			cur_score = score;
		}
	}

	if (unlikely(sync_fp == NULL)) {
787 788
		dev_err(&subs->dev->dev,
			"%s: no valid audioformat for sync ep %x found\n",
789 790 791 792 793 794 795 796 797 798 799
			__func__, sync_subs->ep_num);
		return -EINVAL;
	}

	/*
	 * Recalculate the period bytes if channel number differ between
	 * data and sync ep audioformat.
	 */
	if (sync_fp->channels != subs->channels) {
		sync_period_bytes = (subs->period_bytes / subs->channels) *
			sync_fp->channels;
800 801
		dev_dbg(&subs->dev->dev,
			"%s: adjusted sync ep period bytes (%d -> %d)\n",
802 803 804
			__func__, subs->period_bytes, sync_period_bytes);
	}

805 806 807 808 809 810 811 812 813 814
 configure:
	return snd_usb_endpoint_set_params(subs->sync_endpoint,
					   subs->pcm_format,
					   sync_fp->channels,
					   sync_period_bytes,
					   subs->period_frames,
					   subs->buffer_periods,
					   subs->cur_rate,
					   sync_fp,
					   NULL);
815 816
}

817 818 819 820 821 822 823 824 825 826
/*
 * configure endpoint params
 *
 * called  during initial setup and upon resume
 */
static int configure_endpoint(struct snd_usb_substream *subs)
{
	int ret;

	/* format changed */
827 828
	stop_endpoints(subs);
	sync_pending_stops(subs);
829 830 831 832
	ret = snd_usb_endpoint_set_params(subs->data_endpoint,
					  subs->pcm_format,
					  subs->channels,
					  subs->period_bytes,
833 834
					  subs->period_frames,
					  subs->buffer_periods,
835 836 837 838
					  subs->cur_rate,
					  subs->cur_audiofmt,
					  subs->sync_endpoint);
	if (ret < 0)
839
		return ret;
840 841

	if (subs->sync_endpoint)
842 843
		ret = configure_sync_endpoint(subs);

844 845 846
	return ret;
}

847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883
static int snd_usb_pcm_change_state(struct snd_usb_substream *subs, int state)
{
	int ret;

	if (!subs->str_pd)
		return 0;

	ret = snd_usb_power_domain_set(subs->stream->chip, subs->str_pd, state);
	if (ret < 0) {
		dev_err(&subs->dev->dev,
			"Cannot change Power Domain ID: %d to state: %d. Err: %d\n",
			subs->str_pd->pd_id, state, ret);
		return ret;
	}

	return 0;
}

int snd_usb_pcm_suspend(struct snd_usb_stream *as)
{
	int ret;

	ret = snd_usb_pcm_change_state(&as->substream[0], UAC3_PD_STATE_D2);
	if (ret < 0)
		return ret;

	ret = snd_usb_pcm_change_state(&as->substream[1], UAC3_PD_STATE_D2);
	if (ret < 0)
		return ret;

	return 0;
}

int snd_usb_pcm_resume(struct snd_usb_stream *as)
{
	int ret;

884
	ret = snd_usb_pcm_change_state(&as->substream[0], UAC3_PD_STATE_D1);
885 886 887
	if (ret < 0)
		return ret;

888
	ret = snd_usb_pcm_change_state(&as->substream[1], UAC3_PD_STATE_D1);
889 890 891 892 893 894
	if (ret < 0)
		return ret;

	return 0;
}

D
Daniel Mack 已提交
895 896 897 898 899 900 901 902 903 904 905 906 907 908 909
/*
 * hw_params callback
 *
 * allocate a buffer and set the given audio format.
 *
 * so far we use a physically linear buffer although packetize transfer
 * doesn't need a continuous area.
 * if sg buffer is supported on the later version of alsa, we'll follow
 * that.
 */
static int snd_usb_hw_params(struct snd_pcm_substream *substream,
			     struct snd_pcm_hw_params *hw_params)
{
	struct snd_usb_substream *subs = substream->runtime->private_data;
	struct audioformat *fmt;
910
	int ret;
D
Daniel Mack 已提交
911

912 913 914 915
	ret = snd_media_start_pipeline(subs);
	if (ret)
		return ret;

916 917
	subs->pcm_format = params_format(hw_params);
	subs->period_bytes = params_period_bytes(hw_params);
918 919
	subs->period_frames = params_period_size(hw_params);
	subs->buffer_periods = params_periods(hw_params);
920 921 922
	subs->channels = params_channels(hw_params);
	subs->cur_rate = params_rate(hw_params);

923
	fmt = find_substream_format(subs);
D
Daniel Mack 已提交
924
	if (!fmt) {
925 926
		dev_dbg(&subs->dev->dev,
			"cannot set format: format = %#x, rate = %d, channels = %d\n",
927
			   subs->pcm_format, subs->cur_rate, subs->channels);
928 929
		ret = -EINVAL;
		goto stop_pipeline;
D
Daniel Mack 已提交
930 931
	}

932 933
	ret = snd_usb_lock_shutdown(subs->stream->chip);
	if (ret < 0)
934
		goto stop_pipeline;
935 936 937 938 939

	ret = snd_usb_pcm_change_state(subs, UAC3_PD_STATE_D0);
	if (ret < 0)
		goto unlock;

940
	ret = set_format(subs, fmt);
941
	if (ret < 0)
942
		goto unlock;
D
Daniel Mack 已提交
943

944 945
	subs->interface = fmt->iface;
	subs->altset_idx = fmt->altset_idx;
946
	subs->need_setup_ep = true;
947

948 949
 unlock:
	snd_usb_unlock_shutdown(subs->stream->chip);
950 951 952 953 954 955
	if (ret < 0)
		goto stop_pipeline;
	return ret;

 stop_pipeline:
	snd_media_stop_pipeline(subs);
956
	return ret;
D
Daniel Mack 已提交
957 958 959 960 961 962 963 964 965 966
}

/*
 * hw_free callback
 *
 * reset the audio format and release the buffer
 */
static int snd_usb_hw_free(struct snd_pcm_substream *substream)
{
	struct snd_usb_substream *subs = substream->runtime->private_data;
967
	struct snd_usb_audio *chip = subs->stream->chip;
D
Daniel Mack 已提交
968

969
	snd_media_stop_pipeline(subs);
D
Daniel Mack 已提交
970 971 972
	subs->cur_audiofmt = NULL;
	subs->cur_rate = 0;
	subs->period_bytes = 0;
973
	if (!snd_usb_lock_shutdown(chip)) {
974 975
		stop_endpoints(subs);
		sync_pending_stops(subs);
976 977
		snd_usb_endpoint_deactivate(subs->sync_endpoint);
		snd_usb_endpoint_deactivate(subs->data_endpoint);
978 979 980 981 982
		if (subs->data_endpoint) {
			subs->data_endpoint->sync_master = NULL;
			subs->data_endpoint = NULL;
		}
		subs->sync_endpoint = NULL;
983
		snd_usb_unlock_shutdown(chip);
984
	}
985

986
	return 0;
D
Daniel Mack 已提交
987 988 989 990 991 992 993 994 995 996 997
}

/*
 * prepare callback
 *
 * only a few subtle things...
 */
static int snd_usb_pcm_prepare(struct snd_pcm_substream *substream)
{
	struct snd_pcm_runtime *runtime = substream->runtime;
	struct snd_usb_substream *subs = runtime->private_data;
998 999 1000
	struct usb_host_interface *alts;
	struct usb_interface *iface;
	int ret;
D
Daniel Mack 已提交
1001 1002

	if (! subs->cur_audiofmt) {
1003
		dev_err(&subs->dev->dev, "no format is specified!\n");
D
Daniel Mack 已提交
1004 1005 1006
		return -ENXIO;
	}

1007 1008 1009
	ret = snd_usb_lock_shutdown(subs->stream->chip);
	if (ret < 0)
		return ret;
1010 1011 1012 1013
	if (snd_BUG_ON(!subs->data_endpoint)) {
		ret = -EIO;
		goto unlock;
	}
1014

1015 1016 1017 1018
	ret = snd_usb_pcm_change_state(subs, UAC3_PD_STATE_D0);
	if (ret < 0)
		goto unlock;

1019 1020
	ret = set_format(subs, subs->cur_audiofmt);
	if (ret < 0)
1021
		goto unlock;
1022

1023
	if (subs->need_setup_ep) {
1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034

		iface = usb_ifnum_to_if(subs->dev, subs->cur_audiofmt->iface);
		alts = &iface->altsetting[subs->cur_audiofmt->altset_idx];
		ret = snd_usb_init_sample_rate(subs->stream->chip,
					       subs->cur_audiofmt->iface,
					       alts,
					       subs->cur_audiofmt,
					       subs->cur_rate);
		if (ret < 0)
			goto unlock;

1035 1036
		ret = configure_endpoint(subs);
		if (ret < 0)
1037
			goto unlock;
1038 1039
		subs->need_setup_ep = false;
	}
1040

D
Daniel Mack 已提交
1041
	/* some unit conversions in runtime */
1042 1043 1044 1045
	subs->data_endpoint->maxframesize =
		bytes_to_frames(runtime, subs->data_endpoint->maxpacksize);
	subs->data_endpoint->curframesize =
		bytes_to_frames(runtime, subs->data_endpoint->curpacksize);
D
Daniel Mack 已提交
1046 1047 1048 1049

	/* reset the pointer */
	subs->hwptr_done = 0;
	subs->transfer_done = 0;
1050 1051
	subs->last_delay = 0;
	subs->last_frame_number = 0;
D
Daniel Mack 已提交
1052 1053
	runtime->delay = 0;

1054 1055 1056
	/* for playback, submit the URBs now; otherwise, the first hwptr_done
	 * updates for all URBs would happen at the same time when starting */
	if (subs->direction == SNDRV_PCM_STREAM_PLAYBACK)
1057
		ret = start_endpoints(subs);
1058

1059
 unlock:
1060
	snd_usb_unlock_shutdown(subs->stream->chip);
1061
	return ret;
D
Daniel Mack 已提交
1062 1063
}

1064
static const struct snd_pcm_hardware snd_usb_hardware =
D
Daniel Mack 已提交
1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086
{
	.info =			SNDRV_PCM_INFO_MMAP |
				SNDRV_PCM_INFO_MMAP_VALID |
				SNDRV_PCM_INFO_BATCH |
				SNDRV_PCM_INFO_INTERLEAVED |
				SNDRV_PCM_INFO_BLOCK_TRANSFER |
				SNDRV_PCM_INFO_PAUSE,
	.buffer_bytes_max =	1024 * 1024,
	.period_bytes_min =	64,
	.period_bytes_max =	512 * 1024,
	.periods_min =		2,
	.periods_max =		1024,
};

static int hw_check_valid_format(struct snd_usb_substream *subs,
				 struct snd_pcm_hw_params *params,
				 struct audioformat *fp)
{
	struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
	struct snd_interval *ct = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
	struct snd_mask *fmts = hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT);
	struct snd_interval *pt = hw_param_interval(params, SNDRV_PCM_HW_PARAM_PERIOD_TIME);
1087
	struct snd_mask check_fmts;
D
Daniel Mack 已提交
1088 1089 1090
	unsigned int ptime;

	/* check the format */
1091 1092 1093 1094 1095
	snd_mask_none(&check_fmts);
	check_fmts.bits[0] = (u32)fp->formats;
	check_fmts.bits[1] = (u32)(fp->formats >> 32);
	snd_mask_intersect(&check_fmts, fmts);
	if (snd_mask_empty(&check_fmts)) {
D
Daniel Mack 已提交
1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113
		hwc_debug("   > check: no supported format %d\n", fp->format);
		return 0;
	}
	/* check the channels */
	if (fp->channels < ct->min || fp->channels > ct->max) {
		hwc_debug("   > check: no valid channels %d (%d/%d)\n", fp->channels, ct->min, ct->max);
		return 0;
	}
	/* check the rate is within the range */
	if (fp->rate_min > it->max || (fp->rate_min == it->max && it->openmax)) {
		hwc_debug("   > check: rate_min %d > max %d\n", fp->rate_min, it->max);
		return 0;
	}
	if (fp->rate_max < it->min || (fp->rate_max == it->min && it->openmin)) {
		hwc_debug("   > check: rate_max %d < min %d\n", fp->rate_max, it->min);
		return 0;
	}
	/* check whether the period time is >= the data packet interval */
1114
	if (subs->speed != USB_SPEED_FULL) {
D
Daniel Mack 已提交
1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127
		ptime = 125 * (1 << fp->datainterval);
		if (ptime > pt->max || (ptime == pt->max && pt->openmax)) {
			hwc_debug("   > check: ptime %u > max %u\n", ptime, pt->max);
			return 0;
		}
	}
	return 1;
}

static int hw_rule_rate(struct snd_pcm_hw_params *params,
			struct snd_pcm_hw_rule *rule)
{
	struct snd_usb_substream *subs = rule->private;
1128
	struct audioformat *fp;
D
Daniel Mack 已提交
1129
	struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
1130
	unsigned int rmin, rmax, r;
D
Daniel Mack 已提交
1131
	int changed;
1132
	int i;
D
Daniel Mack 已提交
1133 1134

	hwc_debug("hw_rule_rate: (%d,%d)\n", it->min, it->max);
1135 1136
	rmin = UINT_MAX;
	rmax = 0;
1137
	list_for_each_entry(fp, &subs->fmt_list, list) {
D
Daniel Mack 已提交
1138 1139
		if (!hw_check_valid_format(subs, params, fp))
			continue;
1140 1141 1142 1143 1144 1145 1146 1147
		if (fp->rate_table && fp->nr_rates) {
			for (i = 0; i < fp->nr_rates; i++) {
				r = fp->rate_table[i];
				if (!snd_interval_test(it, r))
					continue;
				rmin = min(rmin, r);
				rmax = max(rmax, r);
			}
D
Daniel Mack 已提交
1148
		} else {
1149 1150
			rmin = min(rmin, fp->rate_min);
			rmax = max(rmax, fp->rate_max);
D
Daniel Mack 已提交
1151 1152 1153
		}
	}

1154
	if (rmin > rmax) {
D
Daniel Mack 已提交
1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183
		hwc_debug("  --> get empty\n");
		it->empty = 1;
		return -EINVAL;
	}

	changed = 0;
	if (it->min < rmin) {
		it->min = rmin;
		it->openmin = 0;
		changed = 1;
	}
	if (it->max > rmax) {
		it->max = rmax;
		it->openmax = 0;
		changed = 1;
	}
	if (snd_interval_checkempty(it)) {
		it->empty = 1;
		return -EINVAL;
	}
	hwc_debug("  --> (%d, %d) (changed = %d)\n", it->min, it->max, changed);
	return changed;
}


static int hw_rule_channels(struct snd_pcm_hw_params *params,
			    struct snd_pcm_hw_rule *rule)
{
	struct snd_usb_substream *subs = rule->private;
1184
	struct audioformat *fp;
D
Daniel Mack 已提交
1185 1186 1187 1188 1189 1190 1191
	struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
	unsigned int rmin, rmax;
	int changed;

	hwc_debug("hw_rule_channels: (%d,%d)\n", it->min, it->max);
	changed = 0;
	rmin = rmax = 0;
1192
	list_for_each_entry(fp, &subs->fmt_list, list) {
D
Daniel Mack 已提交
1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234
		if (!hw_check_valid_format(subs, params, fp))
			continue;
		if (changed++) {
			if (rmin > fp->channels)
				rmin = fp->channels;
			if (rmax < fp->channels)
				rmax = fp->channels;
		} else {
			rmin = fp->channels;
			rmax = fp->channels;
		}
	}

	if (!changed) {
		hwc_debug("  --> get empty\n");
		it->empty = 1;
		return -EINVAL;
	}

	changed = 0;
	if (it->min < rmin) {
		it->min = rmin;
		it->openmin = 0;
		changed = 1;
	}
	if (it->max > rmax) {
		it->max = rmax;
		it->openmax = 0;
		changed = 1;
	}
	if (snd_interval_checkempty(it)) {
		it->empty = 1;
		return -EINVAL;
	}
	hwc_debug("  --> (%d, %d) (changed = %d)\n", it->min, it->max, changed);
	return changed;
}

static int hw_rule_format(struct snd_pcm_hw_params *params,
			  struct snd_pcm_hw_rule *rule)
{
	struct snd_usb_substream *subs = rule->private;
1235
	struct audioformat *fp;
D
Daniel Mack 已提交
1236 1237 1238 1239 1240 1241 1242
	struct snd_mask *fmt = hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT);
	u64 fbits;
	u32 oldbits[2];
	int changed;

	hwc_debug("hw_rule_format: %x:%x\n", fmt->bits[0], fmt->bits[1]);
	fbits = 0;
1243
	list_for_each_entry(fp, &subs->fmt_list, list) {
D
Daniel Mack 已提交
1244 1245
		if (!hw_check_valid_format(subs, params, fp))
			continue;
1246
		fbits |= fp->formats;
D
Daniel Mack 已提交
1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280
	}

	oldbits[0] = fmt->bits[0];
	oldbits[1] = fmt->bits[1];
	fmt->bits[0] &= (u32)fbits;
	fmt->bits[1] &= (u32)(fbits >> 32);
	if (!fmt->bits[0] && !fmt->bits[1]) {
		hwc_debug("  --> get empty\n");
		return -EINVAL;
	}
	changed = (oldbits[0] != fmt->bits[0] || oldbits[1] != fmt->bits[1]);
	hwc_debug("  --> %x:%x (changed = %d)\n", fmt->bits[0], fmt->bits[1], changed);
	return changed;
}

static int hw_rule_period_time(struct snd_pcm_hw_params *params,
			       struct snd_pcm_hw_rule *rule)
{
	struct snd_usb_substream *subs = rule->private;
	struct audioformat *fp;
	struct snd_interval *it;
	unsigned char min_datainterval;
	unsigned int pmin;
	int changed;

	it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_PERIOD_TIME);
	hwc_debug("hw_rule_period_time: (%u,%u)\n", it->min, it->max);
	min_datainterval = 0xff;
	list_for_each_entry(fp, &subs->fmt_list, list) {
		if (!hw_check_valid_format(subs, params, fp))
			continue;
		min_datainterval = min(min_datainterval, fp->datainterval);
	}
	if (min_datainterval == 0xff) {
1281
		hwc_debug("  --> get empty\n");
D
Daniel Mack 已提交
1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299
		it->empty = 1;
		return -EINVAL;
	}
	pmin = 125 * (1 << min_datainterval);
	changed = 0;
	if (it->min < pmin) {
		it->min = pmin;
		it->openmin = 0;
		changed = 1;
	}
	if (snd_interval_checkempty(it)) {
		it->empty = 1;
		return -EINVAL;
	}
	hwc_debug("  --> (%u,%u) (changed = %d)\n", it->min, it->max, changed);
	return changed;
}

1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357
/* apply PCM hw constraints from the concurrent sync EP */
static int apply_hw_constraint_from_sync(struct snd_pcm_runtime *runtime,
					 struct snd_usb_substream *subs)
{
	struct snd_usb_audio *chip = subs->stream->chip;
	struct snd_usb_endpoint *ep;
	struct audioformat *fp;
	int err;

	subs->fixed_hw = 0;
	list_for_each_entry(fp, &subs->fmt_list, list) {
		ep = snd_usb_get_endpoint(chip, fp->endpoint, fp->iface,
					  fp->altsetting);
		if (ep && ep->cur_rate)
			goto found;
		if (!fp->implicit_fb)
			continue;
		/* for the implicit fb, check the sync ep as well */
		ep = snd_usb_get_endpoint(chip, fp->sync_ep, fp->sync_iface,
					  fp->sync_altsetting);
		if (ep && ep->cur_rate)
			goto found;
	}
	return 0;

 found:
	if (!find_format(&subs->fmt_list, ep->cur_format, ep->cur_rate,
			 ep->cur_channels, NULL)) {
		usb_audio_dbg(chip, "EP 0x%x being used, but not applicable\n",
			      ep->ep_num);
		return 0;
	}

	usb_audio_dbg(chip, "EP 0x%x being used, using fixed params:\n",
		      ep->ep_num);
	usb_audio_dbg(chip, "rate=%d, format=%s, channels=%d, period_size=%d, periods=%d\n",
		      ep->cur_rate, snd_pcm_format_name(ep->cur_format),
		      ep->cur_channels, ep->cur_period_frames,
		      ep->cur_buffer_periods);

	runtime->hw.formats = pcm_format_to_bits(ep->cur_format);
	runtime->hw.rate_min = runtime->hw.rate_max = ep->cur_rate;
	runtime->hw.channels_min = runtime->hw.channels_max =
		ep->cur_channels;
	runtime->hw.rates = SNDRV_PCM_RATE_KNOT;
	runtime->hw.periods_min = runtime->hw.periods_max =
		ep->cur_buffer_periods;
	subs->fixed_hw = 1;

	err = snd_pcm_hw_constraint_minmax(runtime,
					   SNDRV_PCM_HW_PARAM_PERIOD_SIZE,
					   ep->cur_period_frames,
					   ep->cur_period_frames);
	if (err < 0)
		return err;

	return 1; /* notify the finding */
}
D
Daniel Mack 已提交
1358 1359 1360 1361 1362 1363 1364

/*
 * set up the runtime hardware information.
 */

static int setup_hw_info(struct snd_pcm_runtime *runtime, struct snd_usb_substream *subs)
{
1365
	struct snd_usb_audio *chip = subs->stream->chip;
1366
	struct audioformat *fp;
D
Daniel Mack 已提交
1367
	unsigned int pt, ptmin;
1368
	int param_period_time_if_needed = -1;
D
Daniel Mack 已提交
1369 1370
	int err;

1371 1372 1373 1374 1375 1376 1377 1378
	mutex_lock(&chip->mutex);
	err = apply_hw_constraint_from_sync(runtime, subs);
	mutex_unlock(&chip->mutex);
	if (err < 0)
		return err;
	if (err > 0) /* found the matching? */
		goto add_extra_rules;

D
Daniel Mack 已提交
1379 1380 1381 1382 1383 1384 1385 1386 1387
	runtime->hw.formats = subs->formats;

	runtime->hw.rate_min = 0x7fffffff;
	runtime->hw.rate_max = 0;
	runtime->hw.channels_min = 256;
	runtime->hw.channels_max = 0;
	runtime->hw.rates = 0;
	ptmin = UINT_MAX;
	/* check min/max rates and channels */
1388
	list_for_each_entry(fp, &subs->fmt_list, list) {
D
Daniel Mack 已提交
1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407
		runtime->hw.rates |= fp->rates;
		if (runtime->hw.rate_min > fp->rate_min)
			runtime->hw.rate_min = fp->rate_min;
		if (runtime->hw.rate_max < fp->rate_max)
			runtime->hw.rate_max = fp->rate_max;
		if (runtime->hw.channels_min > fp->channels)
			runtime->hw.channels_min = fp->channels;
		if (runtime->hw.channels_max < fp->channels)
			runtime->hw.channels_max = fp->channels;
		if (fp->fmt_type == UAC_FORMAT_TYPE_II && fp->frame_size > 0) {
			/* FIXME: there might be more than one audio formats... */
			runtime->hw.period_bytes_min = runtime->hw.period_bytes_max =
				fp->frame_size;
		}
		pt = 125 * (1 << fp->datainterval);
		ptmin = min(ptmin, pt);
	}

	param_period_time_if_needed = SNDRV_PCM_HW_PARAM_PERIOD_TIME;
1408
	if (subs->speed == USB_SPEED_FULL)
D
Daniel Mack 已提交
1409 1410 1411 1412 1413
		/* full speed devices have fixed data packet interval */
		ptmin = 1000;
	if (ptmin == 1000)
		/* if period time doesn't go below 1 ms, no rules needed */
		param_period_time_if_needed = -1;
1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428

	err = snd_pcm_hw_constraint_minmax(runtime,
					   SNDRV_PCM_HW_PARAM_PERIOD_TIME,
					   ptmin, UINT_MAX);
	if (err < 0)
		return err;

	err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
				  hw_rule_rate, subs,
				  SNDRV_PCM_HW_PARAM_FORMAT,
				  SNDRV_PCM_HW_PARAM_CHANNELS,
				  param_period_time_if_needed,
				  -1);
	if (err < 0)
		return err;
1429 1430

add_extra_rules:
1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446
	err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS,
				  hw_rule_channels, subs,
				  SNDRV_PCM_HW_PARAM_FORMAT,
				  SNDRV_PCM_HW_PARAM_RATE,
				  param_period_time_if_needed,
				  -1);
	if (err < 0)
		return err;
	err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_FORMAT,
				  hw_rule_format, subs,
				  SNDRV_PCM_HW_PARAM_RATE,
				  SNDRV_PCM_HW_PARAM_CHANNELS,
				  param_period_time_if_needed,
				  -1);
	if (err < 0)
		return err;
D
Daniel Mack 已提交
1447 1448 1449 1450 1451 1452 1453 1454 1455
	if (param_period_time_if_needed >= 0) {
		err = snd_pcm_hw_rule_add(runtime, 0,
					  SNDRV_PCM_HW_PARAM_PERIOD_TIME,
					  hw_rule_period_time, subs,
					  SNDRV_PCM_HW_PARAM_FORMAT,
					  SNDRV_PCM_HW_PARAM_CHANNELS,
					  SNDRV_PCM_HW_PARAM_RATE,
					  -1);
		if (err < 0)
1456
			return err;
D
Daniel Mack 已提交
1457
	}
1458

1459
	return 0;
D
Daniel Mack 已提交
1460 1461
}

1462
static int snd_usb_pcm_open(struct snd_pcm_substream *substream)
D
Daniel Mack 已提交
1463
{
1464
	int direction = substream->stream;
D
Daniel Mack 已提交
1465 1466 1467
	struct snd_usb_stream *as = snd_pcm_substream_chip(substream);
	struct snd_pcm_runtime *runtime = substream->runtime;
	struct snd_usb_substream *subs = &as->substream[direction];
1468
	int ret;
D
Daniel Mack 已提交
1469 1470

	subs->interface = -1;
1471
	subs->altset_idx = 0;
D
Daniel Mack 已提交
1472 1473 1474
	runtime->hw = snd_usb_hardware;
	runtime->private_data = subs;
	subs->pcm_substream = substream;
1475
	/* runtime PM is also done there */
1476 1477 1478 1479 1480 1481

	/* initialize DSD/DOP context */
	subs->dsd_dop.byte_idx = 0;
	subs->dsd_dop.channel = 0;
	subs->dsd_dop.marker = 1;

1482
	ret = setup_hw_info(runtime, subs);
1483 1484 1485 1486 1487 1488 1489 1490
	if (ret < 0)
		return ret;
	ret = snd_usb_autoresume(subs->stream->chip);
	if (ret < 0)
		return ret;
	ret = snd_media_stream_init(subs, as->pcm, direction);
	if (ret < 0)
		snd_usb_autosuspend(subs->stream->chip);
1491
	return ret;
D
Daniel Mack 已提交
1492 1493
}

1494
static int snd_usb_pcm_close(struct snd_pcm_substream *substream)
D
Daniel Mack 已提交
1495
{
1496
	int direction = substream->stream;
D
Daniel Mack 已提交
1497 1498
	struct snd_usb_stream *as = snd_pcm_substream_chip(substream);
	struct snd_usb_substream *subs = &as->substream[direction];
1499
	int ret;
D
Daniel Mack 已提交
1500

1501
	snd_media_stop_pipeline(subs);
1502

1503 1504
	if (!as->chip->keep_iface &&
	    subs->interface >= 0 &&
1505
	    !snd_usb_lock_shutdown(subs->stream->chip)) {
1506 1507
		usb_set_interface(subs->dev, subs->interface, 0);
		subs->interface = -1;
1508
		ret = snd_usb_pcm_change_state(subs, UAC3_PD_STATE_D1);
1509
		snd_usb_unlock_shutdown(subs->stream->chip);
1510 1511
		if (ret < 0)
			return ret;
1512 1513
	}

D
Daniel Mack 已提交
1514
	subs->pcm_substream = NULL;
1515
	snd_usb_autosuspend(subs->stream->chip);
1516

1517
	return 0;
1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532
}

/* Since a URB can handle only a single linear buffer, we must use double
 * buffering when the data to be transferred overflows the buffer boundary.
 * To avoid inconsistencies when updating hwptr_done, we use double buffering
 * for all URBs.
 */
static void retire_capture_urb(struct snd_usb_substream *subs,
			       struct urb *urb)
{
	struct snd_pcm_runtime *runtime = subs->pcm_substream->runtime;
	unsigned int stride, frames, bytes, oldptr;
	int i, period_elapsed = 0;
	unsigned long flags;
	unsigned char *cp;
1533 1534 1535 1536
	int current_frame_number;

	/* read frame number here, update pointer in critical section */
	current_frame_number = usb_get_current_frame_number(subs->dev);
1537 1538 1539 1540

	stride = runtime->frame_bits >> 3;

	for (i = 0; i < urb->number_of_packets; i++) {
1541
		cp = (unsigned char *)urb->transfer_buffer + urb->iso_frame_desc[i].offset + subs->pkt_offset_adj;
1542
		if (urb->iso_frame_desc[i].status && printk_ratelimit()) {
1543 1544
			dev_dbg(&subs->dev->dev, "frame %d active: %d\n",
				i, urb->iso_frame_desc[i].status);
1545 1546 1547
			// continue;
		}
		bytes = urb->iso_frame_desc[i].actual_length;
1548 1549 1550 1551 1552 1553
		if (subs->stream_offset_adj > 0) {
			unsigned int adj = min(subs->stream_offset_adj, bytes);
			cp += adj;
			bytes -= adj;
			subs->stream_offset_adj -= adj;
		}
1554 1555 1556 1557 1558 1559
		frames = bytes / stride;
		if (!subs->txfr_quirk)
			bytes = frames * stride;
		if (bytes % (runtime->sample_bits >> 3) != 0) {
			int oldbytes = bytes;
			bytes = frames * stride;
1560
			dev_warn_ratelimited(&subs->dev->dev,
1561
				 "Corrected urb data len. %d->%d\n",
1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575
							oldbytes, bytes);
		}
		/* update the current pointer */
		spin_lock_irqsave(&subs->lock, flags);
		oldptr = subs->hwptr_done;
		subs->hwptr_done += bytes;
		if (subs->hwptr_done >= runtime->buffer_size * stride)
			subs->hwptr_done -= runtime->buffer_size * stride;
		frames = (bytes + (oldptr % stride)) / stride;
		subs->transfer_done += frames;
		if (subs->transfer_done >= runtime->period_size) {
			subs->transfer_done -= runtime->period_size;
			period_elapsed = 1;
		}
1576 1577 1578 1579 1580 1581 1582 1583 1584
		/* capture delay is by construction limited to one URB,
		 * reset delays here
		 */
		runtime->delay = subs->last_delay = 0;

		/* realign last_frame_number */
		subs->last_frame_number = current_frame_number;
		subs->last_frame_number &= 0xFF; /* keep 8 LSBs */

1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600
		spin_unlock_irqrestore(&subs->lock, flags);
		/* copy a data chunk */
		if (oldptr + bytes > runtime->buffer_size * stride) {
			unsigned int bytes1 =
					runtime->buffer_size * stride - oldptr;
			memcpy(runtime->dma_area + oldptr, cp, bytes1);
			memcpy(runtime->dma_area, cp + bytes1, bytes - bytes1);
		} else {
			memcpy(runtime->dma_area + oldptr, cp, bytes);
		}
	}

	if (period_elapsed)
		snd_pcm_period_elapsed(subs->pcm_substream);
}

1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644
static inline void fill_playback_urb_dsd_dop(struct snd_usb_substream *subs,
					     struct urb *urb, unsigned int bytes)
{
	struct snd_pcm_runtime *runtime = subs->pcm_substream->runtime;
	unsigned int stride = runtime->frame_bits >> 3;
	unsigned int dst_idx = 0;
	unsigned int src_idx = subs->hwptr_done;
	unsigned int wrap = runtime->buffer_size * stride;
	u8 *dst = urb->transfer_buffer;
	u8 *src = runtime->dma_area;
	u8 marker[] = { 0x05, 0xfa };

	/*
	 * The DSP DOP format defines a way to transport DSD samples over
	 * normal PCM data endpoints. It requires stuffing of marker bytes
	 * (0x05 and 0xfa, alternating per sample frame), and then expects
	 * 2 additional bytes of actual payload. The whole frame is stored
	 * LSB.
	 *
	 * Hence, for a stereo transport, the buffer layout looks like this,
	 * where L refers to left channel samples and R to right.
	 *
	 *   L1 L2 0x05   R1 R2 0x05   L3 L4 0xfa  R3 R4 0xfa
	 *   L5 L6 0x05   R5 R6 0x05   L7 L8 0xfa  R7 R8 0xfa
	 *   .....
	 *
	 */

	while (bytes--) {
		if (++subs->dsd_dop.byte_idx == 3) {
			/* frame boundary? */
			dst[dst_idx++] = marker[subs->dsd_dop.marker];
			src_idx += 2;
			subs->dsd_dop.byte_idx = 0;

			if (++subs->dsd_dop.channel % runtime->channels == 0) {
				/* alternate the marker */
				subs->dsd_dop.marker++;
				subs->dsd_dop.marker %= ARRAY_SIZE(marker);
				subs->dsd_dop.channel = 0;
			}
		} else {
			/* stuff the DSD payload */
			int idx = (src_idx + subs->dsd_dop.byte_idx - 1) % wrap;
1645 1646 1647 1648 1649 1650

			if (subs->cur_audiofmt->dsd_bitrev)
				dst[dst_idx++] = bitrev8(src[idx]);
			else
				dst[dst_idx++] = src[idx];

1651 1652 1653
			subs->hwptr_done++;
		}
	}
1654 1655
	if (subs->hwptr_done >= runtime->buffer_size * stride)
		subs->hwptr_done -= runtime->buffer_size * stride;
1656 1657
}

1658 1659
static void copy_to_urb(struct snd_usb_substream *subs, struct urb *urb,
			int offset, int stride, unsigned int bytes)
1660 1661 1662 1663 1664 1665 1666
{
	struct snd_pcm_runtime *runtime = subs->pcm_substream->runtime;

	if (subs->hwptr_done + bytes > runtime->buffer_size * stride) {
		/* err, the transferred area goes over buffer boundary. */
		unsigned int bytes1 =
			runtime->buffer_size * stride - subs->hwptr_done;
1667
		memcpy(urb->transfer_buffer + offset,
1668
		       runtime->dma_area + subs->hwptr_done, bytes1);
1669
		memcpy(urb->transfer_buffer + offset + bytes1,
1670 1671
		       runtime->dma_area, bytes - bytes1);
	} else {
1672
		memcpy(urb->transfer_buffer + offset,
1673 1674 1675
		       runtime->dma_area + subs->hwptr_done, bytes);
	}
	subs->hwptr_done += bytes;
1676 1677
	if (subs->hwptr_done >= runtime->buffer_size * stride)
		subs->hwptr_done -= runtime->buffer_size * stride;
1678 1679
}

1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705
static unsigned int copy_to_urb_quirk(struct snd_usb_substream *subs,
				      struct urb *urb, int stride,
				      unsigned int bytes)
{
	__le32 packet_length;
	int i;

	/* Put __le32 length descriptor at start of each packet. */
	for (i = 0; i < urb->number_of_packets; i++) {
		unsigned int length = urb->iso_frame_desc[i].length;
		unsigned int offset = urb->iso_frame_desc[i].offset;

		packet_length = cpu_to_le32(length);
		offset += i * sizeof(packet_length);
		urb->iso_frame_desc[i].offset = offset;
		urb->iso_frame_desc[i].length += sizeof(packet_length);
		memcpy(urb->transfer_buffer + offset,
		       &packet_length, sizeof(packet_length));
		copy_to_urb(subs, urb, offset + sizeof(packet_length),
			    stride, length);
	}
	/* Adjust transfer size accordingly. */
	bytes += urb->number_of_packets * sizeof(packet_length);
	return bytes;
}

1706 1707 1708 1709
static void prepare_playback_urb(struct snd_usb_substream *subs,
				 struct urb *urb)
{
	struct snd_pcm_runtime *runtime = subs->pcm_substream->runtime;
1710
	struct snd_usb_endpoint *ep = subs->data_endpoint;
1711 1712 1713 1714 1715 1716 1717 1718 1719 1720
	struct snd_urb_ctx *ctx = urb->context;
	unsigned int counts, frames, bytes;
	int i, stride, period_elapsed = 0;
	unsigned long flags;

	stride = runtime->frame_bits >> 3;

	frames = 0;
	urb->number_of_packets = 0;
	spin_lock_irqsave(&subs->lock, flags);
1721
	subs->frame_limit += ep->max_urb_frames;
1722
	for (i = 0; i < ctx->packets; i++) {
1723 1724
		if (ctx->packet_size[i])
			counts = ctx->packet_size[i];
1725 1726
		else if (ep->sync_master)
			counts = snd_usb_endpoint_slave_next_packet_size(ep);
1727 1728 1729
		else
			counts = snd_usb_endpoint_next_packet_size(ep);

1730
		/* set up descriptor */
1731 1732
		urb->iso_frame_desc[i].offset = frames * ep->stride;
		urb->iso_frame_desc[i].length = counts * ep->stride;
1733 1734 1735 1736 1737
		frames += counts;
		urb->number_of_packets++;
		subs->transfer_done += counts;
		if (subs->transfer_done >= runtime->period_size) {
			subs->transfer_done -= runtime->period_size;
1738
			subs->frame_limit = 0;
1739 1740 1741 1742 1743 1744 1745 1746
			period_elapsed = 1;
			if (subs->fmt_type == UAC_FORMAT_TYPE_II) {
				if (subs->transfer_done > 0) {
					/* FIXME: fill-max mode is not
					 * supported yet */
					frames -= subs->transfer_done;
					counts -= subs->transfer_done;
					urb->iso_frame_desc[i].length =
1747
						counts * ep->stride;
1748 1749 1750 1751 1752 1753
					subs->transfer_done = 0;
				}
				i++;
				if (i < ctx->packets) {
					/* add a transfer delimiter */
					urb->iso_frame_desc[i].offset =
1754
						frames * ep->stride;
1755 1756 1757 1758 1759 1760
					urb->iso_frame_desc[i].length = 0;
					urb->number_of_packets++;
				}
				break;
			}
		}
1761 1762 1763 1764
		/* finish at the period boundary or after enough frames */
		if ((period_elapsed ||
				subs->transfer_done >= subs->frame_limit) &&
		    !snd_usb_endpoint_implicit_feedback_sink(ep))
1765 1766
			break;
	}
1767
	bytes = frames * ep->stride;
1768 1769 1770 1771

	if (unlikely(subs->pcm_format == SNDRV_PCM_FORMAT_DSD_U16_LE &&
		     subs->cur_audiofmt->dsd_dop)) {
		fill_playback_urb_dsd_dop(subs, urb, bytes);
1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782
	} else if (unlikely(subs->pcm_format == SNDRV_PCM_FORMAT_DSD_U8 &&
			   subs->cur_audiofmt->dsd_bitrev)) {
		/* bit-reverse the bytes */
		u8 *buf = urb->transfer_buffer;
		for (i = 0; i < bytes; i++) {
			int idx = (subs->hwptr_done + i)
				% (runtime->buffer_size * stride);
			buf[i] = bitrev8(runtime->dma_area[idx]);
		}

		subs->hwptr_done += bytes;
1783 1784
		if (subs->hwptr_done >= runtime->buffer_size * stride)
			subs->hwptr_done -= runtime->buffer_size * stride;
1785
	} else {
1786
		/* usual PCM */
1787 1788 1789 1790 1791
		if (!subs->tx_length_quirk)
			copy_to_urb(subs, urb, 0, stride, bytes);
		else
			bytes = copy_to_urb_quirk(subs, urb, stride, bytes);
			/* bytes is now amount of outgoing data */
1792
	}
1793

1794 1795
	/* update delay with exact number of samples queued */
	runtime->delay = subs->last_delay;
1796
	runtime->delay += frames;
1797 1798 1799 1800 1801 1802
	subs->last_delay = runtime->delay;

	/* realign last_frame_number */
	subs->last_frame_number = usb_get_current_frame_number(subs->dev);
	subs->last_frame_number &= 0xFF; /* keep 8 LSBs */

1803 1804 1805 1806 1807 1808 1809 1810
	if (subs->trigger_tstamp_pending_update) {
		/* this is the first actual URB submitted,
		 * update trigger timestamp to reflect actual start time
		 */
		snd_pcm_gettime(runtime, &runtime->trigger_tstamp);
		subs->trigger_tstamp_pending_update = false;
	}

1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825
	spin_unlock_irqrestore(&subs->lock, flags);
	urb->transfer_buffer_length = bytes;
	if (period_elapsed)
		snd_pcm_period_elapsed(subs->pcm_substream);
}

/*
 * process after playback data complete
 * - decrease the delay count again
 */
static void retire_playback_urb(struct snd_usb_substream *subs,
			       struct urb *urb)
{
	unsigned long flags;
	struct snd_pcm_runtime *runtime = subs->pcm_substream->runtime;
1826 1827
	struct snd_usb_endpoint *ep = subs->data_endpoint;
	int processed = urb->transfer_buffer_length / ep->stride;
1828
	int est_delay;
1829

A
Alexander Tsoy 已提交
1830 1831
	/* ignore the delay accounting when processed=0 is given, i.e.
	 * silent payloads are processed before handling the actual data
1832 1833 1834 1835
	 */
	if (!processed)
		return;

1836
	spin_lock_irqsave(&subs->lock, flags);
1837 1838 1839
	if (!subs->last_delay)
		goto out; /* short path */

1840 1841 1842 1843
	est_delay = snd_usb_pcm_delay(subs, runtime->rate);
	/* update delay with exact number of samples played */
	if (processed > subs->last_delay)
		subs->last_delay = 0;
1844
	else
1845 1846 1847 1848 1849 1850 1851 1852
		subs->last_delay -= processed;
	runtime->delay = subs->last_delay;

	/*
	 * Report when delay estimate is off by more than 2ms.
	 * The error should be lower than 2ms since the estimate relies
	 * on two reads of a counter updated every ms.
	 */
1853 1854
	if (abs(est_delay - subs->last_delay) * 1000 > runtime->rate * 2)
		dev_dbg_ratelimited(&subs->dev->dev,
1855
			"delay: estimated %d, actual %d\n",
1856 1857
			est_delay, subs->last_delay);

1858 1859 1860 1861 1862 1863 1864 1865 1866
	if (!subs->running) {
		/* update last_frame_number for delay counting here since
		 * prepare_playback_urb won't be called during pause
		 */
		subs->last_frame_number =
			usb_get_current_frame_number(subs->dev) & 0xff;
	}

 out:
1867
	spin_unlock_irqrestore(&subs->lock, flags);
D
Daniel Mack 已提交
1868 1869
}

1870 1871 1872 1873 1874 1875 1876
static int snd_usb_substream_playback_trigger(struct snd_pcm_substream *substream,
					      int cmd)
{
	struct snd_usb_substream *subs = substream->runtime->private_data;

	switch (cmd) {
	case SNDRV_PCM_TRIGGER_START:
1877
		subs->trigger_tstamp_pending_update = true;
1878
		fallthrough;
1879 1880 1881
	case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
		subs->data_endpoint->prepare_data_urb = prepare_playback_urb;
		subs->data_endpoint->retire_data_urb = retire_playback_urb;
1882
		subs->running = 1;
1883 1884
		return 0;
	case SNDRV_PCM_TRIGGER_STOP:
1885
		stop_endpoints(subs);
1886
		subs->running = 0;
1887 1888 1889
		return 0;
	case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
		subs->data_endpoint->prepare_data_urb = NULL;
1890 1891
		/* keep retire_data_urb for delay calculation */
		subs->data_endpoint->retire_data_urb = retire_playback_urb;
1892
		subs->running = 0;
1893
		return 0;
1894 1895
	case SNDRV_PCM_TRIGGER_SUSPEND:
		if (subs->stream->chip->setup_fmt_after_resume_quirk) {
1896
			stop_endpoints(subs);
1897 1898 1899 1900
			subs->need_setup_fmt = true;
			return 0;
		}
		break;
1901 1902 1903 1904 1905
	}

	return -EINVAL;
}

1906 1907
static int snd_usb_substream_capture_trigger(struct snd_pcm_substream *substream,
					     int cmd)
1908 1909 1910 1911 1912 1913
{
	int err;
	struct snd_usb_substream *subs = substream->runtime->private_data;

	switch (cmd) {
	case SNDRV_PCM_TRIGGER_START:
1914
		err = start_endpoints(subs);
1915 1916 1917 1918
		if (err < 0)
			return err;

		subs->data_endpoint->retire_data_urb = retire_capture_urb;
1919
		subs->running = 1;
1920 1921
		return 0;
	case SNDRV_PCM_TRIGGER_STOP:
1922
		stop_endpoints(subs);
1923
		subs->data_endpoint->retire_data_urb = NULL;
1924
		subs->running = 0;
1925 1926 1927
		return 0;
	case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
		subs->data_endpoint->retire_data_urb = NULL;
1928
		subs->running = 0;
1929 1930 1931
		return 0;
	case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
		subs->data_endpoint->retire_data_urb = retire_capture_urb;
1932
		subs->running = 1;
1933
		return 0;
1934 1935
	case SNDRV_PCM_TRIGGER_SUSPEND:
		if (subs->stream->chip->setup_fmt_after_resume_quirk) {
1936
			stop_endpoints(subs);
1937 1938 1939 1940
			subs->need_setup_fmt = true;
			return 0;
		}
		break;
1941 1942 1943 1944 1945
	}

	return -EINVAL;
}

1946
static const struct snd_pcm_ops snd_usb_playback_ops = {
1947 1948
	.open =		snd_usb_pcm_open,
	.close =	snd_usb_pcm_close,
D
Daniel Mack 已提交
1949 1950 1951 1952
	.hw_params =	snd_usb_hw_params,
	.hw_free =	snd_usb_hw_free,
	.prepare =	snd_usb_pcm_prepare,
	.trigger =	snd_usb_substream_playback_trigger,
1953
	.sync_stop =	snd_usb_pcm_sync_stop,
D
Daniel Mack 已提交
1954 1955 1956
	.pointer =	snd_usb_pcm_pointer,
};

1957
static const struct snd_pcm_ops snd_usb_capture_ops = {
1958 1959
	.open =		snd_usb_pcm_open,
	.close =	snd_usb_pcm_close,
D
Daniel Mack 已提交
1960 1961 1962 1963
	.hw_params =	snd_usb_hw_params,
	.hw_free =	snd_usb_hw_free,
	.prepare =	snd_usb_pcm_prepare,
	.trigger =	snd_usb_substream_capture_trigger,
1964
	.sync_stop =	snd_usb_pcm_sync_stop,
D
Daniel Mack 已提交
1965
	.pointer =	snd_usb_pcm_pointer,
1966 1967
};

D
Daniel Mack 已提交
1968 1969
void snd_usb_set_pcm_ops(struct snd_pcm *pcm, int stream)
{
1970 1971
	const struct snd_pcm_ops *ops;

1972
	ops = stream == SNDRV_PCM_STREAM_PLAYBACK ?
1973 1974 1975 1976 1977 1978 1979 1980 1981 1982
			&snd_usb_playback_ops : &snd_usb_capture_ops;
	snd_pcm_set_ops(pcm, stream, ops);
}

void snd_usb_preallocate_buffer(struct snd_usb_substream *subs)
{
	struct snd_pcm *pcm = subs->stream->pcm;
	struct snd_pcm_substream *s = pcm->streams[subs->direction].substream;
	struct device *dev = subs->dev->bus->controller;

1983
	if (snd_usb_use_vmalloc)
1984 1985
		snd_pcm_set_managed_buffer(s, SNDRV_DMA_TYPE_VMALLOC,
					   NULL, 0, 0);
1986
	else
1987 1988
		snd_pcm_set_managed_buffer(s, SNDRV_DMA_TYPE_DEV_SG,
					   dev, 64*1024, 512*1024);
D
Daniel Mack 已提交
1989
}