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