1 // SPDX-License-Identifier: GPL-2.0+
3 // soc-pcm.c -- ALSA SoC PCM
5 // Copyright 2005 Wolfson Microelectronics PLC.
6 // Copyright 2005 Openedhand Ltd.
7 // Copyright (C) 2010 Slimlogic Ltd.
8 // Copyright (C) 2010 Texas Instruments Inc.
10 // Authors: Liam Girdwood <lrg@ti.com>
11 // Mark Brown <broonie@opensource.wolfsonmicro.com>
13 #include <linux/kernel.h>
14 #include <linux/init.h>
15 #include <linux/delay.h>
16 #include <linux/pinctrl/consumer.h>
17 #include <linux/pm_runtime.h>
18 #include <linux/slab.h>
19 #include <linux/workqueue.h>
20 #include <linux/export.h>
21 #include <linux/debugfs.h>
22 #include <sound/core.h>
23 #include <sound/pcm.h>
24 #include <sound/pcm_params.h>
25 #include <sound/soc.h>
26 #include <sound/soc-dpcm.h>
27 #include <sound/initval.h>
29 #define DPCM_MAX_BE_USERS 8
31 #ifdef CONFIG_DEBUG_FS
32 static const char *dpcm_state_string(enum snd_soc_dpcm_state state
)
35 case SND_SOC_DPCM_STATE_NEW
:
37 case SND_SOC_DPCM_STATE_OPEN
:
39 case SND_SOC_DPCM_STATE_HW_PARAMS
:
41 case SND_SOC_DPCM_STATE_PREPARE
:
43 case SND_SOC_DPCM_STATE_START
:
45 case SND_SOC_DPCM_STATE_STOP
:
47 case SND_SOC_DPCM_STATE_SUSPEND
:
49 case SND_SOC_DPCM_STATE_PAUSED
:
51 case SND_SOC_DPCM_STATE_HW_FREE
:
53 case SND_SOC_DPCM_STATE_CLOSE
:
60 static ssize_t
dpcm_show_state(struct snd_soc_pcm_runtime
*fe
,
61 int stream
, char *buf
, size_t size
)
63 struct snd_pcm_hw_params
*params
= &fe
->dpcm
[stream
].hw_params
;
64 struct snd_soc_dpcm
*dpcm
;
69 offset
+= scnprintf(buf
+ offset
, size
- offset
,
70 "[%s - %s]\n", fe
->dai_link
->name
,
71 stream
? "Capture" : "Playback");
73 offset
+= scnprintf(buf
+ offset
, size
- offset
, "State: %s\n",
74 dpcm_state_string(fe
->dpcm
[stream
].state
));
76 if ((fe
->dpcm
[stream
].state
>= SND_SOC_DPCM_STATE_HW_PARAMS
) &&
77 (fe
->dpcm
[stream
].state
<= SND_SOC_DPCM_STATE_STOP
))
78 offset
+= scnprintf(buf
+ offset
, size
- offset
,
80 "Format = %s, Channels = %d, Rate = %d\n",
81 snd_pcm_format_name(params_format(params
)),
82 params_channels(params
),
86 offset
+= scnprintf(buf
+ offset
, size
- offset
, "Backends:\n");
88 if (list_empty(&fe
->dpcm
[stream
].be_clients
)) {
89 offset
+= scnprintf(buf
+ offset
, size
- offset
,
90 " No active DSP links\n");
94 spin_lock_irqsave(&fe
->card
->dpcm_lock
, flags
);
95 for_each_dpcm_be(fe
, stream
, dpcm
) {
96 struct snd_soc_pcm_runtime
*be
= dpcm
->be
;
97 params
= &dpcm
->hw_params
;
99 offset
+= scnprintf(buf
+ offset
, size
- offset
,
100 "- %s\n", be
->dai_link
->name
);
102 offset
+= scnprintf(buf
+ offset
, size
- offset
,
104 dpcm_state_string(be
->dpcm
[stream
].state
));
106 if ((be
->dpcm
[stream
].state
>= SND_SOC_DPCM_STATE_HW_PARAMS
) &&
107 (be
->dpcm
[stream
].state
<= SND_SOC_DPCM_STATE_STOP
))
108 offset
+= scnprintf(buf
+ offset
, size
- offset
,
110 "Format = %s, Channels = %d, Rate = %d\n",
111 snd_pcm_format_name(params_format(params
)),
112 params_channels(params
),
113 params_rate(params
));
115 spin_unlock_irqrestore(&fe
->card
->dpcm_lock
, flags
);
120 static ssize_t
dpcm_state_read_file(struct file
*file
, char __user
*user_buf
,
121 size_t count
, loff_t
*ppos
)
123 struct snd_soc_pcm_runtime
*fe
= file
->private_data
;
124 ssize_t out_count
= PAGE_SIZE
, offset
= 0, ret
= 0;
128 if (fe
->num_cpus
> 1) {
130 "%s doesn't support Multi CPU yet\n", __func__
);
134 buf
= kmalloc(out_count
, GFP_KERNEL
);
138 for_each_pcm_streams(stream
)
139 if (snd_soc_dai_stream_valid(fe
->cpu_dai
, stream
))
140 offset
+= dpcm_show_state(fe
, stream
,
144 ret
= simple_read_from_buffer(user_buf
, count
, ppos
, buf
, offset
);
150 static const struct file_operations dpcm_state_fops
= {
152 .read
= dpcm_state_read_file
,
153 .llseek
= default_llseek
,
156 void soc_dpcm_debugfs_add(struct snd_soc_pcm_runtime
*rtd
)
161 if (!rtd
->dai_link
->dynamic
)
164 if (!rtd
->card
->debugfs_card_root
)
167 rtd
->debugfs_dpcm_root
= debugfs_create_dir(rtd
->dai_link
->name
,
168 rtd
->card
->debugfs_card_root
);
170 debugfs_create_file("state", 0444, rtd
->debugfs_dpcm_root
,
171 rtd
, &dpcm_state_fops
);
174 static void dpcm_create_debugfs_state(struct snd_soc_dpcm
*dpcm
, int stream
)
178 name
= kasprintf(GFP_KERNEL
, "%s:%s", dpcm
->be
->dai_link
->name
,
179 stream
? "capture" : "playback");
181 dpcm
->debugfs_state
= debugfs_create_dir(
182 name
, dpcm
->fe
->debugfs_dpcm_root
);
183 debugfs_create_u32("state", 0644, dpcm
->debugfs_state
,
189 static void dpcm_remove_debugfs_state(struct snd_soc_dpcm
*dpcm
)
191 debugfs_remove_recursive(dpcm
->debugfs_state
);
195 static inline void dpcm_create_debugfs_state(struct snd_soc_dpcm
*dpcm
,
200 static inline void dpcm_remove_debugfs_state(struct snd_soc_dpcm
*dpcm
)
205 static int soc_rtd_startup(struct snd_soc_pcm_runtime
*rtd
,
206 struct snd_pcm_substream
*substream
)
208 if (rtd
->dai_link
->ops
&&
209 rtd
->dai_link
->ops
->startup
)
210 return rtd
->dai_link
->ops
->startup(substream
);
214 static void soc_rtd_shutdown(struct snd_soc_pcm_runtime
*rtd
,
215 struct snd_pcm_substream
*substream
)
217 if (rtd
->dai_link
->ops
&&
218 rtd
->dai_link
->ops
->shutdown
)
219 rtd
->dai_link
->ops
->shutdown(substream
);
222 static int soc_rtd_prepare(struct snd_soc_pcm_runtime
*rtd
,
223 struct snd_pcm_substream
*substream
)
225 if (rtd
->dai_link
->ops
&&
226 rtd
->dai_link
->ops
->prepare
)
227 return rtd
->dai_link
->ops
->prepare(substream
);
231 static int soc_rtd_hw_params(struct snd_soc_pcm_runtime
*rtd
,
232 struct snd_pcm_substream
*substream
,
233 struct snd_pcm_hw_params
*params
)
235 if (rtd
->dai_link
->ops
&&
236 rtd
->dai_link
->ops
->hw_params
)
237 return rtd
->dai_link
->ops
->hw_params(substream
, params
);
241 static void soc_rtd_hw_free(struct snd_soc_pcm_runtime
*rtd
,
242 struct snd_pcm_substream
*substream
)
244 if (rtd
->dai_link
->ops
&&
245 rtd
->dai_link
->ops
->hw_free
)
246 rtd
->dai_link
->ops
->hw_free(substream
);
249 static int soc_rtd_trigger(struct snd_soc_pcm_runtime
*rtd
,
250 struct snd_pcm_substream
*substream
,
253 if (rtd
->dai_link
->ops
&&
254 rtd
->dai_link
->ops
->trigger
)
255 return rtd
->dai_link
->ops
->trigger(substream
, cmd
);
259 static void snd_soc_runtime_action(struct snd_soc_pcm_runtime
*rtd
,
260 int stream
, int action
)
262 struct snd_soc_dai
*dai
;
265 lockdep_assert_held(&rtd
->card
->pcm_mutex
);
267 for_each_rtd_dais(rtd
, i
, dai
) {
268 dai
->stream_active
[stream
] += action
;
269 dai
->active
+= action
;
270 dai
->component
->active
+= action
;
275 * snd_soc_runtime_activate() - Increment active count for PCM runtime components
276 * @rtd: ASoC PCM runtime that is activated
277 * @stream: Direction of the PCM stream
279 * Increments the active count for all the DAIs and components attached to a PCM
280 * runtime. Should typically be called when a stream is opened.
282 * Must be called with the rtd->card->pcm_mutex being held
284 void snd_soc_runtime_activate(struct snd_soc_pcm_runtime
*rtd
, int stream
)
286 snd_soc_runtime_action(rtd
, stream
, 1);
288 EXPORT_SYMBOL_GPL(snd_soc_runtime_activate
);
291 * snd_soc_runtime_deactivate() - Decrement active count for PCM runtime components
292 * @rtd: ASoC PCM runtime that is deactivated
293 * @stream: Direction of the PCM stream
295 * Decrements the active count for all the DAIs and components attached to a PCM
296 * runtime. Should typically be called when a stream is closed.
298 * Must be called with the rtd->card->pcm_mutex being held
300 void snd_soc_runtime_deactivate(struct snd_soc_pcm_runtime
*rtd
, int stream
)
302 snd_soc_runtime_action(rtd
, stream
, -1);
304 EXPORT_SYMBOL_GPL(snd_soc_runtime_deactivate
);
307 * snd_soc_runtime_ignore_pmdown_time() - Check whether to ignore the power down delay
308 * @rtd: The ASoC PCM runtime that should be checked.
310 * This function checks whether the power down delay should be ignored for a
311 * specific PCM runtime. Returns true if the delay is 0, if it the DAI link has
312 * been configured to ignore the delay, or if none of the components benefits
313 * from having the delay.
315 bool snd_soc_runtime_ignore_pmdown_time(struct snd_soc_pcm_runtime
*rtd
)
317 struct snd_soc_component
*component
;
321 if (!rtd
->pmdown_time
|| rtd
->dai_link
->ignore_pmdown_time
)
324 for_each_rtd_components(rtd
, i
, component
)
325 ignore
&= !component
->driver
->use_pmdown_time
;
331 * snd_soc_set_runtime_hwparams - set the runtime hardware parameters
332 * @substream: the pcm substream
333 * @hw: the hardware parameters
335 * Sets the substream runtime hardware parameters.
337 int snd_soc_set_runtime_hwparams(struct snd_pcm_substream
*substream
,
338 const struct snd_pcm_hardware
*hw
)
340 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
341 runtime
->hw
.info
= hw
->info
;
342 runtime
->hw
.formats
= hw
->formats
;
343 runtime
->hw
.period_bytes_min
= hw
->period_bytes_min
;
344 runtime
->hw
.period_bytes_max
= hw
->period_bytes_max
;
345 runtime
->hw
.periods_min
= hw
->periods_min
;
346 runtime
->hw
.periods_max
= hw
->periods_max
;
347 runtime
->hw
.buffer_bytes_max
= hw
->buffer_bytes_max
;
348 runtime
->hw
.fifo_size
= hw
->fifo_size
;
351 EXPORT_SYMBOL_GPL(snd_soc_set_runtime_hwparams
);
353 /* DPCM stream event, send event to FE and all active BEs. */
354 int dpcm_dapm_stream_event(struct snd_soc_pcm_runtime
*fe
, int dir
,
357 struct snd_soc_dpcm
*dpcm
;
359 for_each_dpcm_be(fe
, dir
, dpcm
) {
361 struct snd_soc_pcm_runtime
*be
= dpcm
->be
;
363 dev_dbg(be
->dev
, "ASoC: BE %s event %d dir %d\n",
364 be
->dai_link
->name
, event
, dir
);
366 if ((event
== SND_SOC_DAPM_STREAM_STOP
) &&
367 (be
->dpcm
[dir
].users
>= 1))
370 snd_soc_dapm_stream_event(be
, dir
, event
);
373 snd_soc_dapm_stream_event(fe
, dir
, event
);
378 static int soc_pcm_apply_symmetry(struct snd_pcm_substream
*substream
,
379 struct snd_soc_dai
*soc_dai
)
381 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
384 if (soc_dai
->rate
&& (soc_dai
->driver
->symmetric_rates
||
385 rtd
->dai_link
->symmetric_rates
)) {
386 dev_dbg(soc_dai
->dev
, "ASoC: Symmetry forces %dHz rate\n",
389 ret
= snd_pcm_hw_constraint_single(substream
->runtime
,
390 SNDRV_PCM_HW_PARAM_RATE
,
393 dev_err(soc_dai
->dev
,
394 "ASoC: Unable to apply rate constraint: %d\n",
400 if (soc_dai
->channels
&& (soc_dai
->driver
->symmetric_channels
||
401 rtd
->dai_link
->symmetric_channels
)) {
402 dev_dbg(soc_dai
->dev
, "ASoC: Symmetry forces %d channel(s)\n",
405 ret
= snd_pcm_hw_constraint_single(substream
->runtime
,
406 SNDRV_PCM_HW_PARAM_CHANNELS
,
409 dev_err(soc_dai
->dev
,
410 "ASoC: Unable to apply channel symmetry constraint: %d\n",
416 if (soc_dai
->sample_bits
&& (soc_dai
->driver
->symmetric_samplebits
||
417 rtd
->dai_link
->symmetric_samplebits
)) {
418 dev_dbg(soc_dai
->dev
, "ASoC: Symmetry forces %d sample bits\n",
419 soc_dai
->sample_bits
);
421 ret
= snd_pcm_hw_constraint_single(substream
->runtime
,
422 SNDRV_PCM_HW_PARAM_SAMPLE_BITS
,
423 soc_dai
->sample_bits
);
425 dev_err(soc_dai
->dev
,
426 "ASoC: Unable to apply sample bits symmetry constraint: %d\n",
435 static int soc_pcm_params_symmetry(struct snd_pcm_substream
*substream
,
436 struct snd_pcm_hw_params
*params
)
438 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
439 struct snd_soc_dai
*dai
;
440 struct snd_soc_dai
*cpu_dai
;
441 unsigned int rate
, channels
, sample_bits
, symmetry
, i
;
443 rate
= params_rate(params
);
444 channels
= params_channels(params
);
445 sample_bits
= snd_pcm_format_physical_width(params_format(params
));
447 /* reject unmatched parameters when applying symmetry */
448 symmetry
= rtd
->dai_link
->symmetric_rates
;
450 for_each_rtd_cpu_dais(rtd
, i
, dai
)
451 symmetry
|= dai
->driver
->symmetric_rates
;
454 for_each_rtd_cpu_dais(rtd
, i
, cpu_dai
) {
455 if (cpu_dai
->rate
&& cpu_dai
->rate
!= rate
) {
456 dev_err(rtd
->dev
, "ASoC: unmatched rate symmetry: %d - %d\n",
457 cpu_dai
->rate
, rate
);
463 symmetry
= rtd
->dai_link
->symmetric_channels
;
465 for_each_rtd_dais(rtd
, i
, dai
)
466 symmetry
|= dai
->driver
->symmetric_channels
;
469 for_each_rtd_cpu_dais(rtd
, i
, cpu_dai
) {
470 if (cpu_dai
->channels
&&
471 cpu_dai
->channels
!= channels
) {
472 dev_err(rtd
->dev
, "ASoC: unmatched channel symmetry: %d - %d\n",
473 cpu_dai
->channels
, channels
);
479 symmetry
= rtd
->dai_link
->symmetric_samplebits
;
481 for_each_rtd_dais(rtd
, i
, dai
)
482 symmetry
|= dai
->driver
->symmetric_samplebits
;
485 for_each_rtd_cpu_dais(rtd
, i
, cpu_dai
) {
486 if (cpu_dai
->sample_bits
&&
487 cpu_dai
->sample_bits
!= sample_bits
) {
488 dev_err(rtd
->dev
, "ASoC: unmatched sample bits symmetry: %d - %d\n",
489 cpu_dai
->sample_bits
, sample_bits
);
498 static bool soc_pcm_has_symmetry(struct snd_pcm_substream
*substream
)
500 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
501 struct snd_soc_dai_link
*link
= rtd
->dai_link
;
502 struct snd_soc_dai
*dai
;
503 unsigned int symmetry
, i
;
505 symmetry
= link
->symmetric_rates
||
506 link
->symmetric_channels
||
507 link
->symmetric_samplebits
;
509 for_each_rtd_dais(rtd
, i
, dai
)
510 symmetry
= symmetry
||
511 dai
->driver
->symmetric_rates
||
512 dai
->driver
->symmetric_channels
||
513 dai
->driver
->symmetric_samplebits
;
518 static void soc_pcm_set_msb(struct snd_pcm_substream
*substream
, int bits
)
520 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
526 ret
= snd_pcm_hw_constraint_msbits(substream
->runtime
, 0, 0, bits
);
528 dev_warn(rtd
->dev
, "ASoC: Failed to set MSB %d: %d\n",
532 static void soc_pcm_apply_msb(struct snd_pcm_substream
*substream
)
534 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
535 struct snd_soc_dai
*cpu_dai
;
536 struct snd_soc_dai
*codec_dai
;
537 struct snd_soc_pcm_stream
*pcm_codec
, *pcm_cpu
;
538 int stream
= substream
->stream
;
540 unsigned int bits
= 0, cpu_bits
= 0;
542 for_each_rtd_codec_dais(rtd
, i
, codec_dai
) {
543 pcm_codec
= snd_soc_dai_get_pcm_stream(codec_dai
, stream
);
545 if (pcm_codec
->sig_bits
== 0) {
549 bits
= max(pcm_codec
->sig_bits
, bits
);
552 for_each_rtd_cpu_dais(rtd
, i
, cpu_dai
) {
553 pcm_cpu
= snd_soc_dai_get_pcm_stream(cpu_dai
, stream
);
555 if (pcm_cpu
->sig_bits
== 0) {
559 cpu_bits
= max(pcm_cpu
->sig_bits
, cpu_bits
);
562 soc_pcm_set_msb(substream
, bits
);
563 soc_pcm_set_msb(substream
, cpu_bits
);
567 * snd_soc_runtime_calc_hw() - Calculate hw limits for a PCM stream
568 * @rtd: ASoC PCM runtime
569 * @hw: PCM hardware parameters (output)
570 * @stream: Direction of the PCM stream
572 * Calculates the subset of stream parameters supported by all DAIs
573 * associated with the PCM stream.
575 int snd_soc_runtime_calc_hw(struct snd_soc_pcm_runtime
*rtd
,
576 struct snd_pcm_hardware
*hw
, int stream
)
578 struct snd_soc_dai
*codec_dai
;
579 struct snd_soc_dai
*cpu_dai
;
580 struct snd_soc_pcm_stream
*codec_stream
;
581 struct snd_soc_pcm_stream
*cpu_stream
;
582 unsigned int chan_min
= 0, chan_max
= UINT_MAX
;
583 unsigned int cpu_chan_min
= 0, cpu_chan_max
= UINT_MAX
;
584 unsigned int rate_min
= 0, rate_max
= UINT_MAX
;
585 unsigned int cpu_rate_min
= 0, cpu_rate_max
= UINT_MAX
;
586 unsigned int rates
= UINT_MAX
, cpu_rates
= UINT_MAX
;
587 u64 formats
= ULLONG_MAX
;
590 /* first calculate min/max only for CPUs in the DAI link */
591 for_each_rtd_cpu_dais(rtd
, i
, cpu_dai
) {
594 * Skip CPUs which don't support the current stream type.
595 * Otherwise, since the rate, channel, and format values will
596 * zero in that case, we would have no usable settings left,
597 * causing the resulting setup to fail.
599 if (!snd_soc_dai_stream_valid(cpu_dai
, stream
))
602 cpu_stream
= snd_soc_dai_get_pcm_stream(cpu_dai
, stream
);
604 cpu_chan_min
= max(cpu_chan_min
, cpu_stream
->channels_min
);
605 cpu_chan_max
= min(cpu_chan_max
, cpu_stream
->channels_max
);
606 cpu_rate_min
= max(cpu_rate_min
, cpu_stream
->rate_min
);
607 cpu_rate_max
= min_not_zero(cpu_rate_max
, cpu_stream
->rate_max
);
608 formats
&= cpu_stream
->formats
;
609 cpu_rates
= snd_pcm_rate_mask_intersect(cpu_stream
->rates
,
613 /* second calculate min/max only for CODECs in the DAI link */
614 for_each_rtd_codec_dais(rtd
, i
, codec_dai
) {
617 * Skip CODECs which don't support the current stream type.
618 * Otherwise, since the rate, channel, and format values will
619 * zero in that case, we would have no usable settings left,
620 * causing the resulting setup to fail.
622 if (!snd_soc_dai_stream_valid(codec_dai
, stream
))
625 codec_stream
= snd_soc_dai_get_pcm_stream(codec_dai
, stream
);
627 chan_min
= max(chan_min
, codec_stream
->channels_min
);
628 chan_max
= min(chan_max
, codec_stream
->channels_max
);
629 rate_min
= max(rate_min
, codec_stream
->rate_min
);
630 rate_max
= min_not_zero(rate_max
, codec_stream
->rate_max
);
631 formats
&= codec_stream
->formats
;
632 rates
= snd_pcm_rate_mask_intersect(codec_stream
->rates
, rates
);
635 /* Verify both a valid CPU DAI and a valid CODEC DAI were found */
636 if (!chan_min
|| !cpu_chan_min
)
640 * chan min/max cannot be enforced if there are multiple CODEC DAIs
641 * connected to CPU DAI(s), use CPU DAI's directly and let
642 * channel allocation be fixed up later
644 if (rtd
->num_codecs
> 1) {
645 chan_min
= cpu_chan_min
;
646 chan_max
= cpu_chan_max
;
649 /* finally find a intersection between CODECs and CPUs */
650 hw
->channels_min
= max(chan_min
, cpu_chan_min
);
651 hw
->channels_max
= min(chan_max
, cpu_chan_max
);
652 hw
->formats
= formats
;
653 hw
->rates
= snd_pcm_rate_mask_intersect(rates
, cpu_rates
);
655 snd_pcm_hw_limit_rates(hw
);
657 hw
->rate_min
= max(hw
->rate_min
, cpu_rate_min
);
658 hw
->rate_min
= max(hw
->rate_min
, rate_min
);
659 hw
->rate_max
= min_not_zero(hw
->rate_max
, cpu_rate_max
);
660 hw
->rate_max
= min_not_zero(hw
->rate_max
, rate_max
);
664 EXPORT_SYMBOL_GPL(snd_soc_runtime_calc_hw
);
666 static void soc_pcm_init_runtime_hw(struct snd_pcm_substream
*substream
)
668 struct snd_pcm_hardware
*hw
= &substream
->runtime
->hw
;
669 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
670 u64 formats
= hw
->formats
;
673 * At least one CPU and one CODEC should match. Otherwise, we should
674 * have bailed out on a higher level, since there would be no CPU or
675 * CODEC to support the transfer direction in that case.
677 snd_soc_runtime_calc_hw(rtd
, hw
, substream
->stream
);
680 hw
->formats
&= formats
;
683 static int soc_pcm_components_open(struct snd_pcm_substream
*substream
)
685 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
686 struct snd_soc_component
*last
= NULL
;
687 struct snd_soc_component
*component
;
690 for_each_rtd_components(rtd
, i
, component
) {
693 ret
= snd_soc_component_module_get_when_open(component
);
695 dev_err(component
->dev
,
696 "ASoC: can't get module %s\n",
701 ret
= snd_soc_component_open(component
, substream
);
703 snd_soc_component_module_put_when_close(component
);
704 dev_err(component
->dev
,
705 "ASoC: can't open component %s: %d\n",
706 component
->name
, ret
);
712 /* rollback on error */
713 for_each_rtd_components(rtd
, i
, component
) {
714 if (component
== last
)
717 snd_soc_component_close(component
, substream
);
718 snd_soc_component_module_put_when_close(component
);
725 static int soc_pcm_components_close(struct snd_pcm_substream
*substream
)
727 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
728 struct snd_soc_component
*component
;
731 for_each_rtd_components(rtd
, i
, component
) {
732 r
= snd_soc_component_close(component
, substream
);
734 ret
= r
; /* use last ret */
736 snd_soc_component_module_put_when_close(component
);
743 * Called by ALSA when a PCM substream is closed. Private data can be
744 * freed here. The cpu DAI, codec DAI, machine and components are also
747 static int soc_pcm_close(struct snd_pcm_substream
*substream
)
749 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
750 struct snd_soc_component
*component
;
751 struct snd_soc_dai
*dai
;
754 mutex_lock_nested(&rtd
->card
->pcm_mutex
, rtd
->card
->pcm_subclass
);
756 snd_soc_runtime_deactivate(rtd
, substream
->stream
);
758 for_each_rtd_dais(rtd
, i
, dai
)
759 snd_soc_dai_shutdown(dai
, substream
);
761 soc_rtd_shutdown(rtd
, substream
);
763 soc_pcm_components_close(substream
);
765 snd_soc_dapm_stream_stop(rtd
, substream
->stream
);
767 mutex_unlock(&rtd
->card
->pcm_mutex
);
769 for_each_rtd_components(rtd
, i
, component
) {
770 pm_runtime_mark_last_busy(component
->dev
);
771 pm_runtime_put_autosuspend(component
->dev
);
774 for_each_rtd_components(rtd
, i
, component
)
775 if (!component
->active
)
776 pinctrl_pm_select_sleep_state(component
->dev
);
782 * Called by ALSA when a PCM substream is opened, the runtime->hw record is
783 * then initialized and any private data can be allocated. This also calls
784 * startup for the cpu DAI, component, machine and codec DAI.
786 static int soc_pcm_open(struct snd_pcm_substream
*substream
)
788 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
789 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
790 struct snd_soc_component
*component
;
791 struct snd_soc_dai
*dai
;
792 const char *codec_dai_name
= "multicodec";
793 const char *cpu_dai_name
= "multicpu";
796 for_each_rtd_components(rtd
, i
, component
)
797 pinctrl_pm_select_default_state(component
->dev
);
799 for_each_rtd_components(rtd
, i
, component
)
800 pm_runtime_get_sync(component
->dev
);
802 mutex_lock_nested(&rtd
->card
->pcm_mutex
, rtd
->card
->pcm_subclass
);
804 ret
= soc_pcm_components_open(substream
);
808 ret
= soc_rtd_startup(rtd
, substream
);
810 pr_err("ASoC: %s startup failed: %d\n",
811 rtd
->dai_link
->name
, ret
);
812 goto rtd_startup_err
;
815 /* startup the audio subsystem */
816 for_each_rtd_dais(rtd
, i
, dai
) {
817 ret
= snd_soc_dai_startup(dai
, substream
);
820 "ASoC: can't open DAI %s: %d\n",
825 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
831 /* Dynamic PCM DAI links compat checks use dynamic capabilities */
832 if (rtd
->dai_link
->dynamic
|| rtd
->dai_link
->no_pcm
)
835 /* Check that the codec and cpu DAIs are compatible */
836 soc_pcm_init_runtime_hw(substream
);
838 if (rtd
->num_codecs
== 1)
839 codec_dai_name
= rtd
->codec_dai
->name
;
841 if (rtd
->num_cpus
== 1)
842 cpu_dai_name
= rtd
->cpu_dai
->name
;
844 if (soc_pcm_has_symmetry(substream
))
845 runtime
->hw
.info
|= SNDRV_PCM_INFO_JOINT_DUPLEX
;
848 if (!runtime
->hw
.rates
) {
849 printk(KERN_ERR
"ASoC: %s <-> %s No matching rates\n",
850 codec_dai_name
, cpu_dai_name
);
853 if (!runtime
->hw
.formats
) {
854 printk(KERN_ERR
"ASoC: %s <-> %s No matching formats\n",
855 codec_dai_name
, cpu_dai_name
);
858 if (!runtime
->hw
.channels_min
|| !runtime
->hw
.channels_max
||
859 runtime
->hw
.channels_min
> runtime
->hw
.channels_max
) {
860 printk(KERN_ERR
"ASoC: %s <-> %s No matching channels\n",
861 codec_dai_name
, cpu_dai_name
);
865 soc_pcm_apply_msb(substream
);
867 /* Symmetry only applies if we've already got an active stream. */
868 for_each_rtd_dais(rtd
, i
, dai
) {
870 ret
= soc_pcm_apply_symmetry(substream
, dai
);
876 pr_debug("ASoC: %s <-> %s info:\n",
877 codec_dai_name
, cpu_dai_name
);
878 pr_debug("ASoC: rate mask 0x%x\n", runtime
->hw
.rates
);
879 pr_debug("ASoC: min ch %d max ch %d\n", runtime
->hw
.channels_min
,
880 runtime
->hw
.channels_max
);
881 pr_debug("ASoC: min rate %d max rate %d\n", runtime
->hw
.rate_min
,
882 runtime
->hw
.rate_max
);
886 snd_soc_runtime_activate(rtd
, substream
->stream
);
888 mutex_unlock(&rtd
->card
->pcm_mutex
);
892 for_each_rtd_dais(rtd
, i
, dai
)
893 snd_soc_dai_shutdown(dai
, substream
);
895 soc_rtd_shutdown(rtd
, substream
);
897 soc_pcm_components_close(substream
);
899 mutex_unlock(&rtd
->card
->pcm_mutex
);
901 for_each_rtd_components(rtd
, i
, component
) {
902 pm_runtime_mark_last_busy(component
->dev
);
903 pm_runtime_put_autosuspend(component
->dev
);
906 for_each_rtd_components(rtd
, i
, component
)
907 if (!component
->active
)
908 pinctrl_pm_select_sleep_state(component
->dev
);
913 static void codec2codec_close_delayed_work(struct snd_soc_pcm_runtime
*rtd
)
916 * Currently nothing to do for c2c links
917 * Since c2c links are internal nodes in the DAPM graph and
918 * don't interface with the outside world or application layer
919 * we don't have to do any special handling on close.
924 * Called by ALSA when the PCM substream is prepared, can set format, sample
925 * rate, etc. This function is non atomic and can be called multiple times,
926 * it can refer to the runtime info.
928 static int soc_pcm_prepare(struct snd_pcm_substream
*substream
)
930 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
931 struct snd_soc_component
*component
;
932 struct snd_soc_dai
*dai
;
935 mutex_lock_nested(&rtd
->card
->pcm_mutex
, rtd
->card
->pcm_subclass
);
937 ret
= soc_rtd_prepare(rtd
, substream
);
939 dev_err(rtd
->card
->dev
,
940 "ASoC: machine prepare error: %d\n", ret
);
944 for_each_rtd_components(rtd
, i
, component
) {
945 ret
= snd_soc_component_prepare(component
, substream
);
947 dev_err(component
->dev
,
948 "ASoC: platform prepare error: %d\n", ret
);
953 for_each_rtd_dais(rtd
, i
, dai
) {
954 ret
= snd_soc_dai_prepare(dai
, substream
);
957 "ASoC: DAI prepare error: %d\n", ret
);
962 /* cancel any delayed stream shutdown that is pending */
963 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
&&
966 cancel_delayed_work(&rtd
->delayed_work
);
969 snd_soc_dapm_stream_event(rtd
, substream
->stream
,
970 SND_SOC_DAPM_STREAM_START
);
972 for_each_rtd_dais(rtd
, i
, dai
)
973 snd_soc_dai_digital_mute(dai
, 0, substream
->stream
);
976 mutex_unlock(&rtd
->card
->pcm_mutex
);
980 static void soc_pcm_codec_params_fixup(struct snd_pcm_hw_params
*params
,
983 struct snd_interval
*interval
;
984 int channels
= hweight_long(mask
);
986 interval
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_CHANNELS
);
987 interval
->min
= channels
;
988 interval
->max
= channels
;
991 static int soc_pcm_components_hw_free(struct snd_pcm_substream
*substream
,
992 struct snd_soc_component
*last
)
994 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
995 struct snd_soc_component
*component
;
998 for_each_rtd_components(rtd
, i
, component
) {
999 if (component
== last
)
1002 r
= snd_soc_component_hw_free(component
, substream
);
1004 ret
= r
; /* use last ret */
1011 * Called by ALSA when the hardware params are set by application. This
1012 * function can also be called multiple times and can allocate buffers
1013 * (using snd_pcm_lib_* ). It's non-atomic.
1015 static int soc_pcm_hw_params(struct snd_pcm_substream
*substream
,
1016 struct snd_pcm_hw_params
*params
)
1018 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
1019 struct snd_soc_component
*component
;
1020 struct snd_soc_dai
*cpu_dai
;
1021 struct snd_soc_dai
*codec_dai
;
1024 mutex_lock_nested(&rtd
->card
->pcm_mutex
, rtd
->card
->pcm_subclass
);
1026 ret
= soc_pcm_params_symmetry(substream
, params
);
1030 ret
= soc_rtd_hw_params(rtd
, substream
, params
);
1032 dev_err(rtd
->card
->dev
,
1033 "ASoC: machine hw_params failed: %d\n", ret
);
1037 for_each_rtd_codec_dais(rtd
, i
, codec_dai
) {
1038 struct snd_pcm_hw_params codec_params
;
1041 * Skip CODECs which don't support the current stream type,
1042 * the idea being that if a CODEC is not used for the currently
1043 * set up transfer direction, it should not need to be
1044 * configured, especially since the configuration used might
1045 * not even be supported by that CODEC. There may be cases
1046 * however where a CODEC needs to be set up although it is
1047 * actually not being used for the transfer, e.g. if a
1048 * capture-only CODEC is acting as an LRCLK and/or BCLK master
1049 * for the DAI link including a playback-only CODEC.
1050 * If this becomes necessary, we will have to augment the
1051 * machine driver setup with information on how to act, so
1052 * we can do the right thing here.
1054 if (!snd_soc_dai_stream_valid(codec_dai
, substream
->stream
))
1057 /* copy params for each codec */
1058 codec_params
= *params
;
1060 /* fixup params based on TDM slot masks */
1061 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
&&
1063 soc_pcm_codec_params_fixup(&codec_params
,
1064 codec_dai
->tx_mask
);
1066 if (substream
->stream
== SNDRV_PCM_STREAM_CAPTURE
&&
1068 soc_pcm_codec_params_fixup(&codec_params
,
1069 codec_dai
->rx_mask
);
1071 ret
= snd_soc_dai_hw_params(codec_dai
, substream
,
1076 codec_dai
->rate
= params_rate(&codec_params
);
1077 codec_dai
->channels
= params_channels(&codec_params
);
1078 codec_dai
->sample_bits
= snd_pcm_format_physical_width(
1079 params_format(&codec_params
));
1081 snd_soc_dapm_update_dai(substream
, &codec_params
, codec_dai
);
1084 for_each_rtd_cpu_dais(rtd
, i
, cpu_dai
) {
1086 * Skip CPUs which don't support the current stream
1087 * type. See soc_pcm_init_runtime_hw() for more details
1089 if (!snd_soc_dai_stream_valid(cpu_dai
, substream
->stream
))
1092 ret
= snd_soc_dai_hw_params(cpu_dai
, substream
, params
);
1096 /* store the parameters for each DAI */
1097 cpu_dai
->rate
= params_rate(params
);
1098 cpu_dai
->channels
= params_channels(params
);
1099 cpu_dai
->sample_bits
=
1100 snd_pcm_format_physical_width(params_format(params
));
1102 snd_soc_dapm_update_dai(substream
, params
, cpu_dai
);
1105 for_each_rtd_components(rtd
, i
, component
) {
1106 ret
= snd_soc_component_hw_params(component
, substream
, params
);
1108 dev_err(component
->dev
,
1109 "ASoC: %s hw params failed: %d\n",
1110 component
->name
, ret
);
1117 mutex_unlock(&rtd
->card
->pcm_mutex
);
1121 soc_pcm_components_hw_free(substream
, component
);
1126 for_each_rtd_cpu_dais_rollback(rtd
, i
, cpu_dai
) {
1127 if (!snd_soc_dai_stream_valid(cpu_dai
, substream
->stream
))
1130 snd_soc_dai_hw_free(cpu_dai
, substream
);
1134 i
= rtd
->num_codecs
;
1137 for_each_rtd_codec_dais_rollback(rtd
, i
, codec_dai
) {
1138 if (!snd_soc_dai_stream_valid(codec_dai
, substream
->stream
))
1141 snd_soc_dai_hw_free(codec_dai
, substream
);
1142 codec_dai
->rate
= 0;
1145 soc_rtd_hw_free(rtd
, substream
);
1147 mutex_unlock(&rtd
->card
->pcm_mutex
);
1152 * Frees resources allocated by hw_params, can be called multiple times
1154 static int soc_pcm_hw_free(struct snd_pcm_substream
*substream
)
1156 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
1157 struct snd_soc_dai
*dai
;
1160 mutex_lock_nested(&rtd
->card
->pcm_mutex
, rtd
->card
->pcm_subclass
);
1162 /* clear the corresponding DAIs parameters when going to be inactive */
1163 for_each_rtd_dais(rtd
, i
, dai
) {
1164 int active
= dai
->stream_active
[substream
->stream
];
1166 if (dai
->active
== 1) {
1169 dai
->sample_bits
= 0;
1173 snd_soc_dai_digital_mute(dai
, 1, substream
->stream
);
1176 /* free any machine hw params */
1177 soc_rtd_hw_free(rtd
, substream
);
1179 /* free any component resources */
1180 soc_pcm_components_hw_free(substream
, NULL
);
1182 /* now free hw params for the DAIs */
1183 for_each_rtd_dais(rtd
, i
, dai
) {
1184 if (!snd_soc_dai_stream_valid(dai
, substream
->stream
))
1187 snd_soc_dai_hw_free(dai
, substream
);
1190 mutex_unlock(&rtd
->card
->pcm_mutex
);
1194 static int soc_pcm_trigger_start(struct snd_pcm_substream
*substream
, int cmd
)
1196 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
1197 struct snd_soc_component
*component
;
1198 struct snd_soc_dai
*dai
;
1201 ret
= soc_rtd_trigger(rtd
, substream
, cmd
);
1205 for_each_rtd_components(rtd
, i
, component
) {
1206 ret
= snd_soc_component_trigger(component
, substream
, cmd
);
1211 for_each_rtd_dais(rtd
, i
, dai
) {
1212 ret
= snd_soc_dai_trigger(dai
, substream
, cmd
);
1220 static int soc_pcm_trigger_stop(struct snd_pcm_substream
*substream
, int cmd
)
1222 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
1223 struct snd_soc_component
*component
;
1224 struct snd_soc_dai
*dai
;
1227 for_each_rtd_dais(rtd
, i
, dai
) {
1228 ret
= snd_soc_dai_trigger(dai
, substream
, cmd
);
1233 for_each_rtd_components(rtd
, i
, component
) {
1234 ret
= snd_soc_component_trigger(component
, substream
, cmd
);
1239 ret
= soc_rtd_trigger(rtd
, substream
, cmd
);
1246 static int soc_pcm_trigger(struct snd_pcm_substream
*substream
, int cmd
)
1251 case SNDRV_PCM_TRIGGER_START
:
1252 case SNDRV_PCM_TRIGGER_RESUME
:
1253 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
1254 ret
= soc_pcm_trigger_start(substream
, cmd
);
1256 case SNDRV_PCM_TRIGGER_STOP
:
1257 case SNDRV_PCM_TRIGGER_SUSPEND
:
1258 case SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
1259 ret
= soc_pcm_trigger_stop(substream
, cmd
);
1268 static int soc_pcm_bespoke_trigger(struct snd_pcm_substream
*substream
,
1271 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
1272 struct snd_soc_dai
*dai
;
1275 for_each_rtd_dais(rtd
, i
, dai
) {
1276 ret
= snd_soc_dai_bespoke_trigger(dai
, substream
, cmd
);
1284 * soc level wrapper for pointer callback
1285 * If cpu_dai, codec_dai, component driver has the delay callback, then
1286 * the runtime->delay will be updated accordingly.
1288 static snd_pcm_uframes_t
soc_pcm_pointer(struct snd_pcm_substream
*substream
)
1290 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
1291 struct snd_soc_dai
*cpu_dai
;
1292 struct snd_soc_dai
*codec_dai
;
1293 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1294 snd_pcm_uframes_t offset
= 0;
1295 snd_pcm_sframes_t delay
= 0;
1296 snd_pcm_sframes_t codec_delay
= 0;
1297 snd_pcm_sframes_t cpu_delay
= 0;
1300 /* clearing the previous total delay */
1303 offset
= snd_soc_pcm_component_pointer(substream
);
1305 /* base delay if assigned in pointer callback */
1306 delay
= runtime
->delay
;
1308 for_each_rtd_cpu_dais(rtd
, i
, cpu_dai
) {
1309 cpu_delay
= max(cpu_delay
,
1310 snd_soc_dai_delay(cpu_dai
, substream
));
1314 for_each_rtd_codec_dais(rtd
, i
, codec_dai
) {
1315 codec_delay
= max(codec_delay
,
1316 snd_soc_dai_delay(codec_dai
, substream
));
1318 delay
+= codec_delay
;
1320 runtime
->delay
= delay
;
1325 /* connect a FE and BE */
1326 static int dpcm_be_connect(struct snd_soc_pcm_runtime
*fe
,
1327 struct snd_soc_pcm_runtime
*be
, int stream
)
1329 struct snd_soc_dpcm
*dpcm
;
1330 unsigned long flags
;
1332 /* only add new dpcms */
1333 for_each_dpcm_be(fe
, stream
, dpcm
) {
1334 if (dpcm
->be
== be
&& dpcm
->fe
== fe
)
1338 dpcm
= kzalloc(sizeof(struct snd_soc_dpcm
), GFP_KERNEL
);
1344 be
->dpcm
[stream
].runtime
= fe
->dpcm
[stream
].runtime
;
1345 dpcm
->state
= SND_SOC_DPCM_LINK_STATE_NEW
;
1346 spin_lock_irqsave(&fe
->card
->dpcm_lock
, flags
);
1347 list_add(&dpcm
->list_be
, &fe
->dpcm
[stream
].be_clients
);
1348 list_add(&dpcm
->list_fe
, &be
->dpcm
[stream
].fe_clients
);
1349 spin_unlock_irqrestore(&fe
->card
->dpcm_lock
, flags
);
1351 dev_dbg(fe
->dev
, "connected new DPCM %s path %s %s %s\n",
1352 stream
? "capture" : "playback", fe
->dai_link
->name
,
1353 stream
? "<-" : "->", be
->dai_link
->name
);
1355 dpcm_create_debugfs_state(dpcm
, stream
);
1360 /* reparent a BE onto another FE */
1361 static void dpcm_be_reparent(struct snd_soc_pcm_runtime
*fe
,
1362 struct snd_soc_pcm_runtime
*be
, int stream
)
1364 struct snd_soc_dpcm
*dpcm
;
1365 struct snd_pcm_substream
*fe_substream
, *be_substream
;
1367 /* reparent if BE is connected to other FEs */
1368 if (!be
->dpcm
[stream
].users
)
1371 be_substream
= snd_soc_dpcm_get_substream(be
, stream
);
1373 for_each_dpcm_fe(be
, stream
, dpcm
) {
1377 dev_dbg(fe
->dev
, "reparent %s path %s %s %s\n",
1378 stream
? "capture" : "playback",
1379 dpcm
->fe
->dai_link
->name
,
1380 stream
? "<-" : "->", dpcm
->be
->dai_link
->name
);
1382 fe_substream
= snd_soc_dpcm_get_substream(dpcm
->fe
, stream
);
1383 be_substream
->runtime
= fe_substream
->runtime
;
1388 /* disconnect a BE and FE */
1389 void dpcm_be_disconnect(struct snd_soc_pcm_runtime
*fe
, int stream
)
1391 struct snd_soc_dpcm
*dpcm
, *d
;
1392 unsigned long flags
;
1394 for_each_dpcm_be_safe(fe
, stream
, dpcm
, d
) {
1395 dev_dbg(fe
->dev
, "ASoC: BE %s disconnect check for %s\n",
1396 stream
? "capture" : "playback",
1397 dpcm
->be
->dai_link
->name
);
1399 if (dpcm
->state
!= SND_SOC_DPCM_LINK_STATE_FREE
)
1402 dev_dbg(fe
->dev
, "freed DSP %s path %s %s %s\n",
1403 stream
? "capture" : "playback", fe
->dai_link
->name
,
1404 stream
? "<-" : "->", dpcm
->be
->dai_link
->name
);
1406 /* BEs still alive need new FE */
1407 dpcm_be_reparent(fe
, dpcm
->be
, stream
);
1409 dpcm_remove_debugfs_state(dpcm
);
1411 spin_lock_irqsave(&fe
->card
->dpcm_lock
, flags
);
1412 list_del(&dpcm
->list_be
);
1413 list_del(&dpcm
->list_fe
);
1414 spin_unlock_irqrestore(&fe
->card
->dpcm_lock
, flags
);
1419 /* get BE for DAI widget and stream */
1420 static struct snd_soc_pcm_runtime
*dpcm_get_be(struct snd_soc_card
*card
,
1421 struct snd_soc_dapm_widget
*widget
, int stream
)
1423 struct snd_soc_pcm_runtime
*be
;
1424 struct snd_soc_dapm_widget
*w
;
1425 struct snd_soc_dai
*dai
;
1428 dev_dbg(card
->dev
, "ASoC: find BE for widget %s\n", widget
->name
);
1430 for_each_card_rtds(card
, be
) {
1432 if (!be
->dai_link
->no_pcm
)
1435 for_each_rtd_dais(be
, i
, dai
) {
1436 w
= snd_soc_dai_get_widget(dai
, stream
);
1438 dev_dbg(card
->dev
, "ASoC: try BE : %s\n",
1439 w
? w
->name
: "(not set)");
1446 /* Widget provided is not a BE */
1450 static int widget_in_list(struct snd_soc_dapm_widget_list
*list
,
1451 struct snd_soc_dapm_widget
*widget
)
1453 struct snd_soc_dapm_widget
*w
;
1456 for_each_dapm_widgets(list
, i
, w
)
1463 static bool dpcm_end_walk_at_be(struct snd_soc_dapm_widget
*widget
,
1464 enum snd_soc_dapm_direction dir
)
1466 struct snd_soc_card
*card
= widget
->dapm
->card
;
1467 struct snd_soc_pcm_runtime
*rtd
;
1470 /* adjust dir to stream */
1471 if (dir
== SND_SOC_DAPM_DIR_OUT
)
1472 stream
= SNDRV_PCM_STREAM_PLAYBACK
;
1474 stream
= SNDRV_PCM_STREAM_CAPTURE
;
1476 rtd
= dpcm_get_be(card
, widget
, stream
);
1483 int dpcm_path_get(struct snd_soc_pcm_runtime
*fe
,
1484 int stream
, struct snd_soc_dapm_widget_list
**list
)
1486 struct snd_soc_dai
*cpu_dai
= fe
->cpu_dai
;
1489 if (fe
->num_cpus
> 1) {
1491 "%s doesn't support Multi CPU yet\n", __func__
);
1495 /* get number of valid DAI paths and their widgets */
1496 paths
= snd_soc_dapm_dai_get_connected_widgets(cpu_dai
, stream
, list
,
1497 dpcm_end_walk_at_be
);
1499 dev_dbg(fe
->dev
, "ASoC: found %d audio %s paths\n", paths
,
1500 stream
? "capture" : "playback");
1505 void dpcm_path_put(struct snd_soc_dapm_widget_list
**list
)
1507 snd_soc_dapm_dai_free_widgets(list
);
1510 static bool dpcm_be_is_active(struct snd_soc_dpcm
*dpcm
, int stream
,
1511 struct snd_soc_dapm_widget_list
*list
)
1513 struct snd_soc_dapm_widget
*widget
;
1514 struct snd_soc_dai
*dai
;
1517 /* is there a valid DAI widget for this BE */
1518 for_each_rtd_dais(dpcm
->be
, i
, dai
) {
1519 widget
= snd_soc_dai_get_widget(dai
, stream
);
1522 * The BE is pruned only if none of the dai
1523 * widgets are in the active list.
1525 if (widget
&& widget_in_list(list
, widget
))
1532 static int dpcm_prune_paths(struct snd_soc_pcm_runtime
*fe
, int stream
,
1533 struct snd_soc_dapm_widget_list
**list_
)
1535 struct snd_soc_dpcm
*dpcm
;
1538 /* Destroy any old FE <--> BE connections */
1539 for_each_dpcm_be(fe
, stream
, dpcm
) {
1540 if (dpcm_be_is_active(dpcm
, stream
, *list_
))
1543 dev_dbg(fe
->dev
, "ASoC: pruning %s BE %s for %s\n",
1544 stream
? "capture" : "playback",
1545 dpcm
->be
->dai_link
->name
, fe
->dai_link
->name
);
1546 dpcm
->state
= SND_SOC_DPCM_LINK_STATE_FREE
;
1547 dpcm
->be
->dpcm
[stream
].runtime_update
= SND_SOC_DPCM_UPDATE_BE
;
1551 dev_dbg(fe
->dev
, "ASoC: found %d old BE paths for pruning\n", prune
);
1555 static int dpcm_add_paths(struct snd_soc_pcm_runtime
*fe
, int stream
,
1556 struct snd_soc_dapm_widget_list
**list_
)
1558 struct snd_soc_card
*card
= fe
->card
;
1559 struct snd_soc_dapm_widget_list
*list
= *list_
;
1560 struct snd_soc_pcm_runtime
*be
;
1561 struct snd_soc_dapm_widget
*widget
;
1562 int i
, new = 0, err
;
1564 /* Create any new FE <--> BE connections */
1565 for_each_dapm_widgets(list
, i
, widget
) {
1567 switch (widget
->id
) {
1568 case snd_soc_dapm_dai_in
:
1569 if (stream
!= SNDRV_PCM_STREAM_PLAYBACK
)
1572 case snd_soc_dapm_dai_out
:
1573 if (stream
!= SNDRV_PCM_STREAM_CAPTURE
)
1580 /* is there a valid BE rtd for this widget */
1581 be
= dpcm_get_be(card
, widget
, stream
);
1583 dev_err(fe
->dev
, "ASoC: no BE found for %s\n",
1588 /* don't connect if FE is not running */
1589 if (!fe
->dpcm
[stream
].runtime
&& !fe
->fe_compr
)
1592 /* newly connected FE and BE */
1593 err
= dpcm_be_connect(fe
, be
, stream
);
1595 dev_err(fe
->dev
, "ASoC: can't connect %s\n",
1598 } else if (err
== 0) /* already connected */
1602 be
->dpcm
[stream
].runtime_update
= SND_SOC_DPCM_UPDATE_BE
;
1606 dev_dbg(fe
->dev
, "ASoC: found %d new BE paths\n", new);
1611 * Find the corresponding BE DAIs that source or sink audio to this
1614 int dpcm_process_paths(struct snd_soc_pcm_runtime
*fe
,
1615 int stream
, struct snd_soc_dapm_widget_list
**list
, int new)
1618 return dpcm_add_paths(fe
, stream
, list
);
1620 return dpcm_prune_paths(fe
, stream
, list
);
1623 void dpcm_clear_pending_state(struct snd_soc_pcm_runtime
*fe
, int stream
)
1625 struct snd_soc_dpcm
*dpcm
;
1626 unsigned long flags
;
1628 spin_lock_irqsave(&fe
->card
->dpcm_lock
, flags
);
1629 for_each_dpcm_be(fe
, stream
, dpcm
)
1630 dpcm
->be
->dpcm
[stream
].runtime_update
=
1631 SND_SOC_DPCM_UPDATE_NO
;
1632 spin_unlock_irqrestore(&fe
->card
->dpcm_lock
, flags
);
1635 static void dpcm_be_dai_startup_unwind(struct snd_soc_pcm_runtime
*fe
,
1638 struct snd_soc_dpcm
*dpcm
;
1640 /* disable any enabled and non active backends */
1641 for_each_dpcm_be(fe
, stream
, dpcm
) {
1643 struct snd_soc_pcm_runtime
*be
= dpcm
->be
;
1644 struct snd_pcm_substream
*be_substream
=
1645 snd_soc_dpcm_get_substream(be
, stream
);
1647 if (be
->dpcm
[stream
].users
== 0)
1648 dev_err(be
->dev
, "ASoC: no users %s at close - state %d\n",
1649 stream
? "capture" : "playback",
1650 be
->dpcm
[stream
].state
);
1652 if (--be
->dpcm
[stream
].users
!= 0)
1655 if (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_OPEN
)
1658 soc_pcm_close(be_substream
);
1659 be_substream
->runtime
= NULL
;
1660 be
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_CLOSE
;
1664 int dpcm_be_dai_startup(struct snd_soc_pcm_runtime
*fe
, int stream
)
1666 struct snd_soc_dpcm
*dpcm
;
1669 /* only startup BE DAIs that are either sinks or sources to this FE DAI */
1670 for_each_dpcm_be(fe
, stream
, dpcm
) {
1672 struct snd_soc_pcm_runtime
*be
= dpcm
->be
;
1673 struct snd_pcm_substream
*be_substream
=
1674 snd_soc_dpcm_get_substream(be
, stream
);
1676 if (!be_substream
) {
1677 dev_err(be
->dev
, "ASoC: no backend %s stream\n",
1678 stream
? "capture" : "playback");
1682 /* is this op for this BE ? */
1683 if (!snd_soc_dpcm_be_can_update(fe
, be
, stream
))
1686 /* first time the dpcm is open ? */
1687 if (be
->dpcm
[stream
].users
== DPCM_MAX_BE_USERS
)
1688 dev_err(be
->dev
, "ASoC: too many users %s at open %d\n",
1689 stream
? "capture" : "playback",
1690 be
->dpcm
[stream
].state
);
1692 if (be
->dpcm
[stream
].users
++ != 0)
1695 if ((be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_NEW
) &&
1696 (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_CLOSE
))
1699 dev_dbg(be
->dev
, "ASoC: open %s BE %s\n",
1700 stream
? "capture" : "playback", be
->dai_link
->name
);
1702 be_substream
->runtime
= be
->dpcm
[stream
].runtime
;
1703 err
= soc_pcm_open(be_substream
);
1705 dev_err(be
->dev
, "ASoC: BE open failed %d\n", err
);
1706 be
->dpcm
[stream
].users
--;
1707 if (be
->dpcm
[stream
].users
< 0)
1708 dev_err(be
->dev
, "ASoC: no users %s at unwind %d\n",
1709 stream
? "capture" : "playback",
1710 be
->dpcm
[stream
].state
);
1712 be
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_CLOSE
;
1716 be
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_OPEN
;
1723 /* disable any enabled and non active backends */
1724 for_each_dpcm_be_rollback(fe
, stream
, dpcm
) {
1725 struct snd_soc_pcm_runtime
*be
= dpcm
->be
;
1726 struct snd_pcm_substream
*be_substream
=
1727 snd_soc_dpcm_get_substream(be
, stream
);
1729 if (!snd_soc_dpcm_be_can_update(fe
, be
, stream
))
1732 if (be
->dpcm
[stream
].users
== 0)
1733 dev_err(be
->dev
, "ASoC: no users %s at close %d\n",
1734 stream
? "capture" : "playback",
1735 be
->dpcm
[stream
].state
);
1737 if (--be
->dpcm
[stream
].users
!= 0)
1740 if (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_OPEN
)
1743 soc_pcm_close(be_substream
);
1744 be_substream
->runtime
= NULL
;
1745 be
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_CLOSE
;
1751 static void dpcm_init_runtime_hw(struct snd_pcm_runtime
*runtime
,
1752 struct snd_soc_pcm_stream
*stream
)
1754 runtime
->hw
.rate_min
= stream
->rate_min
;
1755 runtime
->hw
.rate_max
= min_not_zero(stream
->rate_max
, UINT_MAX
);
1756 runtime
->hw
.channels_min
= stream
->channels_min
;
1757 runtime
->hw
.channels_max
= stream
->channels_max
;
1758 if (runtime
->hw
.formats
)
1759 runtime
->hw
.formats
&= stream
->formats
;
1761 runtime
->hw
.formats
= stream
->formats
;
1762 runtime
->hw
.rates
= stream
->rates
;
1765 static void dpcm_runtime_merge_format(struct snd_pcm_substream
*substream
,
1768 struct snd_soc_pcm_runtime
*fe
= substream
->private_data
;
1769 struct snd_soc_dpcm
*dpcm
;
1770 struct snd_soc_dai
*dai
;
1771 int stream
= substream
->stream
;
1773 if (!fe
->dai_link
->dpcm_merged_format
)
1777 * It returns merged BE codec format
1778 * if FE want to use it (= dpcm_merged_format)
1781 for_each_dpcm_be(fe
, stream
, dpcm
) {
1782 struct snd_soc_pcm_runtime
*be
= dpcm
->be
;
1783 struct snd_soc_pcm_stream
*codec_stream
;
1786 for_each_rtd_codec_dais(be
, i
, dai
) {
1788 * Skip CODECs which don't support the current stream
1789 * type. See soc_pcm_init_runtime_hw() for more details
1791 if (!snd_soc_dai_stream_valid(dai
, stream
))
1794 codec_stream
= snd_soc_dai_get_pcm_stream(dai
, stream
);
1796 *formats
&= codec_stream
->formats
;
1801 static void dpcm_runtime_merge_chan(struct snd_pcm_substream
*substream
,
1802 unsigned int *channels_min
,
1803 unsigned int *channels_max
)
1805 struct snd_soc_pcm_runtime
*fe
= substream
->private_data
;
1806 struct snd_soc_dpcm
*dpcm
;
1807 int stream
= substream
->stream
;
1809 if (!fe
->dai_link
->dpcm_merged_chan
)
1813 * It returns merged BE codec channel;
1814 * if FE want to use it (= dpcm_merged_chan)
1817 for_each_dpcm_be(fe
, stream
, dpcm
) {
1818 struct snd_soc_pcm_runtime
*be
= dpcm
->be
;
1819 struct snd_soc_pcm_stream
*codec_stream
;
1820 struct snd_soc_pcm_stream
*cpu_stream
;
1821 struct snd_soc_dai
*dai
;
1824 for_each_rtd_cpu_dais(be
, i
, dai
) {
1826 * Skip CPUs which don't support the current stream
1827 * type. See soc_pcm_init_runtime_hw() for more details
1829 if (!snd_soc_dai_stream_valid(dai
, stream
))
1832 cpu_stream
= snd_soc_dai_get_pcm_stream(dai
, stream
);
1834 *channels_min
= max(*channels_min
,
1835 cpu_stream
->channels_min
);
1836 *channels_max
= min(*channels_max
,
1837 cpu_stream
->channels_max
);
1841 * chan min/max cannot be enforced if there are multiple CODEC
1842 * DAIs connected to a single CPU DAI, use CPU DAI's directly
1844 if (be
->num_codecs
== 1) {
1845 codec_stream
= snd_soc_dai_get_pcm_stream(be
->codec_dais
[0], stream
);
1847 *channels_min
= max(*channels_min
,
1848 codec_stream
->channels_min
);
1849 *channels_max
= min(*channels_max
,
1850 codec_stream
->channels_max
);
1855 static void dpcm_runtime_merge_rate(struct snd_pcm_substream
*substream
,
1856 unsigned int *rates
,
1857 unsigned int *rate_min
,
1858 unsigned int *rate_max
)
1860 struct snd_soc_pcm_runtime
*fe
= substream
->private_data
;
1861 struct snd_soc_dpcm
*dpcm
;
1862 int stream
= substream
->stream
;
1864 if (!fe
->dai_link
->dpcm_merged_rate
)
1868 * It returns merged BE codec channel;
1869 * if FE want to use it (= dpcm_merged_chan)
1872 for_each_dpcm_be(fe
, stream
, dpcm
) {
1873 struct snd_soc_pcm_runtime
*be
= dpcm
->be
;
1874 struct snd_soc_pcm_stream
*pcm
;
1875 struct snd_soc_dai
*dai
;
1878 for_each_rtd_dais(be
, i
, dai
) {
1880 * Skip DAIs which don't support the current stream
1881 * type. See soc_pcm_init_runtime_hw() for more details
1883 if (!snd_soc_dai_stream_valid(dai
, stream
))
1886 pcm
= snd_soc_dai_get_pcm_stream(dai
, stream
);
1888 *rate_min
= max(*rate_min
, pcm
->rate_min
);
1889 *rate_max
= min_not_zero(*rate_max
, pcm
->rate_max
);
1890 *rates
= snd_pcm_rate_mask_intersect(*rates
, pcm
->rates
);
1895 static void dpcm_set_fe_runtime(struct snd_pcm_substream
*substream
)
1897 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1898 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
1899 struct snd_soc_dai
*cpu_dai
;
1902 for_each_rtd_cpu_dais(rtd
, i
, cpu_dai
) {
1904 * Skip CPUs which don't support the current stream
1905 * type. See soc_pcm_init_runtime_hw() for more details
1907 if (!snd_soc_dai_stream_valid(cpu_dai
, substream
->stream
))
1910 dpcm_init_runtime_hw(runtime
,
1911 snd_soc_dai_get_pcm_stream(cpu_dai
,
1912 substream
->stream
));
1915 dpcm_runtime_merge_format(substream
, &runtime
->hw
.formats
);
1916 dpcm_runtime_merge_chan(substream
, &runtime
->hw
.channels_min
,
1917 &runtime
->hw
.channels_max
);
1918 dpcm_runtime_merge_rate(substream
, &runtime
->hw
.rates
,
1919 &runtime
->hw
.rate_min
, &runtime
->hw
.rate_max
);
1922 static int dpcm_fe_dai_do_trigger(struct snd_pcm_substream
*substream
, int cmd
);
1924 /* Set FE's runtime_update state; the state is protected via PCM stream lock
1925 * for avoiding the race with trigger callback.
1926 * If the state is unset and a trigger is pending while the previous operation,
1927 * process the pending trigger action here.
1929 static void dpcm_set_fe_update_state(struct snd_soc_pcm_runtime
*fe
,
1930 int stream
, enum snd_soc_dpcm_update state
)
1932 struct snd_pcm_substream
*substream
=
1933 snd_soc_dpcm_get_substream(fe
, stream
);
1935 snd_pcm_stream_lock_irq(substream
);
1936 if (state
== SND_SOC_DPCM_UPDATE_NO
&& fe
->dpcm
[stream
].trigger_pending
) {
1937 dpcm_fe_dai_do_trigger(substream
,
1938 fe
->dpcm
[stream
].trigger_pending
- 1);
1939 fe
->dpcm
[stream
].trigger_pending
= 0;
1941 fe
->dpcm
[stream
].runtime_update
= state
;
1942 snd_pcm_stream_unlock_irq(substream
);
1945 static int dpcm_apply_symmetry(struct snd_pcm_substream
*fe_substream
,
1948 struct snd_soc_dpcm
*dpcm
;
1949 struct snd_soc_pcm_runtime
*fe
= fe_substream
->private_data
;
1950 struct snd_soc_dai
*fe_cpu_dai
;
1954 /* apply symmetry for FE */
1955 if (soc_pcm_has_symmetry(fe_substream
))
1956 fe_substream
->runtime
->hw
.info
|= SNDRV_PCM_INFO_JOINT_DUPLEX
;
1958 for_each_rtd_cpu_dais (fe
, i
, fe_cpu_dai
) {
1959 /* Symmetry only applies if we've got an active stream. */
1960 if (fe_cpu_dai
->active
) {
1961 err
= soc_pcm_apply_symmetry(fe_substream
, fe_cpu_dai
);
1967 /* apply symmetry for BE */
1968 for_each_dpcm_be(fe
, stream
, dpcm
) {
1969 struct snd_soc_pcm_runtime
*be
= dpcm
->be
;
1970 struct snd_pcm_substream
*be_substream
=
1971 snd_soc_dpcm_get_substream(be
, stream
);
1972 struct snd_soc_pcm_runtime
*rtd
;
1973 struct snd_soc_dai
*dai
;
1976 /* A backend may not have the requested substream */
1980 rtd
= be_substream
->private_data
;
1981 if (rtd
->dai_link
->be_hw_params_fixup
)
1984 if (soc_pcm_has_symmetry(be_substream
))
1985 be_substream
->runtime
->hw
.info
|= SNDRV_PCM_INFO_JOINT_DUPLEX
;
1987 /* Symmetry only applies if we've got an active stream. */
1988 for_each_rtd_dais(rtd
, i
, dai
) {
1990 err
= soc_pcm_apply_symmetry(fe_substream
, dai
);
2000 static int dpcm_fe_dai_startup(struct snd_pcm_substream
*fe_substream
)
2002 struct snd_soc_pcm_runtime
*fe
= fe_substream
->private_data
;
2003 struct snd_pcm_runtime
*runtime
= fe_substream
->runtime
;
2004 int stream
= fe_substream
->stream
, ret
= 0;
2006 dpcm_set_fe_update_state(fe
, stream
, SND_SOC_DPCM_UPDATE_FE
);
2008 ret
= dpcm_be_dai_startup(fe
, stream
);
2010 dev_err(fe
->dev
,"ASoC: failed to start some BEs %d\n", ret
);
2014 dev_dbg(fe
->dev
, "ASoC: open FE %s\n", fe
->dai_link
->name
);
2016 /* start the DAI frontend */
2017 ret
= soc_pcm_open(fe_substream
);
2019 dev_err(fe
->dev
,"ASoC: failed to start FE %d\n", ret
);
2023 fe
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_OPEN
;
2025 dpcm_set_fe_runtime(fe_substream
);
2026 snd_pcm_limit_hw_rates(runtime
);
2028 ret
= dpcm_apply_symmetry(fe_substream
, stream
);
2030 dev_err(fe
->dev
, "ASoC: failed to apply dpcm symmetry %d\n",
2035 dpcm_be_dai_startup_unwind(fe
, stream
);
2037 dpcm_set_fe_update_state(fe
, stream
, SND_SOC_DPCM_UPDATE_NO
);
2041 int dpcm_be_dai_shutdown(struct snd_soc_pcm_runtime
*fe
, int stream
)
2043 struct snd_soc_dpcm
*dpcm
;
2045 /* only shutdown BEs that are either sinks or sources to this FE DAI */
2046 for_each_dpcm_be(fe
, stream
, dpcm
) {
2048 struct snd_soc_pcm_runtime
*be
= dpcm
->be
;
2049 struct snd_pcm_substream
*be_substream
=
2050 snd_soc_dpcm_get_substream(be
, stream
);
2052 /* is this op for this BE ? */
2053 if (!snd_soc_dpcm_be_can_update(fe
, be
, stream
))
2056 if (be
->dpcm
[stream
].users
== 0)
2057 dev_err(be
->dev
, "ASoC: no users %s at close - state %d\n",
2058 stream
? "capture" : "playback",
2059 be
->dpcm
[stream
].state
);
2061 if (--be
->dpcm
[stream
].users
!= 0)
2064 if ((be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_HW_FREE
) &&
2065 (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_OPEN
)) {
2066 soc_pcm_hw_free(be_substream
);
2067 be
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_HW_FREE
;
2070 dev_dbg(be
->dev
, "ASoC: close BE %s\n",
2071 be
->dai_link
->name
);
2073 soc_pcm_close(be_substream
);
2074 be_substream
->runtime
= NULL
;
2076 be
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_CLOSE
;
2081 static int dpcm_fe_dai_shutdown(struct snd_pcm_substream
*substream
)
2083 struct snd_soc_pcm_runtime
*fe
= substream
->private_data
;
2084 int stream
= substream
->stream
;
2086 dpcm_set_fe_update_state(fe
, stream
, SND_SOC_DPCM_UPDATE_FE
);
2088 /* shutdown the BEs */
2089 dpcm_be_dai_shutdown(fe
, stream
);
2091 dev_dbg(fe
->dev
, "ASoC: close FE %s\n", fe
->dai_link
->name
);
2093 /* now shutdown the frontend */
2094 soc_pcm_close(substream
);
2096 /* run the stream event for each BE */
2097 dpcm_dapm_stream_event(fe
, stream
, SND_SOC_DAPM_STREAM_STOP
);
2099 fe
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_CLOSE
;
2100 dpcm_set_fe_update_state(fe
, stream
, SND_SOC_DPCM_UPDATE_NO
);
2104 int dpcm_be_dai_hw_free(struct snd_soc_pcm_runtime
*fe
, int stream
)
2106 struct snd_soc_dpcm
*dpcm
;
2108 /* only hw_params backends that are either sinks or sources
2109 * to this frontend DAI */
2110 for_each_dpcm_be(fe
, stream
, dpcm
) {
2112 struct snd_soc_pcm_runtime
*be
= dpcm
->be
;
2113 struct snd_pcm_substream
*be_substream
=
2114 snd_soc_dpcm_get_substream(be
, stream
);
2116 /* is this op for this BE ? */
2117 if (!snd_soc_dpcm_be_can_update(fe
, be
, stream
))
2120 /* only free hw when no longer used - check all FEs */
2121 if (!snd_soc_dpcm_can_be_free_stop(fe
, be
, stream
))
2124 /* do not free hw if this BE is used by other FE */
2125 if (be
->dpcm
[stream
].users
> 1)
2128 if ((be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_HW_PARAMS
) &&
2129 (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_PREPARE
) &&
2130 (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_HW_FREE
) &&
2131 (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_PAUSED
) &&
2132 (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_STOP
) &&
2133 (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_SUSPEND
))
2136 dev_dbg(be
->dev
, "ASoC: hw_free BE %s\n",
2137 be
->dai_link
->name
);
2139 soc_pcm_hw_free(be_substream
);
2141 be
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_HW_FREE
;
2147 static int dpcm_fe_dai_hw_free(struct snd_pcm_substream
*substream
)
2149 struct snd_soc_pcm_runtime
*fe
= substream
->private_data
;
2150 int err
, stream
= substream
->stream
;
2152 mutex_lock_nested(&fe
->card
->mutex
, SND_SOC_CARD_CLASS_RUNTIME
);
2153 dpcm_set_fe_update_state(fe
, stream
, SND_SOC_DPCM_UPDATE_FE
);
2155 dev_dbg(fe
->dev
, "ASoC: hw_free FE %s\n", fe
->dai_link
->name
);
2157 /* call hw_free on the frontend */
2158 err
= soc_pcm_hw_free(substream
);
2160 dev_err(fe
->dev
,"ASoC: hw_free FE %s failed\n",
2161 fe
->dai_link
->name
);
2163 /* only hw_params backends that are either sinks or sources
2164 * to this frontend DAI */
2165 err
= dpcm_be_dai_hw_free(fe
, stream
);
2167 fe
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_HW_FREE
;
2168 dpcm_set_fe_update_state(fe
, stream
, SND_SOC_DPCM_UPDATE_NO
);
2170 mutex_unlock(&fe
->card
->mutex
);
2174 int dpcm_be_dai_hw_params(struct snd_soc_pcm_runtime
*fe
, int stream
)
2176 struct snd_soc_dpcm
*dpcm
;
2179 for_each_dpcm_be(fe
, stream
, dpcm
) {
2181 struct snd_soc_pcm_runtime
*be
= dpcm
->be
;
2182 struct snd_pcm_substream
*be_substream
=
2183 snd_soc_dpcm_get_substream(be
, stream
);
2185 /* is this op for this BE ? */
2186 if (!snd_soc_dpcm_be_can_update(fe
, be
, stream
))
2189 /* copy params for each dpcm */
2190 memcpy(&dpcm
->hw_params
, &fe
->dpcm
[stream
].hw_params
,
2191 sizeof(struct snd_pcm_hw_params
));
2193 /* perform any hw_params fixups */
2194 if (be
->dai_link
->be_hw_params_fixup
) {
2195 ret
= be
->dai_link
->be_hw_params_fixup(be
,
2199 "ASoC: hw_params BE fixup failed %d\n",
2205 /* copy the fixed-up hw params for BE dai */
2206 memcpy(&be
->dpcm
[stream
].hw_params
, &dpcm
->hw_params
,
2207 sizeof(struct snd_pcm_hw_params
));
2209 /* only allow hw_params() if no connected FEs are running */
2210 if (!snd_soc_dpcm_can_be_params(fe
, be
, stream
))
2213 if ((be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_OPEN
) &&
2214 (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_HW_PARAMS
) &&
2215 (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_HW_FREE
))
2218 dev_dbg(be
->dev
, "ASoC: hw_params BE %s\n",
2219 be
->dai_link
->name
);
2221 ret
= soc_pcm_hw_params(be_substream
, &dpcm
->hw_params
);
2223 dev_err(dpcm
->be
->dev
,
2224 "ASoC: hw_params BE failed %d\n", ret
);
2228 be
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_HW_PARAMS
;
2233 /* disable any enabled and non active backends */
2234 for_each_dpcm_be_rollback(fe
, stream
, dpcm
) {
2235 struct snd_soc_pcm_runtime
*be
= dpcm
->be
;
2236 struct snd_pcm_substream
*be_substream
=
2237 snd_soc_dpcm_get_substream(be
, stream
);
2239 if (!snd_soc_dpcm_be_can_update(fe
, be
, stream
))
2242 /* only allow hw_free() if no connected FEs are running */
2243 if (!snd_soc_dpcm_can_be_free_stop(fe
, be
, stream
))
2246 if ((be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_OPEN
) &&
2247 (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_HW_PARAMS
) &&
2248 (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_HW_FREE
) &&
2249 (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_STOP
))
2252 soc_pcm_hw_free(be_substream
);
2258 static int dpcm_fe_dai_hw_params(struct snd_pcm_substream
*substream
,
2259 struct snd_pcm_hw_params
*params
)
2261 struct snd_soc_pcm_runtime
*fe
= substream
->private_data
;
2262 int ret
, stream
= substream
->stream
;
2264 mutex_lock_nested(&fe
->card
->mutex
, SND_SOC_CARD_CLASS_RUNTIME
);
2265 dpcm_set_fe_update_state(fe
, stream
, SND_SOC_DPCM_UPDATE_FE
);
2267 memcpy(&fe
->dpcm
[stream
].hw_params
, params
,
2268 sizeof(struct snd_pcm_hw_params
));
2269 ret
= dpcm_be_dai_hw_params(fe
, stream
);
2271 dev_err(fe
->dev
,"ASoC: hw_params BE failed %d\n", ret
);
2275 dev_dbg(fe
->dev
, "ASoC: hw_params FE %s rate %d chan %x fmt %d\n",
2276 fe
->dai_link
->name
, params_rate(params
),
2277 params_channels(params
), params_format(params
));
2279 /* call hw_params on the frontend */
2280 ret
= soc_pcm_hw_params(substream
, params
);
2282 dev_err(fe
->dev
,"ASoC: hw_params FE failed %d\n", ret
);
2283 dpcm_be_dai_hw_free(fe
, stream
);
2285 fe
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_HW_PARAMS
;
2288 dpcm_set_fe_update_state(fe
, stream
, SND_SOC_DPCM_UPDATE_NO
);
2289 mutex_unlock(&fe
->card
->mutex
);
2293 static int dpcm_do_trigger(struct snd_soc_dpcm
*dpcm
,
2294 struct snd_pcm_substream
*substream
, int cmd
)
2298 dev_dbg(dpcm
->be
->dev
, "ASoC: trigger BE %s cmd %d\n",
2299 dpcm
->be
->dai_link
->name
, cmd
);
2301 ret
= soc_pcm_trigger(substream
, cmd
);
2303 dev_err(dpcm
->be
->dev
,"ASoC: trigger BE failed %d\n", ret
);
2308 int dpcm_be_dai_trigger(struct snd_soc_pcm_runtime
*fe
, int stream
,
2311 struct snd_soc_dpcm
*dpcm
;
2314 for_each_dpcm_be(fe
, stream
, dpcm
) {
2316 struct snd_soc_pcm_runtime
*be
= dpcm
->be
;
2317 struct snd_pcm_substream
*be_substream
=
2318 snd_soc_dpcm_get_substream(be
, stream
);
2320 /* is this op for this BE ? */
2321 if (!snd_soc_dpcm_be_can_update(fe
, be
, stream
))
2325 case SNDRV_PCM_TRIGGER_START
:
2326 if ((be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_PREPARE
) &&
2327 (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_STOP
) &&
2328 (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_PAUSED
))
2331 ret
= dpcm_do_trigger(dpcm
, be_substream
, cmd
);
2335 be
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_START
;
2337 case SNDRV_PCM_TRIGGER_RESUME
:
2338 if ((be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_SUSPEND
))
2341 ret
= dpcm_do_trigger(dpcm
, be_substream
, cmd
);
2345 be
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_START
;
2347 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
2348 if ((be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_PAUSED
))
2351 ret
= dpcm_do_trigger(dpcm
, be_substream
, cmd
);
2355 be
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_START
;
2357 case SNDRV_PCM_TRIGGER_STOP
:
2358 if ((be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_START
) &&
2359 (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_PAUSED
))
2362 if (!snd_soc_dpcm_can_be_free_stop(fe
, be
, stream
))
2365 ret
= dpcm_do_trigger(dpcm
, be_substream
, cmd
);
2369 be
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_STOP
;
2371 case SNDRV_PCM_TRIGGER_SUSPEND
:
2372 if (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_START
)
2375 if (!snd_soc_dpcm_can_be_free_stop(fe
, be
, stream
))
2378 ret
= dpcm_do_trigger(dpcm
, be_substream
, cmd
);
2382 be
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_SUSPEND
;
2384 case SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
2385 if (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_START
)
2388 if (!snd_soc_dpcm_can_be_free_stop(fe
, be
, stream
))
2391 ret
= dpcm_do_trigger(dpcm
, be_substream
, cmd
);
2395 be
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_PAUSED
;
2402 EXPORT_SYMBOL_GPL(dpcm_be_dai_trigger
);
2404 static int dpcm_dai_trigger_fe_be(struct snd_pcm_substream
*substream
,
2405 int cmd
, bool fe_first
)
2407 struct snd_soc_pcm_runtime
*fe
= substream
->private_data
;
2410 /* call trigger on the frontend before the backend. */
2412 dev_dbg(fe
->dev
, "ASoC: pre trigger FE %s cmd %d\n",
2413 fe
->dai_link
->name
, cmd
);
2415 ret
= soc_pcm_trigger(substream
, cmd
);
2419 ret
= dpcm_be_dai_trigger(fe
, substream
->stream
, cmd
);
2423 /* call trigger on the frontend after the backend. */
2424 ret
= dpcm_be_dai_trigger(fe
, substream
->stream
, cmd
);
2428 dev_dbg(fe
->dev
, "ASoC: post trigger FE %s cmd %d\n",
2429 fe
->dai_link
->name
, cmd
);
2431 ret
= soc_pcm_trigger(substream
, cmd
);
2436 static int dpcm_fe_dai_do_trigger(struct snd_pcm_substream
*substream
, int cmd
)
2438 struct snd_soc_pcm_runtime
*fe
= substream
->private_data
;
2439 int stream
= substream
->stream
;
2441 enum snd_soc_dpcm_trigger trigger
= fe
->dai_link
->trigger
[stream
];
2443 fe
->dpcm
[stream
].runtime_update
= SND_SOC_DPCM_UPDATE_FE
;
2446 case SND_SOC_DPCM_TRIGGER_PRE
:
2448 case SNDRV_PCM_TRIGGER_START
:
2449 case SNDRV_PCM_TRIGGER_RESUME
:
2450 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
2451 ret
= dpcm_dai_trigger_fe_be(substream
, cmd
, true);
2453 case SNDRV_PCM_TRIGGER_STOP
:
2454 case SNDRV_PCM_TRIGGER_SUSPEND
:
2455 case SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
2456 ret
= dpcm_dai_trigger_fe_be(substream
, cmd
, false);
2463 case SND_SOC_DPCM_TRIGGER_POST
:
2465 case SNDRV_PCM_TRIGGER_START
:
2466 case SNDRV_PCM_TRIGGER_RESUME
:
2467 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
2468 ret
= dpcm_dai_trigger_fe_be(substream
, cmd
, false);
2470 case SNDRV_PCM_TRIGGER_STOP
:
2471 case SNDRV_PCM_TRIGGER_SUSPEND
:
2472 case SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
2473 ret
= dpcm_dai_trigger_fe_be(substream
, cmd
, true);
2480 case SND_SOC_DPCM_TRIGGER_BESPOKE
:
2481 /* bespoke trigger() - handles both FE and BEs */
2483 dev_dbg(fe
->dev
, "ASoC: bespoke trigger FE %s cmd %d\n",
2484 fe
->dai_link
->name
, cmd
);
2486 ret
= soc_pcm_bespoke_trigger(substream
, cmd
);
2489 dev_err(fe
->dev
, "ASoC: invalid trigger cmd %d for %s\n", cmd
,
2490 fe
->dai_link
->name
);
2496 dev_err(fe
->dev
, "ASoC: trigger FE cmd: %d failed: %d\n",
2502 case SNDRV_PCM_TRIGGER_START
:
2503 case SNDRV_PCM_TRIGGER_RESUME
:
2504 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
2505 fe
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_START
;
2507 case SNDRV_PCM_TRIGGER_STOP
:
2508 case SNDRV_PCM_TRIGGER_SUSPEND
:
2509 fe
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_STOP
;
2511 case SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
2512 fe
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_PAUSED
;
2517 fe
->dpcm
[stream
].runtime_update
= SND_SOC_DPCM_UPDATE_NO
;
2521 static int dpcm_fe_dai_trigger(struct snd_pcm_substream
*substream
, int cmd
)
2523 struct snd_soc_pcm_runtime
*fe
= substream
->private_data
;
2524 int stream
= substream
->stream
;
2526 /* if FE's runtime_update is already set, we're in race;
2527 * process this trigger later at exit
2529 if (fe
->dpcm
[stream
].runtime_update
!= SND_SOC_DPCM_UPDATE_NO
) {
2530 fe
->dpcm
[stream
].trigger_pending
= cmd
+ 1;
2531 return 0; /* delayed, assuming it's successful */
2534 /* we're alone, let's trigger */
2535 return dpcm_fe_dai_do_trigger(substream
, cmd
);
2538 int dpcm_be_dai_prepare(struct snd_soc_pcm_runtime
*fe
, int stream
)
2540 struct snd_soc_dpcm
*dpcm
;
2543 for_each_dpcm_be(fe
, stream
, dpcm
) {
2545 struct snd_soc_pcm_runtime
*be
= dpcm
->be
;
2546 struct snd_pcm_substream
*be_substream
=
2547 snd_soc_dpcm_get_substream(be
, stream
);
2549 /* is this op for this BE ? */
2550 if (!snd_soc_dpcm_be_can_update(fe
, be
, stream
))
2553 if ((be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_HW_PARAMS
) &&
2554 (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_STOP
) &&
2555 (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_SUSPEND
) &&
2556 (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_PAUSED
))
2559 dev_dbg(be
->dev
, "ASoC: prepare BE %s\n",
2560 be
->dai_link
->name
);
2562 ret
= soc_pcm_prepare(be_substream
);
2564 dev_err(be
->dev
, "ASoC: backend prepare failed %d\n",
2569 be
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_PREPARE
;
2574 static int dpcm_fe_dai_prepare(struct snd_pcm_substream
*substream
)
2576 struct snd_soc_pcm_runtime
*fe
= substream
->private_data
;
2577 int stream
= substream
->stream
, ret
= 0;
2579 mutex_lock_nested(&fe
->card
->mutex
, SND_SOC_CARD_CLASS_RUNTIME
);
2581 dev_dbg(fe
->dev
, "ASoC: prepare FE %s\n", fe
->dai_link
->name
);
2583 dpcm_set_fe_update_state(fe
, stream
, SND_SOC_DPCM_UPDATE_FE
);
2585 /* there is no point preparing this FE if there are no BEs */
2586 if (list_empty(&fe
->dpcm
[stream
].be_clients
)) {
2587 dev_err(fe
->dev
, "ASoC: no backend DAIs enabled for %s\n",
2588 fe
->dai_link
->name
);
2593 ret
= dpcm_be_dai_prepare(fe
, stream
);
2597 /* call prepare on the frontend */
2598 ret
= soc_pcm_prepare(substream
);
2600 dev_err(fe
->dev
,"ASoC: prepare FE %s failed\n",
2601 fe
->dai_link
->name
);
2605 /* run the stream event for each BE */
2606 dpcm_dapm_stream_event(fe
, stream
, SND_SOC_DAPM_STREAM_START
);
2607 fe
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_PREPARE
;
2610 dpcm_set_fe_update_state(fe
, stream
, SND_SOC_DPCM_UPDATE_NO
);
2611 mutex_unlock(&fe
->card
->mutex
);
2616 static int dpcm_run_update_shutdown(struct snd_soc_pcm_runtime
*fe
, int stream
)
2618 struct snd_pcm_substream
*substream
=
2619 snd_soc_dpcm_get_substream(fe
, stream
);
2620 enum snd_soc_dpcm_trigger trigger
= fe
->dai_link
->trigger
[stream
];
2623 dev_dbg(fe
->dev
, "ASoC: runtime %s close on FE %s\n",
2624 stream
? "capture" : "playback", fe
->dai_link
->name
);
2626 if (trigger
== SND_SOC_DPCM_TRIGGER_BESPOKE
) {
2627 /* call bespoke trigger - FE takes care of all BE triggers */
2628 dev_dbg(fe
->dev
, "ASoC: bespoke trigger FE %s cmd stop\n",
2629 fe
->dai_link
->name
);
2631 err
= soc_pcm_bespoke_trigger(substream
, SNDRV_PCM_TRIGGER_STOP
);
2633 dev_err(fe
->dev
,"ASoC: trigger FE failed %d\n", err
);
2635 dev_dbg(fe
->dev
, "ASoC: trigger FE %s cmd stop\n",
2636 fe
->dai_link
->name
);
2638 err
= dpcm_be_dai_trigger(fe
, stream
, SNDRV_PCM_TRIGGER_STOP
);
2640 dev_err(fe
->dev
,"ASoC: trigger FE failed %d\n", err
);
2643 err
= dpcm_be_dai_hw_free(fe
, stream
);
2645 dev_err(fe
->dev
,"ASoC: hw_free FE failed %d\n", err
);
2647 err
= dpcm_be_dai_shutdown(fe
, stream
);
2649 dev_err(fe
->dev
,"ASoC: shutdown FE failed %d\n", err
);
2651 /* run the stream event for each BE */
2652 dpcm_dapm_stream_event(fe
, stream
, SND_SOC_DAPM_STREAM_NOP
);
2657 static int dpcm_run_update_startup(struct snd_soc_pcm_runtime
*fe
, int stream
)
2659 struct snd_pcm_substream
*substream
=
2660 snd_soc_dpcm_get_substream(fe
, stream
);
2661 struct snd_soc_dpcm
*dpcm
;
2662 enum snd_soc_dpcm_trigger trigger
= fe
->dai_link
->trigger
[stream
];
2664 unsigned long flags
;
2666 dev_dbg(fe
->dev
, "ASoC: runtime %s open on FE %s\n",
2667 stream
? "capture" : "playback", fe
->dai_link
->name
);
2669 /* Only start the BE if the FE is ready */
2670 if (fe
->dpcm
[stream
].state
== SND_SOC_DPCM_STATE_HW_FREE
||
2671 fe
->dpcm
[stream
].state
== SND_SOC_DPCM_STATE_CLOSE
)
2674 /* startup must always be called for new BEs */
2675 ret
= dpcm_be_dai_startup(fe
, stream
);
2679 /* keep going if FE state is > open */
2680 if (fe
->dpcm
[stream
].state
== SND_SOC_DPCM_STATE_OPEN
)
2683 ret
= dpcm_be_dai_hw_params(fe
, stream
);
2687 /* keep going if FE state is > hw_params */
2688 if (fe
->dpcm
[stream
].state
== SND_SOC_DPCM_STATE_HW_PARAMS
)
2692 ret
= dpcm_be_dai_prepare(fe
, stream
);
2696 /* run the stream event for each BE */
2697 dpcm_dapm_stream_event(fe
, stream
, SND_SOC_DAPM_STREAM_NOP
);
2699 /* keep going if FE state is > prepare */
2700 if (fe
->dpcm
[stream
].state
== SND_SOC_DPCM_STATE_PREPARE
||
2701 fe
->dpcm
[stream
].state
== SND_SOC_DPCM_STATE_STOP
)
2704 if (trigger
== SND_SOC_DPCM_TRIGGER_BESPOKE
) {
2705 /* call trigger on the frontend - FE takes care of all BE triggers */
2706 dev_dbg(fe
->dev
, "ASoC: bespoke trigger FE %s cmd start\n",
2707 fe
->dai_link
->name
);
2709 ret
= soc_pcm_bespoke_trigger(substream
, SNDRV_PCM_TRIGGER_START
);
2711 dev_err(fe
->dev
,"ASoC: bespoke trigger FE failed %d\n", ret
);
2715 dev_dbg(fe
->dev
, "ASoC: trigger FE %s cmd start\n",
2716 fe
->dai_link
->name
);
2718 ret
= dpcm_be_dai_trigger(fe
, stream
,
2719 SNDRV_PCM_TRIGGER_START
);
2721 dev_err(fe
->dev
,"ASoC: trigger FE failed %d\n", ret
);
2729 dpcm_be_dai_hw_free(fe
, stream
);
2731 dpcm_be_dai_shutdown(fe
, stream
);
2733 /* disconnect any non started BEs */
2734 spin_lock_irqsave(&fe
->card
->dpcm_lock
, flags
);
2735 for_each_dpcm_be(fe
, stream
, dpcm
) {
2736 struct snd_soc_pcm_runtime
*be
= dpcm
->be
;
2737 if (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_START
)
2738 dpcm
->state
= SND_SOC_DPCM_LINK_STATE_FREE
;
2740 spin_unlock_irqrestore(&fe
->card
->dpcm_lock
, flags
);
2745 static int soc_dpcm_fe_runtime_update(struct snd_soc_pcm_runtime
*fe
, int new)
2747 struct snd_soc_dapm_widget_list
*list
;
2752 if (fe
->num_cpus
> 1) {
2754 "%s doesn't support Multi CPU yet\n", __func__
);
2758 if (!fe
->dai_link
->dynamic
)
2761 /* only check active links */
2762 if (!fe
->cpu_dai
->active
)
2765 /* DAPM sync will call this to update DSP paths */
2766 dev_dbg(fe
->dev
, "ASoC: DPCM %s runtime update for FE %s\n",
2767 new ? "new" : "old", fe
->dai_link
->name
);
2769 for_each_pcm_streams(stream
) {
2771 /* skip if FE doesn't have playback/capture capability */
2772 if (!snd_soc_dai_stream_valid(fe
->cpu_dai
, stream
) ||
2773 !snd_soc_dai_stream_valid(fe
->codec_dai
, stream
))
2776 /* skip if FE isn't currently playing/capturing */
2777 if (!fe
->cpu_dai
->stream_active
[stream
] ||
2778 !fe
->codec_dai
->stream_active
[stream
])
2781 paths
= dpcm_path_get(fe
, stream
, &list
);
2783 dev_warn(fe
->dev
, "ASoC: %s no valid %s path\n",
2785 stream
== SNDRV_PCM_STREAM_PLAYBACK
?
2786 "playback" : "capture");
2790 /* update any playback/capture paths */
2791 count
= dpcm_process_paths(fe
, stream
, &list
, new);
2793 dpcm_set_fe_update_state(fe
, stream
, SND_SOC_DPCM_UPDATE_BE
);
2795 ret
= dpcm_run_update_startup(fe
, stream
);
2797 ret
= dpcm_run_update_shutdown(fe
, stream
);
2799 dev_err(fe
->dev
, "ASoC: failed to shutdown some BEs\n");
2800 dpcm_set_fe_update_state(fe
, stream
, SND_SOC_DPCM_UPDATE_NO
);
2802 dpcm_clear_pending_state(fe
, stream
);
2803 dpcm_be_disconnect(fe
, stream
);
2806 dpcm_path_put(&list
);
2812 /* Called by DAPM mixer/mux changes to update audio routing between PCMs and
2815 int snd_soc_dpcm_runtime_update(struct snd_soc_card
*card
)
2817 struct snd_soc_pcm_runtime
*fe
;
2820 mutex_lock_nested(&card
->mutex
, SND_SOC_CARD_CLASS_RUNTIME
);
2821 /* shutdown all old paths first */
2822 for_each_card_rtds(card
, fe
) {
2823 ret
= soc_dpcm_fe_runtime_update(fe
, 0);
2828 /* bring new paths up */
2829 for_each_card_rtds(card
, fe
) {
2830 ret
= soc_dpcm_fe_runtime_update(fe
, 1);
2836 mutex_unlock(&card
->mutex
);
2839 EXPORT_SYMBOL_GPL(snd_soc_dpcm_runtime_update
);
2841 static void dpcm_fe_dai_cleanup(struct snd_pcm_substream
*fe_substream
)
2843 struct snd_soc_pcm_runtime
*fe
= fe_substream
->private_data
;
2844 struct snd_soc_dpcm
*dpcm
;
2845 int stream
= fe_substream
->stream
;
2847 /* mark FE's links ready to prune */
2848 for_each_dpcm_be(fe
, stream
, dpcm
)
2849 dpcm
->state
= SND_SOC_DPCM_LINK_STATE_FREE
;
2851 dpcm_be_disconnect(fe
, stream
);
2853 fe
->dpcm
[stream
].runtime
= NULL
;
2856 static int dpcm_fe_dai_close(struct snd_pcm_substream
*fe_substream
)
2858 struct snd_soc_pcm_runtime
*fe
= fe_substream
->private_data
;
2861 mutex_lock_nested(&fe
->card
->mutex
, SND_SOC_CARD_CLASS_RUNTIME
);
2862 ret
= dpcm_fe_dai_shutdown(fe_substream
);
2864 dpcm_fe_dai_cleanup(fe_substream
);
2866 mutex_unlock(&fe
->card
->mutex
);
2870 static int dpcm_fe_dai_open(struct snd_pcm_substream
*fe_substream
)
2872 struct snd_soc_pcm_runtime
*fe
= fe_substream
->private_data
;
2873 struct snd_soc_dapm_widget_list
*list
;
2875 int stream
= fe_substream
->stream
;
2877 mutex_lock_nested(&fe
->card
->mutex
, SND_SOC_CARD_CLASS_RUNTIME
);
2878 fe
->dpcm
[stream
].runtime
= fe_substream
->runtime
;
2880 ret
= dpcm_path_get(fe
, stream
, &list
);
2883 } else if (ret
== 0) {
2884 dev_dbg(fe
->dev
, "ASoC: %s no valid %s route\n",
2885 fe
->dai_link
->name
, stream
? "capture" : "playback");
2888 /* calculate valid and active FE <-> BE dpcms */
2889 dpcm_process_paths(fe
, stream
, &list
, 1);
2891 ret
= dpcm_fe_dai_startup(fe_substream
);
2893 dpcm_fe_dai_cleanup(fe_substream
);
2895 dpcm_clear_pending_state(fe
, stream
);
2896 dpcm_path_put(&list
);
2898 mutex_unlock(&fe
->card
->mutex
);
2902 /* create a new pcm */
2903 int soc_new_pcm(struct snd_soc_pcm_runtime
*rtd
, int num
)
2905 struct snd_soc_dai
*codec_dai
;
2906 struct snd_soc_dai
*cpu_dai
;
2907 struct snd_soc_component
*component
;
2908 struct snd_pcm
*pcm
;
2910 int ret
= 0, playback
= 0, capture
= 0;
2913 if (rtd
->dai_link
->dynamic
|| rtd
->dai_link
->no_pcm
) {
2914 playback
= rtd
->dai_link
->dpcm_playback
;
2915 capture
= rtd
->dai_link
->dpcm_capture
;
2917 /* Adapt stream for codec2codec links */
2918 int cpu_capture
= rtd
->dai_link
->params
?
2919 SNDRV_PCM_STREAM_PLAYBACK
: SNDRV_PCM_STREAM_CAPTURE
;
2920 int cpu_playback
= rtd
->dai_link
->params
?
2921 SNDRV_PCM_STREAM_CAPTURE
: SNDRV_PCM_STREAM_PLAYBACK
;
2923 for_each_rtd_codec_dais(rtd
, i
, codec_dai
) {
2924 if (rtd
->num_cpus
== 1) {
2925 cpu_dai
= rtd
->cpu_dais
[0];
2926 } else if (rtd
->num_cpus
== rtd
->num_codecs
) {
2927 cpu_dai
= rtd
->cpu_dais
[i
];
2929 dev_err(rtd
->card
->dev
,
2930 "N cpus to M codecs link is not supported yet\n");
2934 if (snd_soc_dai_stream_valid(codec_dai
, SNDRV_PCM_STREAM_PLAYBACK
) &&
2935 snd_soc_dai_stream_valid(cpu_dai
, cpu_playback
))
2937 if (snd_soc_dai_stream_valid(codec_dai
, SNDRV_PCM_STREAM_CAPTURE
) &&
2938 snd_soc_dai_stream_valid(cpu_dai
, cpu_capture
))
2943 if (rtd
->dai_link
->playback_only
) {
2948 if (rtd
->dai_link
->capture_only
) {
2953 /* create the PCM */
2954 if (rtd
->dai_link
->params
) {
2955 snprintf(new_name
, sizeof(new_name
), "codec2codec(%s)",
2956 rtd
->dai_link
->stream_name
);
2958 ret
= snd_pcm_new_internal(rtd
->card
->snd_card
, new_name
, num
,
2959 playback
, capture
, &pcm
);
2960 } else if (rtd
->dai_link
->no_pcm
) {
2961 snprintf(new_name
, sizeof(new_name
), "(%s)",
2962 rtd
->dai_link
->stream_name
);
2964 ret
= snd_pcm_new_internal(rtd
->card
->snd_card
, new_name
, num
,
2965 playback
, capture
, &pcm
);
2967 if (rtd
->dai_link
->dynamic
)
2968 snprintf(new_name
, sizeof(new_name
), "%s (*)",
2969 rtd
->dai_link
->stream_name
);
2971 snprintf(new_name
, sizeof(new_name
), "%s %s-%d",
2972 rtd
->dai_link
->stream_name
,
2973 (rtd
->num_codecs
> 1) ?
2974 "multicodec" : rtd
->codec_dai
->name
, num
);
2976 ret
= snd_pcm_new(rtd
->card
->snd_card
, new_name
, num
, playback
,
2980 dev_err(rtd
->card
->dev
, "ASoC: can't create pcm for %s\n",
2981 rtd
->dai_link
->name
);
2984 dev_dbg(rtd
->card
->dev
, "ASoC: registered pcm #%d %s\n",num
, new_name
);
2986 /* DAPM dai link stream work */
2987 if (rtd
->dai_link
->params
)
2988 rtd
->close_delayed_work_func
= codec2codec_close_delayed_work
;
2990 rtd
->close_delayed_work_func
= snd_soc_close_delayed_work
;
2992 pcm
->nonatomic
= rtd
->dai_link
->nonatomic
;
2994 pcm
->private_data
= rtd
;
2996 if (rtd
->dai_link
->no_pcm
|| rtd
->dai_link
->params
) {
2998 pcm
->streams
[SNDRV_PCM_STREAM_PLAYBACK
].substream
->private_data
= rtd
;
3000 pcm
->streams
[SNDRV_PCM_STREAM_CAPTURE
].substream
->private_data
= rtd
;
3004 /* ASoC PCM operations */
3005 if (rtd
->dai_link
->dynamic
) {
3006 rtd
->ops
.open
= dpcm_fe_dai_open
;
3007 rtd
->ops
.hw_params
= dpcm_fe_dai_hw_params
;
3008 rtd
->ops
.prepare
= dpcm_fe_dai_prepare
;
3009 rtd
->ops
.trigger
= dpcm_fe_dai_trigger
;
3010 rtd
->ops
.hw_free
= dpcm_fe_dai_hw_free
;
3011 rtd
->ops
.close
= dpcm_fe_dai_close
;
3012 rtd
->ops
.pointer
= soc_pcm_pointer
;
3014 rtd
->ops
.open
= soc_pcm_open
;
3015 rtd
->ops
.hw_params
= soc_pcm_hw_params
;
3016 rtd
->ops
.prepare
= soc_pcm_prepare
;
3017 rtd
->ops
.trigger
= soc_pcm_trigger
;
3018 rtd
->ops
.hw_free
= soc_pcm_hw_free
;
3019 rtd
->ops
.close
= soc_pcm_close
;
3020 rtd
->ops
.pointer
= soc_pcm_pointer
;
3023 for_each_rtd_components(rtd
, i
, component
) {
3024 const struct snd_soc_component_driver
*drv
= component
->driver
;
3027 rtd
->ops
.ioctl
= snd_soc_pcm_component_ioctl
;
3029 rtd
->ops
.sync_stop
= snd_soc_pcm_component_sync_stop
;
3031 rtd
->ops
.copy_user
= snd_soc_pcm_component_copy_user
;
3033 rtd
->ops
.page
= snd_soc_pcm_component_page
;
3035 rtd
->ops
.mmap
= snd_soc_pcm_component_mmap
;
3039 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_PLAYBACK
, &rtd
->ops
);
3042 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_CAPTURE
, &rtd
->ops
);
3044 ret
= snd_soc_pcm_component_new(rtd
);
3046 dev_err(rtd
->dev
, "ASoC: pcm constructor failed: %d\n", ret
);
3050 pcm
->no_device_suspend
= true;
3052 dev_info(rtd
->card
->dev
, "%s <-> %s mapping ok\n",
3053 (rtd
->num_codecs
> 1) ? "multicodec" : rtd
->codec_dai
->name
,
3054 (rtd
->num_cpus
> 1) ? "multicpu" : rtd
->cpu_dai
->name
);
3058 /* is the current PCM operation for this FE ? */
3059 int snd_soc_dpcm_fe_can_update(struct snd_soc_pcm_runtime
*fe
, int stream
)
3061 if (fe
->dpcm
[stream
].runtime_update
== SND_SOC_DPCM_UPDATE_FE
)
3065 EXPORT_SYMBOL_GPL(snd_soc_dpcm_fe_can_update
);
3067 /* is the current PCM operation for this BE ? */
3068 int snd_soc_dpcm_be_can_update(struct snd_soc_pcm_runtime
*fe
,
3069 struct snd_soc_pcm_runtime
*be
, int stream
)
3071 if ((fe
->dpcm
[stream
].runtime_update
== SND_SOC_DPCM_UPDATE_FE
) ||
3072 ((fe
->dpcm
[stream
].runtime_update
== SND_SOC_DPCM_UPDATE_BE
) &&
3073 be
->dpcm
[stream
].runtime_update
))
3077 EXPORT_SYMBOL_GPL(snd_soc_dpcm_be_can_update
);
3079 /* get the substream for this BE */
3080 struct snd_pcm_substream
*
3081 snd_soc_dpcm_get_substream(struct snd_soc_pcm_runtime
*be
, int stream
)
3083 return be
->pcm
->streams
[stream
].substream
;
3085 EXPORT_SYMBOL_GPL(snd_soc_dpcm_get_substream
);
3087 static int snd_soc_dpcm_check_state(struct snd_soc_pcm_runtime
*fe
,
3088 struct snd_soc_pcm_runtime
*be
,
3090 const enum snd_soc_dpcm_state
*states
,
3093 struct snd_soc_dpcm
*dpcm
;
3096 unsigned long flags
;
3099 spin_lock_irqsave(&fe
->card
->dpcm_lock
, flags
);
3100 for_each_dpcm_fe(be
, stream
, dpcm
) {
3105 state
= dpcm
->fe
->dpcm
[stream
].state
;
3106 for (i
= 0; i
< num_states
; i
++) {
3107 if (state
== states
[i
]) {
3113 spin_unlock_irqrestore(&fe
->card
->dpcm_lock
, flags
);
3115 /* it's safe to do this BE DAI */
3120 * We can only hw_free, stop, pause or suspend a BE DAI if any of it's FE
3121 * are not running, paused or suspended for the specified stream direction.
3123 int snd_soc_dpcm_can_be_free_stop(struct snd_soc_pcm_runtime
*fe
,
3124 struct snd_soc_pcm_runtime
*be
, int stream
)
3126 const enum snd_soc_dpcm_state state
[] = {
3127 SND_SOC_DPCM_STATE_START
,
3128 SND_SOC_DPCM_STATE_PAUSED
,
3129 SND_SOC_DPCM_STATE_SUSPEND
,
3132 return snd_soc_dpcm_check_state(fe
, be
, stream
, state
, ARRAY_SIZE(state
));
3134 EXPORT_SYMBOL_GPL(snd_soc_dpcm_can_be_free_stop
);
3137 * We can only change hw params a BE DAI if any of it's FE are not prepared,
3138 * running, paused or suspended for the specified stream direction.
3140 int snd_soc_dpcm_can_be_params(struct snd_soc_pcm_runtime
*fe
,
3141 struct snd_soc_pcm_runtime
*be
, int stream
)
3143 const enum snd_soc_dpcm_state state
[] = {
3144 SND_SOC_DPCM_STATE_START
,
3145 SND_SOC_DPCM_STATE_PAUSED
,
3146 SND_SOC_DPCM_STATE_SUSPEND
,
3147 SND_SOC_DPCM_STATE_PREPARE
,
3150 return snd_soc_dpcm_check_state(fe
, be
, stream
, state
, ARRAY_SIZE(state
));
3152 EXPORT_SYMBOL_GPL(snd_soc_dpcm_can_be_params
);