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