2 * soc-pcm.c -- ALSA SoC PCM
4 * Copyright 2005 Wolfson Microelectronics PLC.
5 * Copyright 2005 Openedhand Ltd.
6 * Copyright (C) 2010 Slimlogic Ltd.
7 * Copyright (C) 2010 Texas Instruments Inc.
9 * Authors: Liam Girdwood <lrg@ti.com>
10 * Mark Brown <broonie@opensource.wolfsonmicro.com>
12 * This program is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License as published by the
14 * Free Software Foundation; either version 2 of the License, or (at your
15 * option) any later version.
19 #include <linux/kernel.h>
20 #include <linux/init.h>
21 #include <linux/delay.h>
22 #include <linux/pm_runtime.h>
23 #include <linux/slab.h>
24 #include <linux/workqueue.h>
25 #include <linux/export.h>
26 #include <linux/debugfs.h>
27 #include <sound/core.h>
28 #include <sound/pcm.h>
29 #include <sound/pcm_params.h>
30 #include <sound/soc.h>
31 #include <sound/soc-dpcm.h>
32 #include <sound/initval.h>
34 #define DPCM_MAX_BE_USERS 8
36 /* DPCM stream event, send event to FE and all active BEs. */
37 static int dpcm_dapm_stream_event(struct snd_soc_pcm_runtime *fe, int dir,
40 struct snd_soc_dpcm *dpcm;
42 list_for_each_entry(dpcm, &fe->dpcm[dir].be_clients, list_be) {
44 struct snd_soc_pcm_runtime *be = dpcm->be;
46 dev_dbg(be->dev, "pm: BE %s event %d dir %d\n",
47 be->dai_link->name, event, dir);
49 snd_soc_dapm_stream_event(be, dir, event);
52 snd_soc_dapm_stream_event(fe, dir, event);
57 static int soc_pcm_apply_symmetry(struct snd_pcm_substream *substream,
58 struct snd_soc_dai *soc_dai)
60 struct snd_soc_pcm_runtime *rtd = substream->private_data;
63 if (!soc_dai->driver->symmetric_rates &&
64 !rtd->dai_link->symmetric_rates)
67 /* This can happen if multiple streams are starting simultaneously -
68 * the second can need to get its constraints before the first has
69 * picked a rate. Complain and allow the application to carry on.
72 dev_warn(soc_dai->dev,
73 "Not enforcing symmetric_rates due to race\n");
77 dev_dbg(soc_dai->dev, "Symmetry forces %dHz rate\n", soc_dai->rate);
79 ret = snd_pcm_hw_constraint_minmax(substream->runtime,
80 SNDRV_PCM_HW_PARAM_RATE,
81 soc_dai->rate, soc_dai->rate);
84 "Unable to apply rate symmetry constraint: %d\n", ret);
92 * List of sample sizes that might go over the bus for parameter
93 * application. There ought to be a wildcard sample size for things
94 * like the DAC/ADC resolution to use but there isn't right now.
96 static int sample_sizes[] = {
100 static void soc_pcm_apply_msb(struct snd_pcm_substream *substream,
101 struct snd_soc_dai *dai)
105 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
106 bits = dai->driver->playback.sig_bits;
108 bits = dai->driver->capture.sig_bits;
113 for (i = 0; i < ARRAY_SIZE(sample_sizes); i++) {
114 if (bits >= sample_sizes[i])
117 ret = snd_pcm_hw_constraint_msbits(substream->runtime, 0,
118 sample_sizes[i], bits);
121 "Failed to set MSB %d/%d: %d\n",
122 bits, sample_sizes[i], ret);
127 * Called by ALSA when a PCM substream is opened, the runtime->hw record is
128 * then initialized and any private data can be allocated. This also calls
129 * startup for the cpu DAI, platform, machine and codec DAI.
131 static int soc_pcm_open(struct snd_pcm_substream *substream)
133 struct snd_soc_pcm_runtime *rtd = substream->private_data;
134 struct snd_pcm_runtime *runtime = substream->runtime;
135 struct snd_soc_platform *platform = rtd->platform;
136 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
137 struct snd_soc_dai *codec_dai = rtd->codec_dai;
138 struct snd_soc_dai_driver *cpu_dai_drv = cpu_dai->driver;
139 struct snd_soc_dai_driver *codec_dai_drv = codec_dai->driver;
142 pm_runtime_get_sync(cpu_dai->dev);
143 pm_runtime_get_sync(codec_dai->dev);
144 pm_runtime_get_sync(platform->dev);
146 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
148 /* startup the audio subsystem */
149 if (cpu_dai->driver->ops->startup) {
150 ret = cpu_dai->driver->ops->startup(substream, cpu_dai);
152 dev_err(cpu_dai->dev, "can't open interface %s: %d\n",
158 if (platform->driver->ops && platform->driver->ops->open) {
159 ret = platform->driver->ops->open(substream);
161 dev_err(platform->dev, "can't open platform %s: %d\n",
162 platform->name, ret);
167 if (codec_dai->driver->ops->startup) {
168 ret = codec_dai->driver->ops->startup(substream, codec_dai);
170 dev_err(codec_dai->dev, "can't open codec %s: %d\n",
171 codec_dai->name, ret);
176 if (rtd->dai_link->ops && rtd->dai_link->ops->startup) {
177 ret = rtd->dai_link->ops->startup(substream);
179 pr_err("asoc: %s startup failed: %d\n",
180 rtd->dai_link->name, ret);
185 /* Dynamic PCM DAI links compat checks use dynamic capabilities */
186 if (rtd->dai_link->dynamic || rtd->dai_link->no_pcm)
189 /* Check that the codec and cpu DAIs are compatible */
190 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
191 runtime->hw.rate_min =
192 max(codec_dai_drv->playback.rate_min,
193 cpu_dai_drv->playback.rate_min);
194 runtime->hw.rate_max =
195 min(codec_dai_drv->playback.rate_max,
196 cpu_dai_drv->playback.rate_max);
197 runtime->hw.channels_min =
198 max(codec_dai_drv->playback.channels_min,
199 cpu_dai_drv->playback.channels_min);
200 runtime->hw.channels_max =
201 min(codec_dai_drv->playback.channels_max,
202 cpu_dai_drv->playback.channels_max);
203 runtime->hw.formats =
204 codec_dai_drv->playback.formats & cpu_dai_drv->playback.formats;
206 codec_dai_drv->playback.rates & cpu_dai_drv->playback.rates;
207 if (codec_dai_drv->playback.rates
208 & (SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_CONTINUOUS))
209 runtime->hw.rates |= cpu_dai_drv->playback.rates;
210 if (cpu_dai_drv->playback.rates
211 & (SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_CONTINUOUS))
212 runtime->hw.rates |= codec_dai_drv->playback.rates;
214 runtime->hw.rate_min =
215 max(codec_dai_drv->capture.rate_min,
216 cpu_dai_drv->capture.rate_min);
217 runtime->hw.rate_max =
218 min(codec_dai_drv->capture.rate_max,
219 cpu_dai_drv->capture.rate_max);
220 runtime->hw.channels_min =
221 max(codec_dai_drv->capture.channels_min,
222 cpu_dai_drv->capture.channels_min);
223 runtime->hw.channels_max =
224 min(codec_dai_drv->capture.channels_max,
225 cpu_dai_drv->capture.channels_max);
226 runtime->hw.formats =
227 codec_dai_drv->capture.formats & cpu_dai_drv->capture.formats;
229 codec_dai_drv->capture.rates & cpu_dai_drv->capture.rates;
230 if (codec_dai_drv->capture.rates
231 & (SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_CONTINUOUS))
232 runtime->hw.rates |= cpu_dai_drv->capture.rates;
233 if (cpu_dai_drv->capture.rates
234 & (SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_CONTINUOUS))
235 runtime->hw.rates |= codec_dai_drv->capture.rates;
239 snd_pcm_limit_hw_rates(runtime);
240 if (!runtime->hw.rates) {
241 printk(KERN_ERR "asoc: %s <-> %s No matching rates\n",
242 codec_dai->name, cpu_dai->name);
245 if (!runtime->hw.formats) {
246 printk(KERN_ERR "asoc: %s <-> %s No matching formats\n",
247 codec_dai->name, cpu_dai->name);
250 if (!runtime->hw.channels_min || !runtime->hw.channels_max ||
251 runtime->hw.channels_min > runtime->hw.channels_max) {
252 printk(KERN_ERR "asoc: %s <-> %s No matching channels\n",
253 codec_dai->name, cpu_dai->name);
257 soc_pcm_apply_msb(substream, codec_dai);
258 soc_pcm_apply_msb(substream, cpu_dai);
260 /* Symmetry only applies if we've already got an active stream. */
261 if (cpu_dai->active) {
262 ret = soc_pcm_apply_symmetry(substream, cpu_dai);
267 if (codec_dai->active) {
268 ret = soc_pcm_apply_symmetry(substream, codec_dai);
273 pr_debug("asoc: %s <-> %s info:\n",
274 codec_dai->name, cpu_dai->name);
275 pr_debug("asoc: rate mask 0x%x\n", runtime->hw.rates);
276 pr_debug("asoc: min ch %d max ch %d\n", runtime->hw.channels_min,
277 runtime->hw.channels_max);
278 pr_debug("asoc: min rate %d max rate %d\n", runtime->hw.rate_min,
279 runtime->hw.rate_max);
282 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
283 cpu_dai->playback_active++;
284 codec_dai->playback_active++;
286 cpu_dai->capture_active++;
287 codec_dai->capture_active++;
291 rtd->codec->active++;
292 mutex_unlock(&rtd->pcm_mutex);
296 if (rtd->dai_link->ops && rtd->dai_link->ops->shutdown)
297 rtd->dai_link->ops->shutdown(substream);
300 if (codec_dai->driver->ops->shutdown)
301 codec_dai->driver->ops->shutdown(substream, codec_dai);
304 if (platform->driver->ops && platform->driver->ops->close)
305 platform->driver->ops->close(substream);
308 if (cpu_dai->driver->ops->shutdown)
309 cpu_dai->driver->ops->shutdown(substream, cpu_dai);
311 mutex_unlock(&rtd->pcm_mutex);
313 pm_runtime_put(platform->dev);
314 pm_runtime_put(codec_dai->dev);
315 pm_runtime_put(cpu_dai->dev);
321 * Power down the audio subsystem pmdown_time msecs after close is called.
322 * This is to ensure there are no pops or clicks in between any music tracks
323 * due to DAPM power cycling.
325 static void close_delayed_work(struct work_struct *work)
327 struct snd_soc_pcm_runtime *rtd =
328 container_of(work, struct snd_soc_pcm_runtime, delayed_work.work);
329 struct snd_soc_dai *codec_dai = rtd->codec_dai;
331 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
333 pr_debug("pop wq checking: %s status: %s waiting: %s\n",
334 codec_dai->driver->playback.stream_name,
335 codec_dai->playback_active ? "active" : "inactive",
336 codec_dai->pop_wait ? "yes" : "no");
338 /* are we waiting on this codec DAI stream */
339 if (codec_dai->pop_wait == 1) {
340 codec_dai->pop_wait = 0;
341 snd_soc_dapm_stream_event(rtd, SNDRV_PCM_STREAM_PLAYBACK,
342 SND_SOC_DAPM_STREAM_STOP);
345 mutex_unlock(&rtd->pcm_mutex);
349 * Called by ALSA when a PCM substream is closed. Private data can be
350 * freed here. The cpu DAI, codec DAI, machine and platform are also
353 static int soc_pcm_close(struct snd_pcm_substream *substream)
355 struct snd_soc_pcm_runtime *rtd = substream->private_data;
356 struct snd_soc_platform *platform = rtd->platform;
357 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
358 struct snd_soc_dai *codec_dai = rtd->codec_dai;
359 struct snd_soc_codec *codec = rtd->codec;
361 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
363 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
364 cpu_dai->playback_active--;
365 codec_dai->playback_active--;
367 cpu_dai->capture_active--;
368 codec_dai->capture_active--;
375 /* clear the corresponding DAIs rate when inactive */
376 if (!cpu_dai->active)
379 if (!codec_dai->active)
382 /* Muting the DAC suppresses artifacts caused during digital
383 * shutdown, for example from stopping clocks.
385 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
386 snd_soc_dai_digital_mute(codec_dai, 1);
388 if (cpu_dai->driver->ops->shutdown)
389 cpu_dai->driver->ops->shutdown(substream, cpu_dai);
391 if (codec_dai->driver->ops->shutdown)
392 codec_dai->driver->ops->shutdown(substream, codec_dai);
394 if (rtd->dai_link->ops && rtd->dai_link->ops->shutdown)
395 rtd->dai_link->ops->shutdown(substream);
397 if (platform->driver->ops && platform->driver->ops->close)
398 platform->driver->ops->close(substream);
399 cpu_dai->runtime = NULL;
401 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
402 if (!rtd->pmdown_time || codec->ignore_pmdown_time ||
403 rtd->dai_link->ignore_pmdown_time) {
404 /* powered down playback stream now */
405 snd_soc_dapm_stream_event(rtd,
406 SNDRV_PCM_STREAM_PLAYBACK,
407 SND_SOC_DAPM_STREAM_STOP);
409 /* start delayed pop wq here for playback streams */
410 codec_dai->pop_wait = 1;
411 schedule_delayed_work(&rtd->delayed_work,
412 msecs_to_jiffies(rtd->pmdown_time));
415 /* capture streams can be powered down now */
416 snd_soc_dapm_stream_event(rtd, SNDRV_PCM_STREAM_CAPTURE,
417 SND_SOC_DAPM_STREAM_STOP);
420 mutex_unlock(&rtd->pcm_mutex);
422 pm_runtime_put(platform->dev);
423 pm_runtime_put(codec_dai->dev);
424 pm_runtime_put(cpu_dai->dev);
430 * Called by ALSA when the PCM substream is prepared, can set format, sample
431 * rate, etc. This function is non atomic and can be called multiple times,
432 * it can refer to the runtime info.
434 static int soc_pcm_prepare(struct snd_pcm_substream *substream)
436 struct snd_soc_pcm_runtime *rtd = substream->private_data;
437 struct snd_soc_platform *platform = rtd->platform;
438 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
439 struct snd_soc_dai *codec_dai = rtd->codec_dai;
442 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
444 if (rtd->dai_link->ops && rtd->dai_link->ops->prepare) {
445 ret = rtd->dai_link->ops->prepare(substream);
447 pr_err("asoc: machine prepare error: %d\n", ret);
452 if (platform->driver->ops && platform->driver->ops->prepare) {
453 ret = platform->driver->ops->prepare(substream);
455 dev_err(platform->dev, "platform prepare error: %d\n",
461 if (codec_dai->driver->ops->prepare) {
462 ret = codec_dai->driver->ops->prepare(substream, codec_dai);
464 dev_err(codec_dai->dev, "DAI prepare error: %d\n",
470 if (cpu_dai->driver->ops->prepare) {
471 ret = cpu_dai->driver->ops->prepare(substream, cpu_dai);
473 dev_err(cpu_dai->dev, "DAI prepare error: %d\n",
479 /* cancel any delayed stream shutdown that is pending */
480 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
481 codec_dai->pop_wait) {
482 codec_dai->pop_wait = 0;
483 cancel_delayed_work(&rtd->delayed_work);
486 snd_soc_dapm_stream_event(rtd, substream->stream,
487 SND_SOC_DAPM_STREAM_START);
489 snd_soc_dai_digital_mute(codec_dai, 0);
492 mutex_unlock(&rtd->pcm_mutex);
497 * Called by ALSA when the hardware params are set by application. This
498 * function can also be called multiple times and can allocate buffers
499 * (using snd_pcm_lib_* ). It's non-atomic.
501 static int soc_pcm_hw_params(struct snd_pcm_substream *substream,
502 struct snd_pcm_hw_params *params)
504 struct snd_soc_pcm_runtime *rtd = substream->private_data;
505 struct snd_soc_platform *platform = rtd->platform;
506 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
507 struct snd_soc_dai *codec_dai = rtd->codec_dai;
510 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
512 if (rtd->dai_link->ops && rtd->dai_link->ops->hw_params) {
513 ret = rtd->dai_link->ops->hw_params(substream, params);
515 pr_err("asoc: machine hw_params failed: %d\n", ret);
520 if (codec_dai->driver->ops->hw_params) {
521 ret = codec_dai->driver->ops->hw_params(substream, params, codec_dai);
523 dev_err(codec_dai->dev, "can't set %s hw params: %d\n",
524 codec_dai->name, ret);
529 if (cpu_dai->driver->ops->hw_params) {
530 ret = cpu_dai->driver->ops->hw_params(substream, params, cpu_dai);
532 dev_err(cpu_dai->dev, "%s hw params failed: %d\n",
538 if (platform->driver->ops && platform->driver->ops->hw_params) {
539 ret = platform->driver->ops->hw_params(substream, params);
541 dev_err(platform->dev, "%s hw params failed: %d\n",
542 platform->name, ret);
547 /* store the rate for each DAIs */
548 cpu_dai->rate = params_rate(params);
549 codec_dai->rate = params_rate(params);
552 mutex_unlock(&rtd->pcm_mutex);
556 if (cpu_dai->driver->ops->hw_free)
557 cpu_dai->driver->ops->hw_free(substream, cpu_dai);
560 if (codec_dai->driver->ops->hw_free)
561 codec_dai->driver->ops->hw_free(substream, codec_dai);
564 if (rtd->dai_link->ops && rtd->dai_link->ops->hw_free)
565 rtd->dai_link->ops->hw_free(substream);
567 mutex_unlock(&rtd->pcm_mutex);
572 * Frees resources allocated by hw_params, can be called multiple times
574 static int soc_pcm_hw_free(struct snd_pcm_substream *substream)
576 struct snd_soc_pcm_runtime *rtd = substream->private_data;
577 struct snd_soc_platform *platform = rtd->platform;
578 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
579 struct snd_soc_dai *codec_dai = rtd->codec_dai;
580 struct snd_soc_codec *codec = rtd->codec;
582 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
584 /* apply codec digital mute */
586 snd_soc_dai_digital_mute(codec_dai, 1);
588 /* free any machine hw params */
589 if (rtd->dai_link->ops && rtd->dai_link->ops->hw_free)
590 rtd->dai_link->ops->hw_free(substream);
592 /* free any DMA resources */
593 if (platform->driver->ops && platform->driver->ops->hw_free)
594 platform->driver->ops->hw_free(substream);
596 /* now free hw params for the DAIs */
597 if (codec_dai->driver->ops->hw_free)
598 codec_dai->driver->ops->hw_free(substream, codec_dai);
600 if (cpu_dai->driver->ops->hw_free)
601 cpu_dai->driver->ops->hw_free(substream, cpu_dai);
603 mutex_unlock(&rtd->pcm_mutex);
607 static int soc_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
609 struct snd_soc_pcm_runtime *rtd = substream->private_data;
610 struct snd_soc_platform *platform = rtd->platform;
611 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
612 struct snd_soc_dai *codec_dai = rtd->codec_dai;
615 if (codec_dai->driver->ops->trigger) {
616 ret = codec_dai->driver->ops->trigger(substream, cmd, codec_dai);
621 if (platform->driver->ops && platform->driver->ops->trigger) {
622 ret = platform->driver->ops->trigger(substream, cmd);
627 if (cpu_dai->driver->ops->trigger) {
628 ret = cpu_dai->driver->ops->trigger(substream, cmd, cpu_dai);
635 static int soc_pcm_bespoke_trigger(struct snd_pcm_substream *substream,
638 struct snd_soc_pcm_runtime *rtd = substream->private_data;
639 struct snd_soc_platform *platform = rtd->platform;
640 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
641 struct snd_soc_dai *codec_dai = rtd->codec_dai;
644 if (codec_dai->driver->ops->bespoke_trigger) {
645 ret = codec_dai->driver->ops->bespoke_trigger(substream, cmd, codec_dai);
650 if (platform->driver->bespoke_trigger) {
651 ret = platform->driver->bespoke_trigger(substream, cmd);
656 if (cpu_dai->driver->ops->bespoke_trigger) {
657 ret = cpu_dai->driver->ops->bespoke_trigger(substream, cmd, cpu_dai);
664 * soc level wrapper for pointer callback
665 * If cpu_dai, codec_dai, platform driver has the delay callback, than
666 * the runtime->delay will be updated accordingly.
668 static snd_pcm_uframes_t soc_pcm_pointer(struct snd_pcm_substream *substream)
670 struct snd_soc_pcm_runtime *rtd = substream->private_data;
671 struct snd_soc_platform *platform = rtd->platform;
672 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
673 struct snd_soc_dai *codec_dai = rtd->codec_dai;
674 struct snd_pcm_runtime *runtime = substream->runtime;
675 snd_pcm_uframes_t offset = 0;
676 snd_pcm_sframes_t delay = 0;
678 if (platform->driver->ops && platform->driver->ops->pointer)
679 offset = platform->driver->ops->pointer(substream);
681 if (cpu_dai->driver->ops->delay)
682 delay += cpu_dai->driver->ops->delay(substream, cpu_dai);
684 if (codec_dai->driver->ops->delay)
685 delay += codec_dai->driver->ops->delay(substream, codec_dai);
687 if (platform->driver->delay)
688 delay += platform->driver->delay(substream, codec_dai);
690 runtime->delay = delay;
695 /* connect a FE and BE */
696 static int dpcm_be_connect(struct snd_soc_pcm_runtime *fe,
697 struct snd_soc_pcm_runtime *be, int stream)
699 struct snd_soc_dpcm *dpcm;
701 /* only add new dpcms */
702 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
703 if (dpcm->be == be && dpcm->fe == fe)
707 dpcm = kzalloc(sizeof(struct snd_soc_dpcm), GFP_KERNEL);
713 be->dpcm[stream].runtime = fe->dpcm[stream].runtime;
714 dpcm->state = SND_SOC_DPCM_LINK_STATE_NEW;
715 list_add(&dpcm->list_be, &fe->dpcm[stream].be_clients);
716 list_add(&dpcm->list_fe, &be->dpcm[stream].fe_clients);
718 dev_dbg(fe->dev, " connected new DPCM %s path %s %s %s\n",
719 stream ? "capture" : "playback", fe->dai_link->name,
720 stream ? "<-" : "->", be->dai_link->name);
722 #ifdef CONFIG_DEBUG_FS
723 dpcm->debugfs_state = debugfs_create_u32(be->dai_link->name, 0644,
724 fe->debugfs_dpcm_root, &dpcm->state);
729 /* reparent a BE onto another FE */
730 static void dpcm_be_reparent(struct snd_soc_pcm_runtime *fe,
731 struct snd_soc_pcm_runtime *be, int stream)
733 struct snd_soc_dpcm *dpcm;
734 struct snd_pcm_substream *fe_substream, *be_substream;
736 /* reparent if BE is connected to other FEs */
737 if (!be->dpcm[stream].users)
740 be_substream = snd_soc_dpcm_get_substream(be, stream);
742 list_for_each_entry(dpcm, &be->dpcm[stream].fe_clients, list_fe) {
746 dev_dbg(fe->dev, " reparent %s path %s %s %s\n",
747 stream ? "capture" : "playback",
748 dpcm->fe->dai_link->name,
749 stream ? "<-" : "->", dpcm->be->dai_link->name);
751 fe_substream = snd_soc_dpcm_get_substream(dpcm->fe, stream);
752 be_substream->runtime = fe_substream->runtime;
757 /* disconnect a BE and FE */
758 static void dpcm_be_disconnect(struct snd_soc_pcm_runtime *fe, int stream)
760 struct snd_soc_dpcm *dpcm, *d;
762 list_for_each_entry_safe(dpcm, d, &fe->dpcm[stream].be_clients, list_be) {
763 dev_dbg(fe->dev, "BE %s disconnect check for %s\n",
764 stream ? "capture" : "playback",
765 dpcm->be->dai_link->name);
767 if (dpcm->state != SND_SOC_DPCM_LINK_STATE_FREE)
770 dev_dbg(fe->dev, " freed DSP %s path %s %s %s\n",
771 stream ? "capture" : "playback", fe->dai_link->name,
772 stream ? "<-" : "->", dpcm->be->dai_link->name);
774 /* BEs still alive need new FE */
775 dpcm_be_reparent(fe, dpcm->be, stream);
777 #ifdef CONFIG_DEBUG_FS
778 debugfs_remove(dpcm->debugfs_state);
780 list_del(&dpcm->list_be);
781 list_del(&dpcm->list_fe);
786 /* get BE for DAI widget and stream */
787 static struct snd_soc_pcm_runtime *dpcm_get_be(struct snd_soc_card *card,
788 struct snd_soc_dapm_widget *widget, int stream)
790 struct snd_soc_pcm_runtime *be;
793 if (stream == SNDRV_PCM_STREAM_PLAYBACK) {
794 for (i = 0; i < card->num_links; i++) {
797 if (!be->dai_link->no_pcm)
800 if (be->cpu_dai->playback_widget == widget ||
801 be->codec_dai->playback_widget == widget)
806 for (i = 0; i < card->num_links; i++) {
809 if (!be->dai_link->no_pcm)
812 if (be->cpu_dai->capture_widget == widget ||
813 be->codec_dai->capture_widget == widget)
818 dev_err(card->dev, "can't get %s BE for %s\n",
819 stream ? "capture" : "playback", widget->name);
823 static inline struct snd_soc_dapm_widget *
824 rtd_get_cpu_widget(struct snd_soc_pcm_runtime *rtd, int stream)
826 if (stream == SNDRV_PCM_STREAM_PLAYBACK)
827 return rtd->cpu_dai->playback_widget;
829 return rtd->cpu_dai->capture_widget;
832 static inline struct snd_soc_dapm_widget *
833 rtd_get_codec_widget(struct snd_soc_pcm_runtime *rtd, int stream)
835 if (stream == SNDRV_PCM_STREAM_PLAYBACK)
836 return rtd->codec_dai->playback_widget;
838 return rtd->codec_dai->capture_widget;
841 static int widget_in_list(struct snd_soc_dapm_widget_list *list,
842 struct snd_soc_dapm_widget *widget)
846 for (i = 0; i < list->num_widgets; i++) {
847 if (widget == list->widgets[i])
854 static int dpcm_path_get(struct snd_soc_pcm_runtime *fe,
855 int stream, struct snd_soc_dapm_widget_list **list_)
857 struct snd_soc_dai *cpu_dai = fe->cpu_dai;
858 struct snd_soc_dapm_widget_list *list;
861 list = kzalloc(sizeof(struct snd_soc_dapm_widget_list) +
862 sizeof(struct snd_soc_dapm_widget *), GFP_KERNEL);
866 /* get number of valid DAI paths and their widgets */
867 paths = snd_soc_dapm_dai_get_connected_widgets(cpu_dai, stream, &list);
869 dev_dbg(fe->dev, "found %d audio %s paths\n", paths,
870 stream ? "capture" : "playback");
876 static inline void dpcm_path_put(struct snd_soc_dapm_widget_list **list)
881 static int dpcm_prune_paths(struct snd_soc_pcm_runtime *fe, int stream,
882 struct snd_soc_dapm_widget_list **list_)
884 struct snd_soc_dpcm *dpcm;
885 struct snd_soc_dapm_widget_list *list = *list_;
886 struct snd_soc_dapm_widget *widget;
889 /* Destroy any old FE <--> BE connections */
890 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
892 /* is there a valid CPU DAI widget for this BE */
893 widget = rtd_get_cpu_widget(dpcm->be, stream);
895 /* prune the BE if it's no longer in our active list */
896 if (widget && widget_in_list(list, widget))
899 /* is there a valid CODEC DAI widget for this BE */
900 widget = rtd_get_codec_widget(dpcm->be, stream);
902 /* prune the BE if it's no longer in our active list */
903 if (widget && widget_in_list(list, widget))
906 dev_dbg(fe->dev, "pruning %s BE %s for %s\n",
907 stream ? "capture" : "playback",
908 dpcm->be->dai_link->name, fe->dai_link->name);
909 dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE;
910 dpcm->be->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_BE;
914 dev_dbg(fe->dev, "found %d old BE paths for pruning\n", prune);
918 static int dpcm_add_paths(struct snd_soc_pcm_runtime *fe, int stream,
919 struct snd_soc_dapm_widget_list **list_)
921 struct snd_soc_card *card = fe->card;
922 struct snd_soc_dapm_widget_list *list = *list_;
923 struct snd_soc_pcm_runtime *be;
926 /* Create any new FE <--> BE connections */
927 for (i = 0; i < list->num_widgets; i++) {
929 if (list->widgets[i]->id != snd_soc_dapm_dai)
932 /* is there a valid BE rtd for this widget */
933 be = dpcm_get_be(card, list->widgets[i], stream);
935 dev_err(fe->dev, "no BE found for %s\n",
936 list->widgets[i]->name);
940 /* make sure BE is a real BE */
941 if (!be->dai_link->no_pcm)
944 /* don't connect if FE is not running */
945 if (!fe->dpcm[stream].runtime)
948 /* newly connected FE and BE */
949 err = dpcm_be_connect(fe, be, stream);
951 dev_err(fe->dev, "can't connect %s\n",
952 list->widgets[i]->name);
954 } else if (err == 0) /* already connected */
958 be->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_BE;
962 dev_dbg(fe->dev, "found %d new BE paths\n", new);
967 * Find the corresponding BE DAIs that source or sink audio to this
970 static int dpcm_process_paths(struct snd_soc_pcm_runtime *fe,
971 int stream, struct snd_soc_dapm_widget_list **list, int new)
974 return dpcm_add_paths(fe, stream, list);
976 return dpcm_prune_paths(fe, stream, list);
979 static void dpcm_clear_pending_state(struct snd_soc_pcm_runtime *fe, int stream)
981 struct snd_soc_dpcm *dpcm;
983 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be)
984 dpcm->be->dpcm[stream].runtime_update =
985 SND_SOC_DPCM_UPDATE_NO;
988 static void dpcm_be_dai_startup_unwind(struct snd_soc_pcm_runtime *fe,
991 struct snd_soc_dpcm *dpcm;
993 /* disable any enabled and non active backends */
994 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
996 struct snd_soc_pcm_runtime *be = dpcm->be;
997 struct snd_pcm_substream *be_substream =
998 snd_soc_dpcm_get_substream(be, stream);
1000 if (be->dpcm[stream].users == 0)
1001 dev_err(be->dev, "no users %s at close - state %d\n",
1002 stream ? "capture" : "playback",
1003 be->dpcm[stream].state);
1005 if (--be->dpcm[stream].users != 0)
1008 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN)
1011 soc_pcm_close(be_substream);
1012 be_substream->runtime = NULL;
1013 be->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
1017 static int dpcm_be_dai_startup(struct snd_soc_pcm_runtime *fe, int stream)
1019 struct snd_soc_dpcm *dpcm;
1022 /* only startup BE DAIs that are either sinks or sources to this FE DAI */
1023 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1025 struct snd_soc_pcm_runtime *be = dpcm->be;
1026 struct snd_pcm_substream *be_substream =
1027 snd_soc_dpcm_get_substream(be, stream);
1029 /* is this op for this BE ? */
1030 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1033 /* first time the dpcm is open ? */
1034 if (be->dpcm[stream].users == DPCM_MAX_BE_USERS)
1035 dev_err(be->dev, "too many users %s at open %d\n",
1036 stream ? "capture" : "playback",
1037 be->dpcm[stream].state);
1039 if (be->dpcm[stream].users++ != 0)
1042 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_NEW) &&
1043 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_CLOSE))
1046 dev_dbg(be->dev, "dpcm: open BE %s\n", be->dai_link->name);
1048 be_substream->runtime = be->dpcm[stream].runtime;
1049 err = soc_pcm_open(be_substream);
1051 dev_err(be->dev, "BE open failed %d\n", err);
1052 be->dpcm[stream].users--;
1053 if (be->dpcm[stream].users < 0)
1054 dev_err(be->dev, "no users %s at unwind %d\n",
1055 stream ? "capture" : "playback",
1056 be->dpcm[stream].state);
1058 be->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
1062 be->dpcm[stream].state = SND_SOC_DPCM_STATE_OPEN;
1069 /* disable any enabled and non active backends */
1070 list_for_each_entry_continue_reverse(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1071 struct snd_soc_pcm_runtime *be = dpcm->be;
1072 struct snd_pcm_substream *be_substream =
1073 snd_soc_dpcm_get_substream(be, stream);
1075 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1078 if (be->dpcm[stream].users == 0)
1079 dev_err(be->dev, "no users %s at close %d\n",
1080 stream ? "capture" : "playback",
1081 be->dpcm[stream].state);
1083 if (--be->dpcm[stream].users != 0)
1086 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN)
1089 soc_pcm_close(be_substream);
1090 be_substream->runtime = NULL;
1091 be->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
1097 static void dpcm_set_fe_runtime(struct snd_pcm_substream *substream)
1099 struct snd_pcm_runtime *runtime = substream->runtime;
1100 struct snd_soc_pcm_runtime *rtd = substream->private_data;
1101 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
1102 struct snd_soc_dai_driver *cpu_dai_drv = cpu_dai->driver;
1104 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
1105 runtime->hw.rate_min = cpu_dai_drv->playback.rate_min;
1106 runtime->hw.rate_max = cpu_dai_drv->playback.rate_max;
1107 runtime->hw.channels_min = cpu_dai_drv->playback.channels_min;
1108 runtime->hw.channels_max = cpu_dai_drv->playback.channels_max;
1109 runtime->hw.formats &= cpu_dai_drv->playback.formats;
1110 runtime->hw.rates = cpu_dai_drv->playback.rates;
1112 runtime->hw.rate_min = cpu_dai_drv->capture.rate_min;
1113 runtime->hw.rate_max = cpu_dai_drv->capture.rate_max;
1114 runtime->hw.channels_min = cpu_dai_drv->capture.channels_min;
1115 runtime->hw.channels_max = cpu_dai_drv->capture.channels_max;
1116 runtime->hw.formats &= cpu_dai_drv->capture.formats;
1117 runtime->hw.rates = cpu_dai_drv->capture.rates;
1121 static int dpcm_fe_dai_startup(struct snd_pcm_substream *fe_substream)
1123 struct snd_soc_pcm_runtime *fe = fe_substream->private_data;
1124 struct snd_pcm_runtime *runtime = fe_substream->runtime;
1125 int stream = fe_substream->stream, ret = 0;
1127 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_FE;
1129 ret = dpcm_be_dai_startup(fe, fe_substream->stream);
1131 dev_err(fe->dev,"dpcm: failed to start some BEs %d\n", ret);
1135 dev_dbg(fe->dev, "dpcm: open FE %s\n", fe->dai_link->name);
1137 /* start the DAI frontend */
1138 ret = soc_pcm_open(fe_substream);
1140 dev_err(fe->dev,"dpcm: failed to start FE %d\n", ret);
1144 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_OPEN;
1146 dpcm_set_fe_runtime(fe_substream);
1147 snd_pcm_limit_hw_rates(runtime);
1149 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO;
1153 dpcm_be_dai_startup_unwind(fe, fe_substream->stream);
1155 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO;
1159 static int dpcm_be_dai_shutdown(struct snd_soc_pcm_runtime *fe, int stream)
1161 struct snd_soc_dpcm *dpcm;
1163 /* only shutdown BEs that are either sinks or sources to this FE DAI */
1164 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1166 struct snd_soc_pcm_runtime *be = dpcm->be;
1167 struct snd_pcm_substream *be_substream =
1168 snd_soc_dpcm_get_substream(be, stream);
1170 /* is this op for this BE ? */
1171 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1174 if (be->dpcm[stream].users == 0)
1175 dev_err(be->dev, "no users %s at close - state %d\n",
1176 stream ? "capture" : "playback",
1177 be->dpcm[stream].state);
1179 if (--be->dpcm[stream].users != 0)
1182 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE) &&
1183 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN))
1186 dev_dbg(be->dev, "dpcm: close BE %s\n",
1187 dpcm->fe->dai_link->name);
1189 soc_pcm_close(be_substream);
1190 be_substream->runtime = NULL;
1192 be->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
1197 static int dpcm_fe_dai_shutdown(struct snd_pcm_substream *substream)
1199 struct snd_soc_pcm_runtime *fe = substream->private_data;
1200 int stream = substream->stream;
1202 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_FE;
1204 /* shutdown the BEs */
1205 dpcm_be_dai_shutdown(fe, substream->stream);
1207 dev_dbg(fe->dev, "dpcm: close FE %s\n", fe->dai_link->name);
1209 /* now shutdown the frontend */
1210 soc_pcm_close(substream);
1212 /* run the stream event for each BE */
1213 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_STOP);
1215 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
1216 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO;
1220 static int dpcm_be_dai_hw_free(struct snd_soc_pcm_runtime *fe, int stream)
1222 struct snd_soc_dpcm *dpcm;
1224 /* only hw_params backends that are either sinks or sources
1225 * to this frontend DAI */
1226 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1228 struct snd_soc_pcm_runtime *be = dpcm->be;
1229 struct snd_pcm_substream *be_substream =
1230 snd_soc_dpcm_get_substream(be, stream);
1232 /* is this op for this BE ? */
1233 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1236 /* only free hw when no longer used - check all FEs */
1237 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
1240 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
1241 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PREPARE) &&
1242 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE) &&
1243 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP))
1246 dev_dbg(be->dev, "dpcm: hw_free BE %s\n",
1247 dpcm->fe->dai_link->name);
1249 soc_pcm_hw_free(be_substream);
1251 be->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_FREE;
1257 static int dpcm_fe_dai_hw_free(struct snd_pcm_substream *substream)
1259 struct snd_soc_pcm_runtime *fe = substream->private_data;
1260 int err, stream = substream->stream;
1262 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
1263 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_FE;
1265 dev_dbg(fe->dev, "dpcm: hw_free FE %s\n", fe->dai_link->name);
1267 /* call hw_free on the frontend */
1268 err = soc_pcm_hw_free(substream);
1270 dev_err(fe->dev,"dpcm: hw_free FE %s failed\n",
1271 fe->dai_link->name);
1273 /* only hw_params backends that are either sinks or sources
1274 * to this frontend DAI */
1275 err = dpcm_be_dai_hw_free(fe, stream);
1277 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_FREE;
1278 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO;
1280 mutex_unlock(&fe->card->mutex);
1284 static int dpcm_be_dai_hw_params(struct snd_soc_pcm_runtime *fe, int stream)
1286 struct snd_soc_dpcm *dpcm;
1289 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1291 struct snd_soc_pcm_runtime *be = dpcm->be;
1292 struct snd_pcm_substream *be_substream =
1293 snd_soc_dpcm_get_substream(be, stream);
1295 /* is this op for this BE ? */
1296 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1299 /* only allow hw_params() if no connected FEs are running */
1300 if (!snd_soc_dpcm_can_be_params(fe, be, stream))
1303 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN) &&
1304 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
1305 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE))
1308 dev_dbg(be->dev, "dpcm: hw_params BE %s\n",
1309 dpcm->fe->dai_link->name);
1311 /* copy params for each dpcm */
1312 memcpy(&dpcm->hw_params, &fe->dpcm[stream].hw_params,
1313 sizeof(struct snd_pcm_hw_params));
1315 /* perform any hw_params fixups */
1316 if (be->dai_link->be_hw_params_fixup) {
1317 ret = be->dai_link->be_hw_params_fixup(be,
1321 "dpcm: hw_params BE fixup failed %d\n",
1327 ret = soc_pcm_hw_params(be_substream, &dpcm->hw_params);
1329 dev_err(dpcm->be->dev,
1330 "dpcm: hw_params BE failed %d\n", ret);
1334 be->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_PARAMS;
1339 /* disable any enabled and non active backends */
1340 list_for_each_entry_continue_reverse(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1341 struct snd_soc_pcm_runtime *be = dpcm->be;
1342 struct snd_pcm_substream *be_substream =
1343 snd_soc_dpcm_get_substream(be, stream);
1345 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1348 /* only allow hw_free() if no connected FEs are running */
1349 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
1352 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN) &&
1353 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
1354 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE) &&
1355 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP))
1358 soc_pcm_hw_free(be_substream);
1364 static int dpcm_fe_dai_hw_params(struct snd_pcm_substream *substream,
1365 struct snd_pcm_hw_params *params)
1367 struct snd_soc_pcm_runtime *fe = substream->private_data;
1368 int ret, stream = substream->stream;
1370 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
1371 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_FE;
1373 memcpy(&fe->dpcm[substream->stream].hw_params, params,
1374 sizeof(struct snd_pcm_hw_params));
1375 ret = dpcm_be_dai_hw_params(fe, substream->stream);
1377 dev_err(fe->dev,"dpcm: hw_params BE failed %d\n", ret);
1381 dev_dbg(fe->dev, "dpcm: hw_params FE %s rate %d chan %x fmt %d\n",
1382 fe->dai_link->name, params_rate(params),
1383 params_channels(params), params_format(params));
1385 /* call hw_params on the frontend */
1386 ret = soc_pcm_hw_params(substream, params);
1388 dev_err(fe->dev,"dpcm: hw_params FE failed %d\n", ret);
1389 dpcm_be_dai_hw_free(fe, stream);
1391 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_PARAMS;
1394 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO;
1395 mutex_unlock(&fe->card->mutex);
1399 static int dpcm_do_trigger(struct snd_soc_dpcm *dpcm,
1400 struct snd_pcm_substream *substream, int cmd)
1404 dev_dbg(dpcm->be->dev, "dpcm: trigger BE %s cmd %d\n",
1405 dpcm->fe->dai_link->name, cmd);
1407 ret = soc_pcm_trigger(substream, cmd);
1409 dev_err(dpcm->be->dev,"dpcm: trigger BE failed %d\n", ret);
1414 static int dpcm_be_dai_trigger(struct snd_soc_pcm_runtime *fe, int stream,
1417 struct snd_soc_dpcm *dpcm;
1420 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1422 struct snd_soc_pcm_runtime *be = dpcm->be;
1423 struct snd_pcm_substream *be_substream =
1424 snd_soc_dpcm_get_substream(be, stream);
1426 /* is this op for this BE ? */
1427 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1431 case SNDRV_PCM_TRIGGER_START:
1432 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_PREPARE) &&
1433 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP))
1436 ret = dpcm_do_trigger(dpcm, be_substream, cmd);
1440 be->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
1442 case SNDRV_PCM_TRIGGER_RESUME:
1443 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_SUSPEND))
1446 ret = dpcm_do_trigger(dpcm, be_substream, cmd);
1450 be->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
1452 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
1453 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_PAUSED))
1456 ret = dpcm_do_trigger(dpcm, be_substream, cmd);
1460 be->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
1462 case SNDRV_PCM_TRIGGER_STOP:
1463 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START)
1466 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
1469 ret = dpcm_do_trigger(dpcm, be_substream, cmd);
1473 be->dpcm[stream].state = SND_SOC_DPCM_STATE_STOP;
1475 case SNDRV_PCM_TRIGGER_SUSPEND:
1476 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP)
1479 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
1482 ret = dpcm_do_trigger(dpcm, be_substream, cmd);
1486 be->dpcm[stream].state = SND_SOC_DPCM_STATE_SUSPEND;
1488 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
1489 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START)
1492 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
1495 ret = dpcm_do_trigger(dpcm, be_substream, cmd);
1499 be->dpcm[stream].state = SND_SOC_DPCM_STATE_PAUSED;
1506 EXPORT_SYMBOL_GPL(dpcm_be_dai_trigger);
1508 static int dpcm_fe_dai_trigger(struct snd_pcm_substream *substream, int cmd)
1510 struct snd_soc_pcm_runtime *fe = substream->private_data;
1511 int stream = substream->stream, ret;
1512 enum snd_soc_dpcm_trigger trigger = fe->dai_link->trigger[stream];
1514 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_FE;
1517 case SND_SOC_DPCM_TRIGGER_PRE:
1518 /* call trigger on the frontend before the backend. */
1520 dev_dbg(fe->dev, "dpcm: pre trigger FE %s cmd %d\n",
1521 fe->dai_link->name, cmd);
1523 ret = soc_pcm_trigger(substream, cmd);
1525 dev_err(fe->dev,"dpcm: trigger FE failed %d\n", ret);
1529 ret = dpcm_be_dai_trigger(fe, substream->stream, cmd);
1531 case SND_SOC_DPCM_TRIGGER_POST:
1532 /* call trigger on the frontend after the backend. */
1534 ret = dpcm_be_dai_trigger(fe, substream->stream, cmd);
1536 dev_err(fe->dev,"dpcm: trigger FE failed %d\n", ret);
1540 dev_dbg(fe->dev, "dpcm: post trigger FE %s cmd %d\n",
1541 fe->dai_link->name, cmd);
1543 ret = soc_pcm_trigger(substream, cmd);
1545 case SND_SOC_DPCM_TRIGGER_BESPOKE:
1546 /* bespoke trigger() - handles both FE and BEs */
1548 dev_dbg(fe->dev, "dpcm: bespoke trigger FE %s cmd %d\n",
1549 fe->dai_link->name, cmd);
1551 ret = soc_pcm_bespoke_trigger(substream, cmd);
1553 dev_err(fe->dev,"dpcm: trigger FE failed %d\n", ret);
1558 dev_err(fe->dev, "dpcm: invalid trigger cmd %d for %s\n", cmd,
1559 fe->dai_link->name);
1565 case SNDRV_PCM_TRIGGER_START:
1566 case SNDRV_PCM_TRIGGER_RESUME:
1567 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
1568 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
1570 case SNDRV_PCM_TRIGGER_STOP:
1571 case SNDRV_PCM_TRIGGER_SUSPEND:
1572 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
1573 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_STOP;
1578 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO;
1582 static int dpcm_be_dai_prepare(struct snd_soc_pcm_runtime *fe, int stream)
1584 struct snd_soc_dpcm *dpcm;
1587 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1589 struct snd_soc_pcm_runtime *be = dpcm->be;
1590 struct snd_pcm_substream *be_substream =
1591 snd_soc_dpcm_get_substream(be, stream);
1593 /* is this op for this BE ? */
1594 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1597 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
1598 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP))
1601 dev_dbg(be->dev, "dpcm: prepare BE %s\n",
1602 dpcm->fe->dai_link->name);
1604 ret = soc_pcm_prepare(be_substream);
1606 dev_err(be->dev, "dpcm: backend prepare failed %d\n",
1611 be->dpcm[stream].state = SND_SOC_DPCM_STATE_PREPARE;
1616 static int dpcm_fe_dai_prepare(struct snd_pcm_substream *substream)
1618 struct snd_soc_pcm_runtime *fe = substream->private_data;
1619 int stream = substream->stream, ret = 0;
1621 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
1623 dev_dbg(fe->dev, "dpcm: prepare FE %s\n", fe->dai_link->name);
1625 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_FE;
1627 /* there is no point preparing this FE if there are no BEs */
1628 if (list_empty(&fe->dpcm[stream].be_clients)) {
1629 dev_err(fe->dev, "dpcm: no backend DAIs enabled for %s\n",
1630 fe->dai_link->name);
1635 ret = dpcm_be_dai_prepare(fe, substream->stream);
1639 /* call prepare on the frontend */
1640 ret = soc_pcm_prepare(substream);
1642 dev_err(fe->dev,"dpcm: prepare FE %s failed\n",
1643 fe->dai_link->name);
1647 /* run the stream event for each BE */
1648 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_START);
1649 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_PREPARE;
1652 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO;
1653 mutex_unlock(&fe->card->mutex);
1658 static int soc_pcm_ioctl(struct snd_pcm_substream *substream,
1659 unsigned int cmd, void *arg)
1661 struct snd_soc_pcm_runtime *rtd = substream->private_data;
1662 struct snd_soc_platform *platform = rtd->platform;
1664 if (platform->driver->ops->ioctl)
1665 return platform->driver->ops->ioctl(substream, cmd, arg);
1666 return snd_pcm_lib_ioctl(substream, cmd, arg);
1669 static int dpcm_run_update_shutdown(struct snd_soc_pcm_runtime *fe, int stream)
1671 struct snd_pcm_substream *substream =
1672 snd_soc_dpcm_get_substream(fe, stream);
1673 enum snd_soc_dpcm_trigger trigger = fe->dai_link->trigger[stream];
1676 dev_dbg(fe->dev, "runtime %s close on FE %s\n",
1677 stream ? "capture" : "playback", fe->dai_link->name);
1679 if (trigger == SND_SOC_DPCM_TRIGGER_BESPOKE) {
1680 /* call bespoke trigger - FE takes care of all BE triggers */
1681 dev_dbg(fe->dev, "dpcm: bespoke trigger FE %s cmd stop\n",
1682 fe->dai_link->name);
1684 err = soc_pcm_bespoke_trigger(substream, SNDRV_PCM_TRIGGER_STOP);
1686 dev_err(fe->dev,"dpcm: trigger FE failed %d\n", err);
1688 dev_dbg(fe->dev, "dpcm: trigger FE %s cmd stop\n",
1689 fe->dai_link->name);
1691 err = dpcm_be_dai_trigger(fe, stream, SNDRV_PCM_TRIGGER_STOP);
1693 dev_err(fe->dev,"dpcm: trigger FE failed %d\n", err);
1696 err = dpcm_be_dai_hw_free(fe, stream);
1698 dev_err(fe->dev,"dpcm: hw_free FE failed %d\n", err);
1700 err = dpcm_be_dai_shutdown(fe, stream);
1702 dev_err(fe->dev,"dpcm: shutdown FE failed %d\n", err);
1704 /* run the stream event for each BE */
1705 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_NOP);
1710 static int dpcm_run_update_startup(struct snd_soc_pcm_runtime *fe, int stream)
1712 struct snd_pcm_substream *substream =
1713 snd_soc_dpcm_get_substream(fe, stream);
1714 struct snd_soc_dpcm *dpcm;
1715 enum snd_soc_dpcm_trigger trigger = fe->dai_link->trigger[stream];
1718 dev_dbg(fe->dev, "runtime %s open on FE %s\n",
1719 stream ? "capture" : "playback", fe->dai_link->name);
1721 /* Only start the BE if the FE is ready */
1722 if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_HW_FREE ||
1723 fe->dpcm[stream].state == SND_SOC_DPCM_STATE_CLOSE)
1726 /* startup must always be called for new BEs */
1727 ret = dpcm_be_dai_startup(fe, stream);
1733 /* keep going if FE state is > open */
1734 if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_OPEN)
1737 ret = dpcm_be_dai_hw_params(fe, stream);
1743 /* keep going if FE state is > hw_params */
1744 if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_HW_PARAMS)
1748 ret = dpcm_be_dai_prepare(fe, stream);
1754 /* run the stream event for each BE */
1755 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_NOP);
1757 /* keep going if FE state is > prepare */
1758 if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_PREPARE ||
1759 fe->dpcm[stream].state == SND_SOC_DPCM_STATE_STOP)
1762 if (trigger == SND_SOC_DPCM_TRIGGER_BESPOKE) {
1763 /* call trigger on the frontend - FE takes care of all BE triggers */
1764 dev_dbg(fe->dev, "dpcm: bespoke trigger FE %s cmd start\n",
1765 fe->dai_link->name);
1767 ret = soc_pcm_bespoke_trigger(substream, SNDRV_PCM_TRIGGER_START);
1769 dev_err(fe->dev,"dpcm: bespoke trigger FE failed %d\n", ret);
1773 dev_dbg(fe->dev, "dpcm: trigger FE %s cmd start\n",
1774 fe->dai_link->name);
1776 ret = dpcm_be_dai_trigger(fe, stream,
1777 SNDRV_PCM_TRIGGER_START);
1779 dev_err(fe->dev,"dpcm: trigger FE failed %d\n", ret);
1787 dpcm_be_dai_hw_free(fe, stream);
1789 dpcm_be_dai_shutdown(fe, stream);
1791 /* disconnect any non started BEs */
1792 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1793 struct snd_soc_pcm_runtime *be = dpcm->be;
1794 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START)
1795 dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE;
1801 static int dpcm_run_new_update(struct snd_soc_pcm_runtime *fe, int stream)
1805 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_BE;
1806 ret = dpcm_run_update_startup(fe, stream);
1808 dev_err(fe->dev, "failed to startup some BEs\n");
1809 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO;
1814 static int dpcm_run_old_update(struct snd_soc_pcm_runtime *fe, int stream)
1818 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_BE;
1819 ret = dpcm_run_update_shutdown(fe, stream);
1821 dev_err(fe->dev, "failed to shutdown some BEs\n");
1822 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO;
1827 /* Called by DAPM mixer/mux changes to update audio routing between PCMs and
1830 int soc_dpcm_runtime_update(struct snd_soc_dapm_widget *widget)
1832 struct snd_soc_card *card;
1833 int i, old, new, paths;
1836 card = widget->codec->card;
1837 else if (widget->platform)
1838 card = widget->platform->card;
1842 mutex_lock_nested(&card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
1843 for (i = 0; i < card->num_rtd; i++) {
1844 struct snd_soc_dapm_widget_list *list;
1845 struct snd_soc_pcm_runtime *fe = &card->rtd[i];
1847 /* make sure link is FE */
1848 if (!fe->dai_link->dynamic)
1851 /* only check active links */
1852 if (!fe->cpu_dai->active)
1855 /* DAPM sync will call this to update DSP paths */
1856 dev_dbg(fe->dev, "DPCM runtime update for FE %s\n",
1857 fe->dai_link->name);
1859 /* skip if FE doesn't have playback capability */
1860 if (!fe->cpu_dai->driver->playback.channels_min)
1863 paths = dpcm_path_get(fe, SNDRV_PCM_STREAM_PLAYBACK, &list);
1865 dev_warn(fe->dev, "%s no valid %s path\n",
1866 fe->dai_link->name, "playback");
1867 mutex_unlock(&card->mutex);
1871 /* update any new playback paths */
1872 new = dpcm_process_paths(fe, SNDRV_PCM_STREAM_PLAYBACK, &list, 1);
1874 dpcm_run_new_update(fe, SNDRV_PCM_STREAM_PLAYBACK);
1875 dpcm_clear_pending_state(fe, SNDRV_PCM_STREAM_PLAYBACK);
1876 dpcm_be_disconnect(fe, SNDRV_PCM_STREAM_PLAYBACK);
1879 /* update any old playback paths */
1880 old = dpcm_process_paths(fe, SNDRV_PCM_STREAM_PLAYBACK, &list, 0);
1882 dpcm_run_old_update(fe, SNDRV_PCM_STREAM_PLAYBACK);
1883 dpcm_clear_pending_state(fe, SNDRV_PCM_STREAM_PLAYBACK);
1884 dpcm_be_disconnect(fe, SNDRV_PCM_STREAM_PLAYBACK);
1888 /* skip if FE doesn't have capture capability */
1889 if (!fe->cpu_dai->driver->capture.channels_min)
1892 paths = dpcm_path_get(fe, SNDRV_PCM_STREAM_CAPTURE, &list);
1894 dev_warn(fe->dev, "%s no valid %s path\n",
1895 fe->dai_link->name, "capture");
1896 mutex_unlock(&card->mutex);
1900 /* update any new capture paths */
1901 new = dpcm_process_paths(fe, SNDRV_PCM_STREAM_CAPTURE, &list, 1);
1903 dpcm_run_new_update(fe, SNDRV_PCM_STREAM_CAPTURE);
1904 dpcm_clear_pending_state(fe, SNDRV_PCM_STREAM_CAPTURE);
1905 dpcm_be_disconnect(fe, SNDRV_PCM_STREAM_CAPTURE);
1908 /* update any old capture paths */
1909 old = dpcm_process_paths(fe, SNDRV_PCM_STREAM_CAPTURE, &list, 0);
1911 dpcm_run_old_update(fe, SNDRV_PCM_STREAM_CAPTURE);
1912 dpcm_clear_pending_state(fe, SNDRV_PCM_STREAM_CAPTURE);
1913 dpcm_be_disconnect(fe, SNDRV_PCM_STREAM_CAPTURE);
1916 dpcm_path_put(&list);
1919 mutex_unlock(&card->mutex);
1922 int soc_dpcm_be_digital_mute(struct snd_soc_pcm_runtime *fe, int mute)
1924 struct snd_soc_dpcm *dpcm;
1925 struct list_head *clients =
1926 &fe->dpcm[SNDRV_PCM_STREAM_PLAYBACK].be_clients;
1928 list_for_each_entry(dpcm, clients, list_be) {
1930 struct snd_soc_pcm_runtime *be = dpcm->be;
1931 struct snd_soc_dai *dai = be->codec_dai;
1932 struct snd_soc_dai_driver *drv = dai->driver;
1934 if (be->dai_link->ignore_suspend)
1937 dev_dbg(be->dev, "BE digital mute %s\n", be->dai_link->name);
1939 if (drv->ops->digital_mute && dai->playback_active)
1940 drv->ops->digital_mute(dai, mute);
1946 static int dpcm_fe_dai_open(struct snd_pcm_substream *fe_substream)
1948 struct snd_soc_pcm_runtime *fe = fe_substream->private_data;
1949 struct snd_soc_dpcm *dpcm;
1950 struct snd_soc_dapm_widget_list *list;
1952 int stream = fe_substream->stream;
1954 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
1955 fe->dpcm[stream].runtime = fe_substream->runtime;
1957 if (dpcm_path_get(fe, stream, &list) <= 0) {
1958 dev_warn(fe->dev, "asoc: %s no valid %s route\n",
1959 fe->dai_link->name, stream ? "capture" : "playback");
1960 mutex_unlock(&fe->card->mutex);
1964 /* calculate valid and active FE <-> BE dpcms */
1965 dpcm_process_paths(fe, stream, &list, 1);
1967 ret = dpcm_fe_dai_startup(fe_substream);
1969 /* clean up all links */
1970 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be)
1971 dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE;
1973 dpcm_be_disconnect(fe, stream);
1974 fe->dpcm[stream].runtime = NULL;
1977 dpcm_clear_pending_state(fe, stream);
1978 dpcm_path_put(&list);
1979 mutex_unlock(&fe->card->mutex);
1983 static int dpcm_fe_dai_close(struct snd_pcm_substream *fe_substream)
1985 struct snd_soc_pcm_runtime *fe = fe_substream->private_data;
1986 struct snd_soc_dpcm *dpcm;
1987 int stream = fe_substream->stream, ret;
1989 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
1990 ret = dpcm_fe_dai_shutdown(fe_substream);
1992 /* mark FE's links ready to prune */
1993 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be)
1994 dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE;
1996 dpcm_be_disconnect(fe, stream);
1998 fe->dpcm[stream].runtime = NULL;
1999 mutex_unlock(&fe->card->mutex);
2003 /* create a new pcm */
2004 int soc_new_pcm(struct snd_soc_pcm_runtime *rtd, int num)
2006 struct snd_soc_codec *codec = rtd->codec;
2007 struct snd_soc_platform *platform = rtd->platform;
2008 struct snd_soc_dai *codec_dai = rtd->codec_dai;
2009 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
2010 struct snd_pcm *pcm;
2012 int ret = 0, playback = 0, capture = 0;
2014 if (rtd->dai_link->dynamic || rtd->dai_link->no_pcm) {
2015 if (cpu_dai->driver->playback.channels_min)
2017 if (cpu_dai->driver->capture.channels_min)
2020 if (codec_dai->driver->playback.channels_min)
2022 if (codec_dai->driver->capture.channels_min)
2026 /* create the PCM */
2027 if (rtd->dai_link->no_pcm) {
2028 snprintf(new_name, sizeof(new_name), "(%s)",
2029 rtd->dai_link->stream_name);
2031 ret = snd_pcm_new_internal(rtd->card->snd_card, new_name, num,
2032 playback, capture, &pcm);
2034 if (rtd->dai_link->dynamic)
2035 snprintf(new_name, sizeof(new_name), "%s (*)",
2036 rtd->dai_link->stream_name);
2038 snprintf(new_name, sizeof(new_name), "%s %s-%d",
2039 rtd->dai_link->stream_name, codec_dai->name, num);
2041 ret = snd_pcm_new(rtd->card->snd_card, new_name, num, playback,
2045 printk(KERN_ERR "asoc: can't create pcm for codec %s\n", codec->name);
2048 dev_dbg(rtd->card->dev, "registered pcm #%d %s\n",num, new_name);
2050 /* DAPM dai link stream work */
2051 INIT_DELAYED_WORK(&rtd->delayed_work, close_delayed_work);
2054 pcm->private_data = rtd;
2056 if (rtd->dai_link->no_pcm) {
2058 pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream->private_data = rtd;
2060 pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream->private_data = rtd;
2064 /* ASoC PCM operations */
2065 if (rtd->dai_link->dynamic) {
2066 rtd->ops.open = dpcm_fe_dai_open;
2067 rtd->ops.hw_params = dpcm_fe_dai_hw_params;
2068 rtd->ops.prepare = dpcm_fe_dai_prepare;
2069 rtd->ops.trigger = dpcm_fe_dai_trigger;
2070 rtd->ops.hw_free = dpcm_fe_dai_hw_free;
2071 rtd->ops.close = dpcm_fe_dai_close;
2072 rtd->ops.pointer = soc_pcm_pointer;
2073 rtd->ops.ioctl = soc_pcm_ioctl;
2075 rtd->ops.open = soc_pcm_open;
2076 rtd->ops.hw_params = soc_pcm_hw_params;
2077 rtd->ops.prepare = soc_pcm_prepare;
2078 rtd->ops.trigger = soc_pcm_trigger;
2079 rtd->ops.hw_free = soc_pcm_hw_free;
2080 rtd->ops.close = soc_pcm_close;
2081 rtd->ops.pointer = soc_pcm_pointer;
2082 rtd->ops.ioctl = soc_pcm_ioctl;
2085 if (platform->driver->ops) {
2086 rtd->ops.ack = platform->driver->ops->ack;
2087 rtd->ops.copy = platform->driver->ops->copy;
2088 rtd->ops.silence = platform->driver->ops->silence;
2089 rtd->ops.page = platform->driver->ops->page;
2090 rtd->ops.mmap = platform->driver->ops->mmap;
2094 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &rtd->ops);
2097 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &rtd->ops);
2099 if (platform->driver->pcm_new) {
2100 ret = platform->driver->pcm_new(rtd);
2102 pr_err("asoc: platform pcm constructor failed\n");
2107 pcm->private_free = platform->driver->pcm_free;
2109 printk(KERN_INFO "asoc: %s <-> %s mapping ok\n", codec_dai->name,
2114 /* is the current PCM operation for this FE ? */
2115 int snd_soc_dpcm_fe_can_update(struct snd_soc_pcm_runtime *fe, int stream)
2117 if (fe->dpcm[stream].runtime_update == SND_SOC_DPCM_UPDATE_FE)
2121 EXPORT_SYMBOL_GPL(snd_soc_dpcm_fe_can_update);
2123 /* is the current PCM operation for this BE ? */
2124 int snd_soc_dpcm_be_can_update(struct snd_soc_pcm_runtime *fe,
2125 struct snd_soc_pcm_runtime *be, int stream)
2127 if ((fe->dpcm[stream].runtime_update == SND_SOC_DPCM_UPDATE_FE) ||
2128 ((fe->dpcm[stream].runtime_update == SND_SOC_DPCM_UPDATE_BE) &&
2129 be->dpcm[stream].runtime_update))
2133 EXPORT_SYMBOL_GPL(snd_soc_dpcm_be_can_update);
2135 /* get the substream for this BE */
2136 struct snd_pcm_substream *
2137 snd_soc_dpcm_get_substream(struct snd_soc_pcm_runtime *be, int stream)
2139 return be->pcm->streams[stream].substream;
2141 EXPORT_SYMBOL_GPL(snd_soc_dpcm_get_substream);
2143 /* get the BE runtime state */
2144 enum snd_soc_dpcm_state
2145 snd_soc_dpcm_be_get_state(struct snd_soc_pcm_runtime *be, int stream)
2147 return be->dpcm[stream].state;
2149 EXPORT_SYMBOL_GPL(snd_soc_dpcm_be_get_state);
2151 /* set the BE runtime state */
2152 void snd_soc_dpcm_be_set_state(struct snd_soc_pcm_runtime *be,
2153 int stream, enum snd_soc_dpcm_state state)
2155 be->dpcm[stream].state = state;
2157 EXPORT_SYMBOL_GPL(snd_soc_dpcm_be_set_state);
2160 * We can only hw_free, stop, pause or suspend a BE DAI if any of it's FE
2161 * are not running, paused or suspended for the specified stream direction.
2163 int snd_soc_dpcm_can_be_free_stop(struct snd_soc_pcm_runtime *fe,
2164 struct snd_soc_pcm_runtime *be, int stream)
2166 struct snd_soc_dpcm *dpcm;
2169 list_for_each_entry(dpcm, &be->dpcm[stream].fe_clients, list_fe) {
2174 state = dpcm->fe->dpcm[stream].state;
2175 if (state == SND_SOC_DPCM_STATE_START ||
2176 state == SND_SOC_DPCM_STATE_PAUSED ||
2177 state == SND_SOC_DPCM_STATE_SUSPEND)
2181 /* it's safe to free/stop this BE DAI */
2184 EXPORT_SYMBOL_GPL(snd_soc_dpcm_can_be_free_stop);
2187 * We can only change hw params a BE DAI if any of it's FE are not prepared,
2188 * running, paused or suspended for the specified stream direction.
2190 int snd_soc_dpcm_can_be_params(struct snd_soc_pcm_runtime *fe,
2191 struct snd_soc_pcm_runtime *be, int stream)
2193 struct snd_soc_dpcm *dpcm;
2196 list_for_each_entry(dpcm, &be->dpcm[stream].fe_clients, list_fe) {
2201 state = dpcm->fe->dpcm[stream].state;
2202 if (state == SND_SOC_DPCM_STATE_START ||
2203 state == SND_SOC_DPCM_STATE_PAUSED ||
2204 state == SND_SOC_DPCM_STATE_SUSPEND ||
2205 state == SND_SOC_DPCM_STATE_PREPARE)
2209 /* it's safe to change hw_params */
2212 EXPORT_SYMBOL_GPL(snd_soc_dpcm_can_be_params);
2214 int snd_soc_platform_trigger(struct snd_pcm_substream *substream,
2215 int cmd, struct snd_soc_platform *platform)
2217 if (platform->driver->ops->trigger)
2218 return platform->driver->ops->trigger(substream, cmd);
2221 EXPORT_SYMBOL_GPL(snd_soc_platform_trigger);
2223 #ifdef CONFIG_DEBUG_FS
2224 static char *dpcm_state_string(enum snd_soc_dpcm_state state)
2227 case SND_SOC_DPCM_STATE_NEW:
2229 case SND_SOC_DPCM_STATE_OPEN:
2231 case SND_SOC_DPCM_STATE_HW_PARAMS:
2233 case SND_SOC_DPCM_STATE_PREPARE:
2235 case SND_SOC_DPCM_STATE_START:
2237 case SND_SOC_DPCM_STATE_STOP:
2239 case SND_SOC_DPCM_STATE_SUSPEND:
2241 case SND_SOC_DPCM_STATE_PAUSED:
2243 case SND_SOC_DPCM_STATE_HW_FREE:
2245 case SND_SOC_DPCM_STATE_CLOSE:
2252 static ssize_t dpcm_show_state(struct snd_soc_pcm_runtime *fe,
2253 int stream, char *buf, size_t size)
2255 struct snd_pcm_hw_params *params = &fe->dpcm[stream].hw_params;
2256 struct snd_soc_dpcm *dpcm;
2260 offset += snprintf(buf + offset, size - offset,
2261 "[%s - %s]\n", fe->dai_link->name,
2262 stream ? "Capture" : "Playback");
2264 offset += snprintf(buf + offset, size - offset, "State: %s\n",
2265 dpcm_state_string(fe->dpcm[stream].state));
2267 if ((fe->dpcm[stream].state >= SND_SOC_DPCM_STATE_HW_PARAMS) &&
2268 (fe->dpcm[stream].state <= SND_SOC_DPCM_STATE_STOP))
2269 offset += snprintf(buf + offset, size - offset,
2271 "Format = %s, Channels = %d, Rate = %d\n",
2272 snd_pcm_format_name(params_format(params)),
2273 params_channels(params),
2274 params_rate(params));
2277 offset += snprintf(buf + offset, size - offset, "Backends:\n");
2279 if (list_empty(&fe->dpcm[stream].be_clients)) {
2280 offset += snprintf(buf + offset, size - offset,
2281 " No active DSP links\n");
2285 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
2286 struct snd_soc_pcm_runtime *be = dpcm->be;
2287 params = &dpcm->hw_params;
2289 offset += snprintf(buf + offset, size - offset,
2290 "- %s\n", be->dai_link->name);
2292 offset += snprintf(buf + offset, size - offset,
2294 dpcm_state_string(be->dpcm[stream].state));
2296 if ((be->dpcm[stream].state >= SND_SOC_DPCM_STATE_HW_PARAMS) &&
2297 (be->dpcm[stream].state <= SND_SOC_DPCM_STATE_STOP))
2298 offset += snprintf(buf + offset, size - offset,
2299 " Hardware Params: "
2300 "Format = %s, Channels = %d, Rate = %d\n",
2301 snd_pcm_format_name(params_format(params)),
2302 params_channels(params),
2303 params_rate(params));
2310 static ssize_t dpcm_state_read_file(struct file *file, char __user *user_buf,
2311 size_t count, loff_t *ppos)
2313 struct snd_soc_pcm_runtime *fe = file->private_data;
2314 ssize_t out_count = PAGE_SIZE, offset = 0, ret = 0;
2317 buf = kmalloc(out_count, GFP_KERNEL);
2321 if (fe->cpu_dai->driver->playback.channels_min)
2322 offset += dpcm_show_state(fe, SNDRV_PCM_STREAM_PLAYBACK,
2323 buf + offset, out_count - offset);
2325 if (fe->cpu_dai->driver->capture.channels_min)
2326 offset += dpcm_show_state(fe, SNDRV_PCM_STREAM_CAPTURE,
2327 buf + offset, out_count - offset);
2329 ret = simple_read_from_buffer(user_buf, count, ppos, buf, offset);
2335 static const struct file_operations dpcm_state_fops = {
2336 .open = simple_open,
2337 .read = dpcm_state_read_file,
2338 .llseek = default_llseek,
2341 int soc_dpcm_debugfs_add(struct snd_soc_pcm_runtime *rtd)
2346 rtd->debugfs_dpcm_root = debugfs_create_dir(rtd->dai_link->name,
2347 rtd->card->debugfs_card_root);
2348 if (!rtd->debugfs_dpcm_root) {
2350 "ASoC: Failed to create dpcm debugfs directory %s\n",
2351 rtd->dai_link->name);
2355 rtd->debugfs_dpcm_state = debugfs_create_file("state", 0444,
2356 rtd->debugfs_dpcm_root,
2357 rtd, &dpcm_state_fops);