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/pinctrl/consumer.h>
23 #include <linux/pm_runtime.h>
24 #include <linux/slab.h>
25 #include <linux/workqueue.h>
26 #include <linux/export.h>
27 #include <linux/debugfs.h>
28 #include <sound/core.h>
29 #include <sound/pcm.h>
30 #include <sound/pcm_params.h>
31 #include <sound/soc.h>
32 #include <sound/soc-dpcm.h>
33 #include <sound/initval.h>
35 #define DPCM_MAX_BE_USERS 8
38 * snd_soc_dai_stream_valid() - check if a DAI supports the given stream
40 * Returns true if the DAI supports the indicated stream type.
42 static bool snd_soc_dai_stream_valid(struct snd_soc_dai
*dai
, int stream
)
44 struct snd_soc_pcm_stream
*codec_stream
;
46 if (stream
== SNDRV_PCM_STREAM_PLAYBACK
)
47 codec_stream
= &dai
->driver
->playback
;
49 codec_stream
= &dai
->driver
->capture
;
51 /* If the codec specifies any rate at all, it supports the stream. */
52 return codec_stream
->rates
;
56 * snd_soc_runtime_activate() - Increment active count for PCM runtime components
57 * @rtd: ASoC PCM runtime that is activated
58 * @stream: Direction of the PCM stream
60 * Increments the active count for all the DAIs and components attached to a PCM
61 * runtime. Should typically be called when a stream is opened.
63 * Must be called with the rtd->pcm_mutex being held
65 void snd_soc_runtime_activate(struct snd_soc_pcm_runtime
*rtd
, int stream
)
67 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
70 lockdep_assert_held(&rtd
->pcm_mutex
);
72 if (stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
73 cpu_dai
->playback_active
++;
74 for (i
= 0; i
< rtd
->num_codecs
; i
++)
75 rtd
->codec_dais
[i
]->playback_active
++;
77 cpu_dai
->capture_active
++;
78 for (i
= 0; i
< rtd
->num_codecs
; i
++)
79 rtd
->codec_dais
[i
]->capture_active
++;
83 cpu_dai
->component
->active
++;
84 for (i
= 0; i
< rtd
->num_codecs
; i
++) {
85 rtd
->codec_dais
[i
]->active
++;
86 rtd
->codec_dais
[i
]->component
->active
++;
91 * snd_soc_runtime_deactivate() - Decrement active count for PCM runtime components
92 * @rtd: ASoC PCM runtime that is deactivated
93 * @stream: Direction of the PCM stream
95 * Decrements the active count for all the DAIs and components attached to a PCM
96 * runtime. Should typically be called when a stream is closed.
98 * Must be called with the rtd->pcm_mutex being held
100 void snd_soc_runtime_deactivate(struct snd_soc_pcm_runtime
*rtd
, int stream
)
102 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
105 lockdep_assert_held(&rtd
->pcm_mutex
);
107 if (stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
108 cpu_dai
->playback_active
--;
109 for (i
= 0; i
< rtd
->num_codecs
; i
++)
110 rtd
->codec_dais
[i
]->playback_active
--;
112 cpu_dai
->capture_active
--;
113 for (i
= 0; i
< rtd
->num_codecs
; i
++)
114 rtd
->codec_dais
[i
]->capture_active
--;
118 cpu_dai
->component
->active
--;
119 for (i
= 0; i
< rtd
->num_codecs
; i
++) {
120 rtd
->codec_dais
[i
]->component
->active
--;
121 rtd
->codec_dais
[i
]->active
--;
126 * snd_soc_runtime_ignore_pmdown_time() - Check whether to ignore the power down delay
127 * @rtd: The ASoC PCM runtime that should be checked.
129 * This function checks whether the power down delay should be ignored for a
130 * specific PCM runtime. Returns true if the delay is 0, if it the DAI link has
131 * been configured to ignore the delay, or if none of the components benefits
132 * from having the delay.
134 bool snd_soc_runtime_ignore_pmdown_time(struct snd_soc_pcm_runtime
*rtd
)
139 if (!rtd
->pmdown_time
|| rtd
->dai_link
->ignore_pmdown_time
)
142 for (i
= 0; i
< rtd
->num_codecs
; i
++)
143 ignore
&= rtd
->codec_dais
[i
]->component
->ignore_pmdown_time
;
145 return rtd
->cpu_dai
->component
->ignore_pmdown_time
&& ignore
;
149 * snd_soc_set_runtime_hwparams - set the runtime hardware parameters
150 * @substream: the pcm substream
151 * @hw: the hardware parameters
153 * Sets the substream runtime hardware parameters.
155 int snd_soc_set_runtime_hwparams(struct snd_pcm_substream
*substream
,
156 const struct snd_pcm_hardware
*hw
)
158 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
159 runtime
->hw
.info
= hw
->info
;
160 runtime
->hw
.formats
= hw
->formats
;
161 runtime
->hw
.period_bytes_min
= hw
->period_bytes_min
;
162 runtime
->hw
.period_bytes_max
= hw
->period_bytes_max
;
163 runtime
->hw
.periods_min
= hw
->periods_min
;
164 runtime
->hw
.periods_max
= hw
->periods_max
;
165 runtime
->hw
.buffer_bytes_max
= hw
->buffer_bytes_max
;
166 runtime
->hw
.fifo_size
= hw
->fifo_size
;
169 EXPORT_SYMBOL_GPL(snd_soc_set_runtime_hwparams
);
171 /* DPCM stream event, send event to FE and all active BEs. */
172 int dpcm_dapm_stream_event(struct snd_soc_pcm_runtime
*fe
, int dir
,
175 struct snd_soc_dpcm
*dpcm
;
177 list_for_each_entry(dpcm
, &fe
->dpcm
[dir
].be_clients
, list_be
) {
179 struct snd_soc_pcm_runtime
*be
= dpcm
->be
;
181 dev_dbg(be
->dev
, "ASoC: BE %s event %d dir %d\n",
182 be
->dai_link
->name
, event
, dir
);
184 snd_soc_dapm_stream_event(be
, dir
, event
);
187 snd_soc_dapm_stream_event(fe
, dir
, event
);
192 static int soc_pcm_apply_symmetry(struct snd_pcm_substream
*substream
,
193 struct snd_soc_dai
*soc_dai
)
195 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
198 if (soc_dai
->rate
&& (soc_dai
->driver
->symmetric_rates
||
199 rtd
->dai_link
->symmetric_rates
)) {
200 dev_dbg(soc_dai
->dev
, "ASoC: Symmetry forces %dHz rate\n",
203 ret
= snd_pcm_hw_constraint_single(substream
->runtime
,
204 SNDRV_PCM_HW_PARAM_RATE
,
207 dev_err(soc_dai
->dev
,
208 "ASoC: Unable to apply rate constraint: %d\n",
214 if (soc_dai
->channels
&& (soc_dai
->driver
->symmetric_channels
||
215 rtd
->dai_link
->symmetric_channels
)) {
216 dev_dbg(soc_dai
->dev
, "ASoC: Symmetry forces %d channel(s)\n",
219 ret
= snd_pcm_hw_constraint_single(substream
->runtime
,
220 SNDRV_PCM_HW_PARAM_CHANNELS
,
223 dev_err(soc_dai
->dev
,
224 "ASoC: Unable to apply channel symmetry constraint: %d\n",
230 if (soc_dai
->sample_bits
&& (soc_dai
->driver
->symmetric_samplebits
||
231 rtd
->dai_link
->symmetric_samplebits
)) {
232 dev_dbg(soc_dai
->dev
, "ASoC: Symmetry forces %d sample bits\n",
233 soc_dai
->sample_bits
);
235 ret
= snd_pcm_hw_constraint_single(substream
->runtime
,
236 SNDRV_PCM_HW_PARAM_SAMPLE_BITS
,
237 soc_dai
->sample_bits
);
239 dev_err(soc_dai
->dev
,
240 "ASoC: Unable to apply sample bits symmetry constraint: %d\n",
249 static int soc_pcm_params_symmetry(struct snd_pcm_substream
*substream
,
250 struct snd_pcm_hw_params
*params
)
252 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
253 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
254 unsigned int rate
, channels
, sample_bits
, symmetry
, i
;
256 rate
= params_rate(params
);
257 channels
= params_channels(params
);
258 sample_bits
= snd_pcm_format_physical_width(params_format(params
));
260 /* reject unmatched parameters when applying symmetry */
261 symmetry
= cpu_dai
->driver
->symmetric_rates
||
262 rtd
->dai_link
->symmetric_rates
;
264 for (i
= 0; i
< rtd
->num_codecs
; i
++)
265 symmetry
|= rtd
->codec_dais
[i
]->driver
->symmetric_rates
;
267 if (symmetry
&& cpu_dai
->rate
&& cpu_dai
->rate
!= rate
) {
268 dev_err(rtd
->dev
, "ASoC: unmatched rate symmetry: %d - %d\n",
269 cpu_dai
->rate
, rate
);
273 symmetry
= cpu_dai
->driver
->symmetric_channels
||
274 rtd
->dai_link
->symmetric_channels
;
276 for (i
= 0; i
< rtd
->num_codecs
; i
++)
277 symmetry
|= rtd
->codec_dais
[i
]->driver
->symmetric_channels
;
279 if (symmetry
&& cpu_dai
->channels
&& cpu_dai
->channels
!= channels
) {
280 dev_err(rtd
->dev
, "ASoC: unmatched channel symmetry: %d - %d\n",
281 cpu_dai
->channels
, channels
);
285 symmetry
= cpu_dai
->driver
->symmetric_samplebits
||
286 rtd
->dai_link
->symmetric_samplebits
;
288 for (i
= 0; i
< rtd
->num_codecs
; i
++)
289 symmetry
|= rtd
->codec_dais
[i
]->driver
->symmetric_samplebits
;
291 if (symmetry
&& cpu_dai
->sample_bits
&& cpu_dai
->sample_bits
!= sample_bits
) {
292 dev_err(rtd
->dev
, "ASoC: unmatched sample bits symmetry: %d - %d\n",
293 cpu_dai
->sample_bits
, sample_bits
);
300 static bool soc_pcm_has_symmetry(struct snd_pcm_substream
*substream
)
302 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
303 struct snd_soc_dai_driver
*cpu_driver
= rtd
->cpu_dai
->driver
;
304 struct snd_soc_dai_link
*link
= rtd
->dai_link
;
305 unsigned int symmetry
, i
;
307 symmetry
= cpu_driver
->symmetric_rates
|| link
->symmetric_rates
||
308 cpu_driver
->symmetric_channels
|| link
->symmetric_channels
||
309 cpu_driver
->symmetric_samplebits
|| link
->symmetric_samplebits
;
311 for (i
= 0; i
< rtd
->num_codecs
; i
++)
312 symmetry
= symmetry
||
313 rtd
->codec_dais
[i
]->driver
->symmetric_rates
||
314 rtd
->codec_dais
[i
]->driver
->symmetric_channels
||
315 rtd
->codec_dais
[i
]->driver
->symmetric_samplebits
;
320 static void soc_pcm_set_msb(struct snd_pcm_substream
*substream
, int bits
)
322 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
328 ret
= snd_pcm_hw_constraint_msbits(substream
->runtime
, 0, 0, bits
);
330 dev_warn(rtd
->dev
, "ASoC: Failed to set MSB %d: %d\n",
334 static void soc_pcm_apply_msb(struct snd_pcm_substream
*substream
)
336 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
337 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
338 struct snd_soc_dai
*codec_dai
;
340 unsigned int bits
= 0, cpu_bits
;
342 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
343 for (i
= 0; i
< rtd
->num_codecs
; i
++) {
344 codec_dai
= rtd
->codec_dais
[i
];
345 if (codec_dai
->driver
->playback
.sig_bits
== 0) {
349 bits
= max(codec_dai
->driver
->playback
.sig_bits
, bits
);
351 cpu_bits
= cpu_dai
->driver
->playback
.sig_bits
;
353 for (i
= 0; i
< rtd
->num_codecs
; i
++) {
354 codec_dai
= rtd
->codec_dais
[i
];
355 if (codec_dai
->driver
->capture
.sig_bits
== 0) {
359 bits
= max(codec_dai
->driver
->capture
.sig_bits
, bits
);
361 cpu_bits
= cpu_dai
->driver
->capture
.sig_bits
;
364 soc_pcm_set_msb(substream
, bits
);
365 soc_pcm_set_msb(substream
, cpu_bits
);
368 static void soc_pcm_init_runtime_hw(struct snd_pcm_substream
*substream
)
370 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
371 struct snd_pcm_hardware
*hw
= &runtime
->hw
;
372 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
373 struct snd_soc_dai_driver
*cpu_dai_drv
= rtd
->cpu_dai
->driver
;
374 struct snd_soc_dai_driver
*codec_dai_drv
;
375 struct snd_soc_pcm_stream
*codec_stream
;
376 struct snd_soc_pcm_stream
*cpu_stream
;
377 unsigned int chan_min
= 0, chan_max
= UINT_MAX
;
378 unsigned int rate_min
= 0, rate_max
= UINT_MAX
;
379 unsigned int rates
= UINT_MAX
;
380 u64 formats
= ULLONG_MAX
;
383 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
384 cpu_stream
= &cpu_dai_drv
->playback
;
386 cpu_stream
= &cpu_dai_drv
->capture
;
388 /* first calculate min/max only for CODECs in the DAI link */
389 for (i
= 0; i
< rtd
->num_codecs
; i
++) {
392 * Skip CODECs which don't support the current stream type.
393 * Otherwise, since the rate, channel, and format values will
394 * zero in that case, we would have no usable settings left,
395 * causing the resulting setup to fail.
396 * At least one CODEC should match, otherwise we should have
397 * bailed out on a higher level, since there would be no
398 * CODEC to support the transfer direction in that case.
400 if (!snd_soc_dai_stream_valid(rtd
->codec_dais
[i
],
404 codec_dai_drv
= rtd
->codec_dais
[i
]->driver
;
405 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
406 codec_stream
= &codec_dai_drv
->playback
;
408 codec_stream
= &codec_dai_drv
->capture
;
409 chan_min
= max(chan_min
, codec_stream
->channels_min
);
410 chan_max
= min(chan_max
, codec_stream
->channels_max
);
411 rate_min
= max(rate_min
, codec_stream
->rate_min
);
412 rate_max
= min_not_zero(rate_max
, codec_stream
->rate_max
);
413 formats
&= codec_stream
->formats
;
414 rates
= snd_pcm_rate_mask_intersect(codec_stream
->rates
, rates
);
418 * chan min/max cannot be enforced if there are multiple CODEC DAIs
419 * connected to a single CPU DAI, use CPU DAI's directly and let
420 * channel allocation be fixed up later
422 if (rtd
->num_codecs
> 1) {
423 chan_min
= cpu_stream
->channels_min
;
424 chan_max
= cpu_stream
->channels_max
;
427 hw
->channels_min
= max(chan_min
, cpu_stream
->channels_min
);
428 hw
->channels_max
= min(chan_max
, cpu_stream
->channels_max
);
430 hw
->formats
&= formats
& cpu_stream
->formats
;
432 hw
->formats
= formats
& cpu_stream
->formats
;
433 hw
->rates
= snd_pcm_rate_mask_intersect(rates
, cpu_stream
->rates
);
435 snd_pcm_limit_hw_rates(runtime
);
437 hw
->rate_min
= max(hw
->rate_min
, cpu_stream
->rate_min
);
438 hw
->rate_min
= max(hw
->rate_min
, rate_min
);
439 hw
->rate_max
= min_not_zero(hw
->rate_max
, cpu_stream
->rate_max
);
440 hw
->rate_max
= min_not_zero(hw
->rate_max
, rate_max
);
444 * Called by ALSA when a PCM substream is opened, the runtime->hw record is
445 * then initialized and any private data can be allocated. This also calls
446 * startup for the cpu DAI, platform, machine and codec DAI.
448 static int soc_pcm_open(struct snd_pcm_substream
*substream
)
450 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
451 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
452 struct snd_soc_platform
*platform
= rtd
->platform
;
453 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
454 struct snd_soc_dai
*codec_dai
;
455 const char *codec_dai_name
= "multicodec";
458 pinctrl_pm_select_default_state(cpu_dai
->dev
);
459 for (i
= 0; i
< rtd
->num_codecs
; i
++)
460 pinctrl_pm_select_default_state(rtd
->codec_dais
[i
]->dev
);
461 pm_runtime_get_sync(cpu_dai
->dev
);
462 for (i
= 0; i
< rtd
->num_codecs
; i
++)
463 pm_runtime_get_sync(rtd
->codec_dais
[i
]->dev
);
464 pm_runtime_get_sync(platform
->dev
);
466 mutex_lock_nested(&rtd
->pcm_mutex
, rtd
->pcm_subclass
);
468 /* startup the audio subsystem */
469 if (cpu_dai
->driver
->ops
&& cpu_dai
->driver
->ops
->startup
) {
470 ret
= cpu_dai
->driver
->ops
->startup(substream
, cpu_dai
);
472 dev_err(cpu_dai
->dev
, "ASoC: can't open interface"
473 " %s: %d\n", cpu_dai
->name
, ret
);
478 if (platform
->driver
->ops
&& platform
->driver
->ops
->open
) {
479 ret
= platform
->driver
->ops
->open(substream
);
481 dev_err(platform
->dev
, "ASoC: can't open platform"
482 " %s: %d\n", platform
->component
.name
, ret
);
487 for (i
= 0; i
< rtd
->num_codecs
; i
++) {
488 codec_dai
= rtd
->codec_dais
[i
];
489 if (codec_dai
->driver
->ops
&& codec_dai
->driver
->ops
->startup
) {
490 ret
= codec_dai
->driver
->ops
->startup(substream
,
493 dev_err(codec_dai
->dev
,
494 "ASoC: can't open codec %s: %d\n",
495 codec_dai
->name
, ret
);
500 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
501 codec_dai
->tx_mask
= 0;
503 codec_dai
->rx_mask
= 0;
506 if (rtd
->dai_link
->ops
&& rtd
->dai_link
->ops
->startup
) {
507 ret
= rtd
->dai_link
->ops
->startup(substream
);
509 pr_err("ASoC: %s startup failed: %d\n",
510 rtd
->dai_link
->name
, ret
);
515 /* Dynamic PCM DAI links compat checks use dynamic capabilities */
516 if (rtd
->dai_link
->dynamic
|| rtd
->dai_link
->no_pcm
)
519 /* Check that the codec and cpu DAIs are compatible */
520 soc_pcm_init_runtime_hw(substream
);
522 if (rtd
->num_codecs
== 1)
523 codec_dai_name
= rtd
->codec_dai
->name
;
525 if (soc_pcm_has_symmetry(substream
))
526 runtime
->hw
.info
|= SNDRV_PCM_INFO_JOINT_DUPLEX
;
529 if (!runtime
->hw
.rates
) {
530 printk(KERN_ERR
"ASoC: %s <-> %s No matching rates\n",
531 codec_dai_name
, cpu_dai
->name
);
534 if (!runtime
->hw
.formats
) {
535 printk(KERN_ERR
"ASoC: %s <-> %s No matching formats\n",
536 codec_dai_name
, cpu_dai
->name
);
539 if (!runtime
->hw
.channels_min
|| !runtime
->hw
.channels_max
||
540 runtime
->hw
.channels_min
> runtime
->hw
.channels_max
) {
541 printk(KERN_ERR
"ASoC: %s <-> %s No matching channels\n",
542 codec_dai_name
, cpu_dai
->name
);
546 soc_pcm_apply_msb(substream
);
548 /* Symmetry only applies if we've already got an active stream. */
549 if (cpu_dai
->active
) {
550 ret
= soc_pcm_apply_symmetry(substream
, cpu_dai
);
555 for (i
= 0; i
< rtd
->num_codecs
; i
++) {
556 if (rtd
->codec_dais
[i
]->active
) {
557 ret
= soc_pcm_apply_symmetry(substream
,
564 pr_debug("ASoC: %s <-> %s info:\n",
565 codec_dai_name
, cpu_dai
->name
);
566 pr_debug("ASoC: rate mask 0x%x\n", runtime
->hw
.rates
);
567 pr_debug("ASoC: min ch %d max ch %d\n", runtime
->hw
.channels_min
,
568 runtime
->hw
.channels_max
);
569 pr_debug("ASoC: min rate %d max rate %d\n", runtime
->hw
.rate_min
,
570 runtime
->hw
.rate_max
);
574 snd_soc_runtime_activate(rtd
, substream
->stream
);
576 mutex_unlock(&rtd
->pcm_mutex
);
580 if (rtd
->dai_link
->ops
&& rtd
->dai_link
->ops
->shutdown
)
581 rtd
->dai_link
->ops
->shutdown(substream
);
588 codec_dai
= rtd
->codec_dais
[i
];
589 if (codec_dai
->driver
->ops
->shutdown
)
590 codec_dai
->driver
->ops
->shutdown(substream
, codec_dai
);
593 if (platform
->driver
->ops
&& platform
->driver
->ops
->close
)
594 platform
->driver
->ops
->close(substream
);
597 if (cpu_dai
->driver
->ops
->shutdown
)
598 cpu_dai
->driver
->ops
->shutdown(substream
, cpu_dai
);
600 mutex_unlock(&rtd
->pcm_mutex
);
602 pm_runtime_put(platform
->dev
);
603 for (i
= 0; i
< rtd
->num_codecs
; i
++)
604 pm_runtime_put(rtd
->codec_dais
[i
]->dev
);
605 pm_runtime_put(cpu_dai
->dev
);
606 for (i
= 0; i
< rtd
->num_codecs
; i
++) {
607 if (!rtd
->codec_dais
[i
]->active
)
608 pinctrl_pm_select_sleep_state(rtd
->codec_dais
[i
]->dev
);
610 if (!cpu_dai
->active
)
611 pinctrl_pm_select_sleep_state(cpu_dai
->dev
);
617 * Power down the audio subsystem pmdown_time msecs after close is called.
618 * This is to ensure there are no pops or clicks in between any music tracks
619 * due to DAPM power cycling.
621 static void close_delayed_work(struct work_struct
*work
)
623 struct snd_soc_pcm_runtime
*rtd
=
624 container_of(work
, struct snd_soc_pcm_runtime
, delayed_work
.work
);
625 struct snd_soc_dai
*codec_dai
= rtd
->codec_dais
[0];
627 mutex_lock_nested(&rtd
->pcm_mutex
, rtd
->pcm_subclass
);
629 dev_dbg(rtd
->dev
, "ASoC: pop wq checking: %s status: %s waiting: %s\n",
630 codec_dai
->driver
->playback
.stream_name
,
631 codec_dai
->playback_active
? "active" : "inactive",
632 rtd
->pop_wait
? "yes" : "no");
634 /* are we waiting on this codec DAI stream */
635 if (rtd
->pop_wait
== 1) {
637 snd_soc_dapm_stream_event(rtd
, SNDRV_PCM_STREAM_PLAYBACK
,
638 SND_SOC_DAPM_STREAM_STOP
);
641 mutex_unlock(&rtd
->pcm_mutex
);
645 * Called by ALSA when a PCM substream is closed. Private data can be
646 * freed here. The cpu DAI, codec DAI, machine and platform are also
649 static int soc_pcm_close(struct snd_pcm_substream
*substream
)
651 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
652 struct snd_soc_platform
*platform
= rtd
->platform
;
653 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
654 struct snd_soc_dai
*codec_dai
;
657 mutex_lock_nested(&rtd
->pcm_mutex
, rtd
->pcm_subclass
);
659 snd_soc_runtime_deactivate(rtd
, substream
->stream
);
661 /* clear the corresponding DAIs rate when inactive */
662 if (!cpu_dai
->active
)
665 for (i
= 0; i
< rtd
->num_codecs
; i
++) {
666 codec_dai
= rtd
->codec_dais
[i
];
667 if (!codec_dai
->active
)
671 snd_soc_dai_digital_mute(cpu_dai
, 1, substream
->stream
);
673 if (cpu_dai
->driver
->ops
->shutdown
)
674 cpu_dai
->driver
->ops
->shutdown(substream
, cpu_dai
);
676 for (i
= 0; i
< rtd
->num_codecs
; i
++) {
677 codec_dai
= rtd
->codec_dais
[i
];
678 if (codec_dai
->driver
->ops
->shutdown
)
679 codec_dai
->driver
->ops
->shutdown(substream
, codec_dai
);
682 if (rtd
->dai_link
->ops
&& rtd
->dai_link
->ops
->shutdown
)
683 rtd
->dai_link
->ops
->shutdown(substream
);
685 if (platform
->driver
->ops
&& platform
->driver
->ops
->close
)
686 platform
->driver
->ops
->close(substream
);
688 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
689 if (snd_soc_runtime_ignore_pmdown_time(rtd
)) {
690 /* powered down playback stream now */
691 snd_soc_dapm_stream_event(rtd
,
692 SNDRV_PCM_STREAM_PLAYBACK
,
693 SND_SOC_DAPM_STREAM_STOP
);
695 /* start delayed pop wq here for playback streams */
697 queue_delayed_work(system_power_efficient_wq
,
699 msecs_to_jiffies(rtd
->pmdown_time
));
702 /* capture streams can be powered down now */
703 snd_soc_dapm_stream_event(rtd
, SNDRV_PCM_STREAM_CAPTURE
,
704 SND_SOC_DAPM_STREAM_STOP
);
707 mutex_unlock(&rtd
->pcm_mutex
);
709 pm_runtime_put(platform
->dev
);
710 for (i
= 0; i
< rtd
->num_codecs
; i
++)
711 pm_runtime_put(rtd
->codec_dais
[i
]->dev
);
712 pm_runtime_put(cpu_dai
->dev
);
713 for (i
= 0; i
< rtd
->num_codecs
; i
++) {
714 if (!rtd
->codec_dais
[i
]->active
)
715 pinctrl_pm_select_sleep_state(rtd
->codec_dais
[i
]->dev
);
717 if (!cpu_dai
->active
)
718 pinctrl_pm_select_sleep_state(cpu_dai
->dev
);
724 * Called by ALSA when the PCM substream is prepared, can set format, sample
725 * rate, etc. This function is non atomic and can be called multiple times,
726 * it can refer to the runtime info.
728 static int soc_pcm_prepare(struct snd_pcm_substream
*substream
)
730 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
731 struct snd_soc_platform
*platform
= rtd
->platform
;
732 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
733 struct snd_soc_dai
*codec_dai
;
736 mutex_lock_nested(&rtd
->pcm_mutex
, rtd
->pcm_subclass
);
738 if (rtd
->dai_link
->ops
&& rtd
->dai_link
->ops
->prepare
) {
739 ret
= rtd
->dai_link
->ops
->prepare(substream
);
741 dev_err(rtd
->card
->dev
, "ASoC: machine prepare error:"
747 if (platform
->driver
->ops
&& platform
->driver
->ops
->prepare
) {
748 ret
= platform
->driver
->ops
->prepare(substream
);
750 dev_err(platform
->dev
, "ASoC: platform prepare error:"
756 for (i
= 0; i
< rtd
->num_codecs
; i
++) {
757 codec_dai
= rtd
->codec_dais
[i
];
758 if (codec_dai
->driver
->ops
&& codec_dai
->driver
->ops
->prepare
) {
759 ret
= codec_dai
->driver
->ops
->prepare(substream
,
762 dev_err(codec_dai
->dev
,
763 "ASoC: codec DAI prepare error: %d\n",
770 if (cpu_dai
->driver
->ops
&& cpu_dai
->driver
->ops
->prepare
) {
771 ret
= cpu_dai
->driver
->ops
->prepare(substream
, cpu_dai
);
773 dev_err(cpu_dai
->dev
,
774 "ASoC: cpu DAI prepare error: %d\n", ret
);
779 /* cancel any delayed stream shutdown that is pending */
780 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
&&
783 cancel_delayed_work(&rtd
->delayed_work
);
786 snd_soc_dapm_stream_event(rtd
, substream
->stream
,
787 SND_SOC_DAPM_STREAM_START
);
789 for (i
= 0; i
< rtd
->num_codecs
; i
++)
790 snd_soc_dai_digital_mute(rtd
->codec_dais
[i
], 0,
792 snd_soc_dai_digital_mute(cpu_dai
, 0, substream
->stream
);
795 mutex_unlock(&rtd
->pcm_mutex
);
799 static void soc_pcm_codec_params_fixup(struct snd_pcm_hw_params
*params
,
802 struct snd_interval
*interval
;
803 int channels
= hweight_long(mask
);
805 interval
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_CHANNELS
);
806 interval
->min
= channels
;
807 interval
->max
= channels
;
810 int soc_dai_hw_params(struct snd_pcm_substream
*substream
,
811 struct snd_pcm_hw_params
*params
,
812 struct snd_soc_dai
*dai
)
816 if (dai
->driver
->ops
&& dai
->driver
->ops
->hw_params
) {
817 ret
= dai
->driver
->ops
->hw_params(substream
, params
, dai
);
819 dev_err(dai
->dev
, "ASoC: can't set %s hw params: %d\n",
829 * Called by ALSA when the hardware params are set by application. This
830 * function can also be called multiple times and can allocate buffers
831 * (using snd_pcm_lib_* ). It's non-atomic.
833 static int soc_pcm_hw_params(struct snd_pcm_substream
*substream
,
834 struct snd_pcm_hw_params
*params
)
836 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
837 struct snd_soc_platform
*platform
= rtd
->platform
;
838 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
841 mutex_lock_nested(&rtd
->pcm_mutex
, rtd
->pcm_subclass
);
843 ret
= soc_pcm_params_symmetry(substream
, params
);
847 if (rtd
->dai_link
->ops
&& rtd
->dai_link
->ops
->hw_params
) {
848 ret
= rtd
->dai_link
->ops
->hw_params(substream
, params
);
850 dev_err(rtd
->card
->dev
, "ASoC: machine hw_params"
851 " failed: %d\n", ret
);
856 for (i
= 0; i
< rtd
->num_codecs
; i
++) {
857 struct snd_soc_dai
*codec_dai
= rtd
->codec_dais
[i
];
858 struct snd_pcm_hw_params codec_params
;
861 * Skip CODECs which don't support the current stream type,
862 * the idea being that if a CODEC is not used for the currently
863 * set up transfer direction, it should not need to be
864 * configured, especially since the configuration used might
865 * not even be supported by that CODEC. There may be cases
866 * however where a CODEC needs to be set up although it is
867 * actually not being used for the transfer, e.g. if a
868 * capture-only CODEC is acting as an LRCLK and/or BCLK master
869 * for the DAI link including a playback-only CODEC.
870 * If this becomes necessary, we will have to augment the
871 * machine driver setup with information on how to act, so
872 * we can do the right thing here.
874 if (!snd_soc_dai_stream_valid(codec_dai
, substream
->stream
))
877 /* copy params for each codec */
878 codec_params
= *params
;
880 /* fixup params based on TDM slot masks */
881 if (codec_dai
->tx_mask
)
882 soc_pcm_codec_params_fixup(&codec_params
,
884 if (codec_dai
->rx_mask
)
885 soc_pcm_codec_params_fixup(&codec_params
,
888 ret
= soc_dai_hw_params(substream
, &codec_params
, codec_dai
);
892 codec_dai
->rate
= params_rate(&codec_params
);
893 codec_dai
->channels
= params_channels(&codec_params
);
894 codec_dai
->sample_bits
= snd_pcm_format_physical_width(
895 params_format(&codec_params
));
898 ret
= soc_dai_hw_params(substream
, params
, cpu_dai
);
902 if (platform
->driver
->ops
&& platform
->driver
->ops
->hw_params
) {
903 ret
= platform
->driver
->ops
->hw_params(substream
, params
);
905 dev_err(platform
->dev
, "ASoC: %s hw params failed: %d\n",
906 platform
->component
.name
, ret
);
911 /* store the parameters for each DAIs */
912 cpu_dai
->rate
= params_rate(params
);
913 cpu_dai
->channels
= params_channels(params
);
914 cpu_dai
->sample_bits
=
915 snd_pcm_format_physical_width(params_format(params
));
918 mutex_unlock(&rtd
->pcm_mutex
);
922 if (cpu_dai
->driver
->ops
&& cpu_dai
->driver
->ops
->hw_free
)
923 cpu_dai
->driver
->ops
->hw_free(substream
, cpu_dai
);
930 struct snd_soc_dai
*codec_dai
= rtd
->codec_dais
[i
];
931 if (codec_dai
->driver
->ops
&& codec_dai
->driver
->ops
->hw_free
)
932 codec_dai
->driver
->ops
->hw_free(substream
, codec_dai
);
936 if (rtd
->dai_link
->ops
&& rtd
->dai_link
->ops
->hw_free
)
937 rtd
->dai_link
->ops
->hw_free(substream
);
939 mutex_unlock(&rtd
->pcm_mutex
);
944 * Frees resources allocated by hw_params, can be called multiple times
946 static int soc_pcm_hw_free(struct snd_pcm_substream
*substream
)
948 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
949 struct snd_soc_platform
*platform
= rtd
->platform
;
950 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
951 struct snd_soc_dai
*codec_dai
;
952 bool playback
= substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
;
955 mutex_lock_nested(&rtd
->pcm_mutex
, rtd
->pcm_subclass
);
957 /* clear the corresponding DAIs parameters when going to be inactive */
958 if (cpu_dai
->active
== 1) {
960 cpu_dai
->channels
= 0;
961 cpu_dai
->sample_bits
= 0;
964 for (i
= 0; i
< rtd
->num_codecs
; i
++) {
965 codec_dai
= rtd
->codec_dais
[i
];
966 if (codec_dai
->active
== 1) {
968 codec_dai
->channels
= 0;
969 codec_dai
->sample_bits
= 0;
973 /* apply codec digital mute */
974 for (i
= 0; i
< rtd
->num_codecs
; i
++) {
975 if ((playback
&& rtd
->codec_dais
[i
]->playback_active
== 1) ||
976 (!playback
&& rtd
->codec_dais
[i
]->capture_active
== 1))
977 snd_soc_dai_digital_mute(rtd
->codec_dais
[i
], 1,
981 /* free any machine hw params */
982 if (rtd
->dai_link
->ops
&& rtd
->dai_link
->ops
->hw_free
)
983 rtd
->dai_link
->ops
->hw_free(substream
);
985 /* free any DMA resources */
986 if (platform
->driver
->ops
&& platform
->driver
->ops
->hw_free
)
987 platform
->driver
->ops
->hw_free(substream
);
989 /* now free hw params for the DAIs */
990 for (i
= 0; i
< rtd
->num_codecs
; i
++) {
991 codec_dai
= rtd
->codec_dais
[i
];
992 if (codec_dai
->driver
->ops
&& codec_dai
->driver
->ops
->hw_free
)
993 codec_dai
->driver
->ops
->hw_free(substream
, codec_dai
);
996 if (cpu_dai
->driver
->ops
&& cpu_dai
->driver
->ops
->hw_free
)
997 cpu_dai
->driver
->ops
->hw_free(substream
, cpu_dai
);
999 mutex_unlock(&rtd
->pcm_mutex
);
1003 static int soc_pcm_trigger(struct snd_pcm_substream
*substream
, int cmd
)
1005 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
1006 struct snd_soc_platform
*platform
= rtd
->platform
;
1007 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
1008 struct snd_soc_dai
*codec_dai
;
1011 for (i
= 0; i
< rtd
->num_codecs
; i
++) {
1012 codec_dai
= rtd
->codec_dais
[i
];
1013 if (codec_dai
->driver
->ops
&& codec_dai
->driver
->ops
->trigger
) {
1014 ret
= codec_dai
->driver
->ops
->trigger(substream
,
1021 if (platform
->driver
->ops
&& platform
->driver
->ops
->trigger
) {
1022 ret
= platform
->driver
->ops
->trigger(substream
, cmd
);
1027 if (cpu_dai
->driver
->ops
&& cpu_dai
->driver
->ops
->trigger
) {
1028 ret
= cpu_dai
->driver
->ops
->trigger(substream
, cmd
, cpu_dai
);
1033 if (rtd
->dai_link
->ops
&& rtd
->dai_link
->ops
->trigger
) {
1034 ret
= rtd
->dai_link
->ops
->trigger(substream
, cmd
);
1042 static int soc_pcm_bespoke_trigger(struct snd_pcm_substream
*substream
,
1045 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
1046 struct snd_soc_platform
*platform
= rtd
->platform
;
1047 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
1048 struct snd_soc_dai
*codec_dai
;
1051 for (i
= 0; i
< rtd
->num_codecs
; i
++) {
1052 codec_dai
= rtd
->codec_dais
[i
];
1053 if (codec_dai
->driver
->ops
&&
1054 codec_dai
->driver
->ops
->bespoke_trigger
) {
1055 ret
= codec_dai
->driver
->ops
->bespoke_trigger(substream
,
1062 if (platform
->driver
->bespoke_trigger
) {
1063 ret
= platform
->driver
->bespoke_trigger(substream
, cmd
);
1068 if (cpu_dai
->driver
->ops
&& cpu_dai
->driver
->ops
->bespoke_trigger
) {
1069 ret
= cpu_dai
->driver
->ops
->bespoke_trigger(substream
, cmd
, cpu_dai
);
1076 * soc level wrapper for pointer callback
1077 * If cpu_dai, codec_dai, platform driver has the delay callback, than
1078 * the runtime->delay will be updated accordingly.
1080 static snd_pcm_uframes_t
soc_pcm_pointer(struct snd_pcm_substream
*substream
)
1082 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
1083 struct snd_soc_platform
*platform
= rtd
->platform
;
1084 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
1085 struct snd_soc_dai
*codec_dai
;
1086 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1087 snd_pcm_uframes_t offset
= 0;
1088 snd_pcm_sframes_t delay
= 0;
1089 snd_pcm_sframes_t codec_delay
= 0;
1092 if (platform
->driver
->ops
&& platform
->driver
->ops
->pointer
)
1093 offset
= platform
->driver
->ops
->pointer(substream
);
1095 if (cpu_dai
->driver
->ops
&& cpu_dai
->driver
->ops
->delay
)
1096 delay
+= cpu_dai
->driver
->ops
->delay(substream
, cpu_dai
);
1098 for (i
= 0; i
< rtd
->num_codecs
; i
++) {
1099 codec_dai
= rtd
->codec_dais
[i
];
1100 if (codec_dai
->driver
->ops
&& codec_dai
->driver
->ops
->delay
)
1101 codec_delay
= max(codec_delay
,
1102 codec_dai
->driver
->ops
->delay(substream
,
1105 delay
+= codec_delay
;
1108 * None of the existing platform drivers implement delay(), so
1109 * for now the codec_dai of first multicodec entry is used
1111 if (platform
->driver
->delay
)
1112 delay
+= platform
->driver
->delay(substream
, rtd
->codec_dais
[0]);
1114 runtime
->delay
= delay
;
1119 /* connect a FE and BE */
1120 static int dpcm_be_connect(struct snd_soc_pcm_runtime
*fe
,
1121 struct snd_soc_pcm_runtime
*be
, int stream
)
1123 struct snd_soc_dpcm
*dpcm
;
1125 /* only add new dpcms */
1126 list_for_each_entry(dpcm
, &fe
->dpcm
[stream
].be_clients
, list_be
) {
1127 if (dpcm
->be
== be
&& dpcm
->fe
== fe
)
1131 dpcm
= kzalloc(sizeof(struct snd_soc_dpcm
), GFP_KERNEL
);
1137 be
->dpcm
[stream
].runtime
= fe
->dpcm
[stream
].runtime
;
1138 dpcm
->state
= SND_SOC_DPCM_LINK_STATE_NEW
;
1139 list_add(&dpcm
->list_be
, &fe
->dpcm
[stream
].be_clients
);
1140 list_add(&dpcm
->list_fe
, &be
->dpcm
[stream
].fe_clients
);
1142 dev_dbg(fe
->dev
, "connected new DPCM %s path %s %s %s\n",
1143 stream
? "capture" : "playback", fe
->dai_link
->name
,
1144 stream
? "<-" : "->", be
->dai_link
->name
);
1146 #ifdef CONFIG_DEBUG_FS
1147 if (fe
->debugfs_dpcm_root
)
1148 dpcm
->debugfs_state
= debugfs_create_u32(be
->dai_link
->name
, 0644,
1149 fe
->debugfs_dpcm_root
, &dpcm
->state
);
1154 /* reparent a BE onto another FE */
1155 static void dpcm_be_reparent(struct snd_soc_pcm_runtime
*fe
,
1156 struct snd_soc_pcm_runtime
*be
, int stream
)
1158 struct snd_soc_dpcm
*dpcm
;
1159 struct snd_pcm_substream
*fe_substream
, *be_substream
;
1161 /* reparent if BE is connected to other FEs */
1162 if (!be
->dpcm
[stream
].users
)
1165 be_substream
= snd_soc_dpcm_get_substream(be
, stream
);
1167 list_for_each_entry(dpcm
, &be
->dpcm
[stream
].fe_clients
, list_fe
) {
1171 dev_dbg(fe
->dev
, "reparent %s path %s %s %s\n",
1172 stream
? "capture" : "playback",
1173 dpcm
->fe
->dai_link
->name
,
1174 stream
? "<-" : "->", dpcm
->be
->dai_link
->name
);
1176 fe_substream
= snd_soc_dpcm_get_substream(dpcm
->fe
, stream
);
1177 be_substream
->runtime
= fe_substream
->runtime
;
1182 /* disconnect a BE and FE */
1183 void dpcm_be_disconnect(struct snd_soc_pcm_runtime
*fe
, int stream
)
1185 struct snd_soc_dpcm
*dpcm
, *d
;
1187 list_for_each_entry_safe(dpcm
, d
, &fe
->dpcm
[stream
].be_clients
, list_be
) {
1188 dev_dbg(fe
->dev
, "ASoC: BE %s disconnect check for %s\n",
1189 stream
? "capture" : "playback",
1190 dpcm
->be
->dai_link
->name
);
1192 if (dpcm
->state
!= SND_SOC_DPCM_LINK_STATE_FREE
)
1195 dev_dbg(fe
->dev
, "freed DSP %s path %s %s %s\n",
1196 stream
? "capture" : "playback", fe
->dai_link
->name
,
1197 stream
? "<-" : "->", dpcm
->be
->dai_link
->name
);
1199 /* BEs still alive need new FE */
1200 dpcm_be_reparent(fe
, dpcm
->be
, stream
);
1202 #ifdef CONFIG_DEBUG_FS
1203 debugfs_remove(dpcm
->debugfs_state
);
1205 list_del(&dpcm
->list_be
);
1206 list_del(&dpcm
->list_fe
);
1211 /* get BE for DAI widget and stream */
1212 static struct snd_soc_pcm_runtime
*dpcm_get_be(struct snd_soc_card
*card
,
1213 struct snd_soc_dapm_widget
*widget
, int stream
)
1215 struct snd_soc_pcm_runtime
*be
;
1218 if (stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
1219 list_for_each_entry(be
, &card
->rtd_list
, list
) {
1221 if (!be
->dai_link
->no_pcm
)
1224 if (be
->cpu_dai
->playback_widget
== widget
)
1227 for (i
= 0; i
< be
->num_codecs
; i
++) {
1228 struct snd_soc_dai
*dai
= be
->codec_dais
[i
];
1229 if (dai
->playback_widget
== widget
)
1235 list_for_each_entry(be
, &card
->rtd_list
, list
) {
1237 if (!be
->dai_link
->no_pcm
)
1240 if (be
->cpu_dai
->capture_widget
== widget
)
1243 for (i
= 0; i
< be
->num_codecs
; i
++) {
1244 struct snd_soc_dai
*dai
= be
->codec_dais
[i
];
1245 if (dai
->capture_widget
== widget
)
1251 dev_err(card
->dev
, "ASoC: can't get %s BE for %s\n",
1252 stream
? "capture" : "playback", widget
->name
);
1256 static inline struct snd_soc_dapm_widget
*
1257 dai_get_widget(struct snd_soc_dai
*dai
, int stream
)
1259 if (stream
== SNDRV_PCM_STREAM_PLAYBACK
)
1260 return dai
->playback_widget
;
1262 return dai
->capture_widget
;
1265 static int widget_in_list(struct snd_soc_dapm_widget_list
*list
,
1266 struct snd_soc_dapm_widget
*widget
)
1270 for (i
= 0; i
< list
->num_widgets
; i
++) {
1271 if (widget
== list
->widgets
[i
])
1278 int dpcm_path_get(struct snd_soc_pcm_runtime
*fe
,
1279 int stream
, struct snd_soc_dapm_widget_list
**list
)
1281 struct snd_soc_dai
*cpu_dai
= fe
->cpu_dai
;
1284 /* get number of valid DAI paths and their widgets */
1285 paths
= snd_soc_dapm_dai_get_connected_widgets(cpu_dai
, stream
, list
);
1287 dev_dbg(fe
->dev
, "ASoC: found %d audio %s paths\n", paths
,
1288 stream
? "capture" : "playback");
1293 static int dpcm_prune_paths(struct snd_soc_pcm_runtime
*fe
, int stream
,
1294 struct snd_soc_dapm_widget_list
**list_
)
1296 struct snd_soc_dpcm
*dpcm
;
1297 struct snd_soc_dapm_widget_list
*list
= *list_
;
1298 struct snd_soc_dapm_widget
*widget
;
1301 /* Destroy any old FE <--> BE connections */
1302 list_for_each_entry(dpcm
, &fe
->dpcm
[stream
].be_clients
, list_be
) {
1305 /* is there a valid CPU DAI widget for this BE */
1306 widget
= dai_get_widget(dpcm
->be
->cpu_dai
, stream
);
1308 /* prune the BE if it's no longer in our active list */
1309 if (widget
&& widget_in_list(list
, widget
))
1312 /* is there a valid CODEC DAI widget for this BE */
1313 for (i
= 0; i
< dpcm
->be
->num_codecs
; i
++) {
1314 struct snd_soc_dai
*dai
= dpcm
->be
->codec_dais
[i
];
1315 widget
= dai_get_widget(dai
, stream
);
1317 /* prune the BE if it's no longer in our active list */
1318 if (widget
&& widget_in_list(list
, widget
))
1322 dev_dbg(fe
->dev
, "ASoC: pruning %s BE %s for %s\n",
1323 stream
? "capture" : "playback",
1324 dpcm
->be
->dai_link
->name
, fe
->dai_link
->name
);
1325 dpcm
->state
= SND_SOC_DPCM_LINK_STATE_FREE
;
1326 dpcm
->be
->dpcm
[stream
].runtime_update
= SND_SOC_DPCM_UPDATE_BE
;
1330 dev_dbg(fe
->dev
, "ASoC: found %d old BE paths for pruning\n", prune
);
1334 static int dpcm_add_paths(struct snd_soc_pcm_runtime
*fe
, int stream
,
1335 struct snd_soc_dapm_widget_list
**list_
)
1337 struct snd_soc_card
*card
= fe
->card
;
1338 struct snd_soc_dapm_widget_list
*list
= *list_
;
1339 struct snd_soc_pcm_runtime
*be
;
1340 int i
, new = 0, err
;
1342 /* Create any new FE <--> BE connections */
1343 for (i
= 0; i
< list
->num_widgets
; i
++) {
1345 switch (list
->widgets
[i
]->id
) {
1346 case snd_soc_dapm_dai_in
:
1347 if (stream
!= SNDRV_PCM_STREAM_PLAYBACK
)
1350 case snd_soc_dapm_dai_out
:
1351 if (stream
!= SNDRV_PCM_STREAM_CAPTURE
)
1358 /* is there a valid BE rtd for this widget */
1359 be
= dpcm_get_be(card
, list
->widgets
[i
], stream
);
1361 dev_err(fe
->dev
, "ASoC: no BE found for %s\n",
1362 list
->widgets
[i
]->name
);
1366 /* make sure BE is a real BE */
1367 if (!be
->dai_link
->no_pcm
)
1370 /* don't connect if FE is not running */
1371 if (!fe
->dpcm
[stream
].runtime
&& !fe
->fe_compr
)
1374 /* newly connected FE and BE */
1375 err
= dpcm_be_connect(fe
, be
, stream
);
1377 dev_err(fe
->dev
, "ASoC: can't connect %s\n",
1378 list
->widgets
[i
]->name
);
1380 } else if (err
== 0) /* already connected */
1384 be
->dpcm
[stream
].runtime_update
= SND_SOC_DPCM_UPDATE_BE
;
1388 dev_dbg(fe
->dev
, "ASoC: found %d new BE paths\n", new);
1393 * Find the corresponding BE DAIs that source or sink audio to this
1396 int dpcm_process_paths(struct snd_soc_pcm_runtime
*fe
,
1397 int stream
, struct snd_soc_dapm_widget_list
**list
, int new)
1400 return dpcm_add_paths(fe
, stream
, list
);
1402 return dpcm_prune_paths(fe
, stream
, list
);
1405 void dpcm_clear_pending_state(struct snd_soc_pcm_runtime
*fe
, int stream
)
1407 struct snd_soc_dpcm
*dpcm
;
1409 list_for_each_entry(dpcm
, &fe
->dpcm
[stream
].be_clients
, list_be
)
1410 dpcm
->be
->dpcm
[stream
].runtime_update
=
1411 SND_SOC_DPCM_UPDATE_NO
;
1414 static void dpcm_be_dai_startup_unwind(struct snd_soc_pcm_runtime
*fe
,
1417 struct snd_soc_dpcm
*dpcm
;
1419 /* disable any enabled and non active backends */
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 if (be
->dpcm
[stream
].users
== 0)
1427 dev_err(be
->dev
, "ASoC: no users %s at close - state %d\n",
1428 stream
? "capture" : "playback",
1429 be
->dpcm
[stream
].state
);
1431 if (--be
->dpcm
[stream
].users
!= 0)
1434 if (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_OPEN
)
1437 soc_pcm_close(be_substream
);
1438 be_substream
->runtime
= NULL
;
1439 be
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_CLOSE
;
1443 int dpcm_be_dai_startup(struct snd_soc_pcm_runtime
*fe
, int stream
)
1445 struct snd_soc_dpcm
*dpcm
;
1448 /* only startup BE DAIs that are either sinks or sources to this FE DAI */
1449 list_for_each_entry(dpcm
, &fe
->dpcm
[stream
].be_clients
, list_be
) {
1451 struct snd_soc_pcm_runtime
*be
= dpcm
->be
;
1452 struct snd_pcm_substream
*be_substream
=
1453 snd_soc_dpcm_get_substream(be
, stream
);
1455 if (!be_substream
) {
1456 dev_err(be
->dev
, "ASoC: no backend %s stream\n",
1457 stream
? "capture" : "playback");
1461 /* is this op for this BE ? */
1462 if (!snd_soc_dpcm_be_can_update(fe
, be
, stream
))
1465 /* first time the dpcm is open ? */
1466 if (be
->dpcm
[stream
].users
== DPCM_MAX_BE_USERS
)
1467 dev_err(be
->dev
, "ASoC: too many users %s at open %d\n",
1468 stream
? "capture" : "playback",
1469 be
->dpcm
[stream
].state
);
1471 if (be
->dpcm
[stream
].users
++ != 0)
1474 if ((be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_NEW
) &&
1475 (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_CLOSE
))
1478 dev_dbg(be
->dev
, "ASoC: open %s BE %s\n",
1479 stream
? "capture" : "playback", be
->dai_link
->name
);
1481 be_substream
->runtime
= be
->dpcm
[stream
].runtime
;
1482 err
= soc_pcm_open(be_substream
);
1484 dev_err(be
->dev
, "ASoC: BE open failed %d\n", err
);
1485 be
->dpcm
[stream
].users
--;
1486 if (be
->dpcm
[stream
].users
< 0)
1487 dev_err(be
->dev
, "ASoC: no users %s at unwind %d\n",
1488 stream
? "capture" : "playback",
1489 be
->dpcm
[stream
].state
);
1491 be
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_CLOSE
;
1495 be
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_OPEN
;
1502 /* disable any enabled and non active backends */
1503 list_for_each_entry_continue_reverse(dpcm
, &fe
->dpcm
[stream
].be_clients
, list_be
) {
1504 struct snd_soc_pcm_runtime
*be
= dpcm
->be
;
1505 struct snd_pcm_substream
*be_substream
=
1506 snd_soc_dpcm_get_substream(be
, stream
);
1508 if (!snd_soc_dpcm_be_can_update(fe
, be
, stream
))
1511 if (be
->dpcm
[stream
].users
== 0)
1512 dev_err(be
->dev
, "ASoC: no users %s at close %d\n",
1513 stream
? "capture" : "playback",
1514 be
->dpcm
[stream
].state
);
1516 if (--be
->dpcm
[stream
].users
!= 0)
1519 if (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_OPEN
)
1522 soc_pcm_close(be_substream
);
1523 be_substream
->runtime
= NULL
;
1524 be
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_CLOSE
;
1530 static void dpcm_init_runtime_hw(struct snd_pcm_runtime
*runtime
,
1531 struct snd_soc_pcm_stream
*stream
,
1534 runtime
->hw
.rate_min
= stream
->rate_min
;
1535 runtime
->hw
.rate_max
= stream
->rate_max
;
1536 runtime
->hw
.channels_min
= stream
->channels_min
;
1537 runtime
->hw
.channels_max
= stream
->channels_max
;
1538 if (runtime
->hw
.formats
)
1539 runtime
->hw
.formats
&= formats
& stream
->formats
;
1541 runtime
->hw
.formats
= formats
& stream
->formats
;
1542 runtime
->hw
.rates
= stream
->rates
;
1545 static u64
dpcm_runtime_base_format(struct snd_pcm_substream
*substream
)
1547 struct snd_soc_pcm_runtime
*fe
= substream
->private_data
;
1548 struct snd_soc_dpcm
*dpcm
;
1549 u64 formats
= ULLONG_MAX
;
1550 int stream
= substream
->stream
;
1552 if (!fe
->dai_link
->dpcm_merged_format
)
1556 * It returns merged BE codec format
1557 * if FE want to use it (= dpcm_merged_format)
1560 list_for_each_entry(dpcm
, &fe
->dpcm
[stream
].be_clients
, list_be
) {
1561 struct snd_soc_pcm_runtime
*be
= dpcm
->be
;
1562 struct snd_soc_dai_driver
*codec_dai_drv
;
1563 struct snd_soc_pcm_stream
*codec_stream
;
1566 for (i
= 0; i
< be
->num_codecs
; i
++) {
1567 codec_dai_drv
= be
->codec_dais
[i
]->driver
;
1568 if (stream
== SNDRV_PCM_STREAM_PLAYBACK
)
1569 codec_stream
= &codec_dai_drv
->playback
;
1571 codec_stream
= &codec_dai_drv
->capture
;
1573 formats
&= codec_stream
->formats
;
1580 static void dpcm_set_fe_runtime(struct snd_pcm_substream
*substream
)
1582 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1583 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
1584 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
1585 struct snd_soc_dai_driver
*cpu_dai_drv
= cpu_dai
->driver
;
1586 u64 format
= dpcm_runtime_base_format(substream
);
1588 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
1589 dpcm_init_runtime_hw(runtime
, &cpu_dai_drv
->playback
, format
);
1591 dpcm_init_runtime_hw(runtime
, &cpu_dai_drv
->capture
, format
);
1594 static int dpcm_fe_dai_do_trigger(struct snd_pcm_substream
*substream
, int cmd
);
1596 /* Set FE's runtime_update state; the state is protected via PCM stream lock
1597 * for avoiding the race with trigger callback.
1598 * If the state is unset and a trigger is pending while the previous operation,
1599 * process the pending trigger action here.
1601 static void dpcm_set_fe_update_state(struct snd_soc_pcm_runtime
*fe
,
1602 int stream
, enum snd_soc_dpcm_update state
)
1604 struct snd_pcm_substream
*substream
=
1605 snd_soc_dpcm_get_substream(fe
, stream
);
1607 snd_pcm_stream_lock_irq(substream
);
1608 if (state
== SND_SOC_DPCM_UPDATE_NO
&& fe
->dpcm
[stream
].trigger_pending
) {
1609 dpcm_fe_dai_do_trigger(substream
,
1610 fe
->dpcm
[stream
].trigger_pending
- 1);
1611 fe
->dpcm
[stream
].trigger_pending
= 0;
1613 fe
->dpcm
[stream
].runtime_update
= state
;
1614 snd_pcm_stream_unlock_irq(substream
);
1617 static int dpcm_apply_symmetry(struct snd_pcm_substream
*fe_substream
,
1620 struct snd_soc_dpcm
*dpcm
;
1621 struct snd_soc_pcm_runtime
*fe
= fe_substream
->private_data
;
1622 struct snd_soc_dai
*fe_cpu_dai
= fe
->cpu_dai
;
1625 /* apply symmetry for FE */
1626 if (soc_pcm_has_symmetry(fe_substream
))
1627 fe_substream
->runtime
->hw
.info
|= SNDRV_PCM_INFO_JOINT_DUPLEX
;
1629 /* Symmetry only applies if we've got an active stream. */
1630 if (fe_cpu_dai
->active
) {
1631 err
= soc_pcm_apply_symmetry(fe_substream
, fe_cpu_dai
);
1636 /* apply symmetry for BE */
1637 list_for_each_entry(dpcm
, &fe
->dpcm
[stream
].be_clients
, list_be
) {
1638 struct snd_soc_pcm_runtime
*be
= dpcm
->be
;
1639 struct snd_pcm_substream
*be_substream
=
1640 snd_soc_dpcm_get_substream(be
, stream
);
1641 struct snd_soc_pcm_runtime
*rtd
= be_substream
->private_data
;
1644 if (soc_pcm_has_symmetry(be_substream
))
1645 be_substream
->runtime
->hw
.info
|= SNDRV_PCM_INFO_JOINT_DUPLEX
;
1647 /* Symmetry only applies if we've got an active stream. */
1648 if (rtd
->cpu_dai
->active
) {
1649 err
= soc_pcm_apply_symmetry(be_substream
, rtd
->cpu_dai
);
1654 for (i
= 0; i
< rtd
->num_codecs
; i
++) {
1655 if (rtd
->codec_dais
[i
]->active
) {
1656 err
= soc_pcm_apply_symmetry(be_substream
,
1657 rtd
->codec_dais
[i
]);
1667 static int dpcm_fe_dai_startup(struct snd_pcm_substream
*fe_substream
)
1669 struct snd_soc_pcm_runtime
*fe
= fe_substream
->private_data
;
1670 struct snd_pcm_runtime
*runtime
= fe_substream
->runtime
;
1671 int stream
= fe_substream
->stream
, ret
= 0;
1673 dpcm_set_fe_update_state(fe
, stream
, SND_SOC_DPCM_UPDATE_FE
);
1675 ret
= dpcm_be_dai_startup(fe
, fe_substream
->stream
);
1677 dev_err(fe
->dev
,"ASoC: failed to start some BEs %d\n", ret
);
1681 dev_dbg(fe
->dev
, "ASoC: open FE %s\n", fe
->dai_link
->name
);
1683 /* start the DAI frontend */
1684 ret
= soc_pcm_open(fe_substream
);
1686 dev_err(fe
->dev
,"ASoC: failed to start FE %d\n", ret
);
1690 fe
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_OPEN
;
1692 dpcm_set_fe_runtime(fe_substream
);
1693 snd_pcm_limit_hw_rates(runtime
);
1695 ret
= dpcm_apply_symmetry(fe_substream
, stream
);
1697 dev_err(fe
->dev
, "ASoC: failed to apply dpcm symmetry %d\n",
1702 dpcm_set_fe_update_state(fe
, stream
, SND_SOC_DPCM_UPDATE_NO
);
1706 dpcm_be_dai_startup_unwind(fe
, fe_substream
->stream
);
1708 dpcm_set_fe_update_state(fe
, stream
, SND_SOC_DPCM_UPDATE_NO
);
1712 int dpcm_be_dai_shutdown(struct snd_soc_pcm_runtime
*fe
, int stream
)
1714 struct snd_soc_dpcm
*dpcm
;
1716 /* only shutdown BEs that are either sinks or sources to this FE DAI */
1717 list_for_each_entry(dpcm
, &fe
->dpcm
[stream
].be_clients
, list_be
) {
1719 struct snd_soc_pcm_runtime
*be
= dpcm
->be
;
1720 struct snd_pcm_substream
*be_substream
=
1721 snd_soc_dpcm_get_substream(be
, stream
);
1723 /* is this op for this BE ? */
1724 if (!snd_soc_dpcm_be_can_update(fe
, be
, stream
))
1727 if (be
->dpcm
[stream
].users
== 0)
1728 dev_err(be
->dev
, "ASoC: no users %s at close - state %d\n",
1729 stream
? "capture" : "playback",
1730 be
->dpcm
[stream
].state
);
1732 if (--be
->dpcm
[stream
].users
!= 0)
1735 if ((be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_HW_FREE
) &&
1736 (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_OPEN
))
1739 dev_dbg(be
->dev
, "ASoC: close BE %s\n",
1740 dpcm
->fe
->dai_link
->name
);
1742 soc_pcm_close(be_substream
);
1743 be_substream
->runtime
= NULL
;
1745 be
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_CLOSE
;
1750 static int dpcm_fe_dai_shutdown(struct snd_pcm_substream
*substream
)
1752 struct snd_soc_pcm_runtime
*fe
= substream
->private_data
;
1753 int stream
= substream
->stream
;
1755 dpcm_set_fe_update_state(fe
, stream
, SND_SOC_DPCM_UPDATE_FE
);
1757 /* shutdown the BEs */
1758 dpcm_be_dai_shutdown(fe
, substream
->stream
);
1760 dev_dbg(fe
->dev
, "ASoC: close FE %s\n", fe
->dai_link
->name
);
1762 /* now shutdown the frontend */
1763 soc_pcm_close(substream
);
1765 /* run the stream event for each BE */
1766 dpcm_dapm_stream_event(fe
, stream
, SND_SOC_DAPM_STREAM_STOP
);
1768 fe
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_CLOSE
;
1769 dpcm_set_fe_update_state(fe
, stream
, SND_SOC_DPCM_UPDATE_NO
);
1773 int dpcm_be_dai_hw_free(struct snd_soc_pcm_runtime
*fe
, int stream
)
1775 struct snd_soc_dpcm
*dpcm
;
1777 /* only hw_params backends that are either sinks or sources
1778 * to this frontend DAI */
1779 list_for_each_entry(dpcm
, &fe
->dpcm
[stream
].be_clients
, list_be
) {
1781 struct snd_soc_pcm_runtime
*be
= dpcm
->be
;
1782 struct snd_pcm_substream
*be_substream
=
1783 snd_soc_dpcm_get_substream(be
, stream
);
1785 /* is this op for this BE ? */
1786 if (!snd_soc_dpcm_be_can_update(fe
, be
, stream
))
1789 /* only free hw when no longer used - check all FEs */
1790 if (!snd_soc_dpcm_can_be_free_stop(fe
, be
, stream
))
1793 /* do not free hw if this BE is used by other FE */
1794 if (be
->dpcm
[stream
].users
> 1)
1797 if ((be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_HW_PARAMS
) &&
1798 (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_PREPARE
) &&
1799 (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_HW_FREE
) &&
1800 (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_PAUSED
) &&
1801 (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_STOP
))
1804 dev_dbg(be
->dev
, "ASoC: hw_free BE %s\n",
1805 dpcm
->fe
->dai_link
->name
);
1807 soc_pcm_hw_free(be_substream
);
1809 be
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_HW_FREE
;
1815 static int dpcm_fe_dai_hw_free(struct snd_pcm_substream
*substream
)
1817 struct snd_soc_pcm_runtime
*fe
= substream
->private_data
;
1818 int err
, stream
= substream
->stream
;
1820 mutex_lock_nested(&fe
->card
->mutex
, SND_SOC_CARD_CLASS_RUNTIME
);
1821 dpcm_set_fe_update_state(fe
, stream
, SND_SOC_DPCM_UPDATE_FE
);
1823 dev_dbg(fe
->dev
, "ASoC: hw_free FE %s\n", fe
->dai_link
->name
);
1825 /* call hw_free on the frontend */
1826 err
= soc_pcm_hw_free(substream
);
1828 dev_err(fe
->dev
,"ASoC: hw_free FE %s failed\n",
1829 fe
->dai_link
->name
);
1831 /* only hw_params backends that are either sinks or sources
1832 * to this frontend DAI */
1833 err
= dpcm_be_dai_hw_free(fe
, stream
);
1835 fe
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_HW_FREE
;
1836 dpcm_set_fe_update_state(fe
, stream
, SND_SOC_DPCM_UPDATE_NO
);
1838 mutex_unlock(&fe
->card
->mutex
);
1842 int dpcm_be_dai_hw_params(struct snd_soc_pcm_runtime
*fe
, int stream
)
1844 struct snd_soc_dpcm
*dpcm
;
1847 list_for_each_entry(dpcm
, &fe
->dpcm
[stream
].be_clients
, list_be
) {
1849 struct snd_soc_pcm_runtime
*be
= dpcm
->be
;
1850 struct snd_pcm_substream
*be_substream
=
1851 snd_soc_dpcm_get_substream(be
, stream
);
1853 /* is this op for this BE ? */
1854 if (!snd_soc_dpcm_be_can_update(fe
, be
, stream
))
1857 /* only allow hw_params() if no connected FEs are running */
1858 if (!snd_soc_dpcm_can_be_params(fe
, be
, stream
))
1861 if ((be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_OPEN
) &&
1862 (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_HW_PARAMS
) &&
1863 (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_HW_FREE
))
1866 dev_dbg(be
->dev
, "ASoC: hw_params BE %s\n",
1867 dpcm
->fe
->dai_link
->name
);
1869 /* copy params for each dpcm */
1870 memcpy(&dpcm
->hw_params
, &fe
->dpcm
[stream
].hw_params
,
1871 sizeof(struct snd_pcm_hw_params
));
1873 /* perform any hw_params fixups */
1874 if (be
->dai_link
->be_hw_params_fixup
) {
1875 ret
= be
->dai_link
->be_hw_params_fixup(be
,
1879 "ASoC: hw_params BE fixup failed %d\n",
1885 ret
= soc_pcm_hw_params(be_substream
, &dpcm
->hw_params
);
1887 dev_err(dpcm
->be
->dev
,
1888 "ASoC: hw_params BE failed %d\n", ret
);
1892 be
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_HW_PARAMS
;
1897 /* disable any enabled and non active backends */
1898 list_for_each_entry_continue_reverse(dpcm
, &fe
->dpcm
[stream
].be_clients
, list_be
) {
1899 struct snd_soc_pcm_runtime
*be
= dpcm
->be
;
1900 struct snd_pcm_substream
*be_substream
=
1901 snd_soc_dpcm_get_substream(be
, stream
);
1903 if (!snd_soc_dpcm_be_can_update(fe
, be
, stream
))
1906 /* only allow hw_free() if no connected FEs are running */
1907 if (!snd_soc_dpcm_can_be_free_stop(fe
, be
, stream
))
1910 if ((be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_OPEN
) &&
1911 (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_HW_PARAMS
) &&
1912 (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_HW_FREE
) &&
1913 (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_STOP
))
1916 soc_pcm_hw_free(be_substream
);
1922 static int dpcm_fe_dai_hw_params(struct snd_pcm_substream
*substream
,
1923 struct snd_pcm_hw_params
*params
)
1925 struct snd_soc_pcm_runtime
*fe
= substream
->private_data
;
1926 int ret
, stream
= substream
->stream
;
1928 mutex_lock_nested(&fe
->card
->mutex
, SND_SOC_CARD_CLASS_RUNTIME
);
1929 dpcm_set_fe_update_state(fe
, stream
, SND_SOC_DPCM_UPDATE_FE
);
1931 memcpy(&fe
->dpcm
[substream
->stream
].hw_params
, params
,
1932 sizeof(struct snd_pcm_hw_params
));
1933 ret
= dpcm_be_dai_hw_params(fe
, substream
->stream
);
1935 dev_err(fe
->dev
,"ASoC: hw_params BE failed %d\n", ret
);
1939 dev_dbg(fe
->dev
, "ASoC: hw_params FE %s rate %d chan %x fmt %d\n",
1940 fe
->dai_link
->name
, params_rate(params
),
1941 params_channels(params
), params_format(params
));
1943 /* call hw_params on the frontend */
1944 ret
= soc_pcm_hw_params(substream
, params
);
1946 dev_err(fe
->dev
,"ASoC: hw_params FE failed %d\n", ret
);
1947 dpcm_be_dai_hw_free(fe
, stream
);
1949 fe
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_HW_PARAMS
;
1952 dpcm_set_fe_update_state(fe
, stream
, SND_SOC_DPCM_UPDATE_NO
);
1953 mutex_unlock(&fe
->card
->mutex
);
1957 static int dpcm_do_trigger(struct snd_soc_dpcm
*dpcm
,
1958 struct snd_pcm_substream
*substream
, int cmd
)
1962 dev_dbg(dpcm
->be
->dev
, "ASoC: trigger BE %s cmd %d\n",
1963 dpcm
->fe
->dai_link
->name
, cmd
);
1965 ret
= soc_pcm_trigger(substream
, cmd
);
1967 dev_err(dpcm
->be
->dev
,"ASoC: trigger BE failed %d\n", ret
);
1972 int dpcm_be_dai_trigger(struct snd_soc_pcm_runtime
*fe
, int stream
,
1975 struct snd_soc_dpcm
*dpcm
;
1978 list_for_each_entry(dpcm
, &fe
->dpcm
[stream
].be_clients
, list_be
) {
1980 struct snd_soc_pcm_runtime
*be
= dpcm
->be
;
1981 struct snd_pcm_substream
*be_substream
=
1982 snd_soc_dpcm_get_substream(be
, stream
);
1984 /* is this op for this BE ? */
1985 if (!snd_soc_dpcm_be_can_update(fe
, be
, stream
))
1989 case SNDRV_PCM_TRIGGER_START
:
1990 if ((be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_PREPARE
) &&
1991 (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_STOP
))
1994 ret
= dpcm_do_trigger(dpcm
, be_substream
, cmd
);
1998 be
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_START
;
2000 case SNDRV_PCM_TRIGGER_RESUME
:
2001 if ((be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_SUSPEND
))
2004 ret
= dpcm_do_trigger(dpcm
, be_substream
, cmd
);
2008 be
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_START
;
2010 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
2011 if ((be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_PAUSED
))
2014 ret
= dpcm_do_trigger(dpcm
, be_substream
, cmd
);
2018 be
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_START
;
2020 case SNDRV_PCM_TRIGGER_STOP
:
2021 if (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_START
)
2024 if (!snd_soc_dpcm_can_be_free_stop(fe
, be
, stream
))
2027 ret
= dpcm_do_trigger(dpcm
, be_substream
, cmd
);
2031 be
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_STOP
;
2033 case SNDRV_PCM_TRIGGER_SUSPEND
:
2034 if (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_START
)
2037 if (!snd_soc_dpcm_can_be_free_stop(fe
, be
, stream
))
2040 ret
= dpcm_do_trigger(dpcm
, be_substream
, cmd
);
2044 be
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_SUSPEND
;
2046 case SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
2047 if (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_START
)
2050 if (!snd_soc_dpcm_can_be_free_stop(fe
, be
, stream
))
2053 ret
= dpcm_do_trigger(dpcm
, be_substream
, cmd
);
2057 be
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_PAUSED
;
2064 EXPORT_SYMBOL_GPL(dpcm_be_dai_trigger
);
2066 static int dpcm_fe_dai_do_trigger(struct snd_pcm_substream
*substream
, int cmd
)
2068 struct snd_soc_pcm_runtime
*fe
= substream
->private_data
;
2069 int stream
= substream
->stream
, ret
;
2070 enum snd_soc_dpcm_trigger trigger
= fe
->dai_link
->trigger
[stream
];
2072 fe
->dpcm
[stream
].runtime_update
= SND_SOC_DPCM_UPDATE_FE
;
2075 case SND_SOC_DPCM_TRIGGER_PRE
:
2076 /* call trigger on the frontend before the backend. */
2078 dev_dbg(fe
->dev
, "ASoC: pre trigger FE %s cmd %d\n",
2079 fe
->dai_link
->name
, cmd
);
2081 ret
= soc_pcm_trigger(substream
, cmd
);
2083 dev_err(fe
->dev
,"ASoC: trigger FE failed %d\n", ret
);
2087 ret
= dpcm_be_dai_trigger(fe
, substream
->stream
, cmd
);
2089 case SND_SOC_DPCM_TRIGGER_POST
:
2090 /* call trigger on the frontend after the backend. */
2092 ret
= dpcm_be_dai_trigger(fe
, substream
->stream
, cmd
);
2094 dev_err(fe
->dev
,"ASoC: trigger FE failed %d\n", ret
);
2098 dev_dbg(fe
->dev
, "ASoC: post trigger FE %s cmd %d\n",
2099 fe
->dai_link
->name
, cmd
);
2101 ret
= soc_pcm_trigger(substream
, cmd
);
2103 case SND_SOC_DPCM_TRIGGER_BESPOKE
:
2104 /* bespoke trigger() - handles both FE and BEs */
2106 dev_dbg(fe
->dev
, "ASoC: bespoke trigger FE %s cmd %d\n",
2107 fe
->dai_link
->name
, cmd
);
2109 ret
= soc_pcm_bespoke_trigger(substream
, cmd
);
2111 dev_err(fe
->dev
,"ASoC: trigger FE failed %d\n", ret
);
2116 dev_err(fe
->dev
, "ASoC: invalid trigger cmd %d for %s\n", cmd
,
2117 fe
->dai_link
->name
);
2123 case SNDRV_PCM_TRIGGER_START
:
2124 case SNDRV_PCM_TRIGGER_RESUME
:
2125 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
2126 fe
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_START
;
2128 case SNDRV_PCM_TRIGGER_STOP
:
2129 case SNDRV_PCM_TRIGGER_SUSPEND
:
2130 case SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
2131 fe
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_STOP
;
2136 fe
->dpcm
[stream
].runtime_update
= SND_SOC_DPCM_UPDATE_NO
;
2140 static int dpcm_fe_dai_trigger(struct snd_pcm_substream
*substream
, int cmd
)
2142 struct snd_soc_pcm_runtime
*fe
= substream
->private_data
;
2143 int stream
= substream
->stream
;
2145 /* if FE's runtime_update is already set, we're in race;
2146 * process this trigger later at exit
2148 if (fe
->dpcm
[stream
].runtime_update
!= SND_SOC_DPCM_UPDATE_NO
) {
2149 fe
->dpcm
[stream
].trigger_pending
= cmd
+ 1;
2150 return 0; /* delayed, assuming it's successful */
2153 /* we're alone, let's trigger */
2154 return dpcm_fe_dai_do_trigger(substream
, cmd
);
2157 int dpcm_be_dai_prepare(struct snd_soc_pcm_runtime
*fe
, int stream
)
2159 struct snd_soc_dpcm
*dpcm
;
2162 list_for_each_entry(dpcm
, &fe
->dpcm
[stream
].be_clients
, list_be
) {
2164 struct snd_soc_pcm_runtime
*be
= dpcm
->be
;
2165 struct snd_pcm_substream
*be_substream
=
2166 snd_soc_dpcm_get_substream(be
, stream
);
2168 /* is this op for this BE ? */
2169 if (!snd_soc_dpcm_be_can_update(fe
, be
, stream
))
2172 if ((be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_HW_PARAMS
) &&
2173 (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_STOP
) &&
2174 (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_SUSPEND
))
2177 dev_dbg(be
->dev
, "ASoC: prepare BE %s\n",
2178 dpcm
->fe
->dai_link
->name
);
2180 ret
= soc_pcm_prepare(be_substream
);
2182 dev_err(be
->dev
, "ASoC: backend prepare failed %d\n",
2187 be
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_PREPARE
;
2192 static int dpcm_fe_dai_prepare(struct snd_pcm_substream
*substream
)
2194 struct snd_soc_pcm_runtime
*fe
= substream
->private_data
;
2195 int stream
= substream
->stream
, ret
= 0;
2197 mutex_lock_nested(&fe
->card
->mutex
, SND_SOC_CARD_CLASS_RUNTIME
);
2199 dev_dbg(fe
->dev
, "ASoC: prepare FE %s\n", fe
->dai_link
->name
);
2201 dpcm_set_fe_update_state(fe
, stream
, SND_SOC_DPCM_UPDATE_FE
);
2203 /* there is no point preparing this FE if there are no BEs */
2204 if (list_empty(&fe
->dpcm
[stream
].be_clients
)) {
2205 dev_err(fe
->dev
, "ASoC: no backend DAIs enabled for %s\n",
2206 fe
->dai_link
->name
);
2211 ret
= dpcm_be_dai_prepare(fe
, substream
->stream
);
2215 /* call prepare on the frontend */
2216 ret
= soc_pcm_prepare(substream
);
2218 dev_err(fe
->dev
,"ASoC: prepare FE %s failed\n",
2219 fe
->dai_link
->name
);
2223 /* run the stream event for each BE */
2224 dpcm_dapm_stream_event(fe
, stream
, SND_SOC_DAPM_STREAM_START
);
2225 fe
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_PREPARE
;
2228 dpcm_set_fe_update_state(fe
, stream
, SND_SOC_DPCM_UPDATE_NO
);
2229 mutex_unlock(&fe
->card
->mutex
);
2234 static int soc_pcm_ioctl(struct snd_pcm_substream
*substream
,
2235 unsigned int cmd
, void *arg
)
2237 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
2238 struct snd_soc_platform
*platform
= rtd
->platform
;
2240 if (platform
->driver
->ops
&& platform
->driver
->ops
->ioctl
)
2241 return platform
->driver
->ops
->ioctl(substream
, cmd
, arg
);
2242 return snd_pcm_lib_ioctl(substream
, cmd
, arg
);
2245 static int dpcm_run_update_shutdown(struct snd_soc_pcm_runtime
*fe
, int stream
)
2247 struct snd_pcm_substream
*substream
=
2248 snd_soc_dpcm_get_substream(fe
, stream
);
2249 enum snd_soc_dpcm_trigger trigger
= fe
->dai_link
->trigger
[stream
];
2252 dev_dbg(fe
->dev
, "ASoC: runtime %s close on FE %s\n",
2253 stream
? "capture" : "playback", fe
->dai_link
->name
);
2255 if (trigger
== SND_SOC_DPCM_TRIGGER_BESPOKE
) {
2256 /* call bespoke trigger - FE takes care of all BE triggers */
2257 dev_dbg(fe
->dev
, "ASoC: bespoke trigger FE %s cmd stop\n",
2258 fe
->dai_link
->name
);
2260 err
= soc_pcm_bespoke_trigger(substream
, SNDRV_PCM_TRIGGER_STOP
);
2262 dev_err(fe
->dev
,"ASoC: trigger FE failed %d\n", err
);
2264 dev_dbg(fe
->dev
, "ASoC: trigger FE %s cmd stop\n",
2265 fe
->dai_link
->name
);
2267 err
= dpcm_be_dai_trigger(fe
, stream
, SNDRV_PCM_TRIGGER_STOP
);
2269 dev_err(fe
->dev
,"ASoC: trigger FE failed %d\n", err
);
2272 err
= dpcm_be_dai_hw_free(fe
, stream
);
2274 dev_err(fe
->dev
,"ASoC: hw_free FE failed %d\n", err
);
2276 err
= dpcm_be_dai_shutdown(fe
, stream
);
2278 dev_err(fe
->dev
,"ASoC: shutdown FE failed %d\n", err
);
2280 /* run the stream event for each BE */
2281 dpcm_dapm_stream_event(fe
, stream
, SND_SOC_DAPM_STREAM_NOP
);
2286 static int dpcm_run_update_startup(struct snd_soc_pcm_runtime
*fe
, int stream
)
2288 struct snd_pcm_substream
*substream
=
2289 snd_soc_dpcm_get_substream(fe
, stream
);
2290 struct snd_soc_dpcm
*dpcm
;
2291 enum snd_soc_dpcm_trigger trigger
= fe
->dai_link
->trigger
[stream
];
2294 dev_dbg(fe
->dev
, "ASoC: runtime %s open on FE %s\n",
2295 stream
? "capture" : "playback", fe
->dai_link
->name
);
2297 /* Only start the BE if the FE is ready */
2298 if (fe
->dpcm
[stream
].state
== SND_SOC_DPCM_STATE_HW_FREE
||
2299 fe
->dpcm
[stream
].state
== SND_SOC_DPCM_STATE_CLOSE
)
2302 /* startup must always be called for new BEs */
2303 ret
= dpcm_be_dai_startup(fe
, stream
);
2307 /* keep going if FE state is > open */
2308 if (fe
->dpcm
[stream
].state
== SND_SOC_DPCM_STATE_OPEN
)
2311 ret
= dpcm_be_dai_hw_params(fe
, stream
);
2315 /* keep going if FE state is > hw_params */
2316 if (fe
->dpcm
[stream
].state
== SND_SOC_DPCM_STATE_HW_PARAMS
)
2320 ret
= dpcm_be_dai_prepare(fe
, stream
);
2324 /* run the stream event for each BE */
2325 dpcm_dapm_stream_event(fe
, stream
, SND_SOC_DAPM_STREAM_NOP
);
2327 /* keep going if FE state is > prepare */
2328 if (fe
->dpcm
[stream
].state
== SND_SOC_DPCM_STATE_PREPARE
||
2329 fe
->dpcm
[stream
].state
== SND_SOC_DPCM_STATE_STOP
)
2332 if (trigger
== SND_SOC_DPCM_TRIGGER_BESPOKE
) {
2333 /* call trigger on the frontend - FE takes care of all BE triggers */
2334 dev_dbg(fe
->dev
, "ASoC: bespoke trigger FE %s cmd start\n",
2335 fe
->dai_link
->name
);
2337 ret
= soc_pcm_bespoke_trigger(substream
, SNDRV_PCM_TRIGGER_START
);
2339 dev_err(fe
->dev
,"ASoC: bespoke trigger FE failed %d\n", ret
);
2343 dev_dbg(fe
->dev
, "ASoC: trigger FE %s cmd start\n",
2344 fe
->dai_link
->name
);
2346 ret
= dpcm_be_dai_trigger(fe
, stream
,
2347 SNDRV_PCM_TRIGGER_START
);
2349 dev_err(fe
->dev
,"ASoC: trigger FE failed %d\n", ret
);
2357 dpcm_be_dai_hw_free(fe
, stream
);
2359 dpcm_be_dai_shutdown(fe
, stream
);
2361 /* disconnect any non started BEs */
2362 list_for_each_entry(dpcm
, &fe
->dpcm
[stream
].be_clients
, list_be
) {
2363 struct snd_soc_pcm_runtime
*be
= dpcm
->be
;
2364 if (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_START
)
2365 dpcm
->state
= SND_SOC_DPCM_LINK_STATE_FREE
;
2371 static int dpcm_run_new_update(struct snd_soc_pcm_runtime
*fe
, int stream
)
2375 dpcm_set_fe_update_state(fe
, stream
, SND_SOC_DPCM_UPDATE_BE
);
2376 ret
= dpcm_run_update_startup(fe
, stream
);
2378 dev_err(fe
->dev
, "ASoC: failed to startup some BEs\n");
2379 dpcm_set_fe_update_state(fe
, stream
, SND_SOC_DPCM_UPDATE_NO
);
2384 static int dpcm_run_old_update(struct snd_soc_pcm_runtime
*fe
, int stream
)
2388 dpcm_set_fe_update_state(fe
, stream
, SND_SOC_DPCM_UPDATE_BE
);
2389 ret
= dpcm_run_update_shutdown(fe
, stream
);
2391 dev_err(fe
->dev
, "ASoC: failed to shutdown some BEs\n");
2392 dpcm_set_fe_update_state(fe
, stream
, SND_SOC_DPCM_UPDATE_NO
);
2397 /* Called by DAPM mixer/mux changes to update audio routing between PCMs and
2400 int soc_dpcm_runtime_update(struct snd_soc_card
*card
)
2402 struct snd_soc_pcm_runtime
*fe
;
2403 int old
, new, paths
;
2405 mutex_lock_nested(&card
->mutex
, SND_SOC_CARD_CLASS_RUNTIME
);
2406 list_for_each_entry(fe
, &card
->rtd_list
, list
) {
2407 struct snd_soc_dapm_widget_list
*list
;
2409 /* make sure link is FE */
2410 if (!fe
->dai_link
->dynamic
)
2413 /* only check active links */
2414 if (!fe
->cpu_dai
->active
)
2417 /* DAPM sync will call this to update DSP paths */
2418 dev_dbg(fe
->dev
, "ASoC: DPCM runtime update for FE %s\n",
2419 fe
->dai_link
->name
);
2421 /* skip if FE doesn't have playback capability */
2422 if (!fe
->cpu_dai
->driver
->playback
.channels_min
2423 || !fe
->codec_dai
->driver
->playback
.channels_min
)
2426 /* skip if FE isn't currently playing */
2427 if (!fe
->cpu_dai
->playback_active
2428 || !fe
->codec_dai
->playback_active
)
2431 paths
= dpcm_path_get(fe
, SNDRV_PCM_STREAM_PLAYBACK
, &list
);
2433 dev_warn(fe
->dev
, "ASoC: %s no valid %s path\n",
2434 fe
->dai_link
->name
, "playback");
2435 mutex_unlock(&card
->mutex
);
2439 /* update any new playback paths */
2440 new = dpcm_process_paths(fe
, SNDRV_PCM_STREAM_PLAYBACK
, &list
, 1);
2442 dpcm_run_new_update(fe
, SNDRV_PCM_STREAM_PLAYBACK
);
2443 dpcm_clear_pending_state(fe
, SNDRV_PCM_STREAM_PLAYBACK
);
2444 dpcm_be_disconnect(fe
, SNDRV_PCM_STREAM_PLAYBACK
);
2447 /* update any old playback paths */
2448 old
= dpcm_process_paths(fe
, SNDRV_PCM_STREAM_PLAYBACK
, &list
, 0);
2450 dpcm_run_old_update(fe
, SNDRV_PCM_STREAM_PLAYBACK
);
2451 dpcm_clear_pending_state(fe
, SNDRV_PCM_STREAM_PLAYBACK
);
2452 dpcm_be_disconnect(fe
, SNDRV_PCM_STREAM_PLAYBACK
);
2455 dpcm_path_put(&list
);
2457 /* skip if FE doesn't have capture capability */
2458 if (!fe
->cpu_dai
->driver
->capture
.channels_min
2459 || !fe
->codec_dai
->driver
->capture
.channels_min
)
2462 /* skip if FE isn't currently capturing */
2463 if (!fe
->cpu_dai
->capture_active
2464 || !fe
->codec_dai
->capture_active
)
2467 paths
= dpcm_path_get(fe
, SNDRV_PCM_STREAM_CAPTURE
, &list
);
2469 dev_warn(fe
->dev
, "ASoC: %s no valid %s path\n",
2470 fe
->dai_link
->name
, "capture");
2471 mutex_unlock(&card
->mutex
);
2475 /* update any new capture paths */
2476 new = dpcm_process_paths(fe
, SNDRV_PCM_STREAM_CAPTURE
, &list
, 1);
2478 dpcm_run_new_update(fe
, SNDRV_PCM_STREAM_CAPTURE
);
2479 dpcm_clear_pending_state(fe
, SNDRV_PCM_STREAM_CAPTURE
);
2480 dpcm_be_disconnect(fe
, SNDRV_PCM_STREAM_CAPTURE
);
2483 /* update any old capture paths */
2484 old
= dpcm_process_paths(fe
, SNDRV_PCM_STREAM_CAPTURE
, &list
, 0);
2486 dpcm_run_old_update(fe
, SNDRV_PCM_STREAM_CAPTURE
);
2487 dpcm_clear_pending_state(fe
, SNDRV_PCM_STREAM_CAPTURE
);
2488 dpcm_be_disconnect(fe
, SNDRV_PCM_STREAM_CAPTURE
);
2491 dpcm_path_put(&list
);
2494 mutex_unlock(&card
->mutex
);
2497 int soc_dpcm_be_digital_mute(struct snd_soc_pcm_runtime
*fe
, int mute
)
2499 struct snd_soc_dpcm
*dpcm
;
2500 struct list_head
*clients
=
2501 &fe
->dpcm
[SNDRV_PCM_STREAM_PLAYBACK
].be_clients
;
2503 list_for_each_entry(dpcm
, clients
, list_be
) {
2505 struct snd_soc_pcm_runtime
*be
= dpcm
->be
;
2508 if (be
->dai_link
->ignore_suspend
)
2511 for (i
= 0; i
< be
->num_codecs
; i
++) {
2512 struct snd_soc_dai
*dai
= be
->codec_dais
[i
];
2513 struct snd_soc_dai_driver
*drv
= dai
->driver
;
2515 dev_dbg(be
->dev
, "ASoC: BE digital mute %s\n",
2516 be
->dai_link
->name
);
2518 if (drv
->ops
&& drv
->ops
->digital_mute
&&
2519 dai
->playback_active
)
2520 drv
->ops
->digital_mute(dai
, mute
);
2527 static int dpcm_fe_dai_open(struct snd_pcm_substream
*fe_substream
)
2529 struct snd_soc_pcm_runtime
*fe
= fe_substream
->private_data
;
2530 struct snd_soc_dpcm
*dpcm
;
2531 struct snd_soc_dapm_widget_list
*list
;
2533 int stream
= fe_substream
->stream
;
2535 mutex_lock_nested(&fe
->card
->mutex
, SND_SOC_CARD_CLASS_RUNTIME
);
2536 fe
->dpcm
[stream
].runtime
= fe_substream
->runtime
;
2538 ret
= dpcm_path_get(fe
, stream
, &list
);
2540 mutex_unlock(&fe
->card
->mutex
);
2542 } else if (ret
== 0) {
2543 dev_dbg(fe
->dev
, "ASoC: %s no valid %s route\n",
2544 fe
->dai_link
->name
, stream
? "capture" : "playback");
2547 /* calculate valid and active FE <-> BE dpcms */
2548 dpcm_process_paths(fe
, stream
, &list
, 1);
2550 ret
= dpcm_fe_dai_startup(fe_substream
);
2552 /* clean up all links */
2553 list_for_each_entry(dpcm
, &fe
->dpcm
[stream
].be_clients
, list_be
)
2554 dpcm
->state
= SND_SOC_DPCM_LINK_STATE_FREE
;
2556 dpcm_be_disconnect(fe
, stream
);
2557 fe
->dpcm
[stream
].runtime
= NULL
;
2560 dpcm_clear_pending_state(fe
, stream
);
2561 dpcm_path_put(&list
);
2562 mutex_unlock(&fe
->card
->mutex
);
2566 static int dpcm_fe_dai_close(struct snd_pcm_substream
*fe_substream
)
2568 struct snd_soc_pcm_runtime
*fe
= fe_substream
->private_data
;
2569 struct snd_soc_dpcm
*dpcm
;
2570 int stream
= fe_substream
->stream
, ret
;
2572 mutex_lock_nested(&fe
->card
->mutex
, SND_SOC_CARD_CLASS_RUNTIME
);
2573 ret
= dpcm_fe_dai_shutdown(fe_substream
);
2575 /* mark FE's links ready to prune */
2576 list_for_each_entry(dpcm
, &fe
->dpcm
[stream
].be_clients
, list_be
)
2577 dpcm
->state
= SND_SOC_DPCM_LINK_STATE_FREE
;
2579 dpcm_be_disconnect(fe
, stream
);
2581 fe
->dpcm
[stream
].runtime
= NULL
;
2582 mutex_unlock(&fe
->card
->mutex
);
2586 /* create a new pcm */
2587 int soc_new_pcm(struct snd_soc_pcm_runtime
*rtd
, int num
)
2589 struct snd_soc_platform
*platform
= rtd
->platform
;
2590 struct snd_soc_dai
*codec_dai
;
2591 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
2592 struct snd_pcm
*pcm
;
2594 int ret
= 0, playback
= 0, capture
= 0;
2597 if (rtd
->dai_link
->dynamic
|| rtd
->dai_link
->no_pcm
) {
2598 playback
= rtd
->dai_link
->dpcm_playback
;
2599 capture
= rtd
->dai_link
->dpcm_capture
;
2601 for (i
= 0; i
< rtd
->num_codecs
; i
++) {
2602 codec_dai
= rtd
->codec_dais
[i
];
2603 if (codec_dai
->driver
->playback
.channels_min
)
2605 if (codec_dai
->driver
->capture
.channels_min
)
2609 capture
= capture
&& cpu_dai
->driver
->capture
.channels_min
;
2610 playback
= playback
&& cpu_dai
->driver
->playback
.channels_min
;
2613 if (rtd
->dai_link
->playback_only
) {
2618 if (rtd
->dai_link
->capture_only
) {
2623 /* create the PCM */
2624 if (rtd
->dai_link
->no_pcm
) {
2625 snprintf(new_name
, sizeof(new_name
), "(%s)",
2626 rtd
->dai_link
->stream_name
);
2628 ret
= snd_pcm_new_internal(rtd
->card
->snd_card
, new_name
, num
,
2629 playback
, capture
, &pcm
);
2631 if (rtd
->dai_link
->dynamic
)
2632 snprintf(new_name
, sizeof(new_name
), "%s (*)",
2633 rtd
->dai_link
->stream_name
);
2635 snprintf(new_name
, sizeof(new_name
), "%s %s-%d",
2636 rtd
->dai_link
->stream_name
,
2637 (rtd
->num_codecs
> 1) ?
2638 "multicodec" : rtd
->codec_dai
->name
, num
);
2640 ret
= snd_pcm_new(rtd
->card
->snd_card
, new_name
, num
, playback
,
2644 dev_err(rtd
->card
->dev
, "ASoC: can't create pcm for %s\n",
2645 rtd
->dai_link
->name
);
2648 dev_dbg(rtd
->card
->dev
, "ASoC: registered pcm #%d %s\n",num
, new_name
);
2650 /* DAPM dai link stream work */
2651 INIT_DELAYED_WORK(&rtd
->delayed_work
, close_delayed_work
);
2653 pcm
->nonatomic
= rtd
->dai_link
->nonatomic
;
2655 pcm
->private_data
= rtd
;
2657 if (rtd
->dai_link
->no_pcm
) {
2659 pcm
->streams
[SNDRV_PCM_STREAM_PLAYBACK
].substream
->private_data
= rtd
;
2661 pcm
->streams
[SNDRV_PCM_STREAM_CAPTURE
].substream
->private_data
= rtd
;
2665 /* ASoC PCM operations */
2666 if (rtd
->dai_link
->dynamic
) {
2667 rtd
->ops
.open
= dpcm_fe_dai_open
;
2668 rtd
->ops
.hw_params
= dpcm_fe_dai_hw_params
;
2669 rtd
->ops
.prepare
= dpcm_fe_dai_prepare
;
2670 rtd
->ops
.trigger
= dpcm_fe_dai_trigger
;
2671 rtd
->ops
.hw_free
= dpcm_fe_dai_hw_free
;
2672 rtd
->ops
.close
= dpcm_fe_dai_close
;
2673 rtd
->ops
.pointer
= soc_pcm_pointer
;
2674 rtd
->ops
.ioctl
= soc_pcm_ioctl
;
2676 rtd
->ops
.open
= soc_pcm_open
;
2677 rtd
->ops
.hw_params
= soc_pcm_hw_params
;
2678 rtd
->ops
.prepare
= soc_pcm_prepare
;
2679 rtd
->ops
.trigger
= soc_pcm_trigger
;
2680 rtd
->ops
.hw_free
= soc_pcm_hw_free
;
2681 rtd
->ops
.close
= soc_pcm_close
;
2682 rtd
->ops
.pointer
= soc_pcm_pointer
;
2683 rtd
->ops
.ioctl
= soc_pcm_ioctl
;
2686 if (platform
->driver
->ops
) {
2687 rtd
->ops
.ack
= platform
->driver
->ops
->ack
;
2688 rtd
->ops
.copy
= platform
->driver
->ops
->copy
;
2689 rtd
->ops
.silence
= platform
->driver
->ops
->silence
;
2690 rtd
->ops
.page
= platform
->driver
->ops
->page
;
2691 rtd
->ops
.mmap
= platform
->driver
->ops
->mmap
;
2695 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_PLAYBACK
, &rtd
->ops
);
2698 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_CAPTURE
, &rtd
->ops
);
2700 if (platform
->driver
->pcm_new
) {
2701 ret
= platform
->driver
->pcm_new(rtd
);
2703 dev_err(platform
->dev
,
2704 "ASoC: pcm constructor failed: %d\n",
2710 pcm
->private_free
= platform
->driver
->pcm_free
;
2712 dev_info(rtd
->card
->dev
, "%s <-> %s mapping ok\n",
2713 (rtd
->num_codecs
> 1) ? "multicodec" : rtd
->codec_dai
->name
,
2718 /* is the current PCM operation for this FE ? */
2719 int snd_soc_dpcm_fe_can_update(struct snd_soc_pcm_runtime
*fe
, int stream
)
2721 if (fe
->dpcm
[stream
].runtime_update
== SND_SOC_DPCM_UPDATE_FE
)
2725 EXPORT_SYMBOL_GPL(snd_soc_dpcm_fe_can_update
);
2727 /* is the current PCM operation for this BE ? */
2728 int snd_soc_dpcm_be_can_update(struct snd_soc_pcm_runtime
*fe
,
2729 struct snd_soc_pcm_runtime
*be
, int stream
)
2731 if ((fe
->dpcm
[stream
].runtime_update
== SND_SOC_DPCM_UPDATE_FE
) ||
2732 ((fe
->dpcm
[stream
].runtime_update
== SND_SOC_DPCM_UPDATE_BE
) &&
2733 be
->dpcm
[stream
].runtime_update
))
2737 EXPORT_SYMBOL_GPL(snd_soc_dpcm_be_can_update
);
2739 /* get the substream for this BE */
2740 struct snd_pcm_substream
*
2741 snd_soc_dpcm_get_substream(struct snd_soc_pcm_runtime
*be
, int stream
)
2743 return be
->pcm
->streams
[stream
].substream
;
2745 EXPORT_SYMBOL_GPL(snd_soc_dpcm_get_substream
);
2747 /* get the BE runtime state */
2748 enum snd_soc_dpcm_state
2749 snd_soc_dpcm_be_get_state(struct snd_soc_pcm_runtime
*be
, int stream
)
2751 return be
->dpcm
[stream
].state
;
2753 EXPORT_SYMBOL_GPL(snd_soc_dpcm_be_get_state
);
2755 /* set the BE runtime state */
2756 void snd_soc_dpcm_be_set_state(struct snd_soc_pcm_runtime
*be
,
2757 int stream
, enum snd_soc_dpcm_state state
)
2759 be
->dpcm
[stream
].state
= state
;
2761 EXPORT_SYMBOL_GPL(snd_soc_dpcm_be_set_state
);
2764 * We can only hw_free, stop, pause or suspend a BE DAI if any of it's FE
2765 * are not running, paused or suspended for the specified stream direction.
2767 int snd_soc_dpcm_can_be_free_stop(struct snd_soc_pcm_runtime
*fe
,
2768 struct snd_soc_pcm_runtime
*be
, int stream
)
2770 struct snd_soc_dpcm
*dpcm
;
2773 list_for_each_entry(dpcm
, &be
->dpcm
[stream
].fe_clients
, list_fe
) {
2778 state
= dpcm
->fe
->dpcm
[stream
].state
;
2779 if (state
== SND_SOC_DPCM_STATE_START
||
2780 state
== SND_SOC_DPCM_STATE_PAUSED
||
2781 state
== SND_SOC_DPCM_STATE_SUSPEND
)
2785 /* it's safe to free/stop this BE DAI */
2788 EXPORT_SYMBOL_GPL(snd_soc_dpcm_can_be_free_stop
);
2791 * We can only change hw params a BE DAI if any of it's FE are not prepared,
2792 * running, paused or suspended for the specified stream direction.
2794 int snd_soc_dpcm_can_be_params(struct snd_soc_pcm_runtime
*fe
,
2795 struct snd_soc_pcm_runtime
*be
, int stream
)
2797 struct snd_soc_dpcm
*dpcm
;
2800 list_for_each_entry(dpcm
, &be
->dpcm
[stream
].fe_clients
, list_fe
) {
2805 state
= dpcm
->fe
->dpcm
[stream
].state
;
2806 if (state
== SND_SOC_DPCM_STATE_START
||
2807 state
== SND_SOC_DPCM_STATE_PAUSED
||
2808 state
== SND_SOC_DPCM_STATE_SUSPEND
||
2809 state
== SND_SOC_DPCM_STATE_PREPARE
)
2813 /* it's safe to change hw_params */
2816 EXPORT_SYMBOL_GPL(snd_soc_dpcm_can_be_params
);
2818 int snd_soc_platform_trigger(struct snd_pcm_substream
*substream
,
2819 int cmd
, struct snd_soc_platform
*platform
)
2821 if (platform
->driver
->ops
&& platform
->driver
->ops
->trigger
)
2822 return platform
->driver
->ops
->trigger(substream
, cmd
);
2825 EXPORT_SYMBOL_GPL(snd_soc_platform_trigger
);
2827 #ifdef CONFIG_DEBUG_FS
2828 static char *dpcm_state_string(enum snd_soc_dpcm_state state
)
2831 case SND_SOC_DPCM_STATE_NEW
:
2833 case SND_SOC_DPCM_STATE_OPEN
:
2835 case SND_SOC_DPCM_STATE_HW_PARAMS
:
2837 case SND_SOC_DPCM_STATE_PREPARE
:
2839 case SND_SOC_DPCM_STATE_START
:
2841 case SND_SOC_DPCM_STATE_STOP
:
2843 case SND_SOC_DPCM_STATE_SUSPEND
:
2845 case SND_SOC_DPCM_STATE_PAUSED
:
2847 case SND_SOC_DPCM_STATE_HW_FREE
:
2849 case SND_SOC_DPCM_STATE_CLOSE
:
2856 static ssize_t
dpcm_show_state(struct snd_soc_pcm_runtime
*fe
,
2857 int stream
, char *buf
, size_t size
)
2859 struct snd_pcm_hw_params
*params
= &fe
->dpcm
[stream
].hw_params
;
2860 struct snd_soc_dpcm
*dpcm
;
2864 offset
+= snprintf(buf
+ offset
, size
- offset
,
2865 "[%s - %s]\n", fe
->dai_link
->name
,
2866 stream
? "Capture" : "Playback");
2868 offset
+= snprintf(buf
+ offset
, size
- offset
, "State: %s\n",
2869 dpcm_state_string(fe
->dpcm
[stream
].state
));
2871 if ((fe
->dpcm
[stream
].state
>= SND_SOC_DPCM_STATE_HW_PARAMS
) &&
2872 (fe
->dpcm
[stream
].state
<= SND_SOC_DPCM_STATE_STOP
))
2873 offset
+= snprintf(buf
+ offset
, size
- offset
,
2875 "Format = %s, Channels = %d, Rate = %d\n",
2876 snd_pcm_format_name(params_format(params
)),
2877 params_channels(params
),
2878 params_rate(params
));
2881 offset
+= snprintf(buf
+ offset
, size
- offset
, "Backends:\n");
2883 if (list_empty(&fe
->dpcm
[stream
].be_clients
)) {
2884 offset
+= snprintf(buf
+ offset
, size
- offset
,
2885 " No active DSP links\n");
2889 list_for_each_entry(dpcm
, &fe
->dpcm
[stream
].be_clients
, list_be
) {
2890 struct snd_soc_pcm_runtime
*be
= dpcm
->be
;
2891 params
= &dpcm
->hw_params
;
2893 offset
+= snprintf(buf
+ offset
, size
- offset
,
2894 "- %s\n", be
->dai_link
->name
);
2896 offset
+= snprintf(buf
+ offset
, size
- offset
,
2898 dpcm_state_string(be
->dpcm
[stream
].state
));
2900 if ((be
->dpcm
[stream
].state
>= SND_SOC_DPCM_STATE_HW_PARAMS
) &&
2901 (be
->dpcm
[stream
].state
<= SND_SOC_DPCM_STATE_STOP
))
2902 offset
+= snprintf(buf
+ offset
, size
- offset
,
2903 " Hardware Params: "
2904 "Format = %s, Channels = %d, Rate = %d\n",
2905 snd_pcm_format_name(params_format(params
)),
2906 params_channels(params
),
2907 params_rate(params
));
2914 static ssize_t
dpcm_state_read_file(struct file
*file
, char __user
*user_buf
,
2915 size_t count
, loff_t
*ppos
)
2917 struct snd_soc_pcm_runtime
*fe
= file
->private_data
;
2918 ssize_t out_count
= PAGE_SIZE
, offset
= 0, ret
= 0;
2921 buf
= kmalloc(out_count
, GFP_KERNEL
);
2925 if (fe
->cpu_dai
->driver
->playback
.channels_min
)
2926 offset
+= dpcm_show_state(fe
, SNDRV_PCM_STREAM_PLAYBACK
,
2927 buf
+ offset
, out_count
- offset
);
2929 if (fe
->cpu_dai
->driver
->capture
.channels_min
)
2930 offset
+= dpcm_show_state(fe
, SNDRV_PCM_STREAM_CAPTURE
,
2931 buf
+ offset
, out_count
- offset
);
2933 ret
= simple_read_from_buffer(user_buf
, count
, ppos
, buf
, offset
);
2939 static const struct file_operations dpcm_state_fops
= {
2940 .open
= simple_open
,
2941 .read
= dpcm_state_read_file
,
2942 .llseek
= default_llseek
,
2945 void soc_dpcm_debugfs_add(struct snd_soc_pcm_runtime
*rtd
)
2950 if (!rtd
->card
->debugfs_card_root
)
2953 rtd
->debugfs_dpcm_root
= debugfs_create_dir(rtd
->dai_link
->name
,
2954 rtd
->card
->debugfs_card_root
);
2955 if (!rtd
->debugfs_dpcm_root
) {
2957 "ASoC: Failed to create dpcm debugfs directory %s\n",
2958 rtd
->dai_link
->name
);
2962 rtd
->debugfs_dpcm_state
= debugfs_create_file("state", 0444,
2963 rtd
->debugfs_dpcm_root
,
2964 rtd
, &dpcm_state_fops
);