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.
10 // Authors: Liam Girdwood <lrg@ti.com>
11 // Mark Brown <broonie@opensource.wolfsonmicro.com>
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_dai *dai;
298 snd_soc_dpcm_mutex_assert_held(rtd);
300 for_each_rtd_dais(rtd, i, dai)
301 snd_soc_dai_action(dai, stream, action);
303 EXPORT_SYMBOL_GPL(snd_soc_runtime_action);
306 * snd_soc_runtime_ignore_pmdown_time() - Check whether to ignore the power down delay
307 * @rtd: The ASoC PCM runtime that should be checked.
309 * This function checks whether the power down delay should be ignored for a
310 * specific PCM runtime. Returns true if the delay is 0, if it the DAI link has
311 * been configured to ignore the delay, or if none of the components benefits
312 * from having the delay.
314 bool snd_soc_runtime_ignore_pmdown_time(struct snd_soc_pcm_runtime *rtd)
316 struct snd_soc_component *component;
320 if (!rtd->pmdown_time || rtd->dai_link->ignore_pmdown_time)
323 for_each_rtd_components(rtd, i, component)
324 ignore &= !component->driver->use_pmdown_time;
330 * snd_soc_set_runtime_hwparams - set the runtime hardware parameters
331 * @substream: the pcm substream
332 * @hw: the hardware parameters
334 * Sets the substream runtime hardware parameters.
336 int snd_soc_set_runtime_hwparams(struct snd_pcm_substream *substream,
337 const struct snd_pcm_hardware *hw)
339 substream->runtime->hw = *hw;
343 EXPORT_SYMBOL_GPL(snd_soc_set_runtime_hwparams);
345 /* DPCM stream event, send event to FE and all active BEs. */
346 int dpcm_dapm_stream_event(struct snd_soc_pcm_runtime *fe, int dir,
349 struct snd_soc_dpcm *dpcm;
351 snd_soc_dpcm_mutex_assert_held(fe);
353 for_each_dpcm_be(fe, dir, dpcm) {
355 struct snd_soc_pcm_runtime *be = dpcm->be;
357 dev_dbg(be->dev, "ASoC: BE %s event %d dir %d\n",
358 be->dai_link->name, event, dir);
360 if ((event == SND_SOC_DAPM_STREAM_STOP) &&
361 (be->dpcm[dir].users >= 1))
364 snd_soc_dapm_stream_event(be, dir, event);
367 snd_soc_dapm_stream_event(fe, dir, event);
372 static void soc_pcm_set_dai_params(struct snd_soc_dai *dai,
373 struct snd_pcm_hw_params *params)
376 dai->rate = params_rate(params);
377 dai->channels = params_channels(params);
378 dai->sample_bits = snd_pcm_format_physical_width(params_format(params));
382 dai->sample_bits = 0;
386 static int soc_pcm_apply_symmetry(struct snd_pcm_substream *substream,
387 struct snd_soc_dai *soc_dai)
389 struct snd_soc_pcm_runtime *rtd = snd_soc_substream_to_rtd(substream);
392 if (!snd_soc_dai_active(soc_dai))
395 #define __soc_pcm_apply_symmetry(name, NAME) \
396 if (soc_dai->name && (soc_dai->driver->symmetric_##name || \
397 rtd->dai_link->symmetric_##name)) { \
398 dev_dbg(soc_dai->dev, "ASoC: Symmetry forces %s to %d\n",\
399 #name, soc_dai->name); \
401 ret = snd_pcm_hw_constraint_single(substream->runtime, \
402 SNDRV_PCM_HW_PARAM_##NAME,\
405 dev_err(soc_dai->dev, \
406 "ASoC: Unable to apply %s constraint: %d\n",\
412 __soc_pcm_apply_symmetry(rate, RATE);
413 __soc_pcm_apply_symmetry(channels, CHANNELS);
414 __soc_pcm_apply_symmetry(sample_bits, SAMPLE_BITS);
419 static int soc_pcm_params_symmetry(struct snd_pcm_substream *substream,
420 struct snd_pcm_hw_params *params)
422 struct snd_soc_pcm_runtime *rtd = snd_soc_substream_to_rtd(substream);
423 struct snd_soc_dai d;
424 struct snd_soc_dai *dai;
425 struct snd_soc_dai *cpu_dai;
426 unsigned int symmetry, i;
429 soc_pcm_set_dai_params(&d, params);
431 #define __soc_pcm_params_symmetry(xxx) \
432 symmetry = rtd->dai_link->symmetric_##xxx; \
433 for_each_rtd_dais(rtd, i, dai) \
434 symmetry |= dai->driver->symmetric_##xxx; \
437 for_each_rtd_cpu_dais(rtd, i, cpu_dai) \
438 if (!snd_soc_dai_is_dummy(cpu_dai) && \
439 cpu_dai->xxx && cpu_dai->xxx != d.xxx) { \
440 dev_err(rtd->dev, "ASoC: unmatched %s symmetry: %s:%d - %s:%d\n", \
441 #xxx, cpu_dai->name, cpu_dai->xxx, d.name, d.xxx); \
445 /* reject unmatched parameters when applying symmetry */
446 __soc_pcm_params_symmetry(rate);
447 __soc_pcm_params_symmetry(channels);
448 __soc_pcm_params_symmetry(sample_bits);
453 static void soc_pcm_update_symmetry(struct snd_pcm_substream *substream)
455 struct snd_soc_pcm_runtime *rtd = snd_soc_substream_to_rtd(substream);
456 struct snd_soc_dai_link *link = rtd->dai_link;
457 struct snd_soc_dai *dai;
458 unsigned int symmetry, i;
460 symmetry = link->symmetric_rate ||
461 link->symmetric_channels ||
462 link->symmetric_sample_bits;
464 for_each_rtd_dais(rtd, i, dai)
465 symmetry = symmetry ||
466 dai->driver->symmetric_rate ||
467 dai->driver->symmetric_channels ||
468 dai->driver->symmetric_sample_bits;
471 substream->runtime->hw.info |= SNDRV_PCM_INFO_JOINT_DUPLEX;
474 static void soc_pcm_set_msb(struct snd_pcm_substream *substream, int bits)
476 struct snd_soc_pcm_runtime *rtd = snd_soc_substream_to_rtd(substream);
482 ret = snd_pcm_hw_constraint_msbits(substream->runtime, 0, 0, bits);
484 dev_warn(rtd->dev, "ASoC: Failed to set MSB %d: %d\n",
488 static void soc_pcm_apply_msb(struct snd_pcm_substream *substream)
490 struct snd_soc_pcm_runtime *rtd = snd_soc_substream_to_rtd(substream);
491 struct snd_soc_dai *cpu_dai;
492 struct snd_soc_dai *codec_dai;
493 int stream = substream->stream;
495 unsigned int bits = 0, cpu_bits = 0;
497 for_each_rtd_codec_dais(rtd, i, codec_dai) {
498 struct snd_soc_pcm_stream *pcm_codec = snd_soc_dai_get_pcm_stream(codec_dai, stream);
500 if (pcm_codec->sig_bits == 0) {
504 bits = max(pcm_codec->sig_bits, bits);
507 for_each_rtd_cpu_dais(rtd, i, cpu_dai) {
508 struct snd_soc_pcm_stream *pcm_cpu = snd_soc_dai_get_pcm_stream(cpu_dai, stream);
510 if (pcm_cpu->sig_bits == 0) {
514 cpu_bits = max(pcm_cpu->sig_bits, cpu_bits);
517 soc_pcm_set_msb(substream, bits);
518 soc_pcm_set_msb(substream, cpu_bits);
521 static void soc_pcm_hw_init(struct snd_pcm_hardware *hw)
523 hw->rates = UINT_MAX;
525 hw->rate_max = UINT_MAX;
526 hw->channels_min = 0;
527 hw->channels_max = UINT_MAX;
528 hw->formats = ULLONG_MAX;
531 static void soc_pcm_hw_update_rate(struct snd_pcm_hardware *hw,
532 struct snd_soc_pcm_stream *p)
534 hw->rates = snd_pcm_rate_mask_intersect(hw->rates, p->rates);
536 /* setup hw->rate_min/max via hw->rates first */
537 snd_pcm_hw_limit_rates(hw);
539 /* update hw->rate_min/max by snd_soc_pcm_stream */
540 hw->rate_min = max(hw->rate_min, p->rate_min);
541 hw->rate_max = min_not_zero(hw->rate_max, p->rate_max);
544 static void soc_pcm_hw_update_chan(struct snd_pcm_hardware *hw,
545 struct snd_soc_pcm_stream *p)
547 hw->channels_min = max(hw->channels_min, p->channels_min);
548 hw->channels_max = min(hw->channels_max, p->channels_max);
551 static void soc_pcm_hw_update_format(struct snd_pcm_hardware *hw,
552 struct snd_soc_pcm_stream *p)
554 hw->formats &= p->formats;
558 * snd_soc_runtime_calc_hw() - Calculate hw limits for a PCM stream
559 * @rtd: ASoC PCM runtime
560 * @hw: PCM hardware parameters (output)
561 * @stream: Direction of the PCM stream
563 * Calculates the subset of stream parameters supported by all DAIs
564 * associated with the PCM stream.
566 int snd_soc_runtime_calc_hw(struct snd_soc_pcm_runtime *rtd,
567 struct snd_pcm_hardware *hw, int stream)
569 struct snd_soc_dai *codec_dai;
570 struct snd_soc_dai *cpu_dai;
571 struct snd_soc_pcm_stream *codec_stream;
572 struct snd_soc_pcm_stream *cpu_stream;
573 unsigned int cpu_chan_min = 0, cpu_chan_max = UINT_MAX;
578 /* first calculate min/max only for CPUs in the DAI link */
579 for_each_rtd_cpu_dais(rtd, i, cpu_dai) {
582 * Skip CPUs which don't support the current stream type.
583 * Otherwise, since the rate, channel, and format values will
584 * zero in that case, we would have no usable settings left,
585 * causing the resulting setup to fail.
587 if (!snd_soc_dai_stream_valid(cpu_dai, stream))
590 cpu_stream = snd_soc_dai_get_pcm_stream(cpu_dai, stream);
592 soc_pcm_hw_update_chan(hw, cpu_stream);
593 soc_pcm_hw_update_rate(hw, cpu_stream);
594 soc_pcm_hw_update_format(hw, cpu_stream);
596 cpu_chan_min = hw->channels_min;
597 cpu_chan_max = hw->channels_max;
599 /* second calculate min/max only for CODECs in the DAI link */
600 for_each_rtd_codec_dais(rtd, i, codec_dai) {
603 * Skip CODECs which don't support the current stream type.
604 * Otherwise, since the rate, channel, and format values will
605 * zero in that case, we would have no usable settings left,
606 * causing the resulting setup to fail.
608 if (!snd_soc_dai_stream_valid(codec_dai, stream))
611 codec_stream = snd_soc_dai_get_pcm_stream(codec_dai, stream);
613 soc_pcm_hw_update_chan(hw, codec_stream);
614 soc_pcm_hw_update_rate(hw, codec_stream);
615 soc_pcm_hw_update_format(hw, codec_stream);
618 /* Verify both a valid CPU DAI and a valid CODEC DAI were found */
619 if (!hw->channels_min)
623 * chan min/max cannot be enforced if there are multiple CODEC DAIs
624 * connected to CPU DAI(s), use CPU DAI's directly and let
625 * channel allocation be fixed up later
627 if (rtd->dai_link->num_codecs > 1) {
628 hw->channels_min = cpu_chan_min;
629 hw->channels_max = cpu_chan_max;
634 EXPORT_SYMBOL_GPL(snd_soc_runtime_calc_hw);
636 static void soc_pcm_init_runtime_hw(struct snd_pcm_substream *substream)
638 struct snd_pcm_hardware *hw = &substream->runtime->hw;
639 struct snd_soc_pcm_runtime *rtd = snd_soc_substream_to_rtd(substream);
640 u64 formats = hw->formats;
643 * At least one CPU and one CODEC should match. Otherwise, we should
644 * have bailed out on a higher level, since there would be no CPU or
645 * CODEC to support the transfer direction in that case.
647 snd_soc_runtime_calc_hw(rtd, hw, substream->stream);
650 hw->formats &= formats;
653 static int soc_pcm_components_open(struct snd_pcm_substream *substream)
655 struct snd_soc_pcm_runtime *rtd = snd_soc_substream_to_rtd(substream);
656 struct snd_soc_component *component;
659 for_each_rtd_components(rtd, i, component) {
660 ret = snd_soc_component_module_get_when_open(component, substream);
664 ret = snd_soc_component_open(component, substream);
672 static int soc_pcm_components_close(struct snd_pcm_substream *substream,
675 struct snd_soc_pcm_runtime *rtd = snd_soc_substream_to_rtd(substream);
676 struct snd_soc_component *component;
679 for_each_rtd_components(rtd, i, component) {
680 int r = snd_soc_component_close(component, substream, rollback);
682 ret = r; /* use last ret */
684 snd_soc_component_module_put_when_close(component, substream, rollback);
690 static int soc_pcm_clean(struct snd_soc_pcm_runtime *rtd,
691 struct snd_pcm_substream *substream, int rollback)
693 struct snd_soc_component *component;
694 struct snd_soc_dai *dai;
697 snd_soc_dpcm_mutex_assert_held(rtd);
700 snd_soc_runtime_deactivate(rtd, substream->stream);
702 /* Make sure DAI parameters cleared if the DAI becomes inactive */
703 for_each_rtd_dais(rtd, i, dai) {
704 if (snd_soc_dai_active(dai) == 0 &&
705 (dai->rate || dai->channels || dai->sample_bits))
706 soc_pcm_set_dai_params(dai, NULL);
708 if (snd_soc_dai_stream_active(dai, substream->stream) == 0) {
709 if (dai->driver->ops && !dai->driver->ops->mute_unmute_on_trigger)
710 snd_soc_dai_digital_mute(dai, 1, substream->stream);
715 for_each_rtd_dais(rtd, i, dai)
716 snd_soc_dai_shutdown(dai, substream, rollback);
718 snd_soc_link_shutdown(substream, rollback);
720 soc_pcm_components_close(substream, rollback);
722 snd_soc_pcm_component_pm_runtime_put(rtd, substream, rollback);
724 for_each_rtd_components(rtd, i, component)
725 if (!snd_soc_component_active(component))
726 pinctrl_pm_select_sleep_state(component->dev);
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
736 static int __soc_pcm_close(struct snd_soc_pcm_runtime *rtd,
737 struct snd_pcm_substream *substream)
739 return soc_pcm_clean(rtd, substream, 0);
742 /* PCM close ops for non-DPCM streams */
743 static int soc_pcm_close(struct snd_pcm_substream *substream)
745 struct snd_soc_pcm_runtime *rtd = snd_soc_substream_to_rtd(substream);
747 snd_soc_dpcm_mutex_lock(rtd);
748 __soc_pcm_close(rtd, substream);
749 snd_soc_dpcm_mutex_unlock(rtd);
753 static int soc_hw_sanity_check(struct snd_pcm_substream *substream)
755 struct snd_soc_pcm_runtime *rtd = snd_soc_substream_to_rtd(substream);
756 struct snd_pcm_hardware *hw = &substream->runtime->hw;
757 const char *name_cpu = soc_cpu_dai_name(rtd);
758 const char *name_codec = soc_codec_dai_name(rtd);
760 struct device *dev = rtd->dev;
770 err_msg = "channels";
771 if (!hw->channels_min || !hw->channels_max ||
772 hw->channels_min > hw->channels_max)
775 dev_dbg(dev, "ASoC: %s <-> %s info:\n", name_codec,
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,
780 dev_dbg(dev, "ASoC: rate min %d max %d\n", hw->rate_min,
786 dev_err(dev, "ASoC: %s <-> %s No matching %s\n",
787 name_codec, name_cpu, err_msg);
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.
796 static int __soc_pcm_open(struct snd_soc_pcm_runtime *rtd,
797 struct snd_pcm_substream *substream)
799 struct snd_soc_component *component;
800 struct snd_soc_dai *dai;
803 snd_soc_dpcm_mutex_assert_held(rtd);
805 for_each_rtd_components(rtd, i, component)
806 pinctrl_pm_select_default_state(component->dev);
808 ret = snd_soc_pcm_component_pm_runtime_get(rtd, substream);
812 ret = soc_pcm_components_open(substream);
816 ret = snd_soc_link_startup(substream);
820 /* startup the audio subsystem */
821 for_each_rtd_dais(rtd, i, dai) {
822 ret = snd_soc_dai_startup(dai, substream);
827 /* Dynamic PCM DAI links compat checks use dynamic capabilities */
828 if (rtd->dai_link->dynamic || rtd->dai_link->no_pcm)
831 /* Check that the codec and cpu DAIs are compatible */
832 soc_pcm_init_runtime_hw(substream);
834 soc_pcm_update_symmetry(substream);
836 ret = soc_hw_sanity_check(substream);
840 soc_pcm_apply_msb(substream);
842 /* Symmetry only applies if we've already got an active stream. */
843 for_each_rtd_dais(rtd, i, dai) {
844 ret = soc_pcm_apply_symmetry(substream, dai);
849 snd_soc_runtime_activate(rtd, substream->stream);
853 soc_pcm_clean(rtd, substream, 1);
855 return soc_pcm_ret(rtd, ret);
858 /* PCM open ops for non-DPCM streams */
859 static int soc_pcm_open(struct snd_pcm_substream *substream)
861 struct snd_soc_pcm_runtime *rtd = snd_soc_substream_to_rtd(substream);
864 snd_soc_dpcm_mutex_lock(rtd);
865 ret = __soc_pcm_open(rtd, substream);
866 snd_soc_dpcm_mutex_unlock(rtd);
871 * Called by ALSA when the PCM substream is prepared, can set format, sample
872 * rate, etc. This function is non atomic and can be called multiple times,
873 * it can refer to the runtime info.
875 static int __soc_pcm_prepare(struct snd_soc_pcm_runtime *rtd,
876 struct snd_pcm_substream *substream)
878 struct snd_soc_dai *dai;
881 snd_soc_dpcm_mutex_assert_held(rtd);
883 ret = snd_soc_link_prepare(substream);
887 ret = snd_soc_pcm_component_prepare(substream);
891 ret = snd_soc_pcm_dai_prepare(substream);
895 /* cancel any delayed stream shutdown that is pending */
896 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
899 cancel_delayed_work(&rtd->delayed_work);
902 snd_soc_dapm_stream_event(rtd, substream->stream,
903 SND_SOC_DAPM_STREAM_START);
905 for_each_rtd_dais(rtd, i, dai) {
906 if (dai->driver->ops && !dai->driver->ops->mute_unmute_on_trigger)
907 snd_soc_dai_digital_mute(dai, 0, substream->stream);
911 return soc_pcm_ret(rtd, ret);
914 /* PCM prepare ops for non-DPCM streams */
915 static int soc_pcm_prepare(struct snd_pcm_substream *substream)
917 struct snd_soc_pcm_runtime *rtd = snd_soc_substream_to_rtd(substream);
920 snd_soc_dpcm_mutex_lock(rtd);
921 ret = __soc_pcm_prepare(rtd, substream);
922 snd_soc_dpcm_mutex_unlock(rtd);
926 static void soc_pcm_codec_params_fixup(struct snd_pcm_hw_params *params,
929 struct snd_interval *interval;
930 int channels = hweight_long(mask);
932 interval = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
933 interval->min = channels;
934 interval->max = channels;
937 static int soc_pcm_hw_clean(struct snd_soc_pcm_runtime *rtd,
938 struct snd_pcm_substream *substream, int rollback)
940 struct snd_soc_dai *dai;
943 snd_soc_dpcm_mutex_assert_held(rtd);
945 /* clear the corresponding DAIs parameters when going to be inactive */
946 for_each_rtd_dais(rtd, i, dai) {
947 if (snd_soc_dai_active(dai) == 1)
948 soc_pcm_set_dai_params(dai, NULL);
950 if (snd_soc_dai_stream_active(dai, substream->stream) == 1)
951 snd_soc_dai_digital_mute(dai, 1, substream->stream);
954 /* run the stream event */
955 snd_soc_dapm_stream_stop(rtd, substream->stream);
957 /* free any machine hw params */
958 snd_soc_link_hw_free(substream, rollback);
960 /* free any component resources */
961 snd_soc_pcm_component_hw_free(substream, rollback);
963 /* now free hw params for the DAIs */
964 for_each_rtd_dais(rtd, i, dai)
965 if (snd_soc_dai_stream_valid(dai, substream->stream))
966 snd_soc_dai_hw_free(dai, substream, rollback);
972 * Frees resources allocated by hw_params, can be called multiple times
974 static int __soc_pcm_hw_free(struct snd_soc_pcm_runtime *rtd,
975 struct snd_pcm_substream *substream)
977 return soc_pcm_hw_clean(rtd, substream, 0);
980 /* hw_free PCM ops for non-DPCM streams */
981 static int soc_pcm_hw_free(struct snd_pcm_substream *substream)
983 struct snd_soc_pcm_runtime *rtd = snd_soc_substream_to_rtd(substream);
986 snd_soc_dpcm_mutex_lock(rtd);
987 ret = __soc_pcm_hw_free(rtd, substream);
988 snd_soc_dpcm_mutex_unlock(rtd);
993 * Called by ALSA when the hardware params are set by application. This
994 * function can also be called multiple times and can allocate buffers
995 * (using snd_pcm_lib_* ). It's non-atomic.
997 static int __soc_pcm_hw_params(struct snd_soc_pcm_runtime *rtd,
998 struct snd_pcm_substream *substream,
999 struct snd_pcm_hw_params *params)
1001 struct snd_soc_dai *cpu_dai;
1002 struct snd_soc_dai *codec_dai;
1003 struct snd_pcm_hw_params tmp_params;
1006 snd_soc_dpcm_mutex_assert_held(rtd);
1008 ret = soc_pcm_params_symmetry(substream, params);
1012 ret = snd_soc_link_hw_params(substream, params);
1016 for_each_rtd_codec_dais(rtd, i, codec_dai) {
1017 unsigned int tdm_mask = snd_soc_dai_tdm_mask_get(codec_dai, substream->stream);
1020 * Skip CODECs which don't support the current stream type,
1021 * the idea being that if a CODEC is not used for the currently
1022 * set up transfer direction, it should not need to be
1023 * configured, especially since the configuration used might
1024 * not even be supported by that CODEC. There may be cases
1025 * however where a CODEC needs to be set up although it is
1026 * actually not being used for the transfer, e.g. if a
1027 * capture-only CODEC is acting as an LRCLK and/or BCLK master
1028 * for the DAI link including a playback-only CODEC.
1029 * If this becomes necessary, we will have to augment the
1030 * machine driver setup with information on how to act, so
1031 * we can do the right thing here.
1033 if (!snd_soc_dai_stream_valid(codec_dai, substream->stream))
1036 /* copy params for each codec */
1037 tmp_params = *params;
1039 /* fixup params based on TDM slot masks */
1041 soc_pcm_codec_params_fixup(&tmp_params, tdm_mask);
1043 ret = snd_soc_dai_hw_params(codec_dai, substream,
1048 soc_pcm_set_dai_params(codec_dai, &tmp_params);
1049 snd_soc_dapm_update_dai(substream, &tmp_params, codec_dai);
1052 for_each_rtd_cpu_dais(rtd, i, cpu_dai) {
1053 unsigned int ch_mask = 0;
1057 * Skip CPUs which don't support the current stream
1058 * type. See soc_pcm_init_runtime_hw() for more details
1060 if (!snd_soc_dai_stream_valid(cpu_dai, substream->stream))
1063 /* copy params for each cpu */
1064 tmp_params = *params;
1066 if (!rtd->dai_link->codec_ch_maps)
1069 * construct cpu channel mask by combining ch_mask of each
1070 * codec which maps to the cpu.
1072 for_each_rtd_codec_dais(rtd, j, codec_dai) {
1073 if (rtd->dai_link->codec_ch_maps[j].connected_cpu_id == i)
1074 ch_mask |= rtd->dai_link->codec_ch_maps[j].ch_mask;
1077 /* fixup cpu channel number */
1079 soc_pcm_codec_params_fixup(&tmp_params, ch_mask);
1082 ret = snd_soc_dai_hw_params(cpu_dai, substream, &tmp_params);
1086 /* store the parameters for each DAI */
1087 soc_pcm_set_dai_params(cpu_dai, &tmp_params);
1088 snd_soc_dapm_update_dai(substream, &tmp_params, cpu_dai);
1091 ret = snd_soc_pcm_component_hw_params(substream, params);
1094 soc_pcm_hw_clean(rtd, substream, 1);
1096 return soc_pcm_ret(rtd, ret);
1099 /* hw_params PCM ops for non-DPCM streams */
1100 static int soc_pcm_hw_params(struct snd_pcm_substream *substream,
1101 struct snd_pcm_hw_params *params)
1103 struct snd_soc_pcm_runtime *rtd = snd_soc_substream_to_rtd(substream);
1106 snd_soc_dpcm_mutex_lock(rtd);
1107 ret = __soc_pcm_hw_params(rtd, substream, params);
1108 snd_soc_dpcm_mutex_unlock(rtd);
1112 #define TRIGGER_MAX 3
1113 static int (* const trigger[][TRIGGER_MAX])(struct snd_pcm_substream *substream, int cmd, int rollback) = {
1114 [SND_SOC_TRIGGER_ORDER_DEFAULT] = {
1115 snd_soc_link_trigger,
1116 snd_soc_pcm_component_trigger,
1117 snd_soc_pcm_dai_trigger,
1119 [SND_SOC_TRIGGER_ORDER_LDC] = {
1120 snd_soc_link_trigger,
1121 snd_soc_pcm_dai_trigger,
1122 snd_soc_pcm_component_trigger,
1126 static int soc_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
1128 struct snd_soc_pcm_runtime *rtd = snd_soc_substream_to_rtd(substream);
1129 struct snd_soc_component *component;
1130 int ret = 0, r = 0, i;
1132 int start = 0, stop = 0;
1135 * select START/STOP sequence
1137 for_each_rtd_components(rtd, i, component) {
1138 if (component->driver->trigger_start)
1139 start = component->driver->trigger_start;
1140 if (component->driver->trigger_stop)
1141 stop = component->driver->trigger_stop;
1143 if (rtd->dai_link->trigger_start)
1144 start = rtd->dai_link->trigger_start;
1145 if (rtd->dai_link->trigger_stop)
1146 stop = rtd->dai_link->trigger_stop;
1148 if (start < 0 || start >= SND_SOC_TRIGGER_ORDER_MAX ||
1149 stop < 0 || stop >= SND_SOC_TRIGGER_ORDER_MAX)
1156 case SNDRV_PCM_TRIGGER_START:
1157 case SNDRV_PCM_TRIGGER_RESUME:
1158 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
1159 for (i = 0; i < TRIGGER_MAX; i++) {
1160 r = trigger[start][i](substream, cmd, 0);
1167 * Rollback if START failed
1168 * find correspond STOP command
1174 case SNDRV_PCM_TRIGGER_START:
1175 cmd = SNDRV_PCM_TRIGGER_STOP;
1177 case SNDRV_PCM_TRIGGER_RESUME:
1178 cmd = SNDRV_PCM_TRIGGER_SUSPEND;
1180 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
1181 cmd = SNDRV_PCM_TRIGGER_PAUSE_PUSH;
1190 case SNDRV_PCM_TRIGGER_STOP:
1191 case SNDRV_PCM_TRIGGER_SUSPEND:
1192 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
1193 for (i = TRIGGER_MAX; i > 0; i--) {
1194 r = trigger[stop][i - 1](substream, cmd, rollback);
1204 * soc level wrapper for pointer callback
1205 * If cpu_dai, codec_dai, component driver has the delay callback, then
1206 * the runtime->delay will be updated via snd_soc_pcm_component/dai_delay().
1208 static snd_pcm_uframes_t soc_pcm_pointer(struct snd_pcm_substream *substream)
1210 struct snd_pcm_runtime *runtime = substream->runtime;
1211 snd_pcm_uframes_t offset = 0;
1212 snd_pcm_sframes_t codec_delay = 0;
1213 snd_pcm_sframes_t cpu_delay = 0;
1215 offset = snd_soc_pcm_component_pointer(substream);
1217 /* should be called *after* snd_soc_pcm_component_pointer() */
1218 snd_soc_pcm_dai_delay(substream, &cpu_delay, &codec_delay);
1219 snd_soc_pcm_component_delay(substream, &cpu_delay, &codec_delay);
1221 runtime->delay = cpu_delay + codec_delay;
1226 /* connect a FE and BE */
1227 static int dpcm_be_connect(struct snd_soc_pcm_runtime *fe,
1228 struct snd_soc_pcm_runtime *be, int stream)
1230 struct snd_pcm_substream *fe_substream;
1231 struct snd_pcm_substream *be_substream;
1232 struct snd_soc_dpcm *dpcm;
1234 snd_soc_dpcm_mutex_assert_held(fe);
1236 /* only add new dpcms */
1237 for_each_dpcm_be(fe, stream, dpcm) {
1238 if (dpcm->be == be && dpcm->fe == fe)
1242 fe_substream = snd_soc_dpcm_get_substream(fe, stream);
1243 be_substream = snd_soc_dpcm_get_substream(be, stream);
1245 if (!fe_substream->pcm->nonatomic && be_substream->pcm->nonatomic) {
1246 dev_err(be->dev, "%s: FE is atomic but BE is nonatomic, invalid configuration\n",
1250 if (fe_substream->pcm->nonatomic && !be_substream->pcm->nonatomic) {
1251 dev_dbg(be->dev, "FE is nonatomic but BE is not, forcing BE as nonatomic\n");
1252 be_substream->pcm->nonatomic = 1;
1255 dpcm = kzalloc(sizeof(struct snd_soc_dpcm), GFP_KERNEL);
1261 dpcm->state = SND_SOC_DPCM_LINK_STATE_NEW;
1262 snd_soc_dpcm_stream_lock_irq(fe, stream);
1263 list_add(&dpcm->list_be, &fe->dpcm[stream].be_clients);
1264 list_add(&dpcm->list_fe, &be->dpcm[stream].fe_clients);
1265 snd_soc_dpcm_stream_unlock_irq(fe, stream);
1267 dev_dbg(fe->dev, "connected new DPCM %s path %s %s %s\n",
1268 stream ? "capture" : "playback", fe->dai_link->name,
1269 stream ? "<-" : "->", be->dai_link->name);
1271 dpcm_create_debugfs_state(dpcm, stream);
1276 /* reparent a BE onto another FE */
1277 static void dpcm_be_reparent(struct snd_soc_pcm_runtime *fe,
1278 struct snd_soc_pcm_runtime *be, int stream)
1280 struct snd_soc_dpcm *dpcm;
1281 struct snd_pcm_substream *fe_substream, *be_substream;
1283 /* reparent if BE is connected to other FEs */
1284 if (!be->dpcm[stream].users)
1287 be_substream = snd_soc_dpcm_get_substream(be, stream);
1291 for_each_dpcm_fe(be, stream, dpcm) {
1295 dev_dbg(fe->dev, "reparent %s path %s %s %s\n",
1296 stream ? "capture" : "playback",
1297 dpcm->fe->dai_link->name,
1298 stream ? "<-" : "->", dpcm->be->dai_link->name);
1300 fe_substream = snd_soc_dpcm_get_substream(dpcm->fe, stream);
1301 be_substream->runtime = fe_substream->runtime;
1306 /* disconnect a BE and FE */
1307 void dpcm_be_disconnect(struct snd_soc_pcm_runtime *fe, int stream)
1309 struct snd_soc_dpcm *dpcm, *d;
1310 LIST_HEAD(deleted_dpcms);
1312 snd_soc_dpcm_mutex_assert_held(fe);
1314 snd_soc_dpcm_stream_lock_irq(fe, stream);
1315 for_each_dpcm_be_safe(fe, stream, dpcm, d) {
1316 dev_dbg(fe->dev, "ASoC: BE %s disconnect check for %s\n",
1317 stream ? "capture" : "playback",
1318 dpcm->be->dai_link->name);
1320 if (dpcm->state != SND_SOC_DPCM_LINK_STATE_FREE)
1323 dev_dbg(fe->dev, "freed DSP %s path %s %s %s\n",
1324 stream ? "capture" : "playback", fe->dai_link->name,
1325 stream ? "<-" : "->", dpcm->be->dai_link->name);
1327 /* BEs still alive need new FE */
1328 dpcm_be_reparent(fe, dpcm->be, stream);
1330 list_del(&dpcm->list_be);
1331 list_move(&dpcm->list_fe, &deleted_dpcms);
1333 snd_soc_dpcm_stream_unlock_irq(fe, stream);
1335 while (!list_empty(&deleted_dpcms)) {
1336 dpcm = list_first_entry(&deleted_dpcms, struct snd_soc_dpcm,
1338 list_del(&dpcm->list_fe);
1339 dpcm_remove_debugfs_state(dpcm);
1344 /* get BE for DAI widget and stream */
1345 static struct snd_soc_pcm_runtime *dpcm_get_be(struct snd_soc_card *card,
1346 struct snd_soc_dapm_widget *widget, int stream)
1348 struct snd_soc_pcm_runtime *be;
1349 struct snd_soc_dapm_widget *w;
1350 struct snd_soc_dai *dai;
1353 dev_dbg(card->dev, "ASoC: find BE for widget %s\n", widget->name);
1355 for_each_card_rtds(card, be) {
1357 if (!be->dai_link->no_pcm)
1360 if (!snd_soc_dpcm_get_substream(be, stream))
1363 for_each_rtd_dais(be, i, dai) {
1364 w = snd_soc_dai_get_widget(dai, stream);
1366 dev_dbg(card->dev, "ASoC: try BE : %s\n",
1367 w ? w->name : "(not set)");
1374 /* Widget provided is not a BE */
1378 int widget_in_list(struct snd_soc_dapm_widget_list *list,
1379 struct snd_soc_dapm_widget *widget)
1381 struct snd_soc_dapm_widget *w;
1384 for_each_dapm_widgets(list, i, w)
1390 EXPORT_SYMBOL_GPL(widget_in_list);
1392 bool dpcm_end_walk_at_be(struct snd_soc_dapm_widget *widget, enum snd_soc_dapm_direction dir)
1394 struct snd_soc_card *card = widget->dapm->card;
1395 struct snd_soc_pcm_runtime *rtd;
1398 /* adjust dir to stream */
1399 if (dir == SND_SOC_DAPM_DIR_OUT)
1400 stream = SNDRV_PCM_STREAM_PLAYBACK;
1402 stream = SNDRV_PCM_STREAM_CAPTURE;
1404 rtd = dpcm_get_be(card, widget, stream);
1410 EXPORT_SYMBOL_GPL(dpcm_end_walk_at_be);
1412 int dpcm_path_get(struct snd_soc_pcm_runtime *fe,
1413 int stream, struct snd_soc_dapm_widget_list **list)
1415 struct snd_soc_dai *cpu_dai = snd_soc_rtd_to_cpu(fe, 0);
1418 if (fe->dai_link->num_cpus > 1) {
1420 "%s doesn't support Multi CPU yet\n", __func__);
1424 /* get number of valid DAI paths and their widgets */
1425 paths = snd_soc_dapm_dai_get_connected_widgets(cpu_dai, stream, list,
1426 fe->card->component_chaining ?
1427 NULL : dpcm_end_walk_at_be);
1430 dev_dbg(fe->dev, "ASoC: found %d audio %s paths\n", paths,
1431 stream ? "capture" : "playback");
1432 else if (paths == 0)
1433 dev_dbg(fe->dev, "ASoC: %s no valid %s path\n", fe->dai_link->name,
1434 stream ? "capture" : "playback");
1439 void dpcm_path_put(struct snd_soc_dapm_widget_list **list)
1441 snd_soc_dapm_dai_free_widgets(list);
1444 static bool dpcm_be_is_active(struct snd_soc_dpcm *dpcm, int stream,
1445 struct snd_soc_dapm_widget_list *list)
1447 struct snd_soc_dai *dai;
1450 /* is there a valid DAI widget for this BE */
1451 for_each_rtd_dais(dpcm->be, i, dai) {
1452 struct snd_soc_dapm_widget *widget = snd_soc_dai_get_widget(dai, stream);
1455 * The BE is pruned only if none of the dai
1456 * widgets are in the active list.
1458 if (widget && widget_in_list(list, widget))
1465 static int dpcm_prune_paths(struct snd_soc_pcm_runtime *fe, int stream,
1466 struct snd_soc_dapm_widget_list **list_)
1468 struct snd_soc_dpcm *dpcm;
1471 /* Destroy any old FE <--> BE connections */
1472 for_each_dpcm_be(fe, stream, dpcm) {
1473 if (dpcm_be_is_active(dpcm, stream, *list_))
1476 dev_dbg(fe->dev, "ASoC: pruning %s BE %s for %s\n",
1477 stream ? "capture" : "playback",
1478 dpcm->be->dai_link->name, fe->dai_link->name);
1479 dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE;
1480 dpcm_set_be_update_state(dpcm->be, stream, SND_SOC_DPCM_UPDATE_BE);
1484 dev_dbg(fe->dev, "ASoC: found %d old BE paths for pruning\n", prune);
1488 static int dpcm_add_paths(struct snd_soc_pcm_runtime *fe, int stream,
1489 struct snd_soc_dapm_widget_list **list_)
1491 struct snd_soc_card *card = fe->card;
1492 struct snd_soc_dapm_widget_list *list = *list_;
1493 struct snd_soc_pcm_runtime *be;
1494 struct snd_soc_dapm_widget *widget;
1495 struct snd_pcm_substream *fe_substream = snd_soc_dpcm_get_substream(fe, stream);
1496 int i, new = 0, err;
1498 /* don't connect if FE is not running */
1499 if (!fe_substream->runtime && !fe->fe_compr)
1502 /* Create any new FE <--> BE connections */
1503 for_each_dapm_widgets(list, i, widget) {
1505 switch (widget->id) {
1506 case snd_soc_dapm_dai_in:
1507 if (stream != SNDRV_PCM_STREAM_PLAYBACK)
1510 case snd_soc_dapm_dai_out:
1511 if (stream != SNDRV_PCM_STREAM_CAPTURE)
1518 /* is there a valid BE rtd for this widget */
1519 be = dpcm_get_be(card, widget, stream);
1521 dev_dbg(fe->dev, "ASoC: no BE found for %s\n",
1527 * Filter for systems with 'component_chaining' enabled.
1528 * This helps to avoid unnecessary re-configuration of an
1529 * already active BE on such systems.
1531 if (fe->card->component_chaining &&
1532 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_NEW) &&
1533 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_CLOSE))
1536 /* newly connected FE and BE */
1537 err = dpcm_be_connect(fe, be, stream);
1539 dev_err(fe->dev, "ASoC: can't connect %s\n",
1542 } else if (err == 0) /* already connected */
1546 dpcm_set_be_update_state(be, stream, SND_SOC_DPCM_UPDATE_BE);
1550 dev_dbg(fe->dev, "ASoC: found %d new BE paths\n", new);
1555 * Find the corresponding BE DAIs that source or sink audio to this
1558 int dpcm_process_paths(struct snd_soc_pcm_runtime *fe,
1559 int stream, struct snd_soc_dapm_widget_list **list, int new)
1562 return dpcm_add_paths(fe, stream, list);
1564 return dpcm_prune_paths(fe, stream, list);
1567 void dpcm_clear_pending_state(struct snd_soc_pcm_runtime *fe, int stream)
1569 struct snd_soc_dpcm *dpcm;
1571 for_each_dpcm_be(fe, stream, dpcm)
1572 dpcm_set_be_update_state(dpcm->be, stream, SND_SOC_DPCM_UPDATE_NO);
1575 void dpcm_be_dai_stop(struct snd_soc_pcm_runtime *fe, int stream,
1576 int do_hw_free, struct snd_soc_dpcm *last)
1578 struct snd_soc_dpcm *dpcm;
1580 /* disable any enabled and non active backends */
1581 for_each_dpcm_be(fe, stream, dpcm) {
1582 struct snd_soc_pcm_runtime *be = dpcm->be;
1583 struct snd_pcm_substream *be_substream =
1584 snd_soc_dpcm_get_substream(be, stream);
1589 /* is this op for this BE ? */
1590 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1593 if (be->dpcm[stream].users == 0) {
1594 dev_err(be->dev, "ASoC: no users %s at close - state %d\n",
1595 stream ? "capture" : "playback",
1596 be->dpcm[stream].state);
1600 if (--be->dpcm[stream].users != 0)
1603 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN) {
1607 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE) {
1608 __soc_pcm_hw_free(be, be_substream);
1609 be->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_FREE;
1613 __soc_pcm_close(be, be_substream);
1614 be_substream->runtime = NULL;
1615 be->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
1619 int dpcm_be_dai_startup(struct snd_soc_pcm_runtime *fe, int stream)
1621 struct snd_pcm_substream *fe_substream = snd_soc_dpcm_get_substream(fe, stream);
1622 struct snd_soc_pcm_runtime *be;
1623 struct snd_soc_dpcm *dpcm;
1626 /* only startup BE DAIs that are either sinks or sources to this FE DAI */
1627 for_each_dpcm_be(fe, stream, dpcm) {
1628 struct snd_pcm_substream *be_substream;
1631 be_substream = snd_soc_dpcm_get_substream(be, stream);
1633 if (!be_substream) {
1634 dev_err(be->dev, "ASoC: no backend %s stream\n",
1635 stream ? "capture" : "playback");
1639 /* is this op for this BE ? */
1640 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1643 /* first time the dpcm is open ? */
1644 if (be->dpcm[stream].users == DPCM_MAX_BE_USERS) {
1645 dev_err(be->dev, "ASoC: too many users %s at open %d\n",
1646 stream ? "capture" : "playback",
1647 be->dpcm[stream].state);
1651 if (be->dpcm[stream].users++ != 0)
1654 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_NEW) &&
1655 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_CLOSE))
1658 dev_dbg(be->dev, "ASoC: open %s BE %s\n",
1659 stream ? "capture" : "playback", be->dai_link->name);
1661 be_substream->runtime = fe_substream->runtime;
1662 err = __soc_pcm_open(be, be_substream);
1664 be->dpcm[stream].users--;
1665 if (be->dpcm[stream].users < 0)
1666 dev_err(be->dev, "ASoC: no users %s at unwind %d\n",
1667 stream ? "capture" : "playback",
1668 be->dpcm[stream].state);
1670 be->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
1673 be->dpcm[stream].be_start = 0;
1674 be->dpcm[stream].state = SND_SOC_DPCM_STATE_OPEN;
1681 dpcm_be_dai_startup_rollback(fe, stream, dpcm);
1683 return soc_pcm_ret(fe, err);
1686 static void dpcm_runtime_setup_fe(struct snd_pcm_substream *substream)
1688 struct snd_soc_pcm_runtime *fe = snd_soc_substream_to_rtd(substream);
1689 struct snd_pcm_runtime *runtime = substream->runtime;
1690 struct snd_pcm_hardware *hw = &runtime->hw;
1691 struct snd_soc_dai *dai;
1692 int stream = substream->stream;
1693 u64 formats = hw->formats;
1696 soc_pcm_hw_init(hw);
1699 hw->formats &= formats;
1701 for_each_rtd_cpu_dais(fe, i, dai) {
1702 struct snd_soc_pcm_stream *cpu_stream;
1705 * Skip CPUs which don't support the current stream
1706 * type. See soc_pcm_init_runtime_hw() for more details
1708 if (!snd_soc_dai_stream_valid(dai, stream))
1711 cpu_stream = snd_soc_dai_get_pcm_stream(dai, stream);
1713 soc_pcm_hw_update_rate(hw, cpu_stream);
1714 soc_pcm_hw_update_chan(hw, cpu_stream);
1715 soc_pcm_hw_update_format(hw, cpu_stream);
1720 static void dpcm_runtime_setup_be_format(struct snd_pcm_substream *substream)
1722 struct snd_soc_pcm_runtime *fe = snd_soc_substream_to_rtd(substream);
1723 struct snd_pcm_runtime *runtime = substream->runtime;
1724 struct snd_pcm_hardware *hw = &runtime->hw;
1725 struct snd_soc_dpcm *dpcm;
1726 struct snd_soc_dai *dai;
1727 int stream = substream->stream;
1729 if (!fe->dai_link->dpcm_merged_format)
1733 * It returns merged BE codec format
1734 * if FE want to use it (= dpcm_merged_format)
1737 for_each_dpcm_be(fe, stream, dpcm) {
1738 struct snd_soc_pcm_runtime *be = dpcm->be;
1739 struct snd_soc_pcm_stream *codec_stream;
1742 for_each_rtd_codec_dais(be, i, dai) {
1744 * Skip CODECs which don't support the current stream
1745 * type. See soc_pcm_init_runtime_hw() for more details
1747 if (!snd_soc_dai_stream_valid(dai, stream))
1750 codec_stream = snd_soc_dai_get_pcm_stream(dai, stream);
1752 soc_pcm_hw_update_format(hw, codec_stream);
1757 static void dpcm_runtime_setup_be_chan(struct snd_pcm_substream *substream)
1759 struct snd_soc_pcm_runtime *fe = snd_soc_substream_to_rtd(substream);
1760 struct snd_pcm_runtime *runtime = substream->runtime;
1761 struct snd_pcm_hardware *hw = &runtime->hw;
1762 struct snd_soc_dpcm *dpcm;
1763 int stream = substream->stream;
1765 if (!fe->dai_link->dpcm_merged_chan)
1769 * It returns merged BE codec channel;
1770 * if FE want to use it (= dpcm_merged_chan)
1773 for_each_dpcm_be(fe, stream, dpcm) {
1774 struct snd_soc_pcm_runtime *be = dpcm->be;
1775 struct snd_soc_pcm_stream *cpu_stream;
1776 struct snd_soc_dai *dai;
1779 for_each_rtd_cpu_dais(be, i, dai) {
1781 * Skip CPUs which don't support the current stream
1782 * type. See soc_pcm_init_runtime_hw() for more details
1784 if (!snd_soc_dai_stream_valid(dai, stream))
1787 cpu_stream = snd_soc_dai_get_pcm_stream(dai, stream);
1789 soc_pcm_hw_update_chan(hw, cpu_stream);
1793 * chan min/max cannot be enforced if there are multiple CODEC
1794 * DAIs connected to a single CPU DAI, use CPU DAI's directly
1796 if (be->dai_link->num_codecs == 1) {
1797 struct snd_soc_pcm_stream *codec_stream = snd_soc_dai_get_pcm_stream(
1798 snd_soc_rtd_to_codec(be, 0), stream);
1800 soc_pcm_hw_update_chan(hw, codec_stream);
1805 static void dpcm_runtime_setup_be_rate(struct snd_pcm_substream *substream)
1807 struct snd_soc_pcm_runtime *fe = snd_soc_substream_to_rtd(substream);
1808 struct snd_pcm_runtime *runtime = substream->runtime;
1809 struct snd_pcm_hardware *hw = &runtime->hw;
1810 struct snd_soc_dpcm *dpcm;
1811 int stream = substream->stream;
1813 if (!fe->dai_link->dpcm_merged_rate)
1817 * It returns merged BE codec channel;
1818 * if FE want to use it (= dpcm_merged_chan)
1821 for_each_dpcm_be(fe, stream, dpcm) {
1822 struct snd_soc_pcm_runtime *be = dpcm->be;
1823 struct snd_soc_pcm_stream *pcm;
1824 struct snd_soc_dai *dai;
1827 for_each_rtd_dais(be, i, dai) {
1829 * Skip DAIs which don't support the current stream
1830 * type. See soc_pcm_init_runtime_hw() for more details
1832 if (!snd_soc_dai_stream_valid(dai, stream))
1835 pcm = snd_soc_dai_get_pcm_stream(dai, stream);
1837 soc_pcm_hw_update_rate(hw, pcm);
1842 static int dpcm_apply_symmetry(struct snd_pcm_substream *fe_substream,
1845 struct snd_soc_dpcm *dpcm;
1846 struct snd_soc_pcm_runtime *fe = snd_soc_substream_to_rtd(fe_substream);
1847 struct snd_soc_dai *fe_cpu_dai;
1851 /* apply symmetry for FE */
1852 soc_pcm_update_symmetry(fe_substream);
1854 for_each_rtd_cpu_dais (fe, i, fe_cpu_dai) {
1855 /* Symmetry only applies if we've got an active stream. */
1856 err = soc_pcm_apply_symmetry(fe_substream, fe_cpu_dai);
1861 /* apply symmetry for BE */
1862 for_each_dpcm_be(fe, stream, dpcm) {
1863 struct snd_soc_pcm_runtime *be = dpcm->be;
1864 struct snd_pcm_substream *be_substream =
1865 snd_soc_dpcm_get_substream(be, stream);
1866 struct snd_soc_pcm_runtime *rtd;
1867 struct snd_soc_dai *dai;
1869 /* A backend may not have the requested substream */
1873 rtd = snd_soc_substream_to_rtd(be_substream);
1874 if (rtd->dai_link->be_hw_params_fixup)
1877 soc_pcm_update_symmetry(be_substream);
1879 /* Symmetry only applies if we've got an active stream. */
1880 for_each_rtd_dais(rtd, i, dai) {
1881 err = soc_pcm_apply_symmetry(fe_substream, dai);
1887 return soc_pcm_ret(fe, err);
1890 static int dpcm_fe_dai_startup(struct snd_pcm_substream *fe_substream)
1892 struct snd_soc_pcm_runtime *fe = snd_soc_substream_to_rtd(fe_substream);
1893 int stream = fe_substream->stream, ret = 0;
1895 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE);
1897 ret = dpcm_be_dai_startup(fe, stream);
1901 dev_dbg(fe->dev, "ASoC: open FE %s\n", fe->dai_link->name);
1903 /* start the DAI frontend */
1904 ret = __soc_pcm_open(fe, fe_substream);
1908 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_OPEN;
1910 dpcm_runtime_setup_fe(fe_substream);
1912 dpcm_runtime_setup_be_format(fe_substream);
1913 dpcm_runtime_setup_be_chan(fe_substream);
1914 dpcm_runtime_setup_be_rate(fe_substream);
1916 ret = dpcm_apply_symmetry(fe_substream, stream);
1920 dpcm_be_dai_startup_unwind(fe, stream);
1922 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
1924 return soc_pcm_ret(fe, ret);
1927 static int dpcm_fe_dai_shutdown(struct snd_pcm_substream *substream)
1929 struct snd_soc_pcm_runtime *fe = snd_soc_substream_to_rtd(substream);
1930 int stream = substream->stream;
1932 snd_soc_dpcm_mutex_assert_held(fe);
1934 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE);
1936 /* shutdown the BEs */
1937 dpcm_be_dai_shutdown(fe, stream);
1939 dev_dbg(fe->dev, "ASoC: close FE %s\n", fe->dai_link->name);
1941 /* now shutdown the frontend */
1942 __soc_pcm_close(fe, substream);
1944 /* run the stream stop event */
1945 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_STOP);
1947 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
1948 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
1952 void dpcm_be_dai_hw_free(struct snd_soc_pcm_runtime *fe, int stream)
1954 struct snd_soc_dpcm *dpcm;
1956 /* only hw_params backends that are either sinks or sources
1957 * to this frontend DAI */
1958 for_each_dpcm_be(fe, stream, dpcm) {
1960 struct snd_soc_pcm_runtime *be = dpcm->be;
1961 struct snd_pcm_substream *be_substream =
1962 snd_soc_dpcm_get_substream(be, stream);
1964 /* is this op for this BE ? */
1965 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1968 /* only free hw when no longer used - check all FEs */
1969 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
1972 /* do not free hw if this BE is used by other FE */
1973 if (be->dpcm[stream].users > 1)
1976 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
1977 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PREPARE) &&
1978 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE) &&
1979 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PAUSED) &&
1980 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP) &&
1981 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_SUSPEND))
1984 dev_dbg(be->dev, "ASoC: hw_free BE %s\n",
1985 be->dai_link->name);
1987 __soc_pcm_hw_free(be, be_substream);
1989 be->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_FREE;
1993 static int dpcm_fe_dai_hw_free(struct snd_pcm_substream *substream)
1995 struct snd_soc_pcm_runtime *fe = snd_soc_substream_to_rtd(substream);
1996 int stream = substream->stream;
1998 snd_soc_dpcm_mutex_lock(fe);
1999 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE);
2001 dev_dbg(fe->dev, "ASoC: hw_free FE %s\n", fe->dai_link->name);
2003 /* call hw_free on the frontend */
2004 soc_pcm_hw_clean(fe, substream, 0);
2006 /* only hw_params backends that are either sinks or sources
2007 * to this frontend DAI */
2008 dpcm_be_dai_hw_free(fe, stream);
2010 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_FREE;
2011 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
2013 snd_soc_dpcm_mutex_unlock(fe);
2017 int dpcm_be_dai_hw_params(struct snd_soc_pcm_runtime *fe, int stream)
2019 struct snd_soc_pcm_runtime *be;
2020 struct snd_pcm_substream *be_substream;
2021 struct snd_soc_dpcm *dpcm;
2024 for_each_dpcm_be(fe, stream, dpcm) {
2025 struct snd_pcm_hw_params hw_params;
2028 be_substream = snd_soc_dpcm_get_substream(be, stream);
2030 /* is this op for this BE ? */
2031 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
2034 /* copy params for each dpcm */
2035 memcpy(&hw_params, &fe->dpcm[stream].hw_params,
2036 sizeof(struct snd_pcm_hw_params));
2038 /* perform any hw_params fixups */
2039 ret = snd_soc_link_be_hw_params_fixup(be, &hw_params);
2043 /* copy the fixed-up hw params for BE dai */
2044 memcpy(&be->dpcm[stream].hw_params, &hw_params,
2045 sizeof(struct snd_pcm_hw_params));
2047 /* only allow hw_params() if no connected FEs are running */
2048 if (!snd_soc_dpcm_can_be_params(fe, be, stream))
2051 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN) &&
2052 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
2053 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE))
2056 dev_dbg(be->dev, "ASoC: hw_params BE %s\n",
2057 be->dai_link->name);
2059 ret = __soc_pcm_hw_params(be, be_substream, &hw_params);
2063 be->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_PARAMS;
2068 dev_dbg(fe->dev, "ASoC: %s() failed at %s (%d)\n",
2069 __func__, be->dai_link->name, ret);
2071 /* disable any enabled and non active backends */
2072 for_each_dpcm_be_rollback(fe, stream, dpcm) {
2074 be_substream = snd_soc_dpcm_get_substream(be, stream);
2076 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
2079 /* only allow hw_free() if no connected FEs are running */
2080 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
2083 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN) &&
2084 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
2085 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE) &&
2086 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP))
2089 __soc_pcm_hw_free(be, be_substream);
2095 static int dpcm_fe_dai_hw_params(struct snd_pcm_substream *substream,
2096 struct snd_pcm_hw_params *params)
2098 struct snd_soc_pcm_runtime *fe = snd_soc_substream_to_rtd(substream);
2099 int ret, stream = substream->stream;
2101 snd_soc_dpcm_mutex_lock(fe);
2102 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE);
2104 memcpy(&fe->dpcm[stream].hw_params, params,
2105 sizeof(struct snd_pcm_hw_params));
2106 ret = dpcm_be_dai_hw_params(fe, stream);
2110 dev_dbg(fe->dev, "ASoC: hw_params FE %s rate %d chan %x fmt %d\n",
2111 fe->dai_link->name, params_rate(params),
2112 params_channels(params), params_format(params));
2114 /* call hw_params on the frontend */
2115 ret = __soc_pcm_hw_params(fe, substream, params);
2117 dpcm_be_dai_hw_free(fe, stream);
2119 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_PARAMS;
2122 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
2123 snd_soc_dpcm_mutex_unlock(fe);
2125 return soc_pcm_ret(fe, ret);
2128 int dpcm_be_dai_trigger(struct snd_soc_pcm_runtime *fe, int stream,
2131 struct snd_soc_pcm_runtime *be;
2132 bool pause_stop_transition;
2133 struct snd_soc_dpcm *dpcm;
2134 unsigned long flags;
2137 for_each_dpcm_be(fe, stream, dpcm) {
2138 struct snd_pcm_substream *be_substream;
2141 be_substream = snd_soc_dpcm_get_substream(be, stream);
2143 snd_soc_dpcm_stream_lock_irqsave_nested(be, stream, flags);
2145 /* is this op for this BE ? */
2146 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
2149 dev_dbg(be->dev, "ASoC: trigger BE %s cmd %d\n",
2150 be->dai_link->name, cmd);
2153 case SNDRV_PCM_TRIGGER_START:
2154 if (!be->dpcm[stream].be_start &&
2155 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PREPARE) &&
2156 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP) &&
2157 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PAUSED))
2160 be->dpcm[stream].be_start++;
2161 if (be->dpcm[stream].be_start != 1)
2164 if (be->dpcm[stream].state == SND_SOC_DPCM_STATE_PAUSED)
2165 ret = soc_pcm_trigger(be_substream,
2166 SNDRV_PCM_TRIGGER_PAUSE_RELEASE);
2168 ret = soc_pcm_trigger(be_substream,
2169 SNDRV_PCM_TRIGGER_START);
2171 be->dpcm[stream].be_start--;
2175 be->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
2177 case SNDRV_PCM_TRIGGER_RESUME:
2178 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_SUSPEND))
2181 be->dpcm[stream].be_start++;
2182 if (be->dpcm[stream].be_start != 1)
2185 ret = soc_pcm_trigger(be_substream, cmd);
2187 be->dpcm[stream].be_start--;
2191 be->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
2193 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
2194 if (!be->dpcm[stream].be_start &&
2195 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START) &&
2196 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PAUSED))
2199 fe->dpcm[stream].fe_pause = false;
2200 be->dpcm[stream].be_pause--;
2202 be->dpcm[stream].be_start++;
2203 if (be->dpcm[stream].be_start != 1)
2206 ret = soc_pcm_trigger(be_substream, cmd);
2208 be->dpcm[stream].be_start--;
2212 be->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
2214 case SNDRV_PCM_TRIGGER_STOP:
2215 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_START) &&
2216 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PAUSED))
2219 if (be->dpcm[stream].state == SND_SOC_DPCM_STATE_START)
2220 be->dpcm[stream].be_start--;
2222 if (be->dpcm[stream].be_start != 0)
2225 pause_stop_transition = false;
2226 if (fe->dpcm[stream].fe_pause) {
2227 pause_stop_transition = true;
2228 fe->dpcm[stream].fe_pause = false;
2229 be->dpcm[stream].be_pause--;
2232 if (be->dpcm[stream].be_pause != 0)
2233 ret = soc_pcm_trigger(be_substream, SNDRV_PCM_TRIGGER_PAUSE_PUSH);
2235 ret = soc_pcm_trigger(be_substream, SNDRV_PCM_TRIGGER_STOP);
2238 if (be->dpcm[stream].state == SND_SOC_DPCM_STATE_START)
2239 be->dpcm[stream].be_start++;
2240 if (pause_stop_transition) {
2241 fe->dpcm[stream].fe_pause = true;
2242 be->dpcm[stream].be_pause++;
2247 if (be->dpcm[stream].be_pause != 0)
2248 be->dpcm[stream].state = SND_SOC_DPCM_STATE_PAUSED;
2250 be->dpcm[stream].state = SND_SOC_DPCM_STATE_STOP;
2253 case SNDRV_PCM_TRIGGER_SUSPEND:
2254 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START)
2257 be->dpcm[stream].be_start--;
2258 if (be->dpcm[stream].be_start != 0)
2261 ret = soc_pcm_trigger(be_substream, cmd);
2263 be->dpcm[stream].be_start++;
2267 be->dpcm[stream].state = SND_SOC_DPCM_STATE_SUSPEND;
2269 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
2270 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START)
2273 fe->dpcm[stream].fe_pause = true;
2274 be->dpcm[stream].be_pause++;
2276 be->dpcm[stream].be_start--;
2277 if (be->dpcm[stream].be_start != 0)
2280 ret = soc_pcm_trigger(be_substream, cmd);
2282 be->dpcm[stream].be_start++;
2286 be->dpcm[stream].state = SND_SOC_DPCM_STATE_PAUSED;
2290 snd_soc_dpcm_stream_unlock_irqrestore(be, stream, flags);
2294 return soc_pcm_ret(fe, ret);
2296 EXPORT_SYMBOL_GPL(dpcm_be_dai_trigger);
2298 static int dpcm_dai_trigger_fe_be(struct snd_pcm_substream *substream,
2299 int cmd, bool fe_first)
2301 struct snd_soc_pcm_runtime *fe = snd_soc_substream_to_rtd(substream);
2304 /* call trigger on the frontend before the backend. */
2306 dev_dbg(fe->dev, "ASoC: pre trigger FE %s cmd %d\n",
2307 fe->dai_link->name, cmd);
2309 ret = soc_pcm_trigger(substream, cmd);
2313 ret = dpcm_be_dai_trigger(fe, substream->stream, cmd);
2317 /* call trigger on the frontend after the backend. */
2318 ret = dpcm_be_dai_trigger(fe, substream->stream, cmd);
2322 dev_dbg(fe->dev, "ASoC: post trigger FE %s cmd %d\n",
2323 fe->dai_link->name, cmd);
2325 ret = soc_pcm_trigger(substream, cmd);
2330 static int dpcm_fe_dai_do_trigger(struct snd_pcm_substream *substream, int cmd)
2332 struct snd_soc_pcm_runtime *fe = snd_soc_substream_to_rtd(substream);
2333 int stream = substream->stream;
2335 enum snd_soc_dpcm_trigger trigger = fe->dai_link->trigger[stream];
2337 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_FE;
2340 case SND_SOC_DPCM_TRIGGER_PRE:
2342 case SNDRV_PCM_TRIGGER_START:
2343 case SNDRV_PCM_TRIGGER_RESUME:
2344 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
2345 case SNDRV_PCM_TRIGGER_DRAIN:
2346 ret = dpcm_dai_trigger_fe_be(substream, cmd, true);
2348 case SNDRV_PCM_TRIGGER_STOP:
2349 case SNDRV_PCM_TRIGGER_SUSPEND:
2350 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
2351 ret = dpcm_dai_trigger_fe_be(substream, cmd, false);
2358 case SND_SOC_DPCM_TRIGGER_POST:
2360 case SNDRV_PCM_TRIGGER_START:
2361 case SNDRV_PCM_TRIGGER_RESUME:
2362 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
2363 case SNDRV_PCM_TRIGGER_DRAIN:
2364 ret = dpcm_dai_trigger_fe_be(substream, cmd, false);
2366 case SNDRV_PCM_TRIGGER_STOP:
2367 case SNDRV_PCM_TRIGGER_SUSPEND:
2368 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
2369 ret = dpcm_dai_trigger_fe_be(substream, cmd, true);
2376 case SND_SOC_DPCM_TRIGGER_BESPOKE:
2377 /* bespoke trigger() - handles both FE and BEs */
2379 dev_dbg(fe->dev, "ASoC: bespoke trigger FE %s cmd %d\n",
2380 fe->dai_link->name, cmd);
2382 ret = snd_soc_pcm_dai_bespoke_trigger(substream, cmd);
2385 dev_err(fe->dev, "ASoC: invalid trigger cmd %d for %s\n", cmd,
2386 fe->dai_link->name);
2392 dev_err(fe->dev, "ASoC: trigger FE cmd: %d failed: %d\n",
2398 case SNDRV_PCM_TRIGGER_START:
2399 case SNDRV_PCM_TRIGGER_RESUME:
2400 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
2401 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
2403 case SNDRV_PCM_TRIGGER_STOP:
2404 case SNDRV_PCM_TRIGGER_SUSPEND:
2405 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_STOP;
2407 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
2408 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_PAUSED;
2413 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO;
2417 static int dpcm_fe_dai_trigger(struct snd_pcm_substream *substream, int cmd)
2419 struct snd_soc_pcm_runtime *fe = snd_soc_substream_to_rtd(substream);
2420 int stream = substream->stream;
2422 /* if FE's runtime_update is already set, we're in race;
2423 * process this trigger later at exit
2425 if (fe->dpcm[stream].runtime_update != SND_SOC_DPCM_UPDATE_NO) {
2426 fe->dpcm[stream].trigger_pending = cmd + 1;
2427 return 0; /* delayed, assuming it's successful */
2430 /* we're alone, let's trigger */
2431 return dpcm_fe_dai_do_trigger(substream, cmd);
2434 int dpcm_be_dai_prepare(struct snd_soc_pcm_runtime *fe, int stream)
2436 struct snd_soc_dpcm *dpcm;
2439 for_each_dpcm_be(fe, stream, dpcm) {
2441 struct snd_soc_pcm_runtime *be = dpcm->be;
2442 struct snd_pcm_substream *be_substream =
2443 snd_soc_dpcm_get_substream(be, stream);
2445 /* is this op for this BE ? */
2446 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
2449 if (!snd_soc_dpcm_can_be_prepared(fe, be, stream))
2452 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
2453 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP) &&
2454 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_SUSPEND) &&
2455 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PAUSED))
2458 dev_dbg(be->dev, "ASoC: prepare BE %s\n",
2459 be->dai_link->name);
2461 ret = __soc_pcm_prepare(be, be_substream);
2465 be->dpcm[stream].state = SND_SOC_DPCM_STATE_PREPARE;
2468 return soc_pcm_ret(fe, ret);
2471 static int dpcm_fe_dai_prepare(struct snd_pcm_substream *substream)
2473 struct snd_soc_pcm_runtime *fe = snd_soc_substream_to_rtd(substream);
2474 int stream = substream->stream, ret = 0;
2476 snd_soc_dpcm_mutex_lock(fe);
2478 dev_dbg(fe->dev, "ASoC: prepare FE %s\n", fe->dai_link->name);
2480 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE);
2482 /* there is no point preparing this FE if there are no BEs */
2483 if (list_empty(&fe->dpcm[stream].be_clients)) {
2484 /* dev_err_once() for visibility, dev_dbg() for debugging UCM profiles */
2485 dev_err_once(fe->dev, "ASoC: no backend DAIs enabled for %s, possibly missing ALSA mixer-based routing or UCM profile\n",
2486 fe->dai_link->name);
2487 dev_dbg(fe->dev, "ASoC: no backend DAIs enabled for %s\n",
2488 fe->dai_link->name);
2493 ret = dpcm_be_dai_prepare(fe, stream);
2497 /* call prepare on the frontend */
2498 ret = __soc_pcm_prepare(fe, substream);
2502 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_PREPARE;
2505 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
2506 snd_soc_dpcm_mutex_unlock(fe);
2508 return soc_pcm_ret(fe, ret);
2511 static int dpcm_run_update_shutdown(struct snd_soc_pcm_runtime *fe, int stream)
2513 struct snd_pcm_substream *substream =
2514 snd_soc_dpcm_get_substream(fe, stream);
2515 enum snd_soc_dpcm_trigger trigger = fe->dai_link->trigger[stream];
2518 dev_dbg(fe->dev, "ASoC: runtime %s close on FE %s\n",
2519 stream ? "capture" : "playback", fe->dai_link->name);
2521 if (trigger == SND_SOC_DPCM_TRIGGER_BESPOKE) {
2522 /* call bespoke trigger - FE takes care of all BE triggers */
2523 dev_dbg(fe->dev, "ASoC: bespoke trigger FE %s cmd stop\n",
2524 fe->dai_link->name);
2526 err = snd_soc_pcm_dai_bespoke_trigger(substream, SNDRV_PCM_TRIGGER_STOP);
2528 dev_dbg(fe->dev, "ASoC: trigger FE %s cmd stop\n",
2529 fe->dai_link->name);
2531 err = dpcm_be_dai_trigger(fe, stream, SNDRV_PCM_TRIGGER_STOP);
2534 dpcm_be_dai_hw_free(fe, stream);
2536 dpcm_be_dai_shutdown(fe, stream);
2538 /* run the stream event for each BE */
2539 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_NOP);
2541 return soc_pcm_ret(fe, err);
2544 static int dpcm_run_update_startup(struct snd_soc_pcm_runtime *fe, int stream)
2546 struct snd_pcm_substream *substream =
2547 snd_soc_dpcm_get_substream(fe, stream);
2548 struct snd_soc_dpcm *dpcm;
2549 enum snd_soc_dpcm_trigger trigger = fe->dai_link->trigger[stream];
2552 dev_dbg(fe->dev, "ASoC: runtime %s open on FE %s\n",
2553 stream ? "capture" : "playback", fe->dai_link->name);
2555 /* Only start the BE if the FE is ready */
2556 if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_HW_FREE ||
2557 fe->dpcm[stream].state == SND_SOC_DPCM_STATE_CLOSE) {
2558 dev_err(fe->dev, "ASoC: FE %s is not ready %d\n",
2559 fe->dai_link->name, fe->dpcm[stream].state);
2564 /* startup must always be called for new BEs */
2565 ret = dpcm_be_dai_startup(fe, stream);
2569 /* keep going if FE state is > open */
2570 if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_OPEN)
2573 ret = dpcm_be_dai_hw_params(fe, stream);
2577 /* keep going if FE state is > hw_params */
2578 if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_HW_PARAMS)
2581 ret = dpcm_be_dai_prepare(fe, stream);
2585 /* run the stream event for each BE */
2586 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_NOP);
2588 /* keep going if FE state is > prepare */
2589 if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_PREPARE ||
2590 fe->dpcm[stream].state == SND_SOC_DPCM_STATE_STOP)
2593 if (trigger == SND_SOC_DPCM_TRIGGER_BESPOKE) {
2594 /* call trigger on the frontend - FE takes care of all BE triggers */
2595 dev_dbg(fe->dev, "ASoC: bespoke trigger FE %s cmd start\n",
2596 fe->dai_link->name);
2598 ret = snd_soc_pcm_dai_bespoke_trigger(substream, SNDRV_PCM_TRIGGER_START);
2602 dev_dbg(fe->dev, "ASoC: trigger FE %s cmd start\n",
2603 fe->dai_link->name);
2605 ret = dpcm_be_dai_trigger(fe, stream,
2606 SNDRV_PCM_TRIGGER_START);
2614 dpcm_be_dai_hw_free(fe, stream);
2616 dpcm_be_dai_shutdown(fe, stream);
2618 /* disconnect any pending BEs */
2619 for_each_dpcm_be(fe, stream, dpcm) {
2620 struct snd_soc_pcm_runtime *be = dpcm->be;
2622 /* is this op for this BE ? */
2623 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
2626 if (be->dpcm[stream].state == SND_SOC_DPCM_STATE_CLOSE ||
2627 be->dpcm[stream].state == SND_SOC_DPCM_STATE_NEW)
2628 dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE;
2631 return soc_pcm_ret(fe, ret);
2634 static int soc_dpcm_fe_runtime_update(struct snd_soc_pcm_runtime *fe, int new)
2636 struct snd_soc_dapm_widget_list *list;
2640 if (!fe->dai_link->dynamic)
2643 if (fe->dai_link->num_cpus > 1) {
2645 "%s doesn't support Multi CPU yet\n", __func__);
2649 /* only check active links */
2650 if (!snd_soc_dai_active(snd_soc_rtd_to_cpu(fe, 0)))
2653 /* DAPM sync will call this to update DSP paths */
2654 dev_dbg(fe->dev, "ASoC: DPCM %s runtime update for FE %s\n",
2655 new ? "new" : "old", fe->dai_link->name);
2657 for_each_pcm_streams(stream) {
2659 /* skip if FE doesn't have playback/capture capability */
2660 if (!snd_soc_dai_stream_valid(snd_soc_rtd_to_cpu(fe, 0), stream) ||
2661 !snd_soc_dai_stream_valid(snd_soc_rtd_to_codec(fe, 0), stream))
2664 /* skip if FE isn't currently playing/capturing */
2665 if (!snd_soc_dai_stream_active(snd_soc_rtd_to_cpu(fe, 0), stream) ||
2666 !snd_soc_dai_stream_active(snd_soc_rtd_to_codec(fe, 0), stream))
2669 paths = dpcm_path_get(fe, stream, &list);
2673 /* update any playback/capture paths */
2674 count = dpcm_process_paths(fe, stream, &list, new);
2676 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_BE);
2678 dpcm_run_update_startup(fe, stream);
2680 dpcm_run_update_shutdown(fe, stream);
2681 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
2683 dpcm_clear_pending_state(fe, stream);
2684 dpcm_be_disconnect(fe, stream);
2687 dpcm_path_put(&list);
2693 /* Called by DAPM mixer/mux changes to update audio routing between PCMs and
2696 int snd_soc_dpcm_runtime_update(struct snd_soc_card *card)
2698 struct snd_soc_pcm_runtime *fe;
2701 snd_soc_dpcm_mutex_lock(card);
2702 /* shutdown all old paths first */
2703 for_each_card_rtds(card, fe) {
2704 ret = soc_dpcm_fe_runtime_update(fe, 0);
2709 /* bring new paths up */
2710 for_each_card_rtds(card, fe) {
2711 ret = soc_dpcm_fe_runtime_update(fe, 1);
2717 snd_soc_dpcm_mutex_unlock(card);
2720 EXPORT_SYMBOL_GPL(snd_soc_dpcm_runtime_update);
2722 static void dpcm_fe_dai_cleanup(struct snd_pcm_substream *fe_substream)
2724 struct snd_soc_pcm_runtime *fe = snd_soc_substream_to_rtd(fe_substream);
2725 struct snd_soc_dpcm *dpcm;
2726 int stream = fe_substream->stream;
2728 snd_soc_dpcm_mutex_assert_held(fe);
2730 /* mark FE's links ready to prune */
2731 for_each_dpcm_be(fe, stream, dpcm)
2732 dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE;
2734 dpcm_be_disconnect(fe, stream);
2737 static int dpcm_fe_dai_close(struct snd_pcm_substream *fe_substream)
2739 struct snd_soc_pcm_runtime *fe = snd_soc_substream_to_rtd(fe_substream);
2742 snd_soc_dpcm_mutex_lock(fe);
2743 ret = dpcm_fe_dai_shutdown(fe_substream);
2745 dpcm_fe_dai_cleanup(fe_substream);
2747 snd_soc_dpcm_mutex_unlock(fe);
2751 static int dpcm_fe_dai_open(struct snd_pcm_substream *fe_substream)
2753 struct snd_soc_pcm_runtime *fe = snd_soc_substream_to_rtd(fe_substream);
2754 struct snd_soc_dapm_widget_list *list;
2756 int stream = fe_substream->stream;
2758 snd_soc_dpcm_mutex_lock(fe);
2760 ret = dpcm_path_get(fe, stream, &list);
2764 /* calculate valid and active FE <-> BE dpcms */
2765 dpcm_process_paths(fe, stream, &list, 1);
2767 ret = dpcm_fe_dai_startup(fe_substream);
2769 dpcm_fe_dai_cleanup(fe_substream);
2771 dpcm_clear_pending_state(fe, stream);
2772 dpcm_path_put(&list);
2774 snd_soc_dpcm_mutex_unlock(fe);
2778 static int soc_get_playback_capture(struct snd_soc_pcm_runtime *rtd,
2779 int *playback, int *capture)
2781 struct snd_soc_dai_link *dai_link = rtd->dai_link;
2782 struct snd_soc_dai *cpu_dai;
2783 int has_playback = 0;
2784 int has_capture = 0;
2787 if (dai_link->dynamic && dai_link->num_cpus > 1) {
2788 dev_err(rtd->dev, "DPCM doesn't support Multi CPU for Front-Ends yet\n");
2792 if (dai_link->dynamic || dai_link->no_pcm) {
2795 if (dai_link->dpcm_playback) {
2796 stream = SNDRV_PCM_STREAM_PLAYBACK;
2798 for_each_rtd_cpu_dais(rtd, i, cpu_dai) {
2799 if (snd_soc_dai_stream_valid(cpu_dai, stream)) {
2804 if (!has_playback) {
2805 dev_err(rtd->card->dev,
2806 "No CPU DAIs support playback for stream %s\n",
2807 dai_link->stream_name);
2811 if (dai_link->dpcm_capture) {
2812 stream = SNDRV_PCM_STREAM_CAPTURE;
2814 for_each_rtd_cpu_dais(rtd, i, cpu_dai) {
2815 if (snd_soc_dai_stream_valid(cpu_dai, stream)) {
2822 dev_err(rtd->card->dev,
2823 "No CPU DAIs support capture for stream %s\n",
2824 dai_link->stream_name);
2829 struct snd_soc_dai *codec_dai;
2831 /* Adapt stream for codec2codec links */
2832 int cpu_capture = snd_soc_get_stream_cpu(dai_link, SNDRV_PCM_STREAM_CAPTURE);
2833 int cpu_playback = snd_soc_get_stream_cpu(dai_link, SNDRV_PCM_STREAM_PLAYBACK);
2835 for_each_rtd_codec_dais(rtd, i, codec_dai) {
2836 if (dai_link->num_cpus == 1) {
2837 cpu_dai = snd_soc_rtd_to_cpu(rtd, 0);
2838 } else if (dai_link->num_cpus == dai_link->num_codecs) {
2839 cpu_dai = snd_soc_rtd_to_cpu(rtd, i);
2840 } else if (rtd->dai_link->num_codecs > rtd->dai_link->num_cpus) {
2843 if (!rtd->dai_link->codec_ch_maps) {
2844 dev_err(rtd->card->dev, "%s: no codec channel mapping table provided\n",
2849 cpu_id = rtd->dai_link->codec_ch_maps[i].connected_cpu_id;
2850 cpu_dai = snd_soc_rtd_to_cpu(rtd, cpu_id);
2852 dev_err(rtd->card->dev,
2853 "%s codec number %d < cpu number %d is not supported\n",
2854 __func__, rtd->dai_link->num_codecs,
2855 rtd->dai_link->num_cpus);
2859 if (snd_soc_dai_stream_valid(codec_dai, SNDRV_PCM_STREAM_PLAYBACK) &&
2860 snd_soc_dai_stream_valid(cpu_dai, cpu_playback))
2862 if (snd_soc_dai_stream_valid(codec_dai, SNDRV_PCM_STREAM_CAPTURE) &&
2863 snd_soc_dai_stream_valid(cpu_dai, cpu_capture))
2868 if (dai_link->playback_only)
2871 if (dai_link->capture_only)
2874 if (!has_playback && !has_capture) {
2875 dev_err(rtd->dev, "substream %s has no playback, no capture\n",
2876 dai_link->stream_name);
2881 *playback = has_playback;
2882 *capture = has_capture;
2887 static int soc_create_pcm(struct snd_pcm **pcm,
2888 struct snd_soc_pcm_runtime *rtd,
2889 int playback, int capture, int num)
2894 /* create the PCM */
2895 if (rtd->dai_link->c2c_params) {
2896 snprintf(new_name, sizeof(new_name), "codec2codec(%s)",
2897 rtd->dai_link->stream_name);
2899 ret = snd_pcm_new_internal(rtd->card->snd_card, new_name, num,
2900 playback, capture, pcm);
2901 } else if (rtd->dai_link->no_pcm) {
2902 snprintf(new_name, sizeof(new_name), "(%s)",
2903 rtd->dai_link->stream_name);
2905 ret = snd_pcm_new_internal(rtd->card->snd_card, new_name, num,
2906 playback, capture, pcm);
2908 if (rtd->dai_link->dynamic)
2909 snprintf(new_name, sizeof(new_name), "%s (*)",
2910 rtd->dai_link->stream_name);
2912 snprintf(new_name, sizeof(new_name), "%s %s-%d",
2913 rtd->dai_link->stream_name,
2914 soc_codec_dai_name(rtd), num);
2916 ret = snd_pcm_new(rtd->card->snd_card, new_name, num, playback,
2920 dev_err(rtd->card->dev, "ASoC: can't create pcm %s for dailink %s: %d\n",
2921 new_name, rtd->dai_link->name, ret);
2924 dev_dbg(rtd->card->dev, "ASoC: registered pcm #%d %s\n",num, new_name);
2929 /* create a new pcm */
2930 int soc_new_pcm(struct snd_soc_pcm_runtime *rtd, int num)
2932 struct snd_soc_component *component;
2933 struct snd_pcm *pcm;
2934 int ret = 0, playback = 0, capture = 0;
2937 ret = soc_get_playback_capture(rtd, &playback, &capture);
2941 ret = soc_create_pcm(&pcm, rtd, playback, capture, num);
2945 /* DAPM dai link stream work */
2947 * Currently nothing to do for c2c links
2948 * Since c2c links are internal nodes in the DAPM graph and
2949 * don't interface with the outside world or application layer
2950 * we don't have to do any special handling on close.
2952 if (!rtd->dai_link->c2c_params)
2953 rtd->close_delayed_work_func = snd_soc_close_delayed_work;
2956 pcm->nonatomic = rtd->dai_link->nonatomic;
2957 pcm->private_data = rtd;
2958 pcm->no_device_suspend = true;
2960 if (rtd->dai_link->no_pcm || rtd->dai_link->c2c_params) {
2962 pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream->private_data = rtd;
2964 pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream->private_data = rtd;
2968 /* ASoC PCM operations */
2969 if (rtd->dai_link->dynamic) {
2970 rtd->ops.open = dpcm_fe_dai_open;
2971 rtd->ops.hw_params = dpcm_fe_dai_hw_params;
2972 rtd->ops.prepare = dpcm_fe_dai_prepare;
2973 rtd->ops.trigger = dpcm_fe_dai_trigger;
2974 rtd->ops.hw_free = dpcm_fe_dai_hw_free;
2975 rtd->ops.close = dpcm_fe_dai_close;
2976 rtd->ops.pointer = soc_pcm_pointer;
2978 rtd->ops.open = soc_pcm_open;
2979 rtd->ops.hw_params = soc_pcm_hw_params;
2980 rtd->ops.prepare = soc_pcm_prepare;
2981 rtd->ops.trigger = soc_pcm_trigger;
2982 rtd->ops.hw_free = soc_pcm_hw_free;
2983 rtd->ops.close = soc_pcm_close;
2984 rtd->ops.pointer = soc_pcm_pointer;
2987 for_each_rtd_components(rtd, i, component) {
2988 const struct snd_soc_component_driver *drv = component->driver;
2991 rtd->ops.ioctl = snd_soc_pcm_component_ioctl;
2993 rtd->ops.sync_stop = snd_soc_pcm_component_sync_stop;
2995 rtd->ops.copy = snd_soc_pcm_component_copy;
2997 rtd->ops.page = snd_soc_pcm_component_page;
2999 rtd->ops.mmap = snd_soc_pcm_component_mmap;
3001 rtd->ops.ack = snd_soc_pcm_component_ack;
3005 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &rtd->ops);
3008 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &rtd->ops);
3010 ret = snd_soc_pcm_component_new(rtd);
3014 dev_dbg(rtd->card->dev, "%s <-> %s mapping ok\n",
3015 soc_codec_dai_name(rtd), soc_cpu_dai_name(rtd));
3019 /* is the current PCM operation for this FE ? */
3020 int snd_soc_dpcm_fe_can_update(struct snd_soc_pcm_runtime *fe, int stream)
3022 if (fe->dpcm[stream].runtime_update == SND_SOC_DPCM_UPDATE_FE)
3026 EXPORT_SYMBOL_GPL(snd_soc_dpcm_fe_can_update);
3028 /* is the current PCM operation for this BE ? */
3029 int snd_soc_dpcm_be_can_update(struct snd_soc_pcm_runtime *fe,
3030 struct snd_soc_pcm_runtime *be, int stream)
3032 if ((fe->dpcm[stream].runtime_update == SND_SOC_DPCM_UPDATE_FE) ||
3033 ((fe->dpcm[stream].runtime_update == SND_SOC_DPCM_UPDATE_BE) &&
3034 be->dpcm[stream].runtime_update))
3038 EXPORT_SYMBOL_GPL(snd_soc_dpcm_be_can_update);
3040 /* get the substream for this BE */
3041 struct snd_pcm_substream *
3042 snd_soc_dpcm_get_substream(struct snd_soc_pcm_runtime *be, int stream)
3044 return be->pcm->streams[stream].substream;
3046 EXPORT_SYMBOL_GPL(snd_soc_dpcm_get_substream);
3048 static int snd_soc_dpcm_check_state(struct snd_soc_pcm_runtime *fe,
3049 struct snd_soc_pcm_runtime *be,
3051 const enum snd_soc_dpcm_state *states,
3054 struct snd_soc_dpcm *dpcm;
3059 for_each_dpcm_fe(be, stream, dpcm) {
3064 state = dpcm->fe->dpcm[stream].state;
3065 for (i = 0; i < num_states; i++) {
3066 if (state == states[i]) {
3073 /* it's safe to do this BE DAI */
3078 * We can only hw_free, stop, pause or suspend a BE DAI if any of it's FE
3079 * are not running, paused or suspended for the specified stream direction.
3081 int snd_soc_dpcm_can_be_free_stop(struct snd_soc_pcm_runtime *fe,
3082 struct snd_soc_pcm_runtime *be, int stream)
3084 const enum snd_soc_dpcm_state state[] = {
3085 SND_SOC_DPCM_STATE_START,
3086 SND_SOC_DPCM_STATE_PAUSED,
3087 SND_SOC_DPCM_STATE_SUSPEND,
3090 return snd_soc_dpcm_check_state(fe, be, stream, state, ARRAY_SIZE(state));
3092 EXPORT_SYMBOL_GPL(snd_soc_dpcm_can_be_free_stop);
3095 * We can only change hw params a BE DAI if any of it's FE are not prepared,
3096 * running, paused or suspended for the specified stream direction.
3098 int snd_soc_dpcm_can_be_params(struct snd_soc_pcm_runtime *fe,
3099 struct snd_soc_pcm_runtime *be, int stream)
3101 const enum snd_soc_dpcm_state state[] = {
3102 SND_SOC_DPCM_STATE_START,
3103 SND_SOC_DPCM_STATE_PAUSED,
3104 SND_SOC_DPCM_STATE_SUSPEND,
3105 SND_SOC_DPCM_STATE_PREPARE,
3108 return snd_soc_dpcm_check_state(fe, be, stream, state, ARRAY_SIZE(state));
3110 EXPORT_SYMBOL_GPL(snd_soc_dpcm_can_be_params);
3113 * We can only prepare a BE DAI if any of it's FE are not prepared,
3114 * running or paused for the specified stream direction.
3116 int snd_soc_dpcm_can_be_prepared(struct snd_soc_pcm_runtime *fe,
3117 struct snd_soc_pcm_runtime *be, int stream)
3119 const enum snd_soc_dpcm_state state[] = {
3120 SND_SOC_DPCM_STATE_START,
3121 SND_SOC_DPCM_STATE_PAUSED,
3122 SND_SOC_DPCM_STATE_PREPARE,
3125 return snd_soc_dpcm_check_state(fe, be, stream, state, ARRAY_SIZE(state));
3127 EXPORT_SYMBOL_GPL(snd_soc_dpcm_can_be_prepared);