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
)
136 struct snd_soc_rtdcom_list
*rtdcom
;
137 struct snd_soc_component
*component
;
141 if (!rtd
->pmdown_time
|| rtd
->dai_link
->ignore_pmdown_time
)
144 for_each_rtdcom(rtd
, rtdcom
) {
145 component
= rtdcom
->component
;
147 ignore
&= !component
->driver
->use_pmdown_time
;
150 /* this will be removed */
151 for (i
= 0; i
< rtd
->num_codecs
; i
++)
152 ignore
&= rtd
->codec_dais
[i
]->component
->ignore_pmdown_time
;
158 * snd_soc_set_runtime_hwparams - set the runtime hardware parameters
159 * @substream: the pcm substream
160 * @hw: the hardware parameters
162 * Sets the substream runtime hardware parameters.
164 int snd_soc_set_runtime_hwparams(struct snd_pcm_substream
*substream
,
165 const struct snd_pcm_hardware
*hw
)
167 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
168 runtime
->hw
.info
= hw
->info
;
169 runtime
->hw
.formats
= hw
->formats
;
170 runtime
->hw
.period_bytes_min
= hw
->period_bytes_min
;
171 runtime
->hw
.period_bytes_max
= hw
->period_bytes_max
;
172 runtime
->hw
.periods_min
= hw
->periods_min
;
173 runtime
->hw
.periods_max
= hw
->periods_max
;
174 runtime
->hw
.buffer_bytes_max
= hw
->buffer_bytes_max
;
175 runtime
->hw
.fifo_size
= hw
->fifo_size
;
178 EXPORT_SYMBOL_GPL(snd_soc_set_runtime_hwparams
);
180 /* DPCM stream event, send event to FE and all active BEs. */
181 int dpcm_dapm_stream_event(struct snd_soc_pcm_runtime
*fe
, int dir
,
184 struct snd_soc_dpcm
*dpcm
;
186 list_for_each_entry(dpcm
, &fe
->dpcm
[dir
].be_clients
, list_be
) {
188 struct snd_soc_pcm_runtime
*be
= dpcm
->be
;
190 dev_dbg(be
->dev
, "ASoC: BE %s event %d dir %d\n",
191 be
->dai_link
->name
, event
, dir
);
193 if ((event
== SND_SOC_DAPM_STREAM_STOP
) &&
194 (be
->dpcm
[dir
].users
>= 1))
197 snd_soc_dapm_stream_event(be
, dir
, event
);
200 snd_soc_dapm_stream_event(fe
, dir
, event
);
205 static int soc_pcm_apply_symmetry(struct snd_pcm_substream
*substream
,
206 struct snd_soc_dai
*soc_dai
)
208 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
211 if (soc_dai
->rate
&& (soc_dai
->driver
->symmetric_rates
||
212 rtd
->dai_link
->symmetric_rates
)) {
213 dev_dbg(soc_dai
->dev
, "ASoC: Symmetry forces %dHz rate\n",
216 ret
= snd_pcm_hw_constraint_single(substream
->runtime
,
217 SNDRV_PCM_HW_PARAM_RATE
,
220 dev_err(soc_dai
->dev
,
221 "ASoC: Unable to apply rate constraint: %d\n",
227 if (soc_dai
->channels
&& (soc_dai
->driver
->symmetric_channels
||
228 rtd
->dai_link
->symmetric_channels
)) {
229 dev_dbg(soc_dai
->dev
, "ASoC: Symmetry forces %d channel(s)\n",
232 ret
= snd_pcm_hw_constraint_single(substream
->runtime
,
233 SNDRV_PCM_HW_PARAM_CHANNELS
,
236 dev_err(soc_dai
->dev
,
237 "ASoC: Unable to apply channel symmetry constraint: %d\n",
243 if (soc_dai
->sample_bits
&& (soc_dai
->driver
->symmetric_samplebits
||
244 rtd
->dai_link
->symmetric_samplebits
)) {
245 dev_dbg(soc_dai
->dev
, "ASoC: Symmetry forces %d sample bits\n",
246 soc_dai
->sample_bits
);
248 ret
= snd_pcm_hw_constraint_single(substream
->runtime
,
249 SNDRV_PCM_HW_PARAM_SAMPLE_BITS
,
250 soc_dai
->sample_bits
);
252 dev_err(soc_dai
->dev
,
253 "ASoC: Unable to apply sample bits symmetry constraint: %d\n",
262 static int soc_pcm_params_symmetry(struct snd_pcm_substream
*substream
,
263 struct snd_pcm_hw_params
*params
)
265 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
266 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
267 unsigned int rate
, channels
, sample_bits
, symmetry
, i
;
269 rate
= params_rate(params
);
270 channels
= params_channels(params
);
271 sample_bits
= snd_pcm_format_physical_width(params_format(params
));
273 /* reject unmatched parameters when applying symmetry */
274 symmetry
= cpu_dai
->driver
->symmetric_rates
||
275 rtd
->dai_link
->symmetric_rates
;
277 for (i
= 0; i
< rtd
->num_codecs
; i
++)
278 symmetry
|= rtd
->codec_dais
[i
]->driver
->symmetric_rates
;
280 if (symmetry
&& cpu_dai
->rate
&& cpu_dai
->rate
!= rate
) {
281 dev_err(rtd
->dev
, "ASoC: unmatched rate symmetry: %d - %d\n",
282 cpu_dai
->rate
, rate
);
286 symmetry
= cpu_dai
->driver
->symmetric_channels
||
287 rtd
->dai_link
->symmetric_channels
;
289 for (i
= 0; i
< rtd
->num_codecs
; i
++)
290 symmetry
|= rtd
->codec_dais
[i
]->driver
->symmetric_channels
;
292 if (symmetry
&& cpu_dai
->channels
&& cpu_dai
->channels
!= channels
) {
293 dev_err(rtd
->dev
, "ASoC: unmatched channel symmetry: %d - %d\n",
294 cpu_dai
->channels
, channels
);
298 symmetry
= cpu_dai
->driver
->symmetric_samplebits
||
299 rtd
->dai_link
->symmetric_samplebits
;
301 for (i
= 0; i
< rtd
->num_codecs
; i
++)
302 symmetry
|= rtd
->codec_dais
[i
]->driver
->symmetric_samplebits
;
304 if (symmetry
&& cpu_dai
->sample_bits
&& cpu_dai
->sample_bits
!= sample_bits
) {
305 dev_err(rtd
->dev
, "ASoC: unmatched sample bits symmetry: %d - %d\n",
306 cpu_dai
->sample_bits
, sample_bits
);
313 static bool soc_pcm_has_symmetry(struct snd_pcm_substream
*substream
)
315 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
316 struct snd_soc_dai_driver
*cpu_driver
= rtd
->cpu_dai
->driver
;
317 struct snd_soc_dai_link
*link
= rtd
->dai_link
;
318 unsigned int symmetry
, i
;
320 symmetry
= cpu_driver
->symmetric_rates
|| link
->symmetric_rates
||
321 cpu_driver
->symmetric_channels
|| link
->symmetric_channels
||
322 cpu_driver
->symmetric_samplebits
|| link
->symmetric_samplebits
;
324 for (i
= 0; i
< rtd
->num_codecs
; i
++)
325 symmetry
= symmetry
||
326 rtd
->codec_dais
[i
]->driver
->symmetric_rates
||
327 rtd
->codec_dais
[i
]->driver
->symmetric_channels
||
328 rtd
->codec_dais
[i
]->driver
->symmetric_samplebits
;
333 static void soc_pcm_set_msb(struct snd_pcm_substream
*substream
, int bits
)
335 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
341 ret
= snd_pcm_hw_constraint_msbits(substream
->runtime
, 0, 0, bits
);
343 dev_warn(rtd
->dev
, "ASoC: Failed to set MSB %d: %d\n",
347 static void soc_pcm_apply_msb(struct snd_pcm_substream
*substream
)
349 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
350 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
351 struct snd_soc_dai
*codec_dai
;
353 unsigned int bits
= 0, cpu_bits
;
355 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
356 for (i
= 0; i
< rtd
->num_codecs
; i
++) {
357 codec_dai
= rtd
->codec_dais
[i
];
358 if (codec_dai
->driver
->playback
.sig_bits
== 0) {
362 bits
= max(codec_dai
->driver
->playback
.sig_bits
, bits
);
364 cpu_bits
= cpu_dai
->driver
->playback
.sig_bits
;
366 for (i
= 0; i
< rtd
->num_codecs
; i
++) {
367 codec_dai
= rtd
->codec_dais
[i
];
368 if (codec_dai
->driver
->capture
.sig_bits
== 0) {
372 bits
= max(codec_dai
->driver
->capture
.sig_bits
, bits
);
374 cpu_bits
= cpu_dai
->driver
->capture
.sig_bits
;
377 soc_pcm_set_msb(substream
, bits
);
378 soc_pcm_set_msb(substream
, cpu_bits
);
381 static void soc_pcm_init_runtime_hw(struct snd_pcm_substream
*substream
)
383 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
384 struct snd_pcm_hardware
*hw
= &runtime
->hw
;
385 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
386 struct snd_soc_dai_driver
*cpu_dai_drv
= rtd
->cpu_dai
->driver
;
387 struct snd_soc_dai_driver
*codec_dai_drv
;
388 struct snd_soc_pcm_stream
*codec_stream
;
389 struct snd_soc_pcm_stream
*cpu_stream
;
390 unsigned int chan_min
= 0, chan_max
= UINT_MAX
;
391 unsigned int rate_min
= 0, rate_max
= UINT_MAX
;
392 unsigned int rates
= UINT_MAX
;
393 u64 formats
= ULLONG_MAX
;
396 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
397 cpu_stream
= &cpu_dai_drv
->playback
;
399 cpu_stream
= &cpu_dai_drv
->capture
;
401 /* first calculate min/max only for CODECs in the DAI link */
402 for (i
= 0; i
< rtd
->num_codecs
; i
++) {
405 * Skip CODECs which don't support the current stream type.
406 * Otherwise, since the rate, channel, and format values will
407 * zero in that case, we would have no usable settings left,
408 * causing the resulting setup to fail.
409 * At least one CODEC should match, otherwise we should have
410 * bailed out on a higher level, since there would be no
411 * CODEC to support the transfer direction in that case.
413 if (!snd_soc_dai_stream_valid(rtd
->codec_dais
[i
],
417 codec_dai_drv
= rtd
->codec_dais
[i
]->driver
;
418 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
419 codec_stream
= &codec_dai_drv
->playback
;
421 codec_stream
= &codec_dai_drv
->capture
;
422 chan_min
= max(chan_min
, codec_stream
->channels_min
);
423 chan_max
= min(chan_max
, codec_stream
->channels_max
);
424 rate_min
= max(rate_min
, codec_stream
->rate_min
);
425 rate_max
= min_not_zero(rate_max
, codec_stream
->rate_max
);
426 formats
&= codec_stream
->formats
;
427 rates
= snd_pcm_rate_mask_intersect(codec_stream
->rates
, rates
);
431 * chan min/max cannot be enforced if there are multiple CODEC DAIs
432 * connected to a single CPU DAI, use CPU DAI's directly and let
433 * channel allocation be fixed up later
435 if (rtd
->num_codecs
> 1) {
436 chan_min
= cpu_stream
->channels_min
;
437 chan_max
= cpu_stream
->channels_max
;
440 hw
->channels_min
= max(chan_min
, cpu_stream
->channels_min
);
441 hw
->channels_max
= min(chan_max
, cpu_stream
->channels_max
);
443 hw
->formats
&= formats
& cpu_stream
->formats
;
445 hw
->formats
= formats
& cpu_stream
->formats
;
446 hw
->rates
= snd_pcm_rate_mask_intersect(rates
, cpu_stream
->rates
);
448 snd_pcm_limit_hw_rates(runtime
);
450 hw
->rate_min
= max(hw
->rate_min
, cpu_stream
->rate_min
);
451 hw
->rate_min
= max(hw
->rate_min
, rate_min
);
452 hw
->rate_max
= min_not_zero(hw
->rate_max
, cpu_stream
->rate_max
);
453 hw
->rate_max
= min_not_zero(hw
->rate_max
, rate_max
);
457 * Called by ALSA when a PCM substream is opened, the runtime->hw record is
458 * then initialized and any private data can be allocated. This also calls
459 * startup for the cpu DAI, platform, machine and codec DAI.
461 static int soc_pcm_open(struct snd_pcm_substream
*substream
)
463 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
464 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
465 struct snd_soc_platform
*platform
= rtd
->platform
;
466 struct snd_soc_component
*component
;
467 struct snd_soc_rtdcom_list
*rtdcom
;
468 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
469 struct snd_soc_dai
*codec_dai
;
470 const char *codec_dai_name
= "multicodec";
471 int i
, ret
= 0, __ret
;
473 pinctrl_pm_select_default_state(cpu_dai
->dev
);
474 for (i
= 0; i
< rtd
->num_codecs
; i
++)
475 pinctrl_pm_select_default_state(rtd
->codec_dais
[i
]->dev
);
477 for_each_rtdcom(rtd
, rtdcom
) {
478 component
= rtdcom
->component
;
480 pm_runtime_get_sync(component
->dev
);
483 mutex_lock_nested(&rtd
->pcm_mutex
, rtd
->pcm_subclass
);
485 /* startup the audio subsystem */
486 if (cpu_dai
->driver
->ops
->startup
) {
487 ret
= cpu_dai
->driver
->ops
->startup(substream
, cpu_dai
);
489 dev_err(cpu_dai
->dev
, "ASoC: can't open interface"
490 " %s: %d\n", cpu_dai
->name
, ret
);
495 if (platform
&& platform
->driver
->ops
&& platform
->driver
->ops
->open
) {
496 ret
= platform
->driver
->ops
->open(substream
);
498 dev_err(platform
->dev
, "ASoC: can't open platform"
499 " %s: %d\n", platform
->component
.name
, ret
);
505 for_each_rtdcom(rtd
, rtdcom
) {
506 component
= rtdcom
->component
;
508 /* ignore duplication for now */
509 if (platform
&& (component
== &platform
->component
))
512 if (!component
->driver
->ops
||
513 !component
->driver
->ops
->open
)
516 __ret
= component
->driver
->ops
->open(substream
);
518 dev_err(component
->dev
,
519 "ASoC: can't open component %s: %d\n",
520 component
->name
, ret
);
527 for (i
= 0; i
< rtd
->num_codecs
; i
++) {
528 codec_dai
= rtd
->codec_dais
[i
];
529 if (codec_dai
->driver
->ops
->startup
) {
530 ret
= codec_dai
->driver
->ops
->startup(substream
,
533 dev_err(codec_dai
->dev
,
534 "ASoC: can't open codec %s: %d\n",
535 codec_dai
->name
, ret
);
540 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
541 codec_dai
->tx_mask
= 0;
543 codec_dai
->rx_mask
= 0;
546 if (rtd
->dai_link
->ops
->startup
) {
547 ret
= rtd
->dai_link
->ops
->startup(substream
);
549 pr_err("ASoC: %s startup failed: %d\n",
550 rtd
->dai_link
->name
, ret
);
555 /* Dynamic PCM DAI links compat checks use dynamic capabilities */
556 if (rtd
->dai_link
->dynamic
|| rtd
->dai_link
->no_pcm
)
559 /* Check that the codec and cpu DAIs are compatible */
560 soc_pcm_init_runtime_hw(substream
);
562 if (rtd
->num_codecs
== 1)
563 codec_dai_name
= rtd
->codec_dai
->name
;
565 if (soc_pcm_has_symmetry(substream
))
566 runtime
->hw
.info
|= SNDRV_PCM_INFO_JOINT_DUPLEX
;
569 if (!runtime
->hw
.rates
) {
570 printk(KERN_ERR
"ASoC: %s <-> %s No matching rates\n",
571 codec_dai_name
, cpu_dai
->name
);
574 if (!runtime
->hw
.formats
) {
575 printk(KERN_ERR
"ASoC: %s <-> %s No matching formats\n",
576 codec_dai_name
, cpu_dai
->name
);
579 if (!runtime
->hw
.channels_min
|| !runtime
->hw
.channels_max
||
580 runtime
->hw
.channels_min
> runtime
->hw
.channels_max
) {
581 printk(KERN_ERR
"ASoC: %s <-> %s No matching channels\n",
582 codec_dai_name
, cpu_dai
->name
);
586 soc_pcm_apply_msb(substream
);
588 /* Symmetry only applies if we've already got an active stream. */
589 if (cpu_dai
->active
) {
590 ret
= soc_pcm_apply_symmetry(substream
, cpu_dai
);
595 for (i
= 0; i
< rtd
->num_codecs
; i
++) {
596 if (rtd
->codec_dais
[i
]->active
) {
597 ret
= soc_pcm_apply_symmetry(substream
,
604 pr_debug("ASoC: %s <-> %s info:\n",
605 codec_dai_name
, cpu_dai
->name
);
606 pr_debug("ASoC: rate mask 0x%x\n", runtime
->hw
.rates
);
607 pr_debug("ASoC: min ch %d max ch %d\n", runtime
->hw
.channels_min
,
608 runtime
->hw
.channels_max
);
609 pr_debug("ASoC: min rate %d max rate %d\n", runtime
->hw
.rate_min
,
610 runtime
->hw
.rate_max
);
614 snd_soc_runtime_activate(rtd
, substream
->stream
);
616 mutex_unlock(&rtd
->pcm_mutex
);
620 if (rtd
->dai_link
->ops
->shutdown
)
621 rtd
->dai_link
->ops
->shutdown(substream
);
628 codec_dai
= rtd
->codec_dais
[i
];
629 if (codec_dai
->driver
->ops
->shutdown
)
630 codec_dai
->driver
->ops
->shutdown(substream
, codec_dai
);
634 for_each_rtdcom(rtd
, rtdcom
) {
635 component
= rtdcom
->component
;
637 /* ignore duplication for now */
638 if (platform
&& (component
== &platform
->component
))
641 if (!component
->driver
->ops
||
642 !component
->driver
->ops
->close
)
645 component
->driver
->ops
->close(substream
);
648 if (platform
&& platform
->driver
->ops
&& platform
->driver
->ops
->close
)
649 platform
->driver
->ops
->close(substream
);
652 if (cpu_dai
->driver
->ops
->shutdown
)
653 cpu_dai
->driver
->ops
->shutdown(substream
, cpu_dai
);
655 mutex_unlock(&rtd
->pcm_mutex
);
657 for_each_rtdcom(rtd
, rtdcom
) {
658 component
= rtdcom
->component
;
660 pm_runtime_mark_last_busy(component
->dev
);
661 pm_runtime_put_autosuspend(component
->dev
);
664 for (i
= 0; i
< rtd
->num_codecs
; i
++) {
665 if (!rtd
->codec_dais
[i
]->active
)
666 pinctrl_pm_select_sleep_state(rtd
->codec_dais
[i
]->dev
);
668 if (!cpu_dai
->active
)
669 pinctrl_pm_select_sleep_state(cpu_dai
->dev
);
675 * Power down the audio subsystem pmdown_time msecs after close is called.
676 * This is to ensure there are no pops or clicks in between any music tracks
677 * due to DAPM power cycling.
679 static void close_delayed_work(struct work_struct
*work
)
681 struct snd_soc_pcm_runtime
*rtd
=
682 container_of(work
, struct snd_soc_pcm_runtime
, delayed_work
.work
);
683 struct snd_soc_dai
*codec_dai
= rtd
->codec_dais
[0];
685 mutex_lock_nested(&rtd
->pcm_mutex
, rtd
->pcm_subclass
);
687 dev_dbg(rtd
->dev
, "ASoC: pop wq checking: %s status: %s waiting: %s\n",
688 codec_dai
->driver
->playback
.stream_name
,
689 codec_dai
->playback_active
? "active" : "inactive",
690 rtd
->pop_wait
? "yes" : "no");
692 /* are we waiting on this codec DAI stream */
693 if (rtd
->pop_wait
== 1) {
695 snd_soc_dapm_stream_event(rtd
, SNDRV_PCM_STREAM_PLAYBACK
,
696 SND_SOC_DAPM_STREAM_STOP
);
699 mutex_unlock(&rtd
->pcm_mutex
);
703 * Called by ALSA when a PCM substream is closed. Private data can be
704 * freed here. The cpu DAI, codec DAI, machine and platform are also
707 static int soc_pcm_close(struct snd_pcm_substream
*substream
)
709 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
710 struct snd_soc_platform
*platform
= rtd
->platform
;
711 struct snd_soc_component
*component
;
712 struct snd_soc_rtdcom_list
*rtdcom
;
713 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
714 struct snd_soc_dai
*codec_dai
;
717 mutex_lock_nested(&rtd
->pcm_mutex
, rtd
->pcm_subclass
);
719 snd_soc_runtime_deactivate(rtd
, substream
->stream
);
721 /* clear the corresponding DAIs rate when inactive */
722 if (!cpu_dai
->active
)
725 for (i
= 0; i
< rtd
->num_codecs
; i
++) {
726 codec_dai
= rtd
->codec_dais
[i
];
727 if (!codec_dai
->active
)
731 snd_soc_dai_digital_mute(cpu_dai
, 1, substream
->stream
);
733 if (cpu_dai
->driver
->ops
->shutdown
)
734 cpu_dai
->driver
->ops
->shutdown(substream
, cpu_dai
);
736 for (i
= 0; i
< rtd
->num_codecs
; i
++) {
737 codec_dai
= rtd
->codec_dais
[i
];
738 if (codec_dai
->driver
->ops
->shutdown
)
739 codec_dai
->driver
->ops
->shutdown(substream
, codec_dai
);
742 if (rtd
->dai_link
->ops
->shutdown
)
743 rtd
->dai_link
->ops
->shutdown(substream
);
745 if (platform
&& platform
->driver
->ops
&& platform
->driver
->ops
->close
)
746 platform
->driver
->ops
->close(substream
);
748 for_each_rtdcom(rtd
, rtdcom
) {
749 component
= rtdcom
->component
;
751 /* ignore duplication for now */
752 if (platform
&& (component
== &platform
->component
))
755 if (!component
->driver
->ops
||
756 !component
->driver
->ops
->close
)
759 component
->driver
->ops
->close(substream
);
762 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
763 if (snd_soc_runtime_ignore_pmdown_time(rtd
)) {
764 /* powered down playback stream now */
765 snd_soc_dapm_stream_event(rtd
,
766 SNDRV_PCM_STREAM_PLAYBACK
,
767 SND_SOC_DAPM_STREAM_STOP
);
769 /* start delayed pop wq here for playback streams */
771 queue_delayed_work(system_power_efficient_wq
,
773 msecs_to_jiffies(rtd
->pmdown_time
));
776 /* capture streams can be powered down now */
777 snd_soc_dapm_stream_event(rtd
, SNDRV_PCM_STREAM_CAPTURE
,
778 SND_SOC_DAPM_STREAM_STOP
);
781 mutex_unlock(&rtd
->pcm_mutex
);
783 for_each_rtdcom(rtd
, rtdcom
) {
784 component
= rtdcom
->component
;
786 pm_runtime_mark_last_busy(component
->dev
);
787 pm_runtime_put_autosuspend(component
->dev
);
790 for (i
= 0; i
< rtd
->num_codecs
; i
++) {
791 if (!rtd
->codec_dais
[i
]->active
)
792 pinctrl_pm_select_sleep_state(rtd
->codec_dais
[i
]->dev
);
794 if (!cpu_dai
->active
)
795 pinctrl_pm_select_sleep_state(cpu_dai
->dev
);
801 * Called by ALSA when the PCM substream is prepared, can set format, sample
802 * rate, etc. This function is non atomic and can be called multiple times,
803 * it can refer to the runtime info.
805 static int soc_pcm_prepare(struct snd_pcm_substream
*substream
)
807 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
808 struct snd_soc_platform
*platform
= rtd
->platform
;
809 struct snd_soc_component
*component
;
810 struct snd_soc_rtdcom_list
*rtdcom
;
811 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
812 struct snd_soc_dai
*codec_dai
;
815 mutex_lock_nested(&rtd
->pcm_mutex
, rtd
->pcm_subclass
);
817 if (rtd
->dai_link
->ops
->prepare
) {
818 ret
= rtd
->dai_link
->ops
->prepare(substream
);
820 dev_err(rtd
->card
->dev
, "ASoC: machine prepare error:"
826 if (platform
&& platform
->driver
->ops
&& platform
->driver
->ops
->prepare
) {
827 ret
= platform
->driver
->ops
->prepare(substream
);
829 dev_err(platform
->dev
, "ASoC: platform prepare error:"
835 for_each_rtdcom(rtd
, rtdcom
) {
836 component
= rtdcom
->component
;
838 /* ignore duplication for now */
839 if (platform
&& (component
== &platform
->component
))
842 if (!component
->driver
->ops
||
843 !component
->driver
->ops
->prepare
)
846 ret
= component
->driver
->ops
->prepare(substream
);
848 dev_err(component
->dev
,
849 "ASoC: platform prepare error: %d\n", ret
);
854 for (i
= 0; i
< rtd
->num_codecs
; i
++) {
855 codec_dai
= rtd
->codec_dais
[i
];
856 if (codec_dai
->driver
->ops
->prepare
) {
857 ret
= codec_dai
->driver
->ops
->prepare(substream
,
860 dev_err(codec_dai
->dev
,
861 "ASoC: codec DAI prepare error: %d\n",
868 if (cpu_dai
->driver
->ops
->prepare
) {
869 ret
= cpu_dai
->driver
->ops
->prepare(substream
, cpu_dai
);
871 dev_err(cpu_dai
->dev
,
872 "ASoC: cpu DAI prepare error: %d\n", ret
);
877 /* cancel any delayed stream shutdown that is pending */
878 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
&&
881 cancel_delayed_work(&rtd
->delayed_work
);
884 snd_soc_dapm_stream_event(rtd
, substream
->stream
,
885 SND_SOC_DAPM_STREAM_START
);
887 for (i
= 0; i
< rtd
->num_codecs
; i
++)
888 snd_soc_dai_digital_mute(rtd
->codec_dais
[i
], 0,
890 snd_soc_dai_digital_mute(cpu_dai
, 0, substream
->stream
);
893 mutex_unlock(&rtd
->pcm_mutex
);
897 static void soc_pcm_codec_params_fixup(struct snd_pcm_hw_params
*params
,
900 struct snd_interval
*interval
;
901 int channels
= hweight_long(mask
);
903 interval
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_CHANNELS
);
904 interval
->min
= channels
;
905 interval
->max
= channels
;
908 int soc_dai_hw_params(struct snd_pcm_substream
*substream
,
909 struct snd_pcm_hw_params
*params
,
910 struct snd_soc_dai
*dai
)
914 if (dai
->driver
->ops
->hw_params
) {
915 ret
= dai
->driver
->ops
->hw_params(substream
, params
, dai
);
917 dev_err(dai
->dev
, "ASoC: can't set %s hw params: %d\n",
927 * Called by ALSA when the hardware params are set by application. This
928 * function can also be called multiple times and can allocate buffers
929 * (using snd_pcm_lib_* ). It's non-atomic.
931 static int soc_pcm_hw_params(struct snd_pcm_substream
*substream
,
932 struct snd_pcm_hw_params
*params
)
934 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
935 struct snd_soc_platform
*platform
= rtd
->platform
;
936 struct snd_soc_component
*component
;
937 struct snd_soc_rtdcom_list
*rtdcom
;
938 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
939 int i
, ret
= 0, __ret
;
941 mutex_lock_nested(&rtd
->pcm_mutex
, rtd
->pcm_subclass
);
942 if (rtd
->dai_link
->ops
->hw_params
) {
943 ret
= rtd
->dai_link
->ops
->hw_params(substream
, params
);
945 dev_err(rtd
->card
->dev
, "ASoC: machine hw_params"
946 " failed: %d\n", ret
);
951 for (i
= 0; i
< rtd
->num_codecs
; i
++) {
952 struct snd_soc_dai
*codec_dai
= rtd
->codec_dais
[i
];
953 struct snd_pcm_hw_params codec_params
;
956 * Skip CODECs which don't support the current stream type,
957 * the idea being that if a CODEC is not used for the currently
958 * set up transfer direction, it should not need to be
959 * configured, especially since the configuration used might
960 * not even be supported by that CODEC. There may be cases
961 * however where a CODEC needs to be set up although it is
962 * actually not being used for the transfer, e.g. if a
963 * capture-only CODEC is acting as an LRCLK and/or BCLK master
964 * for the DAI link including a playback-only CODEC.
965 * If this becomes necessary, we will have to augment the
966 * machine driver setup with information on how to act, so
967 * we can do the right thing here.
969 if (!snd_soc_dai_stream_valid(codec_dai
, substream
->stream
))
972 /* copy params for each codec */
973 codec_params
= *params
;
975 /* fixup params based on TDM slot masks */
976 if (codec_dai
->tx_mask
)
977 soc_pcm_codec_params_fixup(&codec_params
,
979 if (codec_dai
->rx_mask
)
980 soc_pcm_codec_params_fixup(&codec_params
,
983 ret
= soc_dai_hw_params(substream
, &codec_params
, codec_dai
);
987 codec_dai
->rate
= params_rate(&codec_params
);
988 codec_dai
->channels
= params_channels(&codec_params
);
989 codec_dai
->sample_bits
= snd_pcm_format_physical_width(
990 params_format(&codec_params
));
993 ret
= soc_dai_hw_params(substream
, params
, cpu_dai
);
997 if (platform
&& platform
->driver
->ops
&& platform
->driver
->ops
->hw_params
) {
998 ret
= platform
->driver
->ops
->hw_params(substream
, params
);
1000 dev_err(platform
->dev
, "ASoC: %s hw params failed: %d\n",
1001 platform
->component
.name
, ret
);
1007 for_each_rtdcom(rtd
, rtdcom
) {
1008 component
= rtdcom
->component
;
1010 /* ignore duplication for now */
1011 if (platform
&& (component
== &platform
->component
))
1014 if (!component
->driver
->ops
||
1015 !component
->driver
->ops
->hw_params
)
1018 __ret
= component
->driver
->ops
->hw_params(substream
, params
);
1020 dev_err(component
->dev
,
1021 "ASoC: %s hw params failed: %d\n",
1022 component
->name
, ret
);
1029 /* store the parameters for each DAIs */
1030 cpu_dai
->rate
= params_rate(params
);
1031 cpu_dai
->channels
= params_channels(params
);
1032 cpu_dai
->sample_bits
=
1033 snd_pcm_format_physical_width(params_format(params
));
1035 ret
= soc_pcm_params_symmetry(substream
, params
);
1039 mutex_unlock(&rtd
->pcm_mutex
);
1043 for_each_rtdcom(rtd
, rtdcom
) {
1044 component
= rtdcom
->component
;
1046 /* ignore duplication */
1047 if (platform
&& (component
== &platform
->component
))
1050 if (!component
->driver
->ops
||
1051 !component
->driver
->ops
->hw_free
)
1054 component
->driver
->ops
->hw_free(substream
);
1057 if (platform
&& platform
->driver
->ops
&& platform
->driver
->ops
->hw_free
)
1058 platform
->driver
->ops
->hw_free(substream
);
1061 if (cpu_dai
->driver
->ops
->hw_free
)
1062 cpu_dai
->driver
->ops
->hw_free(substream
, cpu_dai
);
1065 i
= rtd
->num_codecs
;
1069 struct snd_soc_dai
*codec_dai
= rtd
->codec_dais
[i
];
1070 if (codec_dai
->driver
->ops
->hw_free
)
1071 codec_dai
->driver
->ops
->hw_free(substream
, codec_dai
);
1072 codec_dai
->rate
= 0;
1075 if (rtd
->dai_link
->ops
->hw_free
)
1076 rtd
->dai_link
->ops
->hw_free(substream
);
1078 mutex_unlock(&rtd
->pcm_mutex
);
1083 * Frees resources allocated by hw_params, can be called multiple times
1085 static int soc_pcm_hw_free(struct snd_pcm_substream
*substream
)
1087 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
1088 struct snd_soc_platform
*platform
= rtd
->platform
;
1089 struct snd_soc_component
*component
;
1090 struct snd_soc_rtdcom_list
*rtdcom
;
1091 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
1092 struct snd_soc_dai
*codec_dai
;
1093 bool playback
= substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
;
1096 mutex_lock_nested(&rtd
->pcm_mutex
, rtd
->pcm_subclass
);
1098 /* clear the corresponding DAIs parameters when going to be inactive */
1099 if (cpu_dai
->active
== 1) {
1101 cpu_dai
->channels
= 0;
1102 cpu_dai
->sample_bits
= 0;
1105 for (i
= 0; i
< rtd
->num_codecs
; i
++) {
1106 codec_dai
= rtd
->codec_dais
[i
];
1107 if (codec_dai
->active
== 1) {
1108 codec_dai
->rate
= 0;
1109 codec_dai
->channels
= 0;
1110 codec_dai
->sample_bits
= 0;
1114 /* apply codec digital mute */
1115 for (i
= 0; i
< rtd
->num_codecs
; i
++) {
1116 if ((playback
&& rtd
->codec_dais
[i
]->playback_active
== 1) ||
1117 (!playback
&& rtd
->codec_dais
[i
]->capture_active
== 1))
1118 snd_soc_dai_digital_mute(rtd
->codec_dais
[i
], 1,
1122 /* free any machine hw params */
1123 if (rtd
->dai_link
->ops
->hw_free
)
1124 rtd
->dai_link
->ops
->hw_free(substream
);
1126 /* free any DMA resources */
1127 if (platform
&& platform
->driver
->ops
&& platform
->driver
->ops
->hw_free
)
1128 platform
->driver
->ops
->hw_free(substream
);
1130 /* free any component resources */
1131 for_each_rtdcom(rtd
, rtdcom
) {
1132 component
= rtdcom
->component
;
1134 /* ignore duplication for now */
1135 if (platform
&& (component
== &platform
->component
))
1138 if (!component
->driver
->ops
||
1139 !component
->driver
->ops
->hw_free
)
1142 component
->driver
->ops
->hw_free(substream
);
1145 /* now free hw params for the DAIs */
1146 for (i
= 0; i
< rtd
->num_codecs
; i
++) {
1147 codec_dai
= rtd
->codec_dais
[i
];
1148 if (codec_dai
->driver
->ops
->hw_free
)
1149 codec_dai
->driver
->ops
->hw_free(substream
, codec_dai
);
1152 if (cpu_dai
->driver
->ops
->hw_free
)
1153 cpu_dai
->driver
->ops
->hw_free(substream
, cpu_dai
);
1155 mutex_unlock(&rtd
->pcm_mutex
);
1159 static int soc_pcm_trigger(struct snd_pcm_substream
*substream
, int cmd
)
1161 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
1162 struct snd_soc_platform
*platform
= rtd
->platform
;
1163 struct snd_soc_component
*component
;
1164 struct snd_soc_rtdcom_list
*rtdcom
;
1165 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
1166 struct snd_soc_dai
*codec_dai
;
1169 for (i
= 0; i
< rtd
->num_codecs
; i
++) {
1170 codec_dai
= rtd
->codec_dais
[i
];
1171 if (codec_dai
->driver
->ops
->trigger
) {
1172 ret
= codec_dai
->driver
->ops
->trigger(substream
,
1179 if (platform
&& platform
->driver
->ops
&& platform
->driver
->ops
->trigger
) {
1180 ret
= platform
->driver
->ops
->trigger(substream
, cmd
);
1185 for_each_rtdcom(rtd
, rtdcom
) {
1186 component
= rtdcom
->component
;
1188 /* ignore duplication for now */
1189 if (platform
&& (component
== &platform
->component
))
1192 if (!component
->driver
->ops
||
1193 !component
->driver
->ops
->trigger
)
1196 ret
= component
->driver
->ops
->trigger(substream
, cmd
);
1201 if (cpu_dai
->driver
->ops
->trigger
) {
1202 ret
= cpu_dai
->driver
->ops
->trigger(substream
, cmd
, cpu_dai
);
1207 if (rtd
->dai_link
->ops
->trigger
) {
1208 ret
= rtd
->dai_link
->ops
->trigger(substream
, cmd
);
1216 static int soc_pcm_bespoke_trigger(struct snd_pcm_substream
*substream
,
1219 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
1220 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
1221 struct snd_soc_dai
*codec_dai
;
1224 for (i
= 0; i
< rtd
->num_codecs
; i
++) {
1225 codec_dai
= rtd
->codec_dais
[i
];
1226 if (codec_dai
->driver
->ops
->bespoke_trigger
) {
1227 ret
= codec_dai
->driver
->ops
->bespoke_trigger(substream
,
1234 if (cpu_dai
->driver
->ops
->bespoke_trigger
) {
1235 ret
= cpu_dai
->driver
->ops
->bespoke_trigger(substream
, cmd
, cpu_dai
);
1242 * soc level wrapper for pointer callback
1243 * If cpu_dai, codec_dai, platform driver has the delay callback, than
1244 * the runtime->delay will be updated accordingly.
1246 static snd_pcm_uframes_t
soc_pcm_pointer(struct snd_pcm_substream
*substream
)
1248 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
1249 struct snd_soc_platform
*platform
= rtd
->platform
;
1250 struct snd_soc_component
*component
;
1251 struct snd_soc_rtdcom_list
*rtdcom
;
1252 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
1253 struct snd_soc_dai
*codec_dai
;
1254 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1255 snd_pcm_uframes_t offset
= 0;
1256 snd_pcm_sframes_t delay
= 0;
1257 snd_pcm_sframes_t codec_delay
= 0;
1260 if (platform
&& platform
->driver
->ops
&& platform
->driver
->ops
->pointer
)
1261 offset
= platform
->driver
->ops
->pointer(substream
);
1263 for_each_rtdcom(rtd
, rtdcom
) {
1264 component
= rtdcom
->component
;
1266 /* ignore duplication for now */
1267 if (platform
&& (component
== &platform
->component
))
1270 if (!component
->driver
->ops
||
1271 !component
->driver
->ops
->pointer
)
1274 /* FIXME: use 1st pointer */
1275 offset
= component
->driver
->ops
->pointer(substream
);
1279 if (cpu_dai
->driver
->ops
->delay
)
1280 delay
+= cpu_dai
->driver
->ops
->delay(substream
, cpu_dai
);
1282 for (i
= 0; i
< rtd
->num_codecs
; i
++) {
1283 codec_dai
= rtd
->codec_dais
[i
];
1284 if (codec_dai
->driver
->ops
->delay
)
1285 codec_delay
= max(codec_delay
,
1286 codec_dai
->driver
->ops
->delay(substream
,
1289 delay
+= codec_delay
;
1291 runtime
->delay
= delay
;
1296 /* connect a FE and BE */
1297 static int dpcm_be_connect(struct snd_soc_pcm_runtime
*fe
,
1298 struct snd_soc_pcm_runtime
*be
, int stream
)
1300 struct snd_soc_dpcm
*dpcm
;
1302 /* only add new dpcms */
1303 list_for_each_entry(dpcm
, &fe
->dpcm
[stream
].be_clients
, list_be
) {
1304 if (dpcm
->be
== be
&& dpcm
->fe
== fe
)
1308 dpcm
= kzalloc(sizeof(struct snd_soc_dpcm
), GFP_KERNEL
);
1314 be
->dpcm
[stream
].runtime
= fe
->dpcm
[stream
].runtime
;
1315 dpcm
->state
= SND_SOC_DPCM_LINK_STATE_NEW
;
1316 list_add(&dpcm
->list_be
, &fe
->dpcm
[stream
].be_clients
);
1317 list_add(&dpcm
->list_fe
, &be
->dpcm
[stream
].fe_clients
);
1319 dev_dbg(fe
->dev
, "connected new DPCM %s path %s %s %s\n",
1320 stream
? "capture" : "playback", fe
->dai_link
->name
,
1321 stream
? "<-" : "->", be
->dai_link
->name
);
1323 #ifdef CONFIG_DEBUG_FS
1324 if (fe
->debugfs_dpcm_root
)
1325 dpcm
->debugfs_state
= debugfs_create_u32(be
->dai_link
->name
, 0644,
1326 fe
->debugfs_dpcm_root
, &dpcm
->state
);
1331 /* reparent a BE onto another FE */
1332 static void dpcm_be_reparent(struct snd_soc_pcm_runtime
*fe
,
1333 struct snd_soc_pcm_runtime
*be
, int stream
)
1335 struct snd_soc_dpcm
*dpcm
;
1336 struct snd_pcm_substream
*fe_substream
, *be_substream
;
1338 /* reparent if BE is connected to other FEs */
1339 if (!be
->dpcm
[stream
].users
)
1342 be_substream
= snd_soc_dpcm_get_substream(be
, stream
);
1344 list_for_each_entry(dpcm
, &be
->dpcm
[stream
].fe_clients
, list_fe
) {
1348 dev_dbg(fe
->dev
, "reparent %s path %s %s %s\n",
1349 stream
? "capture" : "playback",
1350 dpcm
->fe
->dai_link
->name
,
1351 stream
? "<-" : "->", dpcm
->be
->dai_link
->name
);
1353 fe_substream
= snd_soc_dpcm_get_substream(dpcm
->fe
, stream
);
1354 be_substream
->runtime
= fe_substream
->runtime
;
1359 /* disconnect a BE and FE */
1360 void dpcm_be_disconnect(struct snd_soc_pcm_runtime
*fe
, int stream
)
1362 struct snd_soc_dpcm
*dpcm
, *d
;
1364 list_for_each_entry_safe(dpcm
, d
, &fe
->dpcm
[stream
].be_clients
, list_be
) {
1365 dev_dbg(fe
->dev
, "ASoC: BE %s disconnect check for %s\n",
1366 stream
? "capture" : "playback",
1367 dpcm
->be
->dai_link
->name
);
1369 if (dpcm
->state
!= SND_SOC_DPCM_LINK_STATE_FREE
)
1372 dev_dbg(fe
->dev
, "freed DSP %s path %s %s %s\n",
1373 stream
? "capture" : "playback", fe
->dai_link
->name
,
1374 stream
? "<-" : "->", dpcm
->be
->dai_link
->name
);
1376 /* BEs still alive need new FE */
1377 dpcm_be_reparent(fe
, dpcm
->be
, stream
);
1379 #ifdef CONFIG_DEBUG_FS
1380 debugfs_remove(dpcm
->debugfs_state
);
1382 list_del(&dpcm
->list_be
);
1383 list_del(&dpcm
->list_fe
);
1388 /* get BE for DAI widget and stream */
1389 static struct snd_soc_pcm_runtime
*dpcm_get_be(struct snd_soc_card
*card
,
1390 struct snd_soc_dapm_widget
*widget
, int stream
)
1392 struct snd_soc_pcm_runtime
*be
;
1395 if (stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
1396 list_for_each_entry(be
, &card
->rtd_list
, list
) {
1398 if (!be
->dai_link
->no_pcm
)
1401 if (be
->cpu_dai
->playback_widget
== widget
)
1404 for (i
= 0; i
< be
->num_codecs
; i
++) {
1405 struct snd_soc_dai
*dai
= be
->codec_dais
[i
];
1406 if (dai
->playback_widget
== widget
)
1412 list_for_each_entry(be
, &card
->rtd_list
, list
) {
1414 if (!be
->dai_link
->no_pcm
)
1417 if (be
->cpu_dai
->capture_widget
== widget
)
1420 for (i
= 0; i
< be
->num_codecs
; i
++) {
1421 struct snd_soc_dai
*dai
= be
->codec_dais
[i
];
1422 if (dai
->capture_widget
== widget
)
1428 dev_err(card
->dev
, "ASoC: can't get %s BE for %s\n",
1429 stream
? "capture" : "playback", widget
->name
);
1433 static inline struct snd_soc_dapm_widget
*
1434 dai_get_widget(struct snd_soc_dai
*dai
, int stream
)
1436 if (stream
== SNDRV_PCM_STREAM_PLAYBACK
)
1437 return dai
->playback_widget
;
1439 return dai
->capture_widget
;
1442 static int widget_in_list(struct snd_soc_dapm_widget_list
*list
,
1443 struct snd_soc_dapm_widget
*widget
)
1447 for (i
= 0; i
< list
->num_widgets
; i
++) {
1448 if (widget
== list
->widgets
[i
])
1455 static bool dpcm_end_walk_at_be(struct snd_soc_dapm_widget
*widget
,
1456 enum snd_soc_dapm_direction dir
)
1458 struct snd_soc_card
*card
= widget
->dapm
->card
;
1459 struct snd_soc_pcm_runtime
*rtd
;
1462 if (dir
== SND_SOC_DAPM_DIR_OUT
) {
1463 list_for_each_entry(rtd
, &card
->rtd_list
, list
) {
1464 if (!rtd
->dai_link
->no_pcm
)
1467 if (rtd
->cpu_dai
->playback_widget
== widget
)
1470 for (i
= 0; i
< rtd
->num_codecs
; ++i
) {
1471 struct snd_soc_dai
*dai
= rtd
->codec_dais
[i
];
1472 if (dai
->playback_widget
== widget
)
1476 } else { /* SND_SOC_DAPM_DIR_IN */
1477 list_for_each_entry(rtd
, &card
->rtd_list
, list
) {
1478 if (!rtd
->dai_link
->no_pcm
)
1481 if (rtd
->cpu_dai
->capture_widget
== widget
)
1484 for (i
= 0; i
< rtd
->num_codecs
; ++i
) {
1485 struct snd_soc_dai
*dai
= rtd
->codec_dais
[i
];
1486 if (dai
->capture_widget
== widget
)
1495 int dpcm_path_get(struct snd_soc_pcm_runtime
*fe
,
1496 int stream
, struct snd_soc_dapm_widget_list
**list
)
1498 struct snd_soc_dai
*cpu_dai
= fe
->cpu_dai
;
1501 /* get number of valid DAI paths and their widgets */
1502 paths
= snd_soc_dapm_dai_get_connected_widgets(cpu_dai
, stream
, list
,
1503 dpcm_end_walk_at_be
);
1505 dev_dbg(fe
->dev
, "ASoC: found %d audio %s paths\n", paths
,
1506 stream
? "capture" : "playback");
1511 static int dpcm_prune_paths(struct snd_soc_pcm_runtime
*fe
, int stream
,
1512 struct snd_soc_dapm_widget_list
**list_
)
1514 struct snd_soc_dpcm
*dpcm
;
1515 struct snd_soc_dapm_widget_list
*list
= *list_
;
1516 struct snd_soc_dapm_widget
*widget
;
1519 /* Destroy any old FE <--> BE connections */
1520 list_for_each_entry(dpcm
, &fe
->dpcm
[stream
].be_clients
, list_be
) {
1523 /* is there a valid CPU DAI widget for this BE */
1524 widget
= dai_get_widget(dpcm
->be
->cpu_dai
, stream
);
1526 /* prune the BE if it's no longer in our active list */
1527 if (widget
&& widget_in_list(list
, widget
))
1530 /* is there a valid CODEC DAI widget for this BE */
1531 for (i
= 0; i
< dpcm
->be
->num_codecs
; i
++) {
1532 struct snd_soc_dai
*dai
= dpcm
->be
->codec_dais
[i
];
1533 widget
= dai_get_widget(dai
, stream
);
1535 /* prune the BE if it's no longer in our active list */
1536 if (widget
&& widget_in_list(list
, widget
))
1540 dev_dbg(fe
->dev
, "ASoC: pruning %s BE %s for %s\n",
1541 stream
? "capture" : "playback",
1542 dpcm
->be
->dai_link
->name
, fe
->dai_link
->name
);
1543 dpcm
->state
= SND_SOC_DPCM_LINK_STATE_FREE
;
1544 dpcm
->be
->dpcm
[stream
].runtime_update
= SND_SOC_DPCM_UPDATE_BE
;
1548 dev_dbg(fe
->dev
, "ASoC: found %d old BE paths for pruning\n", prune
);
1552 static int dpcm_add_paths(struct snd_soc_pcm_runtime
*fe
, int stream
,
1553 struct snd_soc_dapm_widget_list
**list_
)
1555 struct snd_soc_card
*card
= fe
->card
;
1556 struct snd_soc_dapm_widget_list
*list
= *list_
;
1557 struct snd_soc_pcm_runtime
*be
;
1558 int i
, new = 0, err
;
1560 /* Create any new FE <--> BE connections */
1561 for (i
= 0; i
< list
->num_widgets
; i
++) {
1563 switch (list
->widgets
[i
]->id
) {
1564 case snd_soc_dapm_dai_in
:
1565 if (stream
!= SNDRV_PCM_STREAM_PLAYBACK
)
1568 case snd_soc_dapm_dai_out
:
1569 if (stream
!= SNDRV_PCM_STREAM_CAPTURE
)
1576 /* is there a valid BE rtd for this widget */
1577 be
= dpcm_get_be(card
, list
->widgets
[i
], stream
);
1579 dev_err(fe
->dev
, "ASoC: no BE found for %s\n",
1580 list
->widgets
[i
]->name
);
1584 /* make sure BE is a real BE */
1585 if (!be
->dai_link
->no_pcm
)
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",
1596 list
->widgets
[i
]->name
);
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
;
1627 list_for_each_entry(dpcm
, &fe
->dpcm
[stream
].be_clients
, list_be
)
1628 dpcm
->be
->dpcm
[stream
].runtime_update
=
1629 SND_SOC_DPCM_UPDATE_NO
;
1632 static void dpcm_be_dai_startup_unwind(struct snd_soc_pcm_runtime
*fe
,
1635 struct snd_soc_dpcm
*dpcm
;
1637 /* disable any enabled and non active backends */
1638 list_for_each_entry(dpcm
, &fe
->dpcm
[stream
].be_clients
, list_be
) {
1640 struct snd_soc_pcm_runtime
*be
= dpcm
->be
;
1641 struct snd_pcm_substream
*be_substream
=
1642 snd_soc_dpcm_get_substream(be
, stream
);
1644 if (be
->dpcm
[stream
].users
== 0)
1645 dev_err(be
->dev
, "ASoC: no users %s at close - state %d\n",
1646 stream
? "capture" : "playback",
1647 be
->dpcm
[stream
].state
);
1649 if (--be
->dpcm
[stream
].users
!= 0)
1652 if (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_OPEN
)
1655 soc_pcm_close(be_substream
);
1656 be_substream
->runtime
= NULL
;
1657 be
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_CLOSE
;
1661 int dpcm_be_dai_startup(struct snd_soc_pcm_runtime
*fe
, int stream
)
1663 struct snd_soc_dpcm
*dpcm
;
1666 /* only startup BE DAIs that are either sinks or sources to this FE DAI */
1667 list_for_each_entry(dpcm
, &fe
->dpcm
[stream
].be_clients
, list_be
) {
1669 struct snd_soc_pcm_runtime
*be
= dpcm
->be
;
1670 struct snd_pcm_substream
*be_substream
=
1671 snd_soc_dpcm_get_substream(be
, stream
);
1673 if (!be_substream
) {
1674 dev_err(be
->dev
, "ASoC: no backend %s stream\n",
1675 stream
? "capture" : "playback");
1679 /* is this op for this BE ? */
1680 if (!snd_soc_dpcm_be_can_update(fe
, be
, stream
))
1683 /* first time the dpcm is open ? */
1684 if (be
->dpcm
[stream
].users
== DPCM_MAX_BE_USERS
)
1685 dev_err(be
->dev
, "ASoC: too many users %s at open %d\n",
1686 stream
? "capture" : "playback",
1687 be
->dpcm
[stream
].state
);
1689 if (be
->dpcm
[stream
].users
++ != 0)
1692 if ((be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_NEW
) &&
1693 (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_CLOSE
))
1696 dev_dbg(be
->dev
, "ASoC: open %s BE %s\n",
1697 stream
? "capture" : "playback", be
->dai_link
->name
);
1699 be_substream
->runtime
= be
->dpcm
[stream
].runtime
;
1700 err
= soc_pcm_open(be_substream
);
1702 dev_err(be
->dev
, "ASoC: BE open failed %d\n", err
);
1703 be
->dpcm
[stream
].users
--;
1704 if (be
->dpcm
[stream
].users
< 0)
1705 dev_err(be
->dev
, "ASoC: no users %s at unwind %d\n",
1706 stream
? "capture" : "playback",
1707 be
->dpcm
[stream
].state
);
1709 be
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_CLOSE
;
1713 be
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_OPEN
;
1720 /* disable any enabled and non active backends */
1721 list_for_each_entry_continue_reverse(dpcm
, &fe
->dpcm
[stream
].be_clients
, list_be
) {
1722 struct snd_soc_pcm_runtime
*be
= dpcm
->be
;
1723 struct snd_pcm_substream
*be_substream
=
1724 snd_soc_dpcm_get_substream(be
, stream
);
1726 if (!snd_soc_dpcm_be_can_update(fe
, be
, stream
))
1729 if (be
->dpcm
[stream
].users
== 0)
1730 dev_err(be
->dev
, "ASoC: no users %s at close %d\n",
1731 stream
? "capture" : "playback",
1732 be
->dpcm
[stream
].state
);
1734 if (--be
->dpcm
[stream
].users
!= 0)
1737 if (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_OPEN
)
1740 soc_pcm_close(be_substream
);
1741 be_substream
->runtime
= NULL
;
1742 be
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_CLOSE
;
1748 static void dpcm_init_runtime_hw(struct snd_pcm_runtime
*runtime
,
1749 struct snd_soc_pcm_stream
*stream
,
1752 runtime
->hw
.rate_min
= stream
->rate_min
;
1753 runtime
->hw
.rate_max
= stream
->rate_max
;
1754 runtime
->hw
.channels_min
= stream
->channels_min
;
1755 runtime
->hw
.channels_max
= stream
->channels_max
;
1756 if (runtime
->hw
.formats
)
1757 runtime
->hw
.formats
&= formats
& stream
->formats
;
1759 runtime
->hw
.formats
= formats
& stream
->formats
;
1760 runtime
->hw
.rates
= stream
->rates
;
1763 static u64
dpcm_runtime_base_format(struct snd_pcm_substream
*substream
)
1765 struct snd_soc_pcm_runtime
*fe
= substream
->private_data
;
1766 struct snd_soc_dpcm
*dpcm
;
1767 u64 formats
= ULLONG_MAX
;
1768 int stream
= substream
->stream
;
1770 if (!fe
->dai_link
->dpcm_merged_format
)
1774 * It returns merged BE codec format
1775 * if FE want to use it (= dpcm_merged_format)
1778 list_for_each_entry(dpcm
, &fe
->dpcm
[stream
].be_clients
, list_be
) {
1779 struct snd_soc_pcm_runtime
*be
= dpcm
->be
;
1780 struct snd_soc_dai_driver
*codec_dai_drv
;
1781 struct snd_soc_pcm_stream
*codec_stream
;
1784 for (i
= 0; i
< be
->num_codecs
; i
++) {
1785 codec_dai_drv
= be
->codec_dais
[i
]->driver
;
1786 if (stream
== SNDRV_PCM_STREAM_PLAYBACK
)
1787 codec_stream
= &codec_dai_drv
->playback
;
1789 codec_stream
= &codec_dai_drv
->capture
;
1791 formats
&= codec_stream
->formats
;
1798 static void dpcm_set_fe_runtime(struct snd_pcm_substream
*substream
)
1800 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1801 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
1802 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
1803 struct snd_soc_dai_driver
*cpu_dai_drv
= cpu_dai
->driver
;
1804 u64 format
= dpcm_runtime_base_format(substream
);
1806 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
1807 dpcm_init_runtime_hw(runtime
, &cpu_dai_drv
->playback
, format
);
1809 dpcm_init_runtime_hw(runtime
, &cpu_dai_drv
->capture
, format
);
1812 static int dpcm_fe_dai_do_trigger(struct snd_pcm_substream
*substream
, int cmd
);
1814 /* Set FE's runtime_update state; the state is protected via PCM stream lock
1815 * for avoiding the race with trigger callback.
1816 * If the state is unset and a trigger is pending while the previous operation,
1817 * process the pending trigger action here.
1819 static void dpcm_set_fe_update_state(struct snd_soc_pcm_runtime
*fe
,
1820 int stream
, enum snd_soc_dpcm_update state
)
1822 struct snd_pcm_substream
*substream
=
1823 snd_soc_dpcm_get_substream(fe
, stream
);
1825 snd_pcm_stream_lock_irq(substream
);
1826 if (state
== SND_SOC_DPCM_UPDATE_NO
&& fe
->dpcm
[stream
].trigger_pending
) {
1827 dpcm_fe_dai_do_trigger(substream
,
1828 fe
->dpcm
[stream
].trigger_pending
- 1);
1829 fe
->dpcm
[stream
].trigger_pending
= 0;
1831 fe
->dpcm
[stream
].runtime_update
= state
;
1832 snd_pcm_stream_unlock_irq(substream
);
1835 static int dpcm_apply_symmetry(struct snd_pcm_substream
*fe_substream
,
1838 struct snd_soc_dpcm
*dpcm
;
1839 struct snd_soc_pcm_runtime
*fe
= fe_substream
->private_data
;
1840 struct snd_soc_dai
*fe_cpu_dai
= fe
->cpu_dai
;
1843 /* apply symmetry for FE */
1844 if (soc_pcm_has_symmetry(fe_substream
))
1845 fe_substream
->runtime
->hw
.info
|= SNDRV_PCM_INFO_JOINT_DUPLEX
;
1847 /* Symmetry only applies if we've got an active stream. */
1848 if (fe_cpu_dai
->active
) {
1849 err
= soc_pcm_apply_symmetry(fe_substream
, fe_cpu_dai
);
1854 /* apply symmetry for BE */
1855 list_for_each_entry(dpcm
, &fe
->dpcm
[stream
].be_clients
, list_be
) {
1856 struct snd_soc_pcm_runtime
*be
= dpcm
->be
;
1857 struct snd_pcm_substream
*be_substream
=
1858 snd_soc_dpcm_get_substream(be
, stream
);
1859 struct snd_soc_pcm_runtime
*rtd
= be_substream
->private_data
;
1862 if (rtd
->dai_link
->be_hw_params_fixup
)
1865 if (soc_pcm_has_symmetry(be_substream
))
1866 be_substream
->runtime
->hw
.info
|= SNDRV_PCM_INFO_JOINT_DUPLEX
;
1868 /* Symmetry only applies if we've got an active stream. */
1869 if (rtd
->cpu_dai
->active
) {
1870 err
= soc_pcm_apply_symmetry(be_substream
, rtd
->cpu_dai
);
1875 for (i
= 0; i
< rtd
->num_codecs
; i
++) {
1876 if (rtd
->codec_dais
[i
]->active
) {
1877 err
= soc_pcm_apply_symmetry(be_substream
,
1878 rtd
->codec_dais
[i
]);
1888 static int dpcm_fe_dai_startup(struct snd_pcm_substream
*fe_substream
)
1890 struct snd_soc_pcm_runtime
*fe
= fe_substream
->private_data
;
1891 struct snd_pcm_runtime
*runtime
= fe_substream
->runtime
;
1892 int stream
= fe_substream
->stream
, ret
= 0;
1894 dpcm_set_fe_update_state(fe
, stream
, SND_SOC_DPCM_UPDATE_FE
);
1896 ret
= dpcm_be_dai_startup(fe
, fe_substream
->stream
);
1898 dev_err(fe
->dev
,"ASoC: failed to start some BEs %d\n", ret
);
1902 dev_dbg(fe
->dev
, "ASoC: open FE %s\n", fe
->dai_link
->name
);
1904 /* start the DAI frontend */
1905 ret
= soc_pcm_open(fe_substream
);
1907 dev_err(fe
->dev
,"ASoC: failed to start FE %d\n", ret
);
1911 fe
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_OPEN
;
1913 dpcm_set_fe_runtime(fe_substream
);
1914 snd_pcm_limit_hw_rates(runtime
);
1916 ret
= dpcm_apply_symmetry(fe_substream
, stream
);
1918 dev_err(fe
->dev
, "ASoC: failed to apply dpcm symmetry %d\n",
1923 dpcm_set_fe_update_state(fe
, stream
, SND_SOC_DPCM_UPDATE_NO
);
1927 dpcm_be_dai_startup_unwind(fe
, fe_substream
->stream
);
1929 dpcm_set_fe_update_state(fe
, stream
, SND_SOC_DPCM_UPDATE_NO
);
1933 int dpcm_be_dai_shutdown(struct snd_soc_pcm_runtime
*fe
, int stream
)
1935 struct snd_soc_dpcm
*dpcm
;
1937 /* only shutdown BEs that are either sinks or sources to this FE DAI */
1938 list_for_each_entry(dpcm
, &fe
->dpcm
[stream
].be_clients
, list_be
) {
1940 struct snd_soc_pcm_runtime
*be
= dpcm
->be
;
1941 struct snd_pcm_substream
*be_substream
=
1942 snd_soc_dpcm_get_substream(be
, stream
);
1944 /* is this op for this BE ? */
1945 if (!snd_soc_dpcm_be_can_update(fe
, be
, stream
))
1948 if (be
->dpcm
[stream
].users
== 0)
1949 dev_err(be
->dev
, "ASoC: no users %s at close - state %d\n",
1950 stream
? "capture" : "playback",
1951 be
->dpcm
[stream
].state
);
1953 if (--be
->dpcm
[stream
].users
!= 0)
1956 if ((be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_HW_FREE
) &&
1957 (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_OPEN
))
1960 dev_dbg(be
->dev
, "ASoC: close BE %s\n",
1961 be
->dai_link
->name
);
1963 soc_pcm_close(be_substream
);
1964 be_substream
->runtime
= NULL
;
1966 be
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_CLOSE
;
1971 static int dpcm_fe_dai_shutdown(struct snd_pcm_substream
*substream
)
1973 struct snd_soc_pcm_runtime
*fe
= substream
->private_data
;
1974 int stream
= substream
->stream
;
1976 dpcm_set_fe_update_state(fe
, stream
, SND_SOC_DPCM_UPDATE_FE
);
1978 /* shutdown the BEs */
1979 dpcm_be_dai_shutdown(fe
, substream
->stream
);
1981 dev_dbg(fe
->dev
, "ASoC: close FE %s\n", fe
->dai_link
->name
);
1983 /* now shutdown the frontend */
1984 soc_pcm_close(substream
);
1986 /* run the stream event for each BE */
1987 dpcm_dapm_stream_event(fe
, stream
, SND_SOC_DAPM_STREAM_STOP
);
1989 fe
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_CLOSE
;
1990 dpcm_set_fe_update_state(fe
, stream
, SND_SOC_DPCM_UPDATE_NO
);
1994 int dpcm_be_dai_hw_free(struct snd_soc_pcm_runtime
*fe
, int stream
)
1996 struct snd_soc_dpcm
*dpcm
;
1998 /* only hw_params backends that are either sinks or sources
1999 * to this frontend DAI */
2000 list_for_each_entry(dpcm
, &fe
->dpcm
[stream
].be_clients
, list_be
) {
2002 struct snd_soc_pcm_runtime
*be
= dpcm
->be
;
2003 struct snd_pcm_substream
*be_substream
=
2004 snd_soc_dpcm_get_substream(be
, stream
);
2006 /* is this op for this BE ? */
2007 if (!snd_soc_dpcm_be_can_update(fe
, be
, stream
))
2010 /* only free hw when no longer used - check all FEs */
2011 if (!snd_soc_dpcm_can_be_free_stop(fe
, be
, stream
))
2014 /* do not free hw if this BE is used by other FE */
2015 if (be
->dpcm
[stream
].users
> 1)
2018 if ((be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_HW_PARAMS
) &&
2019 (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_PREPARE
) &&
2020 (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_HW_FREE
) &&
2021 (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_PAUSED
) &&
2022 (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_STOP
) &&
2023 (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_SUSPEND
))
2026 dev_dbg(be
->dev
, "ASoC: hw_free BE %s\n",
2027 be
->dai_link
->name
);
2029 soc_pcm_hw_free(be_substream
);
2031 be
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_HW_FREE
;
2037 static int dpcm_fe_dai_hw_free(struct snd_pcm_substream
*substream
)
2039 struct snd_soc_pcm_runtime
*fe
= substream
->private_data
;
2040 int err
, stream
= substream
->stream
;
2042 mutex_lock_nested(&fe
->card
->mutex
, SND_SOC_CARD_CLASS_RUNTIME
);
2043 dpcm_set_fe_update_state(fe
, stream
, SND_SOC_DPCM_UPDATE_FE
);
2045 dev_dbg(fe
->dev
, "ASoC: hw_free FE %s\n", fe
->dai_link
->name
);
2047 /* call hw_free on the frontend */
2048 err
= soc_pcm_hw_free(substream
);
2050 dev_err(fe
->dev
,"ASoC: hw_free FE %s failed\n",
2051 fe
->dai_link
->name
);
2053 /* only hw_params backends that are either sinks or sources
2054 * to this frontend DAI */
2055 err
= dpcm_be_dai_hw_free(fe
, stream
);
2057 fe
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_HW_FREE
;
2058 dpcm_set_fe_update_state(fe
, stream
, SND_SOC_DPCM_UPDATE_NO
);
2060 mutex_unlock(&fe
->card
->mutex
);
2064 int dpcm_be_dai_hw_params(struct snd_soc_pcm_runtime
*fe
, int stream
)
2066 struct snd_soc_dpcm
*dpcm
;
2069 list_for_each_entry(dpcm
, &fe
->dpcm
[stream
].be_clients
, list_be
) {
2071 struct snd_soc_pcm_runtime
*be
= dpcm
->be
;
2072 struct snd_pcm_substream
*be_substream
=
2073 snd_soc_dpcm_get_substream(be
, stream
);
2075 /* is this op for this BE ? */
2076 if (!snd_soc_dpcm_be_can_update(fe
, be
, stream
))
2079 /* copy params for each dpcm */
2080 memcpy(&dpcm
->hw_params
, &fe
->dpcm
[stream
].hw_params
,
2081 sizeof(struct snd_pcm_hw_params
));
2083 /* perform any hw_params fixups */
2084 if (be
->dai_link
->be_hw_params_fixup
) {
2085 ret
= be
->dai_link
->be_hw_params_fixup(be
,
2089 "ASoC: hw_params BE fixup failed %d\n",
2095 /* only allow hw_params() if no connected FEs are running */
2096 if (!snd_soc_dpcm_can_be_params(fe
, be
, stream
))
2099 if ((be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_OPEN
) &&
2100 (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_HW_PARAMS
) &&
2101 (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_HW_FREE
))
2104 dev_dbg(be
->dev
, "ASoC: hw_params BE %s\n",
2105 be
->dai_link
->name
);
2107 ret
= soc_pcm_hw_params(be_substream
, &dpcm
->hw_params
);
2109 dev_err(dpcm
->be
->dev
,
2110 "ASoC: hw_params BE failed %d\n", ret
);
2114 be
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_HW_PARAMS
;
2119 /* disable any enabled and non active backends */
2120 list_for_each_entry_continue_reverse(dpcm
, &fe
->dpcm
[stream
].be_clients
, list_be
) {
2121 struct snd_soc_pcm_runtime
*be
= dpcm
->be
;
2122 struct snd_pcm_substream
*be_substream
=
2123 snd_soc_dpcm_get_substream(be
, stream
);
2125 if (!snd_soc_dpcm_be_can_update(fe
, be
, stream
))
2128 /* only allow hw_free() if no connected FEs are running */
2129 if (!snd_soc_dpcm_can_be_free_stop(fe
, be
, stream
))
2132 if ((be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_OPEN
) &&
2133 (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_HW_PARAMS
) &&
2134 (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_HW_FREE
) &&
2135 (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_STOP
))
2138 soc_pcm_hw_free(be_substream
);
2144 static int dpcm_fe_dai_hw_params(struct snd_pcm_substream
*substream
,
2145 struct snd_pcm_hw_params
*params
)
2147 struct snd_soc_pcm_runtime
*fe
= substream
->private_data
;
2148 int ret
, stream
= substream
->stream
;
2150 mutex_lock_nested(&fe
->card
->mutex
, SND_SOC_CARD_CLASS_RUNTIME
);
2151 dpcm_set_fe_update_state(fe
, stream
, SND_SOC_DPCM_UPDATE_FE
);
2153 memcpy(&fe
->dpcm
[substream
->stream
].hw_params
, params
,
2154 sizeof(struct snd_pcm_hw_params
));
2155 ret
= dpcm_be_dai_hw_params(fe
, substream
->stream
);
2157 dev_err(fe
->dev
,"ASoC: hw_params BE failed %d\n", ret
);
2161 dev_dbg(fe
->dev
, "ASoC: hw_params FE %s rate %d chan %x fmt %d\n",
2162 fe
->dai_link
->name
, params_rate(params
),
2163 params_channels(params
), params_format(params
));
2165 /* call hw_params on the frontend */
2166 ret
= soc_pcm_hw_params(substream
, params
);
2168 dev_err(fe
->dev
,"ASoC: hw_params FE failed %d\n", ret
);
2169 dpcm_be_dai_hw_free(fe
, stream
);
2171 fe
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_HW_PARAMS
;
2174 dpcm_set_fe_update_state(fe
, stream
, SND_SOC_DPCM_UPDATE_NO
);
2175 mutex_unlock(&fe
->card
->mutex
);
2179 static int dpcm_do_trigger(struct snd_soc_dpcm
*dpcm
,
2180 struct snd_pcm_substream
*substream
, int cmd
)
2184 dev_dbg(dpcm
->be
->dev
, "ASoC: trigger BE %s cmd %d\n",
2185 dpcm
->be
->dai_link
->name
, cmd
);
2187 ret
= soc_pcm_trigger(substream
, cmd
);
2189 dev_err(dpcm
->be
->dev
,"ASoC: trigger BE failed %d\n", ret
);
2194 int dpcm_be_dai_trigger(struct snd_soc_pcm_runtime
*fe
, int stream
,
2197 struct snd_soc_dpcm
*dpcm
;
2200 list_for_each_entry(dpcm
, &fe
->dpcm
[stream
].be_clients
, list_be
) {
2202 struct snd_soc_pcm_runtime
*be
= dpcm
->be
;
2203 struct snd_pcm_substream
*be_substream
=
2204 snd_soc_dpcm_get_substream(be
, stream
);
2206 /* is this op for this BE ? */
2207 if (!snd_soc_dpcm_be_can_update(fe
, be
, stream
))
2211 case SNDRV_PCM_TRIGGER_START
:
2212 if ((be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_PREPARE
) &&
2213 (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_STOP
))
2216 ret
= dpcm_do_trigger(dpcm
, be_substream
, cmd
);
2220 be
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_START
;
2222 case SNDRV_PCM_TRIGGER_RESUME
:
2223 if ((be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_SUSPEND
))
2226 ret
= dpcm_do_trigger(dpcm
, be_substream
, cmd
);
2230 be
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_START
;
2232 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
2233 if ((be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_PAUSED
))
2236 ret
= dpcm_do_trigger(dpcm
, be_substream
, cmd
);
2240 be
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_START
;
2242 case SNDRV_PCM_TRIGGER_STOP
:
2243 if (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_START
)
2246 if (!snd_soc_dpcm_can_be_free_stop(fe
, be
, stream
))
2249 ret
= dpcm_do_trigger(dpcm
, be_substream
, cmd
);
2253 be
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_STOP
;
2255 case SNDRV_PCM_TRIGGER_SUSPEND
:
2256 if (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_START
)
2259 if (!snd_soc_dpcm_can_be_free_stop(fe
, be
, stream
))
2262 ret
= dpcm_do_trigger(dpcm
, be_substream
, cmd
);
2266 be
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_SUSPEND
;
2268 case SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
2269 if (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_START
)
2272 if (!snd_soc_dpcm_can_be_free_stop(fe
, be
, stream
))
2275 ret
= dpcm_do_trigger(dpcm
, be_substream
, cmd
);
2279 be
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_PAUSED
;
2286 EXPORT_SYMBOL_GPL(dpcm_be_dai_trigger
);
2288 static int dpcm_fe_dai_do_trigger(struct snd_pcm_substream
*substream
, int cmd
)
2290 struct snd_soc_pcm_runtime
*fe
= substream
->private_data
;
2291 int stream
= substream
->stream
, ret
;
2292 enum snd_soc_dpcm_trigger trigger
= fe
->dai_link
->trigger
[stream
];
2294 fe
->dpcm
[stream
].runtime_update
= SND_SOC_DPCM_UPDATE_FE
;
2297 case SND_SOC_DPCM_TRIGGER_PRE
:
2298 /* call trigger on the frontend before the backend. */
2300 dev_dbg(fe
->dev
, "ASoC: pre trigger FE %s cmd %d\n",
2301 fe
->dai_link
->name
, cmd
);
2303 ret
= soc_pcm_trigger(substream
, cmd
);
2305 dev_err(fe
->dev
,"ASoC: trigger FE failed %d\n", ret
);
2309 ret
= dpcm_be_dai_trigger(fe
, substream
->stream
, cmd
);
2311 case SND_SOC_DPCM_TRIGGER_POST
:
2312 /* call trigger on the frontend after the backend. */
2314 ret
= dpcm_be_dai_trigger(fe
, substream
->stream
, cmd
);
2316 dev_err(fe
->dev
,"ASoC: trigger FE failed %d\n", ret
);
2320 dev_dbg(fe
->dev
, "ASoC: post trigger FE %s cmd %d\n",
2321 fe
->dai_link
->name
, cmd
);
2323 ret
= soc_pcm_trigger(substream
, cmd
);
2325 case SND_SOC_DPCM_TRIGGER_BESPOKE
:
2326 /* bespoke trigger() - handles both FE and BEs */
2328 dev_dbg(fe
->dev
, "ASoC: bespoke trigger FE %s cmd %d\n",
2329 fe
->dai_link
->name
, cmd
);
2331 ret
= soc_pcm_bespoke_trigger(substream
, cmd
);
2333 dev_err(fe
->dev
,"ASoC: trigger FE failed %d\n", ret
);
2338 dev_err(fe
->dev
, "ASoC: invalid trigger cmd %d for %s\n", cmd
,
2339 fe
->dai_link
->name
);
2345 case SNDRV_PCM_TRIGGER_START
:
2346 case SNDRV_PCM_TRIGGER_RESUME
:
2347 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
2348 fe
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_START
;
2350 case SNDRV_PCM_TRIGGER_STOP
:
2351 case SNDRV_PCM_TRIGGER_SUSPEND
:
2352 fe
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_STOP
;
2354 case SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
2355 fe
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_PAUSED
;
2360 fe
->dpcm
[stream
].runtime_update
= SND_SOC_DPCM_UPDATE_NO
;
2364 static int dpcm_fe_dai_trigger(struct snd_pcm_substream
*substream
, int cmd
)
2366 struct snd_soc_pcm_runtime
*fe
= substream
->private_data
;
2367 int stream
= substream
->stream
;
2369 /* if FE's runtime_update is already set, we're in race;
2370 * process this trigger later at exit
2372 if (fe
->dpcm
[stream
].runtime_update
!= SND_SOC_DPCM_UPDATE_NO
) {
2373 fe
->dpcm
[stream
].trigger_pending
= cmd
+ 1;
2374 return 0; /* delayed, assuming it's successful */
2377 /* we're alone, let's trigger */
2378 return dpcm_fe_dai_do_trigger(substream
, cmd
);
2381 int dpcm_be_dai_prepare(struct snd_soc_pcm_runtime
*fe
, int stream
)
2383 struct snd_soc_dpcm
*dpcm
;
2386 list_for_each_entry(dpcm
, &fe
->dpcm
[stream
].be_clients
, list_be
) {
2388 struct snd_soc_pcm_runtime
*be
= dpcm
->be
;
2389 struct snd_pcm_substream
*be_substream
=
2390 snd_soc_dpcm_get_substream(be
, stream
);
2392 /* is this op for this BE ? */
2393 if (!snd_soc_dpcm_be_can_update(fe
, be
, stream
))
2396 if ((be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_HW_PARAMS
) &&
2397 (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_STOP
) &&
2398 (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_SUSPEND
))
2401 dev_dbg(be
->dev
, "ASoC: prepare BE %s\n",
2402 be
->dai_link
->name
);
2404 ret
= soc_pcm_prepare(be_substream
);
2406 dev_err(be
->dev
, "ASoC: backend prepare failed %d\n",
2411 be
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_PREPARE
;
2416 static int dpcm_fe_dai_prepare(struct snd_pcm_substream
*substream
)
2418 struct snd_soc_pcm_runtime
*fe
= substream
->private_data
;
2419 int stream
= substream
->stream
, ret
= 0;
2421 mutex_lock_nested(&fe
->card
->mutex
, SND_SOC_CARD_CLASS_RUNTIME
);
2423 dev_dbg(fe
->dev
, "ASoC: prepare FE %s\n", fe
->dai_link
->name
);
2425 dpcm_set_fe_update_state(fe
, stream
, SND_SOC_DPCM_UPDATE_FE
);
2427 /* there is no point preparing this FE if there are no BEs */
2428 if (list_empty(&fe
->dpcm
[stream
].be_clients
)) {
2429 dev_err(fe
->dev
, "ASoC: no backend DAIs enabled for %s\n",
2430 fe
->dai_link
->name
);
2435 ret
= dpcm_be_dai_prepare(fe
, substream
->stream
);
2439 /* call prepare on the frontend */
2440 ret
= soc_pcm_prepare(substream
);
2442 dev_err(fe
->dev
,"ASoC: prepare FE %s failed\n",
2443 fe
->dai_link
->name
);
2447 /* run the stream event for each BE */
2448 dpcm_dapm_stream_event(fe
, stream
, SND_SOC_DAPM_STREAM_START
);
2449 fe
->dpcm
[stream
].state
= SND_SOC_DPCM_STATE_PREPARE
;
2452 dpcm_set_fe_update_state(fe
, stream
, SND_SOC_DPCM_UPDATE_NO
);
2453 mutex_unlock(&fe
->card
->mutex
);
2458 static int soc_pcm_ioctl(struct snd_pcm_substream
*substream
,
2459 unsigned int cmd
, void *arg
)
2461 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
2462 struct snd_soc_platform
*platform
= rtd
->platform
;
2463 struct snd_soc_component
*component
;
2464 struct snd_soc_rtdcom_list
*rtdcom
;
2466 if (platform
&& platform
->driver
->ops
&& platform
->driver
->ops
->ioctl
)
2467 return platform
->driver
->ops
->ioctl(substream
, cmd
, arg
);
2469 for_each_rtdcom(rtd
, rtdcom
) {
2470 component
= rtdcom
->component
;
2472 /* ignore duplication for now */
2473 if (platform
&& (component
== &platform
->component
))
2476 if (!component
->driver
->ops
||
2477 !component
->driver
->ops
->ioctl
)
2480 /* FIXME: use 1st ioctl */
2481 return component
->driver
->ops
->ioctl(substream
, cmd
, arg
);
2484 return snd_pcm_lib_ioctl(substream
, cmd
, arg
);
2487 static int dpcm_run_update_shutdown(struct snd_soc_pcm_runtime
*fe
, int stream
)
2489 struct snd_pcm_substream
*substream
=
2490 snd_soc_dpcm_get_substream(fe
, stream
);
2491 enum snd_soc_dpcm_trigger trigger
= fe
->dai_link
->trigger
[stream
];
2494 dev_dbg(fe
->dev
, "ASoC: runtime %s close on FE %s\n",
2495 stream
? "capture" : "playback", fe
->dai_link
->name
);
2497 if (trigger
== SND_SOC_DPCM_TRIGGER_BESPOKE
) {
2498 /* call bespoke trigger - FE takes care of all BE triggers */
2499 dev_dbg(fe
->dev
, "ASoC: bespoke trigger FE %s cmd stop\n",
2500 fe
->dai_link
->name
);
2502 err
= soc_pcm_bespoke_trigger(substream
, SNDRV_PCM_TRIGGER_STOP
);
2504 dev_err(fe
->dev
,"ASoC: trigger FE failed %d\n", err
);
2506 dev_dbg(fe
->dev
, "ASoC: trigger FE %s cmd stop\n",
2507 fe
->dai_link
->name
);
2509 err
= dpcm_be_dai_trigger(fe
, stream
, SNDRV_PCM_TRIGGER_STOP
);
2511 dev_err(fe
->dev
,"ASoC: trigger FE failed %d\n", err
);
2514 err
= dpcm_be_dai_hw_free(fe
, stream
);
2516 dev_err(fe
->dev
,"ASoC: hw_free FE failed %d\n", err
);
2518 err
= dpcm_be_dai_shutdown(fe
, stream
);
2520 dev_err(fe
->dev
,"ASoC: shutdown FE failed %d\n", err
);
2522 /* run the stream event for each BE */
2523 dpcm_dapm_stream_event(fe
, stream
, SND_SOC_DAPM_STREAM_NOP
);
2528 static int dpcm_run_update_startup(struct snd_soc_pcm_runtime
*fe
, int stream
)
2530 struct snd_pcm_substream
*substream
=
2531 snd_soc_dpcm_get_substream(fe
, stream
);
2532 struct snd_soc_dpcm
*dpcm
;
2533 enum snd_soc_dpcm_trigger trigger
= fe
->dai_link
->trigger
[stream
];
2536 dev_dbg(fe
->dev
, "ASoC: runtime %s open on FE %s\n",
2537 stream
? "capture" : "playback", fe
->dai_link
->name
);
2539 /* Only start the BE if the FE is ready */
2540 if (fe
->dpcm
[stream
].state
== SND_SOC_DPCM_STATE_HW_FREE
||
2541 fe
->dpcm
[stream
].state
== SND_SOC_DPCM_STATE_CLOSE
)
2544 /* startup must always be called for new BEs */
2545 ret
= dpcm_be_dai_startup(fe
, stream
);
2549 /* keep going if FE state is > open */
2550 if (fe
->dpcm
[stream
].state
== SND_SOC_DPCM_STATE_OPEN
)
2553 ret
= dpcm_be_dai_hw_params(fe
, stream
);
2557 /* keep going if FE state is > hw_params */
2558 if (fe
->dpcm
[stream
].state
== SND_SOC_DPCM_STATE_HW_PARAMS
)
2562 ret
= dpcm_be_dai_prepare(fe
, stream
);
2566 /* run the stream event for each BE */
2567 dpcm_dapm_stream_event(fe
, stream
, SND_SOC_DAPM_STREAM_NOP
);
2569 /* keep going if FE state is > prepare */
2570 if (fe
->dpcm
[stream
].state
== SND_SOC_DPCM_STATE_PREPARE
||
2571 fe
->dpcm
[stream
].state
== SND_SOC_DPCM_STATE_STOP
)
2574 if (trigger
== SND_SOC_DPCM_TRIGGER_BESPOKE
) {
2575 /* call trigger on the frontend - FE takes care of all BE triggers */
2576 dev_dbg(fe
->dev
, "ASoC: bespoke trigger FE %s cmd start\n",
2577 fe
->dai_link
->name
);
2579 ret
= soc_pcm_bespoke_trigger(substream
, SNDRV_PCM_TRIGGER_START
);
2581 dev_err(fe
->dev
,"ASoC: bespoke trigger FE failed %d\n", ret
);
2585 dev_dbg(fe
->dev
, "ASoC: trigger FE %s cmd start\n",
2586 fe
->dai_link
->name
);
2588 ret
= dpcm_be_dai_trigger(fe
, stream
,
2589 SNDRV_PCM_TRIGGER_START
);
2591 dev_err(fe
->dev
,"ASoC: trigger FE failed %d\n", ret
);
2599 dpcm_be_dai_hw_free(fe
, stream
);
2601 dpcm_be_dai_shutdown(fe
, stream
);
2603 /* disconnect any non started BEs */
2604 list_for_each_entry(dpcm
, &fe
->dpcm
[stream
].be_clients
, list_be
) {
2605 struct snd_soc_pcm_runtime
*be
= dpcm
->be
;
2606 if (be
->dpcm
[stream
].state
!= SND_SOC_DPCM_STATE_START
)
2607 dpcm
->state
= SND_SOC_DPCM_LINK_STATE_FREE
;
2613 static int dpcm_run_new_update(struct snd_soc_pcm_runtime
*fe
, int stream
)
2617 dpcm_set_fe_update_state(fe
, stream
, SND_SOC_DPCM_UPDATE_BE
);
2618 ret
= dpcm_run_update_startup(fe
, stream
);
2620 dev_err(fe
->dev
, "ASoC: failed to startup some BEs\n");
2621 dpcm_set_fe_update_state(fe
, stream
, SND_SOC_DPCM_UPDATE_NO
);
2626 static int dpcm_run_old_update(struct snd_soc_pcm_runtime
*fe
, int stream
)
2630 dpcm_set_fe_update_state(fe
, stream
, SND_SOC_DPCM_UPDATE_BE
);
2631 ret
= dpcm_run_update_shutdown(fe
, stream
);
2633 dev_err(fe
->dev
, "ASoC: failed to shutdown some BEs\n");
2634 dpcm_set_fe_update_state(fe
, stream
, SND_SOC_DPCM_UPDATE_NO
);
2639 /* Called by DAPM mixer/mux changes to update audio routing between PCMs and
2642 int soc_dpcm_runtime_update(struct snd_soc_card
*card
)
2644 struct snd_soc_pcm_runtime
*fe
;
2645 int old
, new, paths
;
2647 mutex_lock_nested(&card
->mutex
, SND_SOC_CARD_CLASS_RUNTIME
);
2648 list_for_each_entry(fe
, &card
->rtd_list
, list
) {
2649 struct snd_soc_dapm_widget_list
*list
;
2651 /* make sure link is FE */
2652 if (!fe
->dai_link
->dynamic
)
2655 /* only check active links */
2656 if (!fe
->cpu_dai
->active
)
2659 /* DAPM sync will call this to update DSP paths */
2660 dev_dbg(fe
->dev
, "ASoC: DPCM runtime update for FE %s\n",
2661 fe
->dai_link
->name
);
2663 /* skip if FE doesn't have playback capability */
2664 if (!fe
->cpu_dai
->driver
->playback
.channels_min
2665 || !fe
->codec_dai
->driver
->playback
.channels_min
)
2668 /* skip if FE isn't currently playing */
2669 if (!fe
->cpu_dai
->playback_active
2670 || !fe
->codec_dai
->playback_active
)
2673 paths
= dpcm_path_get(fe
, SNDRV_PCM_STREAM_PLAYBACK
, &list
);
2675 dev_warn(fe
->dev
, "ASoC: %s no valid %s path\n",
2676 fe
->dai_link
->name
, "playback");
2677 mutex_unlock(&card
->mutex
);
2681 /* update any new playback paths */
2682 new = dpcm_process_paths(fe
, SNDRV_PCM_STREAM_PLAYBACK
, &list
, 1);
2684 dpcm_run_new_update(fe
, SNDRV_PCM_STREAM_PLAYBACK
);
2685 dpcm_clear_pending_state(fe
, SNDRV_PCM_STREAM_PLAYBACK
);
2686 dpcm_be_disconnect(fe
, SNDRV_PCM_STREAM_PLAYBACK
);
2689 /* update any old playback paths */
2690 old
= dpcm_process_paths(fe
, SNDRV_PCM_STREAM_PLAYBACK
, &list
, 0);
2692 dpcm_run_old_update(fe
, SNDRV_PCM_STREAM_PLAYBACK
);
2693 dpcm_clear_pending_state(fe
, SNDRV_PCM_STREAM_PLAYBACK
);
2694 dpcm_be_disconnect(fe
, SNDRV_PCM_STREAM_PLAYBACK
);
2697 dpcm_path_put(&list
);
2699 /* skip if FE doesn't have capture capability */
2700 if (!fe
->cpu_dai
->driver
->capture
.channels_min
2701 || !fe
->codec_dai
->driver
->capture
.channels_min
)
2704 /* skip if FE isn't currently capturing */
2705 if (!fe
->cpu_dai
->capture_active
2706 || !fe
->codec_dai
->capture_active
)
2709 paths
= dpcm_path_get(fe
, SNDRV_PCM_STREAM_CAPTURE
, &list
);
2711 dev_warn(fe
->dev
, "ASoC: %s no valid %s path\n",
2712 fe
->dai_link
->name
, "capture");
2713 mutex_unlock(&card
->mutex
);
2717 /* update any new capture paths */
2718 new = dpcm_process_paths(fe
, SNDRV_PCM_STREAM_CAPTURE
, &list
, 1);
2720 dpcm_run_new_update(fe
, SNDRV_PCM_STREAM_CAPTURE
);
2721 dpcm_clear_pending_state(fe
, SNDRV_PCM_STREAM_CAPTURE
);
2722 dpcm_be_disconnect(fe
, SNDRV_PCM_STREAM_CAPTURE
);
2725 /* update any old capture paths */
2726 old
= dpcm_process_paths(fe
, SNDRV_PCM_STREAM_CAPTURE
, &list
, 0);
2728 dpcm_run_old_update(fe
, SNDRV_PCM_STREAM_CAPTURE
);
2729 dpcm_clear_pending_state(fe
, SNDRV_PCM_STREAM_CAPTURE
);
2730 dpcm_be_disconnect(fe
, SNDRV_PCM_STREAM_CAPTURE
);
2733 dpcm_path_put(&list
);
2736 mutex_unlock(&card
->mutex
);
2739 int soc_dpcm_be_digital_mute(struct snd_soc_pcm_runtime
*fe
, int mute
)
2741 struct snd_soc_dpcm
*dpcm
;
2742 struct list_head
*clients
=
2743 &fe
->dpcm
[SNDRV_PCM_STREAM_PLAYBACK
].be_clients
;
2745 list_for_each_entry(dpcm
, clients
, list_be
) {
2747 struct snd_soc_pcm_runtime
*be
= dpcm
->be
;
2750 if (be
->dai_link
->ignore_suspend
)
2753 for (i
= 0; i
< be
->num_codecs
; i
++) {
2754 struct snd_soc_dai
*dai
= be
->codec_dais
[i
];
2755 struct snd_soc_dai_driver
*drv
= dai
->driver
;
2757 dev_dbg(be
->dev
, "ASoC: BE digital mute %s\n",
2758 be
->dai_link
->name
);
2760 if (drv
->ops
&& drv
->ops
->digital_mute
&&
2761 dai
->playback_active
)
2762 drv
->ops
->digital_mute(dai
, mute
);
2769 static int dpcm_fe_dai_open(struct snd_pcm_substream
*fe_substream
)
2771 struct snd_soc_pcm_runtime
*fe
= fe_substream
->private_data
;
2772 struct snd_soc_dpcm
*dpcm
;
2773 struct snd_soc_dapm_widget_list
*list
;
2775 int stream
= fe_substream
->stream
;
2777 mutex_lock_nested(&fe
->card
->mutex
, SND_SOC_CARD_CLASS_RUNTIME
);
2778 fe
->dpcm
[stream
].runtime
= fe_substream
->runtime
;
2780 ret
= dpcm_path_get(fe
, stream
, &list
);
2782 mutex_unlock(&fe
->card
->mutex
);
2784 } else if (ret
== 0) {
2785 dev_dbg(fe
->dev
, "ASoC: %s no valid %s route\n",
2786 fe
->dai_link
->name
, stream
? "capture" : "playback");
2789 /* calculate valid and active FE <-> BE dpcms */
2790 dpcm_process_paths(fe
, stream
, &list
, 1);
2792 ret
= dpcm_fe_dai_startup(fe_substream
);
2794 /* clean up all links */
2795 list_for_each_entry(dpcm
, &fe
->dpcm
[stream
].be_clients
, list_be
)
2796 dpcm
->state
= SND_SOC_DPCM_LINK_STATE_FREE
;
2798 dpcm_be_disconnect(fe
, stream
);
2799 fe
->dpcm
[stream
].runtime
= NULL
;
2802 dpcm_clear_pending_state(fe
, stream
);
2803 dpcm_path_put(&list
);
2804 mutex_unlock(&fe
->card
->mutex
);
2808 static int dpcm_fe_dai_close(struct snd_pcm_substream
*fe_substream
)
2810 struct snd_soc_pcm_runtime
*fe
= fe_substream
->private_data
;
2811 struct snd_soc_dpcm
*dpcm
;
2812 int stream
= fe_substream
->stream
, ret
;
2814 mutex_lock_nested(&fe
->card
->mutex
, SND_SOC_CARD_CLASS_RUNTIME
);
2815 ret
= dpcm_fe_dai_shutdown(fe_substream
);
2817 /* mark FE's links ready to prune */
2818 list_for_each_entry(dpcm
, &fe
->dpcm
[stream
].be_clients
, list_be
)
2819 dpcm
->state
= SND_SOC_DPCM_LINK_STATE_FREE
;
2821 dpcm_be_disconnect(fe
, stream
);
2823 fe
->dpcm
[stream
].runtime
= NULL
;
2824 mutex_unlock(&fe
->card
->mutex
);
2828 static void soc_pcm_private_free(struct snd_pcm
*pcm
)
2830 struct snd_soc_pcm_runtime
*rtd
= pcm
->private_data
;
2831 struct snd_soc_rtdcom_list
*rtdcom
;
2832 struct snd_soc_component
*component
;
2834 /* need to sync the delayed work before releasing resources */
2835 flush_delayed_work(&rtd
->delayed_work
);
2836 for_each_rtdcom(rtd
, rtdcom
) {
2837 component
= rtdcom
->component
;
2839 if (component
->pcm_free
)
2840 component
->pcm_free(component
, pcm
);
2844 static int soc_rtdcom_ack(struct snd_pcm_substream
*substream
)
2846 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
2847 struct snd_soc_rtdcom_list
*rtdcom
;
2848 struct snd_soc_component
*component
;
2850 for_each_rtdcom(rtd
, rtdcom
) {
2851 component
= rtdcom
->component
;
2853 if (!component
->driver
->ops
||
2854 !component
->driver
->ops
->ack
)
2857 /* FIXME. it returns 1st ask now */
2858 return component
->driver
->ops
->ack(substream
);
2864 static int soc_rtdcom_copy_user(struct snd_pcm_substream
*substream
, int channel
,
2865 unsigned long pos
, void __user
*buf
,
2866 unsigned long bytes
)
2868 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
2869 struct snd_soc_rtdcom_list
*rtdcom
;
2870 struct snd_soc_component
*component
;
2872 for_each_rtdcom(rtd
, rtdcom
) {
2873 component
= rtdcom
->component
;
2875 if (!component
->driver
->ops
||
2876 !component
->driver
->ops
->copy_user
)
2879 /* FIXME. it returns 1st copy now */
2880 return component
->driver
->ops
->copy_user(substream
, channel
,
2887 static int soc_rtdcom_copy_kernel(struct snd_pcm_substream
*substream
, int channel
,
2888 unsigned long pos
, void *buf
, unsigned long bytes
)
2890 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
2891 struct snd_soc_rtdcom_list
*rtdcom
;
2892 struct snd_soc_component
*component
;
2894 for_each_rtdcom(rtd
, rtdcom
) {
2895 component
= rtdcom
->component
;
2897 if (!component
->driver
->ops
||
2898 !component
->driver
->ops
->copy_kernel
)
2901 /* FIXME. it returns 1st copy now */
2902 return component
->driver
->ops
->copy_kernel(substream
, channel
,
2909 static int soc_rtdcom_fill_silence(struct snd_pcm_substream
*substream
, int channel
,
2910 unsigned long pos
, unsigned long bytes
)
2912 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
2913 struct snd_soc_rtdcom_list
*rtdcom
;
2914 struct snd_soc_component
*component
;
2916 for_each_rtdcom(rtd
, rtdcom
) {
2917 component
= rtdcom
->component
;
2919 if (!component
->driver
->ops
||
2920 !component
->driver
->ops
->fill_silence
)
2923 /* FIXME. it returns 1st silence now */
2924 return component
->driver
->ops
->fill_silence(substream
, channel
,
2931 static struct page
*soc_rtdcom_page(struct snd_pcm_substream
*substream
,
2932 unsigned long offset
)
2934 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
2935 struct snd_soc_rtdcom_list
*rtdcom
;
2936 struct snd_soc_component
*component
;
2939 for_each_rtdcom(rtd
, rtdcom
) {
2940 component
= rtdcom
->component
;
2942 if (!component
->driver
->ops
||
2943 !component
->driver
->ops
->page
)
2946 /* FIXME. it returns 1st page now */
2947 page
= component
->driver
->ops
->page(substream
, offset
);
2955 static int soc_rtdcom_mmap(struct snd_pcm_substream
*substream
,
2956 struct vm_area_struct
*vma
)
2958 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
2959 struct snd_soc_rtdcom_list
*rtdcom
;
2960 struct snd_soc_component
*component
;
2962 for_each_rtdcom(rtd
, rtdcom
) {
2963 component
= rtdcom
->component
;
2965 if (!component
->driver
->ops
||
2966 !component
->driver
->ops
->mmap
)
2969 /* FIXME. it returns 1st mmap now */
2970 return component
->driver
->ops
->mmap(substream
, vma
);
2976 /* create a new pcm */
2977 int soc_new_pcm(struct snd_soc_pcm_runtime
*rtd
, int num
)
2979 struct snd_soc_platform
*platform
= rtd
->platform
;
2980 struct snd_soc_dai
*codec_dai
;
2981 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
2982 struct snd_soc_component
*component
;
2983 struct snd_soc_rtdcom_list
*rtdcom
;
2984 struct snd_pcm
*pcm
;
2986 int ret
= 0, playback
= 0, capture
= 0;
2989 if (rtd
->dai_link
->dynamic
|| rtd
->dai_link
->no_pcm
) {
2990 playback
= rtd
->dai_link
->dpcm_playback
;
2991 capture
= rtd
->dai_link
->dpcm_capture
;
2993 for (i
= 0; i
< rtd
->num_codecs
; i
++) {
2994 codec_dai
= rtd
->codec_dais
[i
];
2995 if (codec_dai
->driver
->playback
.channels_min
)
2997 if (codec_dai
->driver
->capture
.channels_min
)
3001 capture
= capture
&& cpu_dai
->driver
->capture
.channels_min
;
3002 playback
= playback
&& cpu_dai
->driver
->playback
.channels_min
;
3005 if (rtd
->dai_link
->playback_only
) {
3010 if (rtd
->dai_link
->capture_only
) {
3015 /* create the PCM */
3016 if (rtd
->dai_link
->no_pcm
) {
3017 snprintf(new_name
, sizeof(new_name
), "(%s)",
3018 rtd
->dai_link
->stream_name
);
3020 ret
= snd_pcm_new_internal(rtd
->card
->snd_card
, new_name
, num
,
3021 playback
, capture
, &pcm
);
3023 if (rtd
->dai_link
->dynamic
)
3024 snprintf(new_name
, sizeof(new_name
), "%s (*)",
3025 rtd
->dai_link
->stream_name
);
3027 snprintf(new_name
, sizeof(new_name
), "%s %s-%d",
3028 rtd
->dai_link
->stream_name
,
3029 (rtd
->num_codecs
> 1) ?
3030 "multicodec" : rtd
->codec_dai
->name
, num
);
3032 ret
= snd_pcm_new(rtd
->card
->snd_card
, new_name
, num
, playback
,
3036 dev_err(rtd
->card
->dev
, "ASoC: can't create pcm for %s\n",
3037 rtd
->dai_link
->name
);
3040 dev_dbg(rtd
->card
->dev
, "ASoC: registered pcm #%d %s\n",num
, new_name
);
3042 /* DAPM dai link stream work */
3043 INIT_DELAYED_WORK(&rtd
->delayed_work
, close_delayed_work
);
3045 pcm
->nonatomic
= rtd
->dai_link
->nonatomic
;
3047 pcm
->private_data
= rtd
;
3049 if (rtd
->dai_link
->no_pcm
) {
3051 pcm
->streams
[SNDRV_PCM_STREAM_PLAYBACK
].substream
->private_data
= rtd
;
3053 pcm
->streams
[SNDRV_PCM_STREAM_CAPTURE
].substream
->private_data
= rtd
;
3057 /* ASoC PCM operations */
3058 if (rtd
->dai_link
->dynamic
) {
3059 rtd
->ops
.open
= dpcm_fe_dai_open
;
3060 rtd
->ops
.hw_params
= dpcm_fe_dai_hw_params
;
3061 rtd
->ops
.prepare
= dpcm_fe_dai_prepare
;
3062 rtd
->ops
.trigger
= dpcm_fe_dai_trigger
;
3063 rtd
->ops
.hw_free
= dpcm_fe_dai_hw_free
;
3064 rtd
->ops
.close
= dpcm_fe_dai_close
;
3065 rtd
->ops
.pointer
= soc_pcm_pointer
;
3066 rtd
->ops
.ioctl
= soc_pcm_ioctl
;
3068 rtd
->ops
.open
= soc_pcm_open
;
3069 rtd
->ops
.hw_params
= soc_pcm_hw_params
;
3070 rtd
->ops
.prepare
= soc_pcm_prepare
;
3071 rtd
->ops
.trigger
= soc_pcm_trigger
;
3072 rtd
->ops
.hw_free
= soc_pcm_hw_free
;
3073 rtd
->ops
.close
= soc_pcm_close
;
3074 rtd
->ops
.pointer
= soc_pcm_pointer
;
3075 rtd
->ops
.ioctl
= soc_pcm_ioctl
;
3078 for_each_rtdcom(rtd
, rtdcom
) {
3079 const struct snd_pcm_ops
*ops
= rtdcom
->component
->driver
->ops
;
3085 rtd
->ops
.ack
= soc_rtdcom_ack
;
3087 rtd
->ops
.copy_user
= soc_rtdcom_copy_user
;
3088 if (ops
->copy_kernel
)
3089 rtd
->ops
.copy_kernel
= soc_rtdcom_copy_kernel
;
3090 if (ops
->fill_silence
)
3091 rtd
->ops
.fill_silence
= soc_rtdcom_fill_silence
;
3093 rtd
->ops
.page
= soc_rtdcom_page
;
3095 rtd
->ops
.mmap
= soc_rtdcom_mmap
;
3099 if (platform
&& platform
->driver
->ops
) {
3100 rtd
->ops
.ack
= platform
->driver
->ops
->ack
;
3101 rtd
->ops
.copy_user
= platform
->driver
->ops
->copy_user
;
3102 rtd
->ops
.copy_kernel
= platform
->driver
->ops
->copy_kernel
;
3103 rtd
->ops
.fill_silence
= platform
->driver
->ops
->fill_silence
;
3104 rtd
->ops
.page
= platform
->driver
->ops
->page
;
3105 rtd
->ops
.mmap
= platform
->driver
->ops
->mmap
;
3109 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_PLAYBACK
, &rtd
->ops
);
3112 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_CAPTURE
, &rtd
->ops
);
3114 for_each_rtdcom(rtd
, rtdcom
) {
3115 component
= rtdcom
->component
;
3117 if (!component
->pcm_new
)
3120 ret
= component
->pcm_new(component
, rtd
);
3122 dev_err(component
->dev
,
3123 "ASoC: pcm constructor failed: %d\n",
3129 pcm
->private_free
= soc_pcm_private_free
;
3131 dev_info(rtd
->card
->dev
, "%s <-> %s mapping ok\n",
3132 (rtd
->num_codecs
> 1) ? "multicodec" : rtd
->codec_dai
->name
,
3137 /* is the current PCM operation for this FE ? */
3138 int snd_soc_dpcm_fe_can_update(struct snd_soc_pcm_runtime
*fe
, int stream
)
3140 if (fe
->dpcm
[stream
].runtime_update
== SND_SOC_DPCM_UPDATE_FE
)
3144 EXPORT_SYMBOL_GPL(snd_soc_dpcm_fe_can_update
);
3146 /* is the current PCM operation for this BE ? */
3147 int snd_soc_dpcm_be_can_update(struct snd_soc_pcm_runtime
*fe
,
3148 struct snd_soc_pcm_runtime
*be
, int stream
)
3150 if ((fe
->dpcm
[stream
].runtime_update
== SND_SOC_DPCM_UPDATE_FE
) ||
3151 ((fe
->dpcm
[stream
].runtime_update
== SND_SOC_DPCM_UPDATE_BE
) &&
3152 be
->dpcm
[stream
].runtime_update
))
3156 EXPORT_SYMBOL_GPL(snd_soc_dpcm_be_can_update
);
3158 /* get the substream for this BE */
3159 struct snd_pcm_substream
*
3160 snd_soc_dpcm_get_substream(struct snd_soc_pcm_runtime
*be
, int stream
)
3162 return be
->pcm
->streams
[stream
].substream
;
3164 EXPORT_SYMBOL_GPL(snd_soc_dpcm_get_substream
);
3166 /* get the BE runtime state */
3167 enum snd_soc_dpcm_state
3168 snd_soc_dpcm_be_get_state(struct snd_soc_pcm_runtime
*be
, int stream
)
3170 return be
->dpcm
[stream
].state
;
3172 EXPORT_SYMBOL_GPL(snd_soc_dpcm_be_get_state
);
3174 /* set the BE runtime state */
3175 void snd_soc_dpcm_be_set_state(struct snd_soc_pcm_runtime
*be
,
3176 int stream
, enum snd_soc_dpcm_state state
)
3178 be
->dpcm
[stream
].state
= state
;
3180 EXPORT_SYMBOL_GPL(snd_soc_dpcm_be_set_state
);
3183 * We can only hw_free, stop, pause or suspend a BE DAI if any of it's FE
3184 * are not running, paused or suspended for the specified stream direction.
3186 int snd_soc_dpcm_can_be_free_stop(struct snd_soc_pcm_runtime
*fe
,
3187 struct snd_soc_pcm_runtime
*be
, int stream
)
3189 struct snd_soc_dpcm
*dpcm
;
3192 list_for_each_entry(dpcm
, &be
->dpcm
[stream
].fe_clients
, list_fe
) {
3197 state
= dpcm
->fe
->dpcm
[stream
].state
;
3198 if (state
== SND_SOC_DPCM_STATE_START
||
3199 state
== SND_SOC_DPCM_STATE_PAUSED
||
3200 state
== SND_SOC_DPCM_STATE_SUSPEND
)
3204 /* it's safe to free/stop this BE DAI */
3207 EXPORT_SYMBOL_GPL(snd_soc_dpcm_can_be_free_stop
);
3210 * We can only change hw params a BE DAI if any of it's FE are not prepared,
3211 * running, paused or suspended for the specified stream direction.
3213 int snd_soc_dpcm_can_be_params(struct snd_soc_pcm_runtime
*fe
,
3214 struct snd_soc_pcm_runtime
*be
, int stream
)
3216 struct snd_soc_dpcm
*dpcm
;
3219 list_for_each_entry(dpcm
, &be
->dpcm
[stream
].fe_clients
, list_fe
) {
3224 state
= dpcm
->fe
->dpcm
[stream
].state
;
3225 if (state
== SND_SOC_DPCM_STATE_START
||
3226 state
== SND_SOC_DPCM_STATE_PAUSED
||
3227 state
== SND_SOC_DPCM_STATE_SUSPEND
||
3228 state
== SND_SOC_DPCM_STATE_PREPARE
)
3232 /* it's safe to change hw_params */
3235 EXPORT_SYMBOL_GPL(snd_soc_dpcm_can_be_params
);
3237 #ifdef CONFIG_DEBUG_FS
3238 static const char *dpcm_state_string(enum snd_soc_dpcm_state state
)
3241 case SND_SOC_DPCM_STATE_NEW
:
3243 case SND_SOC_DPCM_STATE_OPEN
:
3245 case SND_SOC_DPCM_STATE_HW_PARAMS
:
3247 case SND_SOC_DPCM_STATE_PREPARE
:
3249 case SND_SOC_DPCM_STATE_START
:
3251 case SND_SOC_DPCM_STATE_STOP
:
3253 case SND_SOC_DPCM_STATE_SUSPEND
:
3255 case SND_SOC_DPCM_STATE_PAUSED
:
3257 case SND_SOC_DPCM_STATE_HW_FREE
:
3259 case SND_SOC_DPCM_STATE_CLOSE
:
3266 static ssize_t
dpcm_show_state(struct snd_soc_pcm_runtime
*fe
,
3267 int stream
, char *buf
, size_t size
)
3269 struct snd_pcm_hw_params
*params
= &fe
->dpcm
[stream
].hw_params
;
3270 struct snd_soc_dpcm
*dpcm
;
3274 offset
+= snprintf(buf
+ offset
, size
- offset
,
3275 "[%s - %s]\n", fe
->dai_link
->name
,
3276 stream
? "Capture" : "Playback");
3278 offset
+= snprintf(buf
+ offset
, size
- offset
, "State: %s\n",
3279 dpcm_state_string(fe
->dpcm
[stream
].state
));
3281 if ((fe
->dpcm
[stream
].state
>= SND_SOC_DPCM_STATE_HW_PARAMS
) &&
3282 (fe
->dpcm
[stream
].state
<= SND_SOC_DPCM_STATE_STOP
))
3283 offset
+= snprintf(buf
+ offset
, size
- offset
,
3285 "Format = %s, Channels = %d, Rate = %d\n",
3286 snd_pcm_format_name(params_format(params
)),
3287 params_channels(params
),
3288 params_rate(params
));
3291 offset
+= snprintf(buf
+ offset
, size
- offset
, "Backends:\n");
3293 if (list_empty(&fe
->dpcm
[stream
].be_clients
)) {
3294 offset
+= snprintf(buf
+ offset
, size
- offset
,
3295 " No active DSP links\n");
3299 list_for_each_entry(dpcm
, &fe
->dpcm
[stream
].be_clients
, list_be
) {
3300 struct snd_soc_pcm_runtime
*be
= dpcm
->be
;
3301 params
= &dpcm
->hw_params
;
3303 offset
+= snprintf(buf
+ offset
, size
- offset
,
3304 "- %s\n", be
->dai_link
->name
);
3306 offset
+= snprintf(buf
+ offset
, size
- offset
,
3308 dpcm_state_string(be
->dpcm
[stream
].state
));
3310 if ((be
->dpcm
[stream
].state
>= SND_SOC_DPCM_STATE_HW_PARAMS
) &&
3311 (be
->dpcm
[stream
].state
<= SND_SOC_DPCM_STATE_STOP
))
3312 offset
+= snprintf(buf
+ offset
, size
- offset
,
3313 " Hardware Params: "
3314 "Format = %s, Channels = %d, Rate = %d\n",
3315 snd_pcm_format_name(params_format(params
)),
3316 params_channels(params
),
3317 params_rate(params
));
3324 static ssize_t
dpcm_state_read_file(struct file
*file
, char __user
*user_buf
,
3325 size_t count
, loff_t
*ppos
)
3327 struct snd_soc_pcm_runtime
*fe
= file
->private_data
;
3328 ssize_t out_count
= PAGE_SIZE
, offset
= 0, ret
= 0;
3331 buf
= kmalloc(out_count
, GFP_KERNEL
);
3335 if (fe
->cpu_dai
->driver
->playback
.channels_min
)
3336 offset
+= dpcm_show_state(fe
, SNDRV_PCM_STREAM_PLAYBACK
,
3337 buf
+ offset
, out_count
- offset
);
3339 if (fe
->cpu_dai
->driver
->capture
.channels_min
)
3340 offset
+= dpcm_show_state(fe
, SNDRV_PCM_STREAM_CAPTURE
,
3341 buf
+ offset
, out_count
- offset
);
3343 ret
= simple_read_from_buffer(user_buf
, count
, ppos
, buf
, offset
);
3349 static const struct file_operations dpcm_state_fops
= {
3350 .open
= simple_open
,
3351 .read
= dpcm_state_read_file
,
3352 .llseek
= default_llseek
,
3355 void soc_dpcm_debugfs_add(struct snd_soc_pcm_runtime
*rtd
)
3360 if (!rtd
->card
->debugfs_card_root
)
3363 rtd
->debugfs_dpcm_root
= debugfs_create_dir(rtd
->dai_link
->name
,
3364 rtd
->card
->debugfs_card_root
);
3365 if (!rtd
->debugfs_dpcm_root
) {
3367 "ASoC: Failed to create dpcm debugfs directory %s\n",
3368 rtd
->dai_link
->name
);
3372 debugfs_create_file("state", 0444, rtd
->debugfs_dpcm_root
,
3373 rtd
, &dpcm_state_fops
);