• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // 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>
12 
13 #include <linux/kernel.h>
14 #include <linux/init.h>
15 #include <linux/delay.h>
16 #include <linux/pinctrl/consumer.h>
17 #include <linux/pm_runtime.h>
18 #include <linux/slab.h>
19 #include <linux/workqueue.h>
20 #include <linux/export.h>
21 #include <linux/debugfs.h>
22 #include <sound/core.h>
23 #include <sound/pcm.h>
24 #include <sound/pcm_params.h>
25 #include <sound/soc.h>
26 #include <sound/soc-dpcm.h>
27 #include <sound/soc-link.h>
28 #include <sound/initval.h>
29 #include <trace/hooks/sound.h>
30 
31 #define DPCM_MAX_BE_USERS	8
32 
33 #ifdef CONFIG_DEBUG_FS
dpcm_state_string(enum snd_soc_dpcm_state state)34 static const char *dpcm_state_string(enum snd_soc_dpcm_state state)
35 {
36 	switch (state) {
37 	case SND_SOC_DPCM_STATE_NEW:
38 		return "new";
39 	case SND_SOC_DPCM_STATE_OPEN:
40 		return "open";
41 	case SND_SOC_DPCM_STATE_HW_PARAMS:
42 		return "hw_params";
43 	case SND_SOC_DPCM_STATE_PREPARE:
44 		return "prepare";
45 	case SND_SOC_DPCM_STATE_START:
46 		return "start";
47 	case SND_SOC_DPCM_STATE_STOP:
48 		return "stop";
49 	case SND_SOC_DPCM_STATE_SUSPEND:
50 		return "suspend";
51 	case SND_SOC_DPCM_STATE_PAUSED:
52 		return "paused";
53 	case SND_SOC_DPCM_STATE_HW_FREE:
54 		return "hw_free";
55 	case SND_SOC_DPCM_STATE_CLOSE:
56 		return "close";
57 	}
58 
59 	return "unknown";
60 }
61 
dpcm_show_state(struct snd_soc_pcm_runtime * fe,int stream,char * buf,size_t size)62 static ssize_t dpcm_show_state(struct snd_soc_pcm_runtime *fe,
63 			       int stream, char *buf, size_t size)
64 {
65 	struct snd_pcm_hw_params *params = &fe->dpcm[stream].hw_params;
66 	struct snd_soc_dpcm *dpcm;
67 	ssize_t offset = 0;
68 	unsigned long flags;
69 
70 	/* FE state */
71 	offset += scnprintf(buf + offset, size - offset,
72 			   "[%s - %s]\n", fe->dai_link->name,
73 			   stream ? "Capture" : "Playback");
74 
75 	offset += scnprintf(buf + offset, size - offset, "State: %s\n",
76 			   dpcm_state_string(fe->dpcm[stream].state));
77 
78 	if ((fe->dpcm[stream].state >= SND_SOC_DPCM_STATE_HW_PARAMS) &&
79 	    (fe->dpcm[stream].state <= SND_SOC_DPCM_STATE_STOP))
80 		offset += scnprintf(buf + offset, size - offset,
81 				   "Hardware Params: "
82 				   "Format = %s, Channels = %d, Rate = %d\n",
83 				   snd_pcm_format_name(params_format(params)),
84 				   params_channels(params),
85 				   params_rate(params));
86 
87 	/* BEs state */
88 	offset += scnprintf(buf + offset, size - offset, "Backends:\n");
89 
90 	if (list_empty(&fe->dpcm[stream].be_clients)) {
91 		offset += scnprintf(buf + offset, size - offset,
92 				   " No active DSP links\n");
93 		goto out;
94 	}
95 
96 	spin_lock_irqsave(&fe->card->dpcm_lock, flags);
97 	for_each_dpcm_be(fe, stream, dpcm) {
98 		struct snd_soc_pcm_runtime *be = dpcm->be;
99 		params = &dpcm->hw_params;
100 
101 		offset += scnprintf(buf + offset, size - offset,
102 				   "- %s\n", be->dai_link->name);
103 
104 		offset += scnprintf(buf + offset, size - offset,
105 				   "   State: %s\n",
106 				   dpcm_state_string(be->dpcm[stream].state));
107 
108 		if ((be->dpcm[stream].state >= SND_SOC_DPCM_STATE_HW_PARAMS) &&
109 		    (be->dpcm[stream].state <= SND_SOC_DPCM_STATE_STOP))
110 			offset += scnprintf(buf + offset, size - offset,
111 					   "   Hardware Params: "
112 					   "Format = %s, Channels = %d, Rate = %d\n",
113 					   snd_pcm_format_name(params_format(params)),
114 					   params_channels(params),
115 					   params_rate(params));
116 	}
117 	spin_unlock_irqrestore(&fe->card->dpcm_lock, flags);
118 out:
119 	return offset;
120 }
121 
dpcm_state_read_file(struct file * file,char __user * user_buf,size_t count,loff_t * ppos)122 static ssize_t dpcm_state_read_file(struct file *file, char __user *user_buf,
123 				    size_t count, loff_t *ppos)
124 {
125 	struct snd_soc_pcm_runtime *fe = file->private_data;
126 	ssize_t out_count = PAGE_SIZE, offset = 0, ret = 0;
127 	int stream;
128 	char *buf;
129 
130 	if (fe->num_cpus > 1) {
131 		dev_err(fe->dev,
132 			"%s doesn't support Multi CPU yet\n", __func__);
133 		return -EINVAL;
134 	}
135 
136 	buf = kmalloc(out_count, GFP_KERNEL);
137 	if (!buf)
138 		return -ENOMEM;
139 
140 	for_each_pcm_streams(stream)
141 		if (snd_soc_dai_stream_valid(asoc_rtd_to_cpu(fe, 0), stream))
142 			offset += dpcm_show_state(fe, stream,
143 						  buf + offset,
144 						  out_count - offset);
145 
146 	ret = simple_read_from_buffer(user_buf, count, ppos, buf, offset);
147 
148 	kfree(buf);
149 	return ret;
150 }
151 
152 static const struct file_operations dpcm_state_fops = {
153 	.open = simple_open,
154 	.read = dpcm_state_read_file,
155 	.llseek = default_llseek,
156 };
157 
soc_dpcm_debugfs_add(struct snd_soc_pcm_runtime * rtd)158 void soc_dpcm_debugfs_add(struct snd_soc_pcm_runtime *rtd)
159 {
160 	if (!rtd->dai_link)
161 		return;
162 
163 	if (!rtd->dai_link->dynamic)
164 		return;
165 
166 	if (!rtd->card->debugfs_card_root)
167 		return;
168 
169 	rtd->debugfs_dpcm_root = debugfs_create_dir(rtd->dai_link->name,
170 						    rtd->card->debugfs_card_root);
171 
172 	debugfs_create_file("state", 0444, rtd->debugfs_dpcm_root,
173 			    rtd, &dpcm_state_fops);
174 }
175 
dpcm_create_debugfs_state(struct snd_soc_dpcm * dpcm,int stream)176 static void dpcm_create_debugfs_state(struct snd_soc_dpcm *dpcm, int stream)
177 {
178 	char *name;
179 
180 	name = kasprintf(GFP_KERNEL, "%s:%s", dpcm->be->dai_link->name,
181 			 stream ? "capture" : "playback");
182 	if (name) {
183 		dpcm->debugfs_state = debugfs_create_dir(
184 			name, dpcm->fe->debugfs_dpcm_root);
185 		debugfs_create_u32("state", 0644, dpcm->debugfs_state,
186 				   &dpcm->state);
187 		kfree(name);
188 	}
189 }
190 
dpcm_remove_debugfs_state(struct snd_soc_dpcm * dpcm)191 static void dpcm_remove_debugfs_state(struct snd_soc_dpcm *dpcm)
192 {
193 	debugfs_remove_recursive(dpcm->debugfs_state);
194 }
195 
196 #else
dpcm_create_debugfs_state(struct snd_soc_dpcm * dpcm,int stream)197 static inline void dpcm_create_debugfs_state(struct snd_soc_dpcm *dpcm,
198 					     int stream)
199 {
200 }
201 
dpcm_remove_debugfs_state(struct snd_soc_dpcm * dpcm)202 static inline void dpcm_remove_debugfs_state(struct snd_soc_dpcm *dpcm)
203 {
204 }
205 #endif
206 
207 /**
208  * snd_soc_runtime_action() - Increment/Decrement active count for
209  * PCM runtime components
210  * @rtd: ASoC PCM runtime that is activated
211  * @stream: Direction of the PCM stream
212  * @action: Activate stream if 1. Deactivate if -1.
213  *
214  * Increments/Decrements the active count for all the DAIs and components
215  * attached to a PCM runtime.
216  * Should typically be called when a stream is opened.
217  *
218  * Must be called with the rtd->card->pcm_mutex being held
219  */
snd_soc_runtime_action(struct snd_soc_pcm_runtime * rtd,int stream,int action)220 void snd_soc_runtime_action(struct snd_soc_pcm_runtime *rtd,
221 			    int stream, int action)
222 {
223 	struct snd_soc_dai *dai;
224 	int i;
225 
226 	lockdep_assert_held(&rtd->card->pcm_mutex);
227 
228 	for_each_rtd_dais(rtd, i, dai)
229 		snd_soc_dai_action(dai, stream, action);
230 }
231 EXPORT_SYMBOL_GPL(snd_soc_runtime_action);
232 
233 /**
234  * snd_soc_runtime_ignore_pmdown_time() - Check whether to ignore the power down delay
235  * @rtd: The ASoC PCM runtime that should be checked.
236  *
237  * This function checks whether the power down delay should be ignored for a
238  * specific PCM runtime. Returns true if the delay is 0, if it the DAI link has
239  * been configured to ignore the delay, or if none of the components benefits
240  * from having the delay.
241  */
snd_soc_runtime_ignore_pmdown_time(struct snd_soc_pcm_runtime * rtd)242 bool snd_soc_runtime_ignore_pmdown_time(struct snd_soc_pcm_runtime *rtd)
243 {
244 	struct snd_soc_component *component;
245 	bool ignore = true;
246 	int i;
247 
248 	if (!rtd->pmdown_time || rtd->dai_link->ignore_pmdown_time)
249 		return true;
250 
251 	for_each_rtd_components(rtd, i, component)
252 		ignore &= !component->driver->use_pmdown_time;
253 
254 	return ignore;
255 }
256 
257 /**
258  * snd_soc_set_runtime_hwparams - set the runtime hardware parameters
259  * @substream: the pcm substream
260  * @hw: the hardware parameters
261  *
262  * Sets the substream runtime hardware parameters.
263  */
snd_soc_set_runtime_hwparams(struct snd_pcm_substream * substream,const struct snd_pcm_hardware * hw)264 int snd_soc_set_runtime_hwparams(struct snd_pcm_substream *substream,
265 	const struct snd_pcm_hardware *hw)
266 {
267 	struct snd_pcm_runtime *runtime = substream->runtime;
268 	runtime->hw.info = hw->info;
269 	runtime->hw.formats = hw->formats;
270 	runtime->hw.period_bytes_min = hw->period_bytes_min;
271 	runtime->hw.period_bytes_max = hw->period_bytes_max;
272 	runtime->hw.periods_min = hw->periods_min;
273 	runtime->hw.periods_max = hw->periods_max;
274 	runtime->hw.buffer_bytes_max = hw->buffer_bytes_max;
275 	runtime->hw.fifo_size = hw->fifo_size;
276 	return 0;
277 }
278 EXPORT_SYMBOL_GPL(snd_soc_set_runtime_hwparams);
279 
280 /* DPCM stream event, send event to FE and all active BEs. */
dpcm_dapm_stream_event(struct snd_soc_pcm_runtime * fe,int dir,int event)281 int dpcm_dapm_stream_event(struct snd_soc_pcm_runtime *fe, int dir,
282 	int event)
283 {
284 	struct snd_soc_dpcm *dpcm;
285 
286 	for_each_dpcm_be(fe, dir, dpcm) {
287 
288 		struct snd_soc_pcm_runtime *be = dpcm->be;
289 
290 		dev_dbg(be->dev, "ASoC: BE %s event %d dir %d\n",
291 				be->dai_link->name, event, dir);
292 
293 		if ((event == SND_SOC_DAPM_STREAM_STOP) &&
294 		    (be->dpcm[dir].users >= 1))
295 			continue;
296 
297 		snd_soc_dapm_stream_event(be, dir, event);
298 	}
299 
300 	snd_soc_dapm_stream_event(fe, dir, event);
301 
302 	return 0;
303 }
304 
soc_pcm_apply_symmetry(struct snd_pcm_substream * substream,struct snd_soc_dai * soc_dai)305 static int soc_pcm_apply_symmetry(struct snd_pcm_substream *substream,
306 					struct snd_soc_dai *soc_dai)
307 {
308 	struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
309 	int ret;
310 
311 	if (soc_dai->rate && (soc_dai->driver->symmetric_rates ||
312 				rtd->dai_link->symmetric_rates)) {
313 		dev_dbg(soc_dai->dev, "ASoC: Symmetry forces %dHz rate\n",
314 				soc_dai->rate);
315 
316 		ret = snd_pcm_hw_constraint_single(substream->runtime,
317 						SNDRV_PCM_HW_PARAM_RATE,
318 						soc_dai->rate);
319 		if (ret < 0) {
320 			dev_err(soc_dai->dev,
321 				"ASoC: Unable to apply rate constraint: %d\n",
322 				ret);
323 			return ret;
324 		}
325 	}
326 
327 	if (soc_dai->channels && (soc_dai->driver->symmetric_channels ||
328 				rtd->dai_link->symmetric_channels)) {
329 		dev_dbg(soc_dai->dev, "ASoC: Symmetry forces %d channel(s)\n",
330 				soc_dai->channels);
331 
332 		ret = snd_pcm_hw_constraint_single(substream->runtime,
333 						SNDRV_PCM_HW_PARAM_CHANNELS,
334 						soc_dai->channels);
335 		if (ret < 0) {
336 			dev_err(soc_dai->dev,
337 				"ASoC: Unable to apply channel symmetry constraint: %d\n",
338 				ret);
339 			return ret;
340 		}
341 	}
342 
343 	if (soc_dai->sample_bits && (soc_dai->driver->symmetric_samplebits ||
344 				rtd->dai_link->symmetric_samplebits)) {
345 		dev_dbg(soc_dai->dev, "ASoC: Symmetry forces %d sample bits\n",
346 				soc_dai->sample_bits);
347 
348 		ret = snd_pcm_hw_constraint_single(substream->runtime,
349 						SNDRV_PCM_HW_PARAM_SAMPLE_BITS,
350 						soc_dai->sample_bits);
351 		if (ret < 0) {
352 			dev_err(soc_dai->dev,
353 				"ASoC: Unable to apply sample bits symmetry constraint: %d\n",
354 				ret);
355 			return ret;
356 		}
357 	}
358 
359 	return 0;
360 }
361 
soc_pcm_params_symmetry(struct snd_pcm_substream * substream,struct snd_pcm_hw_params * params)362 static int soc_pcm_params_symmetry(struct snd_pcm_substream *substream,
363 				struct snd_pcm_hw_params *params)
364 {
365 	struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
366 	struct snd_soc_dai *dai;
367 	struct snd_soc_dai *cpu_dai;
368 	unsigned int rate, channels, sample_bits, symmetry, i;
369 
370 	rate = params_rate(params);
371 	channels = params_channels(params);
372 	sample_bits = snd_pcm_format_physical_width(params_format(params));
373 
374 	/* reject unmatched parameters when applying symmetry */
375 	symmetry = rtd->dai_link->symmetric_rates;
376 
377 	for_each_rtd_cpu_dais(rtd, i, dai)
378 		symmetry |= dai->driver->symmetric_rates;
379 
380 	if (symmetry) {
381 		for_each_rtd_cpu_dais(rtd, i, cpu_dai) {
382 			if (cpu_dai->rate && cpu_dai->rate != rate) {
383 				dev_err(rtd->dev, "ASoC: unmatched rate symmetry: %d - %d\n",
384 					cpu_dai->rate, rate);
385 				return -EINVAL;
386 			}
387 		}
388 	}
389 
390 	symmetry = rtd->dai_link->symmetric_channels;
391 
392 	for_each_rtd_dais(rtd, i, dai)
393 		symmetry |= dai->driver->symmetric_channels;
394 
395 	if (symmetry) {
396 		for_each_rtd_cpu_dais(rtd, i, cpu_dai) {
397 			if (cpu_dai->channels &&
398 			    cpu_dai->channels != channels) {
399 				dev_err(rtd->dev, "ASoC: unmatched channel symmetry: %d - %d\n",
400 					cpu_dai->channels, channels);
401 				return -EINVAL;
402 			}
403 		}
404 	}
405 
406 	symmetry = rtd->dai_link->symmetric_samplebits;
407 
408 	for_each_rtd_dais(rtd, i, dai)
409 		symmetry |= dai->driver->symmetric_samplebits;
410 
411 	if (symmetry) {
412 		for_each_rtd_cpu_dais(rtd, i, cpu_dai) {
413 			if (cpu_dai->sample_bits &&
414 			    cpu_dai->sample_bits != sample_bits) {
415 				dev_err(rtd->dev, "ASoC: unmatched sample bits symmetry: %d - %d\n",
416 					cpu_dai->sample_bits, sample_bits);
417 				return -EINVAL;
418 			}
419 		}
420 	}
421 
422 	return 0;
423 }
424 
soc_pcm_has_symmetry(struct snd_pcm_substream * substream)425 static bool soc_pcm_has_symmetry(struct snd_pcm_substream *substream)
426 {
427 	struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
428 	struct snd_soc_dai_link *link = rtd->dai_link;
429 	struct snd_soc_dai *dai;
430 	unsigned int symmetry, i;
431 
432 	symmetry = link->symmetric_rates ||
433 		link->symmetric_channels ||
434 		link->symmetric_samplebits;
435 
436 	for_each_rtd_dais(rtd, i, dai)
437 		symmetry = symmetry ||
438 			dai->driver->symmetric_rates ||
439 			dai->driver->symmetric_channels ||
440 			dai->driver->symmetric_samplebits;
441 
442 	return symmetry;
443 }
444 
soc_pcm_set_msb(struct snd_pcm_substream * substream,int bits)445 static void soc_pcm_set_msb(struct snd_pcm_substream *substream, int bits)
446 {
447 	struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
448 	int ret;
449 
450 	if (!bits)
451 		return;
452 
453 	ret = snd_pcm_hw_constraint_msbits(substream->runtime, 0, 0, bits);
454 	if (ret != 0)
455 		dev_warn(rtd->dev, "ASoC: Failed to set MSB %d: %d\n",
456 				 bits, ret);
457 }
458 
soc_pcm_apply_msb(struct snd_pcm_substream * substream)459 static void soc_pcm_apply_msb(struct snd_pcm_substream *substream)
460 {
461 	struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
462 	struct snd_soc_dai *cpu_dai;
463 	struct snd_soc_dai *codec_dai;
464 	struct snd_soc_pcm_stream *pcm_codec, *pcm_cpu;
465 	int stream = substream->stream;
466 	int i;
467 	unsigned int bits = 0, cpu_bits = 0;
468 
469 	for_each_rtd_codec_dais(rtd, i, codec_dai) {
470 		pcm_codec = snd_soc_dai_get_pcm_stream(codec_dai, stream);
471 
472 		if (pcm_codec->sig_bits == 0) {
473 			bits = 0;
474 			break;
475 		}
476 		bits = max(pcm_codec->sig_bits, bits);
477 	}
478 
479 	for_each_rtd_cpu_dais(rtd, i, cpu_dai) {
480 		pcm_cpu = snd_soc_dai_get_pcm_stream(cpu_dai, stream);
481 
482 		if (pcm_cpu->sig_bits == 0) {
483 			cpu_bits = 0;
484 			break;
485 		}
486 		cpu_bits = max(pcm_cpu->sig_bits, cpu_bits);
487 	}
488 
489 	soc_pcm_set_msb(substream, bits);
490 	soc_pcm_set_msb(substream, cpu_bits);
491 }
492 
493 /**
494  * snd_soc_runtime_calc_hw() - Calculate hw limits for a PCM stream
495  * @rtd: ASoC PCM runtime
496  * @hw: PCM hardware parameters (output)
497  * @stream: Direction of the PCM stream
498  *
499  * Calculates the subset of stream parameters supported by all DAIs
500  * associated with the PCM stream.
501  */
snd_soc_runtime_calc_hw(struct snd_soc_pcm_runtime * rtd,struct snd_pcm_hardware * hw,int stream)502 int snd_soc_runtime_calc_hw(struct snd_soc_pcm_runtime *rtd,
503 			    struct snd_pcm_hardware *hw, int stream)
504 {
505 	struct snd_soc_dai *codec_dai;
506 	struct snd_soc_dai *cpu_dai;
507 	struct snd_soc_pcm_stream *codec_stream;
508 	struct snd_soc_pcm_stream *cpu_stream;
509 	unsigned int chan_min = 0, chan_max = UINT_MAX;
510 	unsigned int cpu_chan_min = 0, cpu_chan_max = UINT_MAX;
511 	unsigned int rate_min = 0, rate_max = UINT_MAX;
512 	unsigned int cpu_rate_min = 0, cpu_rate_max = UINT_MAX;
513 	unsigned int rates = UINT_MAX, cpu_rates = UINT_MAX;
514 	u64 formats = ULLONG_MAX;
515 	int i;
516 
517 	/* first calculate min/max only for CPUs in the DAI link */
518 	for_each_rtd_cpu_dais(rtd, i, cpu_dai) {
519 
520 		/*
521 		 * Skip CPUs which don't support the current stream type.
522 		 * Otherwise, since the rate, channel, and format values will
523 		 * zero in that case, we would have no usable settings left,
524 		 * causing the resulting setup to fail.
525 		 */
526 		if (!snd_soc_dai_stream_valid(cpu_dai, stream))
527 			continue;
528 
529 		cpu_stream = snd_soc_dai_get_pcm_stream(cpu_dai, stream);
530 
531 		cpu_chan_min = max(cpu_chan_min, cpu_stream->channels_min);
532 		cpu_chan_max = min(cpu_chan_max, cpu_stream->channels_max);
533 		cpu_rate_min = max(cpu_rate_min, cpu_stream->rate_min);
534 		cpu_rate_max = min_not_zero(cpu_rate_max, cpu_stream->rate_max);
535 		formats &= cpu_stream->formats;
536 		cpu_rates = snd_pcm_rate_mask_intersect(cpu_stream->rates,
537 							cpu_rates);
538 	}
539 
540 	/* second calculate min/max only for CODECs in the DAI link */
541 	for_each_rtd_codec_dais(rtd, i, codec_dai) {
542 
543 		/*
544 		 * Skip CODECs which don't support the current stream type.
545 		 * Otherwise, since the rate, channel, and format values will
546 		 * zero in that case, we would have no usable settings left,
547 		 * causing the resulting setup to fail.
548 		 */
549 		if (!snd_soc_dai_stream_valid(codec_dai, stream))
550 			continue;
551 
552 		codec_stream = snd_soc_dai_get_pcm_stream(codec_dai, stream);
553 
554 		chan_min = max(chan_min, codec_stream->channels_min);
555 		chan_max = min(chan_max, codec_stream->channels_max);
556 		rate_min = max(rate_min, codec_stream->rate_min);
557 		rate_max = min_not_zero(rate_max, codec_stream->rate_max);
558 		formats &= codec_stream->formats;
559 		rates = snd_pcm_rate_mask_intersect(codec_stream->rates, rates);
560 	}
561 
562 	/* Verify both a valid CPU DAI and a valid CODEC DAI were found */
563 	if (!chan_min || !cpu_chan_min)
564 		return -EINVAL;
565 
566 	/*
567 	 * chan min/max cannot be enforced if there are multiple CODEC DAIs
568 	 * connected to CPU DAI(s), use CPU DAI's directly and let
569 	 * channel allocation be fixed up later
570 	 */
571 	if (rtd->num_codecs > 1) {
572 		chan_min = cpu_chan_min;
573 		chan_max = cpu_chan_max;
574 	}
575 
576 	/* finally find a intersection between CODECs and CPUs */
577 	hw->channels_min = max(chan_min, cpu_chan_min);
578 	hw->channels_max = min(chan_max, cpu_chan_max);
579 	hw->formats = formats;
580 	hw->rates = snd_pcm_rate_mask_intersect(rates, cpu_rates);
581 
582 	snd_pcm_hw_limit_rates(hw);
583 
584 	hw->rate_min = max(hw->rate_min, cpu_rate_min);
585 	hw->rate_min = max(hw->rate_min, rate_min);
586 	hw->rate_max = min_not_zero(hw->rate_max, cpu_rate_max);
587 	hw->rate_max = min_not_zero(hw->rate_max, rate_max);
588 
589 	return 0;
590 }
591 EXPORT_SYMBOL_GPL(snd_soc_runtime_calc_hw);
592 
soc_pcm_init_runtime_hw(struct snd_pcm_substream * substream)593 static void soc_pcm_init_runtime_hw(struct snd_pcm_substream *substream)
594 {
595 	struct snd_pcm_hardware *hw = &substream->runtime->hw;
596 	struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
597 	u64 formats = hw->formats;
598 
599 	/*
600 	 * At least one CPU and one CODEC should match. Otherwise, we should
601 	 * have bailed out on a higher level, since there would be no CPU or
602 	 * CODEC to support the transfer direction in that case.
603 	 */
604 	snd_soc_runtime_calc_hw(rtd, hw, substream->stream);
605 
606 	if (formats)
607 		hw->formats &= formats;
608 }
609 
soc_pcm_components_open(struct snd_pcm_substream * substream)610 static int soc_pcm_components_open(struct snd_pcm_substream *substream)
611 {
612 	struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
613 	struct snd_soc_component *component;
614 	int i, ret = 0;
615 
616 	for_each_rtd_components(rtd, i, component) {
617 		ret = snd_soc_component_module_get_when_open(component, substream);
618 		if (ret < 0)
619 			break;
620 
621 		ret = snd_soc_component_open(component, substream);
622 		if (ret < 0)
623 			break;
624 	}
625 
626 	return ret;
627 }
628 
soc_pcm_components_close(struct snd_pcm_substream * substream,int rollback)629 static int soc_pcm_components_close(struct snd_pcm_substream *substream,
630 				    int rollback)
631 {
632 	struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
633 	struct snd_soc_component *component;
634 	int i, r, ret = 0;
635 
636 	for_each_rtd_components(rtd, i, component) {
637 		r = snd_soc_component_close(component, substream, rollback);
638 		if (r < 0)
639 			ret = r; /* use last ret */
640 
641 		snd_soc_component_module_put_when_close(component, substream, rollback);
642 	}
643 
644 	return ret;
645 }
646 
soc_pcm_clean(struct snd_pcm_substream * substream,int rollback)647 static int soc_pcm_clean(struct snd_pcm_substream *substream, int rollback)
648 {
649 	struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
650 	struct snd_soc_component *component;
651 	struct snd_soc_dai *dai;
652 	int i;
653 
654 	mutex_lock_nested(&rtd->card->pcm_mutex, rtd->card->pcm_subclass);
655 
656 	if (!rollback)
657 		snd_soc_runtime_deactivate(rtd, substream->stream);
658 
659 	for_each_rtd_dais(rtd, i, dai)
660 		snd_soc_dai_shutdown(dai, substream, rollback);
661 
662 	snd_soc_link_shutdown(substream, rollback);
663 
664 	soc_pcm_components_close(substream, rollback);
665 
666 	if (!rollback)
667 		snd_soc_dapm_stream_stop(rtd, substream->stream);
668 
669 	mutex_unlock(&rtd->card->pcm_mutex);
670 
671 	snd_soc_pcm_component_pm_runtime_put(rtd, substream, rollback);
672 
673 	for_each_rtd_components(rtd, i, component)
674 		if (!snd_soc_component_active(component))
675 			pinctrl_pm_select_sleep_state(component->dev);
676 
677 	return 0;
678 }
679 
680 /*
681  * Called by ALSA when a PCM substream is closed. Private data can be
682  * freed here. The cpu DAI, codec DAI, machine and components are also
683  * shutdown.
684  */
soc_pcm_close(struct snd_pcm_substream * substream)685 static int soc_pcm_close(struct snd_pcm_substream *substream)
686 {
687 	return soc_pcm_clean(substream, 0);
688 }
689 
690 /*
691  * Called by ALSA when a PCM substream is opened, the runtime->hw record is
692  * then initialized and any private data can be allocated. This also calls
693  * startup for the cpu DAI, component, machine and codec DAI.
694  */
soc_pcm_open(struct snd_pcm_substream * substream)695 static int soc_pcm_open(struct snd_pcm_substream *substream)
696 {
697 	struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
698 	struct snd_pcm_runtime *runtime = substream->runtime;
699 	struct snd_soc_component *component;
700 	struct snd_soc_dai *dai;
701 	const char *codec_dai_name = "multicodec";
702 	const char *cpu_dai_name = "multicpu";
703 	int i, ret = 0;
704 
705 	for_each_rtd_components(rtd, i, component)
706 		pinctrl_pm_select_default_state(component->dev);
707 
708 	ret = snd_soc_pcm_component_pm_runtime_get(rtd, substream);
709 	if (ret < 0)
710 		goto pm_err;
711 
712 	mutex_lock_nested(&rtd->card->pcm_mutex, rtd->card->pcm_subclass);
713 
714 	ret = soc_pcm_components_open(substream);
715 	if (ret < 0)
716 		goto err;
717 
718 	ret = snd_soc_link_startup(substream);
719 	if (ret < 0)
720 		goto err;
721 
722 	/* startup the audio subsystem */
723 	for_each_rtd_dais(rtd, i, dai) {
724 		ret = snd_soc_dai_startup(dai, substream);
725 		if (ret < 0)
726 			goto err;
727 	}
728 
729 	/* Dynamic PCM DAI links compat checks use dynamic capabilities */
730 	if (rtd->dai_link->dynamic || rtd->dai_link->no_pcm)
731 		goto dynamic;
732 
733 	/* Check that the codec and cpu DAIs are compatible */
734 	soc_pcm_init_runtime_hw(substream);
735 
736 	if (rtd->num_codecs == 1)
737 		codec_dai_name = asoc_rtd_to_codec(rtd, 0)->name;
738 
739 	if (rtd->num_cpus == 1)
740 		cpu_dai_name = asoc_rtd_to_cpu(rtd, 0)->name;
741 
742 	if (soc_pcm_has_symmetry(substream))
743 		runtime->hw.info |= SNDRV_PCM_INFO_JOINT_DUPLEX;
744 
745 	ret = -EINVAL;
746 	if (!runtime->hw.rates) {
747 		printk(KERN_ERR "ASoC: %s <-> %s No matching rates\n",
748 			codec_dai_name, cpu_dai_name);
749 		goto err;
750 	}
751 	if (!runtime->hw.formats) {
752 		printk(KERN_ERR "ASoC: %s <-> %s No matching formats\n",
753 			codec_dai_name, cpu_dai_name);
754 		goto err;
755 	}
756 	if (!runtime->hw.channels_min || !runtime->hw.channels_max ||
757 	    runtime->hw.channels_min > runtime->hw.channels_max) {
758 		printk(KERN_ERR "ASoC: %s <-> %s No matching channels\n",
759 				codec_dai_name, cpu_dai_name);
760 		goto err;
761 	}
762 
763 	soc_pcm_apply_msb(substream);
764 
765 	/* Symmetry only applies if we've already got an active stream. */
766 	for_each_rtd_dais(rtd, i, dai) {
767 		if (snd_soc_dai_active(dai)) {
768 			ret = soc_pcm_apply_symmetry(substream, dai);
769 			if (ret != 0)
770 				goto err;
771 		}
772 	}
773 
774 	pr_debug("ASoC: %s <-> %s info:\n",
775 		 codec_dai_name, cpu_dai_name);
776 	pr_debug("ASoC: rate mask 0x%x\n", runtime->hw.rates);
777 	pr_debug("ASoC: min ch %d max ch %d\n", runtime->hw.channels_min,
778 		 runtime->hw.channels_max);
779 	pr_debug("ASoC: min rate %d max rate %d\n", runtime->hw.rate_min,
780 		 runtime->hw.rate_max);
781 dynamic:
782 	snd_soc_runtime_activate(rtd, substream->stream);
783 	ret = 0;
784 err:
785 	mutex_unlock(&rtd->card->pcm_mutex);
786 pm_err:
787 	if (ret < 0)
788 		soc_pcm_clean(substream, 1);
789 
790 	return ret;
791 }
792 
codec2codec_close_delayed_work(struct snd_soc_pcm_runtime * rtd)793 static void codec2codec_close_delayed_work(struct snd_soc_pcm_runtime *rtd)
794 {
795 	/*
796 	 * Currently nothing to do for c2c links
797 	 * Since c2c links are internal nodes in the DAPM graph and
798 	 * don't interface with the outside world or application layer
799 	 * we don't have to do any special handling on close.
800 	 */
801 }
802 
803 /*
804  * Called by ALSA when the PCM substream is prepared, can set format, sample
805  * rate, etc.  This function is non atomic and can be called multiple times,
806  * it can refer to the runtime info.
807  */
soc_pcm_prepare(struct snd_pcm_substream * substream)808 static int soc_pcm_prepare(struct snd_pcm_substream *substream)
809 {
810 	struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
811 	struct snd_soc_dai *dai;
812 	int i, ret = 0;
813 
814 	mutex_lock_nested(&rtd->card->pcm_mutex, rtd->card->pcm_subclass);
815 
816 	ret = snd_soc_link_prepare(substream);
817 	if (ret < 0)
818 		goto out;
819 
820 	ret = snd_soc_pcm_component_prepare(substream);
821 	if (ret < 0)
822 		goto out;
823 
824 	ret = snd_soc_pcm_dai_prepare(substream);
825 	if (ret < 0) {
826 		dev_err(rtd->dev, "ASoC: DAI prepare error: %d\n", ret);
827 		goto out;
828 	}
829 
830 	/* cancel any delayed stream shutdown that is pending */
831 	if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
832 	    rtd->pop_wait) {
833 		rtd->pop_wait = 0;
834 		cancel_delayed_work(&rtd->delayed_work);
835 	}
836 
837 	snd_soc_dapm_stream_event(rtd, substream->stream,
838 			SND_SOC_DAPM_STREAM_START);
839 
840 	for_each_rtd_dais(rtd, i, dai)
841 		snd_soc_dai_digital_mute(dai, 0, substream->stream);
842 
843 out:
844 	mutex_unlock(&rtd->card->pcm_mutex);
845 	return ret;
846 }
847 
soc_pcm_codec_params_fixup(struct snd_pcm_hw_params * params,unsigned int mask)848 static void soc_pcm_codec_params_fixup(struct snd_pcm_hw_params *params,
849 				       unsigned int mask)
850 {
851 	struct snd_interval *interval;
852 	int channels = hweight_long(mask);
853 
854 	interval = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
855 	interval->min = channels;
856 	interval->max = channels;
857 }
858 
859 /*
860  * Called by ALSA when the hardware params are set by application. This
861  * function can also be called multiple times and can allocate buffers
862  * (using snd_pcm_lib_* ). It's non-atomic.
863  */
soc_pcm_hw_params(struct snd_pcm_substream * substream,struct snd_pcm_hw_params * params)864 static int soc_pcm_hw_params(struct snd_pcm_substream *substream,
865 				struct snd_pcm_hw_params *params)
866 {
867 	struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
868 	struct snd_soc_component *component;
869 	struct snd_soc_dai *cpu_dai;
870 	struct snd_soc_dai *codec_dai;
871 	int i, ret = 0;
872 
873 	mutex_lock_nested(&rtd->card->pcm_mutex, rtd->card->pcm_subclass);
874 
875 	ret = soc_pcm_params_symmetry(substream, params);
876 	if (ret)
877 		goto out;
878 
879 	ret = snd_soc_link_hw_params(substream, params);
880 	if (ret < 0)
881 		goto out;
882 
883 	for_each_rtd_codec_dais(rtd, i, codec_dai) {
884 		struct snd_pcm_hw_params codec_params;
885 
886 		/*
887 		 * Skip CODECs which don't support the current stream type,
888 		 * the idea being that if a CODEC is not used for the currently
889 		 * set up transfer direction, it should not need to be
890 		 * configured, especially since the configuration used might
891 		 * not even be supported by that CODEC. There may be cases
892 		 * however where a CODEC needs to be set up although it is
893 		 * actually not being used for the transfer, e.g. if a
894 		 * capture-only CODEC is acting as an LRCLK and/or BCLK master
895 		 * for the DAI link including a playback-only CODEC.
896 		 * If this becomes necessary, we will have to augment the
897 		 * machine driver setup with information on how to act, so
898 		 * we can do the right thing here.
899 		 */
900 		if (!snd_soc_dai_stream_valid(codec_dai, substream->stream))
901 			continue;
902 
903 		/* copy params for each codec */
904 		codec_params = *params;
905 
906 		/* fixup params based on TDM slot masks */
907 		if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
908 		    codec_dai->tx_mask)
909 			soc_pcm_codec_params_fixup(&codec_params,
910 						   codec_dai->tx_mask);
911 
912 		if (substream->stream == SNDRV_PCM_STREAM_CAPTURE &&
913 		    codec_dai->rx_mask)
914 			soc_pcm_codec_params_fixup(&codec_params,
915 						   codec_dai->rx_mask);
916 
917 		ret = snd_soc_dai_hw_params(codec_dai, substream,
918 					    &codec_params);
919 		if(ret < 0)
920 			goto codec_err;
921 
922 		codec_dai->rate = params_rate(&codec_params);
923 		codec_dai->channels = params_channels(&codec_params);
924 		codec_dai->sample_bits = snd_pcm_format_physical_width(
925 						params_format(&codec_params));
926 
927 		snd_soc_dapm_update_dai(substream, &codec_params, codec_dai);
928 	}
929 
930 	for_each_rtd_cpu_dais(rtd, i, cpu_dai) {
931 		/*
932 		 * Skip CPUs which don't support the current stream
933 		 * type. See soc_pcm_init_runtime_hw() for more details
934 		 */
935 		if (!snd_soc_dai_stream_valid(cpu_dai, substream->stream))
936 			continue;
937 
938 		ret = snd_soc_dai_hw_params(cpu_dai, substream, params);
939 		if (ret < 0)
940 			goto interface_err;
941 
942 		/* store the parameters for each DAI */
943 		cpu_dai->rate = params_rate(params);
944 		cpu_dai->channels = params_channels(params);
945 		cpu_dai->sample_bits =
946 			snd_pcm_format_physical_width(params_format(params));
947 
948 		snd_soc_dapm_update_dai(substream, params, cpu_dai);
949 	}
950 
951 	ret = snd_soc_pcm_component_hw_params(substream, params, &component);
952 	if (ret < 0)
953 		goto component_err;
954 
955 out:
956 	mutex_unlock(&rtd->card->pcm_mutex);
957 	return ret;
958 
959 component_err:
960 	snd_soc_pcm_component_hw_free(substream, component);
961 
962 	i = rtd->num_cpus;
963 
964 interface_err:
965 	for_each_rtd_cpu_dais_rollback(rtd, i, cpu_dai) {
966 		if (!snd_soc_dai_stream_valid(cpu_dai, substream->stream))
967 			continue;
968 
969 		snd_soc_dai_hw_free(cpu_dai, substream);
970 		cpu_dai->rate = 0;
971 	}
972 
973 	i = rtd->num_codecs;
974 
975 codec_err:
976 	for_each_rtd_codec_dais_rollback(rtd, i, codec_dai) {
977 		if (!snd_soc_dai_stream_valid(codec_dai, substream->stream))
978 			continue;
979 
980 		snd_soc_dai_hw_free(codec_dai, substream);
981 		codec_dai->rate = 0;
982 	}
983 
984 	snd_soc_link_hw_free(substream);
985 
986 	mutex_unlock(&rtd->card->pcm_mutex);
987 	return ret;
988 }
989 
990 /*
991  * Frees resources allocated by hw_params, can be called multiple times
992  */
soc_pcm_hw_free(struct snd_pcm_substream * substream)993 static int soc_pcm_hw_free(struct snd_pcm_substream *substream)
994 {
995 	struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
996 	struct snd_soc_dai *dai;
997 	int i;
998 
999 	mutex_lock_nested(&rtd->card->pcm_mutex, rtd->card->pcm_subclass);
1000 
1001 	/* clear the corresponding DAIs parameters when going to be inactive */
1002 	for_each_rtd_dais(rtd, i, dai) {
1003 		int active = snd_soc_dai_stream_active(dai, substream->stream);
1004 
1005 		if (snd_soc_dai_active(dai) == 1) {
1006 			dai->rate = 0;
1007 			dai->channels = 0;
1008 			dai->sample_bits = 0;
1009 		}
1010 
1011 		if (active == 1)
1012 			snd_soc_dai_digital_mute(dai, 1, substream->stream);
1013 	}
1014 
1015 	/* free any machine hw params */
1016 	snd_soc_link_hw_free(substream);
1017 
1018 	/* free any component resources */
1019 	snd_soc_pcm_component_hw_free(substream, NULL);
1020 
1021 	/* now free hw params for the DAIs  */
1022 	for_each_rtd_dais(rtd, i, dai) {
1023 		if (!snd_soc_dai_stream_valid(dai, substream->stream))
1024 			continue;
1025 
1026 		snd_soc_dai_hw_free(dai, substream);
1027 	}
1028 
1029 	mutex_unlock(&rtd->card->pcm_mutex);
1030 	return 0;
1031 }
1032 
soc_pcm_trigger(struct snd_pcm_substream * substream,int cmd)1033 static int soc_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
1034 {
1035 	int ret = -EINVAL;
1036 
1037 	switch (cmd) {
1038 	case SNDRV_PCM_TRIGGER_START:
1039 	case SNDRV_PCM_TRIGGER_RESUME:
1040 	case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
1041 		ret = snd_soc_link_trigger(substream, cmd);
1042 		if (ret < 0)
1043 			break;
1044 
1045 		ret = snd_soc_pcm_component_trigger(substream, cmd);
1046 		if (ret < 0)
1047 			break;
1048 
1049 		ret = snd_soc_pcm_dai_trigger(substream, cmd);
1050 		break;
1051 	case SNDRV_PCM_TRIGGER_STOP:
1052 	case SNDRV_PCM_TRIGGER_SUSPEND:
1053 	case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
1054 		ret = snd_soc_pcm_dai_trigger(substream, cmd);
1055 		if (ret < 0)
1056 			break;
1057 
1058 		ret = snd_soc_pcm_component_trigger(substream, cmd);
1059 		if (ret < 0)
1060 			break;
1061 
1062 		ret = snd_soc_link_trigger(substream, cmd);
1063 		break;
1064 	}
1065 
1066 	return ret;
1067 }
1068 
1069 /*
1070  * soc level wrapper for pointer callback
1071  * If cpu_dai, codec_dai, component driver has the delay callback, then
1072  * the runtime->delay will be updated accordingly.
1073  */
soc_pcm_pointer(struct snd_pcm_substream * substream)1074 static snd_pcm_uframes_t soc_pcm_pointer(struct snd_pcm_substream *substream)
1075 {
1076 	struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
1077 	struct snd_soc_dai *cpu_dai;
1078 	struct snd_soc_dai *codec_dai;
1079 	struct snd_pcm_runtime *runtime = substream->runtime;
1080 	snd_pcm_uframes_t offset = 0;
1081 	snd_pcm_sframes_t delay = 0;
1082 	snd_pcm_sframes_t codec_delay = 0;
1083 	snd_pcm_sframes_t cpu_delay = 0;
1084 	int i;
1085 
1086 	/* clearing the previous total delay */
1087 	runtime->delay = 0;
1088 
1089 	offset = snd_soc_pcm_component_pointer(substream);
1090 
1091 	/* base delay if assigned in pointer callback */
1092 	delay = runtime->delay;
1093 
1094 	for_each_rtd_cpu_dais(rtd, i, cpu_dai) {
1095 		cpu_delay = max(cpu_delay,
1096 				snd_soc_dai_delay(cpu_dai, substream));
1097 	}
1098 	delay += cpu_delay;
1099 
1100 	for_each_rtd_codec_dais(rtd, i, codec_dai) {
1101 		codec_delay = max(codec_delay,
1102 				  snd_soc_dai_delay(codec_dai, substream));
1103 	}
1104 	delay += codec_delay;
1105 
1106 	runtime->delay = delay;
1107 
1108 	return offset;
1109 }
1110 
1111 /* connect a FE and BE */
dpcm_be_connect(struct snd_soc_pcm_runtime * fe,struct snd_soc_pcm_runtime * be,int stream)1112 static int dpcm_be_connect(struct snd_soc_pcm_runtime *fe,
1113 		struct snd_soc_pcm_runtime *be, int stream)
1114 {
1115 	struct snd_soc_dpcm *dpcm;
1116 	unsigned long flags;
1117 
1118 	/* only add new dpcms */
1119 	for_each_dpcm_be(fe, stream, dpcm) {
1120 		if (dpcm->be == be && dpcm->fe == fe)
1121 			return 0;
1122 	}
1123 
1124 	dpcm = kzalloc(sizeof(struct snd_soc_dpcm), GFP_KERNEL);
1125 	if (!dpcm)
1126 		return -ENOMEM;
1127 
1128 	dpcm->be = be;
1129 	dpcm->fe = fe;
1130 	be->dpcm[stream].runtime = fe->dpcm[stream].runtime;
1131 	dpcm->state = SND_SOC_DPCM_LINK_STATE_NEW;
1132 	spin_lock_irqsave(&fe->card->dpcm_lock, flags);
1133 	list_add(&dpcm->list_be, &fe->dpcm[stream].be_clients);
1134 	list_add(&dpcm->list_fe, &be->dpcm[stream].fe_clients);
1135 	spin_unlock_irqrestore(&fe->card->dpcm_lock, flags);
1136 
1137 	dev_dbg(fe->dev, "connected new DPCM %s path %s %s %s\n",
1138 			stream ? "capture" : "playback",  fe->dai_link->name,
1139 			stream ? "<-" : "->", be->dai_link->name);
1140 
1141 	dpcm_create_debugfs_state(dpcm, stream);
1142 
1143 	return 1;
1144 }
1145 
1146 /* reparent a BE onto another FE */
dpcm_be_reparent(struct snd_soc_pcm_runtime * fe,struct snd_soc_pcm_runtime * be,int stream)1147 static void dpcm_be_reparent(struct snd_soc_pcm_runtime *fe,
1148 			struct snd_soc_pcm_runtime *be, int stream)
1149 {
1150 	struct snd_soc_dpcm *dpcm;
1151 	struct snd_pcm_substream *fe_substream, *be_substream;
1152 
1153 	/* reparent if BE is connected to other FEs */
1154 	if (!be->dpcm[stream].users)
1155 		return;
1156 
1157 	be_substream = snd_soc_dpcm_get_substream(be, stream);
1158 	if (!be_substream)
1159 		return;
1160 
1161 	for_each_dpcm_fe(be, stream, dpcm) {
1162 		if (dpcm->fe == fe)
1163 			continue;
1164 
1165 		dev_dbg(fe->dev, "reparent %s path %s %s %s\n",
1166 			stream ? "capture" : "playback",
1167 			dpcm->fe->dai_link->name,
1168 			stream ? "<-" : "->", dpcm->be->dai_link->name);
1169 
1170 		fe_substream = snd_soc_dpcm_get_substream(dpcm->fe, stream);
1171 		be_substream->runtime = fe_substream->runtime;
1172 		break;
1173 	}
1174 }
1175 
1176 /* disconnect a BE and FE */
dpcm_be_disconnect(struct snd_soc_pcm_runtime * fe,int stream)1177 void dpcm_be_disconnect(struct snd_soc_pcm_runtime *fe, int stream)
1178 {
1179 	struct snd_soc_dpcm *dpcm, *d;
1180 	unsigned long flags;
1181 
1182 	for_each_dpcm_be_safe(fe, stream, dpcm, d) {
1183 		dev_dbg(fe->dev, "ASoC: BE %s disconnect check for %s\n",
1184 				stream ? "capture" : "playback",
1185 				dpcm->be->dai_link->name);
1186 
1187 		if (dpcm->state != SND_SOC_DPCM_LINK_STATE_FREE)
1188 			continue;
1189 
1190 		dev_dbg(fe->dev, "freed DSP %s path %s %s %s\n",
1191 			stream ? "capture" : "playback", fe->dai_link->name,
1192 			stream ? "<-" : "->", dpcm->be->dai_link->name);
1193 
1194 		/* BEs still alive need new FE */
1195 		dpcm_be_reparent(fe, dpcm->be, stream);
1196 
1197 		dpcm_remove_debugfs_state(dpcm);
1198 
1199 		spin_lock_irqsave(&fe->card->dpcm_lock, flags);
1200 		list_del(&dpcm->list_be);
1201 		list_del(&dpcm->list_fe);
1202 		spin_unlock_irqrestore(&fe->card->dpcm_lock, flags);
1203 		kfree(dpcm);
1204 	}
1205 }
1206 
1207 /* get BE for DAI widget and stream */
dpcm_get_be(struct snd_soc_card * card,struct snd_soc_dapm_widget * widget,int stream)1208 static struct snd_soc_pcm_runtime *dpcm_get_be(struct snd_soc_card *card,
1209 		struct snd_soc_dapm_widget *widget, int stream)
1210 {
1211 	struct snd_soc_pcm_runtime *be;
1212 	struct snd_soc_dapm_widget *w;
1213 	struct snd_soc_dai *dai;
1214 	int i;
1215 
1216 	dev_dbg(card->dev, "ASoC: find BE for widget %s\n", widget->name);
1217 
1218 	for_each_card_rtds(card, be) {
1219 
1220 		if (!be->dai_link->no_pcm)
1221 			continue;
1222 
1223 		for_each_rtd_dais(be, i, dai) {
1224 			w = snd_soc_dai_get_widget(dai, stream);
1225 
1226 			dev_dbg(card->dev, "ASoC: try BE : %s\n",
1227 				w ? w->name : "(not set)");
1228 
1229 			if (w == widget)
1230 				return be;
1231 		}
1232 	}
1233 
1234 	/* Widget provided is not a BE */
1235 	return NULL;
1236 }
1237 
widget_in_list(struct snd_soc_dapm_widget_list * list,struct snd_soc_dapm_widget * widget)1238 static int widget_in_list(struct snd_soc_dapm_widget_list *list,
1239 		struct snd_soc_dapm_widget *widget)
1240 {
1241 	struct snd_soc_dapm_widget *w;
1242 	int i;
1243 
1244 	for_each_dapm_widgets(list, i, w)
1245 		if (widget == w)
1246 			return 1;
1247 
1248 	return 0;
1249 }
1250 
dpcm_end_walk_at_be(struct snd_soc_dapm_widget * widget,enum snd_soc_dapm_direction dir)1251 static bool dpcm_end_walk_at_be(struct snd_soc_dapm_widget *widget,
1252 		enum snd_soc_dapm_direction dir)
1253 {
1254 	struct snd_soc_card *card = widget->dapm->card;
1255 	struct snd_soc_pcm_runtime *rtd;
1256 	int stream;
1257 
1258 	/* adjust dir to stream */
1259 	if (dir == SND_SOC_DAPM_DIR_OUT)
1260 		stream = SNDRV_PCM_STREAM_PLAYBACK;
1261 	else
1262 		stream = SNDRV_PCM_STREAM_CAPTURE;
1263 
1264 	rtd = dpcm_get_be(card, widget, stream);
1265 	if (rtd)
1266 		return true;
1267 
1268 	return false;
1269 }
1270 
dpcm_path_get(struct snd_soc_pcm_runtime * fe,int stream,struct snd_soc_dapm_widget_list ** list)1271 int dpcm_path_get(struct snd_soc_pcm_runtime *fe,
1272 	int stream, struct snd_soc_dapm_widget_list **list)
1273 {
1274 	struct snd_soc_dai *cpu_dai = asoc_rtd_to_cpu(fe, 0);
1275 	int paths;
1276 	bool chaining = false;
1277 
1278 	if (fe->num_cpus > 1) {
1279 		dev_err(fe->dev,
1280 			"%s doesn't support Multi CPU yet\n", __func__);
1281 		return -EINVAL;
1282 	}
1283 
1284 	trace_android_vh_snd_soc_card_get_comp_chain(&chaining);
1285 
1286 	/* get number of valid DAI paths and their widgets */
1287 	paths = snd_soc_dapm_dai_get_connected_widgets(cpu_dai, stream, list,
1288 			chaining ? NULL : dpcm_end_walk_at_be);
1289 
1290 	dev_dbg(fe->dev, "ASoC: found %d audio %s paths\n", paths,
1291 			stream ? "capture" : "playback");
1292 
1293 	return paths;
1294 }
1295 
dpcm_path_put(struct snd_soc_dapm_widget_list ** list)1296 void dpcm_path_put(struct snd_soc_dapm_widget_list **list)
1297 {
1298 	snd_soc_dapm_dai_free_widgets(list);
1299 }
1300 
dpcm_be_is_active(struct snd_soc_dpcm * dpcm,int stream,struct snd_soc_dapm_widget_list * list)1301 static bool dpcm_be_is_active(struct snd_soc_dpcm *dpcm, int stream,
1302 			      struct snd_soc_dapm_widget_list *list)
1303 {
1304 	struct snd_soc_dapm_widget *widget;
1305 	struct snd_soc_dai *dai;
1306 	unsigned int i;
1307 
1308 	/* is there a valid DAI widget for this BE */
1309 	for_each_rtd_dais(dpcm->be, i, dai) {
1310 		widget = snd_soc_dai_get_widget(dai, stream);
1311 
1312 		/*
1313 		 * The BE is pruned only if none of the dai
1314 		 * widgets are in the active list.
1315 		 */
1316 		if (widget && widget_in_list(list, widget))
1317 			return true;
1318 	}
1319 
1320 	return false;
1321 }
1322 
dpcm_prune_paths(struct snd_soc_pcm_runtime * fe,int stream,struct snd_soc_dapm_widget_list ** list_)1323 static int dpcm_prune_paths(struct snd_soc_pcm_runtime *fe, int stream,
1324 			    struct snd_soc_dapm_widget_list **list_)
1325 {
1326 	struct snd_soc_dpcm *dpcm;
1327 	int prune = 0;
1328 
1329 	/* Destroy any old FE <--> BE connections */
1330 	for_each_dpcm_be(fe, stream, dpcm) {
1331 		if (dpcm_be_is_active(dpcm, stream, *list_))
1332 			continue;
1333 
1334 		dev_dbg(fe->dev, "ASoC: pruning %s BE %s for %s\n",
1335 			stream ? "capture" : "playback",
1336 			dpcm->be->dai_link->name, fe->dai_link->name);
1337 		dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE;
1338 		dpcm->be->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_BE;
1339 		prune++;
1340 	}
1341 
1342 	dev_dbg(fe->dev, "ASoC: found %d old BE paths for pruning\n", prune);
1343 	return prune;
1344 }
1345 
dpcm_add_paths(struct snd_soc_pcm_runtime * fe,int stream,struct snd_soc_dapm_widget_list ** list_)1346 static int dpcm_add_paths(struct snd_soc_pcm_runtime *fe, int stream,
1347 	struct snd_soc_dapm_widget_list **list_)
1348 {
1349 	struct snd_soc_card *card = fe->card;
1350 	struct snd_soc_dapm_widget_list *list = *list_;
1351 	struct snd_soc_pcm_runtime *be;
1352 	struct snd_soc_dapm_widget *widget;
1353 	int i, new = 0, err;
1354 
1355 	/* Create any new FE <--> BE connections */
1356 	for_each_dapm_widgets(list, i, widget) {
1357 
1358 		switch (widget->id) {
1359 		case snd_soc_dapm_dai_in:
1360 			if (stream != SNDRV_PCM_STREAM_PLAYBACK)
1361 				continue;
1362 			break;
1363 		case snd_soc_dapm_dai_out:
1364 			if (stream != SNDRV_PCM_STREAM_CAPTURE)
1365 				continue;
1366 			break;
1367 		default:
1368 			continue;
1369 		}
1370 
1371 		/* is there a valid BE rtd for this widget */
1372 		be = dpcm_get_be(card, widget, stream);
1373 		if (!be) {
1374 			dev_err(fe->dev, "ASoC: no BE found for %s\n",
1375 					widget->name);
1376 			continue;
1377 		}
1378 
1379 		/* don't connect if FE is not running */
1380 		if (!fe->dpcm[stream].runtime && !fe->fe_compr)
1381 			continue;
1382 
1383 		/* newly connected FE and BE */
1384 		err = dpcm_be_connect(fe, be, stream);
1385 		if (err < 0) {
1386 			dev_err(fe->dev, "ASoC: can't connect %s\n",
1387 				widget->name);
1388 			break;
1389 		} else if (err == 0) /* already connected */
1390 			continue;
1391 
1392 		/* new */
1393 		be->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_BE;
1394 		new++;
1395 	}
1396 
1397 	dev_dbg(fe->dev, "ASoC: found %d new BE paths\n", new);
1398 	return new;
1399 }
1400 
1401 /*
1402  * Find the corresponding BE DAIs that source or sink audio to this
1403  * FE substream.
1404  */
dpcm_process_paths(struct snd_soc_pcm_runtime * fe,int stream,struct snd_soc_dapm_widget_list ** list,int new)1405 int dpcm_process_paths(struct snd_soc_pcm_runtime *fe,
1406 	int stream, struct snd_soc_dapm_widget_list **list, int new)
1407 {
1408 	if (new)
1409 		return dpcm_add_paths(fe, stream, list);
1410 	else
1411 		return dpcm_prune_paths(fe, stream, list);
1412 }
1413 
dpcm_clear_pending_state(struct snd_soc_pcm_runtime * fe,int stream)1414 void dpcm_clear_pending_state(struct snd_soc_pcm_runtime *fe, int stream)
1415 {
1416 	struct snd_soc_dpcm *dpcm;
1417 	unsigned long flags;
1418 
1419 	spin_lock_irqsave(&fe->card->dpcm_lock, flags);
1420 	for_each_dpcm_be(fe, stream, dpcm)
1421 		dpcm->be->dpcm[stream].runtime_update =
1422 						SND_SOC_DPCM_UPDATE_NO;
1423 	spin_unlock_irqrestore(&fe->card->dpcm_lock, flags);
1424 }
1425 
dpcm_be_dai_startup_unwind(struct snd_soc_pcm_runtime * fe,int stream)1426 static void dpcm_be_dai_startup_unwind(struct snd_soc_pcm_runtime *fe,
1427 	int stream)
1428 {
1429 	struct snd_soc_dpcm *dpcm;
1430 
1431 	/* disable any enabled and non active backends */
1432 	for_each_dpcm_be(fe, stream, dpcm) {
1433 
1434 		struct snd_soc_pcm_runtime *be = dpcm->be;
1435 		struct snd_pcm_substream *be_substream =
1436 			snd_soc_dpcm_get_substream(be, stream);
1437 
1438 		if (be->dpcm[stream].users == 0)
1439 			dev_err(be->dev, "ASoC: no users %s at close - state %d\n",
1440 				stream ? "capture" : "playback",
1441 				be->dpcm[stream].state);
1442 
1443 		if (--be->dpcm[stream].users != 0)
1444 			continue;
1445 
1446 		if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN)
1447 			continue;
1448 
1449 		soc_pcm_close(be_substream);
1450 		be_substream->runtime = NULL;
1451 		be->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
1452 	}
1453 }
1454 
dpcm_be_dai_startup(struct snd_soc_pcm_runtime * fe,int stream)1455 int dpcm_be_dai_startup(struct snd_soc_pcm_runtime *fe, int stream)
1456 {
1457 	struct snd_soc_dpcm *dpcm;
1458 	int err, count = 0;
1459 
1460 	/* only startup BE DAIs that are either sinks or sources to this FE DAI */
1461 	for_each_dpcm_be(fe, stream, dpcm) {
1462 
1463 		struct snd_soc_pcm_runtime *be = dpcm->be;
1464 		struct snd_pcm_substream *be_substream =
1465 			snd_soc_dpcm_get_substream(be, stream);
1466 
1467 		if (!be_substream) {
1468 			dev_err(be->dev, "ASoC: no backend %s stream\n",
1469 				stream ? "capture" : "playback");
1470 			continue;
1471 		}
1472 
1473 		/* is this op for this BE ? */
1474 		if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1475 			continue;
1476 
1477 		/* first time the dpcm is open ? */
1478 		if (be->dpcm[stream].users == DPCM_MAX_BE_USERS)
1479 			dev_err(be->dev, "ASoC: too many users %s at open %d\n",
1480 				stream ? "capture" : "playback",
1481 				be->dpcm[stream].state);
1482 
1483 		if (be->dpcm[stream].users++ != 0)
1484 			continue;
1485 
1486 		if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_NEW) &&
1487 		    (be->dpcm[stream].state != SND_SOC_DPCM_STATE_CLOSE))
1488 			continue;
1489 
1490 		dev_dbg(be->dev, "ASoC: open %s BE %s\n",
1491 			stream ? "capture" : "playback", be->dai_link->name);
1492 
1493 		be_substream->runtime = be->dpcm[stream].runtime;
1494 		err = soc_pcm_open(be_substream);
1495 		if (err < 0) {
1496 			dev_err(be->dev, "ASoC: BE open failed %d\n", err);
1497 			be->dpcm[stream].users--;
1498 			if (be->dpcm[stream].users < 0)
1499 				dev_err(be->dev, "ASoC: no users %s at unwind %d\n",
1500 					stream ? "capture" : "playback",
1501 					be->dpcm[stream].state);
1502 
1503 			be->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
1504 			goto unwind;
1505 		}
1506 
1507 		be->dpcm[stream].state = SND_SOC_DPCM_STATE_OPEN;
1508 		count++;
1509 	}
1510 
1511 	return count;
1512 
1513 unwind:
1514 	/* disable any enabled and non active backends */
1515 	for_each_dpcm_be_rollback(fe, stream, dpcm) {
1516 		struct snd_soc_pcm_runtime *be = dpcm->be;
1517 		struct snd_pcm_substream *be_substream =
1518 			snd_soc_dpcm_get_substream(be, stream);
1519 
1520 		if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1521 			continue;
1522 
1523 		if (be->dpcm[stream].users == 0)
1524 			dev_err(be->dev, "ASoC: no users %s at close %d\n",
1525 				stream ? "capture" : "playback",
1526 				be->dpcm[stream].state);
1527 
1528 		if (--be->dpcm[stream].users != 0)
1529 			continue;
1530 
1531 		if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN)
1532 			continue;
1533 
1534 		soc_pcm_close(be_substream);
1535 		be_substream->runtime = NULL;
1536 		be->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
1537 	}
1538 
1539 	return err;
1540 }
1541 
dpcm_init_runtime_hw(struct snd_pcm_runtime * runtime,struct snd_soc_pcm_stream * stream)1542 static void dpcm_init_runtime_hw(struct snd_pcm_runtime *runtime,
1543 				 struct snd_soc_pcm_stream *stream)
1544 {
1545 	runtime->hw.rate_min = stream->rate_min;
1546 	runtime->hw.rate_max = min_not_zero(stream->rate_max, UINT_MAX);
1547 	runtime->hw.channels_min = stream->channels_min;
1548 	runtime->hw.channels_max = stream->channels_max;
1549 	if (runtime->hw.formats)
1550 		runtime->hw.formats &= stream->formats;
1551 	else
1552 		runtime->hw.formats = stream->formats;
1553 	runtime->hw.rates = stream->rates;
1554 }
1555 
dpcm_runtime_merge_format(struct snd_pcm_substream * substream,u64 * formats)1556 static void dpcm_runtime_merge_format(struct snd_pcm_substream *substream,
1557 				      u64 *formats)
1558 {
1559 	struct snd_soc_pcm_runtime *fe = asoc_substream_to_rtd(substream);
1560 	struct snd_soc_dpcm *dpcm;
1561 	struct snd_soc_dai *dai;
1562 	int stream = substream->stream;
1563 
1564 	if (!fe->dai_link->dpcm_merged_format)
1565 		return;
1566 
1567 	/*
1568 	 * It returns merged BE codec format
1569 	 * if FE want to use it (= dpcm_merged_format)
1570 	 */
1571 
1572 	for_each_dpcm_be(fe, stream, dpcm) {
1573 		struct snd_soc_pcm_runtime *be = dpcm->be;
1574 		struct snd_soc_pcm_stream *codec_stream;
1575 		int i;
1576 
1577 		for_each_rtd_codec_dais(be, i, dai) {
1578 			/*
1579 			 * Skip CODECs which don't support the current stream
1580 			 * type. See soc_pcm_init_runtime_hw() for more details
1581 			 */
1582 			if (!snd_soc_dai_stream_valid(dai, stream))
1583 				continue;
1584 
1585 			codec_stream = snd_soc_dai_get_pcm_stream(dai, stream);
1586 
1587 			*formats &= codec_stream->formats;
1588 		}
1589 	}
1590 }
1591 
dpcm_runtime_merge_chan(struct snd_pcm_substream * substream,unsigned int * channels_min,unsigned int * channels_max)1592 static void dpcm_runtime_merge_chan(struct snd_pcm_substream *substream,
1593 				    unsigned int *channels_min,
1594 				    unsigned int *channels_max)
1595 {
1596 	struct snd_soc_pcm_runtime *fe = asoc_substream_to_rtd(substream);
1597 	struct snd_soc_dpcm *dpcm;
1598 	int stream = substream->stream;
1599 
1600 	if (!fe->dai_link->dpcm_merged_chan)
1601 		return;
1602 
1603 	/*
1604 	 * It returns merged BE codec channel;
1605 	 * if FE want to use it (= dpcm_merged_chan)
1606 	 */
1607 
1608 	for_each_dpcm_be(fe, stream, dpcm) {
1609 		struct snd_soc_pcm_runtime *be = dpcm->be;
1610 		struct snd_soc_pcm_stream *codec_stream;
1611 		struct snd_soc_pcm_stream *cpu_stream;
1612 		struct snd_soc_dai *dai;
1613 		int i;
1614 
1615 		for_each_rtd_cpu_dais(be, i, dai) {
1616 			/*
1617 			 * Skip CPUs which don't support the current stream
1618 			 * type. See soc_pcm_init_runtime_hw() for more details
1619 			 */
1620 			if (!snd_soc_dai_stream_valid(dai, stream))
1621 				continue;
1622 
1623 			cpu_stream = snd_soc_dai_get_pcm_stream(dai, stream);
1624 
1625 			*channels_min = max(*channels_min,
1626 					    cpu_stream->channels_min);
1627 			*channels_max = min(*channels_max,
1628 					    cpu_stream->channels_max);
1629 		}
1630 
1631 		/*
1632 		 * chan min/max cannot be enforced if there are multiple CODEC
1633 		 * DAIs connected to a single CPU DAI, use CPU DAI's directly
1634 		 */
1635 		if (be->num_codecs == 1) {
1636 			codec_stream = snd_soc_dai_get_pcm_stream(asoc_rtd_to_codec(be, 0), stream);
1637 
1638 			*channels_min = max(*channels_min,
1639 					    codec_stream->channels_min);
1640 			*channels_max = min(*channels_max,
1641 					    codec_stream->channels_max);
1642 		}
1643 	}
1644 }
1645 
dpcm_runtime_merge_rate(struct snd_pcm_substream * substream,unsigned int * rates,unsigned int * rate_min,unsigned int * rate_max)1646 static void dpcm_runtime_merge_rate(struct snd_pcm_substream *substream,
1647 				    unsigned int *rates,
1648 				    unsigned int *rate_min,
1649 				    unsigned int *rate_max)
1650 {
1651 	struct snd_soc_pcm_runtime *fe = asoc_substream_to_rtd(substream);
1652 	struct snd_soc_dpcm *dpcm;
1653 	int stream = substream->stream;
1654 
1655 	if (!fe->dai_link->dpcm_merged_rate)
1656 		return;
1657 
1658 	/*
1659 	 * It returns merged BE codec channel;
1660 	 * if FE want to use it (= dpcm_merged_chan)
1661 	 */
1662 
1663 	for_each_dpcm_be(fe, stream, dpcm) {
1664 		struct snd_soc_pcm_runtime *be = dpcm->be;
1665 		struct snd_soc_pcm_stream *pcm;
1666 		struct snd_soc_dai *dai;
1667 		int i;
1668 
1669 		for_each_rtd_dais(be, i, dai) {
1670 			/*
1671 			 * Skip DAIs which don't support the current stream
1672 			 * type. See soc_pcm_init_runtime_hw() for more details
1673 			 */
1674 			if (!snd_soc_dai_stream_valid(dai, stream))
1675 				continue;
1676 
1677 			pcm = snd_soc_dai_get_pcm_stream(dai, stream);
1678 
1679 			*rate_min = max(*rate_min, pcm->rate_min);
1680 			*rate_max = min_not_zero(*rate_max, pcm->rate_max);
1681 			*rates = snd_pcm_rate_mask_intersect(*rates, pcm->rates);
1682 		}
1683 	}
1684 }
1685 
dpcm_set_fe_runtime(struct snd_pcm_substream * substream)1686 static void dpcm_set_fe_runtime(struct snd_pcm_substream *substream)
1687 {
1688 	struct snd_pcm_runtime *runtime = substream->runtime;
1689 	struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
1690 	struct snd_soc_dai *cpu_dai;
1691 	int i;
1692 
1693 	for_each_rtd_cpu_dais(rtd, i, cpu_dai) {
1694 		/*
1695 		 * Skip CPUs which don't support the current stream
1696 		 * type. See soc_pcm_init_runtime_hw() for more details
1697 		 */
1698 		if (!snd_soc_dai_stream_valid(cpu_dai, substream->stream))
1699 			continue;
1700 
1701 		dpcm_init_runtime_hw(runtime,
1702 			snd_soc_dai_get_pcm_stream(cpu_dai,
1703 						   substream->stream));
1704 	}
1705 
1706 	dpcm_runtime_merge_format(substream, &runtime->hw.formats);
1707 	dpcm_runtime_merge_chan(substream, &runtime->hw.channels_min,
1708 				&runtime->hw.channels_max);
1709 	dpcm_runtime_merge_rate(substream, &runtime->hw.rates,
1710 				&runtime->hw.rate_min, &runtime->hw.rate_max);
1711 }
1712 
1713 static int dpcm_fe_dai_do_trigger(struct snd_pcm_substream *substream, int cmd);
1714 
1715 /* Set FE's runtime_update state; the state is protected via PCM stream lock
1716  * for avoiding the race with trigger callback.
1717  * If the state is unset and a trigger is pending while the previous operation,
1718  * process the pending trigger action here.
1719  */
dpcm_set_fe_update_state(struct snd_soc_pcm_runtime * fe,int stream,enum snd_soc_dpcm_update state)1720 static void dpcm_set_fe_update_state(struct snd_soc_pcm_runtime *fe,
1721 				     int stream, enum snd_soc_dpcm_update state)
1722 {
1723 	struct snd_pcm_substream *substream =
1724 		snd_soc_dpcm_get_substream(fe, stream);
1725 
1726 	snd_pcm_stream_lock_irq(substream);
1727 	if (state == SND_SOC_DPCM_UPDATE_NO && fe->dpcm[stream].trigger_pending) {
1728 		dpcm_fe_dai_do_trigger(substream,
1729 				       fe->dpcm[stream].trigger_pending - 1);
1730 		fe->dpcm[stream].trigger_pending = 0;
1731 	}
1732 	fe->dpcm[stream].runtime_update = state;
1733 	snd_pcm_stream_unlock_irq(substream);
1734 }
1735 
dpcm_apply_symmetry(struct snd_pcm_substream * fe_substream,int stream)1736 static int dpcm_apply_symmetry(struct snd_pcm_substream *fe_substream,
1737 			       int stream)
1738 {
1739 	struct snd_soc_dpcm *dpcm;
1740 	struct snd_soc_pcm_runtime *fe = asoc_substream_to_rtd(fe_substream);
1741 	struct snd_soc_dai *fe_cpu_dai;
1742 	int err = 0;
1743 	int i;
1744 
1745 	/* apply symmetry for FE */
1746 	if (soc_pcm_has_symmetry(fe_substream))
1747 		fe_substream->runtime->hw.info |= SNDRV_PCM_INFO_JOINT_DUPLEX;
1748 
1749 	for_each_rtd_cpu_dais (fe, i, fe_cpu_dai) {
1750 		/* Symmetry only applies if we've got an active stream. */
1751 		if (snd_soc_dai_active(fe_cpu_dai)) {
1752 			err = soc_pcm_apply_symmetry(fe_substream, fe_cpu_dai);
1753 			if (err < 0)
1754 				return err;
1755 		}
1756 	}
1757 
1758 	/* apply symmetry for BE */
1759 	for_each_dpcm_be(fe, stream, dpcm) {
1760 		struct snd_soc_pcm_runtime *be = dpcm->be;
1761 		struct snd_pcm_substream *be_substream =
1762 			snd_soc_dpcm_get_substream(be, stream);
1763 		struct snd_soc_pcm_runtime *rtd;
1764 		struct snd_soc_dai *dai;
1765 		int i;
1766 
1767 		/* A backend may not have the requested substream */
1768 		if (!be_substream)
1769 			continue;
1770 
1771 		rtd = asoc_substream_to_rtd(be_substream);
1772 		if (rtd->dai_link->be_hw_params_fixup)
1773 			continue;
1774 
1775 		if (soc_pcm_has_symmetry(be_substream))
1776 			be_substream->runtime->hw.info |= SNDRV_PCM_INFO_JOINT_DUPLEX;
1777 
1778 		/* Symmetry only applies if we've got an active stream. */
1779 		for_each_rtd_dais(rtd, i, dai) {
1780 			if (snd_soc_dai_active(dai)) {
1781 				err = soc_pcm_apply_symmetry(fe_substream, dai);
1782 				if (err < 0)
1783 					return err;
1784 			}
1785 		}
1786 	}
1787 
1788 	return 0;
1789 }
1790 
dpcm_fe_dai_startup(struct snd_pcm_substream * fe_substream)1791 static int dpcm_fe_dai_startup(struct snd_pcm_substream *fe_substream)
1792 {
1793 	struct snd_soc_pcm_runtime *fe = asoc_substream_to_rtd(fe_substream);
1794 	struct snd_pcm_runtime *runtime = fe_substream->runtime;
1795 	int stream = fe_substream->stream, ret = 0;
1796 
1797 	dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE);
1798 
1799 	ret = dpcm_be_dai_startup(fe, stream);
1800 	if (ret < 0) {
1801 		dev_err(fe->dev,"ASoC: failed to start some BEs %d\n", ret);
1802 		goto be_err;
1803 	}
1804 
1805 	dev_dbg(fe->dev, "ASoC: open FE %s\n", fe->dai_link->name);
1806 
1807 	/* start the DAI frontend */
1808 	ret = soc_pcm_open(fe_substream);
1809 	if (ret < 0) {
1810 		dev_err(fe->dev,"ASoC: failed to start FE %d\n", ret);
1811 		goto unwind;
1812 	}
1813 
1814 	fe->dpcm[stream].state = SND_SOC_DPCM_STATE_OPEN;
1815 
1816 	dpcm_set_fe_runtime(fe_substream);
1817 	snd_pcm_limit_hw_rates(runtime);
1818 
1819 	ret = dpcm_apply_symmetry(fe_substream, stream);
1820 	if (ret < 0)
1821 		dev_err(fe->dev, "ASoC: failed to apply dpcm symmetry %d\n",
1822 			ret);
1823 
1824 unwind:
1825 	if (ret < 0)
1826 		dpcm_be_dai_startup_unwind(fe, stream);
1827 be_err:
1828 	dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
1829 	return ret;
1830 }
1831 
dpcm_be_dai_shutdown(struct snd_soc_pcm_runtime * fe,int stream)1832 int dpcm_be_dai_shutdown(struct snd_soc_pcm_runtime *fe, int stream)
1833 {
1834 	struct snd_soc_dpcm *dpcm;
1835 
1836 	/* only shutdown BEs that are either sinks or sources to this FE DAI */
1837 	for_each_dpcm_be(fe, stream, dpcm) {
1838 
1839 		struct snd_soc_pcm_runtime *be = dpcm->be;
1840 		struct snd_pcm_substream *be_substream =
1841 			snd_soc_dpcm_get_substream(be, stream);
1842 
1843 		/* is this op for this BE ? */
1844 		if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1845 			continue;
1846 
1847 		if (be->dpcm[stream].users == 0)
1848 			dev_err(be->dev, "ASoC: no users %s at close - state %d\n",
1849 				stream ? "capture" : "playback",
1850 				be->dpcm[stream].state);
1851 
1852 		if (--be->dpcm[stream].users != 0)
1853 			continue;
1854 
1855 		if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE) &&
1856 		    (be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN)) {
1857 			soc_pcm_hw_free(be_substream);
1858 			be->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_FREE;
1859 		}
1860 
1861 		dev_dbg(be->dev, "ASoC: close BE %s\n",
1862 			be->dai_link->name);
1863 
1864 		soc_pcm_close(be_substream);
1865 		be_substream->runtime = NULL;
1866 
1867 		be->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
1868 	}
1869 	return 0;
1870 }
1871 
dpcm_fe_dai_shutdown(struct snd_pcm_substream * substream)1872 static int dpcm_fe_dai_shutdown(struct snd_pcm_substream *substream)
1873 {
1874 	struct snd_soc_pcm_runtime *fe = asoc_substream_to_rtd(substream);
1875 	int stream = substream->stream;
1876 
1877 	dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE);
1878 
1879 	/* shutdown the BEs */
1880 	dpcm_be_dai_shutdown(fe, stream);
1881 
1882 	dev_dbg(fe->dev, "ASoC: close FE %s\n", fe->dai_link->name);
1883 
1884 	/* now shutdown the frontend */
1885 	soc_pcm_close(substream);
1886 
1887 	/* run the stream event for each BE */
1888 	dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_STOP);
1889 
1890 	fe->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
1891 	dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
1892 	return 0;
1893 }
1894 
dpcm_be_dai_hw_free(struct snd_soc_pcm_runtime * fe,int stream)1895 int dpcm_be_dai_hw_free(struct snd_soc_pcm_runtime *fe, int stream)
1896 {
1897 	struct snd_soc_dpcm *dpcm;
1898 
1899 	/* only hw_params backends that are either sinks or sources
1900 	 * to this frontend DAI */
1901 	for_each_dpcm_be(fe, stream, dpcm) {
1902 
1903 		struct snd_soc_pcm_runtime *be = dpcm->be;
1904 		struct snd_pcm_substream *be_substream =
1905 			snd_soc_dpcm_get_substream(be, stream);
1906 
1907 		/* is this op for this BE ? */
1908 		if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1909 			continue;
1910 
1911 		/* only free hw when no longer used - check all FEs */
1912 		if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
1913 				continue;
1914 
1915 		/* do not free hw if this BE is used by other FE */
1916 		if (be->dpcm[stream].users > 1)
1917 			continue;
1918 
1919 		if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
1920 		    (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PREPARE) &&
1921 		    (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE) &&
1922 		    (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PAUSED) &&
1923 		    (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP) &&
1924 		    (be->dpcm[stream].state != SND_SOC_DPCM_STATE_SUSPEND))
1925 			continue;
1926 
1927 		dev_dbg(be->dev, "ASoC: hw_free BE %s\n",
1928 			be->dai_link->name);
1929 
1930 		soc_pcm_hw_free(be_substream);
1931 
1932 		be->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_FREE;
1933 	}
1934 
1935 	return 0;
1936 }
1937 
dpcm_fe_dai_hw_free(struct snd_pcm_substream * substream)1938 static int dpcm_fe_dai_hw_free(struct snd_pcm_substream *substream)
1939 {
1940 	struct snd_soc_pcm_runtime *fe = asoc_substream_to_rtd(substream);
1941 	int err, stream = substream->stream;
1942 
1943 	mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
1944 	dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE);
1945 
1946 	dev_dbg(fe->dev, "ASoC: hw_free FE %s\n", fe->dai_link->name);
1947 
1948 	/* call hw_free on the frontend */
1949 	err = soc_pcm_hw_free(substream);
1950 	if (err < 0)
1951 		dev_err(fe->dev,"ASoC: hw_free FE %s failed\n",
1952 			fe->dai_link->name);
1953 
1954 	/* only hw_params backends that are either sinks or sources
1955 	 * to this frontend DAI */
1956 	err = dpcm_be_dai_hw_free(fe, stream);
1957 
1958 	fe->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_FREE;
1959 	dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
1960 
1961 	mutex_unlock(&fe->card->mutex);
1962 	return 0;
1963 }
1964 
dpcm_be_dai_hw_params(struct snd_soc_pcm_runtime * fe,int stream)1965 int dpcm_be_dai_hw_params(struct snd_soc_pcm_runtime *fe, int stream)
1966 {
1967 	struct snd_soc_dpcm *dpcm;
1968 	int ret;
1969 
1970 	for_each_dpcm_be(fe, stream, dpcm) {
1971 
1972 		struct snd_soc_pcm_runtime *be = dpcm->be;
1973 		struct snd_pcm_substream *be_substream =
1974 			snd_soc_dpcm_get_substream(be, stream);
1975 
1976 		/* is this op for this BE ? */
1977 		if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1978 			continue;
1979 
1980 		/* copy params for each dpcm */
1981 		memcpy(&dpcm->hw_params, &fe->dpcm[stream].hw_params,
1982 				sizeof(struct snd_pcm_hw_params));
1983 
1984 		/* perform any hw_params fixups */
1985 		ret = snd_soc_link_be_hw_params_fixup(be, &dpcm->hw_params);
1986 		if (ret < 0)
1987 			goto unwind;
1988 
1989 		/* copy the fixed-up hw params for BE dai */
1990 		memcpy(&be->dpcm[stream].hw_params, &dpcm->hw_params,
1991 		       sizeof(struct snd_pcm_hw_params));
1992 
1993 		/* only allow hw_params() if no connected FEs are running */
1994 		if (!snd_soc_dpcm_can_be_params(fe, be, stream))
1995 			continue;
1996 
1997 		if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN) &&
1998 		    (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
1999 		    (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE))
2000 			continue;
2001 
2002 		dev_dbg(be->dev, "ASoC: hw_params BE %s\n",
2003 			be->dai_link->name);
2004 
2005 		ret = soc_pcm_hw_params(be_substream, &dpcm->hw_params);
2006 		if (ret < 0) {
2007 			dev_err(dpcm->be->dev,
2008 				"ASoC: hw_params BE failed %d\n", ret);
2009 			goto unwind;
2010 		}
2011 
2012 		be->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_PARAMS;
2013 	}
2014 	return 0;
2015 
2016 unwind:
2017 	/* disable any enabled and non active backends */
2018 	for_each_dpcm_be_rollback(fe, stream, dpcm) {
2019 		struct snd_soc_pcm_runtime *be = dpcm->be;
2020 		struct snd_pcm_substream *be_substream =
2021 			snd_soc_dpcm_get_substream(be, stream);
2022 
2023 		if (!snd_soc_dpcm_be_can_update(fe, be, stream))
2024 			continue;
2025 
2026 		/* only allow hw_free() if no connected FEs are running */
2027 		if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
2028 			continue;
2029 
2030 		if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN) &&
2031 		   (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
2032 		   (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE) &&
2033 		   (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP))
2034 			continue;
2035 
2036 		soc_pcm_hw_free(be_substream);
2037 	}
2038 
2039 	return ret;
2040 }
2041 
dpcm_fe_dai_hw_params(struct snd_pcm_substream * substream,struct snd_pcm_hw_params * params)2042 static int dpcm_fe_dai_hw_params(struct snd_pcm_substream *substream,
2043 				 struct snd_pcm_hw_params *params)
2044 {
2045 	struct snd_soc_pcm_runtime *fe = asoc_substream_to_rtd(substream);
2046 	int ret, stream = substream->stream;
2047 
2048 	mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
2049 	dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE);
2050 
2051 	memcpy(&fe->dpcm[stream].hw_params, params,
2052 			sizeof(struct snd_pcm_hw_params));
2053 	ret = dpcm_be_dai_hw_params(fe, stream);
2054 	if (ret < 0) {
2055 		dev_err(fe->dev,"ASoC: hw_params BE failed %d\n", ret);
2056 		goto out;
2057 	}
2058 
2059 	dev_dbg(fe->dev, "ASoC: hw_params FE %s rate %d chan %x fmt %d\n",
2060 			fe->dai_link->name, params_rate(params),
2061 			params_channels(params), params_format(params));
2062 
2063 	/* call hw_params on the frontend */
2064 	ret = soc_pcm_hw_params(substream, params);
2065 	if (ret < 0) {
2066 		dev_err(fe->dev,"ASoC: hw_params FE failed %d\n", ret);
2067 		dpcm_be_dai_hw_free(fe, stream);
2068 	 } else
2069 		fe->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_PARAMS;
2070 
2071 out:
2072 	dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
2073 	mutex_unlock(&fe->card->mutex);
2074 	return ret;
2075 }
2076 
dpcm_do_trigger(struct snd_soc_dpcm * dpcm,struct snd_pcm_substream * substream,int cmd)2077 static int dpcm_do_trigger(struct snd_soc_dpcm *dpcm,
2078 		struct snd_pcm_substream *substream, int cmd)
2079 {
2080 	int ret;
2081 
2082 	dev_dbg(dpcm->be->dev, "ASoC: trigger BE %s cmd %d\n",
2083 			dpcm->be->dai_link->name, cmd);
2084 
2085 	ret = soc_pcm_trigger(substream, cmd);
2086 	if (ret < 0)
2087 		dev_err(dpcm->be->dev,"ASoC: trigger BE failed %d\n", ret);
2088 
2089 	return ret;
2090 }
2091 
dpcm_be_dai_trigger(struct snd_soc_pcm_runtime * fe,int stream,int cmd)2092 int dpcm_be_dai_trigger(struct snd_soc_pcm_runtime *fe, int stream,
2093 			       int cmd)
2094 {
2095 	struct snd_soc_dpcm *dpcm;
2096 	int ret = 0;
2097 
2098 	for_each_dpcm_be(fe, stream, dpcm) {
2099 
2100 		struct snd_soc_pcm_runtime *be = dpcm->be;
2101 		struct snd_pcm_substream *be_substream =
2102 			snd_soc_dpcm_get_substream(be, stream);
2103 
2104 		/* is this op for this BE ? */
2105 		if (!snd_soc_dpcm_be_can_update(fe, be, stream))
2106 			continue;
2107 
2108 		switch (cmd) {
2109 		case SNDRV_PCM_TRIGGER_START:
2110 			if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_PREPARE) &&
2111 			    (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP) &&
2112 			    (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PAUSED))
2113 				continue;
2114 
2115 			ret = dpcm_do_trigger(dpcm, be_substream, cmd);
2116 			if (ret)
2117 				return ret;
2118 
2119 			be->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
2120 			break;
2121 		case SNDRV_PCM_TRIGGER_RESUME:
2122 			if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_SUSPEND))
2123 				continue;
2124 
2125 			ret = dpcm_do_trigger(dpcm, be_substream, cmd);
2126 			if (ret)
2127 				return ret;
2128 
2129 			be->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
2130 			break;
2131 		case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
2132 			if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_PAUSED))
2133 				continue;
2134 
2135 			ret = dpcm_do_trigger(dpcm, be_substream, cmd);
2136 			if (ret)
2137 				return ret;
2138 
2139 			be->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
2140 			break;
2141 		case SNDRV_PCM_TRIGGER_STOP:
2142 			if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_START) &&
2143 			    (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PAUSED))
2144 				continue;
2145 
2146 			if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
2147 				continue;
2148 
2149 			ret = dpcm_do_trigger(dpcm, be_substream, cmd);
2150 			if (ret)
2151 				return ret;
2152 
2153 			be->dpcm[stream].state = SND_SOC_DPCM_STATE_STOP;
2154 			break;
2155 		case SNDRV_PCM_TRIGGER_SUSPEND:
2156 			if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START)
2157 				continue;
2158 
2159 			if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
2160 				continue;
2161 
2162 			ret = dpcm_do_trigger(dpcm, be_substream, cmd);
2163 			if (ret)
2164 				return ret;
2165 
2166 			be->dpcm[stream].state = SND_SOC_DPCM_STATE_SUSPEND;
2167 			break;
2168 		case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
2169 			if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START)
2170 				continue;
2171 
2172 			if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
2173 				continue;
2174 
2175 			ret = dpcm_do_trigger(dpcm, be_substream, cmd);
2176 			if (ret)
2177 				return ret;
2178 
2179 			be->dpcm[stream].state = SND_SOC_DPCM_STATE_PAUSED;
2180 			break;
2181 		}
2182 	}
2183 
2184 	return ret;
2185 }
2186 EXPORT_SYMBOL_GPL(dpcm_be_dai_trigger);
2187 
dpcm_dai_trigger_fe_be(struct snd_pcm_substream * substream,int cmd,bool fe_first)2188 static int dpcm_dai_trigger_fe_be(struct snd_pcm_substream *substream,
2189 				  int cmd, bool fe_first)
2190 {
2191 	struct snd_soc_pcm_runtime *fe = asoc_substream_to_rtd(substream);
2192 	int ret;
2193 
2194 	/* call trigger on the frontend before the backend. */
2195 	if (fe_first) {
2196 		dev_dbg(fe->dev, "ASoC: pre trigger FE %s cmd %d\n",
2197 			fe->dai_link->name, cmd);
2198 
2199 		ret = soc_pcm_trigger(substream, cmd);
2200 		if (ret < 0)
2201 			return ret;
2202 
2203 		ret = dpcm_be_dai_trigger(fe, substream->stream, cmd);
2204 		return ret;
2205 	}
2206 
2207 	/* call trigger on the frontend after the backend. */
2208 	ret = dpcm_be_dai_trigger(fe, substream->stream, cmd);
2209 	if (ret < 0)
2210 		return ret;
2211 
2212 	dev_dbg(fe->dev, "ASoC: post trigger FE %s cmd %d\n",
2213 		fe->dai_link->name, cmd);
2214 
2215 	ret = soc_pcm_trigger(substream, cmd);
2216 
2217 	return ret;
2218 }
2219 
dpcm_fe_dai_do_trigger(struct snd_pcm_substream * substream,int cmd)2220 static int dpcm_fe_dai_do_trigger(struct snd_pcm_substream *substream, int cmd)
2221 {
2222 	struct snd_soc_pcm_runtime *fe = asoc_substream_to_rtd(substream);
2223 	int stream = substream->stream;
2224 	int ret = 0;
2225 	enum snd_soc_dpcm_trigger trigger = fe->dai_link->trigger[stream];
2226 
2227 	fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_FE;
2228 
2229 	switch (trigger) {
2230 	case SND_SOC_DPCM_TRIGGER_PRE:
2231 		switch (cmd) {
2232 		case SNDRV_PCM_TRIGGER_START:
2233 		case SNDRV_PCM_TRIGGER_RESUME:
2234 		case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
2235 		case SNDRV_PCM_TRIGGER_DRAIN:
2236 			ret = dpcm_dai_trigger_fe_be(substream, cmd, true);
2237 			break;
2238 		case SNDRV_PCM_TRIGGER_STOP:
2239 		case SNDRV_PCM_TRIGGER_SUSPEND:
2240 		case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
2241 			ret = dpcm_dai_trigger_fe_be(substream, cmd, false);
2242 			break;
2243 		default:
2244 			ret = -EINVAL;
2245 			break;
2246 		}
2247 		break;
2248 	case SND_SOC_DPCM_TRIGGER_POST:
2249 		switch (cmd) {
2250 		case SNDRV_PCM_TRIGGER_START:
2251 		case SNDRV_PCM_TRIGGER_RESUME:
2252 		case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
2253 		case SNDRV_PCM_TRIGGER_DRAIN:
2254 			ret = dpcm_dai_trigger_fe_be(substream, cmd, false);
2255 			break;
2256 		case SNDRV_PCM_TRIGGER_STOP:
2257 		case SNDRV_PCM_TRIGGER_SUSPEND:
2258 		case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
2259 			ret = dpcm_dai_trigger_fe_be(substream, cmd, true);
2260 			break;
2261 		default:
2262 			ret = -EINVAL;
2263 			break;
2264 		}
2265 		break;
2266 	case SND_SOC_DPCM_TRIGGER_BESPOKE:
2267 		/* bespoke trigger() - handles both FE and BEs */
2268 
2269 		dev_dbg(fe->dev, "ASoC: bespoke trigger FE %s cmd %d\n",
2270 				fe->dai_link->name, cmd);
2271 
2272 		ret = snd_soc_pcm_dai_bespoke_trigger(substream, cmd);
2273 		break;
2274 	default:
2275 		dev_err(fe->dev, "ASoC: invalid trigger cmd %d for %s\n", cmd,
2276 				fe->dai_link->name);
2277 		ret = -EINVAL;
2278 		goto out;
2279 	}
2280 
2281 	if (ret < 0) {
2282 		dev_err(fe->dev, "ASoC: trigger FE cmd: %d failed: %d\n",
2283 			cmd, ret);
2284 		goto out;
2285 	}
2286 
2287 	switch (cmd) {
2288 	case SNDRV_PCM_TRIGGER_START:
2289 	case SNDRV_PCM_TRIGGER_RESUME:
2290 	case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
2291 		fe->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
2292 		break;
2293 	case SNDRV_PCM_TRIGGER_STOP:
2294 	case SNDRV_PCM_TRIGGER_SUSPEND:
2295 		fe->dpcm[stream].state = SND_SOC_DPCM_STATE_STOP;
2296 		break;
2297 	case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
2298 		fe->dpcm[stream].state = SND_SOC_DPCM_STATE_PAUSED;
2299 		break;
2300 	}
2301 
2302 out:
2303 	fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO;
2304 	return ret;
2305 }
2306 
dpcm_fe_dai_trigger(struct snd_pcm_substream * substream,int cmd)2307 static int dpcm_fe_dai_trigger(struct snd_pcm_substream *substream, int cmd)
2308 {
2309 	struct snd_soc_pcm_runtime *fe = asoc_substream_to_rtd(substream);
2310 	int stream = substream->stream;
2311 
2312 	/* if FE's runtime_update is already set, we're in race;
2313 	 * process this trigger later at exit
2314 	 */
2315 	if (fe->dpcm[stream].runtime_update != SND_SOC_DPCM_UPDATE_NO) {
2316 		fe->dpcm[stream].trigger_pending = cmd + 1;
2317 		return 0; /* delayed, assuming it's successful */
2318 	}
2319 
2320 	/* we're alone, let's trigger */
2321 	return dpcm_fe_dai_do_trigger(substream, cmd);
2322 }
2323 
dpcm_be_dai_prepare(struct snd_soc_pcm_runtime * fe,int stream)2324 int dpcm_be_dai_prepare(struct snd_soc_pcm_runtime *fe, int stream)
2325 {
2326 	struct snd_soc_dpcm *dpcm;
2327 	int ret = 0;
2328 
2329 	for_each_dpcm_be(fe, stream, dpcm) {
2330 
2331 		struct snd_soc_pcm_runtime *be = dpcm->be;
2332 		struct snd_pcm_substream *be_substream =
2333 			snd_soc_dpcm_get_substream(be, stream);
2334 
2335 		/* is this op for this BE ? */
2336 		if (!snd_soc_dpcm_be_can_update(fe, be, stream))
2337 			continue;
2338 
2339 		if (!snd_soc_dpcm_can_be_prepared(fe, be, stream))
2340 			continue;
2341 
2342 		if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
2343 		    (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP) &&
2344 		    (be->dpcm[stream].state != SND_SOC_DPCM_STATE_SUSPEND) &&
2345 		    (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PAUSED))
2346 			continue;
2347 
2348 		dev_dbg(be->dev, "ASoC: prepare BE %s\n",
2349 			be->dai_link->name);
2350 
2351 		ret = soc_pcm_prepare(be_substream);
2352 		if (ret < 0) {
2353 			dev_err(be->dev, "ASoC: backend prepare failed %d\n",
2354 				ret);
2355 			break;
2356 		}
2357 
2358 		be->dpcm[stream].state = SND_SOC_DPCM_STATE_PREPARE;
2359 	}
2360 	return ret;
2361 }
2362 
dpcm_fe_dai_prepare(struct snd_pcm_substream * substream)2363 static int dpcm_fe_dai_prepare(struct snd_pcm_substream *substream)
2364 {
2365 	struct snd_soc_pcm_runtime *fe = asoc_substream_to_rtd(substream);
2366 	int stream = substream->stream, ret = 0;
2367 
2368 	mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
2369 
2370 	dev_dbg(fe->dev, "ASoC: prepare FE %s\n", fe->dai_link->name);
2371 
2372 	dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE);
2373 
2374 	/* there is no point preparing this FE if there are no BEs */
2375 	if (list_empty(&fe->dpcm[stream].be_clients)) {
2376 		dev_err(fe->dev, "ASoC: no backend DAIs enabled for %s\n",
2377 				fe->dai_link->name);
2378 		ret = -EINVAL;
2379 		goto out;
2380 	}
2381 
2382 	ret = dpcm_be_dai_prepare(fe, stream);
2383 	if (ret < 0)
2384 		goto out;
2385 
2386 	/* call prepare on the frontend */
2387 	ret = soc_pcm_prepare(substream);
2388 	if (ret < 0) {
2389 		dev_err(fe->dev,"ASoC: prepare FE %s failed\n",
2390 			fe->dai_link->name);
2391 		goto out;
2392 	}
2393 
2394 	/* run the stream event for each BE */
2395 	dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_START);
2396 	fe->dpcm[stream].state = SND_SOC_DPCM_STATE_PREPARE;
2397 
2398 out:
2399 	dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
2400 	mutex_unlock(&fe->card->mutex);
2401 
2402 	return ret;
2403 }
2404 
dpcm_run_update_shutdown(struct snd_soc_pcm_runtime * fe,int stream)2405 static int dpcm_run_update_shutdown(struct snd_soc_pcm_runtime *fe, int stream)
2406 {
2407 	struct snd_pcm_substream *substream =
2408 		snd_soc_dpcm_get_substream(fe, stream);
2409 	enum snd_soc_dpcm_trigger trigger = fe->dai_link->trigger[stream];
2410 	int err;
2411 
2412 	dev_dbg(fe->dev, "ASoC: runtime %s close on FE %s\n",
2413 			stream ? "capture" : "playback", fe->dai_link->name);
2414 
2415 	if (trigger == SND_SOC_DPCM_TRIGGER_BESPOKE) {
2416 		/* call bespoke trigger - FE takes care of all BE triggers */
2417 		dev_dbg(fe->dev, "ASoC: bespoke trigger FE %s cmd stop\n",
2418 				fe->dai_link->name);
2419 
2420 		err = snd_soc_pcm_dai_bespoke_trigger(substream, SNDRV_PCM_TRIGGER_STOP);
2421 		if (err < 0)
2422 			dev_err(fe->dev,"ASoC: trigger FE failed %d\n", err);
2423 	} else {
2424 		dev_dbg(fe->dev, "ASoC: trigger FE %s cmd stop\n",
2425 			fe->dai_link->name);
2426 
2427 		err = dpcm_be_dai_trigger(fe, stream, SNDRV_PCM_TRIGGER_STOP);
2428 		if (err < 0)
2429 			dev_err(fe->dev,"ASoC: trigger FE failed %d\n", err);
2430 	}
2431 
2432 	err = dpcm_be_dai_hw_free(fe, stream);
2433 	if (err < 0)
2434 		dev_err(fe->dev,"ASoC: hw_free FE failed %d\n", err);
2435 
2436 	err = dpcm_be_dai_shutdown(fe, stream);
2437 	if (err < 0)
2438 		dev_err(fe->dev,"ASoC: shutdown FE failed %d\n", err);
2439 
2440 	/* run the stream event for each BE */
2441 	dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_NOP);
2442 
2443 	return 0;
2444 }
2445 
dpcm_run_update_startup(struct snd_soc_pcm_runtime * fe,int stream)2446 static int dpcm_run_update_startup(struct snd_soc_pcm_runtime *fe, int stream)
2447 {
2448 	struct snd_pcm_substream *substream =
2449 		snd_soc_dpcm_get_substream(fe, stream);
2450 	struct snd_soc_dpcm *dpcm;
2451 	enum snd_soc_dpcm_trigger trigger = fe->dai_link->trigger[stream];
2452 	int ret;
2453 	unsigned long flags;
2454 
2455 	dev_dbg(fe->dev, "ASoC: runtime %s open on FE %s\n",
2456 			stream ? "capture" : "playback", fe->dai_link->name);
2457 
2458 	/* Only start the BE if the FE is ready */
2459 	if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_HW_FREE ||
2460 		fe->dpcm[stream].state == SND_SOC_DPCM_STATE_CLOSE)
2461 		return -EINVAL;
2462 
2463 	/* startup must always be called for new BEs */
2464 	ret = dpcm_be_dai_startup(fe, stream);
2465 	if (ret < 0)
2466 		goto disconnect;
2467 
2468 	/* keep going if FE state is > open */
2469 	if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_OPEN)
2470 		return 0;
2471 
2472 	ret = dpcm_be_dai_hw_params(fe, stream);
2473 	if (ret < 0)
2474 		goto close;
2475 
2476 	/* keep going if FE state is > hw_params */
2477 	if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_HW_PARAMS)
2478 		return 0;
2479 
2480 
2481 	ret = dpcm_be_dai_prepare(fe, stream);
2482 	if (ret < 0)
2483 		goto hw_free;
2484 
2485 	/* run the stream event for each BE */
2486 	dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_NOP);
2487 
2488 	/* keep going if FE state is > prepare */
2489 	if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_PREPARE ||
2490 		fe->dpcm[stream].state == SND_SOC_DPCM_STATE_STOP)
2491 		return 0;
2492 
2493 	if (trigger == SND_SOC_DPCM_TRIGGER_BESPOKE) {
2494 		/* call trigger on the frontend - FE takes care of all BE triggers */
2495 		dev_dbg(fe->dev, "ASoC: bespoke trigger FE %s cmd start\n",
2496 				fe->dai_link->name);
2497 
2498 		ret = snd_soc_pcm_dai_bespoke_trigger(substream, SNDRV_PCM_TRIGGER_START);
2499 		if (ret < 0) {
2500 			dev_err(fe->dev,"ASoC: bespoke trigger FE failed %d\n", ret);
2501 			goto hw_free;
2502 		}
2503 	} else {
2504 		dev_dbg(fe->dev, "ASoC: trigger FE %s cmd start\n",
2505 			fe->dai_link->name);
2506 
2507 		ret = dpcm_be_dai_trigger(fe, stream,
2508 					SNDRV_PCM_TRIGGER_START);
2509 		if (ret < 0) {
2510 			dev_err(fe->dev,"ASoC: trigger FE failed %d\n", ret);
2511 			goto hw_free;
2512 		}
2513 	}
2514 
2515 	return 0;
2516 
2517 hw_free:
2518 	dpcm_be_dai_hw_free(fe, stream);
2519 close:
2520 	dpcm_be_dai_shutdown(fe, stream);
2521 disconnect:
2522 	/* disconnect any closed BEs */
2523 	spin_lock_irqsave(&fe->card->dpcm_lock, flags);
2524 	for_each_dpcm_be(fe, stream, dpcm) {
2525 		struct snd_soc_pcm_runtime *be = dpcm->be;
2526 		if (be->dpcm[stream].state == SND_SOC_DPCM_STATE_CLOSE)
2527 			dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE;
2528 	}
2529 	spin_unlock_irqrestore(&fe->card->dpcm_lock, flags);
2530 
2531 	return ret;
2532 }
2533 
soc_dpcm_fe_runtime_update(struct snd_soc_pcm_runtime * fe,int new)2534 static int soc_dpcm_fe_runtime_update(struct snd_soc_pcm_runtime *fe, int new)
2535 {
2536 	struct snd_soc_dapm_widget_list *list;
2537 	int stream;
2538 	int count, paths;
2539 	int ret;
2540 
2541 	if (!fe->dai_link->dynamic)
2542 		return 0;
2543 
2544 	if (fe->num_cpus > 1) {
2545 		dev_err(fe->dev,
2546 			"%s doesn't support Multi CPU yet\n", __func__);
2547 		return -EINVAL;
2548 	}
2549 
2550 	/* only check active links */
2551 	if (!snd_soc_dai_active(asoc_rtd_to_cpu(fe, 0)))
2552 		return 0;
2553 
2554 	/* DAPM sync will call this to update DSP paths */
2555 	dev_dbg(fe->dev, "ASoC: DPCM %s runtime update for FE %s\n",
2556 		new ? "new" : "old", fe->dai_link->name);
2557 
2558 	for_each_pcm_streams(stream) {
2559 
2560 		/* skip if FE doesn't have playback/capture capability */
2561 		if (!snd_soc_dai_stream_valid(asoc_rtd_to_cpu(fe, 0),   stream) ||
2562 		    !snd_soc_dai_stream_valid(asoc_rtd_to_codec(fe, 0), stream))
2563 			continue;
2564 
2565 		/* skip if FE isn't currently playing/capturing */
2566 		if (!snd_soc_dai_stream_active(asoc_rtd_to_cpu(fe, 0), stream) ||
2567 		    !snd_soc_dai_stream_active(asoc_rtd_to_codec(fe, 0), stream))
2568 			continue;
2569 
2570 		paths = dpcm_path_get(fe, stream, &list);
2571 		if (paths < 0) {
2572 			dev_warn(fe->dev, "ASoC: %s no valid %s path\n",
2573 				 fe->dai_link->name,
2574 				 stream == SNDRV_PCM_STREAM_PLAYBACK ?
2575 				 "playback" : "capture");
2576 			return paths;
2577 		}
2578 
2579 		/* update any playback/capture paths */
2580 		count = dpcm_process_paths(fe, stream, &list, new);
2581 		if (count) {
2582 			dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_BE);
2583 			if (new)
2584 				ret = dpcm_run_update_startup(fe, stream);
2585 			else
2586 				ret = dpcm_run_update_shutdown(fe, stream);
2587 			if (ret < 0)
2588 				dev_err(fe->dev, "ASoC: failed to shutdown some BEs\n");
2589 			dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
2590 
2591 			dpcm_clear_pending_state(fe, stream);
2592 			dpcm_be_disconnect(fe, stream);
2593 		}
2594 
2595 		dpcm_path_put(&list);
2596 	}
2597 
2598 	return 0;
2599 }
2600 
2601 /* Called by DAPM mixer/mux changes to update audio routing between PCMs and
2602  * any DAI links.
2603  */
snd_soc_dpcm_runtime_update(struct snd_soc_card * card)2604 int snd_soc_dpcm_runtime_update(struct snd_soc_card *card)
2605 {
2606 	struct snd_soc_pcm_runtime *fe;
2607 	int ret = 0;
2608 
2609 	mutex_lock_nested(&card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
2610 	/* shutdown all old paths first */
2611 	for_each_card_rtds(card, fe) {
2612 		ret = soc_dpcm_fe_runtime_update(fe, 0);
2613 		if (ret)
2614 			goto out;
2615 	}
2616 
2617 	/* bring new paths up */
2618 	for_each_card_rtds(card, fe) {
2619 		ret = soc_dpcm_fe_runtime_update(fe, 1);
2620 		if (ret)
2621 			goto out;
2622 	}
2623 
2624 out:
2625 	mutex_unlock(&card->mutex);
2626 	return ret;
2627 }
2628 EXPORT_SYMBOL_GPL(snd_soc_dpcm_runtime_update);
2629 
dpcm_fe_dai_cleanup(struct snd_pcm_substream * fe_substream)2630 static void dpcm_fe_dai_cleanup(struct snd_pcm_substream *fe_substream)
2631 {
2632 	struct snd_soc_pcm_runtime *fe = asoc_substream_to_rtd(fe_substream);
2633 	struct snd_soc_dpcm *dpcm;
2634 	int stream = fe_substream->stream;
2635 
2636 	/* mark FE's links ready to prune */
2637 	for_each_dpcm_be(fe, stream, dpcm)
2638 		dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE;
2639 
2640 	dpcm_be_disconnect(fe, stream);
2641 
2642 	fe->dpcm[stream].runtime = NULL;
2643 }
2644 
dpcm_fe_dai_close(struct snd_pcm_substream * fe_substream)2645 static int dpcm_fe_dai_close(struct snd_pcm_substream *fe_substream)
2646 {
2647 	struct snd_soc_pcm_runtime *fe = asoc_substream_to_rtd(fe_substream);
2648 	int ret;
2649 
2650 	mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
2651 	ret = dpcm_fe_dai_shutdown(fe_substream);
2652 
2653 	dpcm_fe_dai_cleanup(fe_substream);
2654 
2655 	mutex_unlock(&fe->card->mutex);
2656 	return ret;
2657 }
2658 
dpcm_fe_dai_open(struct snd_pcm_substream * fe_substream)2659 static int dpcm_fe_dai_open(struct snd_pcm_substream *fe_substream)
2660 {
2661 	struct snd_soc_pcm_runtime *fe = asoc_substream_to_rtd(fe_substream);
2662 	struct snd_soc_dapm_widget_list *list;
2663 	int ret;
2664 	int stream = fe_substream->stream;
2665 
2666 	mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
2667 	fe->dpcm[stream].runtime = fe_substream->runtime;
2668 
2669 	ret = dpcm_path_get(fe, stream, &list);
2670 	if (ret < 0) {
2671 		goto open_end;
2672 	} else if (ret == 0) {
2673 		dev_dbg(fe->dev, "ASoC: %s no valid %s route\n",
2674 			fe->dai_link->name, stream ? "capture" : "playback");
2675 	}
2676 
2677 	/* calculate valid and active FE <-> BE dpcms */
2678 	dpcm_process_paths(fe, stream, &list, 1);
2679 
2680 	ret = dpcm_fe_dai_startup(fe_substream);
2681 	if (ret < 0)
2682 		dpcm_fe_dai_cleanup(fe_substream);
2683 
2684 	dpcm_clear_pending_state(fe, stream);
2685 	dpcm_path_put(&list);
2686 open_end:
2687 	mutex_unlock(&fe->card->mutex);
2688 	return ret;
2689 }
2690 
2691 /* create a new pcm */
soc_new_pcm(struct snd_soc_pcm_runtime * rtd,int num)2692 int soc_new_pcm(struct snd_soc_pcm_runtime *rtd, int num)
2693 {
2694 	struct snd_soc_dai *codec_dai;
2695 	struct snd_soc_dai *cpu_dai;
2696 	struct snd_soc_component *component;
2697 	struct snd_pcm *pcm;
2698 	char new_name[64];
2699 	int ret = 0, playback = 0, capture = 0;
2700 	int stream;
2701 	int i;
2702 
2703 	if (rtd->dai_link->dynamic && rtd->num_cpus > 1) {
2704 		dev_err(rtd->dev,
2705 			"DPCM doesn't support Multi CPU for Front-Ends yet\n");
2706 		return -EINVAL;
2707 	}
2708 
2709 	if (rtd->dai_link->dynamic || rtd->dai_link->no_pcm) {
2710 		if (rtd->dai_link->dpcm_playback) {
2711 			stream = SNDRV_PCM_STREAM_PLAYBACK;
2712 
2713 			for_each_rtd_cpu_dais(rtd, i, cpu_dai) {
2714 				if (snd_soc_dai_stream_valid(cpu_dai, stream)) {
2715 					playback = 1;
2716 					break;
2717 				}
2718 			}
2719 
2720 			if (!playback) {
2721 				dev_err(rtd->card->dev,
2722 					"No CPU DAIs support playback for stream %s\n",
2723 					rtd->dai_link->stream_name);
2724 				return -EINVAL;
2725 			}
2726 		}
2727 		if (rtd->dai_link->dpcm_capture) {
2728 			stream = SNDRV_PCM_STREAM_CAPTURE;
2729 
2730 			for_each_rtd_cpu_dais(rtd, i, cpu_dai) {
2731 				if (snd_soc_dai_stream_valid(cpu_dai, stream)) {
2732 					capture = 1;
2733 					break;
2734 				}
2735 			}
2736 
2737 			if (!capture) {
2738 				dev_err(rtd->card->dev,
2739 					"No CPU DAIs support capture for stream %s\n",
2740 					rtd->dai_link->stream_name);
2741 				return -EINVAL;
2742 			}
2743 		}
2744 	} else {
2745 		/* Adapt stream for codec2codec links */
2746 		int cpu_capture = rtd->dai_link->params ?
2747 			SNDRV_PCM_STREAM_PLAYBACK : SNDRV_PCM_STREAM_CAPTURE;
2748 		int cpu_playback = rtd->dai_link->params ?
2749 			SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK;
2750 
2751 		for_each_rtd_codec_dais(rtd, i, codec_dai) {
2752 			if (rtd->num_cpus == 1) {
2753 				cpu_dai = asoc_rtd_to_cpu(rtd, 0);
2754 			} else if (rtd->num_cpus == rtd->num_codecs) {
2755 				cpu_dai = asoc_rtd_to_cpu(rtd, i);
2756 			} else {
2757 				dev_err(rtd->card->dev,
2758 					"N cpus to M codecs link is not supported yet\n");
2759 				return -EINVAL;
2760 			}
2761 
2762 			if (snd_soc_dai_stream_valid(codec_dai, SNDRV_PCM_STREAM_PLAYBACK) &&
2763 			    snd_soc_dai_stream_valid(cpu_dai,   cpu_playback))
2764 				playback = 1;
2765 			if (snd_soc_dai_stream_valid(codec_dai, SNDRV_PCM_STREAM_CAPTURE) &&
2766 			    snd_soc_dai_stream_valid(cpu_dai,   cpu_capture))
2767 				capture = 1;
2768 		}
2769 	}
2770 
2771 	if (rtd->dai_link->playback_only) {
2772 		playback = 1;
2773 		capture = 0;
2774 	}
2775 
2776 	if (rtd->dai_link->capture_only) {
2777 		playback = 0;
2778 		capture = 1;
2779 	}
2780 
2781 	/* create the PCM */
2782 	if (rtd->dai_link->params) {
2783 		snprintf(new_name, sizeof(new_name), "codec2codec(%s)",
2784 			 rtd->dai_link->stream_name);
2785 
2786 		ret = snd_pcm_new_internal(rtd->card->snd_card, new_name, num,
2787 					   playback, capture, &pcm);
2788 	} else if (rtd->dai_link->no_pcm) {
2789 		snprintf(new_name, sizeof(new_name), "(%s)",
2790 			rtd->dai_link->stream_name);
2791 
2792 		ret = snd_pcm_new_internal(rtd->card->snd_card, new_name, num,
2793 				playback, capture, &pcm);
2794 	} else {
2795 		if (rtd->dai_link->dynamic)
2796 			snprintf(new_name, sizeof(new_name), "%s (*)",
2797 				rtd->dai_link->stream_name);
2798 		else
2799 			snprintf(new_name, sizeof(new_name), "%s %s-%d",
2800 				rtd->dai_link->stream_name,
2801 				(rtd->num_codecs > 1) ?
2802 				"multicodec" : asoc_rtd_to_codec(rtd, 0)->name, num);
2803 
2804 		ret = snd_pcm_new(rtd->card->snd_card, new_name, num, playback,
2805 			capture, &pcm);
2806 	}
2807 	if (ret < 0) {
2808 		dev_err(rtd->card->dev, "ASoC: can't create pcm %s for dailink %s: %d\n",
2809 			new_name, rtd->dai_link->name, ret);
2810 		return ret;
2811 	}
2812 	dev_dbg(rtd->card->dev, "ASoC: registered pcm #%d %s\n",num, new_name);
2813 
2814 	/* DAPM dai link stream work */
2815 	if (rtd->dai_link->params)
2816 		rtd->close_delayed_work_func = codec2codec_close_delayed_work;
2817 	else
2818 		rtd->close_delayed_work_func = snd_soc_close_delayed_work;
2819 
2820 	pcm->nonatomic = rtd->dai_link->nonatomic;
2821 	rtd->pcm = pcm;
2822 	pcm->private_data = rtd;
2823 
2824 	if (rtd->dai_link->no_pcm || rtd->dai_link->params) {
2825 		if (playback)
2826 			pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream->private_data = rtd;
2827 		if (capture)
2828 			pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream->private_data = rtd;
2829 		goto out;
2830 	}
2831 
2832 	/* ASoC PCM operations */
2833 	if (rtd->dai_link->dynamic) {
2834 		rtd->ops.open		= dpcm_fe_dai_open;
2835 		rtd->ops.hw_params	= dpcm_fe_dai_hw_params;
2836 		rtd->ops.prepare	= dpcm_fe_dai_prepare;
2837 		rtd->ops.trigger	= dpcm_fe_dai_trigger;
2838 		rtd->ops.hw_free	= dpcm_fe_dai_hw_free;
2839 		rtd->ops.close		= dpcm_fe_dai_close;
2840 		rtd->ops.pointer	= soc_pcm_pointer;
2841 	} else {
2842 		rtd->ops.open		= soc_pcm_open;
2843 		rtd->ops.hw_params	= soc_pcm_hw_params;
2844 		rtd->ops.prepare	= soc_pcm_prepare;
2845 		rtd->ops.trigger	= soc_pcm_trigger;
2846 		rtd->ops.hw_free	= soc_pcm_hw_free;
2847 		rtd->ops.close		= soc_pcm_close;
2848 		rtd->ops.pointer	= soc_pcm_pointer;
2849 	}
2850 
2851 	for_each_rtd_components(rtd, i, component) {
2852 		const struct snd_soc_component_driver *drv = component->driver;
2853 
2854 		if (drv->ioctl)
2855 			rtd->ops.ioctl		= snd_soc_pcm_component_ioctl;
2856 		if (drv->sync_stop)
2857 			rtd->ops.sync_stop	= snd_soc_pcm_component_sync_stop;
2858 		if (drv->copy_user)
2859 			rtd->ops.copy_user	= snd_soc_pcm_component_copy_user;
2860 		if (drv->page)
2861 			rtd->ops.page		= snd_soc_pcm_component_page;
2862 		if (drv->mmap)
2863 			rtd->ops.mmap		= snd_soc_pcm_component_mmap;
2864 		if (drv->ack)
2865 			rtd->ops.ack            = snd_soc_pcm_component_ack;
2866 	}
2867 
2868 	if (playback)
2869 		snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &rtd->ops);
2870 
2871 	if (capture)
2872 		snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &rtd->ops);
2873 
2874 	ret = snd_soc_pcm_component_new(rtd);
2875 	if (ret < 0) {
2876 		dev_err(rtd->dev, "ASoC: pcm %s constructor failed for dailink %s: %d\n",
2877 			new_name, rtd->dai_link->name, ret);
2878 		return ret;
2879 	}
2880 
2881 	pcm->no_device_suspend = true;
2882 out:
2883 	dev_dbg(rtd->card->dev, "%s <-> %s mapping ok\n",
2884 		(rtd->num_codecs > 1) ? "multicodec" : asoc_rtd_to_codec(rtd, 0)->name,
2885 		(rtd->num_cpus > 1)   ? "multicpu"   : asoc_rtd_to_cpu(rtd, 0)->name);
2886 	return ret;
2887 }
2888 
2889 /* is the current PCM operation for this FE ? */
snd_soc_dpcm_fe_can_update(struct snd_soc_pcm_runtime * fe,int stream)2890 int snd_soc_dpcm_fe_can_update(struct snd_soc_pcm_runtime *fe, int stream)
2891 {
2892 	if (fe->dpcm[stream].runtime_update == SND_SOC_DPCM_UPDATE_FE)
2893 		return 1;
2894 	return 0;
2895 }
2896 EXPORT_SYMBOL_GPL(snd_soc_dpcm_fe_can_update);
2897 
2898 /* is the current PCM operation for this BE ? */
snd_soc_dpcm_be_can_update(struct snd_soc_pcm_runtime * fe,struct snd_soc_pcm_runtime * be,int stream)2899 int snd_soc_dpcm_be_can_update(struct snd_soc_pcm_runtime *fe,
2900 		struct snd_soc_pcm_runtime *be, int stream)
2901 {
2902 	if ((fe->dpcm[stream].runtime_update == SND_SOC_DPCM_UPDATE_FE) ||
2903 	   ((fe->dpcm[stream].runtime_update == SND_SOC_DPCM_UPDATE_BE) &&
2904 		  be->dpcm[stream].runtime_update))
2905 		return 1;
2906 	return 0;
2907 }
2908 EXPORT_SYMBOL_GPL(snd_soc_dpcm_be_can_update);
2909 
2910 /* get the substream for this BE */
2911 struct snd_pcm_substream *
snd_soc_dpcm_get_substream(struct snd_soc_pcm_runtime * be,int stream)2912 	snd_soc_dpcm_get_substream(struct snd_soc_pcm_runtime *be, int stream)
2913 {
2914 	return be->pcm->streams[stream].substream;
2915 }
2916 EXPORT_SYMBOL_GPL(snd_soc_dpcm_get_substream);
2917 
snd_soc_dpcm_check_state(struct snd_soc_pcm_runtime * fe,struct snd_soc_pcm_runtime * be,int stream,const enum snd_soc_dpcm_state * states,int num_states)2918 static int snd_soc_dpcm_check_state(struct snd_soc_pcm_runtime *fe,
2919 				    struct snd_soc_pcm_runtime *be,
2920 				    int stream,
2921 				    const enum snd_soc_dpcm_state *states,
2922 				    int num_states)
2923 {
2924 	struct snd_soc_dpcm *dpcm;
2925 	int state;
2926 	int ret = 1;
2927 	unsigned long flags;
2928 	int i;
2929 
2930 	spin_lock_irqsave(&fe->card->dpcm_lock, flags);
2931 	for_each_dpcm_fe(be, stream, dpcm) {
2932 
2933 		if (dpcm->fe == fe)
2934 			continue;
2935 
2936 		state = dpcm->fe->dpcm[stream].state;
2937 		for (i = 0; i < num_states; i++) {
2938 			if (state == states[i]) {
2939 				ret = 0;
2940 				break;
2941 			}
2942 		}
2943 	}
2944 	spin_unlock_irqrestore(&fe->card->dpcm_lock, flags);
2945 
2946 	/* it's safe to do this BE DAI */
2947 	return ret;
2948 }
2949 
2950 /*
2951  * We can only hw_free, stop, pause or suspend a BE DAI if any of it's FE
2952  * are not running, paused or suspended for the specified stream direction.
2953  */
snd_soc_dpcm_can_be_free_stop(struct snd_soc_pcm_runtime * fe,struct snd_soc_pcm_runtime * be,int stream)2954 int snd_soc_dpcm_can_be_free_stop(struct snd_soc_pcm_runtime *fe,
2955 		struct snd_soc_pcm_runtime *be, int stream)
2956 {
2957 	const enum snd_soc_dpcm_state state[] = {
2958 		SND_SOC_DPCM_STATE_START,
2959 		SND_SOC_DPCM_STATE_PAUSED,
2960 		SND_SOC_DPCM_STATE_SUSPEND,
2961 	};
2962 
2963 	return snd_soc_dpcm_check_state(fe, be, stream, state, ARRAY_SIZE(state));
2964 }
2965 EXPORT_SYMBOL_GPL(snd_soc_dpcm_can_be_free_stop);
2966 
2967 /*
2968  * We can only change hw params a BE DAI if any of it's FE are not prepared,
2969  * running, paused or suspended for the specified stream direction.
2970  */
snd_soc_dpcm_can_be_params(struct snd_soc_pcm_runtime * fe,struct snd_soc_pcm_runtime * be,int stream)2971 int snd_soc_dpcm_can_be_params(struct snd_soc_pcm_runtime *fe,
2972 		struct snd_soc_pcm_runtime *be, int stream)
2973 {
2974 	const enum snd_soc_dpcm_state state[] = {
2975 		SND_SOC_DPCM_STATE_START,
2976 		SND_SOC_DPCM_STATE_PAUSED,
2977 		SND_SOC_DPCM_STATE_SUSPEND,
2978 		SND_SOC_DPCM_STATE_PREPARE,
2979 	};
2980 
2981 	return snd_soc_dpcm_check_state(fe, be, stream, state, ARRAY_SIZE(state));
2982 }
2983 EXPORT_SYMBOL_GPL(snd_soc_dpcm_can_be_params);
2984 
2985 /*
2986  * We can only prepare a BE DAI if any of it's FE are not prepared,
2987  * running or paused for the specified stream direction.
2988  */
snd_soc_dpcm_can_be_prepared(struct snd_soc_pcm_runtime * fe,struct snd_soc_pcm_runtime * be,int stream)2989 int snd_soc_dpcm_can_be_prepared(struct snd_soc_pcm_runtime *fe,
2990 				 struct snd_soc_pcm_runtime *be, int stream)
2991 {
2992 	const enum snd_soc_dpcm_state state[] = {
2993 		SND_SOC_DPCM_STATE_START,
2994 		SND_SOC_DPCM_STATE_PAUSED,
2995 		SND_SOC_DPCM_STATE_PREPARE,
2996 	};
2997 
2998 	return snd_soc_dpcm_check_state(fe, be, stream, state, ARRAY_SIZE(state));
2999 }
3000 EXPORT_SYMBOL_GPL(snd_soc_dpcm_can_be_prepared);
3001