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/pm_runtime.h>
18 #include <linux/slab.h>
19 #include <linux/workqueue.h>
20 #include <linux/export.h>
21 #include <linux/debugfs.h>
22 #include <sound/core.h>
23 #include <sound/pcm.h>
24 #include <sound/pcm_params.h>
25 #include <sound/soc.h>
26 #include <sound/soc-dpcm.h>
27 #include <sound/soc-link.h>
28 #include <sound/initval.h>
30 #define DPCM_MAX_BE_USERS 8
32 #ifdef CONFIG_DEBUG_FS
33 static const char *dpcm_state_string(enum snd_soc_dpcm_state state)
36 case SND_SOC_DPCM_STATE_NEW:
38 case SND_SOC_DPCM_STATE_OPEN:
40 case SND_SOC_DPCM_STATE_HW_PARAMS:
42 case SND_SOC_DPCM_STATE_PREPARE:
44 case SND_SOC_DPCM_STATE_START:
46 case SND_SOC_DPCM_STATE_STOP:
48 case SND_SOC_DPCM_STATE_SUSPEND:
50 case SND_SOC_DPCM_STATE_PAUSED:
52 case SND_SOC_DPCM_STATE_HW_FREE:
54 case SND_SOC_DPCM_STATE_CLOSE:
61 static ssize_t dpcm_show_state(struct snd_soc_pcm_runtime *fe,
62 int stream, char *buf, size_t size)
64 struct snd_pcm_hw_params *params = &fe->dpcm[stream].hw_params;
65 struct snd_soc_dpcm *dpcm;
70 offset += scnprintf(buf + offset, size - offset,
71 "[%s - %s]\n", fe->dai_link->name,
72 stream ? "Capture" : "Playback");
74 offset += scnprintf(buf + offset, size - offset, "State: %s\n",
75 dpcm_state_string(fe->dpcm[stream].state));
77 if ((fe->dpcm[stream].state >= SND_SOC_DPCM_STATE_HW_PARAMS) &&
78 (fe->dpcm[stream].state <= SND_SOC_DPCM_STATE_STOP))
79 offset += scnprintf(buf + offset, size - offset,
81 "Format = %s, Channels = %d, Rate = %d\n",
82 snd_pcm_format_name(params_format(params)),
83 params_channels(params),
87 offset += scnprintf(buf + offset, size - offset, "Backends:\n");
89 if (list_empty(&fe->dpcm[stream].be_clients)) {
90 offset += scnprintf(buf + offset, size - offset,
91 " No active DSP links\n");
95 spin_lock_irqsave(&fe->card->dpcm_lock, flags);
96 for_each_dpcm_be(fe, stream, dpcm) {
97 struct snd_soc_pcm_runtime *be = dpcm->be;
98 params = &dpcm->hw_params;
100 offset += scnprintf(buf + offset, size - offset,
101 "- %s\n", be->dai_link->name);
103 offset += scnprintf(buf + offset, size - offset,
105 dpcm_state_string(be->dpcm[stream].state));
107 if ((be->dpcm[stream].state >= SND_SOC_DPCM_STATE_HW_PARAMS) &&
108 (be->dpcm[stream].state <= SND_SOC_DPCM_STATE_STOP))
109 offset += scnprintf(buf + offset, size - offset,
111 "Format = %s, Channels = %d, Rate = %d\n",
112 snd_pcm_format_name(params_format(params)),
113 params_channels(params),
114 params_rate(params));
116 spin_unlock_irqrestore(&fe->card->dpcm_lock, flags);
121 static ssize_t dpcm_state_read_file(struct file *file, char __user *user_buf,
122 size_t count, loff_t *ppos)
124 struct snd_soc_pcm_runtime *fe = file->private_data;
125 ssize_t out_count = PAGE_SIZE, offset = 0, ret = 0;
129 if (fe->num_cpus > 1) {
131 "%s doesn't support Multi CPU yet\n", __func__);
135 buf = kmalloc(out_count, GFP_KERNEL);
139 for_each_pcm_streams(stream)
140 if (snd_soc_dai_stream_valid(asoc_rtd_to_cpu(fe, 0), stream))
141 offset += dpcm_show_state(fe, stream,
145 ret = simple_read_from_buffer(user_buf, count, ppos, buf, offset);
151 static const struct file_operations dpcm_state_fops = {
153 .read = dpcm_state_read_file,
154 .llseek = default_llseek,
157 void soc_dpcm_debugfs_add(struct snd_soc_pcm_runtime *rtd)
162 if (!rtd->dai_link->dynamic)
165 if (!rtd->card->debugfs_card_root)
168 rtd->debugfs_dpcm_root = debugfs_create_dir(rtd->dai_link->name,
169 rtd->card->debugfs_card_root);
171 debugfs_create_file("state", 0444, rtd->debugfs_dpcm_root,
172 rtd, &dpcm_state_fops);
175 static void dpcm_create_debugfs_state(struct snd_soc_dpcm *dpcm, int stream)
179 name = kasprintf(GFP_KERNEL, "%s:%s", dpcm->be->dai_link->name,
180 stream ? "capture" : "playback");
182 dpcm->debugfs_state = debugfs_create_dir(
183 name, dpcm->fe->debugfs_dpcm_root);
184 debugfs_create_u32("state", 0644, dpcm->debugfs_state,
190 static void dpcm_remove_debugfs_state(struct snd_soc_dpcm *dpcm)
192 debugfs_remove_recursive(dpcm->debugfs_state);
196 static inline void dpcm_create_debugfs_state(struct snd_soc_dpcm *dpcm,
201 static inline void dpcm_remove_debugfs_state(struct snd_soc_dpcm *dpcm)
206 /* Set FE's runtime_update state; the state is protected via PCM stream lock
207 * for avoiding the race with trigger callback.
208 * If the state is unset and a trigger is pending while the previous operation,
209 * process the pending trigger action here.
211 static int dpcm_fe_dai_do_trigger(struct snd_pcm_substream *substream, int cmd);
212 static void dpcm_set_fe_update_state(struct snd_soc_pcm_runtime *fe,
213 int stream, enum snd_soc_dpcm_update state)
215 struct snd_pcm_substream *substream =
216 snd_soc_dpcm_get_substream(fe, stream);
218 snd_pcm_stream_lock_irq(substream);
219 if (state == SND_SOC_DPCM_UPDATE_NO && fe->dpcm[stream].trigger_pending) {
220 dpcm_fe_dai_do_trigger(substream,
221 fe->dpcm[stream].trigger_pending - 1);
222 fe->dpcm[stream].trigger_pending = 0;
224 fe->dpcm[stream].runtime_update = state;
225 snd_pcm_stream_unlock_irq(substream);
228 static void dpcm_set_be_update_state(struct snd_soc_pcm_runtime *be,
229 int stream, enum snd_soc_dpcm_update state)
231 be->dpcm[stream].runtime_update = state;
235 * snd_soc_runtime_action() - Increment/Decrement active count for
236 * PCM runtime components
237 * @rtd: ASoC PCM runtime that is activated
238 * @stream: Direction of the PCM stream
239 * @action: Activate stream if 1. Deactivate if -1.
241 * Increments/Decrements the active count for all the DAIs and components
242 * attached to a PCM runtime.
243 * Should typically be called when a stream is opened.
245 * Must be called with the rtd->card->pcm_mutex being held
247 void snd_soc_runtime_action(struct snd_soc_pcm_runtime *rtd,
248 int stream, int action)
250 struct snd_soc_dai *dai;
253 lockdep_assert_held(&rtd->card->pcm_mutex);
255 for_each_rtd_dais(rtd, i, dai)
256 snd_soc_dai_action(dai, stream, action);
258 EXPORT_SYMBOL_GPL(snd_soc_runtime_action);
261 * snd_soc_runtime_ignore_pmdown_time() - Check whether to ignore the power down delay
262 * @rtd: The ASoC PCM runtime that should be checked.
264 * This function checks whether the power down delay should be ignored for a
265 * specific PCM runtime. Returns true if the delay is 0, if it the DAI link has
266 * been configured to ignore the delay, or if none of the components benefits
267 * from having the delay.
269 bool snd_soc_runtime_ignore_pmdown_time(struct snd_soc_pcm_runtime *rtd)
271 struct snd_soc_component *component;
275 if (!rtd->pmdown_time || rtd->dai_link->ignore_pmdown_time)
278 for_each_rtd_components(rtd, i, component)
279 ignore &= !component->driver->use_pmdown_time;
285 * snd_soc_set_runtime_hwparams - set the runtime hardware parameters
286 * @substream: the pcm substream
287 * @hw: the hardware parameters
289 * Sets the substream runtime hardware parameters.
291 int snd_soc_set_runtime_hwparams(struct snd_pcm_substream *substream,
292 const struct snd_pcm_hardware *hw)
294 struct snd_pcm_runtime *runtime = substream->runtime;
295 runtime->hw.info = hw->info;
296 runtime->hw.formats = hw->formats;
297 runtime->hw.period_bytes_min = hw->period_bytes_min;
298 runtime->hw.period_bytes_max = hw->period_bytes_max;
299 runtime->hw.periods_min = hw->periods_min;
300 runtime->hw.periods_max = hw->periods_max;
301 runtime->hw.buffer_bytes_max = hw->buffer_bytes_max;
302 runtime->hw.fifo_size = hw->fifo_size;
305 EXPORT_SYMBOL_GPL(snd_soc_set_runtime_hwparams);
307 /* DPCM stream event, send event to FE and all active BEs. */
308 int dpcm_dapm_stream_event(struct snd_soc_pcm_runtime *fe, int dir,
311 struct snd_soc_dpcm *dpcm;
313 for_each_dpcm_be(fe, dir, dpcm) {
315 struct snd_soc_pcm_runtime *be = dpcm->be;
317 dev_dbg(be->dev, "ASoC: BE %s event %d dir %d\n",
318 be->dai_link->name, event, dir);
320 if ((event == SND_SOC_DAPM_STREAM_STOP) &&
321 (be->dpcm[dir].users >= 1))
324 snd_soc_dapm_stream_event(be, dir, event);
327 snd_soc_dapm_stream_event(fe, dir, event);
332 static void soc_pcm_set_dai_params(struct snd_soc_dai *dai,
333 struct snd_pcm_hw_params *params)
336 dai->rate = params_rate(params);
337 dai->channels = params_channels(params);
338 dai->sample_bits = snd_pcm_format_physical_width(params_format(params));
342 dai->sample_bits = 0;
346 static int soc_pcm_apply_symmetry(struct snd_pcm_substream *substream,
347 struct snd_soc_dai *soc_dai)
349 struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
352 #define __soc_pcm_apply_symmetry(name, NAME) \
353 if (soc_dai->name && (soc_dai->driver->symmetric_##name || \
354 rtd->dai_link->symmetric_##name)) { \
355 dev_dbg(soc_dai->dev, "ASoC: Symmetry forces %s to %d\n",\
356 #name, soc_dai->name); \
358 ret = snd_pcm_hw_constraint_single(substream->runtime, \
359 SNDRV_PCM_HW_PARAM_##NAME,\
362 dev_err(soc_dai->dev, \
363 "ASoC: Unable to apply %s constraint: %d\n",\
369 __soc_pcm_apply_symmetry(rate, RATE);
370 __soc_pcm_apply_symmetry(channels, CHANNELS);
371 __soc_pcm_apply_symmetry(sample_bits, SAMPLE_BITS);
376 static int soc_pcm_params_symmetry(struct snd_pcm_substream *substream,
377 struct snd_pcm_hw_params *params)
379 struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
380 struct snd_soc_dai d;
381 struct snd_soc_dai *dai;
382 struct snd_soc_dai *cpu_dai;
383 unsigned int symmetry, i;
385 soc_pcm_set_dai_params(&d, params);
387 #define __soc_pcm_params_symmetry(name) \
388 symmetry = rtd->dai_link->symmetric_##name; \
389 for_each_rtd_dais(rtd, i, dai) \
390 symmetry |= dai->driver->symmetric_##name; \
393 for_each_rtd_cpu_dais(rtd, i, cpu_dai) \
394 if (cpu_dai->name && cpu_dai->name != d.name) { \
395 dev_err(rtd->dev, "ASoC: unmatched %s symmetry: %d - %d\n", \
396 #name, cpu_dai->name, d.name); \
400 /* reject unmatched parameters when applying symmetry */
401 __soc_pcm_params_symmetry(rate);
402 __soc_pcm_params_symmetry(channels);
403 __soc_pcm_params_symmetry(sample_bits);
408 static bool soc_pcm_has_symmetry(struct snd_pcm_substream *substream)
410 struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
411 struct snd_soc_dai_link *link = rtd->dai_link;
412 struct snd_soc_dai *dai;
413 unsigned int symmetry, i;
415 symmetry = link->symmetric_rate ||
416 link->symmetric_channels ||
417 link->symmetric_sample_bits;
419 for_each_rtd_dais(rtd, i, dai)
420 symmetry = symmetry ||
421 dai->driver->symmetric_rate ||
422 dai->driver->symmetric_channels ||
423 dai->driver->symmetric_sample_bits;
428 static void soc_pcm_set_msb(struct snd_pcm_substream *substream, int bits)
430 struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
436 ret = snd_pcm_hw_constraint_msbits(substream->runtime, 0, 0, bits);
438 dev_warn(rtd->dev, "ASoC: Failed to set MSB %d: %d\n",
442 static void soc_pcm_apply_msb(struct snd_pcm_substream *substream)
444 struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
445 struct snd_soc_dai *cpu_dai;
446 struct snd_soc_dai *codec_dai;
447 struct snd_soc_pcm_stream *pcm_codec, *pcm_cpu;
448 int stream = substream->stream;
450 unsigned int bits = 0, cpu_bits = 0;
452 for_each_rtd_codec_dais(rtd, i, codec_dai) {
453 pcm_codec = snd_soc_dai_get_pcm_stream(codec_dai, stream);
455 if (pcm_codec->sig_bits == 0) {
459 bits = max(pcm_codec->sig_bits, bits);
462 for_each_rtd_cpu_dais(rtd, i, cpu_dai) {
463 pcm_cpu = snd_soc_dai_get_pcm_stream(cpu_dai, stream);
465 if (pcm_cpu->sig_bits == 0) {
469 cpu_bits = max(pcm_cpu->sig_bits, cpu_bits);
472 soc_pcm_set_msb(substream, bits);
473 soc_pcm_set_msb(substream, cpu_bits);
476 static void soc_pcm_hw_init(struct snd_pcm_hardware *hw)
478 hw->rates = UINT_MAX;
480 hw->rate_max = UINT_MAX;
481 hw->channels_min = 0;
482 hw->channels_max = UINT_MAX;
483 hw->formats = ULLONG_MAX;
486 static void soc_pcm_hw_update_rate(struct snd_pcm_hardware *hw,
487 struct snd_soc_pcm_stream *p)
489 hw->rates = snd_pcm_rate_mask_intersect(hw->rates, p->rates);
491 /* setup hw->rate_min/max via hw->rates first */
492 snd_pcm_hw_limit_rates(hw);
494 /* update hw->rate_min/max by snd_soc_pcm_stream */
495 hw->rate_min = max(hw->rate_min, p->rate_min);
496 hw->rate_max = min_not_zero(hw->rate_max, p->rate_max);
499 static void soc_pcm_hw_update_chan(struct snd_pcm_hardware *hw,
500 struct snd_soc_pcm_stream *p)
502 hw->channels_min = max(hw->channels_min, p->channels_min);
503 hw->channels_max = min(hw->channels_max, p->channels_max);
506 static void soc_pcm_hw_update_format(struct snd_pcm_hardware *hw,
507 struct snd_soc_pcm_stream *p)
509 hw->formats &= p->formats;
513 * snd_soc_runtime_calc_hw() - Calculate hw limits for a PCM stream
514 * @rtd: ASoC PCM runtime
515 * @hw: PCM hardware parameters (output)
516 * @stream: Direction of the PCM stream
518 * Calculates the subset of stream parameters supported by all DAIs
519 * associated with the PCM stream.
521 int snd_soc_runtime_calc_hw(struct snd_soc_pcm_runtime *rtd,
522 struct snd_pcm_hardware *hw, int stream)
524 struct snd_soc_dai *codec_dai;
525 struct snd_soc_dai *cpu_dai;
526 struct snd_soc_pcm_stream *codec_stream;
527 struct snd_soc_pcm_stream *cpu_stream;
528 unsigned int cpu_chan_min = 0, cpu_chan_max = UINT_MAX;
533 /* first calculate min/max only for CPUs in the DAI link */
534 for_each_rtd_cpu_dais(rtd, i, cpu_dai) {
537 * Skip CPUs which don't support the current stream type.
538 * Otherwise, since the rate, channel, and format values will
539 * zero in that case, we would have no usable settings left,
540 * causing the resulting setup to fail.
542 if (!snd_soc_dai_stream_valid(cpu_dai, stream))
545 cpu_stream = snd_soc_dai_get_pcm_stream(cpu_dai, stream);
547 soc_pcm_hw_update_chan(hw, cpu_stream);
548 soc_pcm_hw_update_rate(hw, cpu_stream);
549 soc_pcm_hw_update_format(hw, cpu_stream);
551 cpu_chan_min = hw->channels_min;
552 cpu_chan_max = hw->channels_max;
554 /* second calculate min/max only for CODECs in the DAI link */
555 for_each_rtd_codec_dais(rtd, i, codec_dai) {
558 * Skip CODECs which don't support the current stream type.
559 * Otherwise, since the rate, channel, and format values will
560 * zero in that case, we would have no usable settings left,
561 * causing the resulting setup to fail.
563 if (!snd_soc_dai_stream_valid(codec_dai, stream))
566 codec_stream = snd_soc_dai_get_pcm_stream(codec_dai, stream);
568 soc_pcm_hw_update_chan(hw, codec_stream);
569 soc_pcm_hw_update_rate(hw, codec_stream);
570 soc_pcm_hw_update_format(hw, codec_stream);
573 /* Verify both a valid CPU DAI and a valid CODEC DAI were found */
574 if (!hw->channels_min)
578 * chan min/max cannot be enforced if there are multiple CODEC DAIs
579 * connected to CPU DAI(s), use CPU DAI's directly and let
580 * channel allocation be fixed up later
582 if (rtd->num_codecs > 1) {
583 hw->channels_min = cpu_chan_min;
584 hw->channels_max = cpu_chan_max;
589 EXPORT_SYMBOL_GPL(snd_soc_runtime_calc_hw);
591 static void soc_pcm_init_runtime_hw(struct snd_pcm_substream *substream)
593 struct snd_pcm_hardware *hw = &substream->runtime->hw;
594 struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
595 u64 formats = hw->formats;
598 * At least one CPU and one CODEC should match. Otherwise, we should
599 * have bailed out on a higher level, since there would be no CPU or
600 * CODEC to support the transfer direction in that case.
602 snd_soc_runtime_calc_hw(rtd, hw, substream->stream);
605 hw->formats &= formats;
608 static int soc_pcm_components_open(struct snd_pcm_substream *substream)
610 struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
611 struct snd_soc_component *component;
614 for_each_rtd_components(rtd, i, component) {
615 ret = snd_soc_component_module_get_when_open(component, substream);
619 ret = snd_soc_component_open(component, substream);
627 static int soc_pcm_components_close(struct snd_pcm_substream *substream,
630 struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
631 struct snd_soc_component *component;
634 for_each_rtd_components(rtd, i, component) {
635 r = snd_soc_component_close(component, substream, rollback);
637 ret = r; /* use last ret */
639 snd_soc_component_module_put_when_close(component, substream, rollback);
645 static int soc_pcm_clean(struct snd_pcm_substream *substream, int rollback)
647 struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
648 struct snd_soc_component *component;
649 struct snd_soc_dai *dai;
652 mutex_lock_nested(&rtd->card->pcm_mutex, rtd->card->pcm_subclass);
655 snd_soc_runtime_deactivate(rtd, substream->stream);
657 for_each_rtd_dais(rtd, i, dai)
658 snd_soc_dai_shutdown(dai, substream, rollback);
660 snd_soc_link_shutdown(substream, rollback);
662 soc_pcm_components_close(substream, rollback);
665 mutex_unlock(&rtd->card->pcm_mutex);
667 snd_soc_pcm_component_pm_runtime_put(rtd, substream, rollback);
669 for_each_rtd_components(rtd, i, component)
670 if (!snd_soc_component_active(component))
671 pinctrl_pm_select_sleep_state(component->dev);
677 * Called by ALSA when a PCM substream is closed. Private data can be
678 * freed here. The cpu DAI, codec DAI, machine and components are also
681 static int soc_pcm_close(struct snd_pcm_substream *substream)
683 return soc_pcm_clean(substream, 0);
687 * Called by ALSA when a PCM substream is opened, the runtime->hw record is
688 * then initialized and any private data can be allocated. This also calls
689 * startup for the cpu DAI, component, machine and codec DAI.
691 static int soc_pcm_open(struct snd_pcm_substream *substream)
693 struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
694 struct snd_pcm_runtime *runtime = substream->runtime;
695 struct snd_soc_component *component;
696 struct snd_soc_dai *dai;
697 const char *codec_dai_name = "multicodec";
698 const char *cpu_dai_name = "multicpu";
701 for_each_rtd_components(rtd, i, component)
702 pinctrl_pm_select_default_state(component->dev);
704 ret = snd_soc_pcm_component_pm_runtime_get(rtd, substream);
708 mutex_lock_nested(&rtd->card->pcm_mutex, rtd->card->pcm_subclass);
710 ret = soc_pcm_components_open(substream);
714 ret = snd_soc_link_startup(substream);
718 /* startup the audio subsystem */
719 for_each_rtd_dais(rtd, i, dai) {
720 ret = snd_soc_dai_startup(dai, substream);
724 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
730 /* Dynamic PCM DAI links compat checks use dynamic capabilities */
731 if (rtd->dai_link->dynamic || rtd->dai_link->no_pcm)
734 /* Check that the codec and cpu DAIs are compatible */
735 soc_pcm_init_runtime_hw(substream);
737 if (rtd->num_codecs == 1)
738 codec_dai_name = asoc_rtd_to_codec(rtd, 0)->name;
740 if (rtd->num_cpus == 1)
741 cpu_dai_name = asoc_rtd_to_cpu(rtd, 0)->name;
743 if (soc_pcm_has_symmetry(substream))
744 runtime->hw.info |= SNDRV_PCM_INFO_JOINT_DUPLEX;
747 if (!runtime->hw.rates) {
748 printk(KERN_ERR "ASoC: %s <-> %s No matching rates\n",
749 codec_dai_name, cpu_dai_name);
752 if (!runtime->hw.formats) {
753 printk(KERN_ERR "ASoC: %s <-> %s No matching formats\n",
754 codec_dai_name, cpu_dai_name);
757 if (!runtime->hw.channels_min || !runtime->hw.channels_max ||
758 runtime->hw.channels_min > runtime->hw.channels_max) {
759 printk(KERN_ERR "ASoC: %s <-> %s No matching channels\n",
760 codec_dai_name, cpu_dai_name);
764 soc_pcm_apply_msb(substream);
766 /* Symmetry only applies if we've already got an active stream. */
767 for_each_rtd_dais(rtd, i, dai) {
768 if (snd_soc_dai_active(dai)) {
769 ret = soc_pcm_apply_symmetry(substream, dai);
775 pr_debug("ASoC: %s <-> %s info:\n",
776 codec_dai_name, cpu_dai_name);
777 pr_debug("ASoC: rate mask 0x%x\n", runtime->hw.rates);
778 pr_debug("ASoC: min ch %d max ch %d\n", runtime->hw.channels_min,
779 runtime->hw.channels_max);
780 pr_debug("ASoC: min rate %d max rate %d\n", runtime->hw.rate_min,
781 runtime->hw.rate_max);
783 snd_soc_runtime_activate(rtd, substream->stream);
786 mutex_unlock(&rtd->card->pcm_mutex);
789 soc_pcm_clean(substream, 1);
794 static void codec2codec_close_delayed_work(struct snd_soc_pcm_runtime *rtd)
797 * Currently nothing to do for c2c links
798 * Since c2c links are internal nodes in the DAPM graph and
799 * don't interface with the outside world or application layer
800 * we don't have to do any special handling on close.
805 * Called by ALSA when the PCM substream is prepared, can set format, sample
806 * rate, etc. This function is non atomic and can be called multiple times,
807 * it can refer to the runtime info.
809 static int soc_pcm_prepare(struct snd_pcm_substream *substream)
811 struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
812 struct snd_soc_dai *dai;
815 mutex_lock_nested(&rtd->card->pcm_mutex, rtd->card->pcm_subclass);
817 ret = snd_soc_link_prepare(substream);
821 ret = snd_soc_pcm_component_prepare(substream);
825 ret = snd_soc_pcm_dai_prepare(substream);
827 dev_err(rtd->dev, "ASoC: DAI prepare error: %d\n", ret);
831 /* cancel any delayed stream shutdown that is pending */
832 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
835 cancel_delayed_work(&rtd->delayed_work);
838 snd_soc_dapm_stream_event(rtd, substream->stream,
839 SND_SOC_DAPM_STREAM_START);
841 for_each_rtd_dais(rtd, i, dai)
842 snd_soc_dai_digital_mute(dai, 0, substream->stream);
845 mutex_unlock(&rtd->card->pcm_mutex);
849 static void soc_pcm_codec_params_fixup(struct snd_pcm_hw_params *params,
852 struct snd_interval *interval;
853 int channels = hweight_long(mask);
855 interval = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
856 interval->min = channels;
857 interval->max = channels;
860 static int soc_pcm_hw_clean(struct snd_pcm_substream *substream, int rollback)
862 struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
863 struct snd_soc_dai *dai;
866 mutex_lock_nested(&rtd->card->pcm_mutex, rtd->card->pcm_subclass);
868 /* clear the corresponding DAIs parameters when going to be inactive */
869 for_each_rtd_dais(rtd, i, dai) {
870 int active = snd_soc_dai_stream_active(dai, substream->stream);
872 if (snd_soc_dai_active(dai) == 1)
873 soc_pcm_set_dai_params(dai, NULL);
876 snd_soc_dai_digital_mute(dai, 1, substream->stream);
879 /* run the stream event */
880 snd_soc_dapm_stream_stop(rtd, substream->stream);
882 /* free any machine hw params */
883 snd_soc_link_hw_free(substream, rollback);
885 /* free any component resources */
886 snd_soc_pcm_component_hw_free(substream, rollback);
888 /* now free hw params for the DAIs */
889 for_each_rtd_dais(rtd, i, dai) {
890 if (!snd_soc_dai_stream_valid(dai, substream->stream))
893 snd_soc_dai_hw_free(dai, substream, rollback);
896 mutex_unlock(&rtd->card->pcm_mutex);
901 * Frees resources allocated by hw_params, can be called multiple times
903 static int soc_pcm_hw_free(struct snd_pcm_substream *substream)
905 return soc_pcm_hw_clean(substream, 0);
909 * Called by ALSA when the hardware params are set by application. This
910 * function can also be called multiple times and can allocate buffers
911 * (using snd_pcm_lib_* ). It's non-atomic.
913 static int soc_pcm_hw_params(struct snd_pcm_substream *substream,
914 struct snd_pcm_hw_params *params)
916 struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
917 struct snd_soc_dai *cpu_dai;
918 struct snd_soc_dai *codec_dai;
921 mutex_lock_nested(&rtd->card->pcm_mutex, rtd->card->pcm_subclass);
923 ret = soc_pcm_params_symmetry(substream, params);
927 ret = snd_soc_link_hw_params(substream, params);
931 for_each_rtd_codec_dais(rtd, i, codec_dai) {
932 struct snd_pcm_hw_params codec_params;
935 * Skip CODECs which don't support the current stream type,
936 * the idea being that if a CODEC is not used for the currently
937 * set up transfer direction, it should not need to be
938 * configured, especially since the configuration used might
939 * not even be supported by that CODEC. There may be cases
940 * however where a CODEC needs to be set up although it is
941 * actually not being used for the transfer, e.g. if a
942 * capture-only CODEC is acting as an LRCLK and/or BCLK master
943 * for the DAI link including a playback-only CODEC.
944 * If this becomes necessary, we will have to augment the
945 * machine driver setup with information on how to act, so
946 * we can do the right thing here.
948 if (!snd_soc_dai_stream_valid(codec_dai, substream->stream))
951 /* copy params for each codec */
952 codec_params = *params;
954 /* fixup params based on TDM slot masks */
955 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
957 soc_pcm_codec_params_fixup(&codec_params,
960 if (substream->stream == SNDRV_PCM_STREAM_CAPTURE &&
962 soc_pcm_codec_params_fixup(&codec_params,
965 ret = snd_soc_dai_hw_params(codec_dai, substream,
970 soc_pcm_set_dai_params(codec_dai, &codec_params);
971 snd_soc_dapm_update_dai(substream, &codec_params, codec_dai);
974 for_each_rtd_cpu_dais(rtd, i, cpu_dai) {
976 * Skip CPUs which don't support the current stream
977 * type. See soc_pcm_init_runtime_hw() for more details
979 if (!snd_soc_dai_stream_valid(cpu_dai, substream->stream))
982 ret = snd_soc_dai_hw_params(cpu_dai, substream, params);
986 /* store the parameters for each DAI */
987 soc_pcm_set_dai_params(cpu_dai, params);
988 snd_soc_dapm_update_dai(substream, params, cpu_dai);
991 ret = snd_soc_pcm_component_hw_params(substream, params);
993 mutex_unlock(&rtd->card->pcm_mutex);
996 soc_pcm_hw_clean(substream, 1);
1001 static int soc_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
1003 int ret = -EINVAL, _ret = 0;
1007 case SNDRV_PCM_TRIGGER_START:
1008 case SNDRV_PCM_TRIGGER_RESUME:
1009 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
1010 ret = snd_soc_link_trigger(substream, cmd, 0);
1014 ret = snd_soc_pcm_component_trigger(substream, cmd, 0);
1018 ret = snd_soc_pcm_dai_trigger(substream, cmd, 0);
1027 case SNDRV_PCM_TRIGGER_START:
1028 cmd = SNDRV_PCM_TRIGGER_STOP;
1030 case SNDRV_PCM_TRIGGER_RESUME:
1031 cmd = SNDRV_PCM_TRIGGER_SUSPEND;
1033 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
1034 cmd = SNDRV_PCM_TRIGGER_PAUSE_PUSH;
1040 case SNDRV_PCM_TRIGGER_STOP:
1041 case SNDRV_PCM_TRIGGER_SUSPEND:
1042 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
1043 ret = snd_soc_pcm_dai_trigger(substream, cmd, rollback);
1047 ret = snd_soc_pcm_component_trigger(substream, cmd, rollback);
1051 ret = snd_soc_link_trigger(substream, cmd, rollback);
1062 * soc level wrapper for pointer callback
1063 * If cpu_dai, codec_dai, component driver has the delay callback, then
1064 * the runtime->delay will be updated accordingly.
1066 static snd_pcm_uframes_t soc_pcm_pointer(struct snd_pcm_substream *substream)
1068 struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
1069 struct snd_soc_dai *cpu_dai;
1070 struct snd_soc_dai *codec_dai;
1071 struct snd_pcm_runtime *runtime = substream->runtime;
1072 snd_pcm_uframes_t offset = 0;
1073 snd_pcm_sframes_t delay = 0;
1074 snd_pcm_sframes_t codec_delay = 0;
1075 snd_pcm_sframes_t cpu_delay = 0;
1078 /* clearing the previous total delay */
1081 offset = snd_soc_pcm_component_pointer(substream);
1083 /* base delay if assigned in pointer callback */
1084 delay = runtime->delay;
1086 for_each_rtd_cpu_dais(rtd, i, cpu_dai) {
1087 cpu_delay = max(cpu_delay,
1088 snd_soc_dai_delay(cpu_dai, substream));
1092 for_each_rtd_codec_dais(rtd, i, codec_dai) {
1093 codec_delay = max(codec_delay,
1094 snd_soc_dai_delay(codec_dai, substream));
1096 delay += codec_delay;
1098 runtime->delay = delay;
1103 /* connect a FE and BE */
1104 static int dpcm_be_connect(struct snd_soc_pcm_runtime *fe,
1105 struct snd_soc_pcm_runtime *be, int stream)
1107 struct snd_soc_dpcm *dpcm;
1108 unsigned long flags;
1110 /* only add new dpcms */
1111 for_each_dpcm_be(fe, stream, dpcm) {
1112 if (dpcm->be == be && dpcm->fe == fe)
1116 dpcm = kzalloc(sizeof(struct snd_soc_dpcm), GFP_KERNEL);
1122 be->dpcm[stream].runtime = fe->dpcm[stream].runtime;
1123 dpcm->state = SND_SOC_DPCM_LINK_STATE_NEW;
1124 spin_lock_irqsave(&fe->card->dpcm_lock, flags);
1125 list_add(&dpcm->list_be, &fe->dpcm[stream].be_clients);
1126 list_add(&dpcm->list_fe, &be->dpcm[stream].fe_clients);
1127 spin_unlock_irqrestore(&fe->card->dpcm_lock, flags);
1129 dev_dbg(fe->dev, "connected new DPCM %s path %s %s %s\n",
1130 stream ? "capture" : "playback", fe->dai_link->name,
1131 stream ? "<-" : "->", be->dai_link->name);
1133 dpcm_create_debugfs_state(dpcm, stream);
1138 /* reparent a BE onto another FE */
1139 static void dpcm_be_reparent(struct snd_soc_pcm_runtime *fe,
1140 struct snd_soc_pcm_runtime *be, int stream)
1142 struct snd_soc_dpcm *dpcm;
1143 struct snd_pcm_substream *fe_substream, *be_substream;
1145 /* reparent if BE is connected to other FEs */
1146 if (!be->dpcm[stream].users)
1149 be_substream = snd_soc_dpcm_get_substream(be, stream);
1151 for_each_dpcm_fe(be, stream, dpcm) {
1155 dev_dbg(fe->dev, "reparent %s path %s %s %s\n",
1156 stream ? "capture" : "playback",
1157 dpcm->fe->dai_link->name,
1158 stream ? "<-" : "->", dpcm->be->dai_link->name);
1160 fe_substream = snd_soc_dpcm_get_substream(dpcm->fe, stream);
1161 be_substream->runtime = fe_substream->runtime;
1166 /* disconnect a BE and FE */
1167 void dpcm_be_disconnect(struct snd_soc_pcm_runtime *fe, int stream)
1169 struct snd_soc_dpcm *dpcm, *d;
1170 unsigned long flags;
1172 for_each_dpcm_be_safe(fe, stream, dpcm, d) {
1173 dev_dbg(fe->dev, "ASoC: BE %s disconnect check for %s\n",
1174 stream ? "capture" : "playback",
1175 dpcm->be->dai_link->name);
1177 if (dpcm->state != SND_SOC_DPCM_LINK_STATE_FREE)
1180 dev_dbg(fe->dev, "freed DSP %s path %s %s %s\n",
1181 stream ? "capture" : "playback", fe->dai_link->name,
1182 stream ? "<-" : "->", dpcm->be->dai_link->name);
1184 /* BEs still alive need new FE */
1185 dpcm_be_reparent(fe, dpcm->be, stream);
1187 dpcm_remove_debugfs_state(dpcm);
1189 spin_lock_irqsave(&fe->card->dpcm_lock, flags);
1190 list_del(&dpcm->list_be);
1191 list_del(&dpcm->list_fe);
1192 spin_unlock_irqrestore(&fe->card->dpcm_lock, flags);
1197 /* get BE for DAI widget and stream */
1198 static struct snd_soc_pcm_runtime *dpcm_get_be(struct snd_soc_card *card,
1199 struct snd_soc_dapm_widget *widget, int stream)
1201 struct snd_soc_pcm_runtime *be;
1202 struct snd_soc_dapm_widget *w;
1203 struct snd_soc_dai *dai;
1206 dev_dbg(card->dev, "ASoC: find BE for widget %s\n", widget->name);
1208 for_each_card_rtds(card, be) {
1210 if (!be->dai_link->no_pcm)
1213 for_each_rtd_dais(be, i, dai) {
1214 w = snd_soc_dai_get_widget(dai, stream);
1216 dev_dbg(card->dev, "ASoC: try BE : %s\n",
1217 w ? w->name : "(not set)");
1224 /* Widget provided is not a BE */
1228 static int widget_in_list(struct snd_soc_dapm_widget_list *list,
1229 struct snd_soc_dapm_widget *widget)
1231 struct snd_soc_dapm_widget *w;
1234 for_each_dapm_widgets(list, i, w)
1241 static bool dpcm_end_walk_at_be(struct snd_soc_dapm_widget *widget,
1242 enum snd_soc_dapm_direction dir)
1244 struct snd_soc_card *card = widget->dapm->card;
1245 struct snd_soc_pcm_runtime *rtd;
1248 /* adjust dir to stream */
1249 if (dir == SND_SOC_DAPM_DIR_OUT)
1250 stream = SNDRV_PCM_STREAM_PLAYBACK;
1252 stream = SNDRV_PCM_STREAM_CAPTURE;
1254 rtd = dpcm_get_be(card, widget, stream);
1261 int dpcm_path_get(struct snd_soc_pcm_runtime *fe,
1262 int stream, struct snd_soc_dapm_widget_list **list)
1264 struct snd_soc_dai *cpu_dai = asoc_rtd_to_cpu(fe, 0);
1267 if (fe->num_cpus > 1) {
1269 "%s doesn't support Multi CPU yet\n", __func__);
1273 /* get number of valid DAI paths and their widgets */
1274 paths = snd_soc_dapm_dai_get_connected_widgets(cpu_dai, stream, list,
1275 fe->card->component_chaining ?
1276 NULL : dpcm_end_walk_at_be);
1278 dev_dbg(fe->dev, "ASoC: found %d audio %s paths\n", paths,
1279 stream ? "capture" : "playback");
1284 void dpcm_path_put(struct snd_soc_dapm_widget_list **list)
1286 snd_soc_dapm_dai_free_widgets(list);
1289 static bool dpcm_be_is_active(struct snd_soc_dpcm *dpcm, int stream,
1290 struct snd_soc_dapm_widget_list *list)
1292 struct snd_soc_dapm_widget *widget;
1293 struct snd_soc_dai *dai;
1296 /* is there a valid DAI widget for this BE */
1297 for_each_rtd_dais(dpcm->be, i, dai) {
1298 widget = snd_soc_dai_get_widget(dai, stream);
1301 * The BE is pruned only if none of the dai
1302 * widgets are in the active list.
1304 if (widget && widget_in_list(list, widget))
1311 static int dpcm_prune_paths(struct snd_soc_pcm_runtime *fe, int stream,
1312 struct snd_soc_dapm_widget_list **list_)
1314 struct snd_soc_dpcm *dpcm;
1317 /* Destroy any old FE <--> BE connections */
1318 for_each_dpcm_be(fe, stream, dpcm) {
1319 if (dpcm_be_is_active(dpcm, stream, *list_))
1322 dev_dbg(fe->dev, "ASoC: pruning %s BE %s for %s\n",
1323 stream ? "capture" : "playback",
1324 dpcm->be->dai_link->name, fe->dai_link->name);
1325 dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE;
1326 dpcm_set_be_update_state(dpcm->be, stream, SND_SOC_DPCM_UPDATE_BE);
1330 dev_dbg(fe->dev, "ASoC: found %d old BE paths for pruning\n", prune);
1334 static int dpcm_add_paths(struct snd_soc_pcm_runtime *fe, int stream,
1335 struct snd_soc_dapm_widget_list **list_)
1337 struct snd_soc_card *card = fe->card;
1338 struct snd_soc_dapm_widget_list *list = *list_;
1339 struct snd_soc_pcm_runtime *be;
1340 struct snd_soc_dapm_widget *widget;
1341 int i, new = 0, err;
1343 /* Create any new FE <--> BE connections */
1344 for_each_dapm_widgets(list, i, widget) {
1346 switch (widget->id) {
1347 case snd_soc_dapm_dai_in:
1348 if (stream != SNDRV_PCM_STREAM_PLAYBACK)
1351 case snd_soc_dapm_dai_out:
1352 if (stream != SNDRV_PCM_STREAM_CAPTURE)
1359 /* is there a valid BE rtd for this widget */
1360 be = dpcm_get_be(card, widget, stream);
1362 dev_dbg(fe->dev, "ASoC: no BE found for %s\n",
1367 /* don't connect if FE is not running */
1368 if (!fe->dpcm[stream].runtime && !fe->fe_compr)
1371 /* newly connected FE and BE */
1372 err = dpcm_be_connect(fe, be, stream);
1374 dev_err(fe->dev, "ASoC: can't connect %s\n",
1377 } else if (err == 0) /* already connected */
1381 dpcm_set_be_update_state(be, stream, SND_SOC_DPCM_UPDATE_BE);
1385 dev_dbg(fe->dev, "ASoC: found %d new BE paths\n", new);
1390 * Find the corresponding BE DAIs that source or sink audio to this
1393 int dpcm_process_paths(struct snd_soc_pcm_runtime *fe,
1394 int stream, struct snd_soc_dapm_widget_list **list, int new)
1397 return dpcm_add_paths(fe, stream, list);
1399 return dpcm_prune_paths(fe, stream, list);
1402 void dpcm_clear_pending_state(struct snd_soc_pcm_runtime *fe, int stream)
1404 struct snd_soc_dpcm *dpcm;
1405 unsigned long flags;
1407 spin_lock_irqsave(&fe->card->dpcm_lock, flags);
1408 for_each_dpcm_be(fe, stream, dpcm)
1409 dpcm_set_be_update_state(dpcm->be, stream, SND_SOC_DPCM_UPDATE_NO);
1410 spin_unlock_irqrestore(&fe->card->dpcm_lock, flags);
1413 static void dpcm_be_dai_startup_unwind(struct snd_soc_pcm_runtime *fe,
1416 struct snd_soc_dpcm *dpcm;
1418 /* disable any enabled and non active backends */
1419 for_each_dpcm_be(fe, stream, dpcm) {
1421 struct snd_soc_pcm_runtime *be = dpcm->be;
1422 struct snd_pcm_substream *be_substream =
1423 snd_soc_dpcm_get_substream(be, stream);
1425 if (be->dpcm[stream].users == 0)
1426 dev_err(be->dev, "ASoC: no users %s at close - state %d\n",
1427 stream ? "capture" : "playback",
1428 be->dpcm[stream].state);
1430 if (--be->dpcm[stream].users != 0)
1433 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN)
1436 soc_pcm_close(be_substream);
1437 be_substream->runtime = NULL;
1438 be->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
1442 int dpcm_be_dai_startup(struct snd_soc_pcm_runtime *fe, int stream)
1444 struct snd_soc_dpcm *dpcm;
1447 /* only startup BE DAIs that are either sinks or sources to this FE DAI */
1448 for_each_dpcm_be(fe, stream, dpcm) {
1450 struct snd_soc_pcm_runtime *be = dpcm->be;
1451 struct snd_pcm_substream *be_substream =
1452 snd_soc_dpcm_get_substream(be, stream);
1454 if (!be_substream) {
1455 dev_err(be->dev, "ASoC: no backend %s stream\n",
1456 stream ? "capture" : "playback");
1460 /* is this op for this BE ? */
1461 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1464 /* first time the dpcm is open ? */
1465 if (be->dpcm[stream].users == DPCM_MAX_BE_USERS)
1466 dev_err(be->dev, "ASoC: too many users %s at open %d\n",
1467 stream ? "capture" : "playback",
1468 be->dpcm[stream].state);
1470 if (be->dpcm[stream].users++ != 0)
1473 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_NEW) &&
1474 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_CLOSE))
1477 dev_dbg(be->dev, "ASoC: open %s BE %s\n",
1478 stream ? "capture" : "playback", be->dai_link->name);
1480 be_substream->runtime = be->dpcm[stream].runtime;
1481 err = soc_pcm_open(be_substream);
1483 dev_err(be->dev, "ASoC: BE open failed %d\n", err);
1484 be->dpcm[stream].users--;
1485 if (be->dpcm[stream].users < 0)
1486 dev_err(be->dev, "ASoC: no users %s at unwind %d\n",
1487 stream ? "capture" : "playback",
1488 be->dpcm[stream].state);
1490 be->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
1494 be->dpcm[stream].state = SND_SOC_DPCM_STATE_OPEN;
1501 /* disable any enabled and non active backends */
1502 for_each_dpcm_be_rollback(fe, stream, dpcm) {
1503 struct snd_soc_pcm_runtime *be = dpcm->be;
1504 struct snd_pcm_substream *be_substream =
1505 snd_soc_dpcm_get_substream(be, stream);
1507 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1510 if (be->dpcm[stream].users == 0)
1511 dev_err(be->dev, "ASoC: no users %s at close %d\n",
1512 stream ? "capture" : "playback",
1513 be->dpcm[stream].state);
1515 if (--be->dpcm[stream].users != 0)
1518 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN)
1521 soc_pcm_close(be_substream);
1522 be_substream->runtime = NULL;
1523 be->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
1529 static void dpcm_init_runtime_hw(struct snd_pcm_runtime *runtime,
1530 struct snd_soc_pcm_stream *stream)
1532 struct snd_pcm_hardware *hw = &runtime->hw;
1534 soc_pcm_hw_init(hw);
1535 soc_pcm_hw_update_rate(hw, stream);
1536 soc_pcm_hw_update_chan(hw, stream);
1537 soc_pcm_hw_update_format(hw, stream);
1540 static void dpcm_runtime_merge_format(struct snd_pcm_substream *substream,
1541 struct snd_pcm_runtime *runtime)
1543 struct snd_soc_pcm_runtime *fe = asoc_substream_to_rtd(substream);
1544 struct snd_pcm_hardware *hw = &runtime->hw;
1545 struct snd_soc_dpcm *dpcm;
1546 struct snd_soc_dai *dai;
1547 int stream = substream->stream;
1549 if (!fe->dai_link->dpcm_merged_format)
1553 * It returns merged BE codec format
1554 * if FE want to use it (= dpcm_merged_format)
1557 for_each_dpcm_be(fe, stream, dpcm) {
1558 struct snd_soc_pcm_runtime *be = dpcm->be;
1559 struct snd_soc_pcm_stream *codec_stream;
1562 for_each_rtd_codec_dais(be, i, dai) {
1564 * Skip CODECs which don't support the current stream
1565 * type. See soc_pcm_init_runtime_hw() for more details
1567 if (!snd_soc_dai_stream_valid(dai, stream))
1570 codec_stream = snd_soc_dai_get_pcm_stream(dai, stream);
1572 soc_pcm_hw_update_format(hw, codec_stream);
1577 static void dpcm_runtime_merge_chan(struct snd_pcm_substream *substream,
1578 struct snd_pcm_runtime *runtime)
1580 struct snd_soc_pcm_runtime *fe = asoc_substream_to_rtd(substream);
1581 struct snd_pcm_hardware *hw = &runtime->hw;
1582 struct snd_soc_dpcm *dpcm;
1583 int stream = substream->stream;
1585 if (!fe->dai_link->dpcm_merged_chan)
1589 * It returns merged BE codec channel;
1590 * if FE want to use it (= dpcm_merged_chan)
1593 for_each_dpcm_be(fe, stream, dpcm) {
1594 struct snd_soc_pcm_runtime *be = dpcm->be;
1595 struct snd_soc_pcm_stream *codec_stream;
1596 struct snd_soc_pcm_stream *cpu_stream;
1597 struct snd_soc_dai *dai;
1600 for_each_rtd_cpu_dais(be, i, dai) {
1602 * Skip CPUs which don't support the current stream
1603 * type. See soc_pcm_init_runtime_hw() for more details
1605 if (!snd_soc_dai_stream_valid(dai, stream))
1608 cpu_stream = snd_soc_dai_get_pcm_stream(dai, stream);
1610 soc_pcm_hw_update_chan(hw, cpu_stream);
1614 * chan min/max cannot be enforced if there are multiple CODEC
1615 * DAIs connected to a single CPU DAI, use CPU DAI's directly
1617 if (be->num_codecs == 1) {
1618 codec_stream = snd_soc_dai_get_pcm_stream(asoc_rtd_to_codec(be, 0), stream);
1620 soc_pcm_hw_update_chan(hw, codec_stream);
1625 static void dpcm_runtime_merge_rate(struct snd_pcm_substream *substream,
1626 struct snd_pcm_runtime *runtime)
1628 struct snd_soc_pcm_runtime *fe = asoc_substream_to_rtd(substream);
1629 struct snd_pcm_hardware *hw = &runtime->hw;
1630 struct snd_soc_dpcm *dpcm;
1631 int stream = substream->stream;
1633 if (!fe->dai_link->dpcm_merged_rate)
1637 * It returns merged BE codec channel;
1638 * if FE want to use it (= dpcm_merged_chan)
1641 for_each_dpcm_be(fe, stream, dpcm) {
1642 struct snd_soc_pcm_runtime *be = dpcm->be;
1643 struct snd_soc_pcm_stream *pcm;
1644 struct snd_soc_dai *dai;
1647 for_each_rtd_dais(be, i, dai) {
1649 * Skip DAIs which don't support the current stream
1650 * type. See soc_pcm_init_runtime_hw() for more details
1652 if (!snd_soc_dai_stream_valid(dai, stream))
1655 pcm = snd_soc_dai_get_pcm_stream(dai, stream);
1657 soc_pcm_hw_update_rate(hw, pcm);
1662 static void dpcm_set_fe_runtime(struct snd_pcm_substream *substream)
1664 struct snd_pcm_runtime *runtime = substream->runtime;
1665 struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
1666 struct snd_soc_dai *cpu_dai;
1669 for_each_rtd_cpu_dais(rtd, i, cpu_dai) {
1671 * Skip CPUs which don't support the current stream
1672 * type. See soc_pcm_init_runtime_hw() for more details
1674 if (!snd_soc_dai_stream_valid(cpu_dai, substream->stream))
1677 dpcm_init_runtime_hw(runtime,
1678 snd_soc_dai_get_pcm_stream(cpu_dai,
1679 substream->stream));
1682 dpcm_runtime_merge_format(substream, runtime);
1683 dpcm_runtime_merge_chan(substream, runtime);
1684 dpcm_runtime_merge_rate(substream, runtime);
1687 static int dpcm_apply_symmetry(struct snd_pcm_substream *fe_substream,
1690 struct snd_soc_dpcm *dpcm;
1691 struct snd_soc_pcm_runtime *fe = asoc_substream_to_rtd(fe_substream);
1692 struct snd_soc_dai *fe_cpu_dai;
1696 /* apply symmetry for FE */
1697 if (soc_pcm_has_symmetry(fe_substream))
1698 fe_substream->runtime->hw.info |= SNDRV_PCM_INFO_JOINT_DUPLEX;
1700 for_each_rtd_cpu_dais (fe, i, fe_cpu_dai) {
1701 /* Symmetry only applies if we've got an active stream. */
1702 if (snd_soc_dai_active(fe_cpu_dai)) {
1703 err = soc_pcm_apply_symmetry(fe_substream, fe_cpu_dai);
1709 /* apply symmetry for BE */
1710 for_each_dpcm_be(fe, stream, dpcm) {
1711 struct snd_soc_pcm_runtime *be = dpcm->be;
1712 struct snd_pcm_substream *be_substream =
1713 snd_soc_dpcm_get_substream(be, stream);
1714 struct snd_soc_pcm_runtime *rtd;
1715 struct snd_soc_dai *dai;
1718 /* A backend may not have the requested substream */
1722 rtd = asoc_substream_to_rtd(be_substream);
1723 if (rtd->dai_link->be_hw_params_fixup)
1726 if (soc_pcm_has_symmetry(be_substream))
1727 be_substream->runtime->hw.info |= SNDRV_PCM_INFO_JOINT_DUPLEX;
1729 /* Symmetry only applies if we've got an active stream. */
1730 for_each_rtd_dais(rtd, i, dai) {
1731 if (snd_soc_dai_active(dai)) {
1732 err = soc_pcm_apply_symmetry(fe_substream, dai);
1742 static int dpcm_fe_dai_startup(struct snd_pcm_substream *fe_substream)
1744 struct snd_soc_pcm_runtime *fe = asoc_substream_to_rtd(fe_substream);
1745 int stream = fe_substream->stream, ret = 0;
1747 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE);
1749 ret = dpcm_be_dai_startup(fe, stream);
1751 dev_err(fe->dev,"ASoC: failed to start some BEs %d\n", ret);
1755 dev_dbg(fe->dev, "ASoC: open FE %s\n", fe->dai_link->name);
1757 /* start the DAI frontend */
1758 ret = soc_pcm_open(fe_substream);
1760 dev_err(fe->dev,"ASoC: failed to start FE %d\n", ret);
1764 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_OPEN;
1766 dpcm_set_fe_runtime(fe_substream);
1768 ret = dpcm_apply_symmetry(fe_substream, stream);
1770 dev_err(fe->dev, "ASoC: failed to apply dpcm symmetry %d\n",
1775 dpcm_be_dai_startup_unwind(fe, stream);
1777 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
1781 int dpcm_be_dai_shutdown(struct snd_soc_pcm_runtime *fe, int stream)
1783 struct snd_soc_dpcm *dpcm;
1785 /* only shutdown BEs that are either sinks or sources to this FE DAI */
1786 for_each_dpcm_be(fe, stream, dpcm) {
1788 struct snd_soc_pcm_runtime *be = dpcm->be;
1789 struct snd_pcm_substream *be_substream =
1790 snd_soc_dpcm_get_substream(be, stream);
1792 /* is this op for this BE ? */
1793 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1796 if (be->dpcm[stream].users == 0)
1797 dev_err(be->dev, "ASoC: no users %s at close - state %d\n",
1798 stream ? "capture" : "playback",
1799 be->dpcm[stream].state);
1801 if (--be->dpcm[stream].users != 0)
1804 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE) &&
1805 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN)) {
1806 soc_pcm_hw_free(be_substream);
1807 be->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_FREE;
1810 dev_dbg(be->dev, "ASoC: close BE %s\n",
1811 be->dai_link->name);
1813 soc_pcm_close(be_substream);
1814 be_substream->runtime = NULL;
1816 be->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
1821 static int dpcm_fe_dai_shutdown(struct snd_pcm_substream *substream)
1823 struct snd_soc_pcm_runtime *fe = asoc_substream_to_rtd(substream);
1824 int stream = substream->stream;
1826 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE);
1828 /* shutdown the BEs */
1829 dpcm_be_dai_shutdown(fe, stream);
1831 dev_dbg(fe->dev, "ASoC: close FE %s\n", fe->dai_link->name);
1833 /* now shutdown the frontend */
1834 soc_pcm_close(substream);
1836 /* run the stream stop event */
1837 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_STOP);
1839 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
1840 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
1844 int dpcm_be_dai_hw_free(struct snd_soc_pcm_runtime *fe, int stream)
1846 struct snd_soc_dpcm *dpcm;
1848 /* only hw_params backends that are either sinks or sources
1849 * to this frontend DAI */
1850 for_each_dpcm_be(fe, stream, dpcm) {
1852 struct snd_soc_pcm_runtime *be = dpcm->be;
1853 struct snd_pcm_substream *be_substream =
1854 snd_soc_dpcm_get_substream(be, stream);
1856 /* is this op for this BE ? */
1857 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1860 /* only free hw when no longer used - check all FEs */
1861 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
1864 /* do not free hw if this BE is used by other FE */
1865 if (be->dpcm[stream].users > 1)
1868 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
1869 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PREPARE) &&
1870 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE) &&
1871 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PAUSED) &&
1872 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP) &&
1873 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_SUSPEND))
1876 dev_dbg(be->dev, "ASoC: hw_free BE %s\n",
1877 be->dai_link->name);
1879 soc_pcm_hw_free(be_substream);
1881 be->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_FREE;
1887 static int dpcm_fe_dai_hw_free(struct snd_pcm_substream *substream)
1889 struct snd_soc_pcm_runtime *fe = asoc_substream_to_rtd(substream);
1890 int err, stream = substream->stream;
1892 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
1893 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE);
1895 dev_dbg(fe->dev, "ASoC: hw_free FE %s\n", fe->dai_link->name);
1897 /* call hw_free on the frontend */
1898 err = soc_pcm_hw_free(substream);
1900 dev_err(fe->dev,"ASoC: hw_free FE %s failed\n",
1901 fe->dai_link->name);
1903 /* only hw_params backends that are either sinks or sources
1904 * to this frontend DAI */
1905 err = dpcm_be_dai_hw_free(fe, stream);
1907 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_FREE;
1908 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
1910 mutex_unlock(&fe->card->mutex);
1914 int dpcm_be_dai_hw_params(struct snd_soc_pcm_runtime *fe, int stream)
1916 struct snd_soc_dpcm *dpcm;
1919 for_each_dpcm_be(fe, stream, dpcm) {
1921 struct snd_soc_pcm_runtime *be = dpcm->be;
1922 struct snd_pcm_substream *be_substream =
1923 snd_soc_dpcm_get_substream(be, stream);
1925 /* is this op for this BE ? */
1926 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1929 /* copy params for each dpcm */
1930 memcpy(&dpcm->hw_params, &fe->dpcm[stream].hw_params,
1931 sizeof(struct snd_pcm_hw_params));
1933 /* perform any hw_params fixups */
1934 ret = snd_soc_link_be_hw_params_fixup(be, &dpcm->hw_params);
1938 /* copy the fixed-up hw params for BE dai */
1939 memcpy(&be->dpcm[stream].hw_params, &dpcm->hw_params,
1940 sizeof(struct snd_pcm_hw_params));
1942 /* only allow hw_params() if no connected FEs are running */
1943 if (!snd_soc_dpcm_can_be_params(fe, be, stream))
1946 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN) &&
1947 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
1948 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE))
1951 dev_dbg(be->dev, "ASoC: hw_params BE %s\n",
1952 be->dai_link->name);
1954 ret = soc_pcm_hw_params(be_substream, &dpcm->hw_params);
1956 dev_err(dpcm->be->dev,
1957 "ASoC: hw_params BE failed %d\n", ret);
1961 be->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_PARAMS;
1966 /* disable any enabled and non active backends */
1967 for_each_dpcm_be_rollback(fe, stream, dpcm) {
1968 struct snd_soc_pcm_runtime *be = dpcm->be;
1969 struct snd_pcm_substream *be_substream =
1970 snd_soc_dpcm_get_substream(be, stream);
1972 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1975 /* only allow hw_free() if no connected FEs are running */
1976 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
1979 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN) &&
1980 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
1981 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE) &&
1982 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP))
1985 soc_pcm_hw_free(be_substream);
1991 static int dpcm_fe_dai_hw_params(struct snd_pcm_substream *substream,
1992 struct snd_pcm_hw_params *params)
1994 struct snd_soc_pcm_runtime *fe = asoc_substream_to_rtd(substream);
1995 int ret, stream = substream->stream;
1997 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
1998 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE);
2000 memcpy(&fe->dpcm[stream].hw_params, params,
2001 sizeof(struct snd_pcm_hw_params));
2002 ret = dpcm_be_dai_hw_params(fe, stream);
2004 dev_err(fe->dev,"ASoC: hw_params BE failed %d\n", ret);
2008 dev_dbg(fe->dev, "ASoC: hw_params FE %s rate %d chan %x fmt %d\n",
2009 fe->dai_link->name, params_rate(params),
2010 params_channels(params), params_format(params));
2012 /* call hw_params on the frontend */
2013 ret = soc_pcm_hw_params(substream, params);
2015 dev_err(fe->dev,"ASoC: hw_params FE failed %d\n", ret);
2016 dpcm_be_dai_hw_free(fe, stream);
2018 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_PARAMS;
2021 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
2022 mutex_unlock(&fe->card->mutex);
2026 int dpcm_be_dai_trigger(struct snd_soc_pcm_runtime *fe, int stream,
2029 struct snd_soc_dpcm *dpcm;
2032 for_each_dpcm_be(fe, stream, dpcm) {
2034 struct snd_soc_pcm_runtime *be = dpcm->be;
2035 struct snd_pcm_substream *be_substream =
2036 snd_soc_dpcm_get_substream(be, stream);
2038 /* is this op for this BE ? */
2039 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
2042 dev_dbg(be->dev, "ASoC: trigger BE %s cmd %d\n",
2043 be->dai_link->name, cmd);
2046 case SNDRV_PCM_TRIGGER_START:
2047 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_PREPARE) &&
2048 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP) &&
2049 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PAUSED))
2052 ret = soc_pcm_trigger(be_substream, cmd);
2056 be->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
2058 case SNDRV_PCM_TRIGGER_RESUME:
2059 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_SUSPEND))
2062 ret = soc_pcm_trigger(be_substream, cmd);
2066 be->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
2068 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
2069 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_PAUSED))
2072 ret = soc_pcm_trigger(be_substream, cmd);
2076 be->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
2078 case SNDRV_PCM_TRIGGER_STOP:
2079 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_START) &&
2080 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PAUSED))
2083 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
2086 ret = soc_pcm_trigger(be_substream, cmd);
2090 be->dpcm[stream].state = SND_SOC_DPCM_STATE_STOP;
2092 case SNDRV_PCM_TRIGGER_SUSPEND:
2093 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START)
2096 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
2099 ret = soc_pcm_trigger(be_substream, cmd);
2103 be->dpcm[stream].state = SND_SOC_DPCM_STATE_SUSPEND;
2105 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
2106 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START)
2109 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
2112 ret = soc_pcm_trigger(be_substream, cmd);
2116 be->dpcm[stream].state = SND_SOC_DPCM_STATE_PAUSED;
2123 EXPORT_SYMBOL_GPL(dpcm_be_dai_trigger);
2125 static int dpcm_dai_trigger_fe_be(struct snd_pcm_substream *substream,
2126 int cmd, bool fe_first)
2128 struct snd_soc_pcm_runtime *fe = asoc_substream_to_rtd(substream);
2131 /* call trigger on the frontend before the backend. */
2133 dev_dbg(fe->dev, "ASoC: pre trigger FE %s cmd %d\n",
2134 fe->dai_link->name, cmd);
2136 ret = soc_pcm_trigger(substream, cmd);
2140 ret = dpcm_be_dai_trigger(fe, substream->stream, cmd);
2144 /* call trigger on the frontend after the backend. */
2145 ret = dpcm_be_dai_trigger(fe, substream->stream, cmd);
2149 dev_dbg(fe->dev, "ASoC: post trigger FE %s cmd %d\n",
2150 fe->dai_link->name, cmd);
2152 ret = soc_pcm_trigger(substream, cmd);
2157 static int dpcm_fe_dai_do_trigger(struct snd_pcm_substream *substream, int cmd)
2159 struct snd_soc_pcm_runtime *fe = asoc_substream_to_rtd(substream);
2160 int stream = substream->stream;
2162 enum snd_soc_dpcm_trigger trigger = fe->dai_link->trigger[stream];
2164 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_FE;
2167 case SND_SOC_DPCM_TRIGGER_PRE:
2169 case SNDRV_PCM_TRIGGER_START:
2170 case SNDRV_PCM_TRIGGER_RESUME:
2171 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
2172 case SNDRV_PCM_TRIGGER_DRAIN:
2173 ret = dpcm_dai_trigger_fe_be(substream, cmd, true);
2175 case SNDRV_PCM_TRIGGER_STOP:
2176 case SNDRV_PCM_TRIGGER_SUSPEND:
2177 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
2178 ret = dpcm_dai_trigger_fe_be(substream, cmd, false);
2185 case SND_SOC_DPCM_TRIGGER_POST:
2187 case SNDRV_PCM_TRIGGER_START:
2188 case SNDRV_PCM_TRIGGER_RESUME:
2189 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
2190 case SNDRV_PCM_TRIGGER_DRAIN:
2191 ret = dpcm_dai_trigger_fe_be(substream, cmd, false);
2193 case SNDRV_PCM_TRIGGER_STOP:
2194 case SNDRV_PCM_TRIGGER_SUSPEND:
2195 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
2196 ret = dpcm_dai_trigger_fe_be(substream, cmd, true);
2203 case SND_SOC_DPCM_TRIGGER_BESPOKE:
2204 /* bespoke trigger() - handles both FE and BEs */
2206 dev_dbg(fe->dev, "ASoC: bespoke trigger FE %s cmd %d\n",
2207 fe->dai_link->name, cmd);
2209 ret = snd_soc_pcm_dai_bespoke_trigger(substream, cmd);
2212 dev_err(fe->dev, "ASoC: invalid trigger cmd %d for %s\n", cmd,
2213 fe->dai_link->name);
2219 dev_err(fe->dev, "ASoC: trigger FE cmd: %d failed: %d\n",
2225 case SNDRV_PCM_TRIGGER_START:
2226 case SNDRV_PCM_TRIGGER_RESUME:
2227 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
2228 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
2230 case SNDRV_PCM_TRIGGER_STOP:
2231 case SNDRV_PCM_TRIGGER_SUSPEND:
2232 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_STOP;
2234 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
2235 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_PAUSED;
2240 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO;
2244 static int dpcm_fe_dai_trigger(struct snd_pcm_substream *substream, int cmd)
2246 struct snd_soc_pcm_runtime *fe = asoc_substream_to_rtd(substream);
2247 int stream = substream->stream;
2249 /* if FE's runtime_update is already set, we're in race;
2250 * process this trigger later at exit
2252 if (fe->dpcm[stream].runtime_update != SND_SOC_DPCM_UPDATE_NO) {
2253 fe->dpcm[stream].trigger_pending = cmd + 1;
2254 return 0; /* delayed, assuming it's successful */
2257 /* we're alone, let's trigger */
2258 return dpcm_fe_dai_do_trigger(substream, cmd);
2261 int dpcm_be_dai_prepare(struct snd_soc_pcm_runtime *fe, int stream)
2263 struct snd_soc_dpcm *dpcm;
2266 for_each_dpcm_be(fe, stream, dpcm) {
2268 struct snd_soc_pcm_runtime *be = dpcm->be;
2269 struct snd_pcm_substream *be_substream =
2270 snd_soc_dpcm_get_substream(be, stream);
2272 /* is this op for this BE ? */
2273 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
2276 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
2277 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP) &&
2278 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_SUSPEND) &&
2279 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PAUSED))
2282 dev_dbg(be->dev, "ASoC: prepare BE %s\n",
2283 be->dai_link->name);
2285 ret = soc_pcm_prepare(be_substream);
2287 dev_err(be->dev, "ASoC: backend prepare failed %d\n",
2292 be->dpcm[stream].state = SND_SOC_DPCM_STATE_PREPARE;
2297 static int dpcm_fe_dai_prepare(struct snd_pcm_substream *substream)
2299 struct snd_soc_pcm_runtime *fe = asoc_substream_to_rtd(substream);
2300 int stream = substream->stream, ret = 0;
2302 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
2304 dev_dbg(fe->dev, "ASoC: prepare FE %s\n", fe->dai_link->name);
2306 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE);
2308 /* there is no point preparing this FE if there are no BEs */
2309 if (list_empty(&fe->dpcm[stream].be_clients)) {
2310 dev_err(fe->dev, "ASoC: no backend DAIs enabled for %s\n",
2311 fe->dai_link->name);
2316 ret = dpcm_be_dai_prepare(fe, stream);
2320 /* call prepare on the frontend */
2321 ret = soc_pcm_prepare(substream);
2323 dev_err(fe->dev,"ASoC: prepare FE %s failed\n",
2324 fe->dai_link->name);
2328 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_PREPARE;
2331 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
2332 mutex_unlock(&fe->card->mutex);
2337 static int dpcm_run_update_shutdown(struct snd_soc_pcm_runtime *fe, int stream)
2339 struct snd_pcm_substream *substream =
2340 snd_soc_dpcm_get_substream(fe, stream);
2341 enum snd_soc_dpcm_trigger trigger = fe->dai_link->trigger[stream];
2344 dev_dbg(fe->dev, "ASoC: runtime %s close on FE %s\n",
2345 stream ? "capture" : "playback", fe->dai_link->name);
2347 if (trigger == SND_SOC_DPCM_TRIGGER_BESPOKE) {
2348 /* call bespoke trigger - FE takes care of all BE triggers */
2349 dev_dbg(fe->dev, "ASoC: bespoke trigger FE %s cmd stop\n",
2350 fe->dai_link->name);
2352 err = snd_soc_pcm_dai_bespoke_trigger(substream, SNDRV_PCM_TRIGGER_STOP);
2354 dev_err(fe->dev,"ASoC: trigger FE failed %d\n", err);
2356 dev_dbg(fe->dev, "ASoC: trigger FE %s cmd stop\n",
2357 fe->dai_link->name);
2359 err = dpcm_be_dai_trigger(fe, stream, SNDRV_PCM_TRIGGER_STOP);
2361 dev_err(fe->dev,"ASoC: trigger FE failed %d\n", err);
2364 err = dpcm_be_dai_hw_free(fe, stream);
2366 dev_err(fe->dev,"ASoC: hw_free FE failed %d\n", err);
2368 err = dpcm_be_dai_shutdown(fe, stream);
2370 dev_err(fe->dev,"ASoC: shutdown FE failed %d\n", err);
2372 /* run the stream event for each BE */
2373 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_NOP);
2378 static int dpcm_run_update_startup(struct snd_soc_pcm_runtime *fe, int stream)
2380 struct snd_pcm_substream *substream =
2381 snd_soc_dpcm_get_substream(fe, stream);
2382 struct snd_soc_dpcm *dpcm;
2383 enum snd_soc_dpcm_trigger trigger = fe->dai_link->trigger[stream];
2385 unsigned long flags;
2387 dev_dbg(fe->dev, "ASoC: runtime %s open on FE %s\n",
2388 stream ? "capture" : "playback", fe->dai_link->name);
2390 /* Only start the BE if the FE is ready */
2391 if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_HW_FREE ||
2392 fe->dpcm[stream].state == SND_SOC_DPCM_STATE_CLOSE) {
2394 dev_err(fe->dev, "ASoC: FE %s is not ready %d\n",
2395 fe->dai_link->name, fe->dpcm[stream].state);
2400 /* startup must always be called for new BEs */
2401 ret = dpcm_be_dai_startup(fe, stream);
2405 /* keep going if FE state is > open */
2406 if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_OPEN)
2409 ret = dpcm_be_dai_hw_params(fe, stream);
2413 /* keep going if FE state is > hw_params */
2414 if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_HW_PARAMS)
2418 ret = dpcm_be_dai_prepare(fe, stream);
2422 /* run the stream event for each BE */
2423 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_NOP);
2425 /* keep going if FE state is > prepare */
2426 if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_PREPARE ||
2427 fe->dpcm[stream].state == SND_SOC_DPCM_STATE_STOP)
2430 if (trigger == SND_SOC_DPCM_TRIGGER_BESPOKE) {
2431 /* call trigger on the frontend - FE takes care of all BE triggers */
2432 dev_dbg(fe->dev, "ASoC: bespoke trigger FE %s cmd start\n",
2433 fe->dai_link->name);
2435 ret = snd_soc_pcm_dai_bespoke_trigger(substream, SNDRV_PCM_TRIGGER_START);
2437 dev_err(fe->dev,"ASoC: bespoke trigger FE failed %d\n", ret);
2441 dev_dbg(fe->dev, "ASoC: trigger FE %s cmd start\n",
2442 fe->dai_link->name);
2444 ret = dpcm_be_dai_trigger(fe, stream,
2445 SNDRV_PCM_TRIGGER_START);
2447 dev_err(fe->dev,"ASoC: trigger FE failed %d\n", ret);
2455 dpcm_be_dai_hw_free(fe, stream);
2457 dpcm_be_dai_shutdown(fe, stream);
2459 /* disconnect any pending BEs */
2460 spin_lock_irqsave(&fe->card->dpcm_lock, flags);
2461 for_each_dpcm_be(fe, stream, dpcm) {
2462 struct snd_soc_pcm_runtime *be = dpcm->be;
2464 /* is this op for this BE ? */
2465 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
2468 if (be->dpcm[stream].state == SND_SOC_DPCM_STATE_CLOSE ||
2469 be->dpcm[stream].state == SND_SOC_DPCM_STATE_NEW)
2470 dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE;
2472 spin_unlock_irqrestore(&fe->card->dpcm_lock, flags);
2477 static int soc_dpcm_fe_runtime_update(struct snd_soc_pcm_runtime *fe, int new)
2479 struct snd_soc_dapm_widget_list *list;
2484 if (!fe->dai_link->dynamic)
2487 if (fe->num_cpus > 1) {
2489 "%s doesn't support Multi CPU yet\n", __func__);
2493 /* only check active links */
2494 if (!snd_soc_dai_active(asoc_rtd_to_cpu(fe, 0)))
2497 /* DAPM sync will call this to update DSP paths */
2498 dev_dbg(fe->dev, "ASoC: DPCM %s runtime update for FE %s\n",
2499 new ? "new" : "old", fe->dai_link->name);
2501 for_each_pcm_streams(stream) {
2503 /* skip if FE doesn't have playback/capture capability */
2504 if (!snd_soc_dai_stream_valid(asoc_rtd_to_cpu(fe, 0), stream) ||
2505 !snd_soc_dai_stream_valid(asoc_rtd_to_codec(fe, 0), stream))
2508 /* skip if FE isn't currently playing/capturing */
2509 if (!snd_soc_dai_stream_active(asoc_rtd_to_cpu(fe, 0), stream) ||
2510 !snd_soc_dai_stream_active(asoc_rtd_to_codec(fe, 0), stream))
2513 paths = dpcm_path_get(fe, stream, &list);
2515 dev_warn(fe->dev, "ASoC: %s no valid %s path\n",
2517 stream == SNDRV_PCM_STREAM_PLAYBACK ?
2518 "playback" : "capture");
2522 /* update any playback/capture paths */
2523 count = dpcm_process_paths(fe, stream, &list, new);
2525 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_BE);
2527 ret = dpcm_run_update_startup(fe, stream);
2529 ret = dpcm_run_update_shutdown(fe, stream);
2531 dev_err(fe->dev, "ASoC: failed to shutdown some BEs\n");
2532 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
2534 dpcm_clear_pending_state(fe, stream);
2535 dpcm_be_disconnect(fe, stream);
2538 dpcm_path_put(&list);
2544 /* Called by DAPM mixer/mux changes to update audio routing between PCMs and
2547 int snd_soc_dpcm_runtime_update(struct snd_soc_card *card)
2549 struct snd_soc_pcm_runtime *fe;
2552 mutex_lock_nested(&card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
2553 /* shutdown all old paths first */
2554 for_each_card_rtds(card, fe) {
2555 ret = soc_dpcm_fe_runtime_update(fe, 0);
2560 /* bring new paths up */
2561 for_each_card_rtds(card, fe) {
2562 ret = soc_dpcm_fe_runtime_update(fe, 1);
2568 mutex_unlock(&card->mutex);
2571 EXPORT_SYMBOL_GPL(snd_soc_dpcm_runtime_update);
2573 static void dpcm_fe_dai_cleanup(struct snd_pcm_substream *fe_substream)
2575 struct snd_soc_pcm_runtime *fe = asoc_substream_to_rtd(fe_substream);
2576 struct snd_soc_dpcm *dpcm;
2577 int stream = fe_substream->stream;
2579 /* mark FE's links ready to prune */
2580 for_each_dpcm_be(fe, stream, dpcm)
2581 dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE;
2583 dpcm_be_disconnect(fe, stream);
2585 fe->dpcm[stream].runtime = NULL;
2588 static int dpcm_fe_dai_close(struct snd_pcm_substream *fe_substream)
2590 struct snd_soc_pcm_runtime *fe = asoc_substream_to_rtd(fe_substream);
2593 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
2594 ret = dpcm_fe_dai_shutdown(fe_substream);
2596 dpcm_fe_dai_cleanup(fe_substream);
2598 mutex_unlock(&fe->card->mutex);
2602 static int dpcm_fe_dai_open(struct snd_pcm_substream *fe_substream)
2604 struct snd_soc_pcm_runtime *fe = asoc_substream_to_rtd(fe_substream);
2605 struct snd_soc_dapm_widget_list *list;
2607 int stream = fe_substream->stream;
2609 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
2610 fe->dpcm[stream].runtime = fe_substream->runtime;
2612 ret = dpcm_path_get(fe, stream, &list);
2615 } else if (ret == 0) {
2616 dev_dbg(fe->dev, "ASoC: %s no valid %s route\n",
2617 fe->dai_link->name, stream ? "capture" : "playback");
2620 /* calculate valid and active FE <-> BE dpcms */
2621 dpcm_process_paths(fe, stream, &list, 1);
2623 ret = dpcm_fe_dai_startup(fe_substream);
2625 dpcm_fe_dai_cleanup(fe_substream);
2627 dpcm_clear_pending_state(fe, stream);
2628 dpcm_path_put(&list);
2630 mutex_unlock(&fe->card->mutex);
2634 static int soc_get_playback_capture(struct snd_soc_pcm_runtime *rtd,
2635 int *playback, int *capture)
2637 struct snd_soc_dai *codec_dai;
2638 struct snd_soc_dai *cpu_dai;
2642 if (rtd->dai_link->dynamic && rtd->num_cpus > 1) {
2644 "DPCM doesn't support Multi CPU for Front-Ends yet\n");
2648 if (rtd->dai_link->dynamic || rtd->dai_link->no_pcm) {
2649 if (rtd->dai_link->dpcm_playback) {
2650 stream = SNDRV_PCM_STREAM_PLAYBACK;
2652 for_each_rtd_cpu_dais(rtd, i, cpu_dai) {
2653 if (snd_soc_dai_stream_valid(cpu_dai, stream)) {
2659 dev_err(rtd->card->dev,
2660 "No CPU DAIs support playback for stream %s\n",
2661 rtd->dai_link->stream_name);
2665 if (rtd->dai_link->dpcm_capture) {
2666 stream = SNDRV_PCM_STREAM_CAPTURE;
2668 for_each_rtd_cpu_dais(rtd, i, cpu_dai) {
2669 if (snd_soc_dai_stream_valid(cpu_dai, stream)) {
2676 dev_err(rtd->card->dev,
2677 "No CPU DAIs support capture for stream %s\n",
2678 rtd->dai_link->stream_name);
2683 /* Adapt stream for codec2codec links */
2684 int cpu_capture = rtd->dai_link->params ?
2685 SNDRV_PCM_STREAM_PLAYBACK : SNDRV_PCM_STREAM_CAPTURE;
2686 int cpu_playback = rtd->dai_link->params ?
2687 SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK;
2689 for_each_rtd_codec_dais(rtd, i, codec_dai) {
2690 if (rtd->num_cpus == 1) {
2691 cpu_dai = asoc_rtd_to_cpu(rtd, 0);
2692 } else if (rtd->num_cpus == rtd->num_codecs) {
2693 cpu_dai = asoc_rtd_to_cpu(rtd, i);
2695 dev_err(rtd->card->dev,
2696 "N cpus to M codecs link is not supported yet\n");
2700 if (snd_soc_dai_stream_valid(codec_dai, SNDRV_PCM_STREAM_PLAYBACK) &&
2701 snd_soc_dai_stream_valid(cpu_dai, cpu_playback))
2703 if (snd_soc_dai_stream_valid(codec_dai, SNDRV_PCM_STREAM_CAPTURE) &&
2704 snd_soc_dai_stream_valid(cpu_dai, cpu_capture))
2709 if (rtd->dai_link->playback_only) {
2714 if (rtd->dai_link->capture_only) {
2722 static int soc_create_pcm(struct snd_pcm **pcm,
2723 struct snd_soc_pcm_runtime *rtd,
2724 int playback, int capture, int num)
2729 /* create the PCM */
2730 if (rtd->dai_link->params) {
2731 snprintf(new_name, sizeof(new_name), "codec2codec(%s)",
2732 rtd->dai_link->stream_name);
2734 ret = snd_pcm_new_internal(rtd->card->snd_card, new_name, num,
2735 playback, capture, pcm);
2736 } else if (rtd->dai_link->no_pcm) {
2737 snprintf(new_name, sizeof(new_name), "(%s)",
2738 rtd->dai_link->stream_name);
2740 ret = snd_pcm_new_internal(rtd->card->snd_card, new_name, num,
2741 playback, capture, pcm);
2743 if (rtd->dai_link->dynamic)
2744 snprintf(new_name, sizeof(new_name), "%s (*)",
2745 rtd->dai_link->stream_name);
2747 snprintf(new_name, sizeof(new_name), "%s %s-%d",
2748 rtd->dai_link->stream_name,
2749 (rtd->num_codecs > 1) ?
2750 "multicodec" : asoc_rtd_to_codec(rtd, 0)->name, num);
2752 ret = snd_pcm_new(rtd->card->snd_card, new_name, num, playback,
2756 dev_err(rtd->card->dev, "ASoC: can't create pcm %s for dailink %s: %d\n",
2757 new_name, rtd->dai_link->name, ret);
2760 dev_dbg(rtd->card->dev, "ASoC: registered pcm #%d %s\n",num, new_name);
2765 /* create a new pcm */
2766 int soc_new_pcm(struct snd_soc_pcm_runtime *rtd, int num)
2768 struct snd_soc_component *component;
2769 struct snd_pcm *pcm;
2770 int ret = 0, playback = 0, capture = 0;
2773 ret = soc_get_playback_capture(rtd, &playback, &capture);
2777 ret = soc_create_pcm(&pcm, rtd, playback, capture, num);
2781 /* DAPM dai link stream work */
2782 if (rtd->dai_link->params)
2783 rtd->close_delayed_work_func = codec2codec_close_delayed_work;
2785 rtd->close_delayed_work_func = snd_soc_close_delayed_work;
2788 pcm->nonatomic = rtd->dai_link->nonatomic;
2789 pcm->private_data = rtd;
2791 if (rtd->dai_link->no_pcm || rtd->dai_link->params) {
2793 pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream->private_data = rtd;
2795 pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream->private_data = rtd;
2799 /* ASoC PCM operations */
2800 if (rtd->dai_link->dynamic) {
2801 rtd->ops.open = dpcm_fe_dai_open;
2802 rtd->ops.hw_params = dpcm_fe_dai_hw_params;
2803 rtd->ops.prepare = dpcm_fe_dai_prepare;
2804 rtd->ops.trigger = dpcm_fe_dai_trigger;
2805 rtd->ops.hw_free = dpcm_fe_dai_hw_free;
2806 rtd->ops.close = dpcm_fe_dai_close;
2807 rtd->ops.pointer = soc_pcm_pointer;
2809 rtd->ops.open = soc_pcm_open;
2810 rtd->ops.hw_params = soc_pcm_hw_params;
2811 rtd->ops.prepare = soc_pcm_prepare;
2812 rtd->ops.trigger = soc_pcm_trigger;
2813 rtd->ops.hw_free = soc_pcm_hw_free;
2814 rtd->ops.close = soc_pcm_close;
2815 rtd->ops.pointer = soc_pcm_pointer;
2818 for_each_rtd_components(rtd, i, component) {
2819 const struct snd_soc_component_driver *drv = component->driver;
2822 rtd->ops.ioctl = snd_soc_pcm_component_ioctl;
2824 rtd->ops.sync_stop = snd_soc_pcm_component_sync_stop;
2826 rtd->ops.copy_user = snd_soc_pcm_component_copy_user;
2828 rtd->ops.page = snd_soc_pcm_component_page;
2830 rtd->ops.mmap = snd_soc_pcm_component_mmap;
2834 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &rtd->ops);
2837 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &rtd->ops);
2839 ret = snd_soc_pcm_component_new(rtd);
2841 dev_err(rtd->dev, "ASoC: pcm constructor failed for dailink %s: %d\n",
2842 rtd->dai_link->name, ret);
2846 pcm->no_device_suspend = true;
2848 dev_dbg(rtd->card->dev, "%s <-> %s mapping ok\n",
2849 (rtd->num_codecs > 1) ? "multicodec" : asoc_rtd_to_codec(rtd, 0)->name,
2850 (rtd->num_cpus > 1) ? "multicpu" : asoc_rtd_to_cpu(rtd, 0)->name);
2854 /* is the current PCM operation for this FE ? */
2855 int snd_soc_dpcm_fe_can_update(struct snd_soc_pcm_runtime *fe, int stream)
2857 if (fe->dpcm[stream].runtime_update == SND_SOC_DPCM_UPDATE_FE)
2861 EXPORT_SYMBOL_GPL(snd_soc_dpcm_fe_can_update);
2863 /* is the current PCM operation for this BE ? */
2864 int snd_soc_dpcm_be_can_update(struct snd_soc_pcm_runtime *fe,
2865 struct snd_soc_pcm_runtime *be, int stream)
2867 if ((fe->dpcm[stream].runtime_update == SND_SOC_DPCM_UPDATE_FE) ||
2868 ((fe->dpcm[stream].runtime_update == SND_SOC_DPCM_UPDATE_BE) &&
2869 be->dpcm[stream].runtime_update))
2873 EXPORT_SYMBOL_GPL(snd_soc_dpcm_be_can_update);
2875 /* get the substream for this BE */
2876 struct snd_pcm_substream *
2877 snd_soc_dpcm_get_substream(struct snd_soc_pcm_runtime *be, int stream)
2879 return be->pcm->streams[stream].substream;
2881 EXPORT_SYMBOL_GPL(snd_soc_dpcm_get_substream);
2883 static int snd_soc_dpcm_check_state(struct snd_soc_pcm_runtime *fe,
2884 struct snd_soc_pcm_runtime *be,
2886 const enum snd_soc_dpcm_state *states,
2889 struct snd_soc_dpcm *dpcm;
2892 unsigned long flags;
2895 spin_lock_irqsave(&fe->card->dpcm_lock, flags);
2896 for_each_dpcm_fe(be, stream, dpcm) {
2901 state = dpcm->fe->dpcm[stream].state;
2902 for (i = 0; i < num_states; i++) {
2903 if (state == states[i]) {
2909 spin_unlock_irqrestore(&fe->card->dpcm_lock, flags);
2911 /* it's safe to do this BE DAI */
2916 * We can only hw_free, stop, pause or suspend a BE DAI if any of it's FE
2917 * are not running, paused or suspended for the specified stream direction.
2919 int snd_soc_dpcm_can_be_free_stop(struct snd_soc_pcm_runtime *fe,
2920 struct snd_soc_pcm_runtime *be, int stream)
2922 const enum snd_soc_dpcm_state state[] = {
2923 SND_SOC_DPCM_STATE_START,
2924 SND_SOC_DPCM_STATE_PAUSED,
2925 SND_SOC_DPCM_STATE_SUSPEND,
2928 return snd_soc_dpcm_check_state(fe, be, stream, state, ARRAY_SIZE(state));
2930 EXPORT_SYMBOL_GPL(snd_soc_dpcm_can_be_free_stop);
2933 * We can only change hw params a BE DAI if any of it's FE are not prepared,
2934 * running, paused or suspended for the specified stream direction.
2936 int snd_soc_dpcm_can_be_params(struct snd_soc_pcm_runtime *fe,
2937 struct snd_soc_pcm_runtime *be, int stream)
2939 const enum snd_soc_dpcm_state state[] = {
2940 SND_SOC_DPCM_STATE_START,
2941 SND_SOC_DPCM_STATE_PAUSED,
2942 SND_SOC_DPCM_STATE_SUSPEND,
2943 SND_SOC_DPCM_STATE_PREPARE,
2946 return snd_soc_dpcm_check_state(fe, be, stream, state, ARRAY_SIZE(state));
2948 EXPORT_SYMBOL_GPL(snd_soc_dpcm_can_be_params);