1 // SPDX-License-Identifier: GPL-2.0+
3 // soc-pcm.c -- ALSA SoC PCM
5 // Copyright 2005 Wolfson Microelectronics PLC.
6 // Copyright 2005 Openedhand Ltd.
7 // Copyright (C) 2010 Slimlogic Ltd.
8 // Copyright (C) 2010 Texas Instruments Inc.
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>
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)
33 /* Positive, Zero values are not errors */
37 /* Negative values might be errors */
45 "ASoC: error at %s on %s: %d\n",
46 func, rtd->dai_link->name, ret);
52 static inline void snd_soc_dpcm_stream_lock_irq(struct snd_soc_pcm_runtime *rtd,
55 snd_pcm_stream_lock_irq(snd_soc_dpcm_get_substream(rtd, stream));
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)
61 static inline void snd_soc_dpcm_stream_unlock_irq(struct snd_soc_pcm_runtime *rtd,
64 snd_pcm_stream_unlock_irq(snd_soc_dpcm_get_substream(rtd, stream));
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)
70 #define DPCM_MAX_BE_USERS 8
72 static inline const char *soc_cpu_dai_name(struct snd_soc_pcm_runtime *rtd)
74 return (rtd)->dai_link->num_cpus == 1 ? snd_soc_rtd_to_cpu(rtd, 0)->name : "multicpu";
76 static inline const char *soc_codec_dai_name(struct snd_soc_pcm_runtime *rtd)
78 return (rtd)->dai_link->num_codecs == 1 ? snd_soc_rtd_to_codec(rtd, 0)->name : "multicodec";
81 #ifdef CONFIG_DEBUG_FS
82 static const char *dpcm_state_string(enum snd_soc_dpcm_state state)
85 case SND_SOC_DPCM_STATE_NEW:
87 case SND_SOC_DPCM_STATE_OPEN:
89 case SND_SOC_DPCM_STATE_HW_PARAMS:
91 case SND_SOC_DPCM_STATE_PREPARE:
93 case SND_SOC_DPCM_STATE_START:
95 case SND_SOC_DPCM_STATE_STOP:
97 case SND_SOC_DPCM_STATE_SUSPEND:
99 case SND_SOC_DPCM_STATE_PAUSED:
101 case SND_SOC_DPCM_STATE_HW_FREE:
103 case SND_SOC_DPCM_STATE_CLOSE:
110 static ssize_t dpcm_show_state(struct snd_soc_pcm_runtime *fe,
111 int stream, char *buf, size_t size)
113 struct snd_pcm_hw_params *params = &fe->dpcm[stream].hw_params;
114 struct snd_soc_dpcm *dpcm;
118 offset += scnprintf(buf + offset, size - offset,
119 "[%s - %s]\n", fe->dai_link->name,
120 stream ? "Capture" : "Playback");
122 offset += scnprintf(buf + offset, size - offset, "State: %s\n",
123 dpcm_state_string(fe->dpcm[stream].state));
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,
129 "Format = %s, Channels = %d, Rate = %d\n",
130 snd_pcm_format_name(params_format(params)),
131 params_channels(params),
132 params_rate(params));
135 offset += scnprintf(buf + offset, size - offset, "Backends:\n");
137 if (list_empty(&fe->dpcm[stream].be_clients)) {
138 offset += scnprintf(buf + offset, size - offset,
139 " No active DSP links\n");
143 for_each_dpcm_be(fe, stream, dpcm) {
144 struct snd_soc_pcm_runtime *be = dpcm->be;
145 params = &be->dpcm[stream].hw_params;
147 offset += scnprintf(buf + offset, size - offset,
148 "- %s\n", be->dai_link->name);
150 offset += scnprintf(buf + offset, size - offset,
152 dpcm_state_string(be->dpcm[stream].state));
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,
158 "Format = %s, Channels = %d, Rate = %d\n",
159 snd_pcm_format_name(params_format(params)),
160 params_channels(params),
161 params_rate(params));
167 static ssize_t dpcm_state_read_file(struct file *file, char __user *user_buf,
168 size_t count, loff_t *ppos)
170 struct snd_soc_pcm_runtime *fe = file->private_data;
171 ssize_t out_count = PAGE_SIZE, offset = 0, ret = 0;
175 if (fe->dai_link->num_cpus > 1) {
177 "%s doesn't support Multi CPU yet\n", __func__);
181 buf = kmalloc(out_count, GFP_KERNEL);
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,
191 snd_soc_dpcm_mutex_unlock(fe);
193 ret = simple_read_from_buffer(user_buf, count, ppos, buf, offset);
199 static const struct file_operations dpcm_state_fops = {
201 .read = dpcm_state_read_file,
202 .llseek = default_llseek,
205 void soc_dpcm_debugfs_add(struct snd_soc_pcm_runtime *rtd)
207 if (!rtd->dai_link->dynamic)
210 if (!rtd->card->debugfs_card_root)
213 rtd->debugfs_dpcm_root = debugfs_create_dir(rtd->dai_link->name,
214 rtd->card->debugfs_card_root);
216 debugfs_create_file("state", 0444, rtd->debugfs_dpcm_root,
217 rtd, &dpcm_state_fops);
220 static void dpcm_create_debugfs_state(struct snd_soc_dpcm *dpcm, int stream)
224 name = kasprintf(GFP_KERNEL, "%s:%s", dpcm->be->dai_link->name,
225 stream ? "capture" : "playback");
227 dpcm->debugfs_state = debugfs_create_dir(
228 name, dpcm->fe->debugfs_dpcm_root);
229 debugfs_create_u32("state", 0644, dpcm->debugfs_state,
235 static void dpcm_remove_debugfs_state(struct snd_soc_dpcm *dpcm)
237 debugfs_remove_recursive(dpcm->debugfs_state);
241 static inline void dpcm_create_debugfs_state(struct snd_soc_dpcm *dpcm,
246 static inline void dpcm_remove_debugfs_state(struct snd_soc_dpcm *dpcm)
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.
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)
260 struct snd_pcm_substream *substream =
261 snd_soc_dpcm_get_substream(fe, stream);
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;
269 fe->dpcm[stream].runtime_update = state;
270 snd_soc_dpcm_stream_unlock_irq(fe, stream);
273 static void dpcm_set_be_update_state(struct snd_soc_pcm_runtime *be,
274 int stream, enum snd_soc_dpcm_update state)
276 be->dpcm[stream].runtime_update = state;
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.
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.
290 * Must be called with the rtd->card->pcm_mutex being held
292 void snd_soc_runtime_action(struct snd_soc_pcm_runtime *rtd,
293 int stream, int action)
295 struct snd_soc_component *component;
296 struct snd_soc_dai *dai;
299 snd_soc_dpcm_mutex_assert_held(rtd);
301 for_each_rtd_dais(rtd, i, dai)
302 snd_soc_dai_action(dai, stream, action);
304 /* Increments/Decrements the active count for components without DAIs */
305 for_each_rtd_components(rtd, i, component) {
306 if (component->num_dai)
308 component->active += action;
311 EXPORT_SYMBOL_GPL(snd_soc_runtime_action);
314 * snd_soc_runtime_ignore_pmdown_time() - Check whether to ignore the power down delay
315 * @rtd: The ASoC PCM runtime that should be checked.
317 * This function checks whether the power down delay should be ignored for a
318 * specific PCM runtime. Returns true if the delay is 0, if it the DAI link has
319 * been configured to ignore the delay, or if none of the components benefits
320 * from having the delay.
322 bool snd_soc_runtime_ignore_pmdown_time(struct snd_soc_pcm_runtime *rtd)
324 struct snd_soc_component *component;
328 if (!rtd->pmdown_time || rtd->dai_link->ignore_pmdown_time)
331 for_each_rtd_components(rtd, i, component)
332 ignore &= !component->driver->use_pmdown_time;
338 * snd_soc_set_runtime_hwparams - set the runtime hardware parameters
339 * @substream: the pcm substream
340 * @hw: the hardware parameters
342 * Sets the substream runtime hardware parameters.
344 int snd_soc_set_runtime_hwparams(struct snd_pcm_substream *substream,
345 const struct snd_pcm_hardware *hw)
347 substream->runtime->hw = *hw;
351 EXPORT_SYMBOL_GPL(snd_soc_set_runtime_hwparams);
353 /* DPCM stream event, send event to FE and all active BEs. */
354 int dpcm_dapm_stream_event(struct snd_soc_pcm_runtime *fe, int dir,
357 struct snd_soc_dpcm *dpcm;
359 snd_soc_dpcm_mutex_assert_held(fe);
361 for_each_dpcm_be(fe, dir, dpcm) {
363 struct snd_soc_pcm_runtime *be = dpcm->be;
365 dev_dbg(be->dev, "ASoC: BE %s event %d dir %d\n",
366 be->dai_link->name, event, dir);
368 if ((event == SND_SOC_DAPM_STREAM_STOP) &&
369 (be->dpcm[dir].users >= 1))
372 snd_soc_dapm_stream_event(be, dir, event);
375 snd_soc_dapm_stream_event(fe, dir, event);
380 static void soc_pcm_set_dai_params(struct snd_soc_dai *dai,
381 struct snd_pcm_hw_params *params)
384 dai->rate = params_rate(params);
385 dai->channels = params_channels(params);
386 dai->sample_bits = snd_pcm_format_physical_width(params_format(params));
390 dai->sample_bits = 0;
394 static int soc_pcm_apply_symmetry(struct snd_pcm_substream *substream,
395 struct snd_soc_dai *soc_dai)
397 struct snd_soc_pcm_runtime *rtd = snd_soc_substream_to_rtd(substream);
400 if (!snd_soc_dai_active(soc_dai))
403 #define __soc_pcm_apply_symmetry(name, NAME) \
404 if (soc_dai->name && (soc_dai->driver->symmetric_##name || \
405 rtd->dai_link->symmetric_##name)) { \
406 dev_dbg(soc_dai->dev, "ASoC: Symmetry forces %s to %d\n",\
407 #name, soc_dai->name); \
409 ret = snd_pcm_hw_constraint_single(substream->runtime, \
410 SNDRV_PCM_HW_PARAM_##NAME,\
413 dev_err(soc_dai->dev, \
414 "ASoC: Unable to apply %s constraint: %d\n",\
420 __soc_pcm_apply_symmetry(rate, RATE);
421 __soc_pcm_apply_symmetry(channels, CHANNELS);
422 __soc_pcm_apply_symmetry(sample_bits, SAMPLE_BITS);
427 static int soc_pcm_params_symmetry(struct snd_pcm_substream *substream,
428 struct snd_pcm_hw_params *params)
430 struct snd_soc_pcm_runtime *rtd = snd_soc_substream_to_rtd(substream);
431 struct snd_soc_dai d;
432 struct snd_soc_dai *dai;
433 struct snd_soc_dai *cpu_dai;
434 unsigned int symmetry, i;
437 soc_pcm_set_dai_params(&d, params);
439 #define __soc_pcm_params_symmetry(xxx) \
440 symmetry = rtd->dai_link->symmetric_##xxx; \
441 for_each_rtd_dais(rtd, i, dai) \
442 symmetry |= dai->driver->symmetric_##xxx; \
445 for_each_rtd_cpu_dais(rtd, i, cpu_dai) \
446 if (!snd_soc_dai_is_dummy(cpu_dai) && \
447 cpu_dai->xxx && cpu_dai->xxx != d.xxx) { \
448 dev_err(rtd->dev, "ASoC: unmatched %s symmetry: %s:%d - %s:%d\n", \
449 #xxx, cpu_dai->name, cpu_dai->xxx, d.name, d.xxx); \
453 /* reject unmatched parameters when applying symmetry */
454 __soc_pcm_params_symmetry(rate);
455 __soc_pcm_params_symmetry(channels);
456 __soc_pcm_params_symmetry(sample_bits);
461 static void soc_pcm_update_symmetry(struct snd_pcm_substream *substream)
463 struct snd_soc_pcm_runtime *rtd = snd_soc_substream_to_rtd(substream);
464 struct snd_soc_dai_link *link = rtd->dai_link;
465 struct snd_soc_dai *dai;
466 unsigned int symmetry, i;
468 symmetry = link->symmetric_rate ||
469 link->symmetric_channels ||
470 link->symmetric_sample_bits;
472 for_each_rtd_dais(rtd, i, dai)
473 symmetry = symmetry ||
474 dai->driver->symmetric_rate ||
475 dai->driver->symmetric_channels ||
476 dai->driver->symmetric_sample_bits;
479 substream->runtime->hw.info |= SNDRV_PCM_INFO_JOINT_DUPLEX;
482 static void soc_pcm_set_msb(struct snd_pcm_substream *substream, int bits)
484 struct snd_soc_pcm_runtime *rtd = snd_soc_substream_to_rtd(substream);
490 ret = snd_pcm_hw_constraint_msbits(substream->runtime, 0, 0, bits);
492 dev_warn(rtd->dev, "ASoC: Failed to set MSB %d: %d\n",
496 static void soc_pcm_apply_msb(struct snd_pcm_substream *substream)
498 struct snd_soc_pcm_runtime *rtd = snd_soc_substream_to_rtd(substream);
499 struct snd_soc_dai *cpu_dai;
500 struct snd_soc_dai *codec_dai;
501 int stream = substream->stream;
503 unsigned int bits = 0, cpu_bits = 0;
505 for_each_rtd_codec_dais(rtd, i, codec_dai) {
506 struct snd_soc_pcm_stream *pcm_codec = snd_soc_dai_get_pcm_stream(codec_dai, stream);
508 if (pcm_codec->sig_bits == 0) {
512 bits = max(pcm_codec->sig_bits, bits);
515 for_each_rtd_cpu_dais(rtd, i, cpu_dai) {
516 struct snd_soc_pcm_stream *pcm_cpu = snd_soc_dai_get_pcm_stream(cpu_dai, stream);
518 if (pcm_cpu->sig_bits == 0) {
522 cpu_bits = max(pcm_cpu->sig_bits, cpu_bits);
525 soc_pcm_set_msb(substream, bits);
526 soc_pcm_set_msb(substream, cpu_bits);
529 static void soc_pcm_hw_init(struct snd_pcm_hardware *hw)
531 hw->rates = UINT_MAX;
533 hw->rate_max = UINT_MAX;
534 hw->channels_min = 0;
535 hw->channels_max = UINT_MAX;
536 hw->formats = ULLONG_MAX;
539 static void soc_pcm_hw_update_rate(struct snd_pcm_hardware *hw,
540 struct snd_soc_pcm_stream *p)
542 hw->rates = snd_pcm_rate_mask_intersect(hw->rates, p->rates);
544 /* setup hw->rate_min/max via hw->rates first */
545 snd_pcm_hw_limit_rates(hw);
547 /* update hw->rate_min/max by snd_soc_pcm_stream */
548 hw->rate_min = max(hw->rate_min, p->rate_min);
549 hw->rate_max = min_not_zero(hw->rate_max, p->rate_max);
552 static void soc_pcm_hw_update_chan(struct snd_pcm_hardware *hw,
553 struct snd_soc_pcm_stream *p)
555 hw->channels_min = max(hw->channels_min, p->channels_min);
556 hw->channels_max = min(hw->channels_max, p->channels_max);
559 static void soc_pcm_hw_update_format(struct snd_pcm_hardware *hw,
560 struct snd_soc_pcm_stream *p)
562 hw->formats &= p->formats;
565 static void soc_pcm_hw_update_subformat(struct snd_pcm_hardware *hw,
566 struct snd_soc_pcm_stream *p)
568 hw->subformats &= p->subformats;
572 * snd_soc_runtime_calc_hw() - Calculate hw limits for a PCM stream
573 * @rtd: ASoC PCM runtime
574 * @hw: PCM hardware parameters (output)
575 * @stream: Direction of the PCM stream
577 * Calculates the subset of stream parameters supported by all DAIs
578 * associated with the PCM stream.
580 int snd_soc_runtime_calc_hw(struct snd_soc_pcm_runtime *rtd,
581 struct snd_pcm_hardware *hw, int stream)
583 struct snd_soc_dai *codec_dai;
584 struct snd_soc_dai *cpu_dai;
585 struct snd_soc_pcm_stream *codec_stream;
586 struct snd_soc_pcm_stream *cpu_stream;
587 unsigned int cpu_chan_min = 0, cpu_chan_max = UINT_MAX;
592 /* first calculate min/max only for CPUs in the DAI link */
593 for_each_rtd_cpu_dais(rtd, i, cpu_dai) {
596 * Skip CPUs which don't support the current stream type.
597 * Otherwise, since the rate, channel, and format values will
598 * zero in that case, we would have no usable settings left,
599 * causing the resulting setup to fail.
601 if (!snd_soc_dai_stream_valid(cpu_dai, stream))
604 cpu_stream = snd_soc_dai_get_pcm_stream(cpu_dai, stream);
606 soc_pcm_hw_update_chan(hw, cpu_stream);
607 soc_pcm_hw_update_rate(hw, cpu_stream);
608 soc_pcm_hw_update_format(hw, cpu_stream);
609 soc_pcm_hw_update_subformat(hw, cpu_stream);
611 cpu_chan_min = hw->channels_min;
612 cpu_chan_max = hw->channels_max;
614 /* second calculate min/max only for CODECs in the DAI link */
615 for_each_rtd_codec_dais(rtd, i, codec_dai) {
618 * Skip CODECs which don't support the current stream type.
619 * Otherwise, since the rate, channel, and format values will
620 * zero in that case, we would have no usable settings left,
621 * causing the resulting setup to fail.
623 if (!snd_soc_dai_stream_valid(codec_dai, stream))
626 codec_stream = snd_soc_dai_get_pcm_stream(codec_dai, stream);
628 soc_pcm_hw_update_chan(hw, codec_stream);
629 soc_pcm_hw_update_rate(hw, codec_stream);
630 soc_pcm_hw_update_format(hw, codec_stream);
631 soc_pcm_hw_update_subformat(hw, codec_stream);
634 /* Verify both a valid CPU DAI and a valid CODEC DAI were found */
635 if (!hw->channels_min)
639 * chan min/max cannot be enforced if there are multiple CODEC DAIs
640 * connected to CPU DAI(s), use CPU DAI's directly and let
641 * channel allocation be fixed up later
643 if (rtd->dai_link->num_codecs > 1) {
644 hw->channels_min = cpu_chan_min;
645 hw->channels_max = cpu_chan_max;
650 EXPORT_SYMBOL_GPL(snd_soc_runtime_calc_hw);
652 static void soc_pcm_init_runtime_hw(struct snd_pcm_substream *substream)
654 struct snd_pcm_hardware *hw = &substream->runtime->hw;
655 struct snd_soc_pcm_runtime *rtd = snd_soc_substream_to_rtd(substream);
656 u64 formats = hw->formats;
659 * At least one CPU and one CODEC should match. Otherwise, we should
660 * have bailed out on a higher level, since there would be no CPU or
661 * CODEC to support the transfer direction in that case.
663 snd_soc_runtime_calc_hw(rtd, hw, substream->stream);
666 hw->formats &= formats;
669 static int soc_pcm_components_open(struct snd_pcm_substream *substream)
671 struct snd_soc_pcm_runtime *rtd = snd_soc_substream_to_rtd(substream);
672 struct snd_soc_component *component;
675 for_each_rtd_components(rtd, i, component) {
676 ret = snd_soc_component_module_get_when_open(component, substream);
680 ret = snd_soc_component_open(component, substream);
688 static int soc_pcm_components_close(struct snd_pcm_substream *substream,
691 struct snd_soc_pcm_runtime *rtd = snd_soc_substream_to_rtd(substream);
692 struct snd_soc_component *component;
695 for_each_rtd_components(rtd, i, component) {
696 int r = snd_soc_component_close(component, substream, rollback);
698 ret = r; /* use last ret */
700 snd_soc_component_module_put_when_close(component, substream, rollback);
706 static int soc_pcm_clean(struct snd_soc_pcm_runtime *rtd,
707 struct snd_pcm_substream *substream, int rollback)
709 struct snd_soc_component *component;
710 struct snd_soc_dai *dai;
713 snd_soc_dpcm_mutex_assert_held(rtd);
716 snd_soc_runtime_deactivate(rtd, substream->stream);
718 /* Make sure DAI parameters cleared if the DAI becomes inactive */
719 for_each_rtd_dais(rtd, i, dai) {
720 if (snd_soc_dai_active(dai) == 0 &&
721 (dai->rate || dai->channels || dai->sample_bits))
722 soc_pcm_set_dai_params(dai, NULL);
726 for_each_rtd_dais(rtd, i, dai)
727 snd_soc_dai_shutdown(dai, substream, rollback);
729 snd_soc_link_shutdown(substream, rollback);
731 soc_pcm_components_close(substream, rollback);
733 snd_soc_pcm_component_pm_runtime_put(rtd, substream, rollback);
735 for_each_rtd_components(rtd, i, component)
736 if (!snd_soc_component_active(component))
737 pinctrl_pm_select_sleep_state(component->dev);
743 * Called by ALSA when a PCM substream is closed. Private data can be
744 * freed here. The cpu DAI, codec DAI, machine and components are also
747 static int __soc_pcm_close(struct snd_soc_pcm_runtime *rtd,
748 struct snd_pcm_substream *substream)
750 return soc_pcm_clean(rtd, substream, 0);
753 /* PCM close ops for non-DPCM streams */
754 static int soc_pcm_close(struct snd_pcm_substream *substream)
756 struct snd_soc_pcm_runtime *rtd = snd_soc_substream_to_rtd(substream);
758 snd_soc_dpcm_mutex_lock(rtd);
759 __soc_pcm_close(rtd, substream);
760 snd_soc_dpcm_mutex_unlock(rtd);
764 static int soc_hw_sanity_check(struct snd_pcm_substream *substream)
766 struct snd_soc_pcm_runtime *rtd = snd_soc_substream_to_rtd(substream);
767 struct snd_pcm_hardware *hw = &substream->runtime->hw;
768 const char *name_cpu = soc_cpu_dai_name(rtd);
769 const char *name_codec = soc_codec_dai_name(rtd);
771 struct device *dev = rtd->dev;
781 err_msg = "channels";
782 if (!hw->channels_min || !hw->channels_max ||
783 hw->channels_min > hw->channels_max)
786 dev_dbg(dev, "ASoC: %s <-> %s info:\n", name_codec,
788 dev_dbg(dev, "ASoC: rate mask 0x%x\n", hw->rates);
789 dev_dbg(dev, "ASoC: ch min %d max %d\n", hw->channels_min,
791 dev_dbg(dev, "ASoC: rate min %d max %d\n", hw->rate_min,
797 dev_err(dev, "ASoC: %s <-> %s No matching %s\n",
798 name_codec, name_cpu, err_msg);
803 * Called by ALSA when a PCM substream is opened, the runtime->hw record is
804 * then initialized and any private data can be allocated. This also calls
805 * startup for the cpu DAI, component, machine and codec DAI.
807 static int __soc_pcm_open(struct snd_soc_pcm_runtime *rtd,
808 struct snd_pcm_substream *substream)
810 struct snd_soc_component *component;
811 struct snd_soc_dai *dai;
814 snd_soc_dpcm_mutex_assert_held(rtd);
816 for_each_rtd_components(rtd, i, component)
817 pinctrl_pm_select_default_state(component->dev);
819 ret = snd_soc_pcm_component_pm_runtime_get(rtd, substream);
823 ret = soc_pcm_components_open(substream);
827 ret = snd_soc_link_startup(substream);
831 /* startup the audio subsystem */
832 for_each_rtd_dais(rtd, i, dai) {
833 ret = snd_soc_dai_startup(dai, substream);
838 /* Dynamic PCM DAI links compat checks use dynamic capabilities */
839 if (rtd->dai_link->dynamic || rtd->dai_link->no_pcm)
842 /* Check that the codec and cpu DAIs are compatible */
843 soc_pcm_init_runtime_hw(substream);
845 soc_pcm_update_symmetry(substream);
847 ret = soc_hw_sanity_check(substream);
851 soc_pcm_apply_msb(substream);
853 /* Symmetry only applies if we've already got an active stream. */
854 for_each_rtd_dais(rtd, i, dai) {
855 ret = soc_pcm_apply_symmetry(substream, dai);
860 snd_soc_runtime_activate(rtd, substream->stream);
864 soc_pcm_clean(rtd, substream, 1);
866 return soc_pcm_ret(rtd, ret);
869 /* PCM open ops for non-DPCM streams */
870 static int soc_pcm_open(struct snd_pcm_substream *substream)
872 struct snd_soc_pcm_runtime *rtd = snd_soc_substream_to_rtd(substream);
875 snd_soc_dpcm_mutex_lock(rtd);
876 ret = __soc_pcm_open(rtd, substream);
877 snd_soc_dpcm_mutex_unlock(rtd);
882 * Called by ALSA when the PCM substream is prepared, can set format, sample
883 * rate, etc. This function is non atomic and can be called multiple times,
884 * it can refer to the runtime info.
886 static int __soc_pcm_prepare(struct snd_soc_pcm_runtime *rtd,
887 struct snd_pcm_substream *substream)
889 struct snd_soc_dai *dai;
892 snd_soc_dpcm_mutex_assert_held(rtd);
894 ret = snd_soc_link_prepare(substream);
898 ret = snd_soc_pcm_component_prepare(substream);
902 ret = snd_soc_pcm_dai_prepare(substream);
906 /* cancel any delayed stream shutdown that is pending */
907 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
910 cancel_delayed_work(&rtd->delayed_work);
913 snd_soc_dapm_stream_event(rtd, substream->stream,
914 SND_SOC_DAPM_STREAM_START);
916 for_each_rtd_dais(rtd, i, dai) {
917 if (dai->driver->ops && !dai->driver->ops->mute_unmute_on_trigger)
918 snd_soc_dai_digital_mute(dai, 0, substream->stream);
922 return soc_pcm_ret(rtd, ret);
925 /* PCM prepare ops for non-DPCM streams */
926 static int soc_pcm_prepare(struct snd_pcm_substream *substream)
928 struct snd_soc_pcm_runtime *rtd = snd_soc_substream_to_rtd(substream);
931 snd_soc_dpcm_mutex_lock(rtd);
932 ret = __soc_pcm_prepare(rtd, substream);
933 snd_soc_dpcm_mutex_unlock(rtd);
937 static void soc_pcm_codec_params_fixup(struct snd_pcm_hw_params *params,
940 struct snd_interval *interval;
941 int channels = hweight_long(mask);
943 interval = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
944 interval->min = channels;
945 interval->max = channels;
948 static int soc_pcm_hw_clean(struct snd_soc_pcm_runtime *rtd,
949 struct snd_pcm_substream *substream, int rollback)
951 struct snd_soc_dai *dai;
954 snd_soc_dpcm_mutex_assert_held(rtd);
956 /* clear the corresponding DAIs parameters when going to be inactive */
957 for_each_rtd_dais(rtd, i, dai) {
958 if (snd_soc_dai_active(dai) == 1)
959 soc_pcm_set_dai_params(dai, NULL);
961 if (snd_soc_dai_stream_active(dai, substream->stream) == 1) {
962 if (dai->driver->ops && !dai->driver->ops->mute_unmute_on_trigger)
963 snd_soc_dai_digital_mute(dai, 1, substream->stream);
967 /* run the stream event */
968 snd_soc_dapm_stream_stop(rtd, substream->stream);
970 /* free any machine hw params */
971 snd_soc_link_hw_free(substream, rollback);
973 /* free any component resources */
974 snd_soc_pcm_component_hw_free(substream, rollback);
976 /* now free hw params for the DAIs */
977 for_each_rtd_dais(rtd, i, dai)
978 if (snd_soc_dai_stream_valid(dai, substream->stream))
979 snd_soc_dai_hw_free(dai, substream, rollback);
985 * Frees resources allocated by hw_params, can be called multiple times
987 static int __soc_pcm_hw_free(struct snd_soc_pcm_runtime *rtd,
988 struct snd_pcm_substream *substream)
990 return soc_pcm_hw_clean(rtd, substream, 0);
993 /* hw_free PCM ops for non-DPCM streams */
994 static int soc_pcm_hw_free(struct snd_pcm_substream *substream)
996 struct snd_soc_pcm_runtime *rtd = snd_soc_substream_to_rtd(substream);
999 snd_soc_dpcm_mutex_lock(rtd);
1000 ret = __soc_pcm_hw_free(rtd, substream);
1001 snd_soc_dpcm_mutex_unlock(rtd);
1006 * Called by ALSA when the hardware params are set by application. This
1007 * function can also be called multiple times and can allocate buffers
1008 * (using snd_pcm_lib_* ). It's non-atomic.
1010 static int __soc_pcm_hw_params(struct snd_soc_pcm_runtime *rtd,
1011 struct snd_pcm_substream *substream,
1012 struct snd_pcm_hw_params *params)
1014 struct snd_soc_dai *cpu_dai;
1015 struct snd_soc_dai *codec_dai;
1016 struct snd_pcm_hw_params tmp_params;
1019 snd_soc_dpcm_mutex_assert_held(rtd);
1021 ret = soc_pcm_params_symmetry(substream, params);
1025 ret = snd_soc_link_hw_params(substream, params);
1029 for_each_rtd_codec_dais(rtd, i, codec_dai) {
1030 unsigned int tdm_mask = snd_soc_dai_tdm_mask_get(codec_dai, substream->stream);
1033 * Skip CODECs which don't support the current stream type,
1034 * the idea being that if a CODEC is not used for the currently
1035 * set up transfer direction, it should not need to be
1036 * configured, especially since the configuration used might
1037 * not even be supported by that CODEC. There may be cases
1038 * however where a CODEC needs to be set up although it is
1039 * actually not being used for the transfer, e.g. if a
1040 * capture-only CODEC is acting as an LRCLK and/or BCLK master
1041 * for the DAI link including a playback-only CODEC.
1042 * If this becomes necessary, we will have to augment the
1043 * machine driver setup with information on how to act, so
1044 * we can do the right thing here.
1046 if (!snd_soc_dai_stream_valid(codec_dai, substream->stream))
1049 /* copy params for each codec */
1050 tmp_params = *params;
1052 /* fixup params based on TDM slot masks */
1054 soc_pcm_codec_params_fixup(&tmp_params, tdm_mask);
1056 ret = snd_soc_dai_hw_params(codec_dai, substream,
1061 soc_pcm_set_dai_params(codec_dai, &tmp_params);
1062 snd_soc_dapm_update_dai(substream, &tmp_params, codec_dai);
1065 for_each_rtd_cpu_dais(rtd, i, cpu_dai) {
1066 struct snd_soc_dai_link_ch_map *ch_maps;
1067 unsigned int ch_mask = 0;
1071 * Skip CPUs which don't support the current stream
1072 * type. See soc_pcm_init_runtime_hw() for more details
1074 if (!snd_soc_dai_stream_valid(cpu_dai, substream->stream))
1077 /* copy params for each cpu */
1078 tmp_params = *params;
1081 * construct cpu channel mask by combining ch_mask of each
1082 * codec which maps to the cpu.
1084 * soc.h :: [dai_link->ch_maps Image sample]
1086 for_each_rtd_ch_maps(rtd, j, ch_maps)
1087 if (ch_maps->cpu == i)
1088 ch_mask |= ch_maps->ch_mask;
1090 /* fixup cpu channel number */
1092 soc_pcm_codec_params_fixup(&tmp_params, ch_mask);
1094 ret = snd_soc_dai_hw_params(cpu_dai, substream, &tmp_params);
1098 /* store the parameters for each DAI */
1099 soc_pcm_set_dai_params(cpu_dai, &tmp_params);
1100 snd_soc_dapm_update_dai(substream, &tmp_params, cpu_dai);
1103 ret = snd_soc_pcm_component_hw_params(substream, params);
1106 soc_pcm_hw_clean(rtd, substream, 1);
1108 return soc_pcm_ret(rtd, ret);
1111 /* hw_params PCM ops for non-DPCM streams */
1112 static int soc_pcm_hw_params(struct snd_pcm_substream *substream,
1113 struct snd_pcm_hw_params *params)
1115 struct snd_soc_pcm_runtime *rtd = snd_soc_substream_to_rtd(substream);
1118 snd_soc_dpcm_mutex_lock(rtd);
1119 ret = __soc_pcm_hw_params(rtd, substream, params);
1120 snd_soc_dpcm_mutex_unlock(rtd);
1124 #define TRIGGER_MAX 3
1125 static int (* const trigger[][TRIGGER_MAX])(struct snd_pcm_substream *substream, int cmd, int rollback) = {
1126 [SND_SOC_TRIGGER_ORDER_DEFAULT] = {
1127 snd_soc_link_trigger,
1128 snd_soc_pcm_component_trigger,
1129 snd_soc_pcm_dai_trigger,
1131 [SND_SOC_TRIGGER_ORDER_LDC] = {
1132 snd_soc_link_trigger,
1133 snd_soc_pcm_dai_trigger,
1134 snd_soc_pcm_component_trigger,
1138 static int soc_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
1140 struct snd_soc_pcm_runtime *rtd = snd_soc_substream_to_rtd(substream);
1141 struct snd_soc_component *component;
1142 int ret = 0, r = 0, i;
1144 int start = 0, stop = 0;
1147 * select START/STOP sequence
1149 for_each_rtd_components(rtd, i, component) {
1150 if (component->driver->trigger_start)
1151 start = component->driver->trigger_start;
1152 if (component->driver->trigger_stop)
1153 stop = component->driver->trigger_stop;
1155 if (rtd->dai_link->trigger_start)
1156 start = rtd->dai_link->trigger_start;
1157 if (rtd->dai_link->trigger_stop)
1158 stop = rtd->dai_link->trigger_stop;
1160 if (start < 0 || start >= SND_SOC_TRIGGER_ORDER_MAX ||
1161 stop < 0 || stop >= SND_SOC_TRIGGER_ORDER_MAX)
1168 case SNDRV_PCM_TRIGGER_START:
1169 case SNDRV_PCM_TRIGGER_RESUME:
1170 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
1171 for (i = 0; i < TRIGGER_MAX; i++) {
1172 r = trigger[start][i](substream, cmd, 0);
1179 * Rollback if START failed
1180 * find correspond STOP command
1186 case SNDRV_PCM_TRIGGER_START:
1187 cmd = SNDRV_PCM_TRIGGER_STOP;
1189 case SNDRV_PCM_TRIGGER_RESUME:
1190 cmd = SNDRV_PCM_TRIGGER_SUSPEND;
1192 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
1193 cmd = SNDRV_PCM_TRIGGER_PAUSE_PUSH;
1202 case SNDRV_PCM_TRIGGER_STOP:
1203 case SNDRV_PCM_TRIGGER_SUSPEND:
1204 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
1205 for (i = TRIGGER_MAX; i > 0; i--) {
1206 r = trigger[stop][i - 1](substream, cmd, rollback);
1216 * soc level wrapper for pointer callback
1217 * If cpu_dai, codec_dai, component driver has the delay callback, then
1218 * the runtime->delay will be updated via snd_soc_pcm_component/dai_delay().
1220 static snd_pcm_uframes_t soc_pcm_pointer(struct snd_pcm_substream *substream)
1222 struct snd_pcm_runtime *runtime = substream->runtime;
1223 snd_pcm_uframes_t offset = 0;
1224 snd_pcm_sframes_t codec_delay = 0;
1225 snd_pcm_sframes_t cpu_delay = 0;
1227 offset = snd_soc_pcm_component_pointer(substream);
1229 /* should be called *after* snd_soc_pcm_component_pointer() */
1230 snd_soc_pcm_dai_delay(substream, &cpu_delay, &codec_delay);
1231 snd_soc_pcm_component_delay(substream, &cpu_delay, &codec_delay);
1233 runtime->delay = cpu_delay + codec_delay;
1238 /* connect a FE and BE */
1239 static int dpcm_be_connect(struct snd_soc_pcm_runtime *fe,
1240 struct snd_soc_pcm_runtime *be, int stream)
1242 struct snd_pcm_substream *fe_substream;
1243 struct snd_pcm_substream *be_substream;
1244 struct snd_soc_dpcm *dpcm;
1246 snd_soc_dpcm_mutex_assert_held(fe);
1248 /* only add new dpcms */
1249 for_each_dpcm_be(fe, stream, dpcm) {
1250 if (dpcm->be == be && dpcm->fe == fe)
1254 fe_substream = snd_soc_dpcm_get_substream(fe, stream);
1255 be_substream = snd_soc_dpcm_get_substream(be, stream);
1257 if (!fe_substream->pcm->nonatomic && be_substream->pcm->nonatomic) {
1258 dev_err(be->dev, "%s: FE is atomic but BE is nonatomic, invalid configuration\n",
1262 if (fe_substream->pcm->nonatomic && !be_substream->pcm->nonatomic) {
1263 dev_dbg(be->dev, "FE is nonatomic but BE is not, forcing BE as nonatomic\n");
1264 be_substream->pcm->nonatomic = 1;
1267 dpcm = kzalloc(sizeof(struct snd_soc_dpcm), GFP_KERNEL);
1273 dpcm->state = SND_SOC_DPCM_LINK_STATE_NEW;
1274 snd_soc_dpcm_stream_lock_irq(fe, stream);
1275 list_add(&dpcm->list_be, &fe->dpcm[stream].be_clients);
1276 list_add(&dpcm->list_fe, &be->dpcm[stream].fe_clients);
1277 snd_soc_dpcm_stream_unlock_irq(fe, stream);
1279 dev_dbg(fe->dev, "connected new DPCM %s path %s %s %s\n",
1280 stream ? "capture" : "playback", fe->dai_link->name,
1281 stream ? "<-" : "->", be->dai_link->name);
1283 dpcm_create_debugfs_state(dpcm, stream);
1288 /* reparent a BE onto another FE */
1289 static void dpcm_be_reparent(struct snd_soc_pcm_runtime *fe,
1290 struct snd_soc_pcm_runtime *be, int stream)
1292 struct snd_soc_dpcm *dpcm;
1293 struct snd_pcm_substream *fe_substream, *be_substream;
1295 /* reparent if BE is connected to other FEs */
1296 if (!be->dpcm[stream].users)
1299 be_substream = snd_soc_dpcm_get_substream(be, stream);
1303 for_each_dpcm_fe(be, stream, dpcm) {
1307 dev_dbg(fe->dev, "reparent %s path %s %s %s\n",
1308 stream ? "capture" : "playback",
1309 dpcm->fe->dai_link->name,
1310 stream ? "<-" : "->", dpcm->be->dai_link->name);
1312 fe_substream = snd_soc_dpcm_get_substream(dpcm->fe, stream);
1313 be_substream->runtime = fe_substream->runtime;
1318 /* disconnect a BE and FE */
1319 void dpcm_be_disconnect(struct snd_soc_pcm_runtime *fe, int stream)
1321 struct snd_soc_dpcm *dpcm, *d;
1322 LIST_HEAD(deleted_dpcms);
1324 snd_soc_dpcm_mutex_assert_held(fe);
1326 snd_soc_dpcm_stream_lock_irq(fe, stream);
1327 for_each_dpcm_be_safe(fe, stream, dpcm, d) {
1328 dev_dbg(fe->dev, "ASoC: BE %s disconnect check for %s\n",
1329 stream ? "capture" : "playback",
1330 dpcm->be->dai_link->name);
1332 if (dpcm->state != SND_SOC_DPCM_LINK_STATE_FREE)
1335 dev_dbg(fe->dev, "freed DSP %s path %s %s %s\n",
1336 stream ? "capture" : "playback", fe->dai_link->name,
1337 stream ? "<-" : "->", dpcm->be->dai_link->name);
1339 /* BEs still alive need new FE */
1340 dpcm_be_reparent(fe, dpcm->be, stream);
1342 list_del(&dpcm->list_be);
1343 list_move(&dpcm->list_fe, &deleted_dpcms);
1345 snd_soc_dpcm_stream_unlock_irq(fe, stream);
1347 while (!list_empty(&deleted_dpcms)) {
1348 dpcm = list_first_entry(&deleted_dpcms, struct snd_soc_dpcm,
1350 list_del(&dpcm->list_fe);
1351 dpcm_remove_debugfs_state(dpcm);
1356 /* get BE for DAI widget and stream */
1357 static struct snd_soc_pcm_runtime *dpcm_get_be(struct snd_soc_card *card,
1358 struct snd_soc_dapm_widget *widget, int stream)
1360 struct snd_soc_pcm_runtime *be;
1361 struct snd_soc_dapm_widget *w;
1362 struct snd_soc_dai *dai;
1365 dev_dbg(card->dev, "ASoC: find BE for widget %s\n", widget->name);
1367 for_each_card_rtds(card, be) {
1369 if (!be->dai_link->no_pcm)
1372 if (!snd_soc_dpcm_get_substream(be, stream))
1375 for_each_rtd_dais(be, i, dai) {
1376 w = snd_soc_dai_get_widget(dai, stream);
1378 dev_dbg(card->dev, "ASoC: try BE : %s\n",
1379 w ? w->name : "(not set)");
1386 /* Widget provided is not a BE */
1390 int widget_in_list(struct snd_soc_dapm_widget_list *list,
1391 struct snd_soc_dapm_widget *widget)
1393 struct snd_soc_dapm_widget *w;
1396 for_each_dapm_widgets(list, i, w)
1402 EXPORT_SYMBOL_GPL(widget_in_list);
1404 bool dpcm_end_walk_at_be(struct snd_soc_dapm_widget *widget, enum snd_soc_dapm_direction dir)
1406 struct snd_soc_card *card = widget->dapm->card;
1407 struct snd_soc_pcm_runtime *rtd;
1410 /* adjust dir to stream */
1411 if (dir == SND_SOC_DAPM_DIR_OUT)
1412 stream = SNDRV_PCM_STREAM_PLAYBACK;
1414 stream = SNDRV_PCM_STREAM_CAPTURE;
1416 rtd = dpcm_get_be(card, widget, stream);
1422 EXPORT_SYMBOL_GPL(dpcm_end_walk_at_be);
1424 int dpcm_path_get(struct snd_soc_pcm_runtime *fe,
1425 int stream, struct snd_soc_dapm_widget_list **list)
1427 struct snd_soc_dai *cpu_dai = snd_soc_rtd_to_cpu(fe, 0);
1430 if (fe->dai_link->num_cpus > 1) {
1432 "%s doesn't support Multi CPU yet\n", __func__);
1436 /* get number of valid DAI paths and their widgets */
1437 paths = snd_soc_dapm_dai_get_connected_widgets(cpu_dai, stream, list,
1438 fe->card->component_chaining ?
1439 NULL : dpcm_end_walk_at_be);
1442 dev_dbg(fe->dev, "ASoC: found %d audio %s paths\n", paths,
1443 stream ? "capture" : "playback");
1444 else if (paths == 0)
1445 dev_dbg(fe->dev, "ASoC: %s no valid %s path\n", fe->dai_link->name,
1446 stream ? "capture" : "playback");
1451 void dpcm_path_put(struct snd_soc_dapm_widget_list **list)
1453 snd_soc_dapm_dai_free_widgets(list);
1456 static bool dpcm_be_is_active(struct snd_soc_dpcm *dpcm, int stream,
1457 struct snd_soc_dapm_widget_list *list)
1459 struct snd_soc_dai *dai;
1462 /* is there a valid DAI widget for this BE */
1463 for_each_rtd_dais(dpcm->be, i, dai) {
1464 struct snd_soc_dapm_widget *widget = snd_soc_dai_get_widget(dai, stream);
1467 * The BE is pruned only if none of the dai
1468 * widgets are in the active list.
1470 if (widget && widget_in_list(list, widget))
1477 static int dpcm_prune_paths(struct snd_soc_pcm_runtime *fe, int stream,
1478 struct snd_soc_dapm_widget_list **list_)
1480 struct snd_soc_dpcm *dpcm;
1483 /* Destroy any old FE <--> BE connections */
1484 for_each_dpcm_be(fe, stream, dpcm) {
1485 if (dpcm_be_is_active(dpcm, stream, *list_))
1488 dev_dbg(fe->dev, "ASoC: pruning %s BE %s for %s\n",
1489 stream ? "capture" : "playback",
1490 dpcm->be->dai_link->name, fe->dai_link->name);
1491 dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE;
1492 dpcm_set_be_update_state(dpcm->be, stream, SND_SOC_DPCM_UPDATE_BE);
1496 dev_dbg(fe->dev, "ASoC: found %d old BE paths for pruning\n", prune);
1500 static int dpcm_add_paths(struct snd_soc_pcm_runtime *fe, int stream,
1501 struct snd_soc_dapm_widget_list **list_)
1503 struct snd_soc_card *card = fe->card;
1504 struct snd_soc_dapm_widget_list *list = *list_;
1505 struct snd_soc_pcm_runtime *be;
1506 struct snd_soc_dapm_widget *widget;
1507 struct snd_pcm_substream *fe_substream = snd_soc_dpcm_get_substream(fe, stream);
1508 int i, new = 0, err;
1510 /* don't connect if FE is not running */
1511 if (!fe_substream->runtime && !fe->fe_compr)
1514 /* Create any new FE <--> BE connections */
1515 for_each_dapm_widgets(list, i, widget) {
1517 switch (widget->id) {
1518 case snd_soc_dapm_dai_in:
1519 if (stream != SNDRV_PCM_STREAM_PLAYBACK)
1522 case snd_soc_dapm_dai_out:
1523 if (stream != SNDRV_PCM_STREAM_CAPTURE)
1530 /* is there a valid BE rtd for this widget */
1531 be = dpcm_get_be(card, widget, stream);
1533 dev_dbg(fe->dev, "ASoC: no BE found for %s\n",
1539 * Filter for systems with 'component_chaining' enabled.
1540 * This helps to avoid unnecessary re-configuration of an
1541 * already active BE on such systems.
1543 if (fe->card->component_chaining &&
1544 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_NEW) &&
1545 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_CLOSE))
1548 /* newly connected FE and BE */
1549 err = dpcm_be_connect(fe, be, stream);
1551 dev_err(fe->dev, "ASoC: can't connect %s\n",
1554 } else if (err == 0) /* already connected */
1558 dpcm_set_be_update_state(be, stream, SND_SOC_DPCM_UPDATE_BE);
1562 dev_dbg(fe->dev, "ASoC: found %d new BE paths\n", new);
1567 * Find the corresponding BE DAIs that source or sink audio to this
1570 int dpcm_process_paths(struct snd_soc_pcm_runtime *fe,
1571 int stream, struct snd_soc_dapm_widget_list **list, int new)
1574 return dpcm_add_paths(fe, stream, list);
1576 return dpcm_prune_paths(fe, stream, list);
1579 void dpcm_clear_pending_state(struct snd_soc_pcm_runtime *fe, int stream)
1581 struct snd_soc_dpcm *dpcm;
1583 for_each_dpcm_be(fe, stream, dpcm)
1584 dpcm_set_be_update_state(dpcm->be, stream, SND_SOC_DPCM_UPDATE_NO);
1587 void dpcm_be_dai_stop(struct snd_soc_pcm_runtime *fe, int stream,
1588 int do_hw_free, struct snd_soc_dpcm *last)
1590 struct snd_soc_dpcm *dpcm;
1592 /* disable any enabled and non active backends */
1593 for_each_dpcm_be(fe, stream, dpcm) {
1594 struct snd_soc_pcm_runtime *be = dpcm->be;
1595 struct snd_pcm_substream *be_substream =
1596 snd_soc_dpcm_get_substream(be, stream);
1601 /* is this op for this BE ? */
1602 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1605 if (be->dpcm[stream].users == 0) {
1606 dev_err(be->dev, "ASoC: no users %s at close - state %d\n",
1607 stream ? "capture" : "playback",
1608 be->dpcm[stream].state);
1612 if (--be->dpcm[stream].users != 0)
1615 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN) {
1619 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE) {
1620 __soc_pcm_hw_free(be, be_substream);
1621 be->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_FREE;
1625 __soc_pcm_close(be, be_substream);
1626 be_substream->runtime = NULL;
1627 be->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
1631 int dpcm_be_dai_startup(struct snd_soc_pcm_runtime *fe, int stream)
1633 struct snd_pcm_substream *fe_substream = snd_soc_dpcm_get_substream(fe, stream);
1634 struct snd_soc_pcm_runtime *be;
1635 struct snd_soc_dpcm *dpcm;
1638 /* only startup BE DAIs that are either sinks or sources to this FE DAI */
1639 for_each_dpcm_be(fe, stream, dpcm) {
1640 struct snd_pcm_substream *be_substream;
1643 be_substream = snd_soc_dpcm_get_substream(be, stream);
1645 if (!be_substream) {
1646 dev_err(be->dev, "ASoC: no backend %s stream\n",
1647 stream ? "capture" : "playback");
1651 /* is this op for this BE ? */
1652 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1655 /* first time the dpcm is open ? */
1656 if (be->dpcm[stream].users == DPCM_MAX_BE_USERS) {
1657 dev_err(be->dev, "ASoC: too many users %s at open %d\n",
1658 stream ? "capture" : "playback",
1659 be->dpcm[stream].state);
1663 if (be->dpcm[stream].users++ != 0)
1666 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_NEW) &&
1667 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_CLOSE))
1670 dev_dbg(be->dev, "ASoC: open %s BE %s\n",
1671 stream ? "capture" : "playback", be->dai_link->name);
1673 be_substream->runtime = fe_substream->runtime;
1674 err = __soc_pcm_open(be, be_substream);
1676 be->dpcm[stream].users--;
1677 if (be->dpcm[stream].users < 0)
1678 dev_err(be->dev, "ASoC: no users %s at unwind %d\n",
1679 stream ? "capture" : "playback",
1680 be->dpcm[stream].state);
1682 be->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
1685 be->dpcm[stream].be_start = 0;
1686 be->dpcm[stream].state = SND_SOC_DPCM_STATE_OPEN;
1693 dpcm_be_dai_startup_rollback(fe, stream, dpcm);
1695 return soc_pcm_ret(fe, err);
1698 static void dpcm_runtime_setup_fe(struct snd_pcm_substream *substream)
1700 struct snd_soc_pcm_runtime *fe = snd_soc_substream_to_rtd(substream);
1701 struct snd_pcm_runtime *runtime = substream->runtime;
1702 struct snd_pcm_hardware *hw = &runtime->hw;
1703 struct snd_soc_dai *dai;
1704 int stream = substream->stream;
1705 u64 formats = hw->formats;
1708 soc_pcm_hw_init(hw);
1711 hw->formats &= formats;
1713 for_each_rtd_cpu_dais(fe, i, dai) {
1714 struct snd_soc_pcm_stream *cpu_stream;
1717 * Skip CPUs which don't support the current stream
1718 * type. See soc_pcm_init_runtime_hw() for more details
1720 if (!snd_soc_dai_stream_valid(dai, stream))
1723 cpu_stream = snd_soc_dai_get_pcm_stream(dai, stream);
1725 soc_pcm_hw_update_rate(hw, cpu_stream);
1726 soc_pcm_hw_update_chan(hw, cpu_stream);
1727 soc_pcm_hw_update_format(hw, cpu_stream);
1728 soc_pcm_hw_update_subformat(hw, cpu_stream);
1733 static void dpcm_runtime_setup_be_format(struct snd_pcm_substream *substream)
1735 struct snd_soc_pcm_runtime *fe = snd_soc_substream_to_rtd(substream);
1736 struct snd_pcm_runtime *runtime = substream->runtime;
1737 struct snd_pcm_hardware *hw = &runtime->hw;
1738 struct snd_soc_dpcm *dpcm;
1739 struct snd_soc_dai *dai;
1740 int stream = substream->stream;
1742 if (!fe->dai_link->dpcm_merged_format)
1746 * It returns merged BE codec format
1747 * if FE want to use it (= dpcm_merged_format)
1750 for_each_dpcm_be(fe, stream, dpcm) {
1751 struct snd_soc_pcm_runtime *be = dpcm->be;
1752 struct snd_soc_pcm_stream *codec_stream;
1755 for_each_rtd_codec_dais(be, i, dai) {
1757 * Skip CODECs which don't support the current stream
1758 * type. See soc_pcm_init_runtime_hw() for more details
1760 if (!snd_soc_dai_stream_valid(dai, stream))
1763 codec_stream = snd_soc_dai_get_pcm_stream(dai, stream);
1765 soc_pcm_hw_update_format(hw, codec_stream);
1766 soc_pcm_hw_update_subformat(hw, codec_stream);
1771 static void dpcm_runtime_setup_be_chan(struct snd_pcm_substream *substream)
1773 struct snd_soc_pcm_runtime *fe = snd_soc_substream_to_rtd(substream);
1774 struct snd_pcm_runtime *runtime = substream->runtime;
1775 struct snd_pcm_hardware *hw = &runtime->hw;
1776 struct snd_soc_dpcm *dpcm;
1777 int stream = substream->stream;
1779 if (!fe->dai_link->dpcm_merged_chan)
1783 * It returns merged BE codec channel;
1784 * if FE want to use it (= dpcm_merged_chan)
1787 for_each_dpcm_be(fe, stream, dpcm) {
1788 struct snd_soc_pcm_runtime *be = dpcm->be;
1789 struct snd_soc_pcm_stream *cpu_stream;
1790 struct snd_soc_dai *dai;
1793 for_each_rtd_cpu_dais(be, i, dai) {
1795 * Skip CPUs which don't support the current stream
1796 * type. See soc_pcm_init_runtime_hw() for more details
1798 if (!snd_soc_dai_stream_valid(dai, stream))
1801 cpu_stream = snd_soc_dai_get_pcm_stream(dai, stream);
1803 soc_pcm_hw_update_chan(hw, cpu_stream);
1807 * chan min/max cannot be enforced if there are multiple CODEC
1808 * DAIs connected to a single CPU DAI, use CPU DAI's directly
1810 if (be->dai_link->num_codecs == 1) {
1811 struct snd_soc_pcm_stream *codec_stream = snd_soc_dai_get_pcm_stream(
1812 snd_soc_rtd_to_codec(be, 0), stream);
1814 soc_pcm_hw_update_chan(hw, codec_stream);
1819 static void dpcm_runtime_setup_be_rate(struct snd_pcm_substream *substream)
1821 struct snd_soc_pcm_runtime *fe = snd_soc_substream_to_rtd(substream);
1822 struct snd_pcm_runtime *runtime = substream->runtime;
1823 struct snd_pcm_hardware *hw = &runtime->hw;
1824 struct snd_soc_dpcm *dpcm;
1825 int stream = substream->stream;
1827 if (!fe->dai_link->dpcm_merged_rate)
1831 * It returns merged BE codec channel;
1832 * if FE want to use it (= dpcm_merged_chan)
1835 for_each_dpcm_be(fe, stream, dpcm) {
1836 struct snd_soc_pcm_runtime *be = dpcm->be;
1837 struct snd_soc_pcm_stream *pcm;
1838 struct snd_soc_dai *dai;
1841 for_each_rtd_dais(be, i, dai) {
1843 * Skip DAIs which don't support the current stream
1844 * type. See soc_pcm_init_runtime_hw() for more details
1846 if (!snd_soc_dai_stream_valid(dai, stream))
1849 pcm = snd_soc_dai_get_pcm_stream(dai, stream);
1851 soc_pcm_hw_update_rate(hw, pcm);
1856 static int dpcm_apply_symmetry(struct snd_pcm_substream *fe_substream,
1859 struct snd_soc_dpcm *dpcm;
1860 struct snd_soc_pcm_runtime *fe = snd_soc_substream_to_rtd(fe_substream);
1861 struct snd_soc_dai *fe_cpu_dai;
1865 /* apply symmetry for FE */
1866 soc_pcm_update_symmetry(fe_substream);
1868 for_each_rtd_cpu_dais (fe, i, fe_cpu_dai) {
1869 /* Symmetry only applies if we've got an active stream. */
1870 err = soc_pcm_apply_symmetry(fe_substream, fe_cpu_dai);
1875 /* apply symmetry for BE */
1876 for_each_dpcm_be(fe, stream, dpcm) {
1877 struct snd_soc_pcm_runtime *be = dpcm->be;
1878 struct snd_pcm_substream *be_substream =
1879 snd_soc_dpcm_get_substream(be, stream);
1880 struct snd_soc_pcm_runtime *rtd;
1881 struct snd_soc_dai *dai;
1883 /* A backend may not have the requested substream */
1887 rtd = snd_soc_substream_to_rtd(be_substream);
1888 if (rtd->dai_link->be_hw_params_fixup)
1891 soc_pcm_update_symmetry(be_substream);
1893 /* Symmetry only applies if we've got an active stream. */
1894 for_each_rtd_dais(rtd, i, dai) {
1895 err = soc_pcm_apply_symmetry(fe_substream, dai);
1901 return soc_pcm_ret(fe, err);
1904 static int dpcm_fe_dai_startup(struct snd_pcm_substream *fe_substream)
1906 struct snd_soc_pcm_runtime *fe = snd_soc_substream_to_rtd(fe_substream);
1907 int stream = fe_substream->stream, ret = 0;
1909 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE);
1911 ret = dpcm_be_dai_startup(fe, stream);
1915 dev_dbg(fe->dev, "ASoC: open FE %s\n", fe->dai_link->name);
1917 /* start the DAI frontend */
1918 ret = __soc_pcm_open(fe, fe_substream);
1922 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_OPEN;
1924 dpcm_runtime_setup_fe(fe_substream);
1926 dpcm_runtime_setup_be_format(fe_substream);
1927 dpcm_runtime_setup_be_chan(fe_substream);
1928 dpcm_runtime_setup_be_rate(fe_substream);
1930 ret = dpcm_apply_symmetry(fe_substream, stream);
1934 dpcm_be_dai_startup_unwind(fe, stream);
1936 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
1938 return soc_pcm_ret(fe, ret);
1941 static int dpcm_fe_dai_shutdown(struct snd_pcm_substream *substream)
1943 struct snd_soc_pcm_runtime *fe = snd_soc_substream_to_rtd(substream);
1944 int stream = substream->stream;
1946 snd_soc_dpcm_mutex_assert_held(fe);
1948 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE);
1950 /* shutdown the BEs */
1951 dpcm_be_dai_shutdown(fe, stream);
1953 dev_dbg(fe->dev, "ASoC: close FE %s\n", fe->dai_link->name);
1955 /* now shutdown the frontend */
1956 __soc_pcm_close(fe, substream);
1958 /* run the stream stop event */
1959 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_STOP);
1961 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
1962 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
1966 void dpcm_be_dai_hw_free(struct snd_soc_pcm_runtime *fe, int stream)
1968 struct snd_soc_dpcm *dpcm;
1970 /* only hw_params backends that are either sinks or sources
1971 * to this frontend DAI */
1972 for_each_dpcm_be(fe, stream, dpcm) {
1974 struct snd_soc_pcm_runtime *be = dpcm->be;
1975 struct snd_pcm_substream *be_substream =
1976 snd_soc_dpcm_get_substream(be, stream);
1978 /* is this op for this BE ? */
1979 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1982 /* only free hw when no longer used - check all FEs */
1983 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
1986 /* do not free hw if this BE is used by other FE */
1987 if (be->dpcm[stream].users > 1)
1990 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
1991 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PREPARE) &&
1992 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE) &&
1993 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PAUSED) &&
1994 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP) &&
1995 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_SUSPEND))
1998 dev_dbg(be->dev, "ASoC: hw_free BE %s\n",
1999 be->dai_link->name);
2001 __soc_pcm_hw_free(be, be_substream);
2003 be->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_FREE;
2007 static int dpcm_fe_dai_hw_free(struct snd_pcm_substream *substream)
2009 struct snd_soc_pcm_runtime *fe = snd_soc_substream_to_rtd(substream);
2010 int stream = substream->stream;
2012 snd_soc_dpcm_mutex_lock(fe);
2013 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE);
2015 dev_dbg(fe->dev, "ASoC: hw_free FE %s\n", fe->dai_link->name);
2017 /* call hw_free on the frontend */
2018 soc_pcm_hw_clean(fe, substream, 0);
2020 /* only hw_params backends that are either sinks or sources
2021 * to this frontend DAI */
2022 dpcm_be_dai_hw_free(fe, stream);
2024 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_FREE;
2025 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
2027 snd_soc_dpcm_mutex_unlock(fe);
2031 int dpcm_be_dai_hw_params(struct snd_soc_pcm_runtime *fe, int stream)
2033 struct snd_soc_pcm_runtime *be;
2034 struct snd_pcm_substream *be_substream;
2035 struct snd_soc_dpcm *dpcm;
2038 for_each_dpcm_be(fe, stream, dpcm) {
2039 struct snd_pcm_hw_params hw_params;
2042 be_substream = snd_soc_dpcm_get_substream(be, stream);
2044 /* is this op for this BE ? */
2045 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
2048 /* copy params for each dpcm */
2049 memcpy(&hw_params, &fe->dpcm[stream].hw_params,
2050 sizeof(struct snd_pcm_hw_params));
2052 /* perform any hw_params fixups */
2053 ret = snd_soc_link_be_hw_params_fixup(be, &hw_params);
2057 /* copy the fixed-up hw params for BE dai */
2058 memcpy(&be->dpcm[stream].hw_params, &hw_params,
2059 sizeof(struct snd_pcm_hw_params));
2061 /* only allow hw_params() if no connected FEs are running */
2062 if (!snd_soc_dpcm_can_be_params(fe, be, stream))
2065 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN) &&
2066 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
2067 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE))
2070 dev_dbg(be->dev, "ASoC: hw_params BE %s\n",
2071 be->dai_link->name);
2073 ret = __soc_pcm_hw_params(be, be_substream, &hw_params);
2077 be->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_PARAMS;
2082 dev_dbg(fe->dev, "ASoC: %s() failed at %s (%d)\n",
2083 __func__, be->dai_link->name, ret);
2085 /* disable any enabled and non active backends */
2086 for_each_dpcm_be_rollback(fe, stream, dpcm) {
2088 be_substream = snd_soc_dpcm_get_substream(be, stream);
2090 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
2093 /* only allow hw_free() if no connected FEs are running */
2094 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
2097 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN) &&
2098 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
2099 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE) &&
2100 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP))
2103 __soc_pcm_hw_free(be, be_substream);
2109 static int dpcm_fe_dai_hw_params(struct snd_pcm_substream *substream,
2110 struct snd_pcm_hw_params *params)
2112 struct snd_soc_pcm_runtime *fe = snd_soc_substream_to_rtd(substream);
2113 int ret, stream = substream->stream;
2115 snd_soc_dpcm_mutex_lock(fe);
2116 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE);
2118 memcpy(&fe->dpcm[stream].hw_params, params,
2119 sizeof(struct snd_pcm_hw_params));
2120 ret = dpcm_be_dai_hw_params(fe, stream);
2124 dev_dbg(fe->dev, "ASoC: hw_params FE %s rate %d chan %x fmt %d\n",
2125 fe->dai_link->name, params_rate(params),
2126 params_channels(params), params_format(params));
2128 /* call hw_params on the frontend */
2129 ret = __soc_pcm_hw_params(fe, substream, params);
2131 dpcm_be_dai_hw_free(fe, stream);
2133 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_PARAMS;
2136 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
2137 snd_soc_dpcm_mutex_unlock(fe);
2139 return soc_pcm_ret(fe, ret);
2142 int dpcm_be_dai_trigger(struct snd_soc_pcm_runtime *fe, int stream,
2145 struct snd_soc_pcm_runtime *be;
2146 bool pause_stop_transition;
2147 struct snd_soc_dpcm *dpcm;
2148 unsigned long flags;
2151 for_each_dpcm_be(fe, stream, dpcm) {
2152 struct snd_pcm_substream *be_substream;
2155 be_substream = snd_soc_dpcm_get_substream(be, stream);
2157 snd_soc_dpcm_stream_lock_irqsave_nested(be, stream, flags);
2159 /* is this op for this BE ? */
2160 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
2163 dev_dbg(be->dev, "ASoC: trigger BE %s cmd %d\n",
2164 be->dai_link->name, cmd);
2167 case SNDRV_PCM_TRIGGER_START:
2168 if (!be->dpcm[stream].be_start &&
2169 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PREPARE) &&
2170 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP) &&
2171 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PAUSED))
2174 be->dpcm[stream].be_start++;
2175 if (be->dpcm[stream].be_start != 1)
2178 if (be->dpcm[stream].state == SND_SOC_DPCM_STATE_PAUSED)
2179 ret = soc_pcm_trigger(be_substream,
2180 SNDRV_PCM_TRIGGER_PAUSE_RELEASE);
2182 ret = soc_pcm_trigger(be_substream,
2183 SNDRV_PCM_TRIGGER_START);
2185 be->dpcm[stream].be_start--;
2189 be->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
2191 case SNDRV_PCM_TRIGGER_RESUME:
2192 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_SUSPEND))
2195 be->dpcm[stream].be_start++;
2196 if (be->dpcm[stream].be_start != 1)
2199 ret = soc_pcm_trigger(be_substream, cmd);
2201 be->dpcm[stream].be_start--;
2205 be->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
2207 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
2208 if (!be->dpcm[stream].be_start &&
2209 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START) &&
2210 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PAUSED))
2213 fe->dpcm[stream].fe_pause = false;
2214 be->dpcm[stream].be_pause--;
2216 be->dpcm[stream].be_start++;
2217 if (be->dpcm[stream].be_start != 1)
2220 ret = soc_pcm_trigger(be_substream, cmd);
2222 be->dpcm[stream].be_start--;
2226 be->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
2228 case SNDRV_PCM_TRIGGER_STOP:
2229 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_START) &&
2230 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PAUSED))
2233 if (be->dpcm[stream].state == SND_SOC_DPCM_STATE_START)
2234 be->dpcm[stream].be_start--;
2236 if (be->dpcm[stream].be_start != 0)
2239 pause_stop_transition = false;
2240 if (fe->dpcm[stream].fe_pause) {
2241 pause_stop_transition = true;
2242 fe->dpcm[stream].fe_pause = false;
2243 be->dpcm[stream].be_pause--;
2246 if (be->dpcm[stream].be_pause != 0)
2247 ret = soc_pcm_trigger(be_substream, SNDRV_PCM_TRIGGER_PAUSE_PUSH);
2249 ret = soc_pcm_trigger(be_substream, SNDRV_PCM_TRIGGER_STOP);
2252 if (be->dpcm[stream].state == SND_SOC_DPCM_STATE_START)
2253 be->dpcm[stream].be_start++;
2254 if (pause_stop_transition) {
2255 fe->dpcm[stream].fe_pause = true;
2256 be->dpcm[stream].be_pause++;
2261 if (be->dpcm[stream].be_pause != 0)
2262 be->dpcm[stream].state = SND_SOC_DPCM_STATE_PAUSED;
2264 be->dpcm[stream].state = SND_SOC_DPCM_STATE_STOP;
2267 case SNDRV_PCM_TRIGGER_SUSPEND:
2268 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START)
2271 be->dpcm[stream].be_start--;
2272 if (be->dpcm[stream].be_start != 0)
2275 ret = soc_pcm_trigger(be_substream, cmd);
2277 be->dpcm[stream].be_start++;
2281 be->dpcm[stream].state = SND_SOC_DPCM_STATE_SUSPEND;
2283 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
2284 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START)
2287 fe->dpcm[stream].fe_pause = true;
2288 be->dpcm[stream].be_pause++;
2290 be->dpcm[stream].be_start--;
2291 if (be->dpcm[stream].be_start != 0)
2294 ret = soc_pcm_trigger(be_substream, cmd);
2296 be->dpcm[stream].be_start++;
2300 be->dpcm[stream].state = SND_SOC_DPCM_STATE_PAUSED;
2304 snd_soc_dpcm_stream_unlock_irqrestore(be, stream, flags);
2308 return soc_pcm_ret(fe, ret);
2310 EXPORT_SYMBOL_GPL(dpcm_be_dai_trigger);
2312 static int dpcm_dai_trigger_fe_be(struct snd_pcm_substream *substream,
2313 int cmd, bool fe_first)
2315 struct snd_soc_pcm_runtime *fe = snd_soc_substream_to_rtd(substream);
2318 /* call trigger on the frontend before the backend. */
2320 dev_dbg(fe->dev, "ASoC: pre trigger FE %s cmd %d\n",
2321 fe->dai_link->name, cmd);
2323 ret = soc_pcm_trigger(substream, cmd);
2327 ret = dpcm_be_dai_trigger(fe, substream->stream, cmd);
2331 /* call trigger on the frontend after the backend. */
2332 ret = dpcm_be_dai_trigger(fe, substream->stream, cmd);
2336 dev_dbg(fe->dev, "ASoC: post trigger FE %s cmd %d\n",
2337 fe->dai_link->name, cmd);
2339 ret = soc_pcm_trigger(substream, cmd);
2344 static int dpcm_fe_dai_do_trigger(struct snd_pcm_substream *substream, int cmd)
2346 struct snd_soc_pcm_runtime *fe = snd_soc_substream_to_rtd(substream);
2347 int stream = substream->stream;
2349 enum snd_soc_dpcm_trigger trigger = fe->dai_link->trigger[stream];
2351 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_FE;
2354 case SND_SOC_DPCM_TRIGGER_PRE:
2356 case SNDRV_PCM_TRIGGER_START:
2357 case SNDRV_PCM_TRIGGER_RESUME:
2358 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
2359 case SNDRV_PCM_TRIGGER_DRAIN:
2360 ret = dpcm_dai_trigger_fe_be(substream, cmd, true);
2362 case SNDRV_PCM_TRIGGER_STOP:
2363 case SNDRV_PCM_TRIGGER_SUSPEND:
2364 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
2365 ret = dpcm_dai_trigger_fe_be(substream, cmd, false);
2372 case SND_SOC_DPCM_TRIGGER_POST:
2374 case SNDRV_PCM_TRIGGER_START:
2375 case SNDRV_PCM_TRIGGER_RESUME:
2376 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
2377 case SNDRV_PCM_TRIGGER_DRAIN:
2378 ret = dpcm_dai_trigger_fe_be(substream, cmd, false);
2380 case SNDRV_PCM_TRIGGER_STOP:
2381 case SNDRV_PCM_TRIGGER_SUSPEND:
2382 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
2383 ret = dpcm_dai_trigger_fe_be(substream, cmd, true);
2390 case SND_SOC_DPCM_TRIGGER_BESPOKE:
2391 /* bespoke trigger() - handles both FE and BEs */
2393 dev_dbg(fe->dev, "ASoC: bespoke trigger FE %s cmd %d\n",
2394 fe->dai_link->name, cmd);
2396 ret = snd_soc_pcm_dai_bespoke_trigger(substream, cmd);
2399 dev_err(fe->dev, "ASoC: invalid trigger cmd %d for %s\n", cmd,
2400 fe->dai_link->name);
2406 dev_err(fe->dev, "ASoC: trigger FE cmd: %d failed: %d\n",
2412 case SNDRV_PCM_TRIGGER_START:
2413 case SNDRV_PCM_TRIGGER_RESUME:
2414 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
2415 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
2417 case SNDRV_PCM_TRIGGER_STOP:
2418 case SNDRV_PCM_TRIGGER_SUSPEND:
2419 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_STOP;
2421 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
2422 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_PAUSED;
2427 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO;
2431 static int dpcm_fe_dai_trigger(struct snd_pcm_substream *substream, int cmd)
2433 struct snd_soc_pcm_runtime *fe = snd_soc_substream_to_rtd(substream);
2434 int stream = substream->stream;
2436 /* if FE's runtime_update is already set, we're in race;
2437 * process this trigger later at exit
2439 if (fe->dpcm[stream].runtime_update != SND_SOC_DPCM_UPDATE_NO) {
2440 fe->dpcm[stream].trigger_pending = cmd + 1;
2441 return 0; /* delayed, assuming it's successful */
2444 /* we're alone, let's trigger */
2445 return dpcm_fe_dai_do_trigger(substream, cmd);
2448 int dpcm_be_dai_prepare(struct snd_soc_pcm_runtime *fe, int stream)
2450 struct snd_soc_dpcm *dpcm;
2453 for_each_dpcm_be(fe, stream, dpcm) {
2455 struct snd_soc_pcm_runtime *be = dpcm->be;
2456 struct snd_pcm_substream *be_substream =
2457 snd_soc_dpcm_get_substream(be, stream);
2459 /* is this op for this BE ? */
2460 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
2463 if (!snd_soc_dpcm_can_be_prepared(fe, be, stream))
2466 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
2467 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP) &&
2468 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_SUSPEND) &&
2469 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PAUSED))
2472 dev_dbg(be->dev, "ASoC: prepare BE %s\n",
2473 be->dai_link->name);
2475 ret = __soc_pcm_prepare(be, be_substream);
2479 be->dpcm[stream].state = SND_SOC_DPCM_STATE_PREPARE;
2482 return soc_pcm_ret(fe, ret);
2485 static int dpcm_fe_dai_prepare(struct snd_pcm_substream *substream)
2487 struct snd_soc_pcm_runtime *fe = snd_soc_substream_to_rtd(substream);
2488 int stream = substream->stream, ret = 0;
2490 snd_soc_dpcm_mutex_lock(fe);
2492 dev_dbg(fe->dev, "ASoC: prepare FE %s\n", fe->dai_link->name);
2494 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE);
2496 /* there is no point preparing this FE if there are no BEs */
2497 if (list_empty(&fe->dpcm[stream].be_clients)) {
2498 /* dev_err_once() for visibility, dev_dbg() for debugging UCM profiles */
2499 dev_err_once(fe->dev, "ASoC: no backend DAIs enabled for %s, possibly missing ALSA mixer-based routing or UCM profile\n",
2500 fe->dai_link->name);
2501 dev_dbg(fe->dev, "ASoC: no backend DAIs enabled for %s\n",
2502 fe->dai_link->name);
2507 ret = dpcm_be_dai_prepare(fe, stream);
2511 /* call prepare on the frontend */
2512 ret = __soc_pcm_prepare(fe, substream);
2516 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_PREPARE;
2519 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
2520 snd_soc_dpcm_mutex_unlock(fe);
2522 return soc_pcm_ret(fe, ret);
2525 static int dpcm_run_update_shutdown(struct snd_soc_pcm_runtime *fe, int stream)
2527 struct snd_pcm_substream *substream =
2528 snd_soc_dpcm_get_substream(fe, stream);
2529 enum snd_soc_dpcm_trigger trigger = fe->dai_link->trigger[stream];
2532 dev_dbg(fe->dev, "ASoC: runtime %s close on FE %s\n",
2533 stream ? "capture" : "playback", fe->dai_link->name);
2535 if (trigger == SND_SOC_DPCM_TRIGGER_BESPOKE) {
2536 /* call bespoke trigger - FE takes care of all BE triggers */
2537 dev_dbg(fe->dev, "ASoC: bespoke trigger FE %s cmd stop\n",
2538 fe->dai_link->name);
2540 err = snd_soc_pcm_dai_bespoke_trigger(substream, SNDRV_PCM_TRIGGER_STOP);
2542 dev_dbg(fe->dev, "ASoC: trigger FE %s cmd stop\n",
2543 fe->dai_link->name);
2545 err = dpcm_be_dai_trigger(fe, stream, SNDRV_PCM_TRIGGER_STOP);
2548 dpcm_be_dai_hw_free(fe, stream);
2550 dpcm_be_dai_shutdown(fe, stream);
2552 /* run the stream event for each BE */
2553 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_NOP);
2555 return soc_pcm_ret(fe, err);
2558 static int dpcm_run_update_startup(struct snd_soc_pcm_runtime *fe, int stream)
2560 struct snd_pcm_substream *substream =
2561 snd_soc_dpcm_get_substream(fe, stream);
2562 struct snd_soc_dpcm *dpcm;
2563 enum snd_soc_dpcm_trigger trigger = fe->dai_link->trigger[stream];
2566 dev_dbg(fe->dev, "ASoC: runtime %s open on FE %s\n",
2567 stream ? "capture" : "playback", fe->dai_link->name);
2569 /* Only start the BE if the FE is ready */
2570 if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_HW_FREE ||
2571 fe->dpcm[stream].state == SND_SOC_DPCM_STATE_CLOSE) {
2572 dev_err(fe->dev, "ASoC: FE %s is not ready %d\n",
2573 fe->dai_link->name, fe->dpcm[stream].state);
2578 /* startup must always be called for new BEs */
2579 ret = dpcm_be_dai_startup(fe, stream);
2583 /* keep going if FE state is > open */
2584 if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_OPEN)
2587 ret = dpcm_be_dai_hw_params(fe, stream);
2591 /* keep going if FE state is > hw_params */
2592 if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_HW_PARAMS)
2595 ret = dpcm_be_dai_prepare(fe, stream);
2599 /* run the stream event for each BE */
2600 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_NOP);
2602 /* keep going if FE state is > prepare */
2603 if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_PREPARE ||
2604 fe->dpcm[stream].state == SND_SOC_DPCM_STATE_STOP)
2607 if (trigger == SND_SOC_DPCM_TRIGGER_BESPOKE) {
2608 /* call trigger on the frontend - FE takes care of all BE triggers */
2609 dev_dbg(fe->dev, "ASoC: bespoke trigger FE %s cmd start\n",
2610 fe->dai_link->name);
2612 ret = snd_soc_pcm_dai_bespoke_trigger(substream, SNDRV_PCM_TRIGGER_START);
2616 dev_dbg(fe->dev, "ASoC: trigger FE %s cmd start\n",
2617 fe->dai_link->name);
2619 ret = dpcm_be_dai_trigger(fe, stream,
2620 SNDRV_PCM_TRIGGER_START);
2628 dpcm_be_dai_hw_free(fe, stream);
2630 dpcm_be_dai_shutdown(fe, stream);
2632 /* disconnect any pending BEs */
2633 for_each_dpcm_be(fe, stream, dpcm) {
2634 struct snd_soc_pcm_runtime *be = dpcm->be;
2636 /* is this op for this BE ? */
2637 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
2640 if (be->dpcm[stream].state == SND_SOC_DPCM_STATE_CLOSE ||
2641 be->dpcm[stream].state == SND_SOC_DPCM_STATE_NEW)
2642 dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE;
2645 return soc_pcm_ret(fe, ret);
2648 static int soc_dpcm_fe_runtime_update(struct snd_soc_pcm_runtime *fe, int new)
2650 struct snd_soc_dapm_widget_list *list;
2654 if (!fe->dai_link->dynamic)
2657 if (fe->dai_link->num_cpus > 1) {
2659 "%s doesn't support Multi CPU yet\n", __func__);
2663 /* only check active links */
2664 if (!snd_soc_dai_active(snd_soc_rtd_to_cpu(fe, 0)))
2667 /* DAPM sync will call this to update DSP paths */
2668 dev_dbg(fe->dev, "ASoC: DPCM %s runtime update for FE %s\n",
2669 new ? "new" : "old", fe->dai_link->name);
2671 for_each_pcm_streams(stream) {
2673 /* skip if FE doesn't have playback/capture capability */
2674 if (!snd_soc_dai_stream_valid(snd_soc_rtd_to_cpu(fe, 0), stream) ||
2675 !snd_soc_dai_stream_valid(snd_soc_rtd_to_codec(fe, 0), stream))
2678 /* skip if FE isn't currently playing/capturing */
2679 if (!snd_soc_dai_stream_active(snd_soc_rtd_to_cpu(fe, 0), stream) ||
2680 !snd_soc_dai_stream_active(snd_soc_rtd_to_codec(fe, 0), stream))
2683 paths = dpcm_path_get(fe, stream, &list);
2687 /* update any playback/capture paths */
2688 count = dpcm_process_paths(fe, stream, &list, new);
2690 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_BE);
2692 dpcm_run_update_startup(fe, stream);
2694 dpcm_run_update_shutdown(fe, stream);
2695 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
2697 dpcm_clear_pending_state(fe, stream);
2698 dpcm_be_disconnect(fe, stream);
2701 dpcm_path_put(&list);
2707 /* Called by DAPM mixer/mux changes to update audio routing between PCMs and
2710 int snd_soc_dpcm_runtime_update(struct snd_soc_card *card)
2712 struct snd_soc_pcm_runtime *fe;
2715 snd_soc_dpcm_mutex_lock(card);
2716 /* shutdown all old paths first */
2717 for_each_card_rtds(card, fe) {
2718 ret = soc_dpcm_fe_runtime_update(fe, 0);
2723 /* bring new paths up */
2724 for_each_card_rtds(card, fe) {
2725 ret = soc_dpcm_fe_runtime_update(fe, 1);
2731 snd_soc_dpcm_mutex_unlock(card);
2734 EXPORT_SYMBOL_GPL(snd_soc_dpcm_runtime_update);
2736 static void dpcm_fe_dai_cleanup(struct snd_pcm_substream *fe_substream)
2738 struct snd_soc_pcm_runtime *fe = snd_soc_substream_to_rtd(fe_substream);
2739 struct snd_soc_dpcm *dpcm;
2740 int stream = fe_substream->stream;
2742 snd_soc_dpcm_mutex_assert_held(fe);
2744 /* mark FE's links ready to prune */
2745 for_each_dpcm_be(fe, stream, dpcm)
2746 dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE;
2748 dpcm_be_disconnect(fe, stream);
2751 static int dpcm_fe_dai_close(struct snd_pcm_substream *fe_substream)
2753 struct snd_soc_pcm_runtime *fe = snd_soc_substream_to_rtd(fe_substream);
2756 snd_soc_dpcm_mutex_lock(fe);
2757 ret = dpcm_fe_dai_shutdown(fe_substream);
2759 dpcm_fe_dai_cleanup(fe_substream);
2761 snd_soc_dpcm_mutex_unlock(fe);
2765 static int dpcm_fe_dai_open(struct snd_pcm_substream *fe_substream)
2767 struct snd_soc_pcm_runtime *fe = snd_soc_substream_to_rtd(fe_substream);
2768 struct snd_soc_dapm_widget_list *list;
2770 int stream = fe_substream->stream;
2772 snd_soc_dpcm_mutex_lock(fe);
2774 ret = dpcm_path_get(fe, stream, &list);
2778 /* calculate valid and active FE <-> BE dpcms */
2779 dpcm_process_paths(fe, stream, &list, 1);
2781 ret = dpcm_fe_dai_startup(fe_substream);
2783 dpcm_fe_dai_cleanup(fe_substream);
2785 dpcm_clear_pending_state(fe, stream);
2786 dpcm_path_put(&list);
2788 snd_soc_dpcm_mutex_unlock(fe);
2792 static int soc_get_playback_capture(struct snd_soc_pcm_runtime *rtd,
2793 int *playback, int *capture)
2795 struct snd_soc_dai_link *dai_link = rtd->dai_link;
2796 struct snd_soc_dai *cpu_dai;
2797 int has_playback = 0;
2798 int has_capture = 0;
2801 if (dai_link->dynamic && dai_link->num_cpus > 1) {
2802 dev_err(rtd->dev, "DPCM doesn't support Multi CPU for Front-Ends yet\n");
2806 if (dai_link->dynamic || dai_link->no_pcm) {
2809 if (dai_link->dpcm_playback) {
2810 stream = SNDRV_PCM_STREAM_PLAYBACK;
2812 for_each_rtd_cpu_dais(rtd, i, cpu_dai) {
2813 if (snd_soc_dai_stream_valid(cpu_dai, stream)) {
2818 if (!has_playback) {
2819 dev_err(rtd->card->dev,
2820 "No CPU DAIs support playback for stream %s\n",
2821 dai_link->stream_name);
2825 if (dai_link->dpcm_capture) {
2826 stream = SNDRV_PCM_STREAM_CAPTURE;
2828 for_each_rtd_cpu_dais(rtd, i, cpu_dai) {
2829 if (snd_soc_dai_stream_valid(cpu_dai, stream)) {
2836 dev_err(rtd->card->dev,
2837 "No CPU DAIs support capture for stream %s\n",
2838 dai_link->stream_name);
2843 struct snd_soc_dai_link_ch_map *ch_maps;
2844 struct snd_soc_dai *codec_dai;
2846 /* Adapt stream for codec2codec links */
2847 int cpu_capture = snd_soc_get_stream_cpu(dai_link, SNDRV_PCM_STREAM_CAPTURE);
2848 int cpu_playback = snd_soc_get_stream_cpu(dai_link, SNDRV_PCM_STREAM_PLAYBACK);
2852 * soc.h :: [dai_link->ch_maps Image sample]
2854 for_each_rtd_ch_maps(rtd, i, ch_maps) {
2855 cpu_dai = snd_soc_rtd_to_cpu(rtd, ch_maps->cpu);
2856 codec_dai = snd_soc_rtd_to_codec(rtd, ch_maps->codec);
2858 if (snd_soc_dai_stream_valid(codec_dai, SNDRV_PCM_STREAM_PLAYBACK) &&
2859 snd_soc_dai_stream_valid(cpu_dai, cpu_playback))
2861 if (snd_soc_dai_stream_valid(codec_dai, SNDRV_PCM_STREAM_CAPTURE) &&
2862 snd_soc_dai_stream_valid(cpu_dai, cpu_capture))
2867 if (dai_link->playback_only)
2870 if (dai_link->capture_only)
2873 if (!has_playback && !has_capture) {
2874 dev_err(rtd->dev, "substream %s has no playback, no capture\n",
2875 dai_link->stream_name);
2880 *playback = has_playback;
2881 *capture = has_capture;
2886 static int soc_create_pcm(struct snd_pcm **pcm,
2887 struct snd_soc_pcm_runtime *rtd,
2888 int playback, int capture, int num)
2893 /* create the PCM */
2894 if (rtd->dai_link->c2c_params) {
2895 snprintf(new_name, sizeof(new_name), "codec2codec(%s)",
2896 rtd->dai_link->stream_name);
2898 ret = snd_pcm_new_internal(rtd->card->snd_card, new_name, num,
2899 playback, capture, pcm);
2900 } else if (rtd->dai_link->no_pcm) {
2901 snprintf(new_name, sizeof(new_name), "(%s)",
2902 rtd->dai_link->stream_name);
2904 ret = snd_pcm_new_internal(rtd->card->snd_card, new_name, num,
2905 playback, capture, pcm);
2907 if (rtd->dai_link->dynamic)
2908 snprintf(new_name, sizeof(new_name), "%s (*)",
2909 rtd->dai_link->stream_name);
2911 snprintf(new_name, sizeof(new_name), "%s %s-%d",
2912 rtd->dai_link->stream_name,
2913 soc_codec_dai_name(rtd), num);
2915 ret = snd_pcm_new(rtd->card->snd_card, new_name, num, playback,
2919 dev_err(rtd->card->dev, "ASoC: can't create pcm %s for dailink %s: %d\n",
2920 new_name, rtd->dai_link->name, ret);
2923 dev_dbg(rtd->card->dev, "ASoC: registered pcm #%d %s\n",num, new_name);
2928 /* create a new pcm */
2929 int soc_new_pcm(struct snd_soc_pcm_runtime *rtd, int num)
2931 struct snd_soc_component *component;
2932 struct snd_pcm *pcm;
2933 int ret = 0, playback = 0, capture = 0;
2936 ret = soc_get_playback_capture(rtd, &playback, &capture);
2940 ret = soc_create_pcm(&pcm, rtd, playback, capture, num);
2944 /* DAPM dai link stream work */
2946 * Currently nothing to do for c2c links
2947 * Since c2c links are internal nodes in the DAPM graph and
2948 * don't interface with the outside world or application layer
2949 * we don't have to do any special handling on close.
2951 if (!rtd->dai_link->c2c_params)
2952 rtd->close_delayed_work_func = snd_soc_close_delayed_work;
2955 pcm->nonatomic = rtd->dai_link->nonatomic;
2956 pcm->private_data = rtd;
2957 pcm->no_device_suspend = true;
2959 if (rtd->dai_link->no_pcm || rtd->dai_link->c2c_params) {
2961 pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream->private_data = rtd;
2963 pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream->private_data = rtd;
2967 /* ASoC PCM operations */
2968 if (rtd->dai_link->dynamic) {
2969 rtd->ops.open = dpcm_fe_dai_open;
2970 rtd->ops.hw_params = dpcm_fe_dai_hw_params;
2971 rtd->ops.prepare = dpcm_fe_dai_prepare;
2972 rtd->ops.trigger = dpcm_fe_dai_trigger;
2973 rtd->ops.hw_free = dpcm_fe_dai_hw_free;
2974 rtd->ops.close = dpcm_fe_dai_close;
2975 rtd->ops.pointer = soc_pcm_pointer;
2977 rtd->ops.open = soc_pcm_open;
2978 rtd->ops.hw_params = soc_pcm_hw_params;
2979 rtd->ops.prepare = soc_pcm_prepare;
2980 rtd->ops.trigger = soc_pcm_trigger;
2981 rtd->ops.hw_free = soc_pcm_hw_free;
2982 rtd->ops.close = soc_pcm_close;
2983 rtd->ops.pointer = soc_pcm_pointer;
2986 for_each_rtd_components(rtd, i, component) {
2987 const struct snd_soc_component_driver *drv = component->driver;
2990 rtd->ops.ioctl = snd_soc_pcm_component_ioctl;
2992 rtd->ops.sync_stop = snd_soc_pcm_component_sync_stop;
2994 rtd->ops.copy = snd_soc_pcm_component_copy;
2996 rtd->ops.page = snd_soc_pcm_component_page;
2998 rtd->ops.mmap = snd_soc_pcm_component_mmap;
3000 rtd->ops.ack = snd_soc_pcm_component_ack;
3004 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &rtd->ops);
3007 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &rtd->ops);
3009 ret = snd_soc_pcm_component_new(rtd);
3013 dev_dbg(rtd->card->dev, "%s <-> %s mapping ok\n",
3014 soc_codec_dai_name(rtd), soc_cpu_dai_name(rtd));
3018 /* is the current PCM operation for this FE ? */
3019 int snd_soc_dpcm_fe_can_update(struct snd_soc_pcm_runtime *fe, int stream)
3021 if (fe->dpcm[stream].runtime_update == SND_SOC_DPCM_UPDATE_FE)
3025 EXPORT_SYMBOL_GPL(snd_soc_dpcm_fe_can_update);
3027 /* is the current PCM operation for this BE ? */
3028 int snd_soc_dpcm_be_can_update(struct snd_soc_pcm_runtime *fe,
3029 struct snd_soc_pcm_runtime *be, int stream)
3031 if ((fe->dpcm[stream].runtime_update == SND_SOC_DPCM_UPDATE_FE) ||
3032 ((fe->dpcm[stream].runtime_update == SND_SOC_DPCM_UPDATE_BE) &&
3033 be->dpcm[stream].runtime_update))
3037 EXPORT_SYMBOL_GPL(snd_soc_dpcm_be_can_update);
3039 /* get the substream for this BE */
3040 struct snd_pcm_substream *
3041 snd_soc_dpcm_get_substream(struct snd_soc_pcm_runtime *be, int stream)
3043 return be->pcm->streams[stream].substream;
3045 EXPORT_SYMBOL_GPL(snd_soc_dpcm_get_substream);
3047 static int snd_soc_dpcm_check_state(struct snd_soc_pcm_runtime *fe,
3048 struct snd_soc_pcm_runtime *be,
3050 const enum snd_soc_dpcm_state *states,
3053 struct snd_soc_dpcm *dpcm;
3058 for_each_dpcm_fe(be, stream, dpcm) {
3063 state = dpcm->fe->dpcm[stream].state;
3064 for (i = 0; i < num_states; i++) {
3065 if (state == states[i]) {
3072 /* it's safe to do this BE DAI */
3077 * We can only hw_free, stop, pause or suspend a BE DAI if any of it's FE
3078 * are not running, paused or suspended for the specified stream direction.
3080 int snd_soc_dpcm_can_be_free_stop(struct snd_soc_pcm_runtime *fe,
3081 struct snd_soc_pcm_runtime *be, int stream)
3083 const enum snd_soc_dpcm_state state[] = {
3084 SND_SOC_DPCM_STATE_START,
3085 SND_SOC_DPCM_STATE_PAUSED,
3086 SND_SOC_DPCM_STATE_SUSPEND,
3089 return snd_soc_dpcm_check_state(fe, be, stream, state, ARRAY_SIZE(state));
3091 EXPORT_SYMBOL_GPL(snd_soc_dpcm_can_be_free_stop);
3094 * We can only change hw params a BE DAI if any of it's FE are not prepared,
3095 * running, paused or suspended for the specified stream direction.
3097 int snd_soc_dpcm_can_be_params(struct snd_soc_pcm_runtime *fe,
3098 struct snd_soc_pcm_runtime *be, int stream)
3100 const enum snd_soc_dpcm_state state[] = {
3101 SND_SOC_DPCM_STATE_START,
3102 SND_SOC_DPCM_STATE_PAUSED,
3103 SND_SOC_DPCM_STATE_SUSPEND,
3104 SND_SOC_DPCM_STATE_PREPARE,
3107 return snd_soc_dpcm_check_state(fe, be, stream, state, ARRAY_SIZE(state));
3109 EXPORT_SYMBOL_GPL(snd_soc_dpcm_can_be_params);
3112 * We can only prepare a BE DAI if any of it's FE are not prepared,
3113 * running or paused for the specified stream direction.
3115 int snd_soc_dpcm_can_be_prepared(struct snd_soc_pcm_runtime *fe,
3116 struct snd_soc_pcm_runtime *be, int stream)
3118 const enum snd_soc_dpcm_state state[] = {
3119 SND_SOC_DPCM_STATE_START,
3120 SND_SOC_DPCM_STATE_PAUSED,
3121 SND_SOC_DPCM_STATE_PREPARE,
3124 return snd_soc_dpcm_check_state(fe, be, stream, state, ARRAY_SIZE(state));
3126 EXPORT_SYMBOL_GPL(snd_soc_dpcm_can_be_prepared);