1 // SPDX-License-Identifier: GPL-2.0+ 2 // 3 // soc-pcm.c -- ALSA SoC PCM 4 // 5 // Copyright 2005 Wolfson Microelectronics PLC. 6 // Copyright 2005 Openedhand Ltd. 7 // Copyright (C) 2010 Slimlogic Ltd. 8 // Copyright (C) 2010 Texas Instruments Inc. 9 // 10 // Authors: Liam Girdwood <lrg@ti.com> 11 // Mark Brown <broonie@opensource.wolfsonmicro.com> 12 13 #include <linux/kernel.h> 14 #include <linux/init.h> 15 #include <linux/delay.h> 16 #include <linux/pinctrl/consumer.h> 17 #include <linux/slab.h> 18 #include <linux/workqueue.h> 19 #include <linux/export.h> 20 #include <linux/debugfs.h> 21 #include <sound/core.h> 22 #include <sound/pcm.h> 23 #include <sound/pcm_params.h> 24 #include <sound/soc.h> 25 #include <sound/soc-dpcm.h> 26 #include <sound/soc-link.h> 27 #include <sound/initval.h> 28 29 #define soc_pcm_ret(rtd, ret) _soc_pcm_ret(rtd, __func__, ret) 30 static inline int _soc_pcm_ret(struct snd_soc_pcm_runtime *rtd, 31 const char *func, int ret) 32 { 33 /* Positive, Zero values are not errors */ 34 if (ret >= 0) 35 return ret; 36 37 /* Negative values might be errors */ 38 switch (ret) { 39 case -EPROBE_DEFER: 40 case -ENOTSUPP: 41 case -EINVAL: 42 break; 43 default: 44 dev_err(rtd->dev, 45 "ASoC: error at %s on %s: %d\n", 46 func, rtd->dai_link->name, ret); 47 } 48 49 return ret; 50 } 51 52 static inline void snd_soc_dpcm_stream_lock_irq(struct snd_soc_pcm_runtime *rtd, 53 int stream) 54 { 55 snd_pcm_stream_lock_irq(snd_soc_dpcm_get_substream(rtd, stream)); 56 } 57 58 #define snd_soc_dpcm_stream_lock_irqsave_nested(rtd, stream, flags) \ 59 snd_pcm_stream_lock_irqsave_nested(snd_soc_dpcm_get_substream(rtd, stream), flags) 60 61 static inline void snd_soc_dpcm_stream_unlock_irq(struct snd_soc_pcm_runtime *rtd, 62 int stream) 63 { 64 snd_pcm_stream_unlock_irq(snd_soc_dpcm_get_substream(rtd, stream)); 65 } 66 67 #define snd_soc_dpcm_stream_unlock_irqrestore(rtd, stream, flags) \ 68 snd_pcm_stream_unlock_irqrestore(snd_soc_dpcm_get_substream(rtd, stream), flags) 69 70 #define DPCM_MAX_BE_USERS 8 71 72 static inline const char *soc_cpu_dai_name(struct snd_soc_pcm_runtime *rtd) 73 { 74 return (rtd)->dai_link->num_cpus == 1 ? snd_soc_rtd_to_cpu(rtd, 0)->name : "multicpu"; 75 } 76 static inline const char *soc_codec_dai_name(struct snd_soc_pcm_runtime *rtd) 77 { 78 return (rtd)->dai_link->num_codecs == 1 ? snd_soc_rtd_to_codec(rtd, 0)->name : "multicodec"; 79 } 80 81 #ifdef CONFIG_DEBUG_FS 82 static const char *dpcm_state_string(enum snd_soc_dpcm_state state) 83 { 84 switch (state) { 85 case SND_SOC_DPCM_STATE_NEW: 86 return "new"; 87 case SND_SOC_DPCM_STATE_OPEN: 88 return "open"; 89 case SND_SOC_DPCM_STATE_HW_PARAMS: 90 return "hw_params"; 91 case SND_SOC_DPCM_STATE_PREPARE: 92 return "prepare"; 93 case SND_SOC_DPCM_STATE_START: 94 return "start"; 95 case SND_SOC_DPCM_STATE_STOP: 96 return "stop"; 97 case SND_SOC_DPCM_STATE_SUSPEND: 98 return "suspend"; 99 case SND_SOC_DPCM_STATE_PAUSED: 100 return "paused"; 101 case SND_SOC_DPCM_STATE_HW_FREE: 102 return "hw_free"; 103 case SND_SOC_DPCM_STATE_CLOSE: 104 return "close"; 105 } 106 107 return "unknown"; 108 } 109 110 static ssize_t dpcm_show_state(struct snd_soc_pcm_runtime *fe, 111 int stream, char *buf, size_t size) 112 { 113 struct snd_pcm_hw_params *params = &fe->dpcm[stream].hw_params; 114 struct snd_soc_dpcm *dpcm; 115 ssize_t offset = 0; 116 117 /* FE state */ 118 offset += scnprintf(buf + offset, size - offset, 119 "[%s - %s]\n", fe->dai_link->name, 120 stream ? "Capture" : "Playback"); 121 122 offset += scnprintf(buf + offset, size - offset, "State: %s\n", 123 dpcm_state_string(fe->dpcm[stream].state)); 124 125 if ((fe->dpcm[stream].state >= SND_SOC_DPCM_STATE_HW_PARAMS) && 126 (fe->dpcm[stream].state <= SND_SOC_DPCM_STATE_STOP)) 127 offset += scnprintf(buf + offset, size - offset, 128 "Hardware Params: " 129 "Format = %s, Channels = %d, Rate = %d\n", 130 snd_pcm_format_name(params_format(params)), 131 params_channels(params), 132 params_rate(params)); 133 134 /* BEs state */ 135 offset += scnprintf(buf + offset, size - offset, "Backends:\n"); 136 137 if (list_empty(&fe->dpcm[stream].be_clients)) { 138 offset += scnprintf(buf + offset, size - offset, 139 " No active DSP links\n"); 140 goto out; 141 } 142 143 for_each_dpcm_be(fe, stream, dpcm) { 144 struct snd_soc_pcm_runtime *be = dpcm->be; 145 params = &be->dpcm[stream].hw_params; 146 147 offset += scnprintf(buf + offset, size - offset, 148 "- %s\n", be->dai_link->name); 149 150 offset += scnprintf(buf + offset, size - offset, 151 " State: %s\n", 152 dpcm_state_string(be->dpcm[stream].state)); 153 154 if ((be->dpcm[stream].state >= SND_SOC_DPCM_STATE_HW_PARAMS) && 155 (be->dpcm[stream].state <= SND_SOC_DPCM_STATE_STOP)) 156 offset += scnprintf(buf + offset, size - offset, 157 " Hardware Params: " 158 "Format = %s, Channels = %d, Rate = %d\n", 159 snd_pcm_format_name(params_format(params)), 160 params_channels(params), 161 params_rate(params)); 162 } 163 out: 164 return offset; 165 } 166 167 static ssize_t dpcm_state_read_file(struct file *file, char __user *user_buf, 168 size_t count, loff_t *ppos) 169 { 170 struct snd_soc_pcm_runtime *fe = file->private_data; 171 ssize_t out_count = PAGE_SIZE, offset = 0, ret = 0; 172 int stream; 173 char *buf; 174 175 if (fe->dai_link->num_cpus > 1) { 176 dev_err(fe->dev, 177 "%s doesn't support Multi CPU yet\n", __func__); 178 return -EINVAL; 179 } 180 181 buf = kmalloc(out_count, GFP_KERNEL); 182 if (!buf) 183 return -ENOMEM; 184 185 snd_soc_dpcm_mutex_lock(fe); 186 for_each_pcm_streams(stream) 187 if (snd_soc_dai_stream_valid(snd_soc_rtd_to_cpu(fe, 0), stream)) 188 offset += dpcm_show_state(fe, stream, 189 buf + offset, 190 out_count - offset); 191 snd_soc_dpcm_mutex_unlock(fe); 192 193 ret = simple_read_from_buffer(user_buf, count, ppos, buf, offset); 194 195 kfree(buf); 196 return ret; 197 } 198 199 static const struct file_operations dpcm_state_fops = { 200 .open = simple_open, 201 .read = dpcm_state_read_file, 202 .llseek = default_llseek, 203 }; 204 205 void soc_dpcm_debugfs_add(struct snd_soc_pcm_runtime *rtd) 206 { 207 if (!rtd->dai_link->dynamic) 208 return; 209 210 if (!rtd->card->debugfs_card_root) 211 return; 212 213 rtd->debugfs_dpcm_root = debugfs_create_dir(rtd->dai_link->name, 214 rtd->card->debugfs_card_root); 215 216 debugfs_create_file("state", 0444, rtd->debugfs_dpcm_root, 217 rtd, &dpcm_state_fops); 218 } 219 220 static void dpcm_create_debugfs_state(struct snd_soc_dpcm *dpcm, int stream) 221 { 222 char *name; 223 224 name = kasprintf(GFP_KERNEL, "%s:%s", dpcm->be->dai_link->name, 225 stream ? "capture" : "playback"); 226 if (name) { 227 dpcm->debugfs_state = debugfs_create_dir( 228 name, dpcm->fe->debugfs_dpcm_root); 229 debugfs_create_u32("state", 0644, dpcm->debugfs_state, 230 &dpcm->state); 231 kfree(name); 232 } 233 } 234 235 static void dpcm_remove_debugfs_state(struct snd_soc_dpcm *dpcm) 236 { 237 debugfs_remove_recursive(dpcm->debugfs_state); 238 } 239 240 #else 241 static inline void dpcm_create_debugfs_state(struct snd_soc_dpcm *dpcm, 242 int stream) 243 { 244 } 245 246 static inline void dpcm_remove_debugfs_state(struct snd_soc_dpcm *dpcm) 247 { 248 } 249 #endif 250 251 /* Set FE's runtime_update state; the state is protected via PCM stream lock 252 * for avoiding the race with trigger callback. 253 * If the state is unset and a trigger is pending while the previous operation, 254 * process the pending trigger action here. 255 */ 256 static int dpcm_fe_dai_do_trigger(struct snd_pcm_substream *substream, int cmd); 257 static void dpcm_set_fe_update_state(struct snd_soc_pcm_runtime *fe, 258 int stream, enum snd_soc_dpcm_update state) 259 { 260 struct snd_pcm_substream *substream = 261 snd_soc_dpcm_get_substream(fe, stream); 262 263 snd_soc_dpcm_stream_lock_irq(fe, stream); 264 if (state == SND_SOC_DPCM_UPDATE_NO && fe->dpcm[stream].trigger_pending) { 265 dpcm_fe_dai_do_trigger(substream, 266 fe->dpcm[stream].trigger_pending - 1); 267 fe->dpcm[stream].trigger_pending = 0; 268 } 269 fe->dpcm[stream].runtime_update = state; 270 snd_soc_dpcm_stream_unlock_irq(fe, stream); 271 } 272 273 static void dpcm_set_be_update_state(struct snd_soc_pcm_runtime *be, 274 int stream, enum snd_soc_dpcm_update state) 275 { 276 be->dpcm[stream].runtime_update = state; 277 } 278 279 /** 280 * snd_soc_runtime_action() - Increment/Decrement active count for 281 * PCM runtime components 282 * @rtd: ASoC PCM runtime that is activated 283 * @stream: Direction of the PCM stream 284 * @action: Activate stream if 1. Deactivate if -1. 285 * 286 * Increments/Decrements the active count for all the DAIs and components 287 * attached to a PCM runtime. 288 * Should typically be called when a stream is opened. 289 * 290 * Must be called with the rtd->card->pcm_mutex being held 291 */ 292 void snd_soc_runtime_action(struct snd_soc_pcm_runtime *rtd, 293 int stream, int action) 294 { 295 struct snd_soc_dai *dai; 296 int i; 297 298 snd_soc_dpcm_mutex_assert_held(rtd); 299 300 for_each_rtd_dais(rtd, i, dai) 301 snd_soc_dai_action(dai, stream, action); 302 } 303 EXPORT_SYMBOL_GPL(snd_soc_runtime_action); 304 305 /** 306 * snd_soc_runtime_ignore_pmdown_time() - Check whether to ignore the power down delay 307 * @rtd: The ASoC PCM runtime that should be checked. 308 * 309 * This function checks whether the power down delay should be ignored for a 310 * specific PCM runtime. Returns true if the delay is 0, if it the DAI link has 311 * been configured to ignore the delay, or if none of the components benefits 312 * from having the delay. 313 */ 314 bool snd_soc_runtime_ignore_pmdown_time(struct snd_soc_pcm_runtime *rtd) 315 { 316 struct snd_soc_component *component; 317 bool ignore = true; 318 int i; 319 320 if (!rtd->pmdown_time || rtd->dai_link->ignore_pmdown_time) 321 return true; 322 323 for_each_rtd_components(rtd, i, component) 324 ignore &= !component->driver->use_pmdown_time; 325 326 return ignore; 327 } 328 329 /** 330 * snd_soc_set_runtime_hwparams - set the runtime hardware parameters 331 * @substream: the pcm substream 332 * @hw: the hardware parameters 333 * 334 * Sets the substream runtime hardware parameters. 335 */ 336 int snd_soc_set_runtime_hwparams(struct snd_pcm_substream *substream, 337 const struct snd_pcm_hardware *hw) 338 { 339 substream->runtime->hw = *hw; 340 341 return 0; 342 } 343 EXPORT_SYMBOL_GPL(snd_soc_set_runtime_hwparams); 344 345 /* DPCM stream event, send event to FE and all active BEs. */ 346 int dpcm_dapm_stream_event(struct snd_soc_pcm_runtime *fe, int dir, 347 int event) 348 { 349 struct snd_soc_dpcm *dpcm; 350 351 snd_soc_dpcm_mutex_assert_held(fe); 352 353 for_each_dpcm_be(fe, dir, dpcm) { 354 355 struct snd_soc_pcm_runtime *be = dpcm->be; 356 357 dev_dbg(be->dev, "ASoC: BE %s event %d dir %d\n", 358 be->dai_link->name, event, dir); 359 360 if ((event == SND_SOC_DAPM_STREAM_STOP) && 361 (be->dpcm[dir].users >= 1)) 362 continue; 363 364 snd_soc_dapm_stream_event(be, dir, event); 365 } 366 367 snd_soc_dapm_stream_event(fe, dir, event); 368 369 return 0; 370 } 371 372 static void soc_pcm_set_dai_params(struct snd_soc_dai *dai, 373 struct snd_pcm_hw_params *params) 374 { 375 if (params) { 376 dai->rate = params_rate(params); 377 dai->channels = params_channels(params); 378 dai->sample_bits = snd_pcm_format_physical_width(params_format(params)); 379 } else { 380 dai->rate = 0; 381 dai->channels = 0; 382 dai->sample_bits = 0; 383 } 384 } 385 386 static int soc_pcm_apply_symmetry(struct snd_pcm_substream *substream, 387 struct snd_soc_dai *soc_dai) 388 { 389 struct snd_soc_pcm_runtime *rtd = snd_soc_substream_to_rtd(substream); 390 int ret; 391 392 if (!snd_soc_dai_active(soc_dai)) 393 return 0; 394 395 #define __soc_pcm_apply_symmetry(name, NAME) \ 396 if (soc_dai->name && (soc_dai->driver->symmetric_##name || \ 397 rtd->dai_link->symmetric_##name)) { \ 398 dev_dbg(soc_dai->dev, "ASoC: Symmetry forces %s to %d\n",\ 399 #name, soc_dai->name); \ 400 \ 401 ret = snd_pcm_hw_constraint_single(substream->runtime, \ 402 SNDRV_PCM_HW_PARAM_##NAME,\ 403 soc_dai->name); \ 404 if (ret < 0) { \ 405 dev_err(soc_dai->dev, \ 406 "ASoC: Unable to apply %s constraint: %d\n",\ 407 #name, ret); \ 408 return ret; \ 409 } \ 410 } 411 412 __soc_pcm_apply_symmetry(rate, RATE); 413 __soc_pcm_apply_symmetry(channels, CHANNELS); 414 __soc_pcm_apply_symmetry(sample_bits, SAMPLE_BITS); 415 416 return 0; 417 } 418 419 static int soc_pcm_params_symmetry(struct snd_pcm_substream *substream, 420 struct snd_pcm_hw_params *params) 421 { 422 struct snd_soc_pcm_runtime *rtd = snd_soc_substream_to_rtd(substream); 423 struct snd_soc_dai d; 424 struct snd_soc_dai *dai; 425 struct snd_soc_dai *cpu_dai; 426 unsigned int symmetry, i; 427 428 d.name = __func__; 429 soc_pcm_set_dai_params(&d, params); 430 431 #define __soc_pcm_params_symmetry(xxx) \ 432 symmetry = rtd->dai_link->symmetric_##xxx; \ 433 for_each_rtd_dais(rtd, i, dai) \ 434 symmetry |= dai->driver->symmetric_##xxx; \ 435 \ 436 if (symmetry) \ 437 for_each_rtd_cpu_dais(rtd, i, cpu_dai) \ 438 if (!snd_soc_dai_is_dummy(cpu_dai) && \ 439 cpu_dai->xxx && cpu_dai->xxx != d.xxx) { \ 440 dev_err(rtd->dev, "ASoC: unmatched %s symmetry: %s:%d - %s:%d\n", \ 441 #xxx, cpu_dai->name, cpu_dai->xxx, d.name, d.xxx); \ 442 return -EINVAL; \ 443 } 444 445 /* reject unmatched parameters when applying symmetry */ 446 __soc_pcm_params_symmetry(rate); 447 __soc_pcm_params_symmetry(channels); 448 __soc_pcm_params_symmetry(sample_bits); 449 450 return 0; 451 } 452 453 static void soc_pcm_update_symmetry(struct snd_pcm_substream *substream) 454 { 455 struct snd_soc_pcm_runtime *rtd = snd_soc_substream_to_rtd(substream); 456 struct snd_soc_dai_link *link = rtd->dai_link; 457 struct snd_soc_dai *dai; 458 unsigned int symmetry, i; 459 460 symmetry = link->symmetric_rate || 461 link->symmetric_channels || 462 link->symmetric_sample_bits; 463 464 for_each_rtd_dais(rtd, i, dai) 465 symmetry = symmetry || 466 dai->driver->symmetric_rate || 467 dai->driver->symmetric_channels || 468 dai->driver->symmetric_sample_bits; 469 470 if (symmetry) 471 substream->runtime->hw.info |= SNDRV_PCM_INFO_JOINT_DUPLEX; 472 } 473 474 static void soc_pcm_set_msb(struct snd_pcm_substream *substream, int bits) 475 { 476 struct snd_soc_pcm_runtime *rtd = snd_soc_substream_to_rtd(substream); 477 int ret; 478 479 if (!bits) 480 return; 481 482 ret = snd_pcm_hw_constraint_msbits(substream->runtime, 0, 0, bits); 483 if (ret != 0) 484 dev_warn(rtd->dev, "ASoC: Failed to set MSB %d: %d\n", 485 bits, ret); 486 } 487 488 static void soc_pcm_apply_msb(struct snd_pcm_substream *substream) 489 { 490 struct snd_soc_pcm_runtime *rtd = snd_soc_substream_to_rtd(substream); 491 struct snd_soc_dai *cpu_dai; 492 struct snd_soc_dai *codec_dai; 493 int stream = substream->stream; 494 int i; 495 unsigned int bits = 0, cpu_bits = 0; 496 497 for_each_rtd_codec_dais(rtd, i, codec_dai) { 498 struct snd_soc_pcm_stream *pcm_codec = snd_soc_dai_get_pcm_stream(codec_dai, stream); 499 500 if (pcm_codec->sig_bits == 0) { 501 bits = 0; 502 break; 503 } 504 bits = max(pcm_codec->sig_bits, bits); 505 } 506 507 for_each_rtd_cpu_dais(rtd, i, cpu_dai) { 508 struct snd_soc_pcm_stream *pcm_cpu = snd_soc_dai_get_pcm_stream(cpu_dai, stream); 509 510 if (pcm_cpu->sig_bits == 0) { 511 cpu_bits = 0; 512 break; 513 } 514 cpu_bits = max(pcm_cpu->sig_bits, cpu_bits); 515 } 516 517 soc_pcm_set_msb(substream, bits); 518 soc_pcm_set_msb(substream, cpu_bits); 519 } 520 521 static void soc_pcm_hw_init(struct snd_pcm_hardware *hw) 522 { 523 hw->rates = UINT_MAX; 524 hw->rate_min = 0; 525 hw->rate_max = UINT_MAX; 526 hw->channels_min = 0; 527 hw->channels_max = UINT_MAX; 528 hw->formats = ULLONG_MAX; 529 } 530 531 static void soc_pcm_hw_update_rate(struct snd_pcm_hardware *hw, 532 struct snd_soc_pcm_stream *p) 533 { 534 hw->rates = snd_pcm_rate_mask_intersect(hw->rates, p->rates); 535 536 /* setup hw->rate_min/max via hw->rates first */ 537 snd_pcm_hw_limit_rates(hw); 538 539 /* update hw->rate_min/max by snd_soc_pcm_stream */ 540 hw->rate_min = max(hw->rate_min, p->rate_min); 541 hw->rate_max = min_not_zero(hw->rate_max, p->rate_max); 542 } 543 544 static void soc_pcm_hw_update_chan(struct snd_pcm_hardware *hw, 545 struct snd_soc_pcm_stream *p) 546 { 547 hw->channels_min = max(hw->channels_min, p->channels_min); 548 hw->channels_max = min(hw->channels_max, p->channels_max); 549 } 550 551 static void soc_pcm_hw_update_format(struct snd_pcm_hardware *hw, 552 struct snd_soc_pcm_stream *p) 553 { 554 hw->formats &= p->formats; 555 } 556 557 /** 558 * snd_soc_runtime_calc_hw() - Calculate hw limits for a PCM stream 559 * @rtd: ASoC PCM runtime 560 * @hw: PCM hardware parameters (output) 561 * @stream: Direction of the PCM stream 562 * 563 * Calculates the subset of stream parameters supported by all DAIs 564 * associated with the PCM stream. 565 */ 566 int snd_soc_runtime_calc_hw(struct snd_soc_pcm_runtime *rtd, 567 struct snd_pcm_hardware *hw, int stream) 568 { 569 struct snd_soc_dai *codec_dai; 570 struct snd_soc_dai *cpu_dai; 571 struct snd_soc_pcm_stream *codec_stream; 572 struct snd_soc_pcm_stream *cpu_stream; 573 unsigned int cpu_chan_min = 0, cpu_chan_max = UINT_MAX; 574 int i; 575 576 soc_pcm_hw_init(hw); 577 578 /* first calculate min/max only for CPUs in the DAI link */ 579 for_each_rtd_cpu_dais(rtd, i, cpu_dai) { 580 581 /* 582 * Skip CPUs which don't support the current stream type. 583 * Otherwise, since the rate, channel, and format values will 584 * zero in that case, we would have no usable settings left, 585 * causing the resulting setup to fail. 586 */ 587 if (!snd_soc_dai_stream_valid(cpu_dai, stream)) 588 continue; 589 590 cpu_stream = snd_soc_dai_get_pcm_stream(cpu_dai, stream); 591 592 soc_pcm_hw_update_chan(hw, cpu_stream); 593 soc_pcm_hw_update_rate(hw, cpu_stream); 594 soc_pcm_hw_update_format(hw, cpu_stream); 595 } 596 cpu_chan_min = hw->channels_min; 597 cpu_chan_max = hw->channels_max; 598 599 /* second calculate min/max only for CODECs in the DAI link */ 600 for_each_rtd_codec_dais(rtd, i, codec_dai) { 601 602 /* 603 * Skip CODECs which don't support the current stream type. 604 * Otherwise, since the rate, channel, and format values will 605 * zero in that case, we would have no usable settings left, 606 * causing the resulting setup to fail. 607 */ 608 if (!snd_soc_dai_stream_valid(codec_dai, stream)) 609 continue; 610 611 codec_stream = snd_soc_dai_get_pcm_stream(codec_dai, stream); 612 613 soc_pcm_hw_update_chan(hw, codec_stream); 614 soc_pcm_hw_update_rate(hw, codec_stream); 615 soc_pcm_hw_update_format(hw, codec_stream); 616 } 617 618 /* Verify both a valid CPU DAI and a valid CODEC DAI were found */ 619 if (!hw->channels_min) 620 return -EINVAL; 621 622 /* 623 * chan min/max cannot be enforced if there are multiple CODEC DAIs 624 * connected to CPU DAI(s), use CPU DAI's directly and let 625 * channel allocation be fixed up later 626 */ 627 if (rtd->dai_link->num_codecs > 1) { 628 hw->channels_min = cpu_chan_min; 629 hw->channels_max = cpu_chan_max; 630 } 631 632 return 0; 633 } 634 EXPORT_SYMBOL_GPL(snd_soc_runtime_calc_hw); 635 636 static void soc_pcm_init_runtime_hw(struct snd_pcm_substream *substream) 637 { 638 struct snd_pcm_hardware *hw = &substream->runtime->hw; 639 struct snd_soc_pcm_runtime *rtd = snd_soc_substream_to_rtd(substream); 640 u64 formats = hw->formats; 641 642 /* 643 * At least one CPU and one CODEC should match. Otherwise, we should 644 * have bailed out on a higher level, since there would be no CPU or 645 * CODEC to support the transfer direction in that case. 646 */ 647 snd_soc_runtime_calc_hw(rtd, hw, substream->stream); 648 649 if (formats) 650 hw->formats &= formats; 651 } 652 653 static int soc_pcm_components_open(struct snd_pcm_substream *substream) 654 { 655 struct snd_soc_pcm_runtime *rtd = snd_soc_substream_to_rtd(substream); 656 struct snd_soc_component *component; 657 int i, ret = 0; 658 659 for_each_rtd_components(rtd, i, component) { 660 ret = snd_soc_component_module_get_when_open(component, substream); 661 if (ret < 0) 662 break; 663 664 ret = snd_soc_component_open(component, substream); 665 if (ret < 0) 666 break; 667 } 668 669 return ret; 670 } 671 672 static int soc_pcm_components_close(struct snd_pcm_substream *substream, 673 int rollback) 674 { 675 struct snd_soc_pcm_runtime *rtd = snd_soc_substream_to_rtd(substream); 676 struct snd_soc_component *component; 677 int i, ret = 0; 678 679 for_each_rtd_components(rtd, i, component) { 680 int r = snd_soc_component_close(component, substream, rollback); 681 if (r < 0) 682 ret = r; /* use last ret */ 683 684 snd_soc_component_module_put_when_close(component, substream, rollback); 685 } 686 687 return ret; 688 } 689 690 static int soc_pcm_clean(struct snd_soc_pcm_runtime *rtd, 691 struct snd_pcm_substream *substream, int rollback) 692 { 693 struct snd_soc_component *component; 694 struct snd_soc_dai *dai; 695 int i; 696 697 snd_soc_dpcm_mutex_assert_held(rtd); 698 699 if (!rollback) { 700 snd_soc_runtime_deactivate(rtd, substream->stream); 701 702 /* Make sure DAI parameters cleared if the DAI becomes inactive */ 703 for_each_rtd_dais(rtd, i, dai) { 704 if (snd_soc_dai_active(dai) == 0 && 705 (dai->rate || dai->channels || dai->sample_bits)) 706 soc_pcm_set_dai_params(dai, NULL); 707 708 if (snd_soc_dai_stream_active(dai, substream->stream) == 0) { 709 if (dai->driver->ops && !dai->driver->ops->mute_unmute_on_trigger) 710 snd_soc_dai_digital_mute(dai, 1, substream->stream); 711 } 712 } 713 } 714 715 for_each_rtd_dais(rtd, i, dai) 716 snd_soc_dai_shutdown(dai, substream, rollback); 717 718 snd_soc_link_shutdown(substream, rollback); 719 720 soc_pcm_components_close(substream, rollback); 721 722 snd_soc_pcm_component_pm_runtime_put(rtd, substream, rollback); 723 724 for_each_rtd_components(rtd, i, component) 725 if (!snd_soc_component_active(component)) 726 pinctrl_pm_select_sleep_state(component->dev); 727 728 return 0; 729 } 730 731 /* 732 * Called by ALSA when a PCM substream is closed. Private data can be 733 * freed here. The cpu DAI, codec DAI, machine and components are also 734 * shutdown. 735 */ 736 static int __soc_pcm_close(struct snd_soc_pcm_runtime *rtd, 737 struct snd_pcm_substream *substream) 738 { 739 return soc_pcm_clean(rtd, substream, 0); 740 } 741 742 /* PCM close ops for non-DPCM streams */ 743 static int soc_pcm_close(struct snd_pcm_substream *substream) 744 { 745 struct snd_soc_pcm_runtime *rtd = snd_soc_substream_to_rtd(substream); 746 747 snd_soc_dpcm_mutex_lock(rtd); 748 __soc_pcm_close(rtd, substream); 749 snd_soc_dpcm_mutex_unlock(rtd); 750 return 0; 751 } 752 753 static int soc_hw_sanity_check(struct snd_pcm_substream *substream) 754 { 755 struct snd_soc_pcm_runtime *rtd = snd_soc_substream_to_rtd(substream); 756 struct snd_pcm_hardware *hw = &substream->runtime->hw; 757 const char *name_cpu = soc_cpu_dai_name(rtd); 758 const char *name_codec = soc_codec_dai_name(rtd); 759 const char *err_msg; 760 struct device *dev = rtd->dev; 761 762 err_msg = "rates"; 763 if (!hw->rates) 764 goto config_err; 765 766 err_msg = "formats"; 767 if (!hw->formats) 768 goto config_err; 769 770 err_msg = "channels"; 771 if (!hw->channels_min || !hw->channels_max || 772 hw->channels_min > hw->channels_max) 773 goto config_err; 774 775 dev_dbg(dev, "ASoC: %s <-> %s info:\n", name_codec, 776 name_cpu); 777 dev_dbg(dev, "ASoC: rate mask 0x%x\n", hw->rates); 778 dev_dbg(dev, "ASoC: ch min %d max %d\n", hw->channels_min, 779 hw->channels_max); 780 dev_dbg(dev, "ASoC: rate min %d max %d\n", hw->rate_min, 781 hw->rate_max); 782 783 return 0; 784 785 config_err: 786 dev_err(dev, "ASoC: %s <-> %s No matching %s\n", 787 name_codec, name_cpu, err_msg); 788 return -EINVAL; 789 } 790 791 /* 792 * Called by ALSA when a PCM substream is opened, the runtime->hw record is 793 * then initialized and any private data can be allocated. This also calls 794 * startup for the cpu DAI, component, machine and codec DAI. 795 */ 796 static int __soc_pcm_open(struct snd_soc_pcm_runtime *rtd, 797 struct snd_pcm_substream *substream) 798 { 799 struct snd_soc_component *component; 800 struct snd_soc_dai *dai; 801 int i, ret = 0; 802 803 snd_soc_dpcm_mutex_assert_held(rtd); 804 805 for_each_rtd_components(rtd, i, component) 806 pinctrl_pm_select_default_state(component->dev); 807 808 ret = snd_soc_pcm_component_pm_runtime_get(rtd, substream); 809 if (ret < 0) 810 goto err; 811 812 ret = soc_pcm_components_open(substream); 813 if (ret < 0) 814 goto err; 815 816 ret = snd_soc_link_startup(substream); 817 if (ret < 0) 818 goto err; 819 820 /* startup the audio subsystem */ 821 for_each_rtd_dais(rtd, i, dai) { 822 ret = snd_soc_dai_startup(dai, substream); 823 if (ret < 0) 824 goto err; 825 } 826 827 /* Dynamic PCM DAI links compat checks use dynamic capabilities */ 828 if (rtd->dai_link->dynamic || rtd->dai_link->no_pcm) 829 goto dynamic; 830 831 /* Check that the codec and cpu DAIs are compatible */ 832 soc_pcm_init_runtime_hw(substream); 833 834 soc_pcm_update_symmetry(substream); 835 836 ret = soc_hw_sanity_check(substream); 837 if (ret < 0) 838 goto err; 839 840 soc_pcm_apply_msb(substream); 841 842 /* Symmetry only applies if we've already got an active stream. */ 843 for_each_rtd_dais(rtd, i, dai) { 844 ret = soc_pcm_apply_symmetry(substream, dai); 845 if (ret != 0) 846 goto err; 847 } 848 dynamic: 849 snd_soc_runtime_activate(rtd, substream->stream); 850 ret = 0; 851 err: 852 if (ret < 0) 853 soc_pcm_clean(rtd, substream, 1); 854 855 return soc_pcm_ret(rtd, ret); 856 } 857 858 /* PCM open ops for non-DPCM streams */ 859 static int soc_pcm_open(struct snd_pcm_substream *substream) 860 { 861 struct snd_soc_pcm_runtime *rtd = snd_soc_substream_to_rtd(substream); 862 int ret; 863 864 snd_soc_dpcm_mutex_lock(rtd); 865 ret = __soc_pcm_open(rtd, substream); 866 snd_soc_dpcm_mutex_unlock(rtd); 867 return ret; 868 } 869 870 /* 871 * Called by ALSA when the PCM substream is prepared, can set format, sample 872 * rate, etc. This function is non atomic and can be called multiple times, 873 * it can refer to the runtime info. 874 */ 875 static int __soc_pcm_prepare(struct snd_soc_pcm_runtime *rtd, 876 struct snd_pcm_substream *substream) 877 { 878 struct snd_soc_dai *dai; 879 int i, ret = 0; 880 881 snd_soc_dpcm_mutex_assert_held(rtd); 882 883 ret = snd_soc_link_prepare(substream); 884 if (ret < 0) 885 goto out; 886 887 ret = snd_soc_pcm_component_prepare(substream); 888 if (ret < 0) 889 goto out; 890 891 ret = snd_soc_pcm_dai_prepare(substream); 892 if (ret < 0) 893 goto out; 894 895 /* cancel any delayed stream shutdown that is pending */ 896 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK && 897 rtd->pop_wait) { 898 rtd->pop_wait = 0; 899 cancel_delayed_work(&rtd->delayed_work); 900 } 901 902 snd_soc_dapm_stream_event(rtd, substream->stream, 903 SND_SOC_DAPM_STREAM_START); 904 905 for_each_rtd_dais(rtd, i, dai) { 906 if (dai->driver->ops && !dai->driver->ops->mute_unmute_on_trigger) 907 snd_soc_dai_digital_mute(dai, 0, substream->stream); 908 } 909 910 out: 911 return soc_pcm_ret(rtd, ret); 912 } 913 914 /* PCM prepare ops for non-DPCM streams */ 915 static int soc_pcm_prepare(struct snd_pcm_substream *substream) 916 { 917 struct snd_soc_pcm_runtime *rtd = snd_soc_substream_to_rtd(substream); 918 int ret; 919 920 snd_soc_dpcm_mutex_lock(rtd); 921 ret = __soc_pcm_prepare(rtd, substream); 922 snd_soc_dpcm_mutex_unlock(rtd); 923 return ret; 924 } 925 926 static void soc_pcm_codec_params_fixup(struct snd_pcm_hw_params *params, 927 unsigned int mask) 928 { 929 struct snd_interval *interval; 930 int channels = hweight_long(mask); 931 932 interval = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS); 933 interval->min = channels; 934 interval->max = channels; 935 } 936 937 static int soc_pcm_hw_clean(struct snd_soc_pcm_runtime *rtd, 938 struct snd_pcm_substream *substream, int rollback) 939 { 940 struct snd_soc_dai *dai; 941 int i; 942 943 snd_soc_dpcm_mutex_assert_held(rtd); 944 945 /* clear the corresponding DAIs parameters when going to be inactive */ 946 for_each_rtd_dais(rtd, i, dai) { 947 if (snd_soc_dai_active(dai) == 1) 948 soc_pcm_set_dai_params(dai, NULL); 949 950 if (snd_soc_dai_stream_active(dai, substream->stream) == 1) 951 snd_soc_dai_digital_mute(dai, 1, substream->stream); 952 } 953 954 /* run the stream event */ 955 snd_soc_dapm_stream_stop(rtd, substream->stream); 956 957 /* free any machine hw params */ 958 snd_soc_link_hw_free(substream, rollback); 959 960 /* free any component resources */ 961 snd_soc_pcm_component_hw_free(substream, rollback); 962 963 /* now free hw params for the DAIs */ 964 for_each_rtd_dais(rtd, i, dai) 965 if (snd_soc_dai_stream_valid(dai, substream->stream)) 966 snd_soc_dai_hw_free(dai, substream, rollback); 967 968 return 0; 969 } 970 971 /* 972 * Frees resources allocated by hw_params, can be called multiple times 973 */ 974 static int __soc_pcm_hw_free(struct snd_soc_pcm_runtime *rtd, 975 struct snd_pcm_substream *substream) 976 { 977 return soc_pcm_hw_clean(rtd, substream, 0); 978 } 979 980 /* hw_free PCM ops for non-DPCM streams */ 981 static int soc_pcm_hw_free(struct snd_pcm_substream *substream) 982 { 983 struct snd_soc_pcm_runtime *rtd = snd_soc_substream_to_rtd(substream); 984 int ret; 985 986 snd_soc_dpcm_mutex_lock(rtd); 987 ret = __soc_pcm_hw_free(rtd, substream); 988 snd_soc_dpcm_mutex_unlock(rtd); 989 return ret; 990 } 991 992 /* 993 * Called by ALSA when the hardware params are set by application. This 994 * function can also be called multiple times and can allocate buffers 995 * (using snd_pcm_lib_* ). It's non-atomic. 996 */ 997 static int __soc_pcm_hw_params(struct snd_soc_pcm_runtime *rtd, 998 struct snd_pcm_substream *substream, 999 struct snd_pcm_hw_params *params) 1000 { 1001 struct snd_soc_dai *cpu_dai; 1002 struct snd_soc_dai *codec_dai; 1003 struct snd_pcm_hw_params tmp_params; 1004 int i, ret = 0; 1005 1006 snd_soc_dpcm_mutex_assert_held(rtd); 1007 1008 ret = soc_pcm_params_symmetry(substream, params); 1009 if (ret) 1010 goto out; 1011 1012 ret = snd_soc_link_hw_params(substream, params); 1013 if (ret < 0) 1014 goto out; 1015 1016 for_each_rtd_codec_dais(rtd, i, codec_dai) { 1017 unsigned int tdm_mask = snd_soc_dai_tdm_mask_get(codec_dai, substream->stream); 1018 1019 /* 1020 * Skip CODECs which don't support the current stream type, 1021 * the idea being that if a CODEC is not used for the currently 1022 * set up transfer direction, it should not need to be 1023 * configured, especially since the configuration used might 1024 * not even be supported by that CODEC. There may be cases 1025 * however where a CODEC needs to be set up although it is 1026 * actually not being used for the transfer, e.g. if a 1027 * capture-only CODEC is acting as an LRCLK and/or BCLK master 1028 * for the DAI link including a playback-only CODEC. 1029 * If this becomes necessary, we will have to augment the 1030 * machine driver setup with information on how to act, so 1031 * we can do the right thing here. 1032 */ 1033 if (!snd_soc_dai_stream_valid(codec_dai, substream->stream)) 1034 continue; 1035 1036 /* copy params for each codec */ 1037 tmp_params = *params; 1038 1039 /* fixup params based on TDM slot masks */ 1040 if (tdm_mask) 1041 soc_pcm_codec_params_fixup(&tmp_params, tdm_mask); 1042 1043 ret = snd_soc_dai_hw_params(codec_dai, substream, 1044 &tmp_params); 1045 if(ret < 0) 1046 goto out; 1047 1048 soc_pcm_set_dai_params(codec_dai, &tmp_params); 1049 snd_soc_dapm_update_dai(substream, &tmp_params, codec_dai); 1050 } 1051 1052 for_each_rtd_cpu_dais(rtd, i, cpu_dai) { 1053 struct snd_soc_dai_link_ch_map *ch_maps; 1054 unsigned int ch_mask = 0; 1055 int j; 1056 1057 /* 1058 * Skip CPUs which don't support the current stream 1059 * type. See soc_pcm_init_runtime_hw() for more details 1060 */ 1061 if (!snd_soc_dai_stream_valid(cpu_dai, substream->stream)) 1062 continue; 1063 1064 /* copy params for each cpu */ 1065 tmp_params = *params; 1066 1067 /* 1068 * construct cpu channel mask by combining ch_mask of each 1069 * codec which maps to the cpu. 1070 * see 1071 * soc.h :: [dai_link->ch_maps Image sample] 1072 */ 1073 for_each_rtd_ch_maps(rtd, j, ch_maps) 1074 if (ch_maps->cpu == i) 1075 ch_mask |= ch_maps->ch_mask; 1076 1077 /* fixup cpu channel number */ 1078 if (ch_mask) 1079 soc_pcm_codec_params_fixup(&tmp_params, ch_mask); 1080 1081 ret = snd_soc_dai_hw_params(cpu_dai, substream, &tmp_params); 1082 if (ret < 0) 1083 goto out; 1084 1085 /* store the parameters for each DAI */ 1086 soc_pcm_set_dai_params(cpu_dai, &tmp_params); 1087 snd_soc_dapm_update_dai(substream, &tmp_params, cpu_dai); 1088 } 1089 1090 ret = snd_soc_pcm_component_hw_params(substream, params); 1091 out: 1092 if (ret < 0) 1093 soc_pcm_hw_clean(rtd, substream, 1); 1094 1095 return soc_pcm_ret(rtd, ret); 1096 } 1097 1098 /* hw_params PCM ops for non-DPCM streams */ 1099 static int soc_pcm_hw_params(struct snd_pcm_substream *substream, 1100 struct snd_pcm_hw_params *params) 1101 { 1102 struct snd_soc_pcm_runtime *rtd = snd_soc_substream_to_rtd(substream); 1103 int ret; 1104 1105 snd_soc_dpcm_mutex_lock(rtd); 1106 ret = __soc_pcm_hw_params(rtd, substream, params); 1107 snd_soc_dpcm_mutex_unlock(rtd); 1108 return ret; 1109 } 1110 1111 #define TRIGGER_MAX 3 1112 static int (* const trigger[][TRIGGER_MAX])(struct snd_pcm_substream *substream, int cmd, int rollback) = { 1113 [SND_SOC_TRIGGER_ORDER_DEFAULT] = { 1114 snd_soc_link_trigger, 1115 snd_soc_pcm_component_trigger, 1116 snd_soc_pcm_dai_trigger, 1117 }, 1118 [SND_SOC_TRIGGER_ORDER_LDC] = { 1119 snd_soc_link_trigger, 1120 snd_soc_pcm_dai_trigger, 1121 snd_soc_pcm_component_trigger, 1122 }, 1123 }; 1124 1125 static int soc_pcm_trigger(struct snd_pcm_substream *substream, int cmd) 1126 { 1127 struct snd_soc_pcm_runtime *rtd = snd_soc_substream_to_rtd(substream); 1128 struct snd_soc_component *component; 1129 int ret = 0, r = 0, i; 1130 int rollback = 0; 1131 int start = 0, stop = 0; 1132 1133 /* 1134 * select START/STOP sequence 1135 */ 1136 for_each_rtd_components(rtd, i, component) { 1137 if (component->driver->trigger_start) 1138 start = component->driver->trigger_start; 1139 if (component->driver->trigger_stop) 1140 stop = component->driver->trigger_stop; 1141 } 1142 if (rtd->dai_link->trigger_start) 1143 start = rtd->dai_link->trigger_start; 1144 if (rtd->dai_link->trigger_stop) 1145 stop = rtd->dai_link->trigger_stop; 1146 1147 if (start < 0 || start >= SND_SOC_TRIGGER_ORDER_MAX || 1148 stop < 0 || stop >= SND_SOC_TRIGGER_ORDER_MAX) 1149 return -EINVAL; 1150 1151 /* 1152 * START 1153 */ 1154 switch (cmd) { 1155 case SNDRV_PCM_TRIGGER_START: 1156 case SNDRV_PCM_TRIGGER_RESUME: 1157 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE: 1158 for (i = 0; i < TRIGGER_MAX; i++) { 1159 r = trigger[start][i](substream, cmd, 0); 1160 if (r < 0) 1161 break; 1162 } 1163 } 1164 1165 /* 1166 * Rollback if START failed 1167 * find correspond STOP command 1168 */ 1169 if (r < 0) { 1170 rollback = 1; 1171 ret = r; 1172 switch (cmd) { 1173 case SNDRV_PCM_TRIGGER_START: 1174 cmd = SNDRV_PCM_TRIGGER_STOP; 1175 break; 1176 case SNDRV_PCM_TRIGGER_RESUME: 1177 cmd = SNDRV_PCM_TRIGGER_SUSPEND; 1178 break; 1179 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE: 1180 cmd = SNDRV_PCM_TRIGGER_PAUSE_PUSH; 1181 break; 1182 } 1183 } 1184 1185 /* 1186 * STOP 1187 */ 1188 switch (cmd) { 1189 case SNDRV_PCM_TRIGGER_STOP: 1190 case SNDRV_PCM_TRIGGER_SUSPEND: 1191 case SNDRV_PCM_TRIGGER_PAUSE_PUSH: 1192 for (i = TRIGGER_MAX; i > 0; i--) { 1193 r = trigger[stop][i - 1](substream, cmd, rollback); 1194 if (r < 0) 1195 ret = r; 1196 } 1197 } 1198 1199 return ret; 1200 } 1201 1202 /* 1203 * soc level wrapper for pointer callback 1204 * If cpu_dai, codec_dai, component driver has the delay callback, then 1205 * the runtime->delay will be updated via snd_soc_pcm_component/dai_delay(). 1206 */ 1207 static snd_pcm_uframes_t soc_pcm_pointer(struct snd_pcm_substream *substream) 1208 { 1209 struct snd_pcm_runtime *runtime = substream->runtime; 1210 snd_pcm_uframes_t offset = 0; 1211 snd_pcm_sframes_t codec_delay = 0; 1212 snd_pcm_sframes_t cpu_delay = 0; 1213 1214 offset = snd_soc_pcm_component_pointer(substream); 1215 1216 /* should be called *after* snd_soc_pcm_component_pointer() */ 1217 snd_soc_pcm_dai_delay(substream, &cpu_delay, &codec_delay); 1218 snd_soc_pcm_component_delay(substream, &cpu_delay, &codec_delay); 1219 1220 runtime->delay = cpu_delay + codec_delay; 1221 1222 return offset; 1223 } 1224 1225 /* connect a FE and BE */ 1226 static int dpcm_be_connect(struct snd_soc_pcm_runtime *fe, 1227 struct snd_soc_pcm_runtime *be, int stream) 1228 { 1229 struct snd_pcm_substream *fe_substream; 1230 struct snd_pcm_substream *be_substream; 1231 struct snd_soc_dpcm *dpcm; 1232 1233 snd_soc_dpcm_mutex_assert_held(fe); 1234 1235 /* only add new dpcms */ 1236 for_each_dpcm_be(fe, stream, dpcm) { 1237 if (dpcm->be == be && dpcm->fe == fe) 1238 return 0; 1239 } 1240 1241 fe_substream = snd_soc_dpcm_get_substream(fe, stream); 1242 be_substream = snd_soc_dpcm_get_substream(be, stream); 1243 1244 if (!fe_substream->pcm->nonatomic && be_substream->pcm->nonatomic) { 1245 dev_err(be->dev, "%s: FE is atomic but BE is nonatomic, invalid configuration\n", 1246 __func__); 1247 return -EINVAL; 1248 } 1249 if (fe_substream->pcm->nonatomic && !be_substream->pcm->nonatomic) { 1250 dev_dbg(be->dev, "FE is nonatomic but BE is not, forcing BE as nonatomic\n"); 1251 be_substream->pcm->nonatomic = 1; 1252 } 1253 1254 dpcm = kzalloc(sizeof(struct snd_soc_dpcm), GFP_KERNEL); 1255 if (!dpcm) 1256 return -ENOMEM; 1257 1258 dpcm->be = be; 1259 dpcm->fe = fe; 1260 dpcm->state = SND_SOC_DPCM_LINK_STATE_NEW; 1261 snd_soc_dpcm_stream_lock_irq(fe, stream); 1262 list_add(&dpcm->list_be, &fe->dpcm[stream].be_clients); 1263 list_add(&dpcm->list_fe, &be->dpcm[stream].fe_clients); 1264 snd_soc_dpcm_stream_unlock_irq(fe, stream); 1265 1266 dev_dbg(fe->dev, "connected new DPCM %s path %s %s %s\n", 1267 stream ? "capture" : "playback", fe->dai_link->name, 1268 stream ? "<-" : "->", be->dai_link->name); 1269 1270 dpcm_create_debugfs_state(dpcm, stream); 1271 1272 return 1; 1273 } 1274 1275 /* reparent a BE onto another FE */ 1276 static void dpcm_be_reparent(struct snd_soc_pcm_runtime *fe, 1277 struct snd_soc_pcm_runtime *be, int stream) 1278 { 1279 struct snd_soc_dpcm *dpcm; 1280 struct snd_pcm_substream *fe_substream, *be_substream; 1281 1282 /* reparent if BE is connected to other FEs */ 1283 if (!be->dpcm[stream].users) 1284 return; 1285 1286 be_substream = snd_soc_dpcm_get_substream(be, stream); 1287 if (!be_substream) 1288 return; 1289 1290 for_each_dpcm_fe(be, stream, dpcm) { 1291 if (dpcm->fe == fe) 1292 continue; 1293 1294 dev_dbg(fe->dev, "reparent %s path %s %s %s\n", 1295 stream ? "capture" : "playback", 1296 dpcm->fe->dai_link->name, 1297 stream ? "<-" : "->", dpcm->be->dai_link->name); 1298 1299 fe_substream = snd_soc_dpcm_get_substream(dpcm->fe, stream); 1300 be_substream->runtime = fe_substream->runtime; 1301 break; 1302 } 1303 } 1304 1305 /* disconnect a BE and FE */ 1306 void dpcm_be_disconnect(struct snd_soc_pcm_runtime *fe, int stream) 1307 { 1308 struct snd_soc_dpcm *dpcm, *d; 1309 LIST_HEAD(deleted_dpcms); 1310 1311 snd_soc_dpcm_mutex_assert_held(fe); 1312 1313 snd_soc_dpcm_stream_lock_irq(fe, stream); 1314 for_each_dpcm_be_safe(fe, stream, dpcm, d) { 1315 dev_dbg(fe->dev, "ASoC: BE %s disconnect check for %s\n", 1316 stream ? "capture" : "playback", 1317 dpcm->be->dai_link->name); 1318 1319 if (dpcm->state != SND_SOC_DPCM_LINK_STATE_FREE) 1320 continue; 1321 1322 dev_dbg(fe->dev, "freed DSP %s path %s %s %s\n", 1323 stream ? "capture" : "playback", fe->dai_link->name, 1324 stream ? "<-" : "->", dpcm->be->dai_link->name); 1325 1326 /* BEs still alive need new FE */ 1327 dpcm_be_reparent(fe, dpcm->be, stream); 1328 1329 list_del(&dpcm->list_be); 1330 list_move(&dpcm->list_fe, &deleted_dpcms); 1331 } 1332 snd_soc_dpcm_stream_unlock_irq(fe, stream); 1333 1334 while (!list_empty(&deleted_dpcms)) { 1335 dpcm = list_first_entry(&deleted_dpcms, struct snd_soc_dpcm, 1336 list_fe); 1337 list_del(&dpcm->list_fe); 1338 dpcm_remove_debugfs_state(dpcm); 1339 kfree(dpcm); 1340 } 1341 } 1342 1343 /* get BE for DAI widget and stream */ 1344 static struct snd_soc_pcm_runtime *dpcm_get_be(struct snd_soc_card *card, 1345 struct snd_soc_dapm_widget *widget, int stream) 1346 { 1347 struct snd_soc_pcm_runtime *be; 1348 struct snd_soc_dapm_widget *w; 1349 struct snd_soc_dai *dai; 1350 int i; 1351 1352 dev_dbg(card->dev, "ASoC: find BE for widget %s\n", widget->name); 1353 1354 for_each_card_rtds(card, be) { 1355 1356 if (!be->dai_link->no_pcm) 1357 continue; 1358 1359 if (!snd_soc_dpcm_get_substream(be, stream)) 1360 continue; 1361 1362 for_each_rtd_dais(be, i, dai) { 1363 w = snd_soc_dai_get_widget(dai, stream); 1364 1365 dev_dbg(card->dev, "ASoC: try BE : %s\n", 1366 w ? w->name : "(not set)"); 1367 1368 if (w == widget) 1369 return be; 1370 } 1371 } 1372 1373 /* Widget provided is not a BE */ 1374 return NULL; 1375 } 1376 1377 int widget_in_list(struct snd_soc_dapm_widget_list *list, 1378 struct snd_soc_dapm_widget *widget) 1379 { 1380 struct snd_soc_dapm_widget *w; 1381 int i; 1382 1383 for_each_dapm_widgets(list, i, w) 1384 if (widget == w) 1385 return 1; 1386 1387 return 0; 1388 } 1389 EXPORT_SYMBOL_GPL(widget_in_list); 1390 1391 bool dpcm_end_walk_at_be(struct snd_soc_dapm_widget *widget, enum snd_soc_dapm_direction dir) 1392 { 1393 struct snd_soc_card *card = widget->dapm->card; 1394 struct snd_soc_pcm_runtime *rtd; 1395 int stream; 1396 1397 /* adjust dir to stream */ 1398 if (dir == SND_SOC_DAPM_DIR_OUT) 1399 stream = SNDRV_PCM_STREAM_PLAYBACK; 1400 else 1401 stream = SNDRV_PCM_STREAM_CAPTURE; 1402 1403 rtd = dpcm_get_be(card, widget, stream); 1404 if (rtd) 1405 return true; 1406 1407 return false; 1408 } 1409 EXPORT_SYMBOL_GPL(dpcm_end_walk_at_be); 1410 1411 int dpcm_path_get(struct snd_soc_pcm_runtime *fe, 1412 int stream, struct snd_soc_dapm_widget_list **list) 1413 { 1414 struct snd_soc_dai *cpu_dai = snd_soc_rtd_to_cpu(fe, 0); 1415 int paths; 1416 1417 if (fe->dai_link->num_cpus > 1) { 1418 dev_err(fe->dev, 1419 "%s doesn't support Multi CPU yet\n", __func__); 1420 return -EINVAL; 1421 } 1422 1423 /* get number of valid DAI paths and their widgets */ 1424 paths = snd_soc_dapm_dai_get_connected_widgets(cpu_dai, stream, list, 1425 fe->card->component_chaining ? 1426 NULL : dpcm_end_walk_at_be); 1427 1428 if (paths > 0) 1429 dev_dbg(fe->dev, "ASoC: found %d audio %s paths\n", paths, 1430 stream ? "capture" : "playback"); 1431 else if (paths == 0) 1432 dev_dbg(fe->dev, "ASoC: %s no valid %s path\n", fe->dai_link->name, 1433 stream ? "capture" : "playback"); 1434 1435 return paths; 1436 } 1437 1438 void dpcm_path_put(struct snd_soc_dapm_widget_list **list) 1439 { 1440 snd_soc_dapm_dai_free_widgets(list); 1441 } 1442 1443 static bool dpcm_be_is_active(struct snd_soc_dpcm *dpcm, int stream, 1444 struct snd_soc_dapm_widget_list *list) 1445 { 1446 struct snd_soc_dai *dai; 1447 unsigned int i; 1448 1449 /* is there a valid DAI widget for this BE */ 1450 for_each_rtd_dais(dpcm->be, i, dai) { 1451 struct snd_soc_dapm_widget *widget = snd_soc_dai_get_widget(dai, stream); 1452 1453 /* 1454 * The BE is pruned only if none of the dai 1455 * widgets are in the active list. 1456 */ 1457 if (widget && widget_in_list(list, widget)) 1458 return true; 1459 } 1460 1461 return false; 1462 } 1463 1464 static int dpcm_prune_paths(struct snd_soc_pcm_runtime *fe, int stream, 1465 struct snd_soc_dapm_widget_list **list_) 1466 { 1467 struct snd_soc_dpcm *dpcm; 1468 int prune = 0; 1469 1470 /* Destroy any old FE <--> BE connections */ 1471 for_each_dpcm_be(fe, stream, dpcm) { 1472 if (dpcm_be_is_active(dpcm, stream, *list_)) 1473 continue; 1474 1475 dev_dbg(fe->dev, "ASoC: pruning %s BE %s for %s\n", 1476 stream ? "capture" : "playback", 1477 dpcm->be->dai_link->name, fe->dai_link->name); 1478 dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE; 1479 dpcm_set_be_update_state(dpcm->be, stream, SND_SOC_DPCM_UPDATE_BE); 1480 prune++; 1481 } 1482 1483 dev_dbg(fe->dev, "ASoC: found %d old BE paths for pruning\n", prune); 1484 return prune; 1485 } 1486 1487 static int dpcm_add_paths(struct snd_soc_pcm_runtime *fe, int stream, 1488 struct snd_soc_dapm_widget_list **list_) 1489 { 1490 struct snd_soc_card *card = fe->card; 1491 struct snd_soc_dapm_widget_list *list = *list_; 1492 struct snd_soc_pcm_runtime *be; 1493 struct snd_soc_dapm_widget *widget; 1494 struct snd_pcm_substream *fe_substream = snd_soc_dpcm_get_substream(fe, stream); 1495 int i, new = 0, err; 1496 1497 /* don't connect if FE is not running */ 1498 if (!fe_substream->runtime && !fe->fe_compr) 1499 return new; 1500 1501 /* Create any new FE <--> BE connections */ 1502 for_each_dapm_widgets(list, i, widget) { 1503 1504 switch (widget->id) { 1505 case snd_soc_dapm_dai_in: 1506 if (stream != SNDRV_PCM_STREAM_PLAYBACK) 1507 continue; 1508 break; 1509 case snd_soc_dapm_dai_out: 1510 if (stream != SNDRV_PCM_STREAM_CAPTURE) 1511 continue; 1512 break; 1513 default: 1514 continue; 1515 } 1516 1517 /* is there a valid BE rtd for this widget */ 1518 be = dpcm_get_be(card, widget, stream); 1519 if (!be) { 1520 dev_dbg(fe->dev, "ASoC: no BE found for %s\n", 1521 widget->name); 1522 continue; 1523 } 1524 1525 /* 1526 * Filter for systems with 'component_chaining' enabled. 1527 * This helps to avoid unnecessary re-configuration of an 1528 * already active BE on such systems. 1529 */ 1530 if (fe->card->component_chaining && 1531 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_NEW) && 1532 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_CLOSE)) 1533 continue; 1534 1535 /* newly connected FE and BE */ 1536 err = dpcm_be_connect(fe, be, stream); 1537 if (err < 0) { 1538 dev_err(fe->dev, "ASoC: can't connect %s\n", 1539 widget->name); 1540 break; 1541 } else if (err == 0) /* already connected */ 1542 continue; 1543 1544 /* new */ 1545 dpcm_set_be_update_state(be, stream, SND_SOC_DPCM_UPDATE_BE); 1546 new++; 1547 } 1548 1549 dev_dbg(fe->dev, "ASoC: found %d new BE paths\n", new); 1550 return new; 1551 } 1552 1553 /* 1554 * Find the corresponding BE DAIs that source or sink audio to this 1555 * FE substream. 1556 */ 1557 int dpcm_process_paths(struct snd_soc_pcm_runtime *fe, 1558 int stream, struct snd_soc_dapm_widget_list **list, int new) 1559 { 1560 if (new) 1561 return dpcm_add_paths(fe, stream, list); 1562 else 1563 return dpcm_prune_paths(fe, stream, list); 1564 } 1565 1566 void dpcm_clear_pending_state(struct snd_soc_pcm_runtime *fe, int stream) 1567 { 1568 struct snd_soc_dpcm *dpcm; 1569 1570 for_each_dpcm_be(fe, stream, dpcm) 1571 dpcm_set_be_update_state(dpcm->be, stream, SND_SOC_DPCM_UPDATE_NO); 1572 } 1573 1574 void dpcm_be_dai_stop(struct snd_soc_pcm_runtime *fe, int stream, 1575 int do_hw_free, struct snd_soc_dpcm *last) 1576 { 1577 struct snd_soc_dpcm *dpcm; 1578 1579 /* disable any enabled and non active backends */ 1580 for_each_dpcm_be(fe, stream, dpcm) { 1581 struct snd_soc_pcm_runtime *be = dpcm->be; 1582 struct snd_pcm_substream *be_substream = 1583 snd_soc_dpcm_get_substream(be, stream); 1584 1585 if (dpcm == last) 1586 return; 1587 1588 /* is this op for this BE ? */ 1589 if (!snd_soc_dpcm_be_can_update(fe, be, stream)) 1590 continue; 1591 1592 if (be->dpcm[stream].users == 0) { 1593 dev_err(be->dev, "ASoC: no users %s at close - state %d\n", 1594 stream ? "capture" : "playback", 1595 be->dpcm[stream].state); 1596 continue; 1597 } 1598 1599 if (--be->dpcm[stream].users != 0) 1600 continue; 1601 1602 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN) { 1603 if (!do_hw_free) 1604 continue; 1605 1606 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE) { 1607 __soc_pcm_hw_free(be, be_substream); 1608 be->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_FREE; 1609 } 1610 } 1611 1612 __soc_pcm_close(be, be_substream); 1613 be_substream->runtime = NULL; 1614 be->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE; 1615 } 1616 } 1617 1618 int dpcm_be_dai_startup(struct snd_soc_pcm_runtime *fe, int stream) 1619 { 1620 struct snd_pcm_substream *fe_substream = snd_soc_dpcm_get_substream(fe, stream); 1621 struct snd_soc_pcm_runtime *be; 1622 struct snd_soc_dpcm *dpcm; 1623 int err, count = 0; 1624 1625 /* only startup BE DAIs that are either sinks or sources to this FE DAI */ 1626 for_each_dpcm_be(fe, stream, dpcm) { 1627 struct snd_pcm_substream *be_substream; 1628 1629 be = dpcm->be; 1630 be_substream = snd_soc_dpcm_get_substream(be, stream); 1631 1632 if (!be_substream) { 1633 dev_err(be->dev, "ASoC: no backend %s stream\n", 1634 stream ? "capture" : "playback"); 1635 continue; 1636 } 1637 1638 /* is this op for this BE ? */ 1639 if (!snd_soc_dpcm_be_can_update(fe, be, stream)) 1640 continue; 1641 1642 /* first time the dpcm is open ? */ 1643 if (be->dpcm[stream].users == DPCM_MAX_BE_USERS) { 1644 dev_err(be->dev, "ASoC: too many users %s at open %d\n", 1645 stream ? "capture" : "playback", 1646 be->dpcm[stream].state); 1647 continue; 1648 } 1649 1650 if (be->dpcm[stream].users++ != 0) 1651 continue; 1652 1653 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_NEW) && 1654 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_CLOSE)) 1655 continue; 1656 1657 dev_dbg(be->dev, "ASoC: open %s BE %s\n", 1658 stream ? "capture" : "playback", be->dai_link->name); 1659 1660 be_substream->runtime = fe_substream->runtime; 1661 err = __soc_pcm_open(be, be_substream); 1662 if (err < 0) { 1663 be->dpcm[stream].users--; 1664 if (be->dpcm[stream].users < 0) 1665 dev_err(be->dev, "ASoC: no users %s at unwind %d\n", 1666 stream ? "capture" : "playback", 1667 be->dpcm[stream].state); 1668 1669 be->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE; 1670 goto unwind; 1671 } 1672 be->dpcm[stream].be_start = 0; 1673 be->dpcm[stream].state = SND_SOC_DPCM_STATE_OPEN; 1674 count++; 1675 } 1676 1677 return count; 1678 1679 unwind: 1680 dpcm_be_dai_startup_rollback(fe, stream, dpcm); 1681 1682 return soc_pcm_ret(fe, err); 1683 } 1684 1685 static void dpcm_runtime_setup_fe(struct snd_pcm_substream *substream) 1686 { 1687 struct snd_soc_pcm_runtime *fe = snd_soc_substream_to_rtd(substream); 1688 struct snd_pcm_runtime *runtime = substream->runtime; 1689 struct snd_pcm_hardware *hw = &runtime->hw; 1690 struct snd_soc_dai *dai; 1691 int stream = substream->stream; 1692 u64 formats = hw->formats; 1693 int i; 1694 1695 soc_pcm_hw_init(hw); 1696 1697 if (formats) 1698 hw->formats &= formats; 1699 1700 for_each_rtd_cpu_dais(fe, i, dai) { 1701 struct snd_soc_pcm_stream *cpu_stream; 1702 1703 /* 1704 * Skip CPUs which don't support the current stream 1705 * type. See soc_pcm_init_runtime_hw() for more details 1706 */ 1707 if (!snd_soc_dai_stream_valid(dai, stream)) 1708 continue; 1709 1710 cpu_stream = snd_soc_dai_get_pcm_stream(dai, stream); 1711 1712 soc_pcm_hw_update_rate(hw, cpu_stream); 1713 soc_pcm_hw_update_chan(hw, cpu_stream); 1714 soc_pcm_hw_update_format(hw, cpu_stream); 1715 } 1716 1717 } 1718 1719 static void dpcm_runtime_setup_be_format(struct snd_pcm_substream *substream) 1720 { 1721 struct snd_soc_pcm_runtime *fe = snd_soc_substream_to_rtd(substream); 1722 struct snd_pcm_runtime *runtime = substream->runtime; 1723 struct snd_pcm_hardware *hw = &runtime->hw; 1724 struct snd_soc_dpcm *dpcm; 1725 struct snd_soc_dai *dai; 1726 int stream = substream->stream; 1727 1728 if (!fe->dai_link->dpcm_merged_format) 1729 return; 1730 1731 /* 1732 * It returns merged BE codec format 1733 * if FE want to use it (= dpcm_merged_format) 1734 */ 1735 1736 for_each_dpcm_be(fe, stream, dpcm) { 1737 struct snd_soc_pcm_runtime *be = dpcm->be; 1738 struct snd_soc_pcm_stream *codec_stream; 1739 int i; 1740 1741 for_each_rtd_codec_dais(be, i, dai) { 1742 /* 1743 * Skip CODECs which don't support the current stream 1744 * type. See soc_pcm_init_runtime_hw() for more details 1745 */ 1746 if (!snd_soc_dai_stream_valid(dai, stream)) 1747 continue; 1748 1749 codec_stream = snd_soc_dai_get_pcm_stream(dai, stream); 1750 1751 soc_pcm_hw_update_format(hw, codec_stream); 1752 } 1753 } 1754 } 1755 1756 static void dpcm_runtime_setup_be_chan(struct snd_pcm_substream *substream) 1757 { 1758 struct snd_soc_pcm_runtime *fe = snd_soc_substream_to_rtd(substream); 1759 struct snd_pcm_runtime *runtime = substream->runtime; 1760 struct snd_pcm_hardware *hw = &runtime->hw; 1761 struct snd_soc_dpcm *dpcm; 1762 int stream = substream->stream; 1763 1764 if (!fe->dai_link->dpcm_merged_chan) 1765 return; 1766 1767 /* 1768 * It returns merged BE codec channel; 1769 * if FE want to use it (= dpcm_merged_chan) 1770 */ 1771 1772 for_each_dpcm_be(fe, stream, dpcm) { 1773 struct snd_soc_pcm_runtime *be = dpcm->be; 1774 struct snd_soc_pcm_stream *cpu_stream; 1775 struct snd_soc_dai *dai; 1776 int i; 1777 1778 for_each_rtd_cpu_dais(be, i, dai) { 1779 /* 1780 * Skip CPUs which don't support the current stream 1781 * type. See soc_pcm_init_runtime_hw() for more details 1782 */ 1783 if (!snd_soc_dai_stream_valid(dai, stream)) 1784 continue; 1785 1786 cpu_stream = snd_soc_dai_get_pcm_stream(dai, stream); 1787 1788 soc_pcm_hw_update_chan(hw, cpu_stream); 1789 } 1790 1791 /* 1792 * chan min/max cannot be enforced if there are multiple CODEC 1793 * DAIs connected to a single CPU DAI, use CPU DAI's directly 1794 */ 1795 if (be->dai_link->num_codecs == 1) { 1796 struct snd_soc_pcm_stream *codec_stream = snd_soc_dai_get_pcm_stream( 1797 snd_soc_rtd_to_codec(be, 0), stream); 1798 1799 soc_pcm_hw_update_chan(hw, codec_stream); 1800 } 1801 } 1802 } 1803 1804 static void dpcm_runtime_setup_be_rate(struct snd_pcm_substream *substream) 1805 { 1806 struct snd_soc_pcm_runtime *fe = snd_soc_substream_to_rtd(substream); 1807 struct snd_pcm_runtime *runtime = substream->runtime; 1808 struct snd_pcm_hardware *hw = &runtime->hw; 1809 struct snd_soc_dpcm *dpcm; 1810 int stream = substream->stream; 1811 1812 if (!fe->dai_link->dpcm_merged_rate) 1813 return; 1814 1815 /* 1816 * It returns merged BE codec channel; 1817 * if FE want to use it (= dpcm_merged_chan) 1818 */ 1819 1820 for_each_dpcm_be(fe, stream, dpcm) { 1821 struct snd_soc_pcm_runtime *be = dpcm->be; 1822 struct snd_soc_pcm_stream *pcm; 1823 struct snd_soc_dai *dai; 1824 int i; 1825 1826 for_each_rtd_dais(be, i, dai) { 1827 /* 1828 * Skip DAIs which don't support the current stream 1829 * type. See soc_pcm_init_runtime_hw() for more details 1830 */ 1831 if (!snd_soc_dai_stream_valid(dai, stream)) 1832 continue; 1833 1834 pcm = snd_soc_dai_get_pcm_stream(dai, stream); 1835 1836 soc_pcm_hw_update_rate(hw, pcm); 1837 } 1838 } 1839 } 1840 1841 static int dpcm_apply_symmetry(struct snd_pcm_substream *fe_substream, 1842 int stream) 1843 { 1844 struct snd_soc_dpcm *dpcm; 1845 struct snd_soc_pcm_runtime *fe = snd_soc_substream_to_rtd(fe_substream); 1846 struct snd_soc_dai *fe_cpu_dai; 1847 int err = 0; 1848 int i; 1849 1850 /* apply symmetry for FE */ 1851 soc_pcm_update_symmetry(fe_substream); 1852 1853 for_each_rtd_cpu_dais (fe, i, fe_cpu_dai) { 1854 /* Symmetry only applies if we've got an active stream. */ 1855 err = soc_pcm_apply_symmetry(fe_substream, fe_cpu_dai); 1856 if (err < 0) 1857 goto error; 1858 } 1859 1860 /* apply symmetry for BE */ 1861 for_each_dpcm_be(fe, stream, dpcm) { 1862 struct snd_soc_pcm_runtime *be = dpcm->be; 1863 struct snd_pcm_substream *be_substream = 1864 snd_soc_dpcm_get_substream(be, stream); 1865 struct snd_soc_pcm_runtime *rtd; 1866 struct snd_soc_dai *dai; 1867 1868 /* A backend may not have the requested substream */ 1869 if (!be_substream) 1870 continue; 1871 1872 rtd = snd_soc_substream_to_rtd(be_substream); 1873 if (rtd->dai_link->be_hw_params_fixup) 1874 continue; 1875 1876 soc_pcm_update_symmetry(be_substream); 1877 1878 /* Symmetry only applies if we've got an active stream. */ 1879 for_each_rtd_dais(rtd, i, dai) { 1880 err = soc_pcm_apply_symmetry(fe_substream, dai); 1881 if (err < 0) 1882 goto error; 1883 } 1884 } 1885 error: 1886 return soc_pcm_ret(fe, err); 1887 } 1888 1889 static int dpcm_fe_dai_startup(struct snd_pcm_substream *fe_substream) 1890 { 1891 struct snd_soc_pcm_runtime *fe = snd_soc_substream_to_rtd(fe_substream); 1892 int stream = fe_substream->stream, ret = 0; 1893 1894 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE); 1895 1896 ret = dpcm_be_dai_startup(fe, stream); 1897 if (ret < 0) 1898 goto be_err; 1899 1900 dev_dbg(fe->dev, "ASoC: open FE %s\n", fe->dai_link->name); 1901 1902 /* start the DAI frontend */ 1903 ret = __soc_pcm_open(fe, fe_substream); 1904 if (ret < 0) 1905 goto unwind; 1906 1907 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_OPEN; 1908 1909 dpcm_runtime_setup_fe(fe_substream); 1910 1911 dpcm_runtime_setup_be_format(fe_substream); 1912 dpcm_runtime_setup_be_chan(fe_substream); 1913 dpcm_runtime_setup_be_rate(fe_substream); 1914 1915 ret = dpcm_apply_symmetry(fe_substream, stream); 1916 1917 unwind: 1918 if (ret < 0) 1919 dpcm_be_dai_startup_unwind(fe, stream); 1920 be_err: 1921 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO); 1922 1923 return soc_pcm_ret(fe, ret); 1924 } 1925 1926 static int dpcm_fe_dai_shutdown(struct snd_pcm_substream *substream) 1927 { 1928 struct snd_soc_pcm_runtime *fe = snd_soc_substream_to_rtd(substream); 1929 int stream = substream->stream; 1930 1931 snd_soc_dpcm_mutex_assert_held(fe); 1932 1933 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE); 1934 1935 /* shutdown the BEs */ 1936 dpcm_be_dai_shutdown(fe, stream); 1937 1938 dev_dbg(fe->dev, "ASoC: close FE %s\n", fe->dai_link->name); 1939 1940 /* now shutdown the frontend */ 1941 __soc_pcm_close(fe, substream); 1942 1943 /* run the stream stop event */ 1944 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_STOP); 1945 1946 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE; 1947 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO); 1948 return 0; 1949 } 1950 1951 void dpcm_be_dai_hw_free(struct snd_soc_pcm_runtime *fe, int stream) 1952 { 1953 struct snd_soc_dpcm *dpcm; 1954 1955 /* only hw_params backends that are either sinks or sources 1956 * to this frontend DAI */ 1957 for_each_dpcm_be(fe, stream, dpcm) { 1958 1959 struct snd_soc_pcm_runtime *be = dpcm->be; 1960 struct snd_pcm_substream *be_substream = 1961 snd_soc_dpcm_get_substream(be, stream); 1962 1963 /* is this op for this BE ? */ 1964 if (!snd_soc_dpcm_be_can_update(fe, be, stream)) 1965 continue; 1966 1967 /* only free hw when no longer used - check all FEs */ 1968 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream)) 1969 continue; 1970 1971 /* do not free hw if this BE is used by other FE */ 1972 if (be->dpcm[stream].users > 1) 1973 continue; 1974 1975 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) && 1976 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PREPARE) && 1977 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE) && 1978 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PAUSED) && 1979 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP) && 1980 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_SUSPEND)) 1981 continue; 1982 1983 dev_dbg(be->dev, "ASoC: hw_free BE %s\n", 1984 be->dai_link->name); 1985 1986 __soc_pcm_hw_free(be, be_substream); 1987 1988 be->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_FREE; 1989 } 1990 } 1991 1992 static int dpcm_fe_dai_hw_free(struct snd_pcm_substream *substream) 1993 { 1994 struct snd_soc_pcm_runtime *fe = snd_soc_substream_to_rtd(substream); 1995 int stream = substream->stream; 1996 1997 snd_soc_dpcm_mutex_lock(fe); 1998 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE); 1999 2000 dev_dbg(fe->dev, "ASoC: hw_free FE %s\n", fe->dai_link->name); 2001 2002 /* call hw_free on the frontend */ 2003 soc_pcm_hw_clean(fe, substream, 0); 2004 2005 /* only hw_params backends that are either sinks or sources 2006 * to this frontend DAI */ 2007 dpcm_be_dai_hw_free(fe, stream); 2008 2009 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_FREE; 2010 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO); 2011 2012 snd_soc_dpcm_mutex_unlock(fe); 2013 return 0; 2014 } 2015 2016 int dpcm_be_dai_hw_params(struct snd_soc_pcm_runtime *fe, int stream) 2017 { 2018 struct snd_soc_pcm_runtime *be; 2019 struct snd_pcm_substream *be_substream; 2020 struct snd_soc_dpcm *dpcm; 2021 int ret; 2022 2023 for_each_dpcm_be(fe, stream, dpcm) { 2024 struct snd_pcm_hw_params hw_params; 2025 2026 be = dpcm->be; 2027 be_substream = snd_soc_dpcm_get_substream(be, stream); 2028 2029 /* is this op for this BE ? */ 2030 if (!snd_soc_dpcm_be_can_update(fe, be, stream)) 2031 continue; 2032 2033 /* copy params for each dpcm */ 2034 memcpy(&hw_params, &fe->dpcm[stream].hw_params, 2035 sizeof(struct snd_pcm_hw_params)); 2036 2037 /* perform any hw_params fixups */ 2038 ret = snd_soc_link_be_hw_params_fixup(be, &hw_params); 2039 if (ret < 0) 2040 goto unwind; 2041 2042 /* copy the fixed-up hw params for BE dai */ 2043 memcpy(&be->dpcm[stream].hw_params, &hw_params, 2044 sizeof(struct snd_pcm_hw_params)); 2045 2046 /* only allow hw_params() if no connected FEs are running */ 2047 if (!snd_soc_dpcm_can_be_params(fe, be, stream)) 2048 continue; 2049 2050 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN) && 2051 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) && 2052 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE)) 2053 continue; 2054 2055 dev_dbg(be->dev, "ASoC: hw_params BE %s\n", 2056 be->dai_link->name); 2057 2058 ret = __soc_pcm_hw_params(be, be_substream, &hw_params); 2059 if (ret < 0) 2060 goto unwind; 2061 2062 be->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_PARAMS; 2063 } 2064 return 0; 2065 2066 unwind: 2067 dev_dbg(fe->dev, "ASoC: %s() failed at %s (%d)\n", 2068 __func__, be->dai_link->name, ret); 2069 2070 /* disable any enabled and non active backends */ 2071 for_each_dpcm_be_rollback(fe, stream, dpcm) { 2072 be = dpcm->be; 2073 be_substream = snd_soc_dpcm_get_substream(be, stream); 2074 2075 if (!snd_soc_dpcm_be_can_update(fe, be, stream)) 2076 continue; 2077 2078 /* only allow hw_free() if no connected FEs are running */ 2079 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream)) 2080 continue; 2081 2082 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN) && 2083 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) && 2084 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE) && 2085 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP)) 2086 continue; 2087 2088 __soc_pcm_hw_free(be, be_substream); 2089 } 2090 2091 return ret; 2092 } 2093 2094 static int dpcm_fe_dai_hw_params(struct snd_pcm_substream *substream, 2095 struct snd_pcm_hw_params *params) 2096 { 2097 struct snd_soc_pcm_runtime *fe = snd_soc_substream_to_rtd(substream); 2098 int ret, stream = substream->stream; 2099 2100 snd_soc_dpcm_mutex_lock(fe); 2101 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE); 2102 2103 memcpy(&fe->dpcm[stream].hw_params, params, 2104 sizeof(struct snd_pcm_hw_params)); 2105 ret = dpcm_be_dai_hw_params(fe, stream); 2106 if (ret < 0) 2107 goto out; 2108 2109 dev_dbg(fe->dev, "ASoC: hw_params FE %s rate %d chan %x fmt %d\n", 2110 fe->dai_link->name, params_rate(params), 2111 params_channels(params), params_format(params)); 2112 2113 /* call hw_params on the frontend */ 2114 ret = __soc_pcm_hw_params(fe, substream, params); 2115 if (ret < 0) 2116 dpcm_be_dai_hw_free(fe, stream); 2117 else 2118 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_PARAMS; 2119 2120 out: 2121 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO); 2122 snd_soc_dpcm_mutex_unlock(fe); 2123 2124 return soc_pcm_ret(fe, ret); 2125 } 2126 2127 int dpcm_be_dai_trigger(struct snd_soc_pcm_runtime *fe, int stream, 2128 int cmd) 2129 { 2130 struct snd_soc_pcm_runtime *be; 2131 bool pause_stop_transition; 2132 struct snd_soc_dpcm *dpcm; 2133 unsigned long flags; 2134 int ret = 0; 2135 2136 for_each_dpcm_be(fe, stream, dpcm) { 2137 struct snd_pcm_substream *be_substream; 2138 2139 be = dpcm->be; 2140 be_substream = snd_soc_dpcm_get_substream(be, stream); 2141 2142 snd_soc_dpcm_stream_lock_irqsave_nested(be, stream, flags); 2143 2144 /* is this op for this BE ? */ 2145 if (!snd_soc_dpcm_be_can_update(fe, be, stream)) 2146 goto next; 2147 2148 dev_dbg(be->dev, "ASoC: trigger BE %s cmd %d\n", 2149 be->dai_link->name, cmd); 2150 2151 switch (cmd) { 2152 case SNDRV_PCM_TRIGGER_START: 2153 if (!be->dpcm[stream].be_start && 2154 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PREPARE) && 2155 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP) && 2156 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PAUSED)) 2157 goto next; 2158 2159 be->dpcm[stream].be_start++; 2160 if (be->dpcm[stream].be_start != 1) 2161 goto next; 2162 2163 if (be->dpcm[stream].state == SND_SOC_DPCM_STATE_PAUSED) 2164 ret = soc_pcm_trigger(be_substream, 2165 SNDRV_PCM_TRIGGER_PAUSE_RELEASE); 2166 else 2167 ret = soc_pcm_trigger(be_substream, 2168 SNDRV_PCM_TRIGGER_START); 2169 if (ret) { 2170 be->dpcm[stream].be_start--; 2171 goto next; 2172 } 2173 2174 be->dpcm[stream].state = SND_SOC_DPCM_STATE_START; 2175 break; 2176 case SNDRV_PCM_TRIGGER_RESUME: 2177 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_SUSPEND)) 2178 goto next; 2179 2180 be->dpcm[stream].be_start++; 2181 if (be->dpcm[stream].be_start != 1) 2182 goto next; 2183 2184 ret = soc_pcm_trigger(be_substream, cmd); 2185 if (ret) { 2186 be->dpcm[stream].be_start--; 2187 goto next; 2188 } 2189 2190 be->dpcm[stream].state = SND_SOC_DPCM_STATE_START; 2191 break; 2192 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE: 2193 if (!be->dpcm[stream].be_start && 2194 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START) && 2195 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PAUSED)) 2196 goto next; 2197 2198 fe->dpcm[stream].fe_pause = false; 2199 be->dpcm[stream].be_pause--; 2200 2201 be->dpcm[stream].be_start++; 2202 if (be->dpcm[stream].be_start != 1) 2203 goto next; 2204 2205 ret = soc_pcm_trigger(be_substream, cmd); 2206 if (ret) { 2207 be->dpcm[stream].be_start--; 2208 goto next; 2209 } 2210 2211 be->dpcm[stream].state = SND_SOC_DPCM_STATE_START; 2212 break; 2213 case SNDRV_PCM_TRIGGER_STOP: 2214 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_START) && 2215 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PAUSED)) 2216 goto next; 2217 2218 if (be->dpcm[stream].state == SND_SOC_DPCM_STATE_START) 2219 be->dpcm[stream].be_start--; 2220 2221 if (be->dpcm[stream].be_start != 0) 2222 goto next; 2223 2224 pause_stop_transition = false; 2225 if (fe->dpcm[stream].fe_pause) { 2226 pause_stop_transition = true; 2227 fe->dpcm[stream].fe_pause = false; 2228 be->dpcm[stream].be_pause--; 2229 } 2230 2231 if (be->dpcm[stream].be_pause != 0) 2232 ret = soc_pcm_trigger(be_substream, SNDRV_PCM_TRIGGER_PAUSE_PUSH); 2233 else 2234 ret = soc_pcm_trigger(be_substream, SNDRV_PCM_TRIGGER_STOP); 2235 2236 if (ret) { 2237 if (be->dpcm[stream].state == SND_SOC_DPCM_STATE_START) 2238 be->dpcm[stream].be_start++; 2239 if (pause_stop_transition) { 2240 fe->dpcm[stream].fe_pause = true; 2241 be->dpcm[stream].be_pause++; 2242 } 2243 goto next; 2244 } 2245 2246 if (be->dpcm[stream].be_pause != 0) 2247 be->dpcm[stream].state = SND_SOC_DPCM_STATE_PAUSED; 2248 else 2249 be->dpcm[stream].state = SND_SOC_DPCM_STATE_STOP; 2250 2251 break; 2252 case SNDRV_PCM_TRIGGER_SUSPEND: 2253 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START) 2254 goto next; 2255 2256 be->dpcm[stream].be_start--; 2257 if (be->dpcm[stream].be_start != 0) 2258 goto next; 2259 2260 ret = soc_pcm_trigger(be_substream, cmd); 2261 if (ret) { 2262 be->dpcm[stream].be_start++; 2263 goto next; 2264 } 2265 2266 be->dpcm[stream].state = SND_SOC_DPCM_STATE_SUSPEND; 2267 break; 2268 case SNDRV_PCM_TRIGGER_PAUSE_PUSH: 2269 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START) 2270 goto next; 2271 2272 fe->dpcm[stream].fe_pause = true; 2273 be->dpcm[stream].be_pause++; 2274 2275 be->dpcm[stream].be_start--; 2276 if (be->dpcm[stream].be_start != 0) 2277 goto next; 2278 2279 ret = soc_pcm_trigger(be_substream, cmd); 2280 if (ret) { 2281 be->dpcm[stream].be_start++; 2282 goto next; 2283 } 2284 2285 be->dpcm[stream].state = SND_SOC_DPCM_STATE_PAUSED; 2286 break; 2287 } 2288 next: 2289 snd_soc_dpcm_stream_unlock_irqrestore(be, stream, flags); 2290 if (ret) 2291 break; 2292 } 2293 return soc_pcm_ret(fe, ret); 2294 } 2295 EXPORT_SYMBOL_GPL(dpcm_be_dai_trigger); 2296 2297 static int dpcm_dai_trigger_fe_be(struct snd_pcm_substream *substream, 2298 int cmd, bool fe_first) 2299 { 2300 struct snd_soc_pcm_runtime *fe = snd_soc_substream_to_rtd(substream); 2301 int ret; 2302 2303 /* call trigger on the frontend before the backend. */ 2304 if (fe_first) { 2305 dev_dbg(fe->dev, "ASoC: pre trigger FE %s cmd %d\n", 2306 fe->dai_link->name, cmd); 2307 2308 ret = soc_pcm_trigger(substream, cmd); 2309 if (ret < 0) 2310 return ret; 2311 2312 ret = dpcm_be_dai_trigger(fe, substream->stream, cmd); 2313 return ret; 2314 } 2315 2316 /* call trigger on the frontend after the backend. */ 2317 ret = dpcm_be_dai_trigger(fe, substream->stream, cmd); 2318 if (ret < 0) 2319 return ret; 2320 2321 dev_dbg(fe->dev, "ASoC: post trigger FE %s cmd %d\n", 2322 fe->dai_link->name, cmd); 2323 2324 ret = soc_pcm_trigger(substream, cmd); 2325 2326 return ret; 2327 } 2328 2329 static int dpcm_fe_dai_do_trigger(struct snd_pcm_substream *substream, int cmd) 2330 { 2331 struct snd_soc_pcm_runtime *fe = snd_soc_substream_to_rtd(substream); 2332 int stream = substream->stream; 2333 int ret = 0; 2334 enum snd_soc_dpcm_trigger trigger = fe->dai_link->trigger[stream]; 2335 2336 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_FE; 2337 2338 switch (trigger) { 2339 case SND_SOC_DPCM_TRIGGER_PRE: 2340 switch (cmd) { 2341 case SNDRV_PCM_TRIGGER_START: 2342 case SNDRV_PCM_TRIGGER_RESUME: 2343 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE: 2344 case SNDRV_PCM_TRIGGER_DRAIN: 2345 ret = dpcm_dai_trigger_fe_be(substream, cmd, true); 2346 break; 2347 case SNDRV_PCM_TRIGGER_STOP: 2348 case SNDRV_PCM_TRIGGER_SUSPEND: 2349 case SNDRV_PCM_TRIGGER_PAUSE_PUSH: 2350 ret = dpcm_dai_trigger_fe_be(substream, cmd, false); 2351 break; 2352 default: 2353 ret = -EINVAL; 2354 break; 2355 } 2356 break; 2357 case SND_SOC_DPCM_TRIGGER_POST: 2358 switch (cmd) { 2359 case SNDRV_PCM_TRIGGER_START: 2360 case SNDRV_PCM_TRIGGER_RESUME: 2361 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE: 2362 case SNDRV_PCM_TRIGGER_DRAIN: 2363 ret = dpcm_dai_trigger_fe_be(substream, cmd, false); 2364 break; 2365 case SNDRV_PCM_TRIGGER_STOP: 2366 case SNDRV_PCM_TRIGGER_SUSPEND: 2367 case SNDRV_PCM_TRIGGER_PAUSE_PUSH: 2368 ret = dpcm_dai_trigger_fe_be(substream, cmd, true); 2369 break; 2370 default: 2371 ret = -EINVAL; 2372 break; 2373 } 2374 break; 2375 case SND_SOC_DPCM_TRIGGER_BESPOKE: 2376 /* bespoke trigger() - handles both FE and BEs */ 2377 2378 dev_dbg(fe->dev, "ASoC: bespoke trigger FE %s cmd %d\n", 2379 fe->dai_link->name, cmd); 2380 2381 ret = snd_soc_pcm_dai_bespoke_trigger(substream, cmd); 2382 break; 2383 default: 2384 dev_err(fe->dev, "ASoC: invalid trigger cmd %d for %s\n", cmd, 2385 fe->dai_link->name); 2386 ret = -EINVAL; 2387 goto out; 2388 } 2389 2390 if (ret < 0) { 2391 dev_err(fe->dev, "ASoC: trigger FE cmd: %d failed: %d\n", 2392 cmd, ret); 2393 goto out; 2394 } 2395 2396 switch (cmd) { 2397 case SNDRV_PCM_TRIGGER_START: 2398 case SNDRV_PCM_TRIGGER_RESUME: 2399 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE: 2400 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_START; 2401 break; 2402 case SNDRV_PCM_TRIGGER_STOP: 2403 case SNDRV_PCM_TRIGGER_SUSPEND: 2404 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_STOP; 2405 break; 2406 case SNDRV_PCM_TRIGGER_PAUSE_PUSH: 2407 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_PAUSED; 2408 break; 2409 } 2410 2411 out: 2412 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO; 2413 return ret; 2414 } 2415 2416 static int dpcm_fe_dai_trigger(struct snd_pcm_substream *substream, int cmd) 2417 { 2418 struct snd_soc_pcm_runtime *fe = snd_soc_substream_to_rtd(substream); 2419 int stream = substream->stream; 2420 2421 /* if FE's runtime_update is already set, we're in race; 2422 * process this trigger later at exit 2423 */ 2424 if (fe->dpcm[stream].runtime_update != SND_SOC_DPCM_UPDATE_NO) { 2425 fe->dpcm[stream].trigger_pending = cmd + 1; 2426 return 0; /* delayed, assuming it's successful */ 2427 } 2428 2429 /* we're alone, let's trigger */ 2430 return dpcm_fe_dai_do_trigger(substream, cmd); 2431 } 2432 2433 int dpcm_be_dai_prepare(struct snd_soc_pcm_runtime *fe, int stream) 2434 { 2435 struct snd_soc_dpcm *dpcm; 2436 int ret = 0; 2437 2438 for_each_dpcm_be(fe, stream, dpcm) { 2439 2440 struct snd_soc_pcm_runtime *be = dpcm->be; 2441 struct snd_pcm_substream *be_substream = 2442 snd_soc_dpcm_get_substream(be, stream); 2443 2444 /* is this op for this BE ? */ 2445 if (!snd_soc_dpcm_be_can_update(fe, be, stream)) 2446 continue; 2447 2448 if (!snd_soc_dpcm_can_be_prepared(fe, be, stream)) 2449 continue; 2450 2451 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) && 2452 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP) && 2453 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_SUSPEND) && 2454 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PAUSED)) 2455 continue; 2456 2457 dev_dbg(be->dev, "ASoC: prepare BE %s\n", 2458 be->dai_link->name); 2459 2460 ret = __soc_pcm_prepare(be, be_substream); 2461 if (ret < 0) 2462 break; 2463 2464 be->dpcm[stream].state = SND_SOC_DPCM_STATE_PREPARE; 2465 } 2466 2467 return soc_pcm_ret(fe, ret); 2468 } 2469 2470 static int dpcm_fe_dai_prepare(struct snd_pcm_substream *substream) 2471 { 2472 struct snd_soc_pcm_runtime *fe = snd_soc_substream_to_rtd(substream); 2473 int stream = substream->stream, ret = 0; 2474 2475 snd_soc_dpcm_mutex_lock(fe); 2476 2477 dev_dbg(fe->dev, "ASoC: prepare FE %s\n", fe->dai_link->name); 2478 2479 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE); 2480 2481 /* there is no point preparing this FE if there are no BEs */ 2482 if (list_empty(&fe->dpcm[stream].be_clients)) { 2483 /* dev_err_once() for visibility, dev_dbg() for debugging UCM profiles */ 2484 dev_err_once(fe->dev, "ASoC: no backend DAIs enabled for %s, possibly missing ALSA mixer-based routing or UCM profile\n", 2485 fe->dai_link->name); 2486 dev_dbg(fe->dev, "ASoC: no backend DAIs enabled for %s\n", 2487 fe->dai_link->name); 2488 ret = -EINVAL; 2489 goto out; 2490 } 2491 2492 ret = dpcm_be_dai_prepare(fe, stream); 2493 if (ret < 0) 2494 goto out; 2495 2496 /* call prepare on the frontend */ 2497 ret = __soc_pcm_prepare(fe, substream); 2498 if (ret < 0) 2499 goto out; 2500 2501 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_PREPARE; 2502 2503 out: 2504 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO); 2505 snd_soc_dpcm_mutex_unlock(fe); 2506 2507 return soc_pcm_ret(fe, ret); 2508 } 2509 2510 static int dpcm_run_update_shutdown(struct snd_soc_pcm_runtime *fe, int stream) 2511 { 2512 struct snd_pcm_substream *substream = 2513 snd_soc_dpcm_get_substream(fe, stream); 2514 enum snd_soc_dpcm_trigger trigger = fe->dai_link->trigger[stream]; 2515 int err; 2516 2517 dev_dbg(fe->dev, "ASoC: runtime %s close on FE %s\n", 2518 stream ? "capture" : "playback", fe->dai_link->name); 2519 2520 if (trigger == SND_SOC_DPCM_TRIGGER_BESPOKE) { 2521 /* call bespoke trigger - FE takes care of all BE triggers */ 2522 dev_dbg(fe->dev, "ASoC: bespoke trigger FE %s cmd stop\n", 2523 fe->dai_link->name); 2524 2525 err = snd_soc_pcm_dai_bespoke_trigger(substream, SNDRV_PCM_TRIGGER_STOP); 2526 } else { 2527 dev_dbg(fe->dev, "ASoC: trigger FE %s cmd stop\n", 2528 fe->dai_link->name); 2529 2530 err = dpcm_be_dai_trigger(fe, stream, SNDRV_PCM_TRIGGER_STOP); 2531 } 2532 2533 dpcm_be_dai_hw_free(fe, stream); 2534 2535 dpcm_be_dai_shutdown(fe, stream); 2536 2537 /* run the stream event for each BE */ 2538 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_NOP); 2539 2540 return soc_pcm_ret(fe, err); 2541 } 2542 2543 static int dpcm_run_update_startup(struct snd_soc_pcm_runtime *fe, int stream) 2544 { 2545 struct snd_pcm_substream *substream = 2546 snd_soc_dpcm_get_substream(fe, stream); 2547 struct snd_soc_dpcm *dpcm; 2548 enum snd_soc_dpcm_trigger trigger = fe->dai_link->trigger[stream]; 2549 int ret = 0; 2550 2551 dev_dbg(fe->dev, "ASoC: runtime %s open on FE %s\n", 2552 stream ? "capture" : "playback", fe->dai_link->name); 2553 2554 /* Only start the BE if the FE is ready */ 2555 if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_HW_FREE || 2556 fe->dpcm[stream].state == SND_SOC_DPCM_STATE_CLOSE) { 2557 dev_err(fe->dev, "ASoC: FE %s is not ready %d\n", 2558 fe->dai_link->name, fe->dpcm[stream].state); 2559 ret = -EINVAL; 2560 goto disconnect; 2561 } 2562 2563 /* startup must always be called for new BEs */ 2564 ret = dpcm_be_dai_startup(fe, stream); 2565 if (ret < 0) 2566 goto disconnect; 2567 2568 /* keep going if FE state is > open */ 2569 if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_OPEN) 2570 return 0; 2571 2572 ret = dpcm_be_dai_hw_params(fe, stream); 2573 if (ret < 0) 2574 goto close; 2575 2576 /* keep going if FE state is > hw_params */ 2577 if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_HW_PARAMS) 2578 return 0; 2579 2580 ret = dpcm_be_dai_prepare(fe, stream); 2581 if (ret < 0) 2582 goto hw_free; 2583 2584 /* run the stream event for each BE */ 2585 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_NOP); 2586 2587 /* keep going if FE state is > prepare */ 2588 if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_PREPARE || 2589 fe->dpcm[stream].state == SND_SOC_DPCM_STATE_STOP) 2590 return 0; 2591 2592 if (trigger == SND_SOC_DPCM_TRIGGER_BESPOKE) { 2593 /* call trigger on the frontend - FE takes care of all BE triggers */ 2594 dev_dbg(fe->dev, "ASoC: bespoke trigger FE %s cmd start\n", 2595 fe->dai_link->name); 2596 2597 ret = snd_soc_pcm_dai_bespoke_trigger(substream, SNDRV_PCM_TRIGGER_START); 2598 if (ret < 0) 2599 goto hw_free; 2600 } else { 2601 dev_dbg(fe->dev, "ASoC: trigger FE %s cmd start\n", 2602 fe->dai_link->name); 2603 2604 ret = dpcm_be_dai_trigger(fe, stream, 2605 SNDRV_PCM_TRIGGER_START); 2606 if (ret < 0) 2607 goto hw_free; 2608 } 2609 2610 return 0; 2611 2612 hw_free: 2613 dpcm_be_dai_hw_free(fe, stream); 2614 close: 2615 dpcm_be_dai_shutdown(fe, stream); 2616 disconnect: 2617 /* disconnect any pending BEs */ 2618 for_each_dpcm_be(fe, stream, dpcm) { 2619 struct snd_soc_pcm_runtime *be = dpcm->be; 2620 2621 /* is this op for this BE ? */ 2622 if (!snd_soc_dpcm_be_can_update(fe, be, stream)) 2623 continue; 2624 2625 if (be->dpcm[stream].state == SND_SOC_DPCM_STATE_CLOSE || 2626 be->dpcm[stream].state == SND_SOC_DPCM_STATE_NEW) 2627 dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE; 2628 } 2629 2630 return soc_pcm_ret(fe, ret); 2631 } 2632 2633 static int soc_dpcm_fe_runtime_update(struct snd_soc_pcm_runtime *fe, int new) 2634 { 2635 struct snd_soc_dapm_widget_list *list; 2636 int stream; 2637 int count, paths; 2638 2639 if (!fe->dai_link->dynamic) 2640 return 0; 2641 2642 if (fe->dai_link->num_cpus > 1) { 2643 dev_err(fe->dev, 2644 "%s doesn't support Multi CPU yet\n", __func__); 2645 return -EINVAL; 2646 } 2647 2648 /* only check active links */ 2649 if (!snd_soc_dai_active(snd_soc_rtd_to_cpu(fe, 0))) 2650 return 0; 2651 2652 /* DAPM sync will call this to update DSP paths */ 2653 dev_dbg(fe->dev, "ASoC: DPCM %s runtime update for FE %s\n", 2654 new ? "new" : "old", fe->dai_link->name); 2655 2656 for_each_pcm_streams(stream) { 2657 2658 /* skip if FE doesn't have playback/capture capability */ 2659 if (!snd_soc_dai_stream_valid(snd_soc_rtd_to_cpu(fe, 0), stream) || 2660 !snd_soc_dai_stream_valid(snd_soc_rtd_to_codec(fe, 0), stream)) 2661 continue; 2662 2663 /* skip if FE isn't currently playing/capturing */ 2664 if (!snd_soc_dai_stream_active(snd_soc_rtd_to_cpu(fe, 0), stream) || 2665 !snd_soc_dai_stream_active(snd_soc_rtd_to_codec(fe, 0), stream)) 2666 continue; 2667 2668 paths = dpcm_path_get(fe, stream, &list); 2669 if (paths < 0) 2670 return paths; 2671 2672 /* update any playback/capture paths */ 2673 count = dpcm_process_paths(fe, stream, &list, new); 2674 if (count) { 2675 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_BE); 2676 if (new) 2677 dpcm_run_update_startup(fe, stream); 2678 else 2679 dpcm_run_update_shutdown(fe, stream); 2680 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO); 2681 2682 dpcm_clear_pending_state(fe, stream); 2683 dpcm_be_disconnect(fe, stream); 2684 } 2685 2686 dpcm_path_put(&list); 2687 } 2688 2689 return 0; 2690 } 2691 2692 /* Called by DAPM mixer/mux changes to update audio routing between PCMs and 2693 * any DAI links. 2694 */ 2695 int snd_soc_dpcm_runtime_update(struct snd_soc_card *card) 2696 { 2697 struct snd_soc_pcm_runtime *fe; 2698 int ret = 0; 2699 2700 snd_soc_dpcm_mutex_lock(card); 2701 /* shutdown all old paths first */ 2702 for_each_card_rtds(card, fe) { 2703 ret = soc_dpcm_fe_runtime_update(fe, 0); 2704 if (ret) 2705 goto out; 2706 } 2707 2708 /* bring new paths up */ 2709 for_each_card_rtds(card, fe) { 2710 ret = soc_dpcm_fe_runtime_update(fe, 1); 2711 if (ret) 2712 goto out; 2713 } 2714 2715 out: 2716 snd_soc_dpcm_mutex_unlock(card); 2717 return ret; 2718 } 2719 EXPORT_SYMBOL_GPL(snd_soc_dpcm_runtime_update); 2720 2721 static void dpcm_fe_dai_cleanup(struct snd_pcm_substream *fe_substream) 2722 { 2723 struct snd_soc_pcm_runtime *fe = snd_soc_substream_to_rtd(fe_substream); 2724 struct snd_soc_dpcm *dpcm; 2725 int stream = fe_substream->stream; 2726 2727 snd_soc_dpcm_mutex_assert_held(fe); 2728 2729 /* mark FE's links ready to prune */ 2730 for_each_dpcm_be(fe, stream, dpcm) 2731 dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE; 2732 2733 dpcm_be_disconnect(fe, stream); 2734 } 2735 2736 static int dpcm_fe_dai_close(struct snd_pcm_substream *fe_substream) 2737 { 2738 struct snd_soc_pcm_runtime *fe = snd_soc_substream_to_rtd(fe_substream); 2739 int ret; 2740 2741 snd_soc_dpcm_mutex_lock(fe); 2742 ret = dpcm_fe_dai_shutdown(fe_substream); 2743 2744 dpcm_fe_dai_cleanup(fe_substream); 2745 2746 snd_soc_dpcm_mutex_unlock(fe); 2747 return ret; 2748 } 2749 2750 static int dpcm_fe_dai_open(struct snd_pcm_substream *fe_substream) 2751 { 2752 struct snd_soc_pcm_runtime *fe = snd_soc_substream_to_rtd(fe_substream); 2753 struct snd_soc_dapm_widget_list *list; 2754 int ret; 2755 int stream = fe_substream->stream; 2756 2757 snd_soc_dpcm_mutex_lock(fe); 2758 2759 ret = dpcm_path_get(fe, stream, &list); 2760 if (ret < 0) 2761 goto open_end; 2762 2763 /* calculate valid and active FE <-> BE dpcms */ 2764 dpcm_process_paths(fe, stream, &list, 1); 2765 2766 ret = dpcm_fe_dai_startup(fe_substream); 2767 if (ret < 0) 2768 dpcm_fe_dai_cleanup(fe_substream); 2769 2770 dpcm_clear_pending_state(fe, stream); 2771 dpcm_path_put(&list); 2772 open_end: 2773 snd_soc_dpcm_mutex_unlock(fe); 2774 return ret; 2775 } 2776 2777 static int soc_get_playback_capture(struct snd_soc_pcm_runtime *rtd, 2778 int *playback, int *capture) 2779 { 2780 struct snd_soc_dai_link *dai_link = rtd->dai_link; 2781 struct snd_soc_dai *cpu_dai; 2782 int has_playback = 0; 2783 int has_capture = 0; 2784 int i; 2785 2786 if (dai_link->dynamic && dai_link->num_cpus > 1) { 2787 dev_err(rtd->dev, "DPCM doesn't support Multi CPU for Front-Ends yet\n"); 2788 return -EINVAL; 2789 } 2790 2791 if (dai_link->dynamic || dai_link->no_pcm) { 2792 int stream; 2793 2794 if (dai_link->dpcm_playback) { 2795 stream = SNDRV_PCM_STREAM_PLAYBACK; 2796 2797 for_each_rtd_cpu_dais(rtd, i, cpu_dai) { 2798 if (snd_soc_dai_stream_valid(cpu_dai, stream)) { 2799 has_playback = 1; 2800 break; 2801 } 2802 } 2803 if (!has_playback) { 2804 dev_err(rtd->card->dev, 2805 "No CPU DAIs support playback for stream %s\n", 2806 dai_link->stream_name); 2807 return -EINVAL; 2808 } 2809 } 2810 if (dai_link->dpcm_capture) { 2811 stream = SNDRV_PCM_STREAM_CAPTURE; 2812 2813 for_each_rtd_cpu_dais(rtd, i, cpu_dai) { 2814 if (snd_soc_dai_stream_valid(cpu_dai, stream)) { 2815 has_capture = 1; 2816 break; 2817 } 2818 } 2819 2820 if (!has_capture) { 2821 dev_err(rtd->card->dev, 2822 "No CPU DAIs support capture for stream %s\n", 2823 dai_link->stream_name); 2824 return -EINVAL; 2825 } 2826 } 2827 } else { 2828 struct snd_soc_dai_link_ch_map *ch_maps; 2829 struct snd_soc_dai *codec_dai; 2830 2831 /* Adapt stream for codec2codec links */ 2832 int cpu_capture = snd_soc_get_stream_cpu(dai_link, SNDRV_PCM_STREAM_CAPTURE); 2833 int cpu_playback = snd_soc_get_stream_cpu(dai_link, SNDRV_PCM_STREAM_PLAYBACK); 2834 2835 /* 2836 * see 2837 * soc.h :: [dai_link->ch_maps Image sample] 2838 */ 2839 for_each_rtd_ch_maps(rtd, i, ch_maps) { 2840 cpu_dai = snd_soc_rtd_to_cpu(rtd, ch_maps->cpu); 2841 codec_dai = snd_soc_rtd_to_codec(rtd, ch_maps->codec); 2842 2843 if (snd_soc_dai_stream_valid(codec_dai, SNDRV_PCM_STREAM_PLAYBACK) && 2844 snd_soc_dai_stream_valid(cpu_dai, cpu_playback)) 2845 has_playback = 1; 2846 if (snd_soc_dai_stream_valid(codec_dai, SNDRV_PCM_STREAM_CAPTURE) && 2847 snd_soc_dai_stream_valid(cpu_dai, cpu_capture)) 2848 has_capture = 1; 2849 } 2850 } 2851 2852 if (dai_link->playback_only) 2853 has_capture = 0; 2854 2855 if (dai_link->capture_only) 2856 has_playback = 0; 2857 2858 if (!has_playback && !has_capture) { 2859 dev_err(rtd->dev, "substream %s has no playback, no capture\n", 2860 dai_link->stream_name); 2861 2862 return -EINVAL; 2863 } 2864 2865 *playback = has_playback; 2866 *capture = has_capture; 2867 2868 return 0; 2869 } 2870 2871 static int soc_create_pcm(struct snd_pcm **pcm, 2872 struct snd_soc_pcm_runtime *rtd, 2873 int playback, int capture, int num) 2874 { 2875 char new_name[64]; 2876 int ret; 2877 2878 /* create the PCM */ 2879 if (rtd->dai_link->c2c_params) { 2880 snprintf(new_name, sizeof(new_name), "codec2codec(%s)", 2881 rtd->dai_link->stream_name); 2882 2883 ret = snd_pcm_new_internal(rtd->card->snd_card, new_name, num, 2884 playback, capture, pcm); 2885 } else if (rtd->dai_link->no_pcm) { 2886 snprintf(new_name, sizeof(new_name), "(%s)", 2887 rtd->dai_link->stream_name); 2888 2889 ret = snd_pcm_new_internal(rtd->card->snd_card, new_name, num, 2890 playback, capture, pcm); 2891 } else { 2892 if (rtd->dai_link->dynamic) 2893 snprintf(new_name, sizeof(new_name), "%s (*)", 2894 rtd->dai_link->stream_name); 2895 else 2896 snprintf(new_name, sizeof(new_name), "%s %s-%d", 2897 rtd->dai_link->stream_name, 2898 soc_codec_dai_name(rtd), num); 2899 2900 ret = snd_pcm_new(rtd->card->snd_card, new_name, num, playback, 2901 capture, pcm); 2902 } 2903 if (ret < 0) { 2904 dev_err(rtd->card->dev, "ASoC: can't create pcm %s for dailink %s: %d\n", 2905 new_name, rtd->dai_link->name, ret); 2906 return ret; 2907 } 2908 dev_dbg(rtd->card->dev, "ASoC: registered pcm #%d %s\n",num, new_name); 2909 2910 return 0; 2911 } 2912 2913 /* create a new pcm */ 2914 int soc_new_pcm(struct snd_soc_pcm_runtime *rtd, int num) 2915 { 2916 struct snd_soc_component *component; 2917 struct snd_pcm *pcm; 2918 int ret = 0, playback = 0, capture = 0; 2919 int i; 2920 2921 ret = soc_get_playback_capture(rtd, &playback, &capture); 2922 if (ret < 0) 2923 return ret; 2924 2925 ret = soc_create_pcm(&pcm, rtd, playback, capture, num); 2926 if (ret < 0) 2927 return ret; 2928 2929 /* DAPM dai link stream work */ 2930 /* 2931 * Currently nothing to do for c2c links 2932 * Since c2c links are internal nodes in the DAPM graph and 2933 * don't interface with the outside world or application layer 2934 * we don't have to do any special handling on close. 2935 */ 2936 if (!rtd->dai_link->c2c_params) 2937 rtd->close_delayed_work_func = snd_soc_close_delayed_work; 2938 2939 rtd->pcm = pcm; 2940 pcm->nonatomic = rtd->dai_link->nonatomic; 2941 pcm->private_data = rtd; 2942 pcm->no_device_suspend = true; 2943 2944 if (rtd->dai_link->no_pcm || rtd->dai_link->c2c_params) { 2945 if (playback) 2946 pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream->private_data = rtd; 2947 if (capture) 2948 pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream->private_data = rtd; 2949 goto out; 2950 } 2951 2952 /* ASoC PCM operations */ 2953 if (rtd->dai_link->dynamic) { 2954 rtd->ops.open = dpcm_fe_dai_open; 2955 rtd->ops.hw_params = dpcm_fe_dai_hw_params; 2956 rtd->ops.prepare = dpcm_fe_dai_prepare; 2957 rtd->ops.trigger = dpcm_fe_dai_trigger; 2958 rtd->ops.hw_free = dpcm_fe_dai_hw_free; 2959 rtd->ops.close = dpcm_fe_dai_close; 2960 rtd->ops.pointer = soc_pcm_pointer; 2961 } else { 2962 rtd->ops.open = soc_pcm_open; 2963 rtd->ops.hw_params = soc_pcm_hw_params; 2964 rtd->ops.prepare = soc_pcm_prepare; 2965 rtd->ops.trigger = soc_pcm_trigger; 2966 rtd->ops.hw_free = soc_pcm_hw_free; 2967 rtd->ops.close = soc_pcm_close; 2968 rtd->ops.pointer = soc_pcm_pointer; 2969 } 2970 2971 for_each_rtd_components(rtd, i, component) { 2972 const struct snd_soc_component_driver *drv = component->driver; 2973 2974 if (drv->ioctl) 2975 rtd->ops.ioctl = snd_soc_pcm_component_ioctl; 2976 if (drv->sync_stop) 2977 rtd->ops.sync_stop = snd_soc_pcm_component_sync_stop; 2978 if (drv->copy) 2979 rtd->ops.copy = snd_soc_pcm_component_copy; 2980 if (drv->page) 2981 rtd->ops.page = snd_soc_pcm_component_page; 2982 if (drv->mmap) 2983 rtd->ops.mmap = snd_soc_pcm_component_mmap; 2984 if (drv->ack) 2985 rtd->ops.ack = snd_soc_pcm_component_ack; 2986 } 2987 2988 if (playback) 2989 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &rtd->ops); 2990 2991 if (capture) 2992 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &rtd->ops); 2993 2994 ret = snd_soc_pcm_component_new(rtd); 2995 if (ret < 0) 2996 return ret; 2997 out: 2998 dev_dbg(rtd->card->dev, "%s <-> %s mapping ok\n", 2999 soc_codec_dai_name(rtd), soc_cpu_dai_name(rtd)); 3000 return ret; 3001 } 3002 3003 /* is the current PCM operation for this FE ? */ 3004 int snd_soc_dpcm_fe_can_update(struct snd_soc_pcm_runtime *fe, int stream) 3005 { 3006 if (fe->dpcm[stream].runtime_update == SND_SOC_DPCM_UPDATE_FE) 3007 return 1; 3008 return 0; 3009 } 3010 EXPORT_SYMBOL_GPL(snd_soc_dpcm_fe_can_update); 3011 3012 /* is the current PCM operation for this BE ? */ 3013 int snd_soc_dpcm_be_can_update(struct snd_soc_pcm_runtime *fe, 3014 struct snd_soc_pcm_runtime *be, int stream) 3015 { 3016 if ((fe->dpcm[stream].runtime_update == SND_SOC_DPCM_UPDATE_FE) || 3017 ((fe->dpcm[stream].runtime_update == SND_SOC_DPCM_UPDATE_BE) && 3018 be->dpcm[stream].runtime_update)) 3019 return 1; 3020 return 0; 3021 } 3022 EXPORT_SYMBOL_GPL(snd_soc_dpcm_be_can_update); 3023 3024 /* get the substream for this BE */ 3025 struct snd_pcm_substream * 3026 snd_soc_dpcm_get_substream(struct snd_soc_pcm_runtime *be, int stream) 3027 { 3028 return be->pcm->streams[stream].substream; 3029 } 3030 EXPORT_SYMBOL_GPL(snd_soc_dpcm_get_substream); 3031 3032 static int snd_soc_dpcm_check_state(struct snd_soc_pcm_runtime *fe, 3033 struct snd_soc_pcm_runtime *be, 3034 int stream, 3035 const enum snd_soc_dpcm_state *states, 3036 int num_states) 3037 { 3038 struct snd_soc_dpcm *dpcm; 3039 int state; 3040 int ret = 1; 3041 int i; 3042 3043 for_each_dpcm_fe(be, stream, dpcm) { 3044 3045 if (dpcm->fe == fe) 3046 continue; 3047 3048 state = dpcm->fe->dpcm[stream].state; 3049 for (i = 0; i < num_states; i++) { 3050 if (state == states[i]) { 3051 ret = 0; 3052 break; 3053 } 3054 } 3055 } 3056 3057 /* it's safe to do this BE DAI */ 3058 return ret; 3059 } 3060 3061 /* 3062 * We can only hw_free, stop, pause or suspend a BE DAI if any of it's FE 3063 * are not running, paused or suspended for the specified stream direction. 3064 */ 3065 int snd_soc_dpcm_can_be_free_stop(struct snd_soc_pcm_runtime *fe, 3066 struct snd_soc_pcm_runtime *be, int stream) 3067 { 3068 const enum snd_soc_dpcm_state state[] = { 3069 SND_SOC_DPCM_STATE_START, 3070 SND_SOC_DPCM_STATE_PAUSED, 3071 SND_SOC_DPCM_STATE_SUSPEND, 3072 }; 3073 3074 return snd_soc_dpcm_check_state(fe, be, stream, state, ARRAY_SIZE(state)); 3075 } 3076 EXPORT_SYMBOL_GPL(snd_soc_dpcm_can_be_free_stop); 3077 3078 /* 3079 * We can only change hw params a BE DAI if any of it's FE are not prepared, 3080 * running, paused or suspended for the specified stream direction. 3081 */ 3082 int snd_soc_dpcm_can_be_params(struct snd_soc_pcm_runtime *fe, 3083 struct snd_soc_pcm_runtime *be, int stream) 3084 { 3085 const enum snd_soc_dpcm_state state[] = { 3086 SND_SOC_DPCM_STATE_START, 3087 SND_SOC_DPCM_STATE_PAUSED, 3088 SND_SOC_DPCM_STATE_SUSPEND, 3089 SND_SOC_DPCM_STATE_PREPARE, 3090 }; 3091 3092 return snd_soc_dpcm_check_state(fe, be, stream, state, ARRAY_SIZE(state)); 3093 } 3094 EXPORT_SYMBOL_GPL(snd_soc_dpcm_can_be_params); 3095 3096 /* 3097 * We can only prepare a BE DAI if any of it's FE are not prepared, 3098 * running or paused for the specified stream direction. 3099 */ 3100 int snd_soc_dpcm_can_be_prepared(struct snd_soc_pcm_runtime *fe, 3101 struct snd_soc_pcm_runtime *be, int stream) 3102 { 3103 const enum snd_soc_dpcm_state state[] = { 3104 SND_SOC_DPCM_STATE_START, 3105 SND_SOC_DPCM_STATE_PAUSED, 3106 SND_SOC_DPCM_STATE_PREPARE, 3107 }; 3108 3109 return snd_soc_dpcm_check_state(fe, be, stream, state, ARRAY_SIZE(state)); 3110 } 3111 EXPORT_SYMBOL_GPL(snd_soc_dpcm_can_be_prepared); 3112