Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 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 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 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 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 | // SPDX-License-Identifier: GPL-2.0-only /* * dice_stream.c - a part of driver for DICE based devices * * Copyright (c) Clemens Ladisch <clemens@ladisch.de> * Copyright (c) 2014 Takashi Sakamoto <o-takashi@sakamocchi.jp> */ #include "dice.h" #define READY_TIMEOUT_MS 200 #define NOTIFICATION_TIMEOUT_MS 100 struct reg_params { unsigned int count; unsigned int size; }; const unsigned int snd_dice_rates[SND_DICE_RATES_COUNT] = { /* mode 0 */ [0] = 32000, [1] = 44100, [2] = 48000, /* mode 1 */ [3] = 88200, [4] = 96000, /* mode 2 */ [5] = 176400, [6] = 192000, }; int snd_dice_stream_get_rate_mode(struct snd_dice *dice, unsigned int rate, enum snd_dice_rate_mode *mode) { /* Corresponding to each entry in snd_dice_rates. */ static const enum snd_dice_rate_mode modes[] = { [0] = SND_DICE_RATE_MODE_LOW, [1] = SND_DICE_RATE_MODE_LOW, [2] = SND_DICE_RATE_MODE_LOW, [3] = SND_DICE_RATE_MODE_MIDDLE, [4] = SND_DICE_RATE_MODE_MIDDLE, [5] = SND_DICE_RATE_MODE_HIGH, [6] = SND_DICE_RATE_MODE_HIGH, }; int i; for (i = 0; i < ARRAY_SIZE(snd_dice_rates); i++) { if (!(dice->clock_caps & BIT(i))) continue; if (snd_dice_rates[i] != rate) continue; *mode = modes[i]; return 0; } return -EINVAL; } static int select_clock(struct snd_dice *dice, unsigned int rate) { __be32 reg, new; u32 data; int i; int err; err = snd_dice_transaction_read_global(dice, GLOBAL_CLOCK_SELECT, ®, sizeof(reg)); if (err < 0) return err; data = be32_to_cpu(reg); data &= ~CLOCK_RATE_MASK; for (i = 0; i < ARRAY_SIZE(snd_dice_rates); ++i) { if (snd_dice_rates[i] == rate) break; } if (i == ARRAY_SIZE(snd_dice_rates)) return -EINVAL; data |= i << CLOCK_RATE_SHIFT; if (completion_done(&dice->clock_accepted)) reinit_completion(&dice->clock_accepted); new = cpu_to_be32(data); err = snd_dice_transaction_write_global(dice, GLOBAL_CLOCK_SELECT, &new, sizeof(new)); if (err < 0) return err; if (wait_for_completion_timeout(&dice->clock_accepted, msecs_to_jiffies(NOTIFICATION_TIMEOUT_MS)) == 0) { if (reg != new) return -ETIMEDOUT; } return 0; } static int get_register_params(struct snd_dice *dice, struct reg_params *tx_params, struct reg_params *rx_params) { __be32 reg[2]; int err; err = snd_dice_transaction_read_tx(dice, TX_NUMBER, reg, sizeof(reg)); if (err < 0) return err; tx_params->count = min_t(unsigned int, be32_to_cpu(reg[0]), MAX_STREAMS); tx_params->size = be32_to_cpu(reg[1]) * 4; err = snd_dice_transaction_read_rx(dice, RX_NUMBER, reg, sizeof(reg)); if (err < 0) return err; rx_params->count = min_t(unsigned int, be32_to_cpu(reg[0]), MAX_STREAMS); rx_params->size = be32_to_cpu(reg[1]) * 4; return 0; } static void release_resources(struct snd_dice *dice) { int i; for (i = 0; i < MAX_STREAMS; ++i) { fw_iso_resources_free(&dice->tx_resources[i]); fw_iso_resources_free(&dice->rx_resources[i]); } } static void stop_streams(struct snd_dice *dice, enum amdtp_stream_direction dir, struct reg_params *params) { __be32 reg; unsigned int i; for (i = 0; i < params->count; i++) { reg = cpu_to_be32((u32)-1); if (dir == AMDTP_IN_STREAM) { snd_dice_transaction_write_tx(dice, params->size * i + TX_ISOCHRONOUS, ®, sizeof(reg)); } else { snd_dice_transaction_write_rx(dice, params->size * i + RX_ISOCHRONOUS, ®, sizeof(reg)); } } } static int keep_resources(struct snd_dice *dice, struct amdtp_stream *stream, struct fw_iso_resources *resources, unsigned int rate, unsigned int pcm_chs, unsigned int midi_ports) { bool double_pcm_frames; unsigned int i; int err; // At 176.4/192.0 kHz, Dice has a quirk to transfer two PCM frames in // one data block of AMDTP packet. Thus sampling transfer frequency is // a half of PCM sampling frequency, i.e. PCM frames at 192.0 kHz are // transferred on AMDTP packets at 96 kHz. Two successive samples of a // channel are stored consecutively in the packet. This quirk is called // as 'Dual Wire'. // For this quirk, blocking mode is required and PCM buffer size should // be aligned to SYT_INTERVAL. double_pcm_frames = (rate > 96000 && !dice->disable_double_pcm_frames); if (double_pcm_frames) { rate /= 2; pcm_chs *= 2; } err = amdtp_am824_set_parameters(stream, rate, pcm_chs, midi_ports, double_pcm_frames); if (err < 0) return err; if (double_pcm_frames) { pcm_chs /= 2; for (i = 0; i < pcm_chs; i++) { amdtp_am824_set_pcm_position(stream, i, i * 2); amdtp_am824_set_pcm_position(stream, i + pcm_chs, i * 2 + 1); } } return fw_iso_resources_allocate(resources, amdtp_stream_get_max_payload(stream), fw_parent_device(dice->unit)->max_speed); } static int keep_dual_resources(struct snd_dice *dice, unsigned int rate, enum amdtp_stream_direction dir, struct reg_params *params) { enum snd_dice_rate_mode mode; int i; int err; err = snd_dice_stream_get_rate_mode(dice, rate, &mode); if (err < 0) return err; for (i = 0; i < params->count; ++i) { __be32 reg[2]; struct amdtp_stream *stream; struct fw_iso_resources *resources; unsigned int pcm_cache; unsigned int pcm_chs; unsigned int midi_ports; if (dir == AMDTP_IN_STREAM) { stream = &dice->tx_stream[i]; resources = &dice->tx_resources[i]; pcm_cache = dice->tx_pcm_chs[i][mode]; err = snd_dice_transaction_read_tx(dice, params->size * i + TX_NUMBER_AUDIO, reg, sizeof(reg)); } else { stream = &dice->rx_stream[i]; resources = &dice->rx_resources[i]; pcm_cache = dice->rx_pcm_chs[i][mode]; err = snd_dice_transaction_read_rx(dice, params->size * i + RX_NUMBER_AUDIO, reg, sizeof(reg)); } if (err < 0) return err; pcm_chs = be32_to_cpu(reg[0]); midi_ports = be32_to_cpu(reg[1]); // These are important for developer of this driver. if (pcm_chs != pcm_cache) { dev_info(&dice->unit->device, "cache mismatch: pcm: %u:%u, midi: %u\n", pcm_chs, pcm_cache, midi_ports); return -EPROTO; } err = keep_resources(dice, stream, resources, rate, pcm_chs, midi_ports); if (err < 0) return err; } return 0; } static void finish_session(struct snd_dice *dice, struct reg_params *tx_params, struct reg_params *rx_params) { stop_streams(dice, AMDTP_IN_STREAM, tx_params); stop_streams(dice, AMDTP_OUT_STREAM, rx_params); snd_dice_transaction_clear_enable(dice); } int snd_dice_stream_reserve_duplex(struct snd_dice *dice, unsigned int rate, unsigned int events_per_period, unsigned int events_per_buffer) { unsigned int curr_rate; int err; // Check sampling transmission frequency. err = snd_dice_transaction_get_rate(dice, &curr_rate); if (err < 0) return err; if (rate == 0) rate = curr_rate; if (dice->substreams_counter == 0 || curr_rate != rate) { struct reg_params tx_params, rx_params; amdtp_domain_stop(&dice->domain); err = get_register_params(dice, &tx_params, &rx_params); if (err < 0) return err; finish_session(dice, &tx_params, &rx_params); release_resources(dice); // Just after owning the unit (GLOBAL_OWNER), the unit can // return invalid stream formats. Selecting clock parameters // have an effect for the unit to refine it. err = select_clock(dice, rate); if (err < 0) return err; // After changing sampling transfer frequency, the value of // register can be changed. err = get_register_params(dice, &tx_params, &rx_params); if (err < 0) return err; err = keep_dual_resources(dice, rate, AMDTP_IN_STREAM, &tx_params); if (err < 0) goto error; err = keep_dual_resources(dice, rate, AMDTP_OUT_STREAM, &rx_params); if (err < 0) goto error; err = amdtp_domain_set_events_per_period(&dice->domain, events_per_period, events_per_buffer); if (err < 0) goto error; } return 0; error: release_resources(dice); return err; } static int start_streams(struct snd_dice *dice, enum amdtp_stream_direction dir, unsigned int rate, struct reg_params *params) { unsigned int max_speed = fw_parent_device(dice->unit)->max_speed; int i; int err; for (i = 0; i < params->count; i++) { struct amdtp_stream *stream; struct fw_iso_resources *resources; __be32 reg; if (dir == AMDTP_IN_STREAM) { stream = dice->tx_stream + i; resources = dice->tx_resources + i; } else { stream = dice->rx_stream + i; resources = dice->rx_resources + i; } reg = cpu_to_be32(resources->channel); if (dir == AMDTP_IN_STREAM) { err = snd_dice_transaction_write_tx(dice, params->size * i + TX_ISOCHRONOUS, ®, sizeof(reg)); } else { err = snd_dice_transaction_write_rx(dice, params->size * i + RX_ISOCHRONOUS, ®, sizeof(reg)); } if (err < 0) return err; if (dir == AMDTP_IN_STREAM) { reg = cpu_to_be32(max_speed); err = snd_dice_transaction_write_tx(dice, params->size * i + TX_SPEED, ®, sizeof(reg)); if (err < 0) return err; } err = amdtp_domain_add_stream(&dice->domain, stream, resources->channel, max_speed); if (err < 0) return err; } return 0; } /* * MEMO: After this function, there're two states of streams: * - None streams are running. * - All streams are running. */ int snd_dice_stream_start_duplex(struct snd_dice *dice) { unsigned int generation = dice->rx_resources[0].generation; struct reg_params tx_params, rx_params; unsigned int i; unsigned int rate; enum snd_dice_rate_mode mode; int err; if (dice->substreams_counter == 0) return -EIO; err = get_register_params(dice, &tx_params, &rx_params); if (err < 0) return err; // Check error of packet streaming. for (i = 0; i < MAX_STREAMS; ++i) { if (amdtp_streaming_error(&dice->tx_stream[i]) || amdtp_streaming_error(&dice->rx_stream[i])) { amdtp_domain_stop(&dice->domain); finish_session(dice, &tx_params, &rx_params); break; } } if (generation != fw_parent_device(dice->unit)->card->generation) { for (i = 0; i < MAX_STREAMS; ++i) { if (i < tx_params.count) fw_iso_resources_update(dice->tx_resources + i); if (i < rx_params.count) fw_iso_resources_update(dice->rx_resources + i); } } // Check required streams are running or not. err = snd_dice_transaction_get_rate(dice, &rate); if (err < 0) return err; err = snd_dice_stream_get_rate_mode(dice, rate, &mode); if (err < 0) return err; for (i = 0; i < MAX_STREAMS; ++i) { if (dice->tx_pcm_chs[i][mode] > 0 && !amdtp_stream_running(&dice->tx_stream[i])) break; if (dice->rx_pcm_chs[i][mode] > 0 && !amdtp_stream_running(&dice->rx_stream[i])) break; } if (i < MAX_STREAMS) { // Start both streams. err = start_streams(dice, AMDTP_IN_STREAM, rate, &tx_params); if (err < 0) goto error; err = start_streams(dice, AMDTP_OUT_STREAM, rate, &rx_params); if (err < 0) goto error; err = snd_dice_transaction_set_enable(dice); if (err < 0) { dev_err(&dice->unit->device, "fail to enable interface\n"); goto error; } // MEMO: The device immediately starts packet transmission when enabled. Some // devices are strictly to generate any discontinuity in the sequence of tx packet // when they receives invalid sequence of presentation time in CIP header. The // sequence replay for media clock recovery can suppress the behaviour. err = amdtp_domain_start(&dice->domain, 0, true, false); if (err < 0) goto error; if (!amdtp_domain_wait_ready(&dice->domain, READY_TIMEOUT_MS)) { err = -ETIMEDOUT; goto error; } } return 0; error: amdtp_domain_stop(&dice->domain); finish_session(dice, &tx_params, &rx_params); return err; } /* * MEMO: After this function, there're two states of streams: * - None streams are running. * - All streams are running. */ void snd_dice_stream_stop_duplex(struct snd_dice *dice) { struct reg_params tx_params, rx_params; if (dice->substreams_counter == 0) { if (get_register_params(dice, &tx_params, &rx_params) >= 0) finish_session(dice, &tx_params, &rx_params); amdtp_domain_stop(&dice->domain); release_resources(dice); } } static int init_stream(struct snd_dice *dice, enum amdtp_stream_direction dir, unsigned int index) { struct amdtp_stream *stream; struct fw_iso_resources *resources; int err; if (dir == AMDTP_IN_STREAM) { stream = &dice->tx_stream[index]; resources = &dice->tx_resources[index]; } else { stream = &dice->rx_stream[index]; resources = &dice->rx_resources[index]; } err = fw_iso_resources_init(resources, dice->unit); if (err < 0) goto end; resources->channels_mask = 0x00000000ffffffffuLL; err = amdtp_am824_init(stream, dice->unit, dir, CIP_BLOCKING); if (err < 0) { amdtp_stream_destroy(stream); fw_iso_resources_destroy(resources); } end: return err; } /* * This function should be called before starting streams or after stopping * streams. */ static void destroy_stream(struct snd_dice *dice, enum amdtp_stream_direction dir, unsigned int index) { struct amdtp_stream *stream; struct fw_iso_resources *resources; if (dir == AMDTP_IN_STREAM) { stream = &dice->tx_stream[index]; resources = &dice->tx_resources[index]; } else { stream = &dice->rx_stream[index]; resources = &dice->rx_resources[index]; } amdtp_stream_destroy(stream); fw_iso_resources_destroy(resources); } int snd_dice_stream_init_duplex(struct snd_dice *dice) { int i, err; for (i = 0; i < MAX_STREAMS; i++) { err = init_stream(dice, AMDTP_IN_STREAM, i); if (err < 0) { for (; i >= 0; i--) destroy_stream(dice, AMDTP_IN_STREAM, i); goto end; } } for (i = 0; i < MAX_STREAMS; i++) { err = init_stream(dice, AMDTP_OUT_STREAM, i); if (err < 0) { for (; i >= 0; i--) destroy_stream(dice, AMDTP_OUT_STREAM, i); for (i = 0; i < MAX_STREAMS; i++) destroy_stream(dice, AMDTP_IN_STREAM, i); goto end; } } err = amdtp_domain_init(&dice->domain); if (err < 0) { for (i = 0; i < MAX_STREAMS; ++i) { destroy_stream(dice, AMDTP_OUT_STREAM, i); destroy_stream(dice, AMDTP_IN_STREAM, i); } } end: return err; } void snd_dice_stream_destroy_duplex(struct snd_dice *dice) { unsigned int i; for (i = 0; i < MAX_STREAMS; i++) { destroy_stream(dice, AMDTP_IN_STREAM, i); destroy_stream(dice, AMDTP_OUT_STREAM, i); } amdtp_domain_destroy(&dice->domain); } void snd_dice_stream_update_duplex(struct snd_dice *dice) { struct reg_params tx_params, rx_params; /* * On a bus reset, the DICE firmware disables streaming and then goes * off contemplating its own navel for hundreds of milliseconds before * it can react to any of our attempts to reenable streaming. This * means that we lose synchronization anyway, so we force our streams * to stop so that the application can restart them in an orderly * manner. */ dice->global_enabled = false; if (get_register_params(dice, &tx_params, &rx_params) == 0) { amdtp_domain_stop(&dice->domain); stop_streams(dice, AMDTP_IN_STREAM, &tx_params); stop_streams(dice, AMDTP_OUT_STREAM, &rx_params); } } int snd_dice_stream_detect_current_formats(struct snd_dice *dice) { unsigned int rate; enum snd_dice_rate_mode mode; __be32 reg[2]; struct reg_params tx_params, rx_params; int i; int err; /* If extended protocol is available, detect detail spec. */ err = snd_dice_detect_extension_formats(dice); if (err >= 0) return err; /* * Available stream format is restricted at current mode of sampling * clock. */ err = snd_dice_transaction_get_rate(dice, &rate); if (err < 0) return err; err = snd_dice_stream_get_rate_mode(dice, rate, &mode); if (err < 0) return err; /* * Just after owning the unit (GLOBAL_OWNER), the unit can return * invalid stream formats. Selecting clock parameters have an effect * for the unit to refine it. */ err = select_clock(dice, rate); if (err < 0) return err; err = get_register_params(dice, &tx_params, &rx_params); if (err < 0) return err; for (i = 0; i < tx_params.count; ++i) { err = snd_dice_transaction_read_tx(dice, tx_params.size * i + TX_NUMBER_AUDIO, reg, sizeof(reg)); if (err < 0) return err; dice->tx_pcm_chs[i][mode] = be32_to_cpu(reg[0]); dice->tx_midi_ports[i] = max_t(unsigned int, be32_to_cpu(reg[1]), dice->tx_midi_ports[i]); } for (i = 0; i < rx_params.count; ++i) { err = snd_dice_transaction_read_rx(dice, rx_params.size * i + RX_NUMBER_AUDIO, reg, sizeof(reg)); if (err < 0) return err; dice->rx_pcm_chs[i][mode] = be32_to_cpu(reg[0]); dice->rx_midi_ports[i] = max_t(unsigned int, be32_to_cpu(reg[1]), dice->rx_midi_ports[i]); } return 0; } static void dice_lock_changed(struct snd_dice *dice) { dice->dev_lock_changed = true; wake_up(&dice->hwdep_wait); } int snd_dice_stream_lock_try(struct snd_dice *dice) { int err; spin_lock_irq(&dice->lock); if (dice->dev_lock_count < 0) { err = -EBUSY; goto out; } if (dice->dev_lock_count++ == 0) dice_lock_changed(dice); err = 0; out: spin_unlock_irq(&dice->lock); return err; } void snd_dice_stream_lock_release(struct snd_dice *dice) { spin_lock_irq(&dice->lock); if (WARN_ON(dice->dev_lock_count <= 0)) goto out; if (--dice->dev_lock_count == 0) dice_lock_changed(dice); out: spin_unlock_irq(&dice->lock); } |