blob: 0204a3ecfc8b2fc005b5084a320d2cccc7a2457b [file] [log] [blame]
Kuninori Morimotoed517582018-07-02 06:22:44 +00001// SPDX-License-Identifier: GPL-2.0+
2//
3// soc-pcm.c -- ALSA SoC PCM
4//
5// Copyright 2005 Wolfson Microelectronics PLC.
6// Copyright 2005 Openedhand Ltd.
7// Copyright (C) 2010 Slimlogic Ltd.
8// Copyright (C) 2010 Texas Instruments Inc.
9//
10// Authors: Liam Girdwood <lrg@ti.com>
11// Mark Brown <broonie@opensource.wolfsonmicro.com>
Liam Girdwoodddee6272011-06-09 14:45:53 +010012
13#include <linux/kernel.h>
14#include <linux/init.h>
15#include <linux/delay.h>
Nicolin Chen988e8cc2013-11-04 14:57:31 +080016#include <linux/pinctrl/consumer.h>
Mark Brownd6652ef2011-12-03 20:14:31 +000017#include <linux/pm_runtime.h>
Liam Girdwoodddee6272011-06-09 14:45:53 +010018#include <linux/slab.h>
19#include <linux/workqueue.h>
Liam Girdwood01d75842012-04-25 12:12:49 +010020#include <linux/export.h>
Liam Girdwoodf86dcef2012-04-25 12:12:50 +010021#include <linux/debugfs.h>
Liam Girdwoodddee6272011-06-09 14:45:53 +010022#include <sound/core.h>
23#include <sound/pcm.h>
24#include <sound/pcm_params.h>
25#include <sound/soc.h>
Liam Girdwood01d75842012-04-25 12:12:49 +010026#include <sound/soc-dpcm.h>
Kuninori Morimotoa5e6c102020-05-25 09:57:19 +090027#include <sound/soc-link.h>
Liam Girdwoodddee6272011-06-09 14:45:53 +010028#include <sound/initval.h>
29
Liam Girdwood01d75842012-04-25 12:12:49 +010030#define DPCM_MAX_BE_USERS 8
31
Kuninori Morimotoc3212822020-02-19 15:56:57 +090032#ifdef CONFIG_DEBUG_FS
33static const char *dpcm_state_string(enum snd_soc_dpcm_state state)
34{
35 switch (state) {
36 case SND_SOC_DPCM_STATE_NEW:
37 return "new";
38 case SND_SOC_DPCM_STATE_OPEN:
39 return "open";
40 case SND_SOC_DPCM_STATE_HW_PARAMS:
41 return "hw_params";
42 case SND_SOC_DPCM_STATE_PREPARE:
43 return "prepare";
44 case SND_SOC_DPCM_STATE_START:
45 return "start";
46 case SND_SOC_DPCM_STATE_STOP:
47 return "stop";
48 case SND_SOC_DPCM_STATE_SUSPEND:
49 return "suspend";
50 case SND_SOC_DPCM_STATE_PAUSED:
51 return "paused";
52 case SND_SOC_DPCM_STATE_HW_FREE:
53 return "hw_free";
54 case SND_SOC_DPCM_STATE_CLOSE:
55 return "close";
56 }
57
58 return "unknown";
59}
60
61static ssize_t dpcm_show_state(struct snd_soc_pcm_runtime *fe,
62 int stream, char *buf, size_t size)
63{
64 struct snd_pcm_hw_params *params = &fe->dpcm[stream].hw_params;
65 struct snd_soc_dpcm *dpcm;
66 ssize_t offset = 0;
67 unsigned long flags;
68
69 /* FE state */
Takashi Iwaid0c9abb2020-03-10 17:36:25 +010070 offset += scnprintf(buf + offset, size - offset,
Kuninori Morimotoc3212822020-02-19 15:56:57 +090071 "[%s - %s]\n", fe->dai_link->name,
72 stream ? "Capture" : "Playback");
73
Takashi Iwaid0c9abb2020-03-10 17:36:25 +010074 offset += scnprintf(buf + offset, size - offset, "State: %s\n",
Kuninori Morimotoc3212822020-02-19 15:56:57 +090075 dpcm_state_string(fe->dpcm[stream].state));
76
77 if ((fe->dpcm[stream].state >= SND_SOC_DPCM_STATE_HW_PARAMS) &&
78 (fe->dpcm[stream].state <= SND_SOC_DPCM_STATE_STOP))
Takashi Iwaid0c9abb2020-03-10 17:36:25 +010079 offset += scnprintf(buf + offset, size - offset,
Kuninori Morimotoc3212822020-02-19 15:56:57 +090080 "Hardware Params: "
81 "Format = %s, Channels = %d, Rate = %d\n",
82 snd_pcm_format_name(params_format(params)),
83 params_channels(params),
84 params_rate(params));
85
86 /* BEs state */
Takashi Iwaid0c9abb2020-03-10 17:36:25 +010087 offset += scnprintf(buf + offset, size - offset, "Backends:\n");
Kuninori Morimotoc3212822020-02-19 15:56:57 +090088
89 if (list_empty(&fe->dpcm[stream].be_clients)) {
Takashi Iwaid0c9abb2020-03-10 17:36:25 +010090 offset += scnprintf(buf + offset, size - offset,
Kuninori Morimotoc3212822020-02-19 15:56:57 +090091 " No active DSP links\n");
92 goto out;
93 }
94
95 spin_lock_irqsave(&fe->card->dpcm_lock, flags);
96 for_each_dpcm_be(fe, stream, dpcm) {
97 struct snd_soc_pcm_runtime *be = dpcm->be;
98 params = &dpcm->hw_params;
99
Takashi Iwaid0c9abb2020-03-10 17:36:25 +0100100 offset += scnprintf(buf + offset, size - offset,
Kuninori Morimotoc3212822020-02-19 15:56:57 +0900101 "- %s\n", be->dai_link->name);
102
Takashi Iwaid0c9abb2020-03-10 17:36:25 +0100103 offset += scnprintf(buf + offset, size - offset,
Kuninori Morimotoc3212822020-02-19 15:56:57 +0900104 " State: %s\n",
105 dpcm_state_string(be->dpcm[stream].state));
106
107 if ((be->dpcm[stream].state >= SND_SOC_DPCM_STATE_HW_PARAMS) &&
108 (be->dpcm[stream].state <= SND_SOC_DPCM_STATE_STOP))
Takashi Iwaid0c9abb2020-03-10 17:36:25 +0100109 offset += scnprintf(buf + offset, size - offset,
Kuninori Morimotoc3212822020-02-19 15:56:57 +0900110 " Hardware Params: "
111 "Format = %s, Channels = %d, Rate = %d\n",
112 snd_pcm_format_name(params_format(params)),
113 params_channels(params),
114 params_rate(params));
115 }
116 spin_unlock_irqrestore(&fe->card->dpcm_lock, flags);
117out:
118 return offset;
119}
120
121static ssize_t dpcm_state_read_file(struct file *file, char __user *user_buf,
122 size_t count, loff_t *ppos)
123{
124 struct snd_soc_pcm_runtime *fe = file->private_data;
125 ssize_t out_count = PAGE_SIZE, offset = 0, ret = 0;
126 int stream;
127 char *buf;
128
Bard Liao6e1276a2020-02-25 21:39:16 +0800129 if (fe->num_cpus > 1) {
130 dev_err(fe->dev,
131 "%s doesn't support Multi CPU yet\n", __func__);
132 return -EINVAL;
133 }
134
Kuninori Morimotoc3212822020-02-19 15:56:57 +0900135 buf = kmalloc(out_count, GFP_KERNEL);
136 if (!buf)
137 return -ENOMEM;
138
139 for_each_pcm_streams(stream)
Kuninori Morimotoc2233a22020-03-30 10:47:37 +0900140 if (snd_soc_dai_stream_valid(asoc_rtd_to_cpu(fe, 0), stream))
Kuninori Morimotoc3212822020-02-19 15:56:57 +0900141 offset += dpcm_show_state(fe, stream,
142 buf + offset,
143 out_count - offset);
144
145 ret = simple_read_from_buffer(user_buf, count, ppos, buf, offset);
146
147 kfree(buf);
148 return ret;
149}
150
151static const struct file_operations dpcm_state_fops = {
152 .open = simple_open,
153 .read = dpcm_state_read_file,
154 .llseek = default_llseek,
155};
156
157void soc_dpcm_debugfs_add(struct snd_soc_pcm_runtime *rtd)
158{
159 if (!rtd->dai_link)
160 return;
161
162 if (!rtd->dai_link->dynamic)
163 return;
164
165 if (!rtd->card->debugfs_card_root)
166 return;
167
168 rtd->debugfs_dpcm_root = debugfs_create_dir(rtd->dai_link->name,
169 rtd->card->debugfs_card_root);
170
171 debugfs_create_file("state", 0444, rtd->debugfs_dpcm_root,
172 rtd, &dpcm_state_fops);
173}
Kuninori Morimoto154dae82020-02-19 15:57:06 +0900174
175static void dpcm_create_debugfs_state(struct snd_soc_dpcm *dpcm, int stream)
176{
177 char *name;
178
179 name = kasprintf(GFP_KERNEL, "%s:%s", dpcm->be->dai_link->name,
180 stream ? "capture" : "playback");
181 if (name) {
182 dpcm->debugfs_state = debugfs_create_dir(
183 name, dpcm->fe->debugfs_dpcm_root);
184 debugfs_create_u32("state", 0644, dpcm->debugfs_state,
185 &dpcm->state);
186 kfree(name);
187 }
188}
189
190static void dpcm_remove_debugfs_state(struct snd_soc_dpcm *dpcm)
191{
192 debugfs_remove_recursive(dpcm->debugfs_state);
193}
194
195#else
196static inline void dpcm_create_debugfs_state(struct snd_soc_dpcm *dpcm,
197 int stream)
198{
199}
200
201static inline void dpcm_remove_debugfs_state(struct snd_soc_dpcm *dpcm)
202{
203}
Kuninori Morimotoc3212822020-02-19 15:56:57 +0900204#endif
205
Kuninori Morimotod9051d82020-05-15 09:46:21 +0900206/**
207 * snd_soc_runtime_action() - Increment/Decrement active count for
208 * PCM runtime components
209 * @rtd: ASoC PCM runtime that is activated
210 * @stream: Direction of the PCM stream
211 *
212 * Increments/Decrements the active count for all the DAIs and components
213 * attached to a PCM runtime.
214 * Should typically be called when a stream is opened.
215 *
216 * Must be called with the rtd->card->pcm_mutex being held
217 */
218void snd_soc_runtime_action(struct snd_soc_pcm_runtime *rtd,
219 int stream, int action)
Kuninori Morimoto7a5aaba2020-02-10 12:14:12 +0900220{
Kuninori Morimotoc840f762020-03-16 15:37:14 +0900221 struct snd_soc_dai *dai;
Kuninori Morimoto7a5aaba2020-02-10 12:14:12 +0900222 int i;
223
224 lockdep_assert_held(&rtd->card->pcm_mutex);
225
Kuninori Morimotodc829102020-05-15 09:46:27 +0900226 for_each_rtd_dais(rtd, i, dai)
227 snd_soc_dai_action(dai, stream, action);
Kuninori Morimoto7a5aaba2020-02-10 12:14:12 +0900228}
Kuninori Morimotod9051d82020-05-15 09:46:21 +0900229EXPORT_SYMBOL_GPL(snd_soc_runtime_action);
Lars-Peter Clausen24894b72014-03-05 13:17:43 +0100230
231/**
Lars-Peter Clausen208a1582014-03-05 13:17:42 +0100232 * snd_soc_runtime_ignore_pmdown_time() - Check whether to ignore the power down delay
233 * @rtd: The ASoC PCM runtime that should be checked.
234 *
235 * This function checks whether the power down delay should be ignored for a
236 * specific PCM runtime. Returns true if the delay is 0, if it the DAI link has
237 * been configured to ignore the delay, or if none of the components benefits
238 * from having the delay.
239 */
240bool snd_soc_runtime_ignore_pmdown_time(struct snd_soc_pcm_runtime *rtd)
241{
Kuninori Morimotofbb16562017-10-11 01:38:08 +0000242 struct snd_soc_component *component;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200243 bool ignore = true;
Kuninori Morimoto613fb502020-01-10 11:35:21 +0900244 int i;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200245
Lars-Peter Clausen208a1582014-03-05 13:17:42 +0100246 if (!rtd->pmdown_time || rtd->dai_link->ignore_pmdown_time)
247 return true;
248
Kuninori Morimoto613fb502020-01-10 11:35:21 +0900249 for_each_rtd_components(rtd, i, component)
Kuninori Morimoto72c38182018-01-19 05:21:19 +0000250 ignore &= !component->driver->use_pmdown_time;
Kuninori Morimotofbb16562017-10-11 01:38:08 +0000251
Kuninori Morimotofbb16562017-10-11 01:38:08 +0000252 return ignore;
Lars-Peter Clausen208a1582014-03-05 13:17:42 +0100253}
254
255/**
Lars-Peter Clausen90996f42013-05-14 11:05:30 +0200256 * snd_soc_set_runtime_hwparams - set the runtime hardware parameters
257 * @substream: the pcm substream
258 * @hw: the hardware parameters
259 *
260 * Sets the substream runtime hardware parameters.
261 */
262int snd_soc_set_runtime_hwparams(struct snd_pcm_substream *substream,
263 const struct snd_pcm_hardware *hw)
264{
265 struct snd_pcm_runtime *runtime = substream->runtime;
266 runtime->hw.info = hw->info;
267 runtime->hw.formats = hw->formats;
268 runtime->hw.period_bytes_min = hw->period_bytes_min;
269 runtime->hw.period_bytes_max = hw->period_bytes_max;
270 runtime->hw.periods_min = hw->periods_min;
271 runtime->hw.periods_max = hw->periods_max;
272 runtime->hw.buffer_bytes_max = hw->buffer_bytes_max;
273 runtime->hw.fifo_size = hw->fifo_size;
274 return 0;
275}
276EXPORT_SYMBOL_GPL(snd_soc_set_runtime_hwparams);
277
Liam Girdwood01d75842012-04-25 12:12:49 +0100278/* DPCM stream event, send event to FE and all active BEs. */
Liam Girdwood23607022014-01-17 17:03:55 +0000279int dpcm_dapm_stream_event(struct snd_soc_pcm_runtime *fe, int dir,
Liam Girdwood01d75842012-04-25 12:12:49 +0100280 int event)
281{
282 struct snd_soc_dpcm *dpcm;
283
Kuninori Morimoto8d6258a2018-09-18 01:31:09 +0000284 for_each_dpcm_be(fe, dir, dpcm) {
Liam Girdwood01d75842012-04-25 12:12:49 +0100285
286 struct snd_soc_pcm_runtime *be = dpcm->be;
287
Liam Girdwood103d84a2012-11-19 14:39:15 +0000288 dev_dbg(be->dev, "ASoC: BE %s event %d dir %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +0100289 be->dai_link->name, event, dir);
290
Banajit Goswamib1cd2e32017-07-14 23:15:05 -0700291 if ((event == SND_SOC_DAPM_STREAM_STOP) &&
292 (be->dpcm[dir].users >= 1))
293 continue;
294
Liam Girdwood01d75842012-04-25 12:12:49 +0100295 snd_soc_dapm_stream_event(be, dir, event);
296 }
297
298 snd_soc_dapm_stream_event(fe, dir, event);
299
300 return 0;
301}
302
Dong Aisheng17841022011-08-29 17:15:14 +0800303static int soc_pcm_apply_symmetry(struct snd_pcm_substream *substream,
304 struct snd_soc_dai *soc_dai)
Liam Girdwoodddee6272011-06-09 14:45:53 +0100305{
306 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100307 int ret;
308
Nicolin Chen3635bf02013-11-13 18:56:24 +0800309 if (soc_dai->rate && (soc_dai->driver->symmetric_rates ||
310 rtd->dai_link->symmetric_rates)) {
311 dev_dbg(soc_dai->dev, "ASoC: Symmetry forces %dHz rate\n",
312 soc_dai->rate);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100313
Lars-Peter Clausen4dcdd432015-10-18 15:39:28 +0200314 ret = snd_pcm_hw_constraint_single(substream->runtime,
Nicolin Chen3635bf02013-11-13 18:56:24 +0800315 SNDRV_PCM_HW_PARAM_RATE,
Lars-Peter Clausen4dcdd432015-10-18 15:39:28 +0200316 soc_dai->rate);
Nicolin Chen3635bf02013-11-13 18:56:24 +0800317 if (ret < 0) {
318 dev_err(soc_dai->dev,
319 "ASoC: Unable to apply rate constraint: %d\n",
320 ret);
321 return ret;
322 }
Liam Girdwoodddee6272011-06-09 14:45:53 +0100323 }
324
Nicolin Chen3635bf02013-11-13 18:56:24 +0800325 if (soc_dai->channels && (soc_dai->driver->symmetric_channels ||
326 rtd->dai_link->symmetric_channels)) {
327 dev_dbg(soc_dai->dev, "ASoC: Symmetry forces %d channel(s)\n",
328 soc_dai->channels);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100329
Lars-Peter Clausen4dcdd432015-10-18 15:39:28 +0200330 ret = snd_pcm_hw_constraint_single(substream->runtime,
Nicolin Chen3635bf02013-11-13 18:56:24 +0800331 SNDRV_PCM_HW_PARAM_CHANNELS,
Nicolin Chen3635bf02013-11-13 18:56:24 +0800332 soc_dai->channels);
333 if (ret < 0) {
334 dev_err(soc_dai->dev,
335 "ASoC: Unable to apply channel symmetry constraint: %d\n",
336 ret);
337 return ret;
338 }
339 }
340
341 if (soc_dai->sample_bits && (soc_dai->driver->symmetric_samplebits ||
342 rtd->dai_link->symmetric_samplebits)) {
343 dev_dbg(soc_dai->dev, "ASoC: Symmetry forces %d sample bits\n",
344 soc_dai->sample_bits);
345
Lars-Peter Clausen4dcdd432015-10-18 15:39:28 +0200346 ret = snd_pcm_hw_constraint_single(substream->runtime,
Nicolin Chen3635bf02013-11-13 18:56:24 +0800347 SNDRV_PCM_HW_PARAM_SAMPLE_BITS,
Nicolin Chen3635bf02013-11-13 18:56:24 +0800348 soc_dai->sample_bits);
349 if (ret < 0) {
350 dev_err(soc_dai->dev,
351 "ASoC: Unable to apply sample bits symmetry constraint: %d\n",
352 ret);
353 return ret;
354 }
Liam Girdwoodddee6272011-06-09 14:45:53 +0100355 }
356
357 return 0;
358}
359
Nicolin Chen3635bf02013-11-13 18:56:24 +0800360static int soc_pcm_params_symmetry(struct snd_pcm_substream *substream,
361 struct snd_pcm_hw_params *params)
362{
363 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Kuninori Morimotoc840f762020-03-16 15:37:14 +0900364 struct snd_soc_dai *dai;
Shreyas NC19bdcc7a2020-02-25 21:39:13 +0800365 struct snd_soc_dai *cpu_dai;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200366 unsigned int rate, channels, sample_bits, symmetry, i;
Nicolin Chen3635bf02013-11-13 18:56:24 +0800367
368 rate = params_rate(params);
369 channels = params_channels(params);
370 sample_bits = snd_pcm_format_physical_width(params_format(params));
371
372 /* reject unmatched parameters when applying symmetry */
Shreyas NC19bdcc7a2020-02-25 21:39:13 +0800373 symmetry = rtd->dai_link->symmetric_rates;
374
Kuninori Morimotoc840f762020-03-16 15:37:14 +0900375 for_each_rtd_cpu_dais(rtd, i, dai)
376 symmetry |= dai->driver->symmetric_rates;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200377
Shreyas NC19bdcc7a2020-02-25 21:39:13 +0800378 if (symmetry) {
Kuninori Morimotoa4be4182020-03-09 13:08:04 +0900379 for_each_rtd_cpu_dais(rtd, i, cpu_dai) {
Shreyas NC19bdcc7a2020-02-25 21:39:13 +0800380 if (cpu_dai->rate && cpu_dai->rate != rate) {
381 dev_err(rtd->dev, "ASoC: unmatched rate symmetry: %d - %d\n",
382 cpu_dai->rate, rate);
383 return -EINVAL;
384 }
385 }
Nicolin Chen3635bf02013-11-13 18:56:24 +0800386 }
387
Shreyas NC19bdcc7a2020-02-25 21:39:13 +0800388 symmetry = rtd->dai_link->symmetric_channels;
389
Kuninori Morimotoc840f762020-03-16 15:37:14 +0900390 for_each_rtd_dais(rtd, i, dai)
391 symmetry |= dai->driver->symmetric_channels;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200392
Shreyas NC19bdcc7a2020-02-25 21:39:13 +0800393 if (symmetry) {
Kuninori Morimotoa4be4182020-03-09 13:08:04 +0900394 for_each_rtd_cpu_dais(rtd, i, cpu_dai) {
Shreyas NC19bdcc7a2020-02-25 21:39:13 +0800395 if (cpu_dai->channels &&
396 cpu_dai->channels != channels) {
397 dev_err(rtd->dev, "ASoC: unmatched channel symmetry: %d - %d\n",
398 cpu_dai->channels, channels);
399 return -EINVAL;
400 }
401 }
Nicolin Chen3635bf02013-11-13 18:56:24 +0800402 }
403
Shreyas NC19bdcc7a2020-02-25 21:39:13 +0800404 symmetry = rtd->dai_link->symmetric_samplebits;
405
Kuninori Morimotoc840f762020-03-16 15:37:14 +0900406 for_each_rtd_dais(rtd, i, dai)
407 symmetry |= dai->driver->symmetric_samplebits;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200408
Shreyas NC19bdcc7a2020-02-25 21:39:13 +0800409 if (symmetry) {
Kuninori Morimotoa4be4182020-03-09 13:08:04 +0900410 for_each_rtd_cpu_dais(rtd, i, cpu_dai) {
Shreyas NC19bdcc7a2020-02-25 21:39:13 +0800411 if (cpu_dai->sample_bits &&
412 cpu_dai->sample_bits != sample_bits) {
413 dev_err(rtd->dev, "ASoC: unmatched sample bits symmetry: %d - %d\n",
414 cpu_dai->sample_bits, sample_bits);
415 return -EINVAL;
416 }
417 }
Liam Girdwoodddee6272011-06-09 14:45:53 +0100418 }
419
420 return 0;
421}
422
Lars-Peter Clausen62e5f672013-11-30 17:38:58 +0100423static bool soc_pcm_has_symmetry(struct snd_pcm_substream *substream)
424{
425 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Lars-Peter Clausen62e5f672013-11-30 17:38:58 +0100426 struct snd_soc_dai_link *link = rtd->dai_link;
Kuninori Morimotoc840f762020-03-16 15:37:14 +0900427 struct snd_soc_dai *dai;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200428 unsigned int symmetry, i;
Lars-Peter Clausen62e5f672013-11-30 17:38:58 +0100429
Shreyas NC19bdcc7a2020-02-25 21:39:13 +0800430 symmetry = link->symmetric_rates ||
431 link->symmetric_channels ||
432 link->symmetric_samplebits;
433
Kuninori Morimotoc840f762020-03-16 15:37:14 +0900434 for_each_rtd_dais(rtd, i, dai)
Shreyas NC19bdcc7a2020-02-25 21:39:13 +0800435 symmetry = symmetry ||
Kuninori Morimotoc840f762020-03-16 15:37:14 +0900436 dai->driver->symmetric_rates ||
437 dai->driver->symmetric_channels ||
438 dai->driver->symmetric_samplebits;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200439
440 return symmetry;
Lars-Peter Clausen62e5f672013-11-30 17:38:58 +0100441}
442
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200443static void soc_pcm_set_msb(struct snd_pcm_substream *substream, int bits)
Mark Brown58ba9b22012-01-16 18:38:51 +0000444{
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200445 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Takashi Iwaic6068d32014-12-31 17:10:34 +0100446 int ret;
Mark Brown58ba9b22012-01-16 18:38:51 +0000447
448 if (!bits)
449 return;
450
Lars-Peter Clausen0e2a3752014-12-29 18:43:38 +0100451 ret = snd_pcm_hw_constraint_msbits(substream->runtime, 0, 0, bits);
452 if (ret != 0)
453 dev_warn(rtd->dev, "ASoC: Failed to set MSB %d: %d\n",
454 bits, ret);
Mark Brown58ba9b22012-01-16 18:38:51 +0000455}
456
Benoit Coussonc8dd1fe2014-07-01 09:47:55 +0200457static void soc_pcm_apply_msb(struct snd_pcm_substream *substream)
Lars-Peter Clausenbd477c32013-05-14 11:05:31 +0200458{
Benoit Coussonc8dd1fe2014-07-01 09:47:55 +0200459 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Shreyas NC19bdcc7a2020-02-25 21:39:13 +0800460 struct snd_soc_dai *cpu_dai;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200461 struct snd_soc_dai *codec_dai;
Kuninori Morimoto57be9202020-02-19 15:56:36 +0900462 struct snd_soc_pcm_stream *pcm_codec, *pcm_cpu;
463 int stream = substream->stream;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200464 int i;
Shreyas NC19bdcc7a2020-02-25 21:39:13 +0800465 unsigned int bits = 0, cpu_bits = 0;
Benoit Coussonc8dd1fe2014-07-01 09:47:55 +0200466
Kuninori Morimotoa4be4182020-03-09 13:08:04 +0900467 for_each_rtd_codec_dais(rtd, i, codec_dai) {
Kuninori Morimoto57be9202020-02-19 15:56:36 +0900468 pcm_codec = snd_soc_dai_get_pcm_stream(codec_dai, stream);
469
470 if (pcm_codec->sig_bits == 0) {
471 bits = 0;
472 break;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200473 }
Kuninori Morimoto57be9202020-02-19 15:56:36 +0900474 bits = max(pcm_codec->sig_bits, bits);
Benoit Coussonc8dd1fe2014-07-01 09:47:55 +0200475 }
476
Kuninori Morimotoa4be4182020-03-09 13:08:04 +0900477 for_each_rtd_cpu_dais(rtd, i, cpu_dai) {
Shreyas NC19bdcc7a2020-02-25 21:39:13 +0800478 pcm_cpu = snd_soc_dai_get_pcm_stream(cpu_dai, stream);
479
480 if (pcm_cpu->sig_bits == 0) {
481 cpu_bits = 0;
482 break;
483 }
484 cpu_bits = max(pcm_cpu->sig_bits, cpu_bits);
485 }
Kuninori Morimoto57be9202020-02-19 15:56:36 +0900486
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200487 soc_pcm_set_msb(substream, bits);
488 soc_pcm_set_msb(substream, cpu_bits);
Benoit Coussonc8dd1fe2014-07-01 09:47:55 +0200489}
490
Samuel Holland5854a462020-03-04 23:11:42 -0600491/**
492 * snd_soc_runtime_calc_hw() - Calculate hw limits for a PCM stream
493 * @rtd: ASoC PCM runtime
494 * @hw: PCM hardware parameters (output)
495 * @stream: Direction of the PCM stream
496 *
497 * Calculates the subset of stream parameters supported by all DAIs
498 * associated with the PCM stream.
499 */
500int snd_soc_runtime_calc_hw(struct snd_soc_pcm_runtime *rtd,
501 struct snd_pcm_hardware *hw, int stream)
Lars-Peter Clausenbd477c32013-05-14 11:05:31 +0200502{
Kuninori Morimoto0b7990e2018-09-03 02:12:56 +0000503 struct snd_soc_dai *codec_dai;
Shreyas NC19bdcc7a2020-02-25 21:39:13 +0800504 struct snd_soc_dai *cpu_dai;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200505 struct snd_soc_pcm_stream *codec_stream;
506 struct snd_soc_pcm_stream *cpu_stream;
507 unsigned int chan_min = 0, chan_max = UINT_MAX;
Shreyas NC19bdcc7a2020-02-25 21:39:13 +0800508 unsigned int cpu_chan_min = 0, cpu_chan_max = UINT_MAX;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200509 unsigned int rate_min = 0, rate_max = UINT_MAX;
Shreyas NC19bdcc7a2020-02-25 21:39:13 +0800510 unsigned int cpu_rate_min = 0, cpu_rate_max = UINT_MAX;
511 unsigned int rates = UINT_MAX, cpu_rates = UINT_MAX;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200512 u64 formats = ULLONG_MAX;
513 int i;
Lars-Peter Clausen78e45c92013-11-27 09:58:18 +0100514
Shreyas NC19bdcc7a2020-02-25 21:39:13 +0800515 /* first calculate min/max only for CPUs in the DAI link */
Kuninori Morimotoa4be4182020-03-09 13:08:04 +0900516 for_each_rtd_cpu_dais(rtd, i, cpu_dai) {
Bard Liao0e9cf4c42020-02-25 21:39:17 +0800517
518 /*
519 * Skip CPUs which don't support the current stream type.
520 * Otherwise, since the rate, channel, and format values will
521 * zero in that case, we would have no usable settings left,
522 * causing the resulting setup to fail.
Bard Liao0e9cf4c42020-02-25 21:39:17 +0800523 */
Samuel Holland5854a462020-03-04 23:11:42 -0600524 if (!snd_soc_dai_stream_valid(cpu_dai, stream))
Bard Liao0e9cf4c42020-02-25 21:39:17 +0800525 continue;
526
Shreyas NC19bdcc7a2020-02-25 21:39:13 +0800527 cpu_stream = snd_soc_dai_get_pcm_stream(cpu_dai, stream);
Lars-Peter Clausen78e45c92013-11-27 09:58:18 +0100528
Shreyas NC19bdcc7a2020-02-25 21:39:13 +0800529 cpu_chan_min = max(cpu_chan_min, cpu_stream->channels_min);
530 cpu_chan_max = min(cpu_chan_max, cpu_stream->channels_max);
531 cpu_rate_min = max(cpu_rate_min, cpu_stream->rate_min);
532 cpu_rate_max = min_not_zero(cpu_rate_max, cpu_stream->rate_max);
533 formats &= cpu_stream->formats;
534 cpu_rates = snd_pcm_rate_mask_intersect(cpu_stream->rates,
535 cpu_rates);
536 }
537
538 /* second calculate min/max only for CODECs in the DAI link */
Kuninori Morimotoa4be4182020-03-09 13:08:04 +0900539 for_each_rtd_codec_dais(rtd, i, codec_dai) {
Ricard Wanderlofcde79032015-08-24 14:16:51 +0200540
541 /*
542 * Skip CODECs which don't support the current stream type.
543 * Otherwise, since the rate, channel, and format values will
544 * zero in that case, we would have no usable settings left,
545 * causing the resulting setup to fail.
Ricard Wanderlofcde79032015-08-24 14:16:51 +0200546 */
Kuninori Morimoto25c2f512020-02-27 10:54:38 +0900547 if (!snd_soc_dai_stream_valid(codec_dai, stream))
Ricard Wanderlofcde79032015-08-24 14:16:51 +0200548 continue;
549
Kuninori Morimotoacf253c2020-02-19 15:56:30 +0900550 codec_stream = snd_soc_dai_get_pcm_stream(codec_dai, stream);
551
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200552 chan_min = max(chan_min, codec_stream->channels_min);
553 chan_max = min(chan_max, codec_stream->channels_max);
554 rate_min = max(rate_min, codec_stream->rate_min);
555 rate_max = min_not_zero(rate_max, codec_stream->rate_max);
556 formats &= codec_stream->formats;
557 rates = snd_pcm_rate_mask_intersect(codec_stream->rates, rates);
558 }
559
Samuel Holland5854a462020-03-04 23:11:42 -0600560 /* Verify both a valid CPU DAI and a valid CODEC DAI were found */
561 if (!chan_min || !cpu_chan_min)
562 return -EINVAL;
563
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200564 /*
565 * chan min/max cannot be enforced if there are multiple CODEC DAIs
Shreyas NC19bdcc7a2020-02-25 21:39:13 +0800566 * connected to CPU DAI(s), use CPU DAI's directly and let
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200567 * channel allocation be fixed up later
568 */
569 if (rtd->num_codecs > 1) {
Shreyas NC19bdcc7a2020-02-25 21:39:13 +0800570 chan_min = cpu_chan_min;
571 chan_max = cpu_chan_max;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200572 }
573
Shreyas NC19bdcc7a2020-02-25 21:39:13 +0800574 /* finally find a intersection between CODECs and CPUs */
575 hw->channels_min = max(chan_min, cpu_chan_min);
576 hw->channels_max = min(chan_max, cpu_chan_max);
Samuel Holland5854a462020-03-04 23:11:42 -0600577 hw->formats = formats;
Shreyas NC19bdcc7a2020-02-25 21:39:13 +0800578 hw->rates = snd_pcm_rate_mask_intersect(rates, cpu_rates);
Lars-Peter Clausen78e45c92013-11-27 09:58:18 +0100579
Samuel Holland5854a462020-03-04 23:11:42 -0600580 snd_pcm_hw_limit_rates(hw);
Lars-Peter Clausen78e45c92013-11-27 09:58:18 +0100581
Shreyas NC19bdcc7a2020-02-25 21:39:13 +0800582 hw->rate_min = max(hw->rate_min, cpu_rate_min);
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200583 hw->rate_min = max(hw->rate_min, rate_min);
Shreyas NC19bdcc7a2020-02-25 21:39:13 +0800584 hw->rate_max = min_not_zero(hw->rate_max, cpu_rate_max);
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200585 hw->rate_max = min_not_zero(hw->rate_max, rate_max);
Samuel Holland5854a462020-03-04 23:11:42 -0600586
587 return 0;
588}
589EXPORT_SYMBOL_GPL(snd_soc_runtime_calc_hw);
590
591static void soc_pcm_init_runtime_hw(struct snd_pcm_substream *substream)
592{
593 struct snd_pcm_hardware *hw = &substream->runtime->hw;
594 struct snd_soc_pcm_runtime *rtd = substream->private_data;
595 u64 formats = hw->formats;
596
597 /*
598 * At least one CPU and one CODEC should match. Otherwise, we should
599 * have bailed out on a higher level, since there would be no CPU or
600 * CODEC to support the transfer direction in that case.
601 */
602 snd_soc_runtime_calc_hw(rtd, hw, substream->stream);
603
604 if (formats)
605 hw->formats &= formats;
Lars-Peter Clausenbd477c32013-05-14 11:05:31 +0200606}
607
Kuninori Morimotodd039072020-02-10 12:14:37 +0900608static int soc_pcm_components_open(struct snd_pcm_substream *substream)
Kuninori Morimotoe7ecfdb2019-05-13 16:08:33 +0900609{
610 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Kai Vehmanend2aaa8d2020-02-20 11:49:55 +0200611 struct snd_soc_component *last = NULL;
Kuninori Morimotoe7ecfdb2019-05-13 16:08:33 +0900612 struct snd_soc_component *component;
Kuninori Morimoto613fb502020-01-10 11:35:21 +0900613 int i, ret = 0;
Kuninori Morimotoe7ecfdb2019-05-13 16:08:33 +0900614
Kuninori Morimoto613fb502020-01-10 11:35:21 +0900615 for_each_rtd_components(rtd, i, component) {
Kai Vehmanend2aaa8d2020-02-20 11:49:55 +0200616 last = component;
617
Kuninori Morimoto4a81e8f2019-07-26 13:49:54 +0900618 ret = snd_soc_component_module_get_when_open(component);
619 if (ret < 0) {
Kuninori Morimotoe7ecfdb2019-05-13 16:08:33 +0900620 dev_err(component->dev,
621 "ASoC: can't get module %s\n",
622 component->name);
Kai Vehmanend2aaa8d2020-02-20 11:49:55 +0200623 break;
Kuninori Morimotoe7ecfdb2019-05-13 16:08:33 +0900624 }
625
Kuninori Morimotoae2f4842019-07-26 13:50:01 +0900626 ret = snd_soc_component_open(component, substream);
Kuninori Morimotoe7ecfdb2019-05-13 16:08:33 +0900627 if (ret < 0) {
Kai Vehmanend2aaa8d2020-02-20 11:49:55 +0200628 snd_soc_component_module_put_when_close(component);
Kuninori Morimotoe7ecfdb2019-05-13 16:08:33 +0900629 dev_err(component->dev,
630 "ASoC: can't open component %s: %d\n",
631 component->name, ret);
Kai Vehmanend2aaa8d2020-02-20 11:49:55 +0200632 break;
Kuninori Morimotoe7ecfdb2019-05-13 16:08:33 +0900633 }
634 }
Kuninori Morimotodd039072020-02-10 12:14:37 +0900635
Kai Vehmanend2aaa8d2020-02-20 11:49:55 +0200636 if (ret < 0) {
637 /* rollback on error */
638 for_each_rtd_components(rtd, i, component) {
639 if (component == last)
640 break;
641
642 snd_soc_component_close(component, substream);
643 snd_soc_component_module_put_when_close(component);
644 }
645 }
646
647 return ret;
Kuninori Morimotoe7ecfdb2019-05-13 16:08:33 +0900648}
649
Kuninori Morimotodd039072020-02-10 12:14:37 +0900650static int soc_pcm_components_close(struct snd_pcm_substream *substream)
Charles Keepax244e2932018-06-19 16:22:09 +0100651{
652 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Charles Keepax244e2932018-06-19 16:22:09 +0100653 struct snd_soc_component *component;
Kuninori Morimotoe82ebff2020-02-10 12:14:26 +0900654 int i, r, ret = 0;
Charles Keepax244e2932018-06-19 16:22:09 +0100655
Kuninori Morimoto613fb502020-01-10 11:35:21 +0900656 for_each_rtd_components(rtd, i, component) {
Kuninori Morimotoe82ebff2020-02-10 12:14:26 +0900657 r = snd_soc_component_close(component, substream);
658 if (r < 0)
659 ret = r; /* use last ret */
660
Kuninori Morimoto4a81e8f2019-07-26 13:49:54 +0900661 snd_soc_component_module_put_when_close(component);
Charles Keepax244e2932018-06-19 16:22:09 +0100662 }
663
Kuninori Morimoto3672beb2019-07-26 13:50:07 +0900664 return ret;
Charles Keepax244e2932018-06-19 16:22:09 +0100665}
666
Mark Brown58ba9b22012-01-16 18:38:51 +0000667/*
Kuninori Morimoto62c86d12020-02-10 12:14:41 +0900668 * Called by ALSA when a PCM substream is closed. Private data can be
669 * freed here. The cpu DAI, codec DAI, machine and components are also
670 * shutdown.
671 */
672static int soc_pcm_close(struct snd_pcm_substream *substream)
673{
674 struct snd_soc_pcm_runtime *rtd = substream->private_data;
675 struct snd_soc_component *component;
Kuninori Morimotoc840f762020-03-16 15:37:14 +0900676 struct snd_soc_dai *dai;
Kuninori Morimoto62c86d12020-02-10 12:14:41 +0900677 int i;
678
679 mutex_lock_nested(&rtd->card->pcm_mutex, rtd->card->pcm_subclass);
680
681 snd_soc_runtime_deactivate(rtd, substream->stream);
682
Kuninori Morimotoc840f762020-03-16 15:37:14 +0900683 for_each_rtd_dais(rtd, i, dai)
684 snd_soc_dai_shutdown(dai, substream);
Kuninori Morimoto62c86d12020-02-10 12:14:41 +0900685
Kuninori Morimoto7cf3c5b2020-05-25 09:57:31 +0900686 snd_soc_link_shutdown(substream);
Kuninori Morimoto62c86d12020-02-10 12:14:41 +0900687
688 soc_pcm_components_close(substream);
689
690 snd_soc_dapm_stream_stop(rtd, substream->stream);
691
692 mutex_unlock(&rtd->card->pcm_mutex);
693
694 for_each_rtd_components(rtd, i, component) {
695 pm_runtime_mark_last_busy(component->dev);
696 pm_runtime_put_autosuspend(component->dev);
697 }
698
699 for_each_rtd_components(rtd, i, component)
Kuninori Morimotob3dea622020-05-15 09:46:51 +0900700 if (!snd_soc_component_active(component))
Kuninori Morimoto62c86d12020-02-10 12:14:41 +0900701 pinctrl_pm_select_sleep_state(component->dev);
702
703 return 0;
704}
705
706/*
Liam Girdwoodddee6272011-06-09 14:45:53 +0100707 * Called by ALSA when a PCM substream is opened, the runtime->hw record is
708 * then initialized and any private data can be allocated. This also calls
Charles Keepaxef050be2018-04-24 16:39:02 +0100709 * startup for the cpu DAI, component, machine and codec DAI.
Liam Girdwoodddee6272011-06-09 14:45:53 +0100710 */
711static int soc_pcm_open(struct snd_pcm_substream *substream)
712{
713 struct snd_soc_pcm_runtime *rtd = substream->private_data;
714 struct snd_pcm_runtime *runtime = substream->runtime;
Kuninori Morimoto90be7112017-08-08 06:18:10 +0000715 struct snd_soc_component *component;
Kuninori Morimotoc840f762020-03-16 15:37:14 +0900716 struct snd_soc_dai *dai;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200717 const char *codec_dai_name = "multicodec";
Shreyas NC19bdcc7a2020-02-25 21:39:13 +0800718 const char *cpu_dai_name = "multicpu";
Charles Keepax244e2932018-06-19 16:22:09 +0100719 int i, ret = 0;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100720
Kuninori Morimoto76c39e82020-01-10 11:36:13 +0900721 for_each_rtd_components(rtd, i, component)
722 pinctrl_pm_select_default_state(component->dev);
Kuninori Morimoto90be7112017-08-08 06:18:10 +0000723
Kuninori Morimoto613fb502020-01-10 11:35:21 +0900724 for_each_rtd_components(rtd, i, component)
Kuninori Morimoto90be7112017-08-08 06:18:10 +0000725 pm_runtime_get_sync(component->dev);
Mark Brownd6652ef2011-12-03 20:14:31 +0000726
Peter Ujfalusi72b745e2019-08-13 13:45:32 +0300727 mutex_lock_nested(&rtd->card->pcm_mutex, rtd->card->pcm_subclass);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100728
Kuninori Morimoto5d9fa032020-02-10 12:14:45 +0900729 ret = soc_pcm_components_open(substream);
730 if (ret < 0)
731 goto component_err;
732
Kuninori Morimoto7cf3c5b2020-05-25 09:57:31 +0900733 ret = snd_soc_link_startup(substream);
Kuninori Morimotoa5e6c102020-05-25 09:57:19 +0900734 if (ret < 0)
Kai Vehmanend2aaa8d2020-02-20 11:49:55 +0200735 goto rtd_startup_err;
Kuninori Morimoto5d9fa032020-02-10 12:14:45 +0900736
Liam Girdwoodddee6272011-06-09 14:45:53 +0100737 /* startup the audio subsystem */
Kuninori Morimotoc840f762020-03-16 15:37:14 +0900738 for_each_rtd_dais(rtd, i, dai) {
739 ret = snd_soc_dai_startup(dai, substream);
Shreyas NC19bdcc7a2020-02-25 21:39:13 +0800740 if (ret < 0) {
Kuninori Morimotoc840f762020-03-16 15:37:14 +0900741 dev_err(dai->dev,
742 "ASoC: can't open DAI %s: %d\n",
743 dai->name, ret);
Kuninori Morimoto5d9fa032020-02-10 12:14:45 +0900744 goto config_err;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100745 }
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200746
747 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
Kuninori Morimotoc840f762020-03-16 15:37:14 +0900748 dai->tx_mask = 0;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200749 else
Kuninori Morimotoc840f762020-03-16 15:37:14 +0900750 dai->rx_mask = 0;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100751 }
752
Liam Girdwood01d75842012-04-25 12:12:49 +0100753 /* Dynamic PCM DAI links compat checks use dynamic capabilities */
754 if (rtd->dai_link->dynamic || rtd->dai_link->no_pcm)
755 goto dynamic;
756
Liam Girdwoodddee6272011-06-09 14:45:53 +0100757 /* Check that the codec and cpu DAIs are compatible */
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200758 soc_pcm_init_runtime_hw(substream);
759
760 if (rtd->num_codecs == 1)
Kuninori Morimotoc2233a22020-03-30 10:47:37 +0900761 codec_dai_name = asoc_rtd_to_codec(rtd, 0)->name;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100762
Shreyas NC19bdcc7a2020-02-25 21:39:13 +0800763 if (rtd->num_cpus == 1)
Kuninori Morimotoc2233a22020-03-30 10:47:37 +0900764 cpu_dai_name = asoc_rtd_to_cpu(rtd, 0)->name;
Shreyas NC19bdcc7a2020-02-25 21:39:13 +0800765
Lars-Peter Clausen62e5f672013-11-30 17:38:58 +0100766 if (soc_pcm_has_symmetry(substream))
767 runtime->hw.info |= SNDRV_PCM_INFO_JOINT_DUPLEX;
768
Liam Girdwoodddee6272011-06-09 14:45:53 +0100769 ret = -EINVAL;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100770 if (!runtime->hw.rates) {
Liam Girdwood103d84a2012-11-19 14:39:15 +0000771 printk(KERN_ERR "ASoC: %s <-> %s No matching rates\n",
Shreyas NC19bdcc7a2020-02-25 21:39:13 +0800772 codec_dai_name, cpu_dai_name);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100773 goto config_err;
774 }
775 if (!runtime->hw.formats) {
Liam Girdwood103d84a2012-11-19 14:39:15 +0000776 printk(KERN_ERR "ASoC: %s <-> %s No matching formats\n",
Shreyas NC19bdcc7a2020-02-25 21:39:13 +0800777 codec_dai_name, cpu_dai_name);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100778 goto config_err;
779 }
780 if (!runtime->hw.channels_min || !runtime->hw.channels_max ||
781 runtime->hw.channels_min > runtime->hw.channels_max) {
Liam Girdwood103d84a2012-11-19 14:39:15 +0000782 printk(KERN_ERR "ASoC: %s <-> %s No matching channels\n",
Shreyas NC19bdcc7a2020-02-25 21:39:13 +0800783 codec_dai_name, cpu_dai_name);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100784 goto config_err;
785 }
786
Benoit Coussonc8dd1fe2014-07-01 09:47:55 +0200787 soc_pcm_apply_msb(substream);
Mark Brown58ba9b22012-01-16 18:38:51 +0000788
Liam Girdwoodddee6272011-06-09 14:45:53 +0100789 /* Symmetry only applies if we've already got an active stream. */
Kuninori Morimotoc840f762020-03-16 15:37:14 +0900790 for_each_rtd_dais(rtd, i, dai) {
Kuninori Morimotob3dea622020-05-15 09:46:51 +0900791 if (snd_soc_dai_active(dai)) {
Kuninori Morimotoc840f762020-03-16 15:37:14 +0900792 ret = soc_pcm_apply_symmetry(substream, dai);
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200793 if (ret != 0)
794 goto config_err;
795 }
Liam Girdwoodddee6272011-06-09 14:45:53 +0100796 }
797
Liam Girdwood103d84a2012-11-19 14:39:15 +0000798 pr_debug("ASoC: %s <-> %s info:\n",
Shreyas NC19bdcc7a2020-02-25 21:39:13 +0800799 codec_dai_name, cpu_dai_name);
Liam Girdwood103d84a2012-11-19 14:39:15 +0000800 pr_debug("ASoC: rate mask 0x%x\n", runtime->hw.rates);
801 pr_debug("ASoC: min ch %d max ch %d\n", runtime->hw.channels_min,
Liam Girdwoodddee6272011-06-09 14:45:53 +0100802 runtime->hw.channels_max);
Liam Girdwood103d84a2012-11-19 14:39:15 +0000803 pr_debug("ASoC: min rate %d max rate %d\n", runtime->hw.rate_min,
Liam Girdwoodddee6272011-06-09 14:45:53 +0100804 runtime->hw.rate_max);
805
Liam Girdwood01d75842012-04-25 12:12:49 +0100806dynamic:
Lars-Peter Clausen24894b72014-03-05 13:17:43 +0100807
808 snd_soc_runtime_activate(rtd, substream->stream);
809
Peter Ujfalusi72b745e2019-08-13 13:45:32 +0300810 mutex_unlock(&rtd->card->pcm_mutex);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100811 return 0;
812
813config_err:
Kuninori Morimotoc840f762020-03-16 15:37:14 +0900814 for_each_rtd_dais(rtd, i, dai)
815 snd_soc_dai_shutdown(dai, substream);
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200816
Kuninori Morimoto7cf3c5b2020-05-25 09:57:31 +0900817 snd_soc_link_shutdown(substream);
Kai Vehmanend2aaa8d2020-02-20 11:49:55 +0200818rtd_startup_err:
Kuninori Morimotodd039072020-02-10 12:14:37 +0900819 soc_pcm_components_close(substream);
Kai Vehmanend2aaa8d2020-02-20 11:49:55 +0200820component_err:
Peter Ujfalusi72b745e2019-08-13 13:45:32 +0300821 mutex_unlock(&rtd->card->pcm_mutex);
Mark Brownd6652ef2011-12-03 20:14:31 +0000822
Kuninori Morimoto613fb502020-01-10 11:35:21 +0900823 for_each_rtd_components(rtd, i, component) {
Kuninori Morimoto90be7112017-08-08 06:18:10 +0000824 pm_runtime_mark_last_busy(component->dev);
825 pm_runtime_put_autosuspend(component->dev);
Sanyog Kale3f809782016-01-05 17:14:49 +0530826 }
827
Kuninori Morimoto76c39e82020-01-10 11:36:13 +0900828 for_each_rtd_components(rtd, i, component)
Kuninori Morimotob3dea622020-05-15 09:46:51 +0900829 if (!snd_soc_component_active(component))
Kuninori Morimoto76c39e82020-01-10 11:36:13 +0900830 pinctrl_pm_select_sleep_state(component->dev);
Mark Brownd6652ef2011-12-03 20:14:31 +0000831
Liam Girdwoodddee6272011-06-09 14:45:53 +0100832 return ret;
833}
834
Curtis Malainey4bf2e382019-12-03 09:30:07 -0800835static void codec2codec_close_delayed_work(struct snd_soc_pcm_runtime *rtd)
Jerome Bruneta3420312019-07-25 18:59:47 +0200836{
837 /*
838 * Currently nothing to do for c2c links
839 * Since c2c links are internal nodes in the DAPM graph and
840 * don't interface with the outside world or application layer
841 * we don't have to do any special handling on close.
842 */
843}
844
Liam Girdwoodddee6272011-06-09 14:45:53 +0100845/*
Liam Girdwoodddee6272011-06-09 14:45:53 +0100846 * Called by ALSA when the PCM substream is prepared, can set format, sample
847 * rate, etc. This function is non atomic and can be called multiple times,
848 * it can refer to the runtime info.
849 */
850static int soc_pcm_prepare(struct snd_pcm_substream *substream)
851{
852 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Kuninori Morimotob8135862017-10-11 01:37:23 +0000853 struct snd_soc_component *component;
Kuninori Morimotoc840f762020-03-16 15:37:14 +0900854 struct snd_soc_dai *dai;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200855 int i, ret = 0;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100856
Peter Ujfalusi72b745e2019-08-13 13:45:32 +0300857 mutex_lock_nested(&rtd->card->pcm_mutex, rtd->card->pcm_subclass);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100858
Kuninori Morimoto7cf3c5b2020-05-25 09:57:31 +0900859 ret = snd_soc_link_prepare(substream);
Kuninori Morimotoa5e6c102020-05-25 09:57:19 +0900860 if (ret < 0)
Kuninori Morimoto44c1a752020-01-22 09:44:44 +0900861 goto out;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100862
Kuninori Morimoto613fb502020-01-10 11:35:21 +0900863 for_each_rtd_components(rtd, i, component) {
Kuninori Morimoto6d537232019-07-26 13:50:13 +0900864 ret = snd_soc_component_prepare(component, substream);
Kuninori Morimotob8135862017-10-11 01:37:23 +0000865 if (ret < 0) {
866 dev_err(component->dev,
867 "ASoC: platform prepare error: %d\n", ret);
868 goto out;
869 }
870 }
871
Kuninori Morimotod108c7f2020-04-24 08:14:53 +0900872 ret = snd_soc_pcm_dai_prepare(substream);
873 if (ret < 0) {
874 dev_err(rtd->dev, "ASoC: DAI prepare error: %d\n", ret);
875 goto out;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100876 }
877
878 /* cancel any delayed stream shutdown that is pending */
879 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
Misael Lopez Cruz9bffb1f2012-12-13 12:23:05 -0600880 rtd->pop_wait) {
881 rtd->pop_wait = 0;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100882 cancel_delayed_work(&rtd->delayed_work);
883 }
884
Liam Girdwoodd9b09512012-03-07 16:32:59 +0000885 snd_soc_dapm_stream_event(rtd, substream->stream,
886 SND_SOC_DAPM_STREAM_START);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100887
Kuninori Morimotoc840f762020-03-16 15:37:14 +0900888 for_each_rtd_dais(rtd, i, dai)
889 snd_soc_dai_digital_mute(dai, 0, substream->stream);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100890
891out:
Peter Ujfalusi72b745e2019-08-13 13:45:32 +0300892 mutex_unlock(&rtd->card->pcm_mutex);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100893 return ret;
894}
895
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200896static void soc_pcm_codec_params_fixup(struct snd_pcm_hw_params *params,
897 unsigned int mask)
898{
899 struct snd_interval *interval;
900 int channels = hweight_long(mask);
901
902 interval = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
903 interval->min = channels;
904 interval->max = channels;
905}
906
Charles Keepax244e2932018-06-19 16:22:09 +0100907static int soc_pcm_components_hw_free(struct snd_pcm_substream *substream,
908 struct snd_soc_component *last)
909{
910 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Charles Keepax244e2932018-06-19 16:22:09 +0100911 struct snd_soc_component *component;
Kuninori Morimotoe82ebff2020-02-10 12:14:26 +0900912 int i, r, ret = 0;
Charles Keepax244e2932018-06-19 16:22:09 +0100913
Kuninori Morimoto613fb502020-01-10 11:35:21 +0900914 for_each_rtd_components(rtd, i, component) {
Charles Keepax244e2932018-06-19 16:22:09 +0100915 if (component == last)
916 break;
917
Kuninori Morimotoe82ebff2020-02-10 12:14:26 +0900918 r = snd_soc_component_hw_free(component, substream);
919 if (r < 0)
920 ret = r; /* use last ret */
Charles Keepax244e2932018-06-19 16:22:09 +0100921 }
922
Kuninori Morimotoeae71362019-07-26 13:50:24 +0900923 return ret;
Charles Keepax244e2932018-06-19 16:22:09 +0100924}
925
Liam Girdwoodddee6272011-06-09 14:45:53 +0100926/*
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.
930 */
931static int soc_pcm_hw_params(struct snd_pcm_substream *substream,
932 struct snd_pcm_hw_params *params)
933{
934 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Kuninori Morimotob8135862017-10-11 01:37:23 +0000935 struct snd_soc_component *component;
Shreyas NC19bdcc7a2020-02-25 21:39:13 +0800936 struct snd_soc_dai *cpu_dai;
Kuninori Morimoto0b7990e2018-09-03 02:12:56 +0000937 struct snd_soc_dai *codec_dai;
Charles Keepax244e2932018-06-19 16:22:09 +0100938 int i, ret = 0;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100939
Peter Ujfalusi72b745e2019-08-13 13:45:32 +0300940 mutex_lock_nested(&rtd->card->pcm_mutex, rtd->card->pcm_subclass);
Shengjiu Wang5cca5952019-11-12 18:46:42 +0800941
942 ret = soc_pcm_params_symmetry(substream, params);
943 if (ret)
944 goto out;
945
Kuninori Morimoto7cf3c5b2020-05-25 09:57:31 +0900946 ret = snd_soc_link_hw_params(substream, params);
Kuninori Morimotoa5e6c102020-05-25 09:57:19 +0900947 if (ret < 0)
Kuninori Morimotode9ad992020-01-22 09:44:48 +0900948 goto out;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100949
Kuninori Morimotoa4be4182020-03-09 13:08:04 +0900950 for_each_rtd_codec_dais(rtd, i, codec_dai) {
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200951 struct snd_pcm_hw_params codec_params;
952
Ricard Wanderlofcde79032015-08-24 14:16:51 +0200953 /*
954 * Skip CODECs which don't support the current stream type,
955 * the idea being that if a CODEC is not used for the currently
956 * set up transfer direction, it should not need to be
957 * configured, especially since the configuration used might
958 * not even be supported by that CODEC. There may be cases
959 * however where a CODEC needs to be set up although it is
960 * actually not being used for the transfer, e.g. if a
961 * capture-only CODEC is acting as an LRCLK and/or BCLK master
962 * for the DAI link including a playback-only CODEC.
963 * If this becomes necessary, we will have to augment the
964 * machine driver setup with information on how to act, so
965 * we can do the right thing here.
966 */
967 if (!snd_soc_dai_stream_valid(codec_dai, substream->stream))
968 continue;
969
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200970 /* copy params for each codec */
971 codec_params = *params;
972
973 /* fixup params based on TDM slot masks */
Rander Wang570f18b2019-03-08 16:38:57 +0800974 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
975 codec_dai->tx_mask)
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200976 soc_pcm_codec_params_fixup(&codec_params,
977 codec_dai->tx_mask);
Rander Wang570f18b2019-03-08 16:38:57 +0800978
979 if (substream->stream == SNDRV_PCM_STREAM_CAPTURE &&
980 codec_dai->rx_mask)
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200981 soc_pcm_codec_params_fixup(&codec_params,
982 codec_dai->rx_mask);
983
Kuninori Morimotoaa6166c2019-07-22 10:33:04 +0900984 ret = snd_soc_dai_hw_params(codec_dai, substream,
985 &codec_params);
Benoit Cousson93e69582014-07-08 23:19:38 +0200986 if(ret < 0)
Liam Girdwoodddee6272011-06-09 14:45:53 +0100987 goto codec_err;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200988
989 codec_dai->rate = params_rate(&codec_params);
990 codec_dai->channels = params_channels(&codec_params);
991 codec_dai->sample_bits = snd_pcm_format_physical_width(
992 params_format(&codec_params));
Charles Keepax078a85f2019-01-31 13:30:18 +0000993
994 snd_soc_dapm_update_dai(substream, &codec_params, codec_dai);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100995 }
996
Kuninori Morimotoa4be4182020-03-09 13:08:04 +0900997 for_each_rtd_cpu_dais(rtd, i, cpu_dai) {
Bard Liao0e9cf4c42020-02-25 21:39:17 +0800998 /*
999 * Skip CPUs which don't support the current stream
1000 * type. See soc_pcm_init_runtime_hw() for more details
1001 */
1002 if (!snd_soc_dai_stream_valid(cpu_dai, substream->stream))
1003 continue;
1004
Shreyas NC19bdcc7a2020-02-25 21:39:13 +08001005 ret = snd_soc_dai_hw_params(cpu_dai, substream, params);
1006 if (ret < 0)
1007 goto interface_err;
Liam Girdwoodddee6272011-06-09 14:45:53 +01001008
Shreyas NC19bdcc7a2020-02-25 21:39:13 +08001009 /* store the parameters for each DAI */
1010 cpu_dai->rate = params_rate(params);
1011 cpu_dai->channels = params_channels(params);
1012 cpu_dai->sample_bits =
1013 snd_pcm_format_physical_width(params_format(params));
Kuninori Morimotoca58221d2019-05-13 16:07:43 +09001014
Shreyas NC19bdcc7a2020-02-25 21:39:13 +08001015 snd_soc_dapm_update_dai(substream, params, cpu_dai);
1016 }
Kuninori Morimotoca58221d2019-05-13 16:07:43 +09001017
Kuninori Morimoto613fb502020-01-10 11:35:21 +09001018 for_each_rtd_components(rtd, i, component) {
Kuninori Morimoto245c5392019-07-26 13:50:19 +09001019 ret = snd_soc_component_hw_params(component, substream, params);
Charles Keepax244e2932018-06-19 16:22:09 +01001020 if (ret < 0) {
Kuninori Morimotob8135862017-10-11 01:37:23 +00001021 dev_err(component->dev,
1022 "ASoC: %s hw params failed: %d\n",
Charles Keepax244e2932018-06-19 16:22:09 +01001023 component->name, ret);
1024 goto component_err;
Kuninori Morimotob8135862017-10-11 01:37:23 +00001025 }
1026 }
Charles Keepax244e2932018-06-19 16:22:09 +01001027 component = NULL;
Kuninori Morimotob8135862017-10-11 01:37:23 +00001028
Liam Girdwoodddee6272011-06-09 14:45:53 +01001029out:
Peter Ujfalusi72b745e2019-08-13 13:45:32 +03001030 mutex_unlock(&rtd->card->pcm_mutex);
Liam Girdwoodddee6272011-06-09 14:45:53 +01001031 return ret;
1032
Kuninori Morimotob8135862017-10-11 01:37:23 +00001033component_err:
Charles Keepax244e2932018-06-19 16:22:09 +01001034 soc_pcm_components_hw_free(substream, component);
Kuninori Morimotob8135862017-10-11 01:37:23 +00001035
Shreyas NC19bdcc7a2020-02-25 21:39:13 +08001036 i = rtd->num_cpus;
Liam Girdwoodddee6272011-06-09 14:45:53 +01001037
1038interface_err:
Kuninori Morimotoa4be4182020-03-09 13:08:04 +09001039 for_each_rtd_cpu_dais_rollback(rtd, i, cpu_dai) {
Bard Liao0e9cf4c42020-02-25 21:39:17 +08001040 if (!snd_soc_dai_stream_valid(cpu_dai, substream->stream))
1041 continue;
1042
Shreyas NC19bdcc7a2020-02-25 21:39:13 +08001043 snd_soc_dai_hw_free(cpu_dai, substream);
1044 cpu_dai->rate = 0;
1045 }
1046
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001047 i = rtd->num_codecs;
Liam Girdwoodddee6272011-06-09 14:45:53 +01001048
1049codec_err:
Kuninori Morimotoa4be4182020-03-09 13:08:04 +09001050 for_each_rtd_codec_dais_rollback(rtd, i, codec_dai) {
Jerome Brunetf47b9ad2019-04-29 11:47:50 +02001051 if (!snd_soc_dai_stream_valid(codec_dai, substream->stream))
1052 continue;
1053
Kuninori Morimoto846faae2019-07-22 10:33:19 +09001054 snd_soc_dai_hw_free(codec_dai, substream);
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001055 codec_dai->rate = 0;
1056 }
1057
Kuninori Morimoto7cf3c5b2020-05-25 09:57:31 +09001058 snd_soc_link_hw_free(substream);
Liam Girdwoodddee6272011-06-09 14:45:53 +01001059
Peter Ujfalusi72b745e2019-08-13 13:45:32 +03001060 mutex_unlock(&rtd->card->pcm_mutex);
Liam Girdwoodddee6272011-06-09 14:45:53 +01001061 return ret;
1062}
1063
1064/*
1065 * Frees resources allocated by hw_params, can be called multiple times
1066 */
1067static int soc_pcm_hw_free(struct snd_pcm_substream *substream)
1068{
1069 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Kuninori Morimotoc840f762020-03-16 15:37:14 +09001070 struct snd_soc_dai *dai;
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001071 int i;
Liam Girdwoodddee6272011-06-09 14:45:53 +01001072
Peter Ujfalusi72b745e2019-08-13 13:45:32 +03001073 mutex_lock_nested(&rtd->card->pcm_mutex, rtd->card->pcm_subclass);
Liam Girdwoodddee6272011-06-09 14:45:53 +01001074
Nicolin Chend3383422013-11-20 18:37:09 +08001075 /* clear the corresponding DAIs parameters when going to be inactive */
Kuninori Morimotoc840f762020-03-16 15:37:14 +09001076 for_each_rtd_dais(rtd, i, dai) {
Kuninori Morimotob3dea622020-05-15 09:46:51 +09001077 int active = snd_soc_dai_stream_active(dai, substream->stream);
Nicolin Chend3383422013-11-20 18:37:09 +08001078
Kuninori Morimotob3dea622020-05-15 09:46:51 +09001079 if (snd_soc_dai_active(dai) == 1) {
Kuninori Morimotoc840f762020-03-16 15:37:14 +09001080 dai->rate = 0;
1081 dai->channels = 0;
1082 dai->sample_bits = 0;
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001083 }
Kuninori Morimoto0f6011f2020-02-17 17:28:15 +09001084
Kuninori Morimoto67ad8772020-03-06 10:10:04 +09001085 if (active == 1)
Kuninori Morimotoc840f762020-03-16 15:37:14 +09001086 snd_soc_dai_digital_mute(dai, 1, substream->stream);
Kuninori Morimotoa9ee3312020-03-06 10:10:17 +09001087 }
1088
Liam Girdwoodddee6272011-06-09 14:45:53 +01001089 /* free any machine hw params */
Kuninori Morimoto7cf3c5b2020-05-25 09:57:31 +09001090 snd_soc_link_hw_free(substream);
Liam Girdwoodddee6272011-06-09 14:45:53 +01001091
Kuninori Morimotob8135862017-10-11 01:37:23 +00001092 /* free any component resources */
Charles Keepax244e2932018-06-19 16:22:09 +01001093 soc_pcm_components_hw_free(substream, NULL);
Kuninori Morimotob8135862017-10-11 01:37:23 +00001094
Liam Girdwoodddee6272011-06-09 14:45:53 +01001095 /* now free hw params for the DAIs */
Kuninori Morimotoc840f762020-03-16 15:37:14 +09001096 for_each_rtd_dais(rtd, i, dai) {
1097 if (!snd_soc_dai_stream_valid(dai, substream->stream))
Jerome Brunetf47b9ad2019-04-29 11:47:50 +02001098 continue;
1099
Kuninori Morimotoc840f762020-03-16 15:37:14 +09001100 snd_soc_dai_hw_free(dai, substream);
Bard Liao0e9cf4c42020-02-25 21:39:17 +08001101 }
Liam Girdwoodddee6272011-06-09 14:45:53 +01001102
Peter Ujfalusi72b745e2019-08-13 13:45:32 +03001103 mutex_unlock(&rtd->card->pcm_mutex);
Liam Girdwoodddee6272011-06-09 14:45:53 +01001104 return 0;
1105}
1106
Peter Ujfalusi4378f1f2019-09-27 10:16:46 +03001107static int soc_pcm_trigger_start(struct snd_pcm_substream *substream, int cmd)
Liam Girdwoodddee6272011-06-09 14:45:53 +01001108{
1109 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Kuninori Morimotob8135862017-10-11 01:37:23 +00001110 struct snd_soc_component *component;
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001111 int i, ret;
Liam Girdwoodddee6272011-06-09 14:45:53 +01001112
Kuninori Morimoto7cf3c5b2020-05-25 09:57:31 +09001113 ret = snd_soc_link_trigger(substream, cmd);
Kuninori Morimotoad2bf9f2020-01-22 09:44:56 +09001114 if (ret < 0)
1115 return ret;
Liam Girdwoodddee6272011-06-09 14:45:53 +01001116
Kuninori Morimoto613fb502020-01-10 11:35:21 +09001117 for_each_rtd_components(rtd, i, component) {
Kuninori Morimoto5693d502019-07-26 13:50:29 +09001118 ret = snd_soc_component_trigger(component, substream, cmd);
Kuninori Morimotob8135862017-10-11 01:37:23 +00001119 if (ret < 0)
1120 return ret;
1121 }
1122
Kuninori Morimoto42f24722020-04-24 08:15:04 +09001123 return snd_soc_pcm_dai_trigger(substream, cmd);
Peter Ujfalusi4378f1f2019-09-27 10:16:46 +03001124}
1125
1126static int soc_pcm_trigger_stop(struct snd_pcm_substream *substream, int cmd)
1127{
1128 struct snd_soc_pcm_runtime *rtd = substream->private_data;
1129 struct snd_soc_component *component;
Peter Ujfalusi4378f1f2019-09-27 10:16:46 +03001130 int i, ret;
1131
Kuninori Morimoto42f24722020-04-24 08:15:04 +09001132 ret = snd_soc_pcm_dai_trigger(substream, cmd);
1133 if (ret < 0)
1134 return ret;
Peter Ujfalusi4378f1f2019-09-27 10:16:46 +03001135
Kuninori Morimoto613fb502020-01-10 11:35:21 +09001136 for_each_rtd_components(rtd, i, component) {
Peter Ujfalusi4378f1f2019-09-27 10:16:46 +03001137 ret = snd_soc_component_trigger(component, substream, cmd);
1138 if (ret < 0)
1139 return ret;
1140 }
1141
Kuninori Morimoto7cf3c5b2020-05-25 09:57:31 +09001142 ret = snd_soc_link_trigger(substream, cmd);
Kuninori Morimotoad2bf9f2020-01-22 09:44:56 +09001143 if (ret < 0)
1144 return ret;
Jarkko Nikula4792b0d2014-04-28 14:17:52 +02001145
Liam Girdwoodddee6272011-06-09 14:45:53 +01001146 return 0;
1147}
1148
Peter Ujfalusi4378f1f2019-09-27 10:16:46 +03001149static int soc_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
1150{
1151 int ret;
1152
1153 switch (cmd) {
1154 case SNDRV_PCM_TRIGGER_START:
1155 case SNDRV_PCM_TRIGGER_RESUME:
1156 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
1157 ret = soc_pcm_trigger_start(substream, cmd);
1158 break;
1159 case SNDRV_PCM_TRIGGER_STOP:
1160 case SNDRV_PCM_TRIGGER_SUSPEND:
1161 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
1162 ret = soc_pcm_trigger_stop(substream, cmd);
1163 break;
1164 default:
1165 return -EINVAL;
1166 }
1167
1168 return ret;
1169}
1170
Liam Girdwoodddee6272011-06-09 14:45:53 +01001171/*
1172 * soc level wrapper for pointer callback
Charles Keepaxef050be2018-04-24 16:39:02 +01001173 * If cpu_dai, codec_dai, component driver has the delay callback, then
Liam Girdwoodddee6272011-06-09 14:45:53 +01001174 * the runtime->delay will be updated accordingly.
1175 */
1176static snd_pcm_uframes_t soc_pcm_pointer(struct snd_pcm_substream *substream)
1177{
1178 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Shreyas NC19bdcc7a2020-02-25 21:39:13 +08001179 struct snd_soc_dai *cpu_dai;
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001180 struct snd_soc_dai *codec_dai;
Liam Girdwoodddee6272011-06-09 14:45:53 +01001181 struct snd_pcm_runtime *runtime = substream->runtime;
1182 snd_pcm_uframes_t offset = 0;
1183 snd_pcm_sframes_t delay = 0;
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001184 snd_pcm_sframes_t codec_delay = 0;
Shreyas NC19bdcc7a2020-02-25 21:39:13 +08001185 snd_pcm_sframes_t cpu_delay = 0;
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001186 int i;
Liam Girdwoodddee6272011-06-09 14:45:53 +01001187
Akshu Agrawal9fb4c2bf2018-08-01 15:37:33 +05301188 /* clearing the previous total delay */
1189 runtime->delay = 0;
1190
Kuninori Morimoto0035e252019-07-26 13:51:47 +09001191 offset = snd_soc_pcm_component_pointer(substream);
Kuninori Morimotob8135862017-10-11 01:37:23 +00001192
Akshu Agrawal9fb4c2bf2018-08-01 15:37:33 +05301193 /* base delay if assigned in pointer callback */
1194 delay = runtime->delay;
Kuninori Morimotob8135862017-10-11 01:37:23 +00001195
Kuninori Morimotoa4be4182020-03-09 13:08:04 +09001196 for_each_rtd_cpu_dais(rtd, i, cpu_dai) {
Shreyas NC19bdcc7a2020-02-25 21:39:13 +08001197 cpu_delay = max(cpu_delay,
1198 snd_soc_dai_delay(cpu_dai, substream));
1199 }
1200 delay += cpu_delay;
Liam Girdwoodddee6272011-06-09 14:45:53 +01001201
Kuninori Morimotoa4be4182020-03-09 13:08:04 +09001202 for_each_rtd_codec_dais(rtd, i, codec_dai) {
Kuninori Morimoto1dea80d2019-07-22 10:34:09 +09001203 codec_delay = max(codec_delay,
1204 snd_soc_dai_delay(codec_dai, substream));
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001205 }
1206 delay += codec_delay;
Liam Girdwoodddee6272011-06-09 14:45:53 +01001207
Liam Girdwoodddee6272011-06-09 14:45:53 +01001208 runtime->delay = delay;
1209
1210 return offset;
1211}
1212
Liam Girdwood01d75842012-04-25 12:12:49 +01001213/* connect a FE and BE */
1214static int dpcm_be_connect(struct snd_soc_pcm_runtime *fe,
1215 struct snd_soc_pcm_runtime *be, int stream)
1216{
1217 struct snd_soc_dpcm *dpcm;
KaiChieh Chuanga9764862019-03-08 13:05:53 +08001218 unsigned long flags;
Liam Girdwood01d75842012-04-25 12:12:49 +01001219
1220 /* only add new dpcms */
Kuninori Morimoto8d6258a2018-09-18 01:31:09 +00001221 for_each_dpcm_be(fe, stream, dpcm) {
Liam Girdwood01d75842012-04-25 12:12:49 +01001222 if (dpcm->be == be && dpcm->fe == fe)
1223 return 0;
1224 }
1225
1226 dpcm = kzalloc(sizeof(struct snd_soc_dpcm), GFP_KERNEL);
1227 if (!dpcm)
1228 return -ENOMEM;
1229
1230 dpcm->be = be;
1231 dpcm->fe = fe;
1232 be->dpcm[stream].runtime = fe->dpcm[stream].runtime;
1233 dpcm->state = SND_SOC_DPCM_LINK_STATE_NEW;
KaiChieh Chuanga9764862019-03-08 13:05:53 +08001234 spin_lock_irqsave(&fe->card->dpcm_lock, flags);
Liam Girdwood01d75842012-04-25 12:12:49 +01001235 list_add(&dpcm->list_be, &fe->dpcm[stream].be_clients);
1236 list_add(&dpcm->list_fe, &be->dpcm[stream].fe_clients);
KaiChieh Chuanga9764862019-03-08 13:05:53 +08001237 spin_unlock_irqrestore(&fe->card->dpcm_lock, flags);
Liam Girdwood01d75842012-04-25 12:12:49 +01001238
Jarkko Nikula7cc302d2013-09-30 17:08:15 +03001239 dev_dbg(fe->dev, "connected new DPCM %s path %s %s %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001240 stream ? "capture" : "playback", fe->dai_link->name,
1241 stream ? "<-" : "->", be->dai_link->name);
1242
Kuninori Morimoto154dae82020-02-19 15:57:06 +09001243 dpcm_create_debugfs_state(dpcm, stream);
1244
Liam Girdwood01d75842012-04-25 12:12:49 +01001245 return 1;
1246}
1247
1248/* reparent a BE onto another FE */
1249static void dpcm_be_reparent(struct snd_soc_pcm_runtime *fe,
1250 struct snd_soc_pcm_runtime *be, int stream)
1251{
1252 struct snd_soc_dpcm *dpcm;
1253 struct snd_pcm_substream *fe_substream, *be_substream;
1254
1255 /* reparent if BE is connected to other FEs */
1256 if (!be->dpcm[stream].users)
1257 return;
1258
1259 be_substream = snd_soc_dpcm_get_substream(be, stream);
1260
Kuninori Morimotod2e24d62018-09-18 01:30:54 +00001261 for_each_dpcm_fe(be, stream, dpcm) {
Liam Girdwood01d75842012-04-25 12:12:49 +01001262 if (dpcm->fe == fe)
1263 continue;
1264
Jarkko Nikula7cc302d2013-09-30 17:08:15 +03001265 dev_dbg(fe->dev, "reparent %s path %s %s %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001266 stream ? "capture" : "playback",
1267 dpcm->fe->dai_link->name,
1268 stream ? "<-" : "->", dpcm->be->dai_link->name);
1269
1270 fe_substream = snd_soc_dpcm_get_substream(dpcm->fe, stream);
1271 be_substream->runtime = fe_substream->runtime;
1272 break;
1273 }
1274}
1275
1276/* disconnect a BE and FE */
Liam Girdwood23607022014-01-17 17:03:55 +00001277void dpcm_be_disconnect(struct snd_soc_pcm_runtime *fe, int stream)
Liam Girdwood01d75842012-04-25 12:12:49 +01001278{
1279 struct snd_soc_dpcm *dpcm, *d;
KaiChieh Chuanga9764862019-03-08 13:05:53 +08001280 unsigned long flags;
Liam Girdwood01d75842012-04-25 12:12:49 +01001281
Kuninori Morimoto8d6258a2018-09-18 01:31:09 +00001282 for_each_dpcm_be_safe(fe, stream, dpcm, d) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00001283 dev_dbg(fe->dev, "ASoC: BE %s disconnect check for %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001284 stream ? "capture" : "playback",
1285 dpcm->be->dai_link->name);
1286
1287 if (dpcm->state != SND_SOC_DPCM_LINK_STATE_FREE)
1288 continue;
1289
Jarkko Nikula7cc302d2013-09-30 17:08:15 +03001290 dev_dbg(fe->dev, "freed DSP %s path %s %s %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001291 stream ? "capture" : "playback", fe->dai_link->name,
1292 stream ? "<-" : "->", dpcm->be->dai_link->name);
1293
1294 /* BEs still alive need new FE */
1295 dpcm_be_reparent(fe, dpcm->be, stream);
1296
Kuninori Morimoto154dae82020-02-19 15:57:06 +09001297 dpcm_remove_debugfs_state(dpcm);
1298
KaiChieh Chuanga9764862019-03-08 13:05:53 +08001299 spin_lock_irqsave(&fe->card->dpcm_lock, flags);
Liam Girdwood01d75842012-04-25 12:12:49 +01001300 list_del(&dpcm->list_be);
1301 list_del(&dpcm->list_fe);
KaiChieh Chuanga9764862019-03-08 13:05:53 +08001302 spin_unlock_irqrestore(&fe->card->dpcm_lock, flags);
Liam Girdwood01d75842012-04-25 12:12:49 +01001303 kfree(dpcm);
1304 }
1305}
1306
1307/* get BE for DAI widget and stream */
1308static struct snd_soc_pcm_runtime *dpcm_get_be(struct snd_soc_card *card,
1309 struct snd_soc_dapm_widget *widget, int stream)
1310{
1311 struct snd_soc_pcm_runtime *be;
Kuninori Morimoto93597fa2020-02-17 17:27:43 +09001312 struct snd_soc_dapm_widget *w;
Kuninori Morimoto7afecb32018-09-18 01:28:04 +00001313 struct snd_soc_dai *dai;
Mengdong Lin1a497982015-11-18 02:34:11 -05001314 int i;
Liam Girdwood01d75842012-04-25 12:12:49 +01001315
Liam Girdwood3c146462018-03-14 20:43:51 +00001316 dev_dbg(card->dev, "ASoC: find BE for widget %s\n", widget->name);
1317
Kuninori Morimoto93597fa2020-02-17 17:27:43 +09001318 for_each_card_rtds(card, be) {
Liam Girdwood01d75842012-04-25 12:12:49 +01001319
Kuninori Morimoto93597fa2020-02-17 17:27:43 +09001320 if (!be->dai_link->no_pcm)
1321 continue;
Liam Girdwood35ea0652012-06-05 19:26:59 +01001322
Kuninori Morimotoc840f762020-03-16 15:37:14 +09001323 for_each_rtd_dais(be, i, dai) {
Shreyas NC19bdcc7a2020-02-25 21:39:13 +08001324 w = snd_soc_dai_get_widget(dai, stream);
Liam Girdwood3c146462018-03-14 20:43:51 +00001325
Shreyas NC19bdcc7a2020-02-25 21:39:13 +08001326 dev_dbg(card->dev, "ASoC: try BE : %s\n",
1327 w ? w->name : "(not set)");
Kuninori Morimoto93597fa2020-02-17 17:27:43 +09001328
Shreyas NC19bdcc7a2020-02-25 21:39:13 +08001329 if (w == widget)
1330 return be;
1331 }
Liam Girdwood01d75842012-04-25 12:12:49 +01001332 }
1333
Jerome Brunet9d6ee362020-02-19 12:50:48 +01001334 /* Widget provided is not a BE */
Liam Girdwood01d75842012-04-25 12:12:49 +01001335 return NULL;
1336}
1337
Liam Girdwood01d75842012-04-25 12:12:49 +01001338static int widget_in_list(struct snd_soc_dapm_widget_list *list,
1339 struct snd_soc_dapm_widget *widget)
1340{
Kuninori Morimoto09e88f82020-02-10 12:14:22 +09001341 struct snd_soc_dapm_widget *w;
Liam Girdwood01d75842012-04-25 12:12:49 +01001342 int i;
1343
Kuninori Morimoto09e88f82020-02-10 12:14:22 +09001344 for_each_dapm_widgets(list, i, w)
1345 if (widget == w)
Liam Girdwood01d75842012-04-25 12:12:49 +01001346 return 1;
Liam Girdwood01d75842012-04-25 12:12:49 +01001347
1348 return 0;
1349}
1350
Piotr Stankiewicz5fdd0222016-05-13 17:03:56 +01001351static bool dpcm_end_walk_at_be(struct snd_soc_dapm_widget *widget,
1352 enum snd_soc_dapm_direction dir)
1353{
1354 struct snd_soc_card *card = widget->dapm->card;
1355 struct snd_soc_pcm_runtime *rtd;
Kuninori Morimotoc2cd8212020-02-17 17:27:48 +09001356 int stream;
Piotr Stankiewicz5fdd0222016-05-13 17:03:56 +01001357
Kuninori Morimotoc2cd8212020-02-17 17:27:48 +09001358 /* adjust dir to stream */
1359 if (dir == SND_SOC_DAPM_DIR_OUT)
1360 stream = SNDRV_PCM_STREAM_PLAYBACK;
1361 else
1362 stream = SNDRV_PCM_STREAM_CAPTURE;
Piotr Stankiewicz5fdd0222016-05-13 17:03:56 +01001363
Kuninori Morimoto027a4832020-02-17 17:27:53 +09001364 rtd = dpcm_get_be(card, widget, stream);
1365 if (rtd)
1366 return true;
Piotr Stankiewicz5fdd0222016-05-13 17:03:56 +01001367
1368 return false;
1369}
1370
Liam Girdwood23607022014-01-17 17:03:55 +00001371int dpcm_path_get(struct snd_soc_pcm_runtime *fe,
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001372 int stream, struct snd_soc_dapm_widget_list **list)
Liam Girdwood01d75842012-04-25 12:12:49 +01001373{
Kuninori Morimotoc2233a22020-03-30 10:47:37 +09001374 struct snd_soc_dai *cpu_dai = asoc_rtd_to_cpu(fe, 0);
Liam Girdwood01d75842012-04-25 12:12:49 +01001375 int paths;
1376
Bard Liao6e1276a2020-02-25 21:39:16 +08001377 if (fe->num_cpus > 1) {
1378 dev_err(fe->dev,
1379 "%s doesn't support Multi CPU yet\n", __func__);
1380 return -EINVAL;
1381 }
1382
Liam Girdwood01d75842012-04-25 12:12:49 +01001383 /* get number of valid DAI paths and their widgets */
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001384 paths = snd_soc_dapm_dai_get_connected_widgets(cpu_dai, stream, list,
Piotr Stankiewicz5fdd0222016-05-13 17:03:56 +01001385 dpcm_end_walk_at_be);
Liam Girdwood01d75842012-04-25 12:12:49 +01001386
Liam Girdwood103d84a2012-11-19 14:39:15 +00001387 dev_dbg(fe->dev, "ASoC: found %d audio %s paths\n", paths,
Liam Girdwood01d75842012-04-25 12:12:49 +01001388 stream ? "capture" : "playback");
1389
Liam Girdwood01d75842012-04-25 12:12:49 +01001390 return paths;
1391}
1392
Kuninori Morimoto52645e332020-02-19 15:56:52 +09001393void dpcm_path_put(struct snd_soc_dapm_widget_list **list)
1394{
1395 snd_soc_dapm_dai_free_widgets(list);
1396}
1397
Guennadi Liakhovetski8cce6562020-03-12 10:52:13 +01001398static bool dpcm_be_is_active(struct snd_soc_dpcm *dpcm, int stream,
1399 struct snd_soc_dapm_widget_list *list)
Liam Girdwood01d75842012-04-25 12:12:49 +01001400{
Liam Girdwood01d75842012-04-25 12:12:49 +01001401 struct snd_soc_dapm_widget *widget;
Kuninori Morimoto7afecb32018-09-18 01:28:04 +00001402 struct snd_soc_dai *dai;
Guennadi Liakhovetski8cce6562020-03-12 10:52:13 +01001403 unsigned int i;
1404
Kuninori Morimotoc840f762020-03-16 15:37:14 +09001405 /* is there a valid DAI widget for this BE */
1406 for_each_rtd_dais(dpcm->be, i, dai) {
Guennadi Liakhovetski8cce6562020-03-12 10:52:13 +01001407 widget = snd_soc_dai_get_widget(dai, stream);
1408
1409 /*
Kuninori Morimotoc840f762020-03-16 15:37:14 +09001410 * The BE is pruned only if none of the dai
Guennadi Liakhovetski8cce6562020-03-12 10:52:13 +01001411 * widgets are in the active list.
1412 */
1413 if (widget && widget_in_list(list, widget))
1414 return true;
1415 }
1416
Guennadi Liakhovetski8cce6562020-03-12 10:52:13 +01001417 return false;
1418}
1419
1420static int dpcm_prune_paths(struct snd_soc_pcm_runtime *fe, int stream,
1421 struct snd_soc_dapm_widget_list **list_)
1422{
1423 struct snd_soc_dpcm *dpcm;
Liam Girdwood01d75842012-04-25 12:12:49 +01001424 int prune = 0;
1425
1426 /* Destroy any old FE <--> BE connections */
Kuninori Morimoto8d6258a2018-09-18 01:31:09 +00001427 for_each_dpcm_be(fe, stream, dpcm) {
Guennadi Liakhovetski8cce6562020-03-12 10:52:13 +01001428 if (dpcm_be_is_active(dpcm, stream, *list_))
Kuninori Morimotobed646d2019-10-15 12:59:38 +09001429 continue;
Liam Girdwood01d75842012-04-25 12:12:49 +01001430
Liam Girdwood103d84a2012-11-19 14:39:15 +00001431 dev_dbg(fe->dev, "ASoC: pruning %s BE %s for %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001432 stream ? "capture" : "playback",
1433 dpcm->be->dai_link->name, fe->dai_link->name);
1434 dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE;
1435 dpcm->be->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_BE;
1436 prune++;
1437 }
1438
Liam Girdwood103d84a2012-11-19 14:39:15 +00001439 dev_dbg(fe->dev, "ASoC: found %d old BE paths for pruning\n", prune);
Liam Girdwood01d75842012-04-25 12:12:49 +01001440 return prune;
1441}
1442
1443static int dpcm_add_paths(struct snd_soc_pcm_runtime *fe, int stream,
1444 struct snd_soc_dapm_widget_list **list_)
1445{
1446 struct snd_soc_card *card = fe->card;
1447 struct snd_soc_dapm_widget_list *list = *list_;
1448 struct snd_soc_pcm_runtime *be;
Kuninori Morimoto09e88f82020-02-10 12:14:22 +09001449 struct snd_soc_dapm_widget *widget;
Liam Girdwood01d75842012-04-25 12:12:49 +01001450 int i, new = 0, err;
1451
1452 /* Create any new FE <--> BE connections */
Kuninori Morimoto09e88f82020-02-10 12:14:22 +09001453 for_each_dapm_widgets(list, i, widget) {
Liam Girdwood01d75842012-04-25 12:12:49 +01001454
Kuninori Morimoto09e88f82020-02-10 12:14:22 +09001455 switch (widget->id) {
Mark Brown46162742013-06-05 19:36:11 +01001456 case snd_soc_dapm_dai_in:
Koro Chenc5b85402015-07-06 10:02:10 +08001457 if (stream != SNDRV_PCM_STREAM_PLAYBACK)
1458 continue;
1459 break;
Mark Brown46162742013-06-05 19:36:11 +01001460 case snd_soc_dapm_dai_out:
Koro Chenc5b85402015-07-06 10:02:10 +08001461 if (stream != SNDRV_PCM_STREAM_CAPTURE)
1462 continue;
Mark Brown46162742013-06-05 19:36:11 +01001463 break;
1464 default:
Liam Girdwood01d75842012-04-25 12:12:49 +01001465 continue;
Mark Brown46162742013-06-05 19:36:11 +01001466 }
Liam Girdwood01d75842012-04-25 12:12:49 +01001467
1468 /* is there a valid BE rtd for this widget */
Kuninori Morimoto09e88f82020-02-10 12:14:22 +09001469 be = dpcm_get_be(card, widget, stream);
Liam Girdwood01d75842012-04-25 12:12:49 +01001470 if (!be) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00001471 dev_err(fe->dev, "ASoC: no BE found for %s\n",
Kuninori Morimoto09e88f82020-02-10 12:14:22 +09001472 widget->name);
Liam Girdwood01d75842012-04-25 12:12:49 +01001473 continue;
1474 }
1475
Liam Girdwood01d75842012-04-25 12:12:49 +01001476 /* don't connect if FE is not running */
Liam Girdwood23607022014-01-17 17:03:55 +00001477 if (!fe->dpcm[stream].runtime && !fe->fe_compr)
Liam Girdwood01d75842012-04-25 12:12:49 +01001478 continue;
1479
1480 /* newly connected FE and BE */
1481 err = dpcm_be_connect(fe, be, stream);
1482 if (err < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00001483 dev_err(fe->dev, "ASoC: can't connect %s\n",
Kuninori Morimoto09e88f82020-02-10 12:14:22 +09001484 widget->name);
Liam Girdwood01d75842012-04-25 12:12:49 +01001485 break;
1486 } else if (err == 0) /* already connected */
1487 continue;
1488
1489 /* new */
1490 be->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_BE;
1491 new++;
1492 }
1493
Liam Girdwood103d84a2012-11-19 14:39:15 +00001494 dev_dbg(fe->dev, "ASoC: found %d new BE paths\n", new);
Liam Girdwood01d75842012-04-25 12:12:49 +01001495 return new;
1496}
1497
1498/*
1499 * Find the corresponding BE DAIs that source or sink audio to this
1500 * FE substream.
1501 */
Liam Girdwood23607022014-01-17 17:03:55 +00001502int dpcm_process_paths(struct snd_soc_pcm_runtime *fe,
Liam Girdwood01d75842012-04-25 12:12:49 +01001503 int stream, struct snd_soc_dapm_widget_list **list, int new)
1504{
1505 if (new)
1506 return dpcm_add_paths(fe, stream, list);
1507 else
1508 return dpcm_prune_paths(fe, stream, list);
1509}
1510
Liam Girdwood23607022014-01-17 17:03:55 +00001511void dpcm_clear_pending_state(struct snd_soc_pcm_runtime *fe, int stream)
Liam Girdwood01d75842012-04-25 12:12:49 +01001512{
1513 struct snd_soc_dpcm *dpcm;
KaiChieh Chuanga9764862019-03-08 13:05:53 +08001514 unsigned long flags;
Liam Girdwood01d75842012-04-25 12:12:49 +01001515
KaiChieh Chuanga9764862019-03-08 13:05:53 +08001516 spin_lock_irqsave(&fe->card->dpcm_lock, flags);
Kuninori Morimoto8d6258a2018-09-18 01:31:09 +00001517 for_each_dpcm_be(fe, stream, dpcm)
Liam Girdwood01d75842012-04-25 12:12:49 +01001518 dpcm->be->dpcm[stream].runtime_update =
1519 SND_SOC_DPCM_UPDATE_NO;
KaiChieh Chuanga9764862019-03-08 13:05:53 +08001520 spin_unlock_irqrestore(&fe->card->dpcm_lock, flags);
Liam Girdwood01d75842012-04-25 12:12:49 +01001521}
1522
1523static void dpcm_be_dai_startup_unwind(struct snd_soc_pcm_runtime *fe,
1524 int stream)
1525{
1526 struct snd_soc_dpcm *dpcm;
1527
1528 /* disable any enabled and non active backends */
Kuninori Morimoto8d6258a2018-09-18 01:31:09 +00001529 for_each_dpcm_be(fe, stream, dpcm) {
Liam Girdwood01d75842012-04-25 12:12:49 +01001530
1531 struct snd_soc_pcm_runtime *be = dpcm->be;
1532 struct snd_pcm_substream *be_substream =
1533 snd_soc_dpcm_get_substream(be, stream);
1534
1535 if (be->dpcm[stream].users == 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00001536 dev_err(be->dev, "ASoC: no users %s at close - state %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001537 stream ? "capture" : "playback",
1538 be->dpcm[stream].state);
1539
1540 if (--be->dpcm[stream].users != 0)
1541 continue;
1542
1543 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN)
1544 continue;
1545
1546 soc_pcm_close(be_substream);
1547 be_substream->runtime = NULL;
1548 be->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
1549 }
1550}
1551
Liam Girdwood23607022014-01-17 17:03:55 +00001552int dpcm_be_dai_startup(struct snd_soc_pcm_runtime *fe, int stream)
Liam Girdwood01d75842012-04-25 12:12:49 +01001553{
1554 struct snd_soc_dpcm *dpcm;
1555 int err, count = 0;
1556
1557 /* only startup BE DAIs that are either sinks or sources to this FE DAI */
Kuninori Morimoto8d6258a2018-09-18 01:31:09 +00001558 for_each_dpcm_be(fe, stream, dpcm) {
Liam Girdwood01d75842012-04-25 12:12:49 +01001559
1560 struct snd_soc_pcm_runtime *be = dpcm->be;
1561 struct snd_pcm_substream *be_substream =
1562 snd_soc_dpcm_get_substream(be, stream);
1563
Russell King - ARM Linux2062b4c2013-10-31 15:09:20 +00001564 if (!be_substream) {
1565 dev_err(be->dev, "ASoC: no backend %s stream\n",
1566 stream ? "capture" : "playback");
1567 continue;
1568 }
1569
Liam Girdwood01d75842012-04-25 12:12:49 +01001570 /* is this op for this BE ? */
1571 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1572 continue;
1573
1574 /* first time the dpcm is open ? */
1575 if (be->dpcm[stream].users == DPCM_MAX_BE_USERS)
Liam Girdwood103d84a2012-11-19 14:39:15 +00001576 dev_err(be->dev, "ASoC: too many users %s at open %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001577 stream ? "capture" : "playback",
1578 be->dpcm[stream].state);
1579
1580 if (be->dpcm[stream].users++ != 0)
1581 continue;
1582
1583 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_NEW) &&
1584 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_CLOSE))
1585 continue;
1586
Russell King - ARM Linux2062b4c2013-10-31 15:09:20 +00001587 dev_dbg(be->dev, "ASoC: open %s BE %s\n",
1588 stream ? "capture" : "playback", be->dai_link->name);
Liam Girdwood01d75842012-04-25 12:12:49 +01001589
1590 be_substream->runtime = be->dpcm[stream].runtime;
1591 err = soc_pcm_open(be_substream);
1592 if (err < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00001593 dev_err(be->dev, "ASoC: BE open failed %d\n", err);
Liam Girdwood01d75842012-04-25 12:12:49 +01001594 be->dpcm[stream].users--;
1595 if (be->dpcm[stream].users < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00001596 dev_err(be->dev, "ASoC: no users %s at unwind %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001597 stream ? "capture" : "playback",
1598 be->dpcm[stream].state);
1599
1600 be->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
1601 goto unwind;
1602 }
1603
1604 be->dpcm[stream].state = SND_SOC_DPCM_STATE_OPEN;
1605 count++;
1606 }
1607
1608 return count;
1609
1610unwind:
1611 /* disable any enabled and non active backends */
Kuninori Morimoto8d6258a2018-09-18 01:31:09 +00001612 for_each_dpcm_be_rollback(fe, stream, dpcm) {
Liam Girdwood01d75842012-04-25 12:12:49 +01001613 struct snd_soc_pcm_runtime *be = dpcm->be;
1614 struct snd_pcm_substream *be_substream =
1615 snd_soc_dpcm_get_substream(be, stream);
1616
1617 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1618 continue;
1619
1620 if (be->dpcm[stream].users == 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00001621 dev_err(be->dev, "ASoC: no users %s at close %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001622 stream ? "capture" : "playback",
1623 be->dpcm[stream].state);
1624
1625 if (--be->dpcm[stream].users != 0)
1626 continue;
1627
1628 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN)
1629 continue;
1630
1631 soc_pcm_close(be_substream);
1632 be_substream->runtime = NULL;
1633 be->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
1634 }
1635
1636 return err;
1637}
1638
Lars-Peter Clausen08ae9b42014-01-06 14:19:06 +01001639static void dpcm_init_runtime_hw(struct snd_pcm_runtime *runtime,
Jerome Brunet435ffb72018-07-05 12:13:48 +02001640 struct snd_soc_pcm_stream *stream)
Lars-Peter Clausen08ae9b42014-01-06 14:19:06 +01001641{
1642 runtime->hw.rate_min = stream->rate_min;
Charles Keepaxe33ffbd9c2018-08-27 14:26:47 +01001643 runtime->hw.rate_max = min_not_zero(stream->rate_max, UINT_MAX);
Lars-Peter Clausen08ae9b42014-01-06 14:19:06 +01001644 runtime->hw.channels_min = stream->channels_min;
1645 runtime->hw.channels_max = stream->channels_max;
Lars-Peter Clausen002220a2014-01-06 14:19:07 +01001646 if (runtime->hw.formats)
Jerome Brunet435ffb72018-07-05 12:13:48 +02001647 runtime->hw.formats &= stream->formats;
Lars-Peter Clausen002220a2014-01-06 14:19:07 +01001648 else
Jerome Brunet435ffb72018-07-05 12:13:48 +02001649 runtime->hw.formats = stream->formats;
Lars-Peter Clausen08ae9b42014-01-06 14:19:06 +01001650 runtime->hw.rates = stream->rates;
1651}
1652
Jerome Brunet435ffb72018-07-05 12:13:48 +02001653static void dpcm_runtime_merge_format(struct snd_pcm_substream *substream,
1654 u64 *formats)
Kuninori Morimotob073ed42015-05-12 02:03:33 +00001655{
1656 struct snd_soc_pcm_runtime *fe = substream->private_data;
1657 struct snd_soc_dpcm *dpcm;
Kuninori Morimoto7afecb32018-09-18 01:28:04 +00001658 struct snd_soc_dai *dai;
Kuninori Morimotob073ed42015-05-12 02:03:33 +00001659 int stream = substream->stream;
1660
1661 if (!fe->dai_link->dpcm_merged_format)
Jerome Brunet435ffb72018-07-05 12:13:48 +02001662 return;
Kuninori Morimotob073ed42015-05-12 02:03:33 +00001663
1664 /*
1665 * It returns merged BE codec format
1666 * if FE want to use it (= dpcm_merged_format)
1667 */
1668
Kuninori Morimoto8d6258a2018-09-18 01:31:09 +00001669 for_each_dpcm_be(fe, stream, dpcm) {
Kuninori Morimotob073ed42015-05-12 02:03:33 +00001670 struct snd_soc_pcm_runtime *be = dpcm->be;
Kuninori Morimotob073ed42015-05-12 02:03:33 +00001671 struct snd_soc_pcm_stream *codec_stream;
1672 int i;
1673
Kuninori Morimotoa4be4182020-03-09 13:08:04 +09001674 for_each_rtd_codec_dais(be, i, dai) {
Jerome Brunet4febced2018-06-27 17:36:38 +02001675 /*
1676 * Skip CODECs which don't support the current stream
1677 * type. See soc_pcm_init_runtime_hw() for more details
1678 */
Kuninori Morimoto7afecb32018-09-18 01:28:04 +00001679 if (!snd_soc_dai_stream_valid(dai, stream))
Jerome Brunet4febced2018-06-27 17:36:38 +02001680 continue;
1681
Kuninori Morimotoacf253c2020-02-19 15:56:30 +09001682 codec_stream = snd_soc_dai_get_pcm_stream(dai, stream);
Kuninori Morimotob073ed42015-05-12 02:03:33 +00001683
Jerome Brunet435ffb72018-07-05 12:13:48 +02001684 *formats &= codec_stream->formats;
Kuninori Morimotob073ed42015-05-12 02:03:33 +00001685 }
1686 }
Kuninori Morimotob073ed42015-05-12 02:03:33 +00001687}
1688
Jerome Brunet435ffb72018-07-05 12:13:48 +02001689static void dpcm_runtime_merge_chan(struct snd_pcm_substream *substream,
1690 unsigned int *channels_min,
1691 unsigned int *channels_max)
Jiada Wangf4c277b2018-06-20 18:25:20 +09001692{
1693 struct snd_soc_pcm_runtime *fe = substream->private_data;
1694 struct snd_soc_dpcm *dpcm;
1695 int stream = substream->stream;
1696
1697 if (!fe->dai_link->dpcm_merged_chan)
1698 return;
1699
Jiada Wangf4c277b2018-06-20 18:25:20 +09001700 /*
1701 * It returns merged BE codec channel;
1702 * if FE want to use it (= dpcm_merged_chan)
1703 */
1704
Kuninori Morimoto8d6258a2018-09-18 01:31:09 +00001705 for_each_dpcm_be(fe, stream, dpcm) {
Jiada Wangf4c277b2018-06-20 18:25:20 +09001706 struct snd_soc_pcm_runtime *be = dpcm->be;
Jiada Wangf4c277b2018-06-20 18:25:20 +09001707 struct snd_soc_pcm_stream *codec_stream;
Jerome Brunet4f2bd182018-06-27 11:48:18 +02001708 struct snd_soc_pcm_stream *cpu_stream;
Shreyas NC19bdcc7a2020-02-25 21:39:13 +08001709 struct snd_soc_dai *dai;
1710 int i;
Jiada Wangf4c277b2018-06-20 18:25:20 +09001711
Kuninori Morimotoa4be4182020-03-09 13:08:04 +09001712 for_each_rtd_cpu_dais(be, i, dai) {
Bard Liao0e9cf4c42020-02-25 21:39:17 +08001713 /*
1714 * Skip CPUs which don't support the current stream
1715 * type. See soc_pcm_init_runtime_hw() for more details
1716 */
1717 if (!snd_soc_dai_stream_valid(dai, stream))
1718 continue;
1719
Shreyas NC19bdcc7a2020-02-25 21:39:13 +08001720 cpu_stream = snd_soc_dai_get_pcm_stream(dai, stream);
Jerome Brunet4f2bd182018-06-27 11:48:18 +02001721
Shreyas NC19bdcc7a2020-02-25 21:39:13 +08001722 *channels_min = max(*channels_min,
1723 cpu_stream->channels_min);
1724 *channels_max = min(*channels_max,
1725 cpu_stream->channels_max);
1726 }
Jerome Brunet4f2bd182018-06-27 11:48:18 +02001727
1728 /*
1729 * chan min/max cannot be enforced if there are multiple CODEC
1730 * DAIs connected to a single CPU DAI, use CPU DAI's directly
1731 */
1732 if (be->num_codecs == 1) {
Kuninori Morimotoc2233a22020-03-30 10:47:37 +09001733 codec_stream = snd_soc_dai_get_pcm_stream(asoc_rtd_to_codec(be, 0), stream);
Jiada Wangf4c277b2018-06-20 18:25:20 +09001734
1735 *channels_min = max(*channels_min,
1736 codec_stream->channels_min);
1737 *channels_max = min(*channels_max,
1738 codec_stream->channels_max);
1739 }
1740 }
1741}
1742
Jerome Brunetbaacd8d2018-07-05 12:13:49 +02001743static void dpcm_runtime_merge_rate(struct snd_pcm_substream *substream,
1744 unsigned int *rates,
1745 unsigned int *rate_min,
1746 unsigned int *rate_max)
1747{
1748 struct snd_soc_pcm_runtime *fe = substream->private_data;
1749 struct snd_soc_dpcm *dpcm;
1750 int stream = substream->stream;
1751
1752 if (!fe->dai_link->dpcm_merged_rate)
1753 return;
1754
1755 /*
1756 * It returns merged BE codec channel;
1757 * if FE want to use it (= dpcm_merged_chan)
1758 */
1759
Kuninori Morimoto8d6258a2018-09-18 01:31:09 +00001760 for_each_dpcm_be(fe, stream, dpcm) {
Jerome Brunetbaacd8d2018-07-05 12:13:49 +02001761 struct snd_soc_pcm_runtime *be = dpcm->be;
Kuninori Morimotoc840f762020-03-16 15:37:14 +09001762 struct snd_soc_pcm_stream *pcm;
Kuninori Morimoto7afecb32018-09-18 01:28:04 +00001763 struct snd_soc_dai *dai;
Jerome Brunetbaacd8d2018-07-05 12:13:49 +02001764 int i;
1765
Kuninori Morimotoc840f762020-03-16 15:37:14 +09001766 for_each_rtd_dais(be, i, dai) {
Bard Liao0e9cf4c42020-02-25 21:39:17 +08001767 /*
Kuninori Morimotoc840f762020-03-16 15:37:14 +09001768 * Skip DAIs which don't support the current stream
Bard Liao0e9cf4c42020-02-25 21:39:17 +08001769 * type. See soc_pcm_init_runtime_hw() for more details
1770 */
1771 if (!snd_soc_dai_stream_valid(dai, stream))
1772 continue;
1773
Kuninori Morimotoc840f762020-03-16 15:37:14 +09001774 pcm = snd_soc_dai_get_pcm_stream(dai, stream);
Jerome Brunetbaacd8d2018-07-05 12:13:49 +02001775
Kuninori Morimotoc840f762020-03-16 15:37:14 +09001776 *rate_min = max(*rate_min, pcm->rate_min);
1777 *rate_max = min_not_zero(*rate_max, pcm->rate_max);
1778 *rates = snd_pcm_rate_mask_intersect(*rates, pcm->rates);
Jerome Brunetbaacd8d2018-07-05 12:13:49 +02001779 }
1780 }
1781}
1782
Mark Brown45c0a182012-05-09 21:46:27 +01001783static void dpcm_set_fe_runtime(struct snd_pcm_substream *substream)
Liam Girdwood01d75842012-04-25 12:12:49 +01001784{
1785 struct snd_pcm_runtime *runtime = substream->runtime;
1786 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Shreyas NC19bdcc7a2020-02-25 21:39:13 +08001787 struct snd_soc_dai *cpu_dai;
Shreyas NC19bdcc7a2020-02-25 21:39:13 +08001788 int i;
Liam Girdwood01d75842012-04-25 12:12:49 +01001789
Kuninori Morimotoa4be4182020-03-09 13:08:04 +09001790 for_each_rtd_cpu_dais(rtd, i, cpu_dai) {
Bard Liao0e9cf4c42020-02-25 21:39:17 +08001791 /*
1792 * Skip CPUs which don't support the current stream
1793 * type. See soc_pcm_init_runtime_hw() for more details
1794 */
1795 if (!snd_soc_dai_stream_valid(cpu_dai, substream->stream))
1796 continue;
1797
Kuninori Morimoto0c9ba722020-03-06 10:09:54 +09001798 dpcm_init_runtime_hw(runtime,
1799 snd_soc_dai_get_pcm_stream(cpu_dai,
1800 substream->stream));
Shreyas NC19bdcc7a2020-02-25 21:39:13 +08001801 }
Jiada Wangf4c277b2018-06-20 18:25:20 +09001802
Jerome Brunet435ffb72018-07-05 12:13:48 +02001803 dpcm_runtime_merge_format(substream, &runtime->hw.formats);
1804 dpcm_runtime_merge_chan(substream, &runtime->hw.channels_min,
1805 &runtime->hw.channels_max);
Jerome Brunetbaacd8d2018-07-05 12:13:49 +02001806 dpcm_runtime_merge_rate(substream, &runtime->hw.rates,
1807 &runtime->hw.rate_min, &runtime->hw.rate_max);
Liam Girdwood01d75842012-04-25 12:12:49 +01001808}
1809
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01001810static int dpcm_fe_dai_do_trigger(struct snd_pcm_substream *substream, int cmd);
1811
1812/* Set FE's runtime_update state; the state is protected via PCM stream lock
1813 * for avoiding the race with trigger callback.
1814 * If the state is unset and a trigger is pending while the previous operation,
1815 * process the pending trigger action here.
1816 */
1817static void dpcm_set_fe_update_state(struct snd_soc_pcm_runtime *fe,
1818 int stream, enum snd_soc_dpcm_update state)
1819{
1820 struct snd_pcm_substream *substream =
1821 snd_soc_dpcm_get_substream(fe, stream);
1822
1823 snd_pcm_stream_lock_irq(substream);
1824 if (state == SND_SOC_DPCM_UPDATE_NO && fe->dpcm[stream].trigger_pending) {
1825 dpcm_fe_dai_do_trigger(substream,
1826 fe->dpcm[stream].trigger_pending - 1);
1827 fe->dpcm[stream].trigger_pending = 0;
1828 }
1829 fe->dpcm[stream].runtime_update = state;
1830 snd_pcm_stream_unlock_irq(substream);
1831}
1832
PC Liao906c7d62015-12-11 11:33:51 +08001833static int dpcm_apply_symmetry(struct snd_pcm_substream *fe_substream,
1834 int stream)
1835{
1836 struct snd_soc_dpcm *dpcm;
1837 struct snd_soc_pcm_runtime *fe = fe_substream->private_data;
Shreyas NC19bdcc7a2020-02-25 21:39:13 +08001838 struct snd_soc_dai *fe_cpu_dai;
PC Liao906c7d62015-12-11 11:33:51 +08001839 int err;
Shreyas NC19bdcc7a2020-02-25 21:39:13 +08001840 int i;
PC Liao906c7d62015-12-11 11:33:51 +08001841
1842 /* apply symmetry for FE */
1843 if (soc_pcm_has_symmetry(fe_substream))
1844 fe_substream->runtime->hw.info |= SNDRV_PCM_INFO_JOINT_DUPLEX;
1845
Kuninori Morimotoa4be4182020-03-09 13:08:04 +09001846 for_each_rtd_cpu_dais (fe, i, fe_cpu_dai) {
Shreyas NC19bdcc7a2020-02-25 21:39:13 +08001847 /* Symmetry only applies if we've got an active stream. */
Kuninori Morimotob3dea622020-05-15 09:46:51 +09001848 if (snd_soc_dai_active(fe_cpu_dai)) {
Shreyas NC19bdcc7a2020-02-25 21:39:13 +08001849 err = soc_pcm_apply_symmetry(fe_substream, fe_cpu_dai);
1850 if (err < 0)
1851 return err;
1852 }
PC Liao906c7d62015-12-11 11:33:51 +08001853 }
1854
1855 /* apply symmetry for BE */
Kuninori Morimoto8d6258a2018-09-18 01:31:09 +00001856 for_each_dpcm_be(fe, stream, dpcm) {
PC Liao906c7d62015-12-11 11:33:51 +08001857 struct snd_soc_pcm_runtime *be = dpcm->be;
1858 struct snd_pcm_substream *be_substream =
1859 snd_soc_dpcm_get_substream(be, stream);
Jerome Brunet6246f282019-04-01 15:03:54 +02001860 struct snd_soc_pcm_runtime *rtd;
Kuninori Morimotoc840f762020-03-16 15:37:14 +09001861 struct snd_soc_dai *dai;
PC Liao906c7d62015-12-11 11:33:51 +08001862 int i;
1863
Jerome Brunet6246f282019-04-01 15:03:54 +02001864 /* A backend may not have the requested substream */
1865 if (!be_substream)
1866 continue;
1867
1868 rtd = be_substream->private_data;
Jeeja KPf1176612016-09-06 14:17:55 +05301869 if (rtd->dai_link->be_hw_params_fixup)
1870 continue;
1871
PC Liao906c7d62015-12-11 11:33:51 +08001872 if (soc_pcm_has_symmetry(be_substream))
1873 be_substream->runtime->hw.info |= SNDRV_PCM_INFO_JOINT_DUPLEX;
1874
1875 /* Symmetry only applies if we've got an active stream. */
Kuninori Morimotoc840f762020-03-16 15:37:14 +09001876 for_each_rtd_dais(rtd, i, dai) {
Kuninori Morimotob3dea622020-05-15 09:46:51 +09001877 if (snd_soc_dai_active(dai)) {
Kuninori Morimotoc840f762020-03-16 15:37:14 +09001878 err = soc_pcm_apply_symmetry(fe_substream, dai);
PC Liao906c7d62015-12-11 11:33:51 +08001879 if (err < 0)
1880 return err;
1881 }
1882 }
1883 }
1884
1885 return 0;
1886}
1887
Liam Girdwood01d75842012-04-25 12:12:49 +01001888static int dpcm_fe_dai_startup(struct snd_pcm_substream *fe_substream)
1889{
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;
1893
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01001894 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE);
Liam Girdwood01d75842012-04-25 12:12:49 +01001895
Kuninori Morimoto25c2f512020-02-27 10:54:38 +09001896 ret = dpcm_be_dai_startup(fe, stream);
Liam Girdwood01d75842012-04-25 12:12:49 +01001897 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00001898 dev_err(fe->dev,"ASoC: failed to start some BEs %d\n", ret);
Liam Girdwood01d75842012-04-25 12:12:49 +01001899 goto be_err;
1900 }
1901
Liam Girdwood103d84a2012-11-19 14:39:15 +00001902 dev_dbg(fe->dev, "ASoC: open FE %s\n", fe->dai_link->name);
Liam Girdwood01d75842012-04-25 12:12:49 +01001903
1904 /* start the DAI frontend */
1905 ret = soc_pcm_open(fe_substream);
1906 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00001907 dev_err(fe->dev,"ASoC: failed to start FE %d\n", ret);
Liam Girdwood01d75842012-04-25 12:12:49 +01001908 goto unwind;
1909 }
1910
1911 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_OPEN;
1912
1913 dpcm_set_fe_runtime(fe_substream);
1914 snd_pcm_limit_hw_rates(runtime);
1915
PC Liao906c7d62015-12-11 11:33:51 +08001916 ret = dpcm_apply_symmetry(fe_substream, stream);
Kuninori Morimoto8a01fbf2020-03-06 10:09:59 +09001917 if (ret < 0)
PC Liao906c7d62015-12-11 11:33:51 +08001918 dev_err(fe->dev, "ASoC: failed to apply dpcm symmetry %d\n",
1919 ret);
Liam Girdwood01d75842012-04-25 12:12:49 +01001920
1921unwind:
Kuninori Morimoto8a01fbf2020-03-06 10:09:59 +09001922 if (ret < 0)
1923 dpcm_be_dai_startup_unwind(fe, stream);
Liam Girdwood01d75842012-04-25 12:12:49 +01001924be_err:
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01001925 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
Liam Girdwood01d75842012-04-25 12:12:49 +01001926 return ret;
1927}
1928
Liam Girdwood23607022014-01-17 17:03:55 +00001929int dpcm_be_dai_shutdown(struct snd_soc_pcm_runtime *fe, int stream)
Liam Girdwood01d75842012-04-25 12:12:49 +01001930{
1931 struct snd_soc_dpcm *dpcm;
1932
1933 /* only shutdown BEs that are either sinks or sources to this FE DAI */
Kuninori Morimoto8d6258a2018-09-18 01:31:09 +00001934 for_each_dpcm_be(fe, stream, dpcm) {
Liam Girdwood01d75842012-04-25 12:12:49 +01001935
1936 struct snd_soc_pcm_runtime *be = dpcm->be;
1937 struct snd_pcm_substream *be_substream =
1938 snd_soc_dpcm_get_substream(be, stream);
1939
1940 /* is this op for this BE ? */
1941 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1942 continue;
1943
1944 if (be->dpcm[stream].users == 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00001945 dev_err(be->dev, "ASoC: no users %s at close - state %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001946 stream ? "capture" : "playback",
1947 be->dpcm[stream].state);
1948
1949 if (--be->dpcm[stream].users != 0)
1950 continue;
1951
1952 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE) &&
Kai Chieh Chuang9c0ac702018-05-28 10:18:18 +08001953 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN)) {
1954 soc_pcm_hw_free(be_substream);
1955 be->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_FREE;
1956 }
Liam Girdwood01d75842012-04-25 12:12:49 +01001957
Liam Girdwood103d84a2012-11-19 14:39:15 +00001958 dev_dbg(be->dev, "ASoC: close BE %s\n",
彭东林94d215c2016-09-26 08:29:31 +00001959 be->dai_link->name);
Liam Girdwood01d75842012-04-25 12:12:49 +01001960
1961 soc_pcm_close(be_substream);
1962 be_substream->runtime = NULL;
1963
1964 be->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
1965 }
1966 return 0;
1967}
1968
1969static int dpcm_fe_dai_shutdown(struct snd_pcm_substream *substream)
1970{
1971 struct snd_soc_pcm_runtime *fe = substream->private_data;
1972 int stream = substream->stream;
1973
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01001974 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE);
Liam Girdwood01d75842012-04-25 12:12:49 +01001975
1976 /* shutdown the BEs */
Kuninori Morimoto25c2f512020-02-27 10:54:38 +09001977 dpcm_be_dai_shutdown(fe, stream);
Liam Girdwood01d75842012-04-25 12:12:49 +01001978
Liam Girdwood103d84a2012-11-19 14:39:15 +00001979 dev_dbg(fe->dev, "ASoC: close FE %s\n", fe->dai_link->name);
Liam Girdwood01d75842012-04-25 12:12:49 +01001980
1981 /* now shutdown the frontend */
1982 soc_pcm_close(substream);
1983
1984 /* run the stream event for each BE */
Kuninori Morimoto1c531232020-02-21 10:25:18 +09001985 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_STOP);
Liam Girdwood01d75842012-04-25 12:12:49 +01001986
1987 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01001988 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
Liam Girdwood01d75842012-04-25 12:12:49 +01001989 return 0;
1990}
1991
Liam Girdwood23607022014-01-17 17:03:55 +00001992int dpcm_be_dai_hw_free(struct snd_soc_pcm_runtime *fe, int stream)
Liam Girdwood01d75842012-04-25 12:12:49 +01001993{
1994 struct snd_soc_dpcm *dpcm;
1995
1996 /* only hw_params backends that are either sinks or sources
1997 * to this frontend DAI */
Kuninori Morimoto8d6258a2018-09-18 01:31:09 +00001998 for_each_dpcm_be(fe, stream, dpcm) {
Liam Girdwood01d75842012-04-25 12:12:49 +01001999
2000 struct snd_soc_pcm_runtime *be = dpcm->be;
2001 struct snd_pcm_substream *be_substream =
2002 snd_soc_dpcm_get_substream(be, stream);
2003
2004 /* is this op for this BE ? */
2005 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
2006 continue;
2007
2008 /* only free hw when no longer used - check all FEs */
2009 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
2010 continue;
2011
Qiao Zhou36fba622014-12-03 10:13:43 +08002012 /* do not free hw if this BE is used by other FE */
2013 if (be->dpcm[stream].users > 1)
2014 continue;
2015
Liam Girdwood01d75842012-04-25 12:12:49 +01002016 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
2017 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PREPARE) &&
2018 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE) &&
Patrick Lai08b27842012-12-19 19:36:02 -08002019 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PAUSED) &&
Vinod Koul5e82d2b2016-02-01 22:26:40 +05302020 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP) &&
2021 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_SUSPEND))
Liam Girdwood01d75842012-04-25 12:12:49 +01002022 continue;
2023
Liam Girdwood103d84a2012-11-19 14:39:15 +00002024 dev_dbg(be->dev, "ASoC: hw_free BE %s\n",
彭东林94d215c2016-09-26 08:29:31 +00002025 be->dai_link->name);
Liam Girdwood01d75842012-04-25 12:12:49 +01002026
2027 soc_pcm_hw_free(be_substream);
2028
2029 be->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_FREE;
2030 }
2031
2032 return 0;
2033}
2034
Mark Brown45c0a182012-05-09 21:46:27 +01002035static int dpcm_fe_dai_hw_free(struct snd_pcm_substream *substream)
Liam Girdwood01d75842012-04-25 12:12:49 +01002036{
2037 struct snd_soc_pcm_runtime *fe = substream->private_data;
2038 int err, stream = substream->stream;
2039
2040 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002041 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE);
Liam Girdwood01d75842012-04-25 12:12:49 +01002042
Liam Girdwood103d84a2012-11-19 14:39:15 +00002043 dev_dbg(fe->dev, "ASoC: hw_free FE %s\n", fe->dai_link->name);
Liam Girdwood01d75842012-04-25 12:12:49 +01002044
2045 /* call hw_free on the frontend */
2046 err = soc_pcm_hw_free(substream);
2047 if (err < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00002048 dev_err(fe->dev,"ASoC: hw_free FE %s failed\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01002049 fe->dai_link->name);
2050
2051 /* only hw_params backends that are either sinks or sources
2052 * to this frontend DAI */
2053 err = dpcm_be_dai_hw_free(fe, stream);
2054
2055 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_FREE;
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002056 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
Liam Girdwood01d75842012-04-25 12:12:49 +01002057
2058 mutex_unlock(&fe->card->mutex);
2059 return 0;
2060}
2061
Liam Girdwood23607022014-01-17 17:03:55 +00002062int dpcm_be_dai_hw_params(struct snd_soc_pcm_runtime *fe, int stream)
Liam Girdwood01d75842012-04-25 12:12:49 +01002063{
2064 struct snd_soc_dpcm *dpcm;
2065 int ret;
2066
Kuninori Morimoto8d6258a2018-09-18 01:31:09 +00002067 for_each_dpcm_be(fe, stream, dpcm) {
Liam Girdwood01d75842012-04-25 12:12:49 +01002068
2069 struct snd_soc_pcm_runtime *be = dpcm->be;
2070 struct snd_pcm_substream *be_substream =
2071 snd_soc_dpcm_get_substream(be, stream);
2072
2073 /* is this op for this BE ? */
2074 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
2075 continue;
2076
Liam Girdwood01d75842012-04-25 12:12:49 +01002077 /* copy params for each dpcm */
2078 memcpy(&dpcm->hw_params, &fe->dpcm[stream].hw_params,
2079 sizeof(struct snd_pcm_hw_params));
2080
2081 /* perform any hw_params fixups */
2082 if (be->dai_link->be_hw_params_fixup) {
2083 ret = be->dai_link->be_hw_params_fixup(be,
2084 &dpcm->hw_params);
2085 if (ret < 0) {
2086 dev_err(be->dev,
Liam Girdwood103d84a2012-11-19 14:39:15 +00002087 "ASoC: hw_params BE fixup failed %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01002088 ret);
2089 goto unwind;
2090 }
2091 }
2092
Libin Yangae061d22019-04-19 09:53:12 +08002093 /* copy the fixed-up hw params for BE dai */
2094 memcpy(&be->dpcm[stream].hw_params, &dpcm->hw_params,
2095 sizeof(struct snd_pcm_hw_params));
2096
Kuninori Morimotob0639bd2016-01-21 01:47:12 +00002097 /* only allow hw_params() if no connected FEs are running */
2098 if (!snd_soc_dpcm_can_be_params(fe, be, stream))
2099 continue;
2100
2101 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN) &&
2102 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
2103 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE))
2104 continue;
2105
2106 dev_dbg(be->dev, "ASoC: hw_params BE %s\n",
彭东林94d215c2016-09-26 08:29:31 +00002107 be->dai_link->name);
Kuninori Morimotob0639bd2016-01-21 01:47:12 +00002108
Liam Girdwood01d75842012-04-25 12:12:49 +01002109 ret = soc_pcm_hw_params(be_substream, &dpcm->hw_params);
2110 if (ret < 0) {
2111 dev_err(dpcm->be->dev,
Liam Girdwood103d84a2012-11-19 14:39:15 +00002112 "ASoC: hw_params BE failed %d\n", ret);
Liam Girdwood01d75842012-04-25 12:12:49 +01002113 goto unwind;
2114 }
2115
2116 be->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_PARAMS;
2117 }
2118 return 0;
2119
2120unwind:
2121 /* disable any enabled and non active backends */
Kuninori Morimoto8d6258a2018-09-18 01:31:09 +00002122 for_each_dpcm_be_rollback(fe, stream, dpcm) {
Liam Girdwood01d75842012-04-25 12:12:49 +01002123 struct snd_soc_pcm_runtime *be = dpcm->be;
2124 struct snd_pcm_substream *be_substream =
2125 snd_soc_dpcm_get_substream(be, stream);
2126
2127 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
2128 continue;
2129
2130 /* only allow hw_free() if no connected FEs are running */
2131 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
2132 continue;
2133
2134 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN) &&
2135 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
2136 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE) &&
2137 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP))
2138 continue;
2139
2140 soc_pcm_hw_free(be_substream);
2141 }
2142
2143 return ret;
2144}
2145
Mark Brown45c0a182012-05-09 21:46:27 +01002146static int dpcm_fe_dai_hw_params(struct snd_pcm_substream *substream,
2147 struct snd_pcm_hw_params *params)
Liam Girdwood01d75842012-04-25 12:12:49 +01002148{
2149 struct snd_soc_pcm_runtime *fe = substream->private_data;
2150 int ret, stream = substream->stream;
2151
2152 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002153 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE);
Liam Girdwood01d75842012-04-25 12:12:49 +01002154
Kuninori Morimoto25c2f512020-02-27 10:54:38 +09002155 memcpy(&fe->dpcm[stream].hw_params, params,
Liam Girdwood01d75842012-04-25 12:12:49 +01002156 sizeof(struct snd_pcm_hw_params));
Kuninori Morimoto25c2f512020-02-27 10:54:38 +09002157 ret = dpcm_be_dai_hw_params(fe, stream);
Liam Girdwood01d75842012-04-25 12:12:49 +01002158 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002159 dev_err(fe->dev,"ASoC: hw_params BE failed %d\n", ret);
Liam Girdwood01d75842012-04-25 12:12:49 +01002160 goto out;
2161 }
2162
Liam Girdwood103d84a2012-11-19 14:39:15 +00002163 dev_dbg(fe->dev, "ASoC: hw_params FE %s rate %d chan %x fmt %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01002164 fe->dai_link->name, params_rate(params),
2165 params_channels(params), params_format(params));
2166
2167 /* call hw_params on the frontend */
2168 ret = soc_pcm_hw_params(substream, params);
2169 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002170 dev_err(fe->dev,"ASoC: hw_params FE failed %d\n", ret);
Liam Girdwood01d75842012-04-25 12:12:49 +01002171 dpcm_be_dai_hw_free(fe, stream);
2172 } else
2173 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_PARAMS;
2174
2175out:
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002176 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
Liam Girdwood01d75842012-04-25 12:12:49 +01002177 mutex_unlock(&fe->card->mutex);
2178 return ret;
2179}
2180
2181static int dpcm_do_trigger(struct snd_soc_dpcm *dpcm,
2182 struct snd_pcm_substream *substream, int cmd)
2183{
2184 int ret;
2185
Liam Girdwood103d84a2012-11-19 14:39:15 +00002186 dev_dbg(dpcm->be->dev, "ASoC: trigger BE %s cmd %d\n",
彭东林94d215c2016-09-26 08:29:31 +00002187 dpcm->be->dai_link->name, cmd);
Liam Girdwood01d75842012-04-25 12:12:49 +01002188
2189 ret = soc_pcm_trigger(substream, cmd);
2190 if (ret < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00002191 dev_err(dpcm->be->dev,"ASoC: trigger BE failed %d\n", ret);
Liam Girdwood01d75842012-04-25 12:12:49 +01002192
2193 return ret;
2194}
2195
Liam Girdwood23607022014-01-17 17:03:55 +00002196int dpcm_be_dai_trigger(struct snd_soc_pcm_runtime *fe, int stream,
Mark Brown45c0a182012-05-09 21:46:27 +01002197 int cmd)
Liam Girdwood01d75842012-04-25 12:12:49 +01002198{
2199 struct snd_soc_dpcm *dpcm;
2200 int ret = 0;
2201
Kuninori Morimoto8d6258a2018-09-18 01:31:09 +00002202 for_each_dpcm_be(fe, stream, dpcm) {
Liam Girdwood01d75842012-04-25 12:12:49 +01002203
2204 struct snd_soc_pcm_runtime *be = dpcm->be;
2205 struct snd_pcm_substream *be_substream =
2206 snd_soc_dpcm_get_substream(be, stream);
2207
2208 /* is this op for this BE ? */
2209 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
2210 continue;
2211
2212 switch (cmd) {
2213 case SNDRV_PCM_TRIGGER_START:
2214 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_PREPARE) &&
이경택21fca8b2020-04-01 10:04:21 +09002215 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP) &&
2216 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PAUSED))
Liam Girdwood01d75842012-04-25 12:12:49 +01002217 continue;
2218
2219 ret = dpcm_do_trigger(dpcm, be_substream, cmd);
2220 if (ret)
2221 return ret;
2222
2223 be->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
2224 break;
2225 case SNDRV_PCM_TRIGGER_RESUME:
2226 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_SUSPEND))
2227 continue;
2228
2229 ret = dpcm_do_trigger(dpcm, be_substream, cmd);
2230 if (ret)
2231 return ret;
2232
2233 be->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
2234 break;
2235 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
2236 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_PAUSED))
2237 continue;
2238
2239 ret = dpcm_do_trigger(dpcm, be_substream, cmd);
2240 if (ret)
2241 return ret;
2242
2243 be->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
2244 break;
2245 case SNDRV_PCM_TRIGGER_STOP:
이경택21fca8b2020-04-01 10:04:21 +09002246 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_START) &&
2247 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PAUSED))
Liam Girdwood01d75842012-04-25 12:12:49 +01002248 continue;
2249
2250 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
2251 continue;
2252
2253 ret = dpcm_do_trigger(dpcm, be_substream, cmd);
2254 if (ret)
2255 return ret;
2256
2257 be->dpcm[stream].state = SND_SOC_DPCM_STATE_STOP;
2258 break;
2259 case SNDRV_PCM_TRIGGER_SUSPEND:
Nicolin Chen868a6ca2014-05-12 20:12:05 +08002260 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START)
Liam Girdwood01d75842012-04-25 12:12:49 +01002261 continue;
2262
2263 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
2264 continue;
2265
2266 ret = dpcm_do_trigger(dpcm, be_substream, cmd);
2267 if (ret)
2268 return ret;
2269
2270 be->dpcm[stream].state = SND_SOC_DPCM_STATE_SUSPEND;
2271 break;
2272 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
2273 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START)
2274 continue;
2275
2276 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
2277 continue;
2278
2279 ret = dpcm_do_trigger(dpcm, be_substream, cmd);
2280 if (ret)
2281 return ret;
2282
2283 be->dpcm[stream].state = SND_SOC_DPCM_STATE_PAUSED;
2284 break;
2285 }
2286 }
2287
2288 return ret;
2289}
2290EXPORT_SYMBOL_GPL(dpcm_be_dai_trigger);
2291
Ranjani Sridharanacbf2772019-11-04 14:48:11 -08002292static int dpcm_dai_trigger_fe_be(struct snd_pcm_substream *substream,
2293 int cmd, bool fe_first)
2294{
2295 struct snd_soc_pcm_runtime *fe = substream->private_data;
2296 int ret;
2297
2298 /* call trigger on the frontend before the backend. */
2299 if (fe_first) {
2300 dev_dbg(fe->dev, "ASoC: pre trigger FE %s cmd %d\n",
2301 fe->dai_link->name, cmd);
2302
2303 ret = soc_pcm_trigger(substream, cmd);
2304 if (ret < 0)
2305 return ret;
2306
2307 ret = dpcm_be_dai_trigger(fe, substream->stream, cmd);
2308 return ret;
2309 }
2310
2311 /* call trigger on the frontend after the backend. */
2312 ret = dpcm_be_dai_trigger(fe, substream->stream, cmd);
2313 if (ret < 0)
2314 return ret;
2315
2316 dev_dbg(fe->dev, "ASoC: post trigger FE %s cmd %d\n",
2317 fe->dai_link->name, cmd);
2318
2319 ret = soc_pcm_trigger(substream, cmd);
2320
2321 return ret;
2322}
2323
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002324static int dpcm_fe_dai_do_trigger(struct snd_pcm_substream *substream, int cmd)
Liam Girdwood01d75842012-04-25 12:12:49 +01002325{
2326 struct snd_soc_pcm_runtime *fe = substream->private_data;
Ranjani Sridharanacbf2772019-11-04 14:48:11 -08002327 int stream = substream->stream;
2328 int ret = 0;
Liam Girdwood01d75842012-04-25 12:12:49 +01002329 enum snd_soc_dpcm_trigger trigger = fe->dai_link->trigger[stream];
2330
2331 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_FE;
2332
2333 switch (trigger) {
2334 case SND_SOC_DPCM_TRIGGER_PRE:
Ranjani Sridharanacbf2772019-11-04 14:48:11 -08002335 switch (cmd) {
2336 case SNDRV_PCM_TRIGGER_START:
2337 case SNDRV_PCM_TRIGGER_RESUME:
2338 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
2339 ret = dpcm_dai_trigger_fe_be(substream, cmd, true);
2340 break;
2341 case SNDRV_PCM_TRIGGER_STOP:
2342 case SNDRV_PCM_TRIGGER_SUSPEND:
2343 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
2344 ret = dpcm_dai_trigger_fe_be(substream, cmd, false);
2345 break;
2346 default:
2347 ret = -EINVAL;
2348 break;
Liam Girdwood01d75842012-04-25 12:12:49 +01002349 }
Liam Girdwood01d75842012-04-25 12:12:49 +01002350 break;
2351 case SND_SOC_DPCM_TRIGGER_POST:
Ranjani Sridharanacbf2772019-11-04 14:48:11 -08002352 switch (cmd) {
2353 case SNDRV_PCM_TRIGGER_START:
2354 case SNDRV_PCM_TRIGGER_RESUME:
2355 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
2356 ret = dpcm_dai_trigger_fe_be(substream, cmd, false);
2357 break;
2358 case SNDRV_PCM_TRIGGER_STOP:
2359 case SNDRV_PCM_TRIGGER_SUSPEND:
2360 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
2361 ret = dpcm_dai_trigger_fe_be(substream, cmd, true);
2362 break;
2363 default:
2364 ret = -EINVAL;
2365 break;
Liam Girdwood01d75842012-04-25 12:12:49 +01002366 }
Liam Girdwood01d75842012-04-25 12:12:49 +01002367 break;
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002368 case SND_SOC_DPCM_TRIGGER_BESPOKE:
2369 /* bespoke trigger() - handles both FE and BEs */
2370
Liam Girdwood103d84a2012-11-19 14:39:15 +00002371 dev_dbg(fe->dev, "ASoC: bespoke trigger FE %s cmd %d\n",
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002372 fe->dai_link->name, cmd);
2373
Kuninori Morimoto308193582020-04-24 08:15:09 +09002374 ret = snd_soc_pcm_dai_bespoke_trigger(substream, cmd);
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002375 break;
Liam Girdwood01d75842012-04-25 12:12:49 +01002376 default:
Liam Girdwood103d84a2012-11-19 14:39:15 +00002377 dev_err(fe->dev, "ASoC: invalid trigger cmd %d for %s\n", cmd,
Liam Girdwood01d75842012-04-25 12:12:49 +01002378 fe->dai_link->name);
2379 ret = -EINVAL;
2380 goto out;
2381 }
2382
Ranjani Sridharanacbf2772019-11-04 14:48:11 -08002383 if (ret < 0) {
2384 dev_err(fe->dev, "ASoC: trigger FE cmd: %d failed: %d\n",
2385 cmd, ret);
2386 goto out;
2387 }
2388
Liam Girdwood01d75842012-04-25 12:12:49 +01002389 switch (cmd) {
2390 case SNDRV_PCM_TRIGGER_START:
2391 case SNDRV_PCM_TRIGGER_RESUME:
2392 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
2393 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
2394 break;
2395 case SNDRV_PCM_TRIGGER_STOP:
2396 case SNDRV_PCM_TRIGGER_SUSPEND:
Liam Girdwood01d75842012-04-25 12:12:49 +01002397 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_STOP;
2398 break;
Patrick Lai9f169b92016-12-31 22:44:39 -08002399 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
2400 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_PAUSED;
2401 break;
Liam Girdwood01d75842012-04-25 12:12:49 +01002402 }
2403
2404out:
2405 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO;
2406 return ret;
2407}
2408
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002409static int dpcm_fe_dai_trigger(struct snd_pcm_substream *substream, int cmd)
2410{
2411 struct snd_soc_pcm_runtime *fe = substream->private_data;
2412 int stream = substream->stream;
2413
2414 /* if FE's runtime_update is already set, we're in race;
2415 * process this trigger later at exit
2416 */
2417 if (fe->dpcm[stream].runtime_update != SND_SOC_DPCM_UPDATE_NO) {
2418 fe->dpcm[stream].trigger_pending = cmd + 1;
2419 return 0; /* delayed, assuming it's successful */
2420 }
2421
2422 /* we're alone, let's trigger */
2423 return dpcm_fe_dai_do_trigger(substream, cmd);
2424}
2425
Liam Girdwood23607022014-01-17 17:03:55 +00002426int dpcm_be_dai_prepare(struct snd_soc_pcm_runtime *fe, int stream)
Liam Girdwood01d75842012-04-25 12:12:49 +01002427{
2428 struct snd_soc_dpcm *dpcm;
2429 int ret = 0;
2430
Kuninori Morimoto8d6258a2018-09-18 01:31:09 +00002431 for_each_dpcm_be(fe, stream, dpcm) {
Liam Girdwood01d75842012-04-25 12:12:49 +01002432
2433 struct snd_soc_pcm_runtime *be = dpcm->be;
2434 struct snd_pcm_substream *be_substream =
2435 snd_soc_dpcm_get_substream(be, stream);
2436
2437 /* is this op for this BE ? */
2438 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
2439 continue;
2440
2441 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
Koro Chen95f444d2015-10-28 10:15:34 +08002442 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP) &&
Libin Yang5087a8f2019-05-08 10:32:41 +08002443 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_SUSPEND) &&
2444 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PAUSED))
Liam Girdwood01d75842012-04-25 12:12:49 +01002445 continue;
2446
Liam Girdwood103d84a2012-11-19 14:39:15 +00002447 dev_dbg(be->dev, "ASoC: prepare BE %s\n",
彭东林94d215c2016-09-26 08:29:31 +00002448 be->dai_link->name);
Liam Girdwood01d75842012-04-25 12:12:49 +01002449
2450 ret = soc_pcm_prepare(be_substream);
2451 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002452 dev_err(be->dev, "ASoC: backend prepare failed %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01002453 ret);
2454 break;
2455 }
2456
2457 be->dpcm[stream].state = SND_SOC_DPCM_STATE_PREPARE;
2458 }
2459 return ret;
2460}
2461
Mark Brown45c0a182012-05-09 21:46:27 +01002462static int dpcm_fe_dai_prepare(struct snd_pcm_substream *substream)
Liam Girdwood01d75842012-04-25 12:12:49 +01002463{
2464 struct snd_soc_pcm_runtime *fe = substream->private_data;
2465 int stream = substream->stream, ret = 0;
2466
2467 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
2468
Liam Girdwood103d84a2012-11-19 14:39:15 +00002469 dev_dbg(fe->dev, "ASoC: prepare FE %s\n", fe->dai_link->name);
Liam Girdwood01d75842012-04-25 12:12:49 +01002470
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002471 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE);
Liam Girdwood01d75842012-04-25 12:12:49 +01002472
2473 /* there is no point preparing this FE if there are no BEs */
2474 if (list_empty(&fe->dpcm[stream].be_clients)) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002475 dev_err(fe->dev, "ASoC: no backend DAIs enabled for %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01002476 fe->dai_link->name);
2477 ret = -EINVAL;
2478 goto out;
2479 }
2480
Kuninori Morimoto25c2f512020-02-27 10:54:38 +09002481 ret = dpcm_be_dai_prepare(fe, stream);
Liam Girdwood01d75842012-04-25 12:12:49 +01002482 if (ret < 0)
2483 goto out;
2484
2485 /* call prepare on the frontend */
2486 ret = soc_pcm_prepare(substream);
2487 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002488 dev_err(fe->dev,"ASoC: prepare FE %s failed\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01002489 fe->dai_link->name);
2490 goto out;
2491 }
2492
2493 /* run the stream event for each BE */
2494 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_START);
2495 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_PREPARE;
2496
2497out:
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002498 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
Liam Girdwood01d75842012-04-25 12:12:49 +01002499 mutex_unlock(&fe->card->mutex);
2500
2501 return ret;
2502}
2503
Liam Girdwood618dae12012-04-25 12:12:51 +01002504static int dpcm_run_update_shutdown(struct snd_soc_pcm_runtime *fe, int stream)
2505{
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002506 struct snd_pcm_substream *substream =
2507 snd_soc_dpcm_get_substream(fe, stream);
2508 enum snd_soc_dpcm_trigger trigger = fe->dai_link->trigger[stream];
Liam Girdwood618dae12012-04-25 12:12:51 +01002509 int err;
Liam Girdwood01d75842012-04-25 12:12:49 +01002510
Liam Girdwood103d84a2012-11-19 14:39:15 +00002511 dev_dbg(fe->dev, "ASoC: runtime %s close on FE %s\n",
Liam Girdwood618dae12012-04-25 12:12:51 +01002512 stream ? "capture" : "playback", fe->dai_link->name);
2513
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002514 if (trigger == SND_SOC_DPCM_TRIGGER_BESPOKE) {
2515 /* call bespoke trigger - FE takes care of all BE triggers */
Liam Girdwood103d84a2012-11-19 14:39:15 +00002516 dev_dbg(fe->dev, "ASoC: bespoke trigger FE %s cmd stop\n",
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002517 fe->dai_link->name);
2518
Kuninori Morimoto308193582020-04-24 08:15:09 +09002519 err = snd_soc_pcm_dai_bespoke_trigger(substream, SNDRV_PCM_TRIGGER_STOP);
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002520 if (err < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00002521 dev_err(fe->dev,"ASoC: trigger FE failed %d\n", err);
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002522 } else {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002523 dev_dbg(fe->dev, "ASoC: trigger FE %s cmd stop\n",
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002524 fe->dai_link->name);
2525
2526 err = dpcm_be_dai_trigger(fe, stream, SNDRV_PCM_TRIGGER_STOP);
2527 if (err < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00002528 dev_err(fe->dev,"ASoC: trigger FE failed %d\n", err);
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002529 }
Liam Girdwood618dae12012-04-25 12:12:51 +01002530
2531 err = dpcm_be_dai_hw_free(fe, stream);
2532 if (err < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00002533 dev_err(fe->dev,"ASoC: hw_free FE failed %d\n", err);
Liam Girdwood618dae12012-04-25 12:12:51 +01002534
2535 err = dpcm_be_dai_shutdown(fe, stream);
2536 if (err < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00002537 dev_err(fe->dev,"ASoC: shutdown FE failed %d\n", err);
Liam Girdwood618dae12012-04-25 12:12:51 +01002538
2539 /* run the stream event for each BE */
2540 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_NOP);
2541
2542 return 0;
2543}
2544
2545static int dpcm_run_update_startup(struct snd_soc_pcm_runtime *fe, int stream)
2546{
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002547 struct snd_pcm_substream *substream =
2548 snd_soc_dpcm_get_substream(fe, stream);
Liam Girdwood618dae12012-04-25 12:12:51 +01002549 struct snd_soc_dpcm *dpcm;
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002550 enum snd_soc_dpcm_trigger trigger = fe->dai_link->trigger[stream];
Liam Girdwood618dae12012-04-25 12:12:51 +01002551 int ret;
KaiChieh Chuanga9764862019-03-08 13:05:53 +08002552 unsigned long flags;
Liam Girdwood618dae12012-04-25 12:12:51 +01002553
Liam Girdwood103d84a2012-11-19 14:39:15 +00002554 dev_dbg(fe->dev, "ASoC: runtime %s open on FE %s\n",
Liam Girdwood618dae12012-04-25 12:12:51 +01002555 stream ? "capture" : "playback", fe->dai_link->name);
2556
2557 /* Only start the BE if the FE is ready */
2558 if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_HW_FREE ||
2559 fe->dpcm[stream].state == SND_SOC_DPCM_STATE_CLOSE)
2560 return -EINVAL;
2561
2562 /* startup must always be called for new BEs */
2563 ret = dpcm_be_dai_startup(fe, stream);
Dan Carpenterfffc0ca2013-01-10 11:59:57 +03002564 if (ret < 0)
Liam Girdwood618dae12012-04-25 12:12:51 +01002565 goto disconnect;
Liam Girdwood618dae12012-04-25 12:12:51 +01002566
2567 /* keep going if FE state is > open */
2568 if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_OPEN)
2569 return 0;
2570
2571 ret = dpcm_be_dai_hw_params(fe, stream);
Dan Carpenterfffc0ca2013-01-10 11:59:57 +03002572 if (ret < 0)
Liam Girdwood618dae12012-04-25 12:12:51 +01002573 goto close;
Liam Girdwood618dae12012-04-25 12:12:51 +01002574
2575 /* keep going if FE state is > hw_params */
2576 if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_HW_PARAMS)
2577 return 0;
2578
2579
2580 ret = dpcm_be_dai_prepare(fe, stream);
Dan Carpenterfffc0ca2013-01-10 11:59:57 +03002581 if (ret < 0)
Liam Girdwood618dae12012-04-25 12:12:51 +01002582 goto hw_free;
Liam Girdwood618dae12012-04-25 12:12:51 +01002583
2584 /* run the stream event for each BE */
2585 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_NOP);
2586
2587 /* keep going if FE state is > prepare */
2588 if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_PREPARE ||
2589 fe->dpcm[stream].state == SND_SOC_DPCM_STATE_STOP)
2590 return 0;
2591
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002592 if (trigger == SND_SOC_DPCM_TRIGGER_BESPOKE) {
2593 /* call trigger on the frontend - FE takes care of all BE triggers */
Liam Girdwood103d84a2012-11-19 14:39:15 +00002594 dev_dbg(fe->dev, "ASoC: bespoke trigger FE %s cmd start\n",
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002595 fe->dai_link->name);
Liam Girdwood618dae12012-04-25 12:12:51 +01002596
Kuninori Morimoto308193582020-04-24 08:15:09 +09002597 ret = snd_soc_pcm_dai_bespoke_trigger(substream, SNDRV_PCM_TRIGGER_START);
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002598 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002599 dev_err(fe->dev,"ASoC: bespoke trigger FE failed %d\n", ret);
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002600 goto hw_free;
2601 }
2602 } else {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002603 dev_dbg(fe->dev, "ASoC: trigger FE %s cmd start\n",
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002604 fe->dai_link->name);
2605
2606 ret = dpcm_be_dai_trigger(fe, stream,
2607 SNDRV_PCM_TRIGGER_START);
2608 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002609 dev_err(fe->dev,"ASoC: trigger FE failed %d\n", ret);
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002610 goto hw_free;
2611 }
Liam Girdwood618dae12012-04-25 12:12:51 +01002612 }
2613
2614 return 0;
2615
2616hw_free:
2617 dpcm_be_dai_hw_free(fe, stream);
2618close:
2619 dpcm_be_dai_shutdown(fe, stream);
2620disconnect:
2621 /* disconnect any non started BEs */
KaiChieh Chuanga9764862019-03-08 13:05:53 +08002622 spin_lock_irqsave(&fe->card->dpcm_lock, flags);
Kuninori Morimoto8d6258a2018-09-18 01:31:09 +00002623 for_each_dpcm_be(fe, stream, dpcm) {
Liam Girdwood618dae12012-04-25 12:12:51 +01002624 struct snd_soc_pcm_runtime *be = dpcm->be;
2625 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START)
2626 dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE;
2627 }
KaiChieh Chuanga9764862019-03-08 13:05:53 +08002628 spin_unlock_irqrestore(&fe->card->dpcm_lock, flags);
Liam Girdwood618dae12012-04-25 12:12:51 +01002629
2630 return ret;
2631}
2632
Jerome Brunetde15d7ff2018-06-26 12:07:25 +02002633static int soc_dpcm_fe_runtime_update(struct snd_soc_pcm_runtime *fe, int new)
2634{
2635 struct snd_soc_dapm_widget_list *list;
Kuninori Morimoto7083f8772020-02-17 17:28:28 +09002636 int stream;
Jerome Brunetde15d7ff2018-06-26 12:07:25 +02002637 int count, paths;
Kuninori Morimoto580dff32020-02-19 15:56:46 +09002638 int ret;
Jerome Brunetde15d7ff2018-06-26 12:07:25 +02002639
Bard Liao6e1276a2020-02-25 21:39:16 +08002640 if (fe->num_cpus > 1) {
2641 dev_err(fe->dev,
2642 "%s doesn't support Multi CPU yet\n", __func__);
2643 return -EINVAL;
2644 }
2645
Jerome Brunetde15d7ff2018-06-26 12:07:25 +02002646 if (!fe->dai_link->dynamic)
2647 return 0;
2648
2649 /* only check active links */
Kuninori Morimotob3dea622020-05-15 09:46:51 +09002650 if (!snd_soc_dai_active(asoc_rtd_to_cpu(fe, 0)))
Jerome Brunetde15d7ff2018-06-26 12:07:25 +02002651 return 0;
2652
2653 /* DAPM sync will call this to update DSP paths */
2654 dev_dbg(fe->dev, "ASoC: DPCM %s runtime update for FE %s\n",
2655 new ? "new" : "old", fe->dai_link->name);
2656
Kuninori Morimoto7083f8772020-02-17 17:28:28 +09002657 for_each_pcm_streams(stream) {
Jerome Brunetde15d7ff2018-06-26 12:07:25 +02002658
Kuninori Morimoto7083f8772020-02-17 17:28:28 +09002659 /* skip if FE doesn't have playback/capture capability */
Kuninori Morimotoc2233a22020-03-30 10:47:37 +09002660 if (!snd_soc_dai_stream_valid(asoc_rtd_to_cpu(fe, 0), stream) ||
2661 !snd_soc_dai_stream_valid(asoc_rtd_to_codec(fe, 0), stream))
Kuninori Morimoto7083f8772020-02-17 17:28:28 +09002662 continue;
Jerome Brunetde15d7ff2018-06-26 12:07:25 +02002663
Kuninori Morimoto7083f8772020-02-17 17:28:28 +09002664 /* skip if FE isn't currently playing/capturing */
Kuninori Morimotob3dea622020-05-15 09:46:51 +09002665 if (!snd_soc_dai_stream_active(asoc_rtd_to_cpu(fe, 0), stream) ||
2666 !snd_soc_dai_stream_active(asoc_rtd_to_codec(fe, 0), stream))
Kuninori Morimoto7083f8772020-02-17 17:28:28 +09002667 continue;
2668
2669 paths = dpcm_path_get(fe, stream, &list);
2670 if (paths < 0) {
2671 dev_warn(fe->dev, "ASoC: %s no valid %s path\n",
2672 fe->dai_link->name,
2673 stream == SNDRV_PCM_STREAM_PLAYBACK ?
2674 "playback" : "capture");
2675 return paths;
2676 }
2677
2678 /* update any playback/capture paths */
2679 count = dpcm_process_paths(fe, stream, &list, new);
2680 if (count) {
Kuninori Morimoto580dff32020-02-19 15:56:46 +09002681 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_BE);
Kuninori Morimoto7083f8772020-02-17 17:28:28 +09002682 if (new)
Kuninori Morimoto580dff32020-02-19 15:56:46 +09002683 ret = dpcm_run_update_startup(fe, stream);
Kuninori Morimoto7083f8772020-02-17 17:28:28 +09002684 else
Kuninori Morimoto580dff32020-02-19 15:56:46 +09002685 ret = dpcm_run_update_shutdown(fe, stream);
2686 if (ret < 0)
2687 dev_err(fe->dev, "ASoC: failed to shutdown some BEs\n");
2688 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
Kuninori Morimoto7083f8772020-02-17 17:28:28 +09002689
2690 dpcm_clear_pending_state(fe, stream);
2691 dpcm_be_disconnect(fe, stream);
2692 }
2693
2694 dpcm_path_put(&list);
Jerome Brunetde15d7ff2018-06-26 12:07:25 +02002695 }
2696
Jerome Brunetde15d7ff2018-06-26 12:07:25 +02002697 return 0;
2698}
2699
Liam Girdwood618dae12012-04-25 12:12:51 +01002700/* Called by DAPM mixer/mux changes to update audio routing between PCMs and
2701 * any DAI links.
2702 */
Guennadi Liakhovetskif17a1472020-03-12 10:52:14 +01002703int snd_soc_dpcm_runtime_update(struct snd_soc_card *card)
Liam Girdwood618dae12012-04-25 12:12:51 +01002704{
Mengdong Lin1a497982015-11-18 02:34:11 -05002705 struct snd_soc_pcm_runtime *fe;
Jerome Brunetde15d7ff2018-06-26 12:07:25 +02002706 int ret = 0;
Liam Girdwood618dae12012-04-25 12:12:51 +01002707
Liam Girdwood618dae12012-04-25 12:12:51 +01002708 mutex_lock_nested(&card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
Jerome Brunetde15d7ff2018-06-26 12:07:25 +02002709 /* shutdown all old paths first */
Kuninori Morimotobcb1fd12018-09-18 01:29:35 +00002710 for_each_card_rtds(card, fe) {
Jerome Brunetde15d7ff2018-06-26 12:07:25 +02002711 ret = soc_dpcm_fe_runtime_update(fe, 0);
2712 if (ret)
2713 goto out;
Liam Girdwood618dae12012-04-25 12:12:51 +01002714 }
2715
Jerome Brunetde15d7ff2018-06-26 12:07:25 +02002716 /* bring new paths up */
Kuninori Morimotobcb1fd12018-09-18 01:29:35 +00002717 for_each_card_rtds(card, fe) {
Jerome Brunetde15d7ff2018-06-26 12:07:25 +02002718 ret = soc_dpcm_fe_runtime_update(fe, 1);
2719 if (ret)
2720 goto out;
2721 }
2722
2723out:
Liam Girdwood618dae12012-04-25 12:12:51 +01002724 mutex_unlock(&card->mutex);
Jerome Brunetde15d7ff2018-06-26 12:07:25 +02002725 return ret;
Liam Girdwood618dae12012-04-25 12:12:51 +01002726}
Guennadi Liakhovetskif17a1472020-03-12 10:52:14 +01002727EXPORT_SYMBOL_GPL(snd_soc_dpcm_runtime_update);
Liam Girdwood01d75842012-04-25 12:12:49 +01002728
Kuninori Morimoto265694b2020-03-06 10:09:49 +09002729static void dpcm_fe_dai_cleanup(struct snd_pcm_substream *fe_substream)
Liam Girdwood01d75842012-04-25 12:12:49 +01002730{
2731 struct snd_soc_pcm_runtime *fe = fe_substream->private_data;
2732 struct snd_soc_dpcm *dpcm;
Kuninori Morimoto265694b2020-03-06 10:09:49 +09002733 int stream = fe_substream->stream;
Kuninori Morimoto30fca262020-03-06 10:09:44 +09002734
2735 /* mark FE's links ready to prune */
2736 for_each_dpcm_be(fe, stream, dpcm)
2737 dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE;
2738
2739 dpcm_be_disconnect(fe, stream);
2740
2741 fe->dpcm[stream].runtime = NULL;
Kuninori Morimoto265694b2020-03-06 10:09:49 +09002742}
2743
2744static int dpcm_fe_dai_close(struct snd_pcm_substream *fe_substream)
2745{
2746 struct snd_soc_pcm_runtime *fe = fe_substream->private_data;
2747 int ret;
2748
2749 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
2750 ret = dpcm_fe_dai_shutdown(fe_substream);
2751
2752 dpcm_fe_dai_cleanup(fe_substream);
2753
Kuninori Morimoto30fca262020-03-06 10:09:44 +09002754 mutex_unlock(&fe->card->mutex);
2755 return ret;
2756}
2757
Liam Girdwood01d75842012-04-25 12:12:49 +01002758static int dpcm_fe_dai_open(struct snd_pcm_substream *fe_substream)
2759{
2760 struct snd_soc_pcm_runtime *fe = fe_substream->private_data;
Liam Girdwood01d75842012-04-25 12:12:49 +01002761 struct snd_soc_dapm_widget_list *list;
2762 int ret;
2763 int stream = fe_substream->stream;
2764
2765 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
2766 fe->dpcm[stream].runtime = fe_substream->runtime;
2767
Qiao Zhou8f70e512014-09-10 17:54:07 +08002768 ret = dpcm_path_get(fe, stream, &list);
2769 if (ret < 0) {
Kuninori Morimotocae06eb2020-02-17 17:28:11 +09002770 goto open_end;
Qiao Zhou8f70e512014-09-10 17:54:07 +08002771 } else if (ret == 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002772 dev_dbg(fe->dev, "ASoC: %s no valid %s route\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01002773 fe->dai_link->name, stream ? "capture" : "playback");
Liam Girdwood01d75842012-04-25 12:12:49 +01002774 }
2775
2776 /* calculate valid and active FE <-> BE dpcms */
2777 dpcm_process_paths(fe, stream, &list, 1);
2778
2779 ret = dpcm_fe_dai_startup(fe_substream);
Kuninori Morimoto265694b2020-03-06 10:09:49 +09002780 if (ret < 0)
2781 dpcm_fe_dai_cleanup(fe_substream);
Liam Girdwood01d75842012-04-25 12:12:49 +01002782
2783 dpcm_clear_pending_state(fe, stream);
2784 dpcm_path_put(&list);
Kuninori Morimotocae06eb2020-02-17 17:28:11 +09002785open_end:
Liam Girdwood01d75842012-04-25 12:12:49 +01002786 mutex_unlock(&fe->card->mutex);
2787 return ret;
2788}
2789
Liam Girdwoodddee6272011-06-09 14:45:53 +01002790/* create a new pcm */
2791int soc_new_pcm(struct snd_soc_pcm_runtime *rtd, int num)
2792{
Benoit Cousson2e5894d2014-07-08 23:19:35 +02002793 struct snd_soc_dai *codec_dai;
Shreyas NC19bdcc7a2020-02-25 21:39:13 +08002794 struct snd_soc_dai *cpu_dai;
Kuninori Morimoto2b544dd2019-10-15 12:59:31 +09002795 struct snd_soc_component *component;
Liam Girdwoodddee6272011-06-09 14:45:53 +01002796 struct snd_pcm *pcm;
2797 char new_name[64];
2798 int ret = 0, playback = 0, capture = 0;
Benoit Cousson2e5894d2014-07-08 23:19:35 +02002799 int i;
Liam Girdwoodddee6272011-06-09 14:45:53 +01002800
Liam Girdwood01d75842012-04-25 12:12:49 +01002801 if (rtd->dai_link->dynamic || rtd->dai_link->no_pcm) {
Stephan Gerhold9b5db052020-04-15 12:49:28 +02002802 cpu_dai = asoc_rtd_to_cpu(rtd, 0);
2803 if (rtd->num_cpus > 1) {
2804 dev_err(rtd->dev,
2805 "DPCM doesn't support Multi CPU yet\n");
2806 return -EINVAL;
2807 }
2808
2809 playback = rtd->dai_link->dpcm_playback &&
2810 snd_soc_dai_stream_valid(cpu_dai, SNDRV_PCM_STREAM_PLAYBACK);
2811 capture = rtd->dai_link->dpcm_capture &&
2812 snd_soc_dai_stream_valid(cpu_dai, SNDRV_PCM_STREAM_CAPTURE);
Liam Girdwood01d75842012-04-25 12:12:49 +01002813 } else {
Jerome Bruneta3420312019-07-25 18:59:47 +02002814 /* Adapt stream for codec2codec links */
Stephan Gerholda4877a62020-02-18 11:38:24 +01002815 int cpu_capture = rtd->dai_link->params ?
2816 SNDRV_PCM_STREAM_PLAYBACK : SNDRV_PCM_STREAM_CAPTURE;
2817 int cpu_playback = rtd->dai_link->params ?
2818 SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK;
Jerome Bruneta3420312019-07-25 18:59:47 +02002819
Kuninori Morimotoa4be4182020-03-09 13:08:04 +09002820 for_each_rtd_codec_dais(rtd, i, codec_dai) {
Shreyas NC19bdcc7a2020-02-25 21:39:13 +08002821 if (rtd->num_cpus == 1) {
Kuninori Morimotoc2233a22020-03-30 10:47:37 +09002822 cpu_dai = asoc_rtd_to_cpu(rtd, 0);
Shreyas NC19bdcc7a2020-02-25 21:39:13 +08002823 } else if (rtd->num_cpus == rtd->num_codecs) {
Kuninori Morimotoc2233a22020-03-30 10:47:37 +09002824 cpu_dai = asoc_rtd_to_cpu(rtd, i);
Shreyas NC19bdcc7a2020-02-25 21:39:13 +08002825 } else {
2826 dev_err(rtd->card->dev,
2827 "N cpus to M codecs link is not supported yet\n");
2828 return -EINVAL;
2829 }
2830
Kuninori Morimoto467fece2019-07-22 10:36:16 +09002831 if (snd_soc_dai_stream_valid(codec_dai, SNDRV_PCM_STREAM_PLAYBACK) &&
Stephan Gerholda4877a62020-02-18 11:38:24 +01002832 snd_soc_dai_stream_valid(cpu_dai, cpu_playback))
Benoit Cousson2e5894d2014-07-08 23:19:35 +02002833 playback = 1;
Kuninori Morimoto467fece2019-07-22 10:36:16 +09002834 if (snd_soc_dai_stream_valid(codec_dai, SNDRV_PCM_STREAM_CAPTURE) &&
Stephan Gerholda4877a62020-02-18 11:38:24 +01002835 snd_soc_dai_stream_valid(cpu_dai, cpu_capture))
Benoit Cousson2e5894d2014-07-08 23:19:35 +02002836 capture = 1;
2837 }
Liam Girdwood01d75842012-04-25 12:12:49 +01002838 }
Sangsu Parka5002312012-01-02 17:15:10 +09002839
Fabio Estevamd6bead02013-08-29 10:32:13 -03002840 if (rtd->dai_link->playback_only) {
2841 playback = 1;
2842 capture = 0;
2843 }
2844
2845 if (rtd->dai_link->capture_only) {
2846 playback = 0;
2847 capture = 1;
2848 }
2849
Liam Girdwood01d75842012-04-25 12:12:49 +01002850 /* create the PCM */
Jerome Bruneta3420312019-07-25 18:59:47 +02002851 if (rtd->dai_link->params) {
2852 snprintf(new_name, sizeof(new_name), "codec2codec(%s)",
2853 rtd->dai_link->stream_name);
2854
2855 ret = snd_pcm_new_internal(rtd->card->snd_card, new_name, num,
2856 playback, capture, &pcm);
2857 } else if (rtd->dai_link->no_pcm) {
Liam Girdwood01d75842012-04-25 12:12:49 +01002858 snprintf(new_name, sizeof(new_name), "(%s)",
2859 rtd->dai_link->stream_name);
Liam Girdwoodddee6272011-06-09 14:45:53 +01002860
Liam Girdwood01d75842012-04-25 12:12:49 +01002861 ret = snd_pcm_new_internal(rtd->card->snd_card, new_name, num,
2862 playback, capture, &pcm);
2863 } else {
2864 if (rtd->dai_link->dynamic)
2865 snprintf(new_name, sizeof(new_name), "%s (*)",
2866 rtd->dai_link->stream_name);
2867 else
2868 snprintf(new_name, sizeof(new_name), "%s %s-%d",
Benoit Cousson2e5894d2014-07-08 23:19:35 +02002869 rtd->dai_link->stream_name,
2870 (rtd->num_codecs > 1) ?
Kuninori Morimotoc2233a22020-03-30 10:47:37 +09002871 "multicodec" : asoc_rtd_to_codec(rtd, 0)->name, num);
Liam Girdwoodddee6272011-06-09 14:45:53 +01002872
Liam Girdwood01d75842012-04-25 12:12:49 +01002873 ret = snd_pcm_new(rtd->card->snd_card, new_name, num, playback,
2874 capture, &pcm);
2875 }
Liam Girdwoodddee6272011-06-09 14:45:53 +01002876 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002877 dev_err(rtd->card->dev, "ASoC: can't create pcm for %s\n",
Liam Girdwood5cb9b742012-07-06 16:54:52 +01002878 rtd->dai_link->name);
Liam Girdwoodddee6272011-06-09 14:45:53 +01002879 return ret;
2880 }
Liam Girdwood103d84a2012-11-19 14:39:15 +00002881 dev_dbg(rtd->card->dev, "ASoC: registered pcm #%d %s\n",num, new_name);
Liam Girdwoodddee6272011-06-09 14:45:53 +01002882
2883 /* DAPM dai link stream work */
Jerome Bruneta3420312019-07-25 18:59:47 +02002884 if (rtd->dai_link->params)
Curtis Malainey4bf2e382019-12-03 09:30:07 -08002885 rtd->close_delayed_work_func = codec2codec_close_delayed_work;
Jerome Bruneta3420312019-07-25 18:59:47 +02002886 else
Kuninori Morimoto83f94a22020-01-10 11:36:17 +09002887 rtd->close_delayed_work_func = snd_soc_close_delayed_work;
Liam Girdwoodddee6272011-06-09 14:45:53 +01002888
Vinod Koul48c76992015-02-12 09:59:53 +05302889 pcm->nonatomic = rtd->dai_link->nonatomic;
Liam Girdwoodddee6272011-06-09 14:45:53 +01002890 rtd->pcm = pcm;
2891 pcm->private_data = rtd;
Liam Girdwood01d75842012-04-25 12:12:49 +01002892
Jerome Bruneta3420312019-07-25 18:59:47 +02002893 if (rtd->dai_link->no_pcm || rtd->dai_link->params) {
Liam Girdwood01d75842012-04-25 12:12:49 +01002894 if (playback)
2895 pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream->private_data = rtd;
2896 if (capture)
2897 pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream->private_data = rtd;
2898 goto out;
2899 }
2900
2901 /* ASoC PCM operations */
2902 if (rtd->dai_link->dynamic) {
2903 rtd->ops.open = dpcm_fe_dai_open;
2904 rtd->ops.hw_params = dpcm_fe_dai_hw_params;
2905 rtd->ops.prepare = dpcm_fe_dai_prepare;
2906 rtd->ops.trigger = dpcm_fe_dai_trigger;
2907 rtd->ops.hw_free = dpcm_fe_dai_hw_free;
2908 rtd->ops.close = dpcm_fe_dai_close;
2909 rtd->ops.pointer = soc_pcm_pointer;
2910 } else {
2911 rtd->ops.open = soc_pcm_open;
2912 rtd->ops.hw_params = soc_pcm_hw_params;
2913 rtd->ops.prepare = soc_pcm_prepare;
2914 rtd->ops.trigger = soc_pcm_trigger;
2915 rtd->ops.hw_free = soc_pcm_hw_free;
2916 rtd->ops.close = soc_pcm_close;
2917 rtd->ops.pointer = soc_pcm_pointer;
2918 }
2919
Kuninori Morimoto613fb502020-01-10 11:35:21 +09002920 for_each_rtd_components(rtd, i, component) {
Kuninori Morimoto2b544dd2019-10-15 12:59:31 +09002921 const struct snd_soc_component_driver *drv = component->driver;
Kuninori Morimotob8135862017-10-11 01:37:23 +00002922
Takashi Iwai3b1c9522019-11-21 20:07:08 +01002923 if (drv->ioctl)
2924 rtd->ops.ioctl = snd_soc_pcm_component_ioctl;
Takashi Iwai1e5ddb62019-11-21 20:07:09 +01002925 if (drv->sync_stop)
2926 rtd->ops.sync_stop = snd_soc_pcm_component_sync_stop;
Kuninori Morimotoe9067bb2019-10-02 14:35:13 +09002927 if (drv->copy_user)
Kuninori Morimoto82d81f52019-07-26 13:51:56 +09002928 rtd->ops.copy_user = snd_soc_pcm_component_copy_user;
Kuninori Morimotoe9067bb2019-10-02 14:35:13 +09002929 if (drv->page)
Kuninori Morimoto9c712e42019-07-26 13:52:00 +09002930 rtd->ops.page = snd_soc_pcm_component_page;
Kuninori Morimotoe9067bb2019-10-02 14:35:13 +09002931 if (drv->mmap)
Kuninori Morimoto205875e2019-07-26 13:52:04 +09002932 rtd->ops.mmap = snd_soc_pcm_component_mmap;
Kuninori Morimotob8135862017-10-11 01:37:23 +00002933 }
2934
Liam Girdwoodddee6272011-06-09 14:45:53 +01002935 if (playback)
Liam Girdwood01d75842012-04-25 12:12:49 +01002936 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &rtd->ops);
Liam Girdwoodddee6272011-06-09 14:45:53 +01002937
2938 if (capture)
Liam Girdwood01d75842012-04-25 12:12:49 +01002939 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &rtd->ops);
Liam Girdwoodddee6272011-06-09 14:45:53 +01002940
Kuninori Morimotob2b2afb2019-11-18 10:50:32 +09002941 ret = snd_soc_pcm_component_new(rtd);
Kuninori Morimoto74842912019-07-26 13:52:08 +09002942 if (ret < 0) {
2943 dev_err(rtd->dev, "ASoC: pcm constructor failed: %d\n", ret);
2944 return ret;
Liam Girdwoodddee6272011-06-09 14:45:53 +01002945 }
Johan Hovoldc641e5b2017-07-12 17:55:29 +02002946
Takashi Iwai3d21ef02019-01-11 15:58:39 +01002947 pcm->no_device_suspend = true;
Liam Girdwood01d75842012-04-25 12:12:49 +01002948out:
Benoit Cousson2e5894d2014-07-08 23:19:35 +02002949 dev_info(rtd->card->dev, "%s <-> %s mapping ok\n",
Kuninori Morimotoc2233a22020-03-30 10:47:37 +09002950 (rtd->num_codecs > 1) ? "multicodec" : asoc_rtd_to_codec(rtd, 0)->name,
2951 (rtd->num_cpus > 1) ? "multicpu" : asoc_rtd_to_cpu(rtd, 0)->name);
Liam Girdwoodddee6272011-06-09 14:45:53 +01002952 return ret;
2953}
Liam Girdwood01d75842012-04-25 12:12:49 +01002954
2955/* is the current PCM operation for this FE ? */
2956int snd_soc_dpcm_fe_can_update(struct snd_soc_pcm_runtime *fe, int stream)
2957{
2958 if (fe->dpcm[stream].runtime_update == SND_SOC_DPCM_UPDATE_FE)
2959 return 1;
2960 return 0;
2961}
2962EXPORT_SYMBOL_GPL(snd_soc_dpcm_fe_can_update);
2963
2964/* is the current PCM operation for this BE ? */
2965int snd_soc_dpcm_be_can_update(struct snd_soc_pcm_runtime *fe,
2966 struct snd_soc_pcm_runtime *be, int stream)
2967{
2968 if ((fe->dpcm[stream].runtime_update == SND_SOC_DPCM_UPDATE_FE) ||
2969 ((fe->dpcm[stream].runtime_update == SND_SOC_DPCM_UPDATE_BE) &&
2970 be->dpcm[stream].runtime_update))
2971 return 1;
2972 return 0;
2973}
2974EXPORT_SYMBOL_GPL(snd_soc_dpcm_be_can_update);
2975
2976/* get the substream for this BE */
2977struct snd_pcm_substream *
2978 snd_soc_dpcm_get_substream(struct snd_soc_pcm_runtime *be, int stream)
2979{
2980 return be->pcm->streams[stream].substream;
2981}
2982EXPORT_SYMBOL_GPL(snd_soc_dpcm_get_substream);
2983
Kuninori Morimoto085d22b2020-02-17 17:28:07 +09002984static int snd_soc_dpcm_check_state(struct snd_soc_pcm_runtime *fe,
2985 struct snd_soc_pcm_runtime *be,
2986 int stream,
2987 const enum snd_soc_dpcm_state *states,
2988 int num_states)
Liam Girdwood01d75842012-04-25 12:12:49 +01002989{
2990 struct snd_soc_dpcm *dpcm;
2991 int state;
KaiChieh Chuanga9764862019-03-08 13:05:53 +08002992 int ret = 1;
2993 unsigned long flags;
Kuninori Morimoto085d22b2020-02-17 17:28:07 +09002994 int i;
Liam Girdwood01d75842012-04-25 12:12:49 +01002995
KaiChieh Chuanga9764862019-03-08 13:05:53 +08002996 spin_lock_irqsave(&fe->card->dpcm_lock, flags);
Kuninori Morimotod2e24d62018-09-18 01:30:54 +00002997 for_each_dpcm_fe(be, stream, dpcm) {
Liam Girdwood01d75842012-04-25 12:12:49 +01002998
2999 if (dpcm->fe == fe)
3000 continue;
3001
3002 state = dpcm->fe->dpcm[stream].state;
Kuninori Morimoto085d22b2020-02-17 17:28:07 +09003003 for (i = 0; i < num_states; i++) {
3004 if (state == states[i]) {
3005 ret = 0;
3006 break;
3007 }
KaiChieh Chuanga9764862019-03-08 13:05:53 +08003008 }
Liam Girdwood01d75842012-04-25 12:12:49 +01003009 }
KaiChieh Chuanga9764862019-03-08 13:05:53 +08003010 spin_unlock_irqrestore(&fe->card->dpcm_lock, flags);
Liam Girdwood01d75842012-04-25 12:12:49 +01003011
Kuninori Morimoto085d22b2020-02-17 17:28:07 +09003012 /* it's safe to do this BE DAI */
KaiChieh Chuanga9764862019-03-08 13:05:53 +08003013 return ret;
Liam Girdwood01d75842012-04-25 12:12:49 +01003014}
Kuninori Morimoto085d22b2020-02-17 17:28:07 +09003015
3016/*
3017 * We can only hw_free, stop, pause or suspend a BE DAI if any of it's FE
3018 * are not running, paused or suspended for the specified stream direction.
3019 */
3020int snd_soc_dpcm_can_be_free_stop(struct snd_soc_pcm_runtime *fe,
3021 struct snd_soc_pcm_runtime *be, int stream)
3022{
3023 const enum snd_soc_dpcm_state state[] = {
3024 SND_SOC_DPCM_STATE_START,
3025 SND_SOC_DPCM_STATE_PAUSED,
3026 SND_SOC_DPCM_STATE_SUSPEND,
3027 };
3028
3029 return snd_soc_dpcm_check_state(fe, be, stream, state, ARRAY_SIZE(state));
3030}
Liam Girdwood01d75842012-04-25 12:12:49 +01003031EXPORT_SYMBOL_GPL(snd_soc_dpcm_can_be_free_stop);
3032
3033/*
3034 * We can only change hw params a BE DAI if any of it's FE are not prepared,
3035 * running, paused or suspended for the specified stream direction.
3036 */
3037int snd_soc_dpcm_can_be_params(struct snd_soc_pcm_runtime *fe,
3038 struct snd_soc_pcm_runtime *be, int stream)
3039{
Kuninori Morimoto085d22b2020-02-17 17:28:07 +09003040 const enum snd_soc_dpcm_state state[] = {
3041 SND_SOC_DPCM_STATE_START,
3042 SND_SOC_DPCM_STATE_PAUSED,
3043 SND_SOC_DPCM_STATE_SUSPEND,
3044 SND_SOC_DPCM_STATE_PREPARE,
3045 };
Liam Girdwood01d75842012-04-25 12:12:49 +01003046
Kuninori Morimoto085d22b2020-02-17 17:28:07 +09003047 return snd_soc_dpcm_check_state(fe, be, stream, state, ARRAY_SIZE(state));
Liam Girdwood01d75842012-04-25 12:12:49 +01003048}
3049EXPORT_SYMBOL_GPL(snd_soc_dpcm_can_be_params);