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/initval.h>
29 #define DPCM_MAX_BE_USERS 8
32 * snd_soc_dai_stream_valid() - check if a DAI supports the given stream
34 * Returns true if the DAI supports the indicated stream type.
36 static bool snd_soc_dai_stream_valid(struct snd_soc_dai *dai, int stream)
38 struct snd_soc_pcm_stream *codec_stream;
40 if (stream == SNDRV_PCM_STREAM_PLAYBACK)
41 codec_stream = &dai->driver->playback;
43 codec_stream = &dai->driver->capture;
45 /* If the codec specifies any rate at all, it supports the stream. */
46 return codec_stream->rates;
50 * snd_soc_runtime_activate() - Increment active count for PCM runtime components
51 * @rtd: ASoC PCM runtime that is activated
52 * @stream: Direction of the PCM stream
54 * Increments the active count for all the DAIs and components attached to a PCM
55 * runtime. Should typically be called when a stream is opened.
57 * Must be called with the rtd->pcm_mutex being held
59 void snd_soc_runtime_activate(struct snd_soc_pcm_runtime *rtd, int stream)
61 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
64 lockdep_assert_held(&rtd->pcm_mutex);
66 if (stream == SNDRV_PCM_STREAM_PLAYBACK) {
67 cpu_dai->playback_active++;
68 for (i = 0; i < rtd->num_codecs; i++)
69 rtd->codec_dais[i]->playback_active++;
71 cpu_dai->capture_active++;
72 for (i = 0; i < rtd->num_codecs; i++)
73 rtd->codec_dais[i]->capture_active++;
77 cpu_dai->component->active++;
78 for (i = 0; i < rtd->num_codecs; i++) {
79 rtd->codec_dais[i]->active++;
80 rtd->codec_dais[i]->component->active++;
85 * snd_soc_runtime_deactivate() - Decrement active count for PCM runtime components
86 * @rtd: ASoC PCM runtime that is deactivated
87 * @stream: Direction of the PCM stream
89 * Decrements the active count for all the DAIs and components attached to a PCM
90 * runtime. Should typically be called when a stream is closed.
92 * Must be called with the rtd->pcm_mutex being held
94 void snd_soc_runtime_deactivate(struct snd_soc_pcm_runtime *rtd, int stream)
96 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
99 lockdep_assert_held(&rtd->pcm_mutex);
101 if (stream == SNDRV_PCM_STREAM_PLAYBACK) {
102 cpu_dai->playback_active--;
103 for (i = 0; i < rtd->num_codecs; i++)
104 rtd->codec_dais[i]->playback_active--;
106 cpu_dai->capture_active--;
107 for (i = 0; i < rtd->num_codecs; i++)
108 rtd->codec_dais[i]->capture_active--;
112 cpu_dai->component->active--;
113 for (i = 0; i < rtd->num_codecs; i++) {
114 rtd->codec_dais[i]->component->active--;
115 rtd->codec_dais[i]->active--;
120 * snd_soc_runtime_ignore_pmdown_time() - Check whether to ignore the power down delay
121 * @rtd: The ASoC PCM runtime that should be checked.
123 * This function checks whether the power down delay should be ignored for a
124 * specific PCM runtime. Returns true if the delay is 0, if it the DAI link has
125 * been configured to ignore the delay, or if none of the components benefits
126 * from having the delay.
128 bool snd_soc_runtime_ignore_pmdown_time(struct snd_soc_pcm_runtime *rtd)
130 struct snd_soc_rtdcom_list *rtdcom;
131 struct snd_soc_component *component;
134 if (!rtd->pmdown_time || rtd->dai_link->ignore_pmdown_time)
137 for_each_rtdcom(rtd, rtdcom) {
138 component = rtdcom->component;
140 ignore &= !component->driver->use_pmdown_time;
147 * snd_soc_set_runtime_hwparams - set the runtime hardware parameters
148 * @substream: the pcm substream
149 * @hw: the hardware parameters
151 * Sets the substream runtime hardware parameters.
153 int snd_soc_set_runtime_hwparams(struct snd_pcm_substream *substream,
154 const struct snd_pcm_hardware *hw)
156 struct snd_pcm_runtime *runtime = substream->runtime;
157 runtime->hw.info = hw->info;
158 runtime->hw.formats = hw->formats;
159 runtime->hw.period_bytes_min = hw->period_bytes_min;
160 runtime->hw.period_bytes_max = hw->period_bytes_max;
161 runtime->hw.periods_min = hw->periods_min;
162 runtime->hw.periods_max = hw->periods_max;
163 runtime->hw.buffer_bytes_max = hw->buffer_bytes_max;
164 runtime->hw.fifo_size = hw->fifo_size;
167 EXPORT_SYMBOL_GPL(snd_soc_set_runtime_hwparams);
169 /* DPCM stream event, send event to FE and all active BEs. */
170 int dpcm_dapm_stream_event(struct snd_soc_pcm_runtime *fe, int dir,
173 struct snd_soc_dpcm *dpcm;
175 list_for_each_entry(dpcm, &fe->dpcm[dir].be_clients, list_be) {
177 struct snd_soc_pcm_runtime *be = dpcm->be;
179 dev_dbg(be->dev, "ASoC: BE %s event %d dir %d\n",
180 be->dai_link->name, event, dir);
182 if ((event == SND_SOC_DAPM_STREAM_STOP) &&
183 (be->dpcm[dir].users >= 1))
186 snd_soc_dapm_stream_event(be, dir, event);
189 snd_soc_dapm_stream_event(fe, dir, event);
194 static int soc_pcm_apply_symmetry(struct snd_pcm_substream *substream,
195 struct snd_soc_dai *soc_dai)
197 struct snd_soc_pcm_runtime *rtd = substream->private_data;
200 if (soc_dai->rate && (soc_dai->driver->symmetric_rates ||
201 rtd->dai_link->symmetric_rates)) {
202 dev_dbg(soc_dai->dev, "ASoC: Symmetry forces %dHz rate\n",
205 ret = snd_pcm_hw_constraint_single(substream->runtime,
206 SNDRV_PCM_HW_PARAM_RATE,
209 dev_err(soc_dai->dev,
210 "ASoC: Unable to apply rate constraint: %d\n",
216 if (soc_dai->channels && (soc_dai->driver->symmetric_channels ||
217 rtd->dai_link->symmetric_channels)) {
218 dev_dbg(soc_dai->dev, "ASoC: Symmetry forces %d channel(s)\n",
221 ret = snd_pcm_hw_constraint_single(substream->runtime,
222 SNDRV_PCM_HW_PARAM_CHANNELS,
225 dev_err(soc_dai->dev,
226 "ASoC: Unable to apply channel symmetry constraint: %d\n",
232 if (soc_dai->sample_bits && (soc_dai->driver->symmetric_samplebits ||
233 rtd->dai_link->symmetric_samplebits)) {
234 dev_dbg(soc_dai->dev, "ASoC: Symmetry forces %d sample bits\n",
235 soc_dai->sample_bits);
237 ret = snd_pcm_hw_constraint_single(substream->runtime,
238 SNDRV_PCM_HW_PARAM_SAMPLE_BITS,
239 soc_dai->sample_bits);
241 dev_err(soc_dai->dev,
242 "ASoC: Unable to apply sample bits symmetry constraint: %d\n",
251 static int soc_pcm_params_symmetry(struct snd_pcm_substream *substream,
252 struct snd_pcm_hw_params *params)
254 struct snd_soc_pcm_runtime *rtd = substream->private_data;
255 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
256 unsigned int rate, channels, sample_bits, symmetry, i;
258 rate = params_rate(params);
259 channels = params_channels(params);
260 sample_bits = snd_pcm_format_physical_width(params_format(params));
262 /* reject unmatched parameters when applying symmetry */
263 symmetry = cpu_dai->driver->symmetric_rates ||
264 rtd->dai_link->symmetric_rates;
266 for (i = 0; i < rtd->num_codecs; i++)
267 symmetry |= rtd->codec_dais[i]->driver->symmetric_rates;
269 if (symmetry && cpu_dai->rate && cpu_dai->rate != rate) {
270 dev_err(rtd->dev, "ASoC: unmatched rate symmetry: %d - %d\n",
271 cpu_dai->rate, rate);
275 symmetry = cpu_dai->driver->symmetric_channels ||
276 rtd->dai_link->symmetric_channels;
278 for (i = 0; i < rtd->num_codecs; i++)
279 symmetry |= rtd->codec_dais[i]->driver->symmetric_channels;
281 if (symmetry && cpu_dai->channels && cpu_dai->channels != channels) {
282 dev_err(rtd->dev, "ASoC: unmatched channel symmetry: %d - %d\n",
283 cpu_dai->channels, channels);
287 symmetry = cpu_dai->driver->symmetric_samplebits ||
288 rtd->dai_link->symmetric_samplebits;
290 for (i = 0; i < rtd->num_codecs; i++)
291 symmetry |= rtd->codec_dais[i]->driver->symmetric_samplebits;
293 if (symmetry && cpu_dai->sample_bits && cpu_dai->sample_bits != sample_bits) {
294 dev_err(rtd->dev, "ASoC: unmatched sample bits symmetry: %d - %d\n",
295 cpu_dai->sample_bits, sample_bits);
302 static bool soc_pcm_has_symmetry(struct snd_pcm_substream *substream)
304 struct snd_soc_pcm_runtime *rtd = substream->private_data;
305 struct snd_soc_dai_driver *cpu_driver = rtd->cpu_dai->driver;
306 struct snd_soc_dai_link *link = rtd->dai_link;
307 unsigned int symmetry, i;
309 symmetry = cpu_driver->symmetric_rates || link->symmetric_rates ||
310 cpu_driver->symmetric_channels || link->symmetric_channels ||
311 cpu_driver->symmetric_samplebits || link->symmetric_samplebits;
313 for (i = 0; i < rtd->num_codecs; i++)
314 symmetry = symmetry ||
315 rtd->codec_dais[i]->driver->symmetric_rates ||
316 rtd->codec_dais[i]->driver->symmetric_channels ||
317 rtd->codec_dais[i]->driver->symmetric_samplebits;
322 static void soc_pcm_set_msb(struct snd_pcm_substream *substream, int bits)
324 struct snd_soc_pcm_runtime *rtd = substream->private_data;
330 ret = snd_pcm_hw_constraint_msbits(substream->runtime, 0, 0, bits);
332 dev_warn(rtd->dev, "ASoC: Failed to set MSB %d: %d\n",
336 static void soc_pcm_apply_msb(struct snd_pcm_substream *substream)
338 struct snd_soc_pcm_runtime *rtd = substream->private_data;
339 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
340 struct snd_soc_dai *codec_dai;
342 unsigned int bits = 0, cpu_bits;
344 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
345 for (i = 0; i < rtd->num_codecs; i++) {
346 codec_dai = rtd->codec_dais[i];
347 if (codec_dai->driver->playback.sig_bits == 0) {
351 bits = max(codec_dai->driver->playback.sig_bits, bits);
353 cpu_bits = cpu_dai->driver->playback.sig_bits;
355 for (i = 0; i < rtd->num_codecs; i++) {
356 codec_dai = rtd->codec_dais[i];
357 if (codec_dai->driver->capture.sig_bits == 0) {
361 bits = max(codec_dai->driver->capture.sig_bits, bits);
363 cpu_bits = cpu_dai->driver->capture.sig_bits;
366 soc_pcm_set_msb(substream, bits);
367 soc_pcm_set_msb(substream, cpu_bits);
370 static void soc_pcm_init_runtime_hw(struct snd_pcm_substream *substream)
372 struct snd_pcm_runtime *runtime = substream->runtime;
373 struct snd_pcm_hardware *hw = &runtime->hw;
374 struct snd_soc_pcm_runtime *rtd = substream->private_data;
375 struct snd_soc_dai_driver *cpu_dai_drv = rtd->cpu_dai->driver;
376 struct snd_soc_dai_driver *codec_dai_drv;
377 struct snd_soc_pcm_stream *codec_stream;
378 struct snd_soc_pcm_stream *cpu_stream;
379 unsigned int chan_min = 0, chan_max = UINT_MAX;
380 unsigned int rate_min = 0, rate_max = UINT_MAX;
381 unsigned int rates = UINT_MAX;
382 u64 formats = ULLONG_MAX;
385 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
386 cpu_stream = &cpu_dai_drv->playback;
388 cpu_stream = &cpu_dai_drv->capture;
390 /* first calculate min/max only for CODECs in the DAI link */
391 for (i = 0; i < rtd->num_codecs; i++) {
394 * Skip CODECs which don't support the current stream type.
395 * Otherwise, since the rate, channel, and format values will
396 * zero in that case, we would have no usable settings left,
397 * causing the resulting setup to fail.
398 * At least one CODEC should match, otherwise we should have
399 * bailed out on a higher level, since there would be no
400 * CODEC to support the transfer direction in that case.
402 if (!snd_soc_dai_stream_valid(rtd->codec_dais[i],
406 codec_dai_drv = rtd->codec_dais[i]->driver;
407 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
408 codec_stream = &codec_dai_drv->playback;
410 codec_stream = &codec_dai_drv->capture;
411 chan_min = max(chan_min, codec_stream->channels_min);
412 chan_max = min(chan_max, codec_stream->channels_max);
413 rate_min = max(rate_min, codec_stream->rate_min);
414 rate_max = min_not_zero(rate_max, codec_stream->rate_max);
415 formats &= codec_stream->formats;
416 rates = snd_pcm_rate_mask_intersect(codec_stream->rates, rates);
420 * chan min/max cannot be enforced if there are multiple CODEC DAIs
421 * connected to a single CPU DAI, use CPU DAI's directly and let
422 * channel allocation be fixed up later
424 if (rtd->num_codecs > 1) {
425 chan_min = cpu_stream->channels_min;
426 chan_max = cpu_stream->channels_max;
429 hw->channels_min = max(chan_min, cpu_stream->channels_min);
430 hw->channels_max = min(chan_max, cpu_stream->channels_max);
432 hw->formats &= formats & cpu_stream->formats;
434 hw->formats = formats & cpu_stream->formats;
435 hw->rates = snd_pcm_rate_mask_intersect(rates, cpu_stream->rates);
437 snd_pcm_limit_hw_rates(runtime);
439 hw->rate_min = max(hw->rate_min, cpu_stream->rate_min);
440 hw->rate_min = max(hw->rate_min, rate_min);
441 hw->rate_max = min_not_zero(hw->rate_max, cpu_stream->rate_max);
442 hw->rate_max = min_not_zero(hw->rate_max, rate_max);
445 static int soc_pcm_components_close(struct snd_pcm_substream *substream,
446 struct snd_soc_component *last)
448 struct snd_soc_pcm_runtime *rtd = substream->private_data;
449 struct snd_soc_rtdcom_list *rtdcom;
450 struct snd_soc_component *component;
452 for_each_rtdcom(rtd, rtdcom) {
453 component = rtdcom->component;
455 if (component == last)
458 if (!component->driver->ops ||
459 !component->driver->ops->close)
462 component->driver->ops->close(substream);
469 * Called by ALSA when a PCM substream is opened, the runtime->hw record is
470 * then initialized and any private data can be allocated. This also calls
471 * startup for the cpu DAI, component, machine and codec DAI.
473 static int soc_pcm_open(struct snd_pcm_substream *substream)
475 struct snd_soc_pcm_runtime *rtd = substream->private_data;
476 struct snd_pcm_runtime *runtime = substream->runtime;
477 struct snd_soc_component *component;
478 struct snd_soc_rtdcom_list *rtdcom;
479 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
480 struct snd_soc_dai *codec_dai;
481 const char *codec_dai_name = "multicodec";
484 pinctrl_pm_select_default_state(cpu_dai->dev);
485 for (i = 0; i < rtd->num_codecs; i++)
486 pinctrl_pm_select_default_state(rtd->codec_dais[i]->dev);
488 for_each_rtdcom(rtd, rtdcom) {
489 component = rtdcom->component;
491 pm_runtime_get_sync(component->dev);
494 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
496 /* startup the audio subsystem */
497 if (cpu_dai->driver->ops->startup) {
498 ret = cpu_dai->driver->ops->startup(substream, cpu_dai);
500 dev_err(cpu_dai->dev, "ASoC: can't open interface"
501 " %s: %d\n", cpu_dai->name, ret);
506 for_each_rtdcom(rtd, rtdcom) {
507 component = rtdcom->component;
509 if (!component->driver->ops ||
510 !component->driver->ops->open)
513 ret = component->driver->ops->open(substream);
515 dev_err(component->dev,
516 "ASoC: can't open component %s: %d\n",
517 component->name, ret);
523 for (i = 0; i < rtd->num_codecs; i++) {
524 codec_dai = rtd->codec_dais[i];
525 if (codec_dai->driver->ops->startup) {
526 ret = codec_dai->driver->ops->startup(substream,
529 dev_err(codec_dai->dev,
530 "ASoC: can't open codec %s: %d\n",
531 codec_dai->name, ret);
536 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
537 codec_dai->tx_mask = 0;
539 codec_dai->rx_mask = 0;
542 if (rtd->dai_link->ops->startup) {
543 ret = rtd->dai_link->ops->startup(substream);
545 pr_err("ASoC: %s startup failed: %d\n",
546 rtd->dai_link->name, ret);
551 /* Dynamic PCM DAI links compat checks use dynamic capabilities */
552 if (rtd->dai_link->dynamic || rtd->dai_link->no_pcm)
555 /* Check that the codec and cpu DAIs are compatible */
556 soc_pcm_init_runtime_hw(substream);
558 if (rtd->num_codecs == 1)
559 codec_dai_name = rtd->codec_dai->name;
561 if (soc_pcm_has_symmetry(substream))
562 runtime->hw.info |= SNDRV_PCM_INFO_JOINT_DUPLEX;
565 if (!runtime->hw.rates) {
566 printk(KERN_ERR "ASoC: %s <-> %s No matching rates\n",
567 codec_dai_name, cpu_dai->name);
570 if (!runtime->hw.formats) {
571 printk(KERN_ERR "ASoC: %s <-> %s No matching formats\n",
572 codec_dai_name, cpu_dai->name);
575 if (!runtime->hw.channels_min || !runtime->hw.channels_max ||
576 runtime->hw.channels_min > runtime->hw.channels_max) {
577 printk(KERN_ERR "ASoC: %s <-> %s No matching channels\n",
578 codec_dai_name, cpu_dai->name);
582 soc_pcm_apply_msb(substream);
584 /* Symmetry only applies if we've already got an active stream. */
585 if (cpu_dai->active) {
586 ret = soc_pcm_apply_symmetry(substream, cpu_dai);
591 for (i = 0; i < rtd->num_codecs; i++) {
592 if (rtd->codec_dais[i]->active) {
593 ret = soc_pcm_apply_symmetry(substream,
600 pr_debug("ASoC: %s <-> %s info:\n",
601 codec_dai_name, cpu_dai->name);
602 pr_debug("ASoC: rate mask 0x%x\n", runtime->hw.rates);
603 pr_debug("ASoC: min ch %d max ch %d\n", runtime->hw.channels_min,
604 runtime->hw.channels_max);
605 pr_debug("ASoC: min rate %d max rate %d\n", runtime->hw.rate_min,
606 runtime->hw.rate_max);
610 snd_soc_runtime_activate(rtd, substream->stream);
612 mutex_unlock(&rtd->pcm_mutex);
616 if (rtd->dai_link->ops->shutdown)
617 rtd->dai_link->ops->shutdown(substream);
624 codec_dai = rtd->codec_dais[i];
625 if (codec_dai->driver->ops->shutdown)
626 codec_dai->driver->ops->shutdown(substream, codec_dai);
630 soc_pcm_components_close(substream, component);
632 if (cpu_dai->driver->ops->shutdown)
633 cpu_dai->driver->ops->shutdown(substream, cpu_dai);
635 mutex_unlock(&rtd->pcm_mutex);
637 for_each_rtdcom(rtd, rtdcom) {
638 component = rtdcom->component;
640 pm_runtime_mark_last_busy(component->dev);
641 pm_runtime_put_autosuspend(component->dev);
644 for (i = 0; i < rtd->num_codecs; i++) {
645 if (!rtd->codec_dais[i]->active)
646 pinctrl_pm_select_sleep_state(rtd->codec_dais[i]->dev);
648 if (!cpu_dai->active)
649 pinctrl_pm_select_sleep_state(cpu_dai->dev);
655 * Power down the audio subsystem pmdown_time msecs after close is called.
656 * This is to ensure there are no pops or clicks in between any music tracks
657 * due to DAPM power cycling.
659 static void close_delayed_work(struct work_struct *work)
661 struct snd_soc_pcm_runtime *rtd =
662 container_of(work, struct snd_soc_pcm_runtime, delayed_work.work);
663 struct snd_soc_dai *codec_dai = rtd->codec_dais[0];
665 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
667 dev_dbg(rtd->dev, "ASoC: pop wq checking: %s status: %s waiting: %s\n",
668 codec_dai->driver->playback.stream_name,
669 codec_dai->playback_active ? "active" : "inactive",
670 rtd->pop_wait ? "yes" : "no");
672 /* are we waiting on this codec DAI stream */
673 if (rtd->pop_wait == 1) {
675 snd_soc_dapm_stream_event(rtd, SNDRV_PCM_STREAM_PLAYBACK,
676 SND_SOC_DAPM_STREAM_STOP);
679 mutex_unlock(&rtd->pcm_mutex);
683 * Called by ALSA when a PCM substream is closed. Private data can be
684 * freed here. The cpu DAI, codec DAI, machine and components are also
687 static int soc_pcm_close(struct snd_pcm_substream *substream)
689 struct snd_soc_pcm_runtime *rtd = substream->private_data;
690 struct snd_soc_component *component;
691 struct snd_soc_rtdcom_list *rtdcom;
692 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
693 struct snd_soc_dai *codec_dai;
696 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
698 snd_soc_runtime_deactivate(rtd, substream->stream);
700 /* clear the corresponding DAIs rate when inactive */
701 if (!cpu_dai->active)
704 for (i = 0; i < rtd->num_codecs; i++) {
705 codec_dai = rtd->codec_dais[i];
706 if (!codec_dai->active)
710 snd_soc_dai_digital_mute(cpu_dai, 1, substream->stream);
712 if (cpu_dai->driver->ops->shutdown)
713 cpu_dai->driver->ops->shutdown(substream, cpu_dai);
715 for (i = 0; i < rtd->num_codecs; i++) {
716 codec_dai = rtd->codec_dais[i];
717 if (codec_dai->driver->ops->shutdown)
718 codec_dai->driver->ops->shutdown(substream, codec_dai);
721 if (rtd->dai_link->ops->shutdown)
722 rtd->dai_link->ops->shutdown(substream);
724 soc_pcm_components_close(substream, NULL);
726 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
727 if (snd_soc_runtime_ignore_pmdown_time(rtd)) {
728 /* powered down playback stream now */
729 snd_soc_dapm_stream_event(rtd,
730 SNDRV_PCM_STREAM_PLAYBACK,
731 SND_SOC_DAPM_STREAM_STOP);
733 /* start delayed pop wq here for playback streams */
735 queue_delayed_work(system_power_efficient_wq,
737 msecs_to_jiffies(rtd->pmdown_time));
740 /* capture streams can be powered down now */
741 snd_soc_dapm_stream_event(rtd, SNDRV_PCM_STREAM_CAPTURE,
742 SND_SOC_DAPM_STREAM_STOP);
745 mutex_unlock(&rtd->pcm_mutex);
747 for_each_rtdcom(rtd, rtdcom) {
748 component = rtdcom->component;
750 pm_runtime_mark_last_busy(component->dev);
751 pm_runtime_put_autosuspend(component->dev);
754 for (i = 0; i < rtd->num_codecs; i++) {
755 if (!rtd->codec_dais[i]->active)
756 pinctrl_pm_select_sleep_state(rtd->codec_dais[i]->dev);
758 if (!cpu_dai->active)
759 pinctrl_pm_select_sleep_state(cpu_dai->dev);
765 * Called by ALSA when the PCM substream is prepared, can set format, sample
766 * rate, etc. This function is non atomic and can be called multiple times,
767 * it can refer to the runtime info.
769 static int soc_pcm_prepare(struct snd_pcm_substream *substream)
771 struct snd_soc_pcm_runtime *rtd = substream->private_data;
772 struct snd_soc_component *component;
773 struct snd_soc_rtdcom_list *rtdcom;
774 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
775 struct snd_soc_dai *codec_dai;
778 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
780 if (rtd->dai_link->ops->prepare) {
781 ret = rtd->dai_link->ops->prepare(substream);
783 dev_err(rtd->card->dev, "ASoC: machine prepare error:"
789 for_each_rtdcom(rtd, rtdcom) {
790 component = rtdcom->component;
792 if (!component->driver->ops ||
793 !component->driver->ops->prepare)
796 ret = component->driver->ops->prepare(substream);
798 dev_err(component->dev,
799 "ASoC: platform prepare error: %d\n", ret);
804 for (i = 0; i < rtd->num_codecs; i++) {
805 codec_dai = rtd->codec_dais[i];
806 if (codec_dai->driver->ops->prepare) {
807 ret = codec_dai->driver->ops->prepare(substream,
810 dev_err(codec_dai->dev,
811 "ASoC: codec DAI prepare error: %d\n",
818 if (cpu_dai->driver->ops->prepare) {
819 ret = cpu_dai->driver->ops->prepare(substream, cpu_dai);
821 dev_err(cpu_dai->dev,
822 "ASoC: cpu DAI prepare error: %d\n", ret);
827 /* cancel any delayed stream shutdown that is pending */
828 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
831 cancel_delayed_work(&rtd->delayed_work);
834 snd_soc_dapm_stream_event(rtd, substream->stream,
835 SND_SOC_DAPM_STREAM_START);
837 for (i = 0; i < rtd->num_codecs; i++)
838 snd_soc_dai_digital_mute(rtd->codec_dais[i], 0,
840 snd_soc_dai_digital_mute(cpu_dai, 0, substream->stream);
843 mutex_unlock(&rtd->pcm_mutex);
847 static void soc_pcm_codec_params_fixup(struct snd_pcm_hw_params *params,
850 struct snd_interval *interval;
851 int channels = hweight_long(mask);
853 interval = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
854 interval->min = channels;
855 interval->max = channels;
858 int soc_dai_hw_params(struct snd_pcm_substream *substream,
859 struct snd_pcm_hw_params *params,
860 struct snd_soc_dai *dai)
862 struct snd_soc_pcm_runtime *rtd = substream->private_data;
865 /* perform any topology hw_params fixups before DAI */
866 if (rtd->dai_link->be_hw_params_fixup) {
867 ret = rtd->dai_link->be_hw_params_fixup(rtd, params);
870 "ASoC: hw_params topology fixup failed %d\n",
876 if (dai->driver->ops->hw_params) {
877 ret = dai->driver->ops->hw_params(substream, params, dai);
879 dev_err(dai->dev, "ASoC: can't set %s hw params: %d\n",
888 static int soc_pcm_components_hw_free(struct snd_pcm_substream *substream,
889 struct snd_soc_component *last)
891 struct snd_soc_pcm_runtime *rtd = substream->private_data;
892 struct snd_soc_rtdcom_list *rtdcom;
893 struct snd_soc_component *component;
895 for_each_rtdcom(rtd, rtdcom) {
896 component = rtdcom->component;
898 if (component == last)
901 if (!component->driver->ops ||
902 !component->driver->ops->hw_free)
905 component->driver->ops->hw_free(substream);
912 * Called by ALSA when the hardware params are set by application. This
913 * function can also be called multiple times and can allocate buffers
914 * (using snd_pcm_lib_* ). It's non-atomic.
916 static int soc_pcm_hw_params(struct snd_pcm_substream *substream,
917 struct snd_pcm_hw_params *params)
919 struct snd_soc_pcm_runtime *rtd = substream->private_data;
920 struct snd_soc_component *component;
921 struct snd_soc_rtdcom_list *rtdcom;
922 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
925 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
926 if (rtd->dai_link->ops->hw_params) {
927 ret = rtd->dai_link->ops->hw_params(substream, params);
929 dev_err(rtd->card->dev, "ASoC: machine hw_params"
930 " failed: %d\n", ret);
935 for (i = 0; i < rtd->num_codecs; i++) {
936 struct snd_soc_dai *codec_dai = rtd->codec_dais[i];
937 struct snd_pcm_hw_params codec_params;
940 * Skip CODECs which don't support the current stream type,
941 * the idea being that if a CODEC is not used for the currently
942 * set up transfer direction, it should not need to be
943 * configured, especially since the configuration used might
944 * not even be supported by that CODEC. There may be cases
945 * however where a CODEC needs to be set up although it is
946 * actually not being used for the transfer, e.g. if a
947 * capture-only CODEC is acting as an LRCLK and/or BCLK master
948 * for the DAI link including a playback-only CODEC.
949 * If this becomes necessary, we will have to augment the
950 * machine driver setup with information on how to act, so
951 * we can do the right thing here.
953 if (!snd_soc_dai_stream_valid(codec_dai, substream->stream))
956 /* copy params for each codec */
957 codec_params = *params;
959 /* fixup params based on TDM slot masks */
960 if (codec_dai->tx_mask)
961 soc_pcm_codec_params_fixup(&codec_params,
963 if (codec_dai->rx_mask)
964 soc_pcm_codec_params_fixup(&codec_params,
967 ret = soc_dai_hw_params(substream, &codec_params, codec_dai);
971 codec_dai->rate = params_rate(&codec_params);
972 codec_dai->channels = params_channels(&codec_params);
973 codec_dai->sample_bits = snd_pcm_format_physical_width(
974 params_format(&codec_params));
977 ret = soc_dai_hw_params(substream, params, cpu_dai);
981 for_each_rtdcom(rtd, rtdcom) {
982 component = rtdcom->component;
984 if (!component->driver->ops ||
985 !component->driver->ops->hw_params)
988 ret = component->driver->ops->hw_params(substream, params);
990 dev_err(component->dev,
991 "ASoC: %s hw params failed: %d\n",
992 component->name, ret);
998 /* store the parameters for each DAIs */
999 cpu_dai->rate = params_rate(params);
1000 cpu_dai->channels = params_channels(params);
1001 cpu_dai->sample_bits =
1002 snd_pcm_format_physical_width(params_format(params));
1004 ret = soc_pcm_params_symmetry(substream, params);
1008 mutex_unlock(&rtd->pcm_mutex);
1012 soc_pcm_components_hw_free(substream, component);
1014 if (cpu_dai->driver->ops->hw_free)
1015 cpu_dai->driver->ops->hw_free(substream, cpu_dai);
1018 i = rtd->num_codecs;
1022 struct snd_soc_dai *codec_dai = rtd->codec_dais[i];
1023 if (codec_dai->driver->ops->hw_free)
1024 codec_dai->driver->ops->hw_free(substream, codec_dai);
1025 codec_dai->rate = 0;
1028 if (rtd->dai_link->ops->hw_free)
1029 rtd->dai_link->ops->hw_free(substream);
1031 mutex_unlock(&rtd->pcm_mutex);
1036 * Frees resources allocated by hw_params, can be called multiple times
1038 static int soc_pcm_hw_free(struct snd_pcm_substream *substream)
1040 struct snd_soc_pcm_runtime *rtd = substream->private_data;
1041 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
1042 struct snd_soc_dai *codec_dai;
1043 bool playback = substream->stream == SNDRV_PCM_STREAM_PLAYBACK;
1046 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
1048 /* clear the corresponding DAIs parameters when going to be inactive */
1049 if (cpu_dai->active == 1) {
1051 cpu_dai->channels = 0;
1052 cpu_dai->sample_bits = 0;
1055 for (i = 0; i < rtd->num_codecs; i++) {
1056 codec_dai = rtd->codec_dais[i];
1057 if (codec_dai->active == 1) {
1058 codec_dai->rate = 0;
1059 codec_dai->channels = 0;
1060 codec_dai->sample_bits = 0;
1064 /* apply codec digital mute */
1065 for (i = 0; i < rtd->num_codecs; i++) {
1066 if ((playback && rtd->codec_dais[i]->playback_active == 1) ||
1067 (!playback && rtd->codec_dais[i]->capture_active == 1))
1068 snd_soc_dai_digital_mute(rtd->codec_dais[i], 1,
1072 /* free any machine hw params */
1073 if (rtd->dai_link->ops->hw_free)
1074 rtd->dai_link->ops->hw_free(substream);
1076 /* free any component resources */
1077 soc_pcm_components_hw_free(substream, NULL);
1079 /* now free hw params for the DAIs */
1080 for (i = 0; i < rtd->num_codecs; i++) {
1081 codec_dai = rtd->codec_dais[i];
1082 if (codec_dai->driver->ops->hw_free)
1083 codec_dai->driver->ops->hw_free(substream, codec_dai);
1086 if (cpu_dai->driver->ops->hw_free)
1087 cpu_dai->driver->ops->hw_free(substream, cpu_dai);
1089 mutex_unlock(&rtd->pcm_mutex);
1093 static int soc_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
1095 struct snd_soc_pcm_runtime *rtd = substream->private_data;
1096 struct snd_soc_component *component;
1097 struct snd_soc_rtdcom_list *rtdcom;
1098 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
1099 struct snd_soc_dai *codec_dai;
1102 for (i = 0; i < rtd->num_codecs; i++) {
1103 codec_dai = rtd->codec_dais[i];
1104 if (codec_dai->driver->ops->trigger) {
1105 ret = codec_dai->driver->ops->trigger(substream,
1112 for_each_rtdcom(rtd, rtdcom) {
1113 component = rtdcom->component;
1115 if (!component->driver->ops ||
1116 !component->driver->ops->trigger)
1119 ret = component->driver->ops->trigger(substream, cmd);
1124 if (cpu_dai->driver->ops->trigger) {
1125 ret = cpu_dai->driver->ops->trigger(substream, cmd, cpu_dai);
1130 if (rtd->dai_link->ops->trigger) {
1131 ret = rtd->dai_link->ops->trigger(substream, cmd);
1139 static int soc_pcm_bespoke_trigger(struct snd_pcm_substream *substream,
1142 struct snd_soc_pcm_runtime *rtd = substream->private_data;
1143 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
1144 struct snd_soc_dai *codec_dai;
1147 for (i = 0; i < rtd->num_codecs; i++) {
1148 codec_dai = rtd->codec_dais[i];
1149 if (codec_dai->driver->ops->bespoke_trigger) {
1150 ret = codec_dai->driver->ops->bespoke_trigger(substream,
1157 if (cpu_dai->driver->ops->bespoke_trigger) {
1158 ret = cpu_dai->driver->ops->bespoke_trigger(substream, cmd, cpu_dai);
1165 * soc level wrapper for pointer callback
1166 * If cpu_dai, codec_dai, component driver has the delay callback, then
1167 * the runtime->delay will be updated accordingly.
1169 static snd_pcm_uframes_t soc_pcm_pointer(struct snd_pcm_substream *substream)
1171 struct snd_soc_pcm_runtime *rtd = substream->private_data;
1172 struct snd_soc_component *component;
1173 struct snd_soc_rtdcom_list *rtdcom;
1174 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
1175 struct snd_soc_dai *codec_dai;
1176 struct snd_pcm_runtime *runtime = substream->runtime;
1177 snd_pcm_uframes_t offset = 0;
1178 snd_pcm_sframes_t delay = 0;
1179 snd_pcm_sframes_t codec_delay = 0;
1182 /* clearing the previous total delay */
1185 for_each_rtdcom(rtd, rtdcom) {
1186 component = rtdcom->component;
1188 if (!component->driver->ops ||
1189 !component->driver->ops->pointer)
1192 /* FIXME: use 1st pointer */
1193 offset = component->driver->ops->pointer(substream);
1196 /* base delay if assigned in pointer callback */
1197 delay = runtime->delay;
1199 if (cpu_dai->driver->ops->delay)
1200 delay += cpu_dai->driver->ops->delay(substream, cpu_dai);
1202 for (i = 0; i < rtd->num_codecs; i++) {
1203 codec_dai = rtd->codec_dais[i];
1204 if (codec_dai->driver->ops->delay)
1205 codec_delay = max(codec_delay,
1206 codec_dai->driver->ops->delay(substream,
1209 delay += codec_delay;
1211 runtime->delay = delay;
1216 /* connect a FE and BE */
1217 static int dpcm_be_connect(struct snd_soc_pcm_runtime *fe,
1218 struct snd_soc_pcm_runtime *be, int stream)
1220 struct snd_soc_dpcm *dpcm;
1222 /* only add new dpcms */
1223 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1224 if (dpcm->be == be && dpcm->fe == fe)
1228 dpcm = kzalloc(sizeof(struct snd_soc_dpcm), GFP_KERNEL);
1234 be->dpcm[stream].runtime = fe->dpcm[stream].runtime;
1235 dpcm->state = SND_SOC_DPCM_LINK_STATE_NEW;
1236 list_add(&dpcm->list_be, &fe->dpcm[stream].be_clients);
1237 list_add(&dpcm->list_fe, &be->dpcm[stream].fe_clients);
1239 dev_dbg(fe->dev, "connected new DPCM %s path %s %s %s\n",
1240 stream ? "capture" : "playback", fe->dai_link->name,
1241 stream ? "<-" : "->", be->dai_link->name);
1243 #ifdef CONFIG_DEBUG_FS
1244 if (fe->debugfs_dpcm_root)
1245 dpcm->debugfs_state = debugfs_create_u32(be->dai_link->name, 0644,
1246 fe->debugfs_dpcm_root, &dpcm->state);
1251 /* reparent a BE onto another FE */
1252 static void dpcm_be_reparent(struct snd_soc_pcm_runtime *fe,
1253 struct snd_soc_pcm_runtime *be, int stream)
1255 struct snd_soc_dpcm *dpcm;
1256 struct snd_pcm_substream *fe_substream, *be_substream;
1258 /* reparent if BE is connected to other FEs */
1259 if (!be->dpcm[stream].users)
1262 be_substream = snd_soc_dpcm_get_substream(be, stream);
1264 list_for_each_entry(dpcm, &be->dpcm[stream].fe_clients, list_fe) {
1268 dev_dbg(fe->dev, "reparent %s path %s %s %s\n",
1269 stream ? "capture" : "playback",
1270 dpcm->fe->dai_link->name,
1271 stream ? "<-" : "->", dpcm->be->dai_link->name);
1273 fe_substream = snd_soc_dpcm_get_substream(dpcm->fe, stream);
1274 be_substream->runtime = fe_substream->runtime;
1279 /* disconnect a BE and FE */
1280 void dpcm_be_disconnect(struct snd_soc_pcm_runtime *fe, int stream)
1282 struct snd_soc_dpcm *dpcm, *d;
1284 list_for_each_entry_safe(dpcm, d, &fe->dpcm[stream].be_clients, list_be) {
1285 dev_dbg(fe->dev, "ASoC: BE %s disconnect check for %s\n",
1286 stream ? "capture" : "playback",
1287 dpcm->be->dai_link->name);
1289 if (dpcm->state != SND_SOC_DPCM_LINK_STATE_FREE)
1292 dev_dbg(fe->dev, "freed DSP %s path %s %s %s\n",
1293 stream ? "capture" : "playback", fe->dai_link->name,
1294 stream ? "<-" : "->", dpcm->be->dai_link->name);
1296 /* BEs still alive need new FE */
1297 dpcm_be_reparent(fe, dpcm->be, stream);
1299 #ifdef CONFIG_DEBUG_FS
1300 debugfs_remove(dpcm->debugfs_state);
1302 list_del(&dpcm->list_be);
1303 list_del(&dpcm->list_fe);
1308 /* get BE for DAI widget and stream */
1309 static struct snd_soc_pcm_runtime *dpcm_get_be(struct snd_soc_card *card,
1310 struct snd_soc_dapm_widget *widget, int stream)
1312 struct snd_soc_pcm_runtime *be;
1315 dev_dbg(card->dev, "ASoC: find BE for widget %s\n", widget->name);
1317 if (stream == SNDRV_PCM_STREAM_PLAYBACK) {
1318 list_for_each_entry(be, &card->rtd_list, list) {
1320 if (!be->dai_link->no_pcm)
1323 dev_dbg(card->dev, "ASoC: try BE : %s\n",
1324 be->cpu_dai->playback_widget ?
1325 be->cpu_dai->playback_widget->name : "(not set)");
1327 if (be->cpu_dai->playback_widget == widget)
1330 for (i = 0; i < be->num_codecs; i++) {
1331 struct snd_soc_dai *dai = be->codec_dais[i];
1332 if (dai->playback_widget == widget)
1338 list_for_each_entry(be, &card->rtd_list, list) {
1340 if (!be->dai_link->no_pcm)
1343 dev_dbg(card->dev, "ASoC: try BE %s\n",
1344 be->cpu_dai->capture_widget ?
1345 be->cpu_dai->capture_widget->name : "(not set)");
1347 if (be->cpu_dai->capture_widget == widget)
1350 for (i = 0; i < be->num_codecs; i++) {
1351 struct snd_soc_dai *dai = be->codec_dais[i];
1352 if (dai->capture_widget == widget)
1358 /* dai link name and stream name set correctly ? */
1359 dev_err(card->dev, "ASoC: can't get %s BE for %s\n",
1360 stream ? "capture" : "playback", widget->name);
1364 static inline struct snd_soc_dapm_widget *
1365 dai_get_widget(struct snd_soc_dai *dai, int stream)
1367 if (stream == SNDRV_PCM_STREAM_PLAYBACK)
1368 return dai->playback_widget;
1370 return dai->capture_widget;
1373 static int widget_in_list(struct snd_soc_dapm_widget_list *list,
1374 struct snd_soc_dapm_widget *widget)
1378 for (i = 0; i < list->num_widgets; i++) {
1379 if (widget == list->widgets[i])
1386 static bool dpcm_end_walk_at_be(struct snd_soc_dapm_widget *widget,
1387 enum snd_soc_dapm_direction dir)
1389 struct snd_soc_card *card = widget->dapm->card;
1390 struct snd_soc_pcm_runtime *rtd;
1393 if (dir == SND_SOC_DAPM_DIR_OUT) {
1394 list_for_each_entry(rtd, &card->rtd_list, list) {
1395 if (!rtd->dai_link->no_pcm)
1398 if (rtd->cpu_dai->playback_widget == widget)
1401 for (i = 0; i < rtd->num_codecs; ++i) {
1402 struct snd_soc_dai *dai = rtd->codec_dais[i];
1403 if (dai->playback_widget == widget)
1407 } else { /* SND_SOC_DAPM_DIR_IN */
1408 list_for_each_entry(rtd, &card->rtd_list, list) {
1409 if (!rtd->dai_link->no_pcm)
1412 if (rtd->cpu_dai->capture_widget == widget)
1415 for (i = 0; i < rtd->num_codecs; ++i) {
1416 struct snd_soc_dai *dai = rtd->codec_dais[i];
1417 if (dai->capture_widget == widget)
1426 int dpcm_path_get(struct snd_soc_pcm_runtime *fe,
1427 int stream, struct snd_soc_dapm_widget_list **list)
1429 struct snd_soc_dai *cpu_dai = fe->cpu_dai;
1432 /* get number of valid DAI paths and their widgets */
1433 paths = snd_soc_dapm_dai_get_connected_widgets(cpu_dai, stream, list,
1434 dpcm_end_walk_at_be);
1436 dev_dbg(fe->dev, "ASoC: found %d audio %s paths\n", paths,
1437 stream ? "capture" : "playback");
1442 static int dpcm_prune_paths(struct snd_soc_pcm_runtime *fe, int stream,
1443 struct snd_soc_dapm_widget_list **list_)
1445 struct snd_soc_dpcm *dpcm;
1446 struct snd_soc_dapm_widget_list *list = *list_;
1447 struct snd_soc_dapm_widget *widget;
1450 /* Destroy any old FE <--> BE connections */
1451 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1454 /* is there a valid CPU DAI widget for this BE */
1455 widget = dai_get_widget(dpcm->be->cpu_dai, stream);
1457 /* prune the BE if it's no longer in our active list */
1458 if (widget && widget_in_list(list, widget))
1461 /* is there a valid CODEC DAI widget for this BE */
1462 for (i = 0; i < dpcm->be->num_codecs; i++) {
1463 struct snd_soc_dai *dai = dpcm->be->codec_dais[i];
1464 widget = dai_get_widget(dai, stream);
1466 /* prune the BE if it's no longer in our active list */
1467 if (widget && widget_in_list(list, widget))
1471 dev_dbg(fe->dev, "ASoC: pruning %s BE %s for %s\n",
1472 stream ? "capture" : "playback",
1473 dpcm->be->dai_link->name, fe->dai_link->name);
1474 dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE;
1475 dpcm->be->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_BE;
1479 dev_dbg(fe->dev, "ASoC: found %d old BE paths for pruning\n", prune);
1483 static int dpcm_add_paths(struct snd_soc_pcm_runtime *fe, int stream,
1484 struct snd_soc_dapm_widget_list **list_)
1486 struct snd_soc_card *card = fe->card;
1487 struct snd_soc_dapm_widget_list *list = *list_;
1488 struct snd_soc_pcm_runtime *be;
1489 int i, new = 0, err;
1491 /* Create any new FE <--> BE connections */
1492 for (i = 0; i < list->num_widgets; i++) {
1494 switch (list->widgets[i]->id) {
1495 case snd_soc_dapm_dai_in:
1496 if (stream != SNDRV_PCM_STREAM_PLAYBACK)
1499 case snd_soc_dapm_dai_out:
1500 if (stream != SNDRV_PCM_STREAM_CAPTURE)
1507 /* is there a valid BE rtd for this widget */
1508 be = dpcm_get_be(card, list->widgets[i], stream);
1510 dev_err(fe->dev, "ASoC: no BE found for %s\n",
1511 list->widgets[i]->name);
1515 /* make sure BE is a real BE */
1516 if (!be->dai_link->no_pcm)
1519 /* don't connect if FE is not running */
1520 if (!fe->dpcm[stream].runtime && !fe->fe_compr)
1523 /* newly connected FE and BE */
1524 err = dpcm_be_connect(fe, be, stream);
1526 dev_err(fe->dev, "ASoC: can't connect %s\n",
1527 list->widgets[i]->name);
1529 } else if (err == 0) /* already connected */
1533 be->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_BE;
1537 dev_dbg(fe->dev, "ASoC: found %d new BE paths\n", new);
1542 * Find the corresponding BE DAIs that source or sink audio to this
1545 int dpcm_process_paths(struct snd_soc_pcm_runtime *fe,
1546 int stream, struct snd_soc_dapm_widget_list **list, int new)
1549 return dpcm_add_paths(fe, stream, list);
1551 return dpcm_prune_paths(fe, stream, list);
1554 void dpcm_clear_pending_state(struct snd_soc_pcm_runtime *fe, int stream)
1556 struct snd_soc_dpcm *dpcm;
1558 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be)
1559 dpcm->be->dpcm[stream].runtime_update =
1560 SND_SOC_DPCM_UPDATE_NO;
1563 static void dpcm_be_dai_startup_unwind(struct snd_soc_pcm_runtime *fe,
1566 struct snd_soc_dpcm *dpcm;
1568 /* disable any enabled and non active backends */
1569 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1571 struct snd_soc_pcm_runtime *be = dpcm->be;
1572 struct snd_pcm_substream *be_substream =
1573 snd_soc_dpcm_get_substream(be, stream);
1575 if (be->dpcm[stream].users == 0)
1576 dev_err(be->dev, "ASoC: no users %s at close - state %d\n",
1577 stream ? "capture" : "playback",
1578 be->dpcm[stream].state);
1580 if (--be->dpcm[stream].users != 0)
1583 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN)
1586 soc_pcm_close(be_substream);
1587 be_substream->runtime = NULL;
1588 be->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
1592 int dpcm_be_dai_startup(struct snd_soc_pcm_runtime *fe, int stream)
1594 struct snd_soc_dpcm *dpcm;
1597 /* only startup BE DAIs that are either sinks or sources to this FE DAI */
1598 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1600 struct snd_soc_pcm_runtime *be = dpcm->be;
1601 struct snd_pcm_substream *be_substream =
1602 snd_soc_dpcm_get_substream(be, stream);
1604 if (!be_substream) {
1605 dev_err(be->dev, "ASoC: no backend %s stream\n",
1606 stream ? "capture" : "playback");
1610 /* is this op for this BE ? */
1611 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1614 /* first time the dpcm is open ? */
1615 if (be->dpcm[stream].users == DPCM_MAX_BE_USERS)
1616 dev_err(be->dev, "ASoC: too many users %s at open %d\n",
1617 stream ? "capture" : "playback",
1618 be->dpcm[stream].state);
1620 if (be->dpcm[stream].users++ != 0)
1623 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_NEW) &&
1624 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_CLOSE))
1627 dev_dbg(be->dev, "ASoC: open %s BE %s\n",
1628 stream ? "capture" : "playback", be->dai_link->name);
1630 be_substream->runtime = be->dpcm[stream].runtime;
1631 err = soc_pcm_open(be_substream);
1633 dev_err(be->dev, "ASoC: BE open failed %d\n", err);
1634 be->dpcm[stream].users--;
1635 if (be->dpcm[stream].users < 0)
1636 dev_err(be->dev, "ASoC: no users %s at unwind %d\n",
1637 stream ? "capture" : "playback",
1638 be->dpcm[stream].state);
1640 be->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
1644 be->dpcm[stream].state = SND_SOC_DPCM_STATE_OPEN;
1651 /* disable any enabled and non active backends */
1652 list_for_each_entry_continue_reverse(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1653 struct snd_soc_pcm_runtime *be = dpcm->be;
1654 struct snd_pcm_substream *be_substream =
1655 snd_soc_dpcm_get_substream(be, stream);
1657 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1660 if (be->dpcm[stream].users == 0)
1661 dev_err(be->dev, "ASoC: no users %s at close %d\n",
1662 stream ? "capture" : "playback",
1663 be->dpcm[stream].state);
1665 if (--be->dpcm[stream].users != 0)
1668 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN)
1671 soc_pcm_close(be_substream);
1672 be_substream->runtime = NULL;
1673 be->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
1679 static void dpcm_init_runtime_hw(struct snd_pcm_runtime *runtime,
1680 struct snd_soc_pcm_stream *stream)
1682 runtime->hw.rate_min = stream->rate_min;
1683 runtime->hw.rate_max = stream->rate_max;
1684 runtime->hw.channels_min = stream->channels_min;
1685 runtime->hw.channels_max = stream->channels_max;
1686 if (runtime->hw.formats)
1687 runtime->hw.formats &= stream->formats;
1689 runtime->hw.formats = stream->formats;
1690 runtime->hw.rates = stream->rates;
1693 static void dpcm_runtime_merge_format(struct snd_pcm_substream *substream,
1696 struct snd_soc_pcm_runtime *fe = substream->private_data;
1697 struct snd_soc_dpcm *dpcm;
1698 int stream = substream->stream;
1700 if (!fe->dai_link->dpcm_merged_format)
1704 * It returns merged BE codec format
1705 * if FE want to use it (= dpcm_merged_format)
1708 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1709 struct snd_soc_pcm_runtime *be = dpcm->be;
1710 struct snd_soc_dai_driver *codec_dai_drv;
1711 struct snd_soc_pcm_stream *codec_stream;
1714 for (i = 0; i < be->num_codecs; i++) {
1715 codec_dai_drv = be->codec_dais[i]->driver;
1716 if (stream == SNDRV_PCM_STREAM_PLAYBACK)
1717 codec_stream = &codec_dai_drv->playback;
1719 codec_stream = &codec_dai_drv->capture;
1721 *formats &= codec_stream->formats;
1726 static void dpcm_runtime_merge_chan(struct snd_pcm_substream *substream,
1727 unsigned int *channels_min,
1728 unsigned int *channels_max)
1730 struct snd_soc_pcm_runtime *fe = substream->private_data;
1731 struct snd_soc_dpcm *dpcm;
1732 int stream = substream->stream;
1734 if (!fe->dai_link->dpcm_merged_chan)
1738 * It returns merged BE codec channel;
1739 * if FE want to use it (= dpcm_merged_chan)
1742 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1743 struct snd_soc_pcm_runtime *be = dpcm->be;
1744 struct snd_soc_dai_driver *cpu_dai_drv = be->cpu_dai->driver;
1745 struct snd_soc_dai_driver *codec_dai_drv;
1746 struct snd_soc_pcm_stream *codec_stream;
1747 struct snd_soc_pcm_stream *cpu_stream;
1749 if (stream == SNDRV_PCM_STREAM_PLAYBACK)
1750 cpu_stream = &cpu_dai_drv->playback;
1752 cpu_stream = &cpu_dai_drv->capture;
1754 *channels_min = max(*channels_min, cpu_stream->channels_min);
1755 *channels_max = min(*channels_max, cpu_stream->channels_max);
1758 * chan min/max cannot be enforced if there are multiple CODEC
1759 * DAIs connected to a single CPU DAI, use CPU DAI's directly
1761 if (be->num_codecs == 1) {
1762 codec_dai_drv = be->codec_dais[0]->driver;
1764 if (stream == SNDRV_PCM_STREAM_PLAYBACK)
1765 codec_stream = &codec_dai_drv->playback;
1767 codec_stream = &codec_dai_drv->capture;
1769 *channels_min = max(*channels_min,
1770 codec_stream->channels_min);
1771 *channels_max = min(*channels_max,
1772 codec_stream->channels_max);
1777 static void dpcm_runtime_merge_rate(struct snd_pcm_substream *substream,
1778 unsigned int *rates,
1779 unsigned int *rate_min,
1780 unsigned int *rate_max)
1782 struct snd_soc_pcm_runtime *fe = substream->private_data;
1783 struct snd_soc_dpcm *dpcm;
1784 int stream = substream->stream;
1786 if (!fe->dai_link->dpcm_merged_rate)
1790 * It returns merged BE codec channel;
1791 * if FE want to use it (= dpcm_merged_chan)
1794 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1795 struct snd_soc_pcm_runtime *be = dpcm->be;
1796 struct snd_soc_dai_driver *cpu_dai_drv = be->cpu_dai->driver;
1797 struct snd_soc_dai_driver *codec_dai_drv;
1798 struct snd_soc_pcm_stream *codec_stream;
1799 struct snd_soc_pcm_stream *cpu_stream;
1802 if (stream == SNDRV_PCM_STREAM_PLAYBACK)
1803 cpu_stream = &cpu_dai_drv->playback;
1805 cpu_stream = &cpu_dai_drv->capture;
1807 *rate_min = max(*rate_min, cpu_stream->rate_min);
1808 *rate_max = min_not_zero(*rate_max, cpu_stream->rate_max);
1809 *rates = snd_pcm_rate_mask_intersect(*rates, cpu_stream->rates);
1811 for (i = 0; i < be->num_codecs; i++) {
1813 * Skip CODECs which don't support the current stream
1814 * type. See soc_pcm_init_runtime_hw() for more details
1816 if (!snd_soc_dai_stream_valid(be->codec_dais[i],
1820 codec_dai_drv = be->codec_dais[i]->driver;
1821 if (stream == SNDRV_PCM_STREAM_PLAYBACK)
1822 codec_stream = &codec_dai_drv->playback;
1824 codec_stream = &codec_dai_drv->capture;
1826 *rate_min = max(*rate_min, codec_stream->rate_min);
1827 *rate_max = min_not_zero(*rate_max,
1828 codec_stream->rate_max);
1829 *rates = snd_pcm_rate_mask_intersect(*rates,
1830 codec_stream->rates);
1835 static void dpcm_set_fe_runtime(struct snd_pcm_substream *substream)
1837 struct snd_pcm_runtime *runtime = substream->runtime;
1838 struct snd_soc_pcm_runtime *rtd = substream->private_data;
1839 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
1840 struct snd_soc_dai_driver *cpu_dai_drv = cpu_dai->driver;
1842 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
1843 dpcm_init_runtime_hw(runtime, &cpu_dai_drv->playback);
1845 dpcm_init_runtime_hw(runtime, &cpu_dai_drv->capture);
1847 dpcm_runtime_merge_format(substream, &runtime->hw.formats);
1848 dpcm_runtime_merge_chan(substream, &runtime->hw.channels_min,
1849 &runtime->hw.channels_max);
1850 dpcm_runtime_merge_rate(substream, &runtime->hw.rates,
1851 &runtime->hw.rate_min, &runtime->hw.rate_max);
1854 static int dpcm_fe_dai_do_trigger(struct snd_pcm_substream *substream, int cmd);
1856 /* Set FE's runtime_update state; the state is protected via PCM stream lock
1857 * for avoiding the race with trigger callback.
1858 * If the state is unset and a trigger is pending while the previous operation,
1859 * process the pending trigger action here.
1861 static void dpcm_set_fe_update_state(struct snd_soc_pcm_runtime *fe,
1862 int stream, enum snd_soc_dpcm_update state)
1864 struct snd_pcm_substream *substream =
1865 snd_soc_dpcm_get_substream(fe, stream);
1867 snd_pcm_stream_lock_irq(substream);
1868 if (state == SND_SOC_DPCM_UPDATE_NO && fe->dpcm[stream].trigger_pending) {
1869 dpcm_fe_dai_do_trigger(substream,
1870 fe->dpcm[stream].trigger_pending - 1);
1871 fe->dpcm[stream].trigger_pending = 0;
1873 fe->dpcm[stream].runtime_update = state;
1874 snd_pcm_stream_unlock_irq(substream);
1877 static int dpcm_apply_symmetry(struct snd_pcm_substream *fe_substream,
1880 struct snd_soc_dpcm *dpcm;
1881 struct snd_soc_pcm_runtime *fe = fe_substream->private_data;
1882 struct snd_soc_dai *fe_cpu_dai = fe->cpu_dai;
1885 /* apply symmetry for FE */
1886 if (soc_pcm_has_symmetry(fe_substream))
1887 fe_substream->runtime->hw.info |= SNDRV_PCM_INFO_JOINT_DUPLEX;
1889 /* Symmetry only applies if we've got an active stream. */
1890 if (fe_cpu_dai->active) {
1891 err = soc_pcm_apply_symmetry(fe_substream, fe_cpu_dai);
1896 /* apply symmetry for BE */
1897 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1898 struct snd_soc_pcm_runtime *be = dpcm->be;
1899 struct snd_pcm_substream *be_substream =
1900 snd_soc_dpcm_get_substream(be, stream);
1901 struct snd_soc_pcm_runtime *rtd = be_substream->private_data;
1904 if (rtd->dai_link->be_hw_params_fixup)
1907 if (soc_pcm_has_symmetry(be_substream))
1908 be_substream->runtime->hw.info |= SNDRV_PCM_INFO_JOINT_DUPLEX;
1910 /* Symmetry only applies if we've got an active stream. */
1911 if (rtd->cpu_dai->active) {
1912 err = soc_pcm_apply_symmetry(fe_substream,
1918 for (i = 0; i < rtd->num_codecs; i++) {
1919 if (rtd->codec_dais[i]->active) {
1920 err = soc_pcm_apply_symmetry(fe_substream,
1921 rtd->codec_dais[i]);
1931 static int dpcm_fe_dai_startup(struct snd_pcm_substream *fe_substream)
1933 struct snd_soc_pcm_runtime *fe = fe_substream->private_data;
1934 struct snd_pcm_runtime *runtime = fe_substream->runtime;
1935 int stream = fe_substream->stream, ret = 0;
1937 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE);
1939 ret = dpcm_be_dai_startup(fe, fe_substream->stream);
1941 dev_err(fe->dev,"ASoC: failed to start some BEs %d\n", ret);
1945 dev_dbg(fe->dev, "ASoC: open FE %s\n", fe->dai_link->name);
1947 /* start the DAI frontend */
1948 ret = soc_pcm_open(fe_substream);
1950 dev_err(fe->dev,"ASoC: failed to start FE %d\n", ret);
1954 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_OPEN;
1956 dpcm_set_fe_runtime(fe_substream);
1957 snd_pcm_limit_hw_rates(runtime);
1959 ret = dpcm_apply_symmetry(fe_substream, stream);
1961 dev_err(fe->dev, "ASoC: failed to apply dpcm symmetry %d\n",
1966 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
1970 dpcm_be_dai_startup_unwind(fe, fe_substream->stream);
1972 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
1976 int dpcm_be_dai_shutdown(struct snd_soc_pcm_runtime *fe, int stream)
1978 struct snd_soc_dpcm *dpcm;
1980 /* only shutdown BEs that are either sinks or sources to this FE DAI */
1981 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1983 struct snd_soc_pcm_runtime *be = dpcm->be;
1984 struct snd_pcm_substream *be_substream =
1985 snd_soc_dpcm_get_substream(be, stream);
1987 /* is this op for this BE ? */
1988 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1991 if (be->dpcm[stream].users == 0)
1992 dev_err(be->dev, "ASoC: no users %s at close - state %d\n",
1993 stream ? "capture" : "playback",
1994 be->dpcm[stream].state);
1996 if (--be->dpcm[stream].users != 0)
1999 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE) &&
2000 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN)) {
2001 soc_pcm_hw_free(be_substream);
2002 be->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_FREE;
2005 dev_dbg(be->dev, "ASoC: close BE %s\n",
2006 be->dai_link->name);
2008 soc_pcm_close(be_substream);
2009 be_substream->runtime = NULL;
2011 be->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
2016 static int dpcm_fe_dai_shutdown(struct snd_pcm_substream *substream)
2018 struct snd_soc_pcm_runtime *fe = substream->private_data;
2019 int stream = substream->stream;
2021 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE);
2023 /* shutdown the BEs */
2024 dpcm_be_dai_shutdown(fe, substream->stream);
2026 dev_dbg(fe->dev, "ASoC: close FE %s\n", fe->dai_link->name);
2028 /* now shutdown the frontend */
2029 soc_pcm_close(substream);
2031 /* run the stream event for each BE */
2032 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_STOP);
2034 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
2035 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
2039 int dpcm_be_dai_hw_free(struct snd_soc_pcm_runtime *fe, int stream)
2041 struct snd_soc_dpcm *dpcm;
2043 /* only hw_params backends that are either sinks or sources
2044 * to this frontend DAI */
2045 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
2047 struct snd_soc_pcm_runtime *be = dpcm->be;
2048 struct snd_pcm_substream *be_substream =
2049 snd_soc_dpcm_get_substream(be, stream);
2051 /* is this op for this BE ? */
2052 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
2055 /* only free hw when no longer used - check all FEs */
2056 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
2059 /* do not free hw if this BE is used by other FE */
2060 if (be->dpcm[stream].users > 1)
2063 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
2064 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PREPARE) &&
2065 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE) &&
2066 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PAUSED) &&
2067 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP) &&
2068 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_SUSPEND))
2071 dev_dbg(be->dev, "ASoC: hw_free BE %s\n",
2072 be->dai_link->name);
2074 soc_pcm_hw_free(be_substream);
2076 be->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_FREE;
2082 static int dpcm_fe_dai_hw_free(struct snd_pcm_substream *substream)
2084 struct snd_soc_pcm_runtime *fe = substream->private_data;
2085 int err, stream = substream->stream;
2087 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
2088 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE);
2090 dev_dbg(fe->dev, "ASoC: hw_free FE %s\n", fe->dai_link->name);
2092 /* call hw_free on the frontend */
2093 err = soc_pcm_hw_free(substream);
2095 dev_err(fe->dev,"ASoC: hw_free FE %s failed\n",
2096 fe->dai_link->name);
2098 /* only hw_params backends that are either sinks or sources
2099 * to this frontend DAI */
2100 err = dpcm_be_dai_hw_free(fe, stream);
2102 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_FREE;
2103 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
2105 mutex_unlock(&fe->card->mutex);
2109 int dpcm_be_dai_hw_params(struct snd_soc_pcm_runtime *fe, int stream)
2111 struct snd_soc_dpcm *dpcm;
2114 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
2116 struct snd_soc_pcm_runtime *be = dpcm->be;
2117 struct snd_pcm_substream *be_substream =
2118 snd_soc_dpcm_get_substream(be, stream);
2120 /* is this op for this BE ? */
2121 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
2124 /* copy params for each dpcm */
2125 memcpy(&dpcm->hw_params, &fe->dpcm[stream].hw_params,
2126 sizeof(struct snd_pcm_hw_params));
2128 /* perform any hw_params fixups */
2129 if (be->dai_link->be_hw_params_fixup) {
2130 ret = be->dai_link->be_hw_params_fixup(be,
2134 "ASoC: hw_params BE fixup failed %d\n",
2140 /* only allow hw_params() if no connected FEs are running */
2141 if (!snd_soc_dpcm_can_be_params(fe, be, stream))
2144 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN) &&
2145 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
2146 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE))
2149 dev_dbg(be->dev, "ASoC: hw_params BE %s\n",
2150 be->dai_link->name);
2152 ret = soc_pcm_hw_params(be_substream, &dpcm->hw_params);
2154 dev_err(dpcm->be->dev,
2155 "ASoC: hw_params BE failed %d\n", ret);
2159 be->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_PARAMS;
2164 /* disable any enabled and non active backends */
2165 list_for_each_entry_continue_reverse(dpcm, &fe->dpcm[stream].be_clients, list_be) {
2166 struct snd_soc_pcm_runtime *be = dpcm->be;
2167 struct snd_pcm_substream *be_substream =
2168 snd_soc_dpcm_get_substream(be, stream);
2170 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
2173 /* only allow hw_free() if no connected FEs are running */
2174 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
2177 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN) &&
2178 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
2179 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE) &&
2180 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP))
2183 soc_pcm_hw_free(be_substream);
2189 static int dpcm_fe_dai_hw_params(struct snd_pcm_substream *substream,
2190 struct snd_pcm_hw_params *params)
2192 struct snd_soc_pcm_runtime *fe = substream->private_data;
2193 int ret, stream = substream->stream;
2195 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
2196 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE);
2198 memcpy(&fe->dpcm[substream->stream].hw_params, params,
2199 sizeof(struct snd_pcm_hw_params));
2200 ret = dpcm_be_dai_hw_params(fe, substream->stream);
2202 dev_err(fe->dev,"ASoC: hw_params BE failed %d\n", ret);
2206 dev_dbg(fe->dev, "ASoC: hw_params FE %s rate %d chan %x fmt %d\n",
2207 fe->dai_link->name, params_rate(params),
2208 params_channels(params), params_format(params));
2210 /* call hw_params on the frontend */
2211 ret = soc_pcm_hw_params(substream, params);
2213 dev_err(fe->dev,"ASoC: hw_params FE failed %d\n", ret);
2214 dpcm_be_dai_hw_free(fe, stream);
2216 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_PARAMS;
2219 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
2220 mutex_unlock(&fe->card->mutex);
2224 static int dpcm_do_trigger(struct snd_soc_dpcm *dpcm,
2225 struct snd_pcm_substream *substream, int cmd)
2229 dev_dbg(dpcm->be->dev, "ASoC: trigger BE %s cmd %d\n",
2230 dpcm->be->dai_link->name, cmd);
2232 ret = soc_pcm_trigger(substream, cmd);
2234 dev_err(dpcm->be->dev,"ASoC: trigger BE failed %d\n", ret);
2239 int dpcm_be_dai_trigger(struct snd_soc_pcm_runtime *fe, int stream,
2242 struct snd_soc_dpcm *dpcm;
2245 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
2247 struct snd_soc_pcm_runtime *be = dpcm->be;
2248 struct snd_pcm_substream *be_substream =
2249 snd_soc_dpcm_get_substream(be, stream);
2251 /* is this op for this BE ? */
2252 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
2256 case SNDRV_PCM_TRIGGER_START:
2257 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_PREPARE) &&
2258 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP))
2261 ret = dpcm_do_trigger(dpcm, be_substream, cmd);
2265 be->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
2267 case SNDRV_PCM_TRIGGER_RESUME:
2268 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_SUSPEND))
2271 ret = dpcm_do_trigger(dpcm, be_substream, cmd);
2275 be->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
2277 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
2278 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_PAUSED))
2281 ret = dpcm_do_trigger(dpcm, be_substream, cmd);
2285 be->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
2287 case SNDRV_PCM_TRIGGER_STOP:
2288 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START)
2291 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
2294 ret = dpcm_do_trigger(dpcm, be_substream, cmd);
2298 be->dpcm[stream].state = SND_SOC_DPCM_STATE_STOP;
2300 case SNDRV_PCM_TRIGGER_SUSPEND:
2301 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START)
2304 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
2307 ret = dpcm_do_trigger(dpcm, be_substream, cmd);
2311 be->dpcm[stream].state = SND_SOC_DPCM_STATE_SUSPEND;
2313 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
2314 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START)
2317 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
2320 ret = dpcm_do_trigger(dpcm, be_substream, cmd);
2324 be->dpcm[stream].state = SND_SOC_DPCM_STATE_PAUSED;
2331 EXPORT_SYMBOL_GPL(dpcm_be_dai_trigger);
2333 static int dpcm_fe_dai_do_trigger(struct snd_pcm_substream *substream, int cmd)
2335 struct snd_soc_pcm_runtime *fe = substream->private_data;
2336 int stream = substream->stream, ret;
2337 enum snd_soc_dpcm_trigger trigger = fe->dai_link->trigger[stream];
2339 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_FE;
2342 case SND_SOC_DPCM_TRIGGER_PRE:
2343 /* call trigger on the frontend before the backend. */
2345 dev_dbg(fe->dev, "ASoC: pre trigger FE %s cmd %d\n",
2346 fe->dai_link->name, cmd);
2348 ret = soc_pcm_trigger(substream, cmd);
2350 dev_err(fe->dev,"ASoC: trigger FE failed %d\n", ret);
2354 ret = dpcm_be_dai_trigger(fe, substream->stream, cmd);
2356 case SND_SOC_DPCM_TRIGGER_POST:
2357 /* call trigger on the frontend after the backend. */
2359 ret = dpcm_be_dai_trigger(fe, substream->stream, cmd);
2361 dev_err(fe->dev,"ASoC: trigger FE failed %d\n", ret);
2365 dev_dbg(fe->dev, "ASoC: post trigger FE %s cmd %d\n",
2366 fe->dai_link->name, cmd);
2368 ret = soc_pcm_trigger(substream, cmd);
2370 case SND_SOC_DPCM_TRIGGER_BESPOKE:
2371 /* bespoke trigger() - handles both FE and BEs */
2373 dev_dbg(fe->dev, "ASoC: bespoke trigger FE %s cmd %d\n",
2374 fe->dai_link->name, cmd);
2376 ret = soc_pcm_bespoke_trigger(substream, cmd);
2378 dev_err(fe->dev,"ASoC: trigger FE failed %d\n", ret);
2383 dev_err(fe->dev, "ASoC: invalid trigger cmd %d for %s\n", cmd,
2384 fe->dai_link->name);
2390 case SNDRV_PCM_TRIGGER_START:
2391 case SNDRV_PCM_TRIGGER_RESUME:
2392 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
2393 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
2395 case SNDRV_PCM_TRIGGER_STOP:
2396 case SNDRV_PCM_TRIGGER_SUSPEND:
2397 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_STOP;
2399 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
2400 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_PAUSED;
2405 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO;
2409 static int dpcm_fe_dai_trigger(struct snd_pcm_substream *substream, int cmd)
2411 struct snd_soc_pcm_runtime *fe = substream->private_data;
2412 int stream = substream->stream;
2414 /* if FE's runtime_update is already set, we're in race;
2415 * process this trigger later at exit
2417 if (fe->dpcm[stream].runtime_update != SND_SOC_DPCM_UPDATE_NO) {
2418 fe->dpcm[stream].trigger_pending = cmd + 1;
2419 return 0; /* delayed, assuming it's successful */
2422 /* we're alone, let's trigger */
2423 return dpcm_fe_dai_do_trigger(substream, cmd);
2426 int dpcm_be_dai_prepare(struct snd_soc_pcm_runtime *fe, int stream)
2428 struct snd_soc_dpcm *dpcm;
2431 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
2433 struct snd_soc_pcm_runtime *be = dpcm->be;
2434 struct snd_pcm_substream *be_substream =
2435 snd_soc_dpcm_get_substream(be, stream);
2437 /* is this op for this BE ? */
2438 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
2441 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
2442 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP) &&
2443 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_SUSPEND))
2446 dev_dbg(be->dev, "ASoC: prepare BE %s\n",
2447 be->dai_link->name);
2449 ret = soc_pcm_prepare(be_substream);
2451 dev_err(be->dev, "ASoC: backend prepare failed %d\n",
2456 be->dpcm[stream].state = SND_SOC_DPCM_STATE_PREPARE;
2461 static int dpcm_fe_dai_prepare(struct snd_pcm_substream *substream)
2463 struct snd_soc_pcm_runtime *fe = substream->private_data;
2464 int stream = substream->stream, ret = 0;
2466 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
2468 dev_dbg(fe->dev, "ASoC: prepare FE %s\n", fe->dai_link->name);
2470 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE);
2472 /* there is no point preparing this FE if there are no BEs */
2473 if (list_empty(&fe->dpcm[stream].be_clients)) {
2474 dev_err(fe->dev, "ASoC: no backend DAIs enabled for %s\n",
2475 fe->dai_link->name);
2480 ret = dpcm_be_dai_prepare(fe, substream->stream);
2484 /* call prepare on the frontend */
2485 ret = soc_pcm_prepare(substream);
2487 dev_err(fe->dev,"ASoC: prepare FE %s failed\n",
2488 fe->dai_link->name);
2492 /* run the stream event for each BE */
2493 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_START);
2494 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_PREPARE;
2497 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
2498 mutex_unlock(&fe->card->mutex);
2503 static int soc_pcm_ioctl(struct snd_pcm_substream *substream,
2504 unsigned int cmd, void *arg)
2506 struct snd_soc_pcm_runtime *rtd = substream->private_data;
2507 struct snd_soc_component *component;
2508 struct snd_soc_rtdcom_list *rtdcom;
2510 for_each_rtdcom(rtd, rtdcom) {
2511 component = rtdcom->component;
2513 if (!component->driver->ops ||
2514 !component->driver->ops->ioctl)
2517 /* FIXME: use 1st ioctl */
2518 return component->driver->ops->ioctl(substream, cmd, arg);
2521 return snd_pcm_lib_ioctl(substream, cmd, arg);
2524 static int dpcm_run_update_shutdown(struct snd_soc_pcm_runtime *fe, int stream)
2526 struct snd_pcm_substream *substream =
2527 snd_soc_dpcm_get_substream(fe, stream);
2528 enum snd_soc_dpcm_trigger trigger = fe->dai_link->trigger[stream];
2531 dev_dbg(fe->dev, "ASoC: runtime %s close on FE %s\n",
2532 stream ? "capture" : "playback", fe->dai_link->name);
2534 if (trigger == SND_SOC_DPCM_TRIGGER_BESPOKE) {
2535 /* call bespoke trigger - FE takes care of all BE triggers */
2536 dev_dbg(fe->dev, "ASoC: bespoke trigger FE %s cmd stop\n",
2537 fe->dai_link->name);
2539 err = soc_pcm_bespoke_trigger(substream, SNDRV_PCM_TRIGGER_STOP);
2541 dev_err(fe->dev,"ASoC: trigger FE failed %d\n", err);
2543 dev_dbg(fe->dev, "ASoC: trigger FE %s cmd stop\n",
2544 fe->dai_link->name);
2546 err = dpcm_be_dai_trigger(fe, stream, SNDRV_PCM_TRIGGER_STOP);
2548 dev_err(fe->dev,"ASoC: trigger FE failed %d\n", err);
2551 err = dpcm_be_dai_hw_free(fe, stream);
2553 dev_err(fe->dev,"ASoC: hw_free FE failed %d\n", err);
2555 err = dpcm_be_dai_shutdown(fe, stream);
2557 dev_err(fe->dev,"ASoC: shutdown FE failed %d\n", err);
2559 /* run the stream event for each BE */
2560 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_NOP);
2565 static int dpcm_run_update_startup(struct snd_soc_pcm_runtime *fe, int stream)
2567 struct snd_pcm_substream *substream =
2568 snd_soc_dpcm_get_substream(fe, stream);
2569 struct snd_soc_dpcm *dpcm;
2570 enum snd_soc_dpcm_trigger trigger = fe->dai_link->trigger[stream];
2573 dev_dbg(fe->dev, "ASoC: runtime %s open on FE %s\n",
2574 stream ? "capture" : "playback", fe->dai_link->name);
2576 /* Only start the BE if the FE is ready */
2577 if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_HW_FREE ||
2578 fe->dpcm[stream].state == SND_SOC_DPCM_STATE_CLOSE)
2581 /* startup must always be called for new BEs */
2582 ret = dpcm_be_dai_startup(fe, stream);
2586 /* keep going if FE state is > open */
2587 if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_OPEN)
2590 ret = dpcm_be_dai_hw_params(fe, stream);
2594 /* keep going if FE state is > hw_params */
2595 if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_HW_PARAMS)
2599 ret = dpcm_be_dai_prepare(fe, stream);
2603 /* run the stream event for each BE */
2604 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_NOP);
2606 /* keep going if FE state is > prepare */
2607 if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_PREPARE ||
2608 fe->dpcm[stream].state == SND_SOC_DPCM_STATE_STOP)
2611 if (trigger == SND_SOC_DPCM_TRIGGER_BESPOKE) {
2612 /* call trigger on the frontend - FE takes care of all BE triggers */
2613 dev_dbg(fe->dev, "ASoC: bespoke trigger FE %s cmd start\n",
2614 fe->dai_link->name);
2616 ret = soc_pcm_bespoke_trigger(substream, SNDRV_PCM_TRIGGER_START);
2618 dev_err(fe->dev,"ASoC: bespoke trigger FE failed %d\n", ret);
2622 dev_dbg(fe->dev, "ASoC: trigger FE %s cmd start\n",
2623 fe->dai_link->name);
2625 ret = dpcm_be_dai_trigger(fe, stream,
2626 SNDRV_PCM_TRIGGER_START);
2628 dev_err(fe->dev,"ASoC: trigger FE failed %d\n", ret);
2636 dpcm_be_dai_hw_free(fe, stream);
2638 dpcm_be_dai_shutdown(fe, stream);
2640 /* disconnect any non started BEs */
2641 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
2642 struct snd_soc_pcm_runtime *be = dpcm->be;
2643 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START)
2644 dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE;
2650 static int dpcm_run_new_update(struct snd_soc_pcm_runtime *fe, int stream)
2654 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_BE);
2655 ret = dpcm_run_update_startup(fe, stream);
2657 dev_err(fe->dev, "ASoC: failed to startup some BEs\n");
2658 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
2663 static int dpcm_run_old_update(struct snd_soc_pcm_runtime *fe, int stream)
2667 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_BE);
2668 ret = dpcm_run_update_shutdown(fe, stream);
2670 dev_err(fe->dev, "ASoC: failed to shutdown some BEs\n");
2671 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
2676 static int soc_dpcm_fe_runtime_update(struct snd_soc_pcm_runtime *fe, int new)
2678 struct snd_soc_dapm_widget_list *list;
2681 if (!fe->dai_link->dynamic)
2684 /* only check active links */
2685 if (!fe->cpu_dai->active)
2688 /* DAPM sync will call this to update DSP paths */
2689 dev_dbg(fe->dev, "ASoC: DPCM %s runtime update for FE %s\n",
2690 new ? "new" : "old", fe->dai_link->name);
2692 /* skip if FE doesn't have playback capability */
2693 if (!fe->cpu_dai->driver->playback.channels_min ||
2694 !fe->codec_dai->driver->playback.channels_min)
2697 /* skip if FE isn't currently playing */
2698 if (!fe->cpu_dai->playback_active || !fe->codec_dai->playback_active)
2701 paths = dpcm_path_get(fe, SNDRV_PCM_STREAM_PLAYBACK, &list);
2703 dev_warn(fe->dev, "ASoC: %s no valid %s path\n",
2704 fe->dai_link->name, "playback");
2708 /* update any playback paths */
2709 count = dpcm_process_paths(fe, SNDRV_PCM_STREAM_PLAYBACK, &list, new);
2712 dpcm_run_new_update(fe, SNDRV_PCM_STREAM_PLAYBACK);
2714 dpcm_run_old_update(fe, SNDRV_PCM_STREAM_PLAYBACK);
2716 dpcm_clear_pending_state(fe, SNDRV_PCM_STREAM_PLAYBACK);
2717 dpcm_be_disconnect(fe, SNDRV_PCM_STREAM_PLAYBACK);
2720 dpcm_path_put(&list);
2723 /* skip if FE doesn't have capture capability */
2724 if (!fe->cpu_dai->driver->capture.channels_min ||
2725 !fe->codec_dai->driver->capture.channels_min)
2728 /* skip if FE isn't currently capturing */
2729 if (!fe->cpu_dai->capture_active || !fe->codec_dai->capture_active)
2732 paths = dpcm_path_get(fe, SNDRV_PCM_STREAM_CAPTURE, &list);
2734 dev_warn(fe->dev, "ASoC: %s no valid %s path\n",
2735 fe->dai_link->name, "capture");
2739 /* update any old capture paths */
2740 count = dpcm_process_paths(fe, SNDRV_PCM_STREAM_CAPTURE, &list, new);
2743 dpcm_run_new_update(fe, SNDRV_PCM_STREAM_CAPTURE);
2745 dpcm_run_old_update(fe, SNDRV_PCM_STREAM_CAPTURE);
2747 dpcm_clear_pending_state(fe, SNDRV_PCM_STREAM_CAPTURE);
2748 dpcm_be_disconnect(fe, SNDRV_PCM_STREAM_CAPTURE);
2751 dpcm_path_put(&list);
2756 /* Called by DAPM mixer/mux changes to update audio routing between PCMs and
2759 int soc_dpcm_runtime_update(struct snd_soc_card *card)
2761 struct snd_soc_pcm_runtime *fe;
2764 mutex_lock_nested(&card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
2765 /* shutdown all old paths first */
2766 list_for_each_entry(fe, &card->rtd_list, list) {
2767 ret = soc_dpcm_fe_runtime_update(fe, 0);
2772 /* bring new paths up */
2773 list_for_each_entry(fe, &card->rtd_list, list) {
2774 ret = soc_dpcm_fe_runtime_update(fe, 1);
2780 mutex_unlock(&card->mutex);
2783 int soc_dpcm_be_digital_mute(struct snd_soc_pcm_runtime *fe, int mute)
2785 struct snd_soc_dpcm *dpcm;
2786 struct list_head *clients =
2787 &fe->dpcm[SNDRV_PCM_STREAM_PLAYBACK].be_clients;
2789 list_for_each_entry(dpcm, clients, list_be) {
2791 struct snd_soc_pcm_runtime *be = dpcm->be;
2794 if (be->dai_link->ignore_suspend)
2797 for (i = 0; i < be->num_codecs; i++) {
2798 struct snd_soc_dai *dai = be->codec_dais[i];
2799 struct snd_soc_dai_driver *drv = dai->driver;
2801 dev_dbg(be->dev, "ASoC: BE digital mute %s\n",
2802 be->dai_link->name);
2804 if (drv->ops && drv->ops->digital_mute &&
2805 dai->playback_active)
2806 drv->ops->digital_mute(dai, mute);
2813 static int dpcm_fe_dai_open(struct snd_pcm_substream *fe_substream)
2815 struct snd_soc_pcm_runtime *fe = fe_substream->private_data;
2816 struct snd_soc_dpcm *dpcm;
2817 struct snd_soc_dapm_widget_list *list;
2819 int stream = fe_substream->stream;
2821 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
2822 fe->dpcm[stream].runtime = fe_substream->runtime;
2824 ret = dpcm_path_get(fe, stream, &list);
2826 mutex_unlock(&fe->card->mutex);
2828 } else if (ret == 0) {
2829 dev_dbg(fe->dev, "ASoC: %s no valid %s route\n",
2830 fe->dai_link->name, stream ? "capture" : "playback");
2833 /* calculate valid and active FE <-> BE dpcms */
2834 dpcm_process_paths(fe, stream, &list, 1);
2836 ret = dpcm_fe_dai_startup(fe_substream);
2838 /* clean up all links */
2839 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be)
2840 dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE;
2842 dpcm_be_disconnect(fe, stream);
2843 fe->dpcm[stream].runtime = NULL;
2846 dpcm_clear_pending_state(fe, stream);
2847 dpcm_path_put(&list);
2848 mutex_unlock(&fe->card->mutex);
2852 static int dpcm_fe_dai_close(struct snd_pcm_substream *fe_substream)
2854 struct snd_soc_pcm_runtime *fe = fe_substream->private_data;
2855 struct snd_soc_dpcm *dpcm;
2856 int stream = fe_substream->stream, ret;
2858 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
2859 ret = dpcm_fe_dai_shutdown(fe_substream);
2861 /* mark FE's links ready to prune */
2862 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be)
2863 dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE;
2865 dpcm_be_disconnect(fe, stream);
2867 fe->dpcm[stream].runtime = NULL;
2868 mutex_unlock(&fe->card->mutex);
2872 static void soc_pcm_private_free(struct snd_pcm *pcm)
2874 struct snd_soc_pcm_runtime *rtd = pcm->private_data;
2875 struct snd_soc_rtdcom_list *rtdcom;
2876 struct snd_soc_component *component;
2878 /* need to sync the delayed work before releasing resources */
2879 flush_delayed_work(&rtd->delayed_work);
2880 for_each_rtdcom(rtd, rtdcom) {
2881 component = rtdcom->component;
2883 if (component->driver->pcm_free)
2884 component->driver->pcm_free(pcm);
2888 static int soc_rtdcom_ack(struct snd_pcm_substream *substream)
2890 struct snd_soc_pcm_runtime *rtd = substream->private_data;
2891 struct snd_soc_rtdcom_list *rtdcom;
2892 struct snd_soc_component *component;
2894 for_each_rtdcom(rtd, rtdcom) {
2895 component = rtdcom->component;
2897 if (!component->driver->ops ||
2898 !component->driver->ops->ack)
2901 /* FIXME. it returns 1st ask now */
2902 return component->driver->ops->ack(substream);
2908 static int soc_rtdcom_copy_user(struct snd_pcm_substream *substream, int channel,
2909 unsigned long pos, void __user *buf,
2910 unsigned long bytes)
2912 struct snd_soc_pcm_runtime *rtd = substream->private_data;
2913 struct snd_soc_rtdcom_list *rtdcom;
2914 struct snd_soc_component *component;
2916 for_each_rtdcom(rtd, rtdcom) {
2917 component = rtdcom->component;
2919 if (!component->driver->ops ||
2920 !component->driver->ops->copy_user)
2923 /* FIXME. it returns 1st copy now */
2924 return component->driver->ops->copy_user(substream, channel,
2931 static int soc_rtdcom_copy_kernel(struct snd_pcm_substream *substream, int channel,
2932 unsigned long pos, void *buf, unsigned long bytes)
2934 struct snd_soc_pcm_runtime *rtd = substream->private_data;
2935 struct snd_soc_rtdcom_list *rtdcom;
2936 struct snd_soc_component *component;
2938 for_each_rtdcom(rtd, rtdcom) {
2939 component = rtdcom->component;
2941 if (!component->driver->ops ||
2942 !component->driver->ops->copy_kernel)
2945 /* FIXME. it returns 1st copy now */
2946 return component->driver->ops->copy_kernel(substream, channel,
2953 static int soc_rtdcom_fill_silence(struct snd_pcm_substream *substream, int channel,
2954 unsigned long pos, unsigned long bytes)
2956 struct snd_soc_pcm_runtime *rtd = substream->private_data;
2957 struct snd_soc_rtdcom_list *rtdcom;
2958 struct snd_soc_component *component;
2960 for_each_rtdcom(rtd, rtdcom) {
2961 component = rtdcom->component;
2963 if (!component->driver->ops ||
2964 !component->driver->ops->fill_silence)
2967 /* FIXME. it returns 1st silence now */
2968 return component->driver->ops->fill_silence(substream, channel,
2975 static struct page *soc_rtdcom_page(struct snd_pcm_substream *substream,
2976 unsigned long offset)
2978 struct snd_soc_pcm_runtime *rtd = substream->private_data;
2979 struct snd_soc_rtdcom_list *rtdcom;
2980 struct snd_soc_component *component;
2983 for_each_rtdcom(rtd, rtdcom) {
2984 component = rtdcom->component;
2986 if (!component->driver->ops ||
2987 !component->driver->ops->page)
2990 /* FIXME. it returns 1st page now */
2991 page = component->driver->ops->page(substream, offset);
2999 static int soc_rtdcom_mmap(struct snd_pcm_substream *substream,
3000 struct vm_area_struct *vma)
3002 struct snd_soc_pcm_runtime *rtd = substream->private_data;
3003 struct snd_soc_rtdcom_list *rtdcom;
3004 struct snd_soc_component *component;
3006 for_each_rtdcom(rtd, rtdcom) {
3007 component = rtdcom->component;
3009 if (!component->driver->ops ||
3010 !component->driver->ops->mmap)
3013 /* FIXME. it returns 1st mmap now */
3014 return component->driver->ops->mmap(substream, vma);
3020 /* create a new pcm */
3021 int soc_new_pcm(struct snd_soc_pcm_runtime *rtd, int num)
3023 struct snd_soc_dai *codec_dai;
3024 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
3025 struct snd_soc_component *component;
3026 struct snd_soc_rtdcom_list *rtdcom;
3027 struct snd_pcm *pcm;
3029 int ret = 0, playback = 0, capture = 0;
3032 if (rtd->dai_link->dynamic || rtd->dai_link->no_pcm) {
3033 playback = rtd->dai_link->dpcm_playback;
3034 capture = rtd->dai_link->dpcm_capture;
3036 for (i = 0; i < rtd->num_codecs; i++) {
3037 codec_dai = rtd->codec_dais[i];
3038 if (codec_dai->driver->playback.channels_min)
3040 if (codec_dai->driver->capture.channels_min)
3044 capture = capture && cpu_dai->driver->capture.channels_min;
3045 playback = playback && cpu_dai->driver->playback.channels_min;
3048 if (rtd->dai_link->playback_only) {
3053 if (rtd->dai_link->capture_only) {
3058 /* create the PCM */
3059 if (rtd->dai_link->no_pcm) {
3060 snprintf(new_name, sizeof(new_name), "(%s)",
3061 rtd->dai_link->stream_name);
3063 ret = snd_pcm_new_internal(rtd->card->snd_card, new_name, num,
3064 playback, capture, &pcm);
3066 if (rtd->dai_link->dynamic)
3067 snprintf(new_name, sizeof(new_name), "%s (*)",
3068 rtd->dai_link->stream_name);
3070 snprintf(new_name, sizeof(new_name), "%s %s-%d",
3071 rtd->dai_link->stream_name,
3072 (rtd->num_codecs > 1) ?
3073 "multicodec" : rtd->codec_dai->name, num);
3075 ret = snd_pcm_new(rtd->card->snd_card, new_name, num, playback,
3079 dev_err(rtd->card->dev, "ASoC: can't create pcm for %s\n",
3080 rtd->dai_link->name);
3083 dev_dbg(rtd->card->dev, "ASoC: registered pcm #%d %s\n",num, new_name);
3085 /* DAPM dai link stream work */
3086 INIT_DELAYED_WORK(&rtd->delayed_work, close_delayed_work);
3088 pcm->nonatomic = rtd->dai_link->nonatomic;
3090 pcm->private_data = rtd;
3092 if (rtd->dai_link->no_pcm) {
3094 pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream->private_data = rtd;
3096 pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream->private_data = rtd;
3100 /* ASoC PCM operations */
3101 if (rtd->dai_link->dynamic) {
3102 rtd->ops.open = dpcm_fe_dai_open;
3103 rtd->ops.hw_params = dpcm_fe_dai_hw_params;
3104 rtd->ops.prepare = dpcm_fe_dai_prepare;
3105 rtd->ops.trigger = dpcm_fe_dai_trigger;
3106 rtd->ops.hw_free = dpcm_fe_dai_hw_free;
3107 rtd->ops.close = dpcm_fe_dai_close;
3108 rtd->ops.pointer = soc_pcm_pointer;
3109 rtd->ops.ioctl = soc_pcm_ioctl;
3111 rtd->ops.open = soc_pcm_open;
3112 rtd->ops.hw_params = soc_pcm_hw_params;
3113 rtd->ops.prepare = soc_pcm_prepare;
3114 rtd->ops.trigger = soc_pcm_trigger;
3115 rtd->ops.hw_free = soc_pcm_hw_free;
3116 rtd->ops.close = soc_pcm_close;
3117 rtd->ops.pointer = soc_pcm_pointer;
3118 rtd->ops.ioctl = soc_pcm_ioctl;
3121 for_each_rtdcom(rtd, rtdcom) {
3122 const struct snd_pcm_ops *ops = rtdcom->component->driver->ops;
3128 rtd->ops.ack = soc_rtdcom_ack;
3130 rtd->ops.copy_user = soc_rtdcom_copy_user;
3131 if (ops->copy_kernel)
3132 rtd->ops.copy_kernel = soc_rtdcom_copy_kernel;
3133 if (ops->fill_silence)
3134 rtd->ops.fill_silence = soc_rtdcom_fill_silence;
3136 rtd->ops.page = soc_rtdcom_page;
3138 rtd->ops.mmap = soc_rtdcom_mmap;
3142 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &rtd->ops);
3145 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &rtd->ops);
3147 for_each_rtdcom(rtd, rtdcom) {
3148 component = rtdcom->component;
3150 if (!component->driver->pcm_new)
3153 ret = component->driver->pcm_new(rtd);
3155 dev_err(component->dev,
3156 "ASoC: pcm constructor failed: %d\n",
3162 pcm->private_free = soc_pcm_private_free;
3164 dev_info(rtd->card->dev, "%s <-> %s mapping ok\n",
3165 (rtd->num_codecs > 1) ? "multicodec" : rtd->codec_dai->name,
3170 /* is the current PCM operation for this FE ? */
3171 int snd_soc_dpcm_fe_can_update(struct snd_soc_pcm_runtime *fe, int stream)
3173 if (fe->dpcm[stream].runtime_update == SND_SOC_DPCM_UPDATE_FE)
3177 EXPORT_SYMBOL_GPL(snd_soc_dpcm_fe_can_update);
3179 /* is the current PCM operation for this BE ? */
3180 int snd_soc_dpcm_be_can_update(struct snd_soc_pcm_runtime *fe,
3181 struct snd_soc_pcm_runtime *be, int stream)
3183 if ((fe->dpcm[stream].runtime_update == SND_SOC_DPCM_UPDATE_FE) ||
3184 ((fe->dpcm[stream].runtime_update == SND_SOC_DPCM_UPDATE_BE) &&
3185 be->dpcm[stream].runtime_update))
3189 EXPORT_SYMBOL_GPL(snd_soc_dpcm_be_can_update);
3191 /* get the substream for this BE */
3192 struct snd_pcm_substream *
3193 snd_soc_dpcm_get_substream(struct snd_soc_pcm_runtime *be, int stream)
3195 return be->pcm->streams[stream].substream;
3197 EXPORT_SYMBOL_GPL(snd_soc_dpcm_get_substream);
3199 /* get the BE runtime state */
3200 enum snd_soc_dpcm_state
3201 snd_soc_dpcm_be_get_state(struct snd_soc_pcm_runtime *be, int stream)
3203 return be->dpcm[stream].state;
3205 EXPORT_SYMBOL_GPL(snd_soc_dpcm_be_get_state);
3207 /* set the BE runtime state */
3208 void snd_soc_dpcm_be_set_state(struct snd_soc_pcm_runtime *be,
3209 int stream, enum snd_soc_dpcm_state state)
3211 be->dpcm[stream].state = state;
3213 EXPORT_SYMBOL_GPL(snd_soc_dpcm_be_set_state);
3216 * We can only hw_free, stop, pause or suspend a BE DAI if any of it's FE
3217 * are not running, paused or suspended for the specified stream direction.
3219 int snd_soc_dpcm_can_be_free_stop(struct snd_soc_pcm_runtime *fe,
3220 struct snd_soc_pcm_runtime *be, int stream)
3222 struct snd_soc_dpcm *dpcm;
3225 list_for_each_entry(dpcm, &be->dpcm[stream].fe_clients, list_fe) {
3230 state = dpcm->fe->dpcm[stream].state;
3231 if (state == SND_SOC_DPCM_STATE_START ||
3232 state == SND_SOC_DPCM_STATE_PAUSED ||
3233 state == SND_SOC_DPCM_STATE_SUSPEND)
3237 /* it's safe to free/stop this BE DAI */
3240 EXPORT_SYMBOL_GPL(snd_soc_dpcm_can_be_free_stop);
3243 * We can only change hw params a BE DAI if any of it's FE are not prepared,
3244 * running, paused or suspended for the specified stream direction.
3246 int snd_soc_dpcm_can_be_params(struct snd_soc_pcm_runtime *fe,
3247 struct snd_soc_pcm_runtime *be, int stream)
3249 struct snd_soc_dpcm *dpcm;
3252 list_for_each_entry(dpcm, &be->dpcm[stream].fe_clients, list_fe) {
3257 state = dpcm->fe->dpcm[stream].state;
3258 if (state == SND_SOC_DPCM_STATE_START ||
3259 state == SND_SOC_DPCM_STATE_PAUSED ||
3260 state == SND_SOC_DPCM_STATE_SUSPEND ||
3261 state == SND_SOC_DPCM_STATE_PREPARE)
3265 /* it's safe to change hw_params */
3268 EXPORT_SYMBOL_GPL(snd_soc_dpcm_can_be_params);
3270 #ifdef CONFIG_DEBUG_FS
3271 static const char *dpcm_state_string(enum snd_soc_dpcm_state state)
3274 case SND_SOC_DPCM_STATE_NEW:
3276 case SND_SOC_DPCM_STATE_OPEN:
3278 case SND_SOC_DPCM_STATE_HW_PARAMS:
3280 case SND_SOC_DPCM_STATE_PREPARE:
3282 case SND_SOC_DPCM_STATE_START:
3284 case SND_SOC_DPCM_STATE_STOP:
3286 case SND_SOC_DPCM_STATE_SUSPEND:
3288 case SND_SOC_DPCM_STATE_PAUSED:
3290 case SND_SOC_DPCM_STATE_HW_FREE:
3292 case SND_SOC_DPCM_STATE_CLOSE:
3299 static ssize_t dpcm_show_state(struct snd_soc_pcm_runtime *fe,
3300 int stream, char *buf, size_t size)
3302 struct snd_pcm_hw_params *params = &fe->dpcm[stream].hw_params;
3303 struct snd_soc_dpcm *dpcm;
3307 offset += snprintf(buf + offset, size - offset,
3308 "[%s - %s]\n", fe->dai_link->name,
3309 stream ? "Capture" : "Playback");
3311 offset += snprintf(buf + offset, size - offset, "State: %s\n",
3312 dpcm_state_string(fe->dpcm[stream].state));
3314 if ((fe->dpcm[stream].state >= SND_SOC_DPCM_STATE_HW_PARAMS) &&
3315 (fe->dpcm[stream].state <= SND_SOC_DPCM_STATE_STOP))
3316 offset += snprintf(buf + offset, size - offset,
3318 "Format = %s, Channels = %d, Rate = %d\n",
3319 snd_pcm_format_name(params_format(params)),
3320 params_channels(params),
3321 params_rate(params));
3324 offset += snprintf(buf + offset, size - offset, "Backends:\n");
3326 if (list_empty(&fe->dpcm[stream].be_clients)) {
3327 offset += snprintf(buf + offset, size - offset,
3328 " No active DSP links\n");
3332 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
3333 struct snd_soc_pcm_runtime *be = dpcm->be;
3334 params = &dpcm->hw_params;
3336 offset += snprintf(buf + offset, size - offset,
3337 "- %s\n", be->dai_link->name);
3339 offset += snprintf(buf + offset, size - offset,
3341 dpcm_state_string(be->dpcm[stream].state));