blob: 080fbe053fc517cbfd5838a5b4cc04956a791ecf [file] [log] [blame]
Kuninori Morimoto06f6e1d2019-07-22 10:32:12 +09001// SPDX-License-Identifier: GPL-2.0
2//
3// soc-dai.c
4//
5// Copyright (C) 2019 Renesas Electronics Corp.
6// Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
7//
8
9#include <sound/soc.h>
10#include <sound/soc-dai.h>
Kuninori Morimoto0cbbf8a2020-05-25 09:57:36 +090011#include <sound/soc-link.h>
Kuninori Morimoto06f6e1d2019-07-22 10:32:12 +090012
Kuninori Morimotoaa7b8232020-04-24 08:14:38 +090013#define soc_dai_ret(dai, ret) _soc_dai_ret(dai, __func__, ret)
14static inline int _soc_dai_ret(struct snd_soc_dai *dai,
15 const char *func, int ret)
16{
Pierre-Louis Bossart28ff4372020-05-29 07:36:13 -050017 /* Positive, Zero values are not errors */
18 if (ret >= 0)
19 return ret;
20
21 /* Negative values might be errors */
Kuninori Morimotoaa7b8232020-04-24 08:14:38 +090022 switch (ret) {
23 case -EPROBE_DEFER:
24 case -ENOTSUPP:
Kuninori Morimotoaa7b8232020-04-24 08:14:38 +090025 break;
26 default:
27 dev_err(dai->dev,
28 "ASoC: error at %s on %s: %d\n",
29 func, dai->name, ret);
30 }
31
32 return ret;
33}
34
Kuninori Morimoto00a0b462020-09-28 09:00:40 +090035/*
36 * We might want to check substream by using list.
37 * In such case, we can update these macros.
38 */
39#define soc_dai_mark_push(dai, substream, tgt) ((dai)->mark_##tgt = substream)
40#define soc_dai_mark_pop(dai, substream, tgt) ((dai)->mark_##tgt = NULL)
41#define soc_dai_mark_match(dai, substream, tgt) ((dai)->mark_##tgt == substream)
42
Kuninori Morimoto06f6e1d2019-07-22 10:32:12 +090043/**
44 * snd_soc_dai_set_sysclk - configure DAI system or master clock.
45 * @dai: DAI
46 * @clk_id: DAI specific clock ID
47 * @freq: new clock frequency in Hz
48 * @dir: new clock direction - input/output.
49 *
50 * Configures the DAI master (MCLK) or system (SYSCLK) clocking.
51 */
52int snd_soc_dai_set_sysclk(struct snd_soc_dai *dai, int clk_id,
53 unsigned int freq, int dir)
54{
Kuninori Morimotoaa7b8232020-04-24 08:14:38 +090055 int ret;
Kuninori Morimoto06f6e1d2019-07-22 10:32:12 +090056
Kuninori Morimoto479914e2020-04-24 08:14:43 +090057 if (dai->driver->ops &&
58 dai->driver->ops->set_sysclk)
Kuninori Morimotoaa7b8232020-04-24 08:14:38 +090059 ret = dai->driver->ops->set_sysclk(dai, clk_id, freq, dir);
60 else
61 ret = snd_soc_component_set_sysclk(dai->component, clk_id, 0,
62 freq, dir);
63
64 return soc_dai_ret(dai, ret);
Kuninori Morimoto06f6e1d2019-07-22 10:32:12 +090065}
66EXPORT_SYMBOL_GPL(snd_soc_dai_set_sysclk);
67
68/**
69 * snd_soc_dai_set_clkdiv - configure DAI clock dividers.
70 * @dai: DAI
71 * @div_id: DAI specific clock divider ID
72 * @div: new clock divisor.
73 *
74 * Configures the clock dividers. This is used to derive the best DAI bit and
75 * frame clocks from the system or master clock. It's best to set the DAI bit
76 * and frame clocks as low as possible to save system power.
77 */
78int snd_soc_dai_set_clkdiv(struct snd_soc_dai *dai,
79 int div_id, int div)
80{
Kuninori Morimotoaa7b8232020-04-24 08:14:38 +090081 int ret = -EINVAL;
82
Kuninori Morimoto479914e2020-04-24 08:14:43 +090083 if (dai->driver->ops &&
84 dai->driver->ops->set_clkdiv)
Kuninori Morimotoaa7b8232020-04-24 08:14:38 +090085 ret = dai->driver->ops->set_clkdiv(dai, div_id, div);
86
87 return soc_dai_ret(dai, ret);
Kuninori Morimoto06f6e1d2019-07-22 10:32:12 +090088}
89EXPORT_SYMBOL_GPL(snd_soc_dai_set_clkdiv);
90
91/**
92 * snd_soc_dai_set_pll - configure DAI PLL.
93 * @dai: DAI
94 * @pll_id: DAI specific PLL ID
95 * @source: DAI specific source for the PLL
96 * @freq_in: PLL input clock frequency in Hz
97 * @freq_out: requested PLL output clock frequency in Hz
98 *
99 * Configures and enables PLL to generate output clock based on input clock.
100 */
101int snd_soc_dai_set_pll(struct snd_soc_dai *dai, int pll_id, int source,
102 unsigned int freq_in, unsigned int freq_out)
103{
Kuninori Morimotoaa7b8232020-04-24 08:14:38 +0900104 int ret;
Kuninori Morimoto06f6e1d2019-07-22 10:32:12 +0900105
Kuninori Morimoto479914e2020-04-24 08:14:43 +0900106 if (dai->driver->ops &&
107 dai->driver->ops->set_pll)
Kuninori Morimotoaa7b8232020-04-24 08:14:38 +0900108 ret = dai->driver->ops->set_pll(dai, pll_id, source,
109 freq_in, freq_out);
110 else
111 ret = snd_soc_component_set_pll(dai->component, pll_id, source,
112 freq_in, freq_out);
113
114 return soc_dai_ret(dai, ret);
Kuninori Morimoto06f6e1d2019-07-22 10:32:12 +0900115}
116EXPORT_SYMBOL_GPL(snd_soc_dai_set_pll);
117
118/**
119 * snd_soc_dai_set_bclk_ratio - configure BCLK to sample rate ratio.
120 * @dai: DAI
121 * @ratio: Ratio of BCLK to Sample rate.
122 *
123 * Configures the DAI for a preset BCLK to sample rate ratio.
124 */
125int snd_soc_dai_set_bclk_ratio(struct snd_soc_dai *dai, unsigned int ratio)
126{
Kuninori Morimotoaa7b8232020-04-24 08:14:38 +0900127 int ret = -EINVAL;
128
Kuninori Morimoto479914e2020-04-24 08:14:43 +0900129 if (dai->driver->ops &&
130 dai->driver->ops->set_bclk_ratio)
Kuninori Morimotoaa7b8232020-04-24 08:14:38 +0900131 ret = dai->driver->ops->set_bclk_ratio(dai, ratio);
132
133 return soc_dai_ret(dai, ret);
Kuninori Morimoto06f6e1d2019-07-22 10:32:12 +0900134}
135EXPORT_SYMBOL_GPL(snd_soc_dai_set_bclk_ratio);
136
137/**
138 * snd_soc_dai_set_fmt - configure DAI hardware audio format.
139 * @dai: DAI
140 * @fmt: SND_SOC_DAIFMT_* format value.
141 *
142 * Configures the DAI hardware format and clocking.
143 */
144int snd_soc_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
145{
Kuninori Morimotoaa7b8232020-04-24 08:14:38 +0900146 int ret = -ENOTSUPP;
147
Kuninori Morimoto479914e2020-04-24 08:14:43 +0900148 if (dai->driver->ops &&
149 dai->driver->ops->set_fmt)
Kuninori Morimotoaa7b8232020-04-24 08:14:38 +0900150 ret = dai->driver->ops->set_fmt(dai, fmt);
151
152 return soc_dai_ret(dai, ret);
Kuninori Morimoto06f6e1d2019-07-22 10:32:12 +0900153}
154EXPORT_SYMBOL_GPL(snd_soc_dai_set_fmt);
155
156/**
Pierre-Louis Bossart2fb87112021-03-01 11:46:59 -0600157 * snd_soc_xlate_tdm_slot_mask - generate tx/rx slot mask.
Kuninori Morimoto06f6e1d2019-07-22 10:32:12 +0900158 * @slots: Number of slots in use.
159 * @tx_mask: bitmask representing active TX slots.
160 * @rx_mask: bitmask representing active RX slots.
161 *
162 * Generates the TDM tx and rx slot default masks for DAI.
163 */
164static int snd_soc_xlate_tdm_slot_mask(unsigned int slots,
165 unsigned int *tx_mask,
166 unsigned int *rx_mask)
167{
168 if (*tx_mask || *rx_mask)
169 return 0;
170
171 if (!slots)
172 return -EINVAL;
173
174 *tx_mask = (1 << slots) - 1;
175 *rx_mask = (1 << slots) - 1;
176
177 return 0;
178}
179
180/**
181 * snd_soc_dai_set_tdm_slot() - Configures a DAI for TDM operation
182 * @dai: The DAI to configure
183 * @tx_mask: bitmask representing active TX slots.
184 * @rx_mask: bitmask representing active RX slots.
185 * @slots: Number of slots in use.
186 * @slot_width: Width in bits for each slot.
187 *
188 * This function configures the specified DAI for TDM operation. @slot contains
189 * the total number of slots of the TDM stream and @slot_with the width of each
190 * slot in bit clock cycles. @tx_mask and @rx_mask are bitmasks specifying the
191 * active slots of the TDM stream for the specified DAI, i.e. which slots the
192 * DAI should write to or read from. If a bit is set the corresponding slot is
193 * active, if a bit is cleared the corresponding slot is inactive. Bit 0 maps to
194 * the first slot, bit 1 to the second slot and so on. The first active slot
195 * maps to the first channel of the DAI, the second active slot to the second
196 * channel and so on.
197 *
198 * TDM mode can be disabled by passing 0 for @slots. In this case @tx_mask,
199 * @rx_mask and @slot_width will be ignored.
200 *
201 * Returns 0 on success, a negative error code otherwise.
202 */
203int snd_soc_dai_set_tdm_slot(struct snd_soc_dai *dai,
204 unsigned int tx_mask, unsigned int rx_mask,
205 int slots, int slot_width)
206{
Kuninori Morimotoaa7b8232020-04-24 08:14:38 +0900207 int ret = -ENOTSUPP;
208
Kuninori Morimoto479914e2020-04-24 08:14:43 +0900209 if (dai->driver->ops &&
210 dai->driver->ops->xlate_tdm_slot_mask)
Kuninori Morimoto06f6e1d2019-07-22 10:32:12 +0900211 dai->driver->ops->xlate_tdm_slot_mask(slots,
212 &tx_mask, &rx_mask);
213 else
214 snd_soc_xlate_tdm_slot_mask(slots, &tx_mask, &rx_mask);
215
216 dai->tx_mask = tx_mask;
217 dai->rx_mask = rx_mask;
218
Kuninori Morimoto479914e2020-04-24 08:14:43 +0900219 if (dai->driver->ops &&
220 dai->driver->ops->set_tdm_slot)
Kuninori Morimotoaa7b8232020-04-24 08:14:38 +0900221 ret = dai->driver->ops->set_tdm_slot(dai, tx_mask, rx_mask,
Kuninori Morimoto06f6e1d2019-07-22 10:32:12 +0900222 slots, slot_width);
Kuninori Morimotoaa7b8232020-04-24 08:14:38 +0900223 return soc_dai_ret(dai, ret);
Kuninori Morimoto06f6e1d2019-07-22 10:32:12 +0900224}
225EXPORT_SYMBOL_GPL(snd_soc_dai_set_tdm_slot);
226
227/**
228 * snd_soc_dai_set_channel_map - configure DAI audio channel map
229 * @dai: DAI
230 * @tx_num: how many TX channels
231 * @tx_slot: pointer to an array which imply the TX slot number channel
232 * 0~num-1 uses
233 * @rx_num: how many RX channels
234 * @rx_slot: pointer to an array which imply the RX slot number channel
235 * 0~num-1 uses
236 *
237 * configure the relationship between channel number and TDM slot number.
238 */
239int snd_soc_dai_set_channel_map(struct snd_soc_dai *dai,
240 unsigned int tx_num, unsigned int *tx_slot,
241 unsigned int rx_num, unsigned int *rx_slot)
242{
Kuninori Morimotoaa7b8232020-04-24 08:14:38 +0900243 int ret = -ENOTSUPP;
244
Kuninori Morimoto479914e2020-04-24 08:14:43 +0900245 if (dai->driver->ops &&
246 dai->driver->ops->set_channel_map)
Kuninori Morimotoaa7b8232020-04-24 08:14:38 +0900247 ret = dai->driver->ops->set_channel_map(dai, tx_num, tx_slot,
248 rx_num, rx_slot);
249 return soc_dai_ret(dai, ret);
Kuninori Morimoto06f6e1d2019-07-22 10:32:12 +0900250}
251EXPORT_SYMBOL_GPL(snd_soc_dai_set_channel_map);
252
253/**
254 * snd_soc_dai_get_channel_map - Get DAI audio channel map
255 * @dai: DAI
256 * @tx_num: how many TX channels
257 * @tx_slot: pointer to an array which imply the TX slot number channel
258 * 0~num-1 uses
259 * @rx_num: how many RX channels
260 * @rx_slot: pointer to an array which imply the RX slot number channel
261 * 0~num-1 uses
262 */
263int snd_soc_dai_get_channel_map(struct snd_soc_dai *dai,
264 unsigned int *tx_num, unsigned int *tx_slot,
265 unsigned int *rx_num, unsigned int *rx_slot)
266{
Kuninori Morimotoaa7b8232020-04-24 08:14:38 +0900267 int ret = -ENOTSUPP;
268
Kuninori Morimoto479914e2020-04-24 08:14:43 +0900269 if (dai->driver->ops &&
270 dai->driver->ops->get_channel_map)
Kuninori Morimotoaa7b8232020-04-24 08:14:38 +0900271 ret = dai->driver->ops->get_channel_map(dai, tx_num, tx_slot,
272 rx_num, rx_slot);
273 return soc_dai_ret(dai, ret);
Kuninori Morimoto06f6e1d2019-07-22 10:32:12 +0900274}
275EXPORT_SYMBOL_GPL(snd_soc_dai_get_channel_map);
276
277/**
278 * snd_soc_dai_set_tristate - configure DAI system or master clock.
279 * @dai: DAI
280 * @tristate: tristate enable
281 *
282 * Tristates the DAI so that others can use it.
283 */
284int snd_soc_dai_set_tristate(struct snd_soc_dai *dai, int tristate)
285{
Kuninori Morimotoaa7b8232020-04-24 08:14:38 +0900286 int ret = -EINVAL;
287
Kuninori Morimoto479914e2020-04-24 08:14:43 +0900288 if (dai->driver->ops &&
289 dai->driver->ops->set_tristate)
Kuninori Morimotoaa7b8232020-04-24 08:14:38 +0900290 ret = dai->driver->ops->set_tristate(dai, tristate);
291
292 return soc_dai_ret(dai, ret);
Kuninori Morimoto06f6e1d2019-07-22 10:32:12 +0900293}
294EXPORT_SYMBOL_GPL(snd_soc_dai_set_tristate);
295
296/**
297 * snd_soc_dai_digital_mute - configure DAI system or master clock.
298 * @dai: DAI
299 * @mute: mute enable
300 * @direction: stream to mute
301 *
302 * Mutes the DAI DAC.
303 */
304int snd_soc_dai_digital_mute(struct snd_soc_dai *dai, int mute,
305 int direction)
306{
Kuninori Morimotoaa7b8232020-04-24 08:14:38 +0900307 int ret = -ENOTSUPP;
308
Kuninori Morimoto350d9932020-07-09 10:55:41 +0900309 /*
310 * ignore if direction was CAPTURE
311 * and it had .no_capture_mute flag
312 */
Kuninori Morimoto479914e2020-04-24 08:14:43 +0900313 if (dai->driver->ops &&
Kuninori Morimoto350d9932020-07-09 10:55:41 +0900314 dai->driver->ops->mute_stream &&
315 (direction == SNDRV_PCM_STREAM_PLAYBACK ||
316 !dai->driver->ops->no_capture_mute))
Kuninori Morimotoaa7b8232020-04-24 08:14:38 +0900317 ret = dai->driver->ops->mute_stream(dai, mute, direction);
Kuninori Morimotoaa7b8232020-04-24 08:14:38 +0900318
319 return soc_dai_ret(dai, ret);
Kuninori Morimoto06f6e1d2019-07-22 10:32:12 +0900320}
321EXPORT_SYMBOL_GPL(snd_soc_dai_digital_mute);
Kuninori Morimotoaa6166c2019-07-22 10:33:04 +0900322
323int snd_soc_dai_hw_params(struct snd_soc_dai *dai,
324 struct snd_pcm_substream *substream,
325 struct snd_pcm_hw_params *params)
326{
Kuninori Morimoto0ceef682020-07-20 10:17:39 +0900327 struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
Kuninori Morimotoaa7b8232020-04-24 08:14:38 +0900328 int ret = 0;
Kuninori Morimotoaa6166c2019-07-22 10:33:04 +0900329
330 /* perform any topology hw_params fixups before DAI */
Kuninori Morimoto0cbbf8a2020-05-25 09:57:36 +0900331 ret = snd_soc_link_be_hw_params_fixup(rtd, params);
332 if (ret < 0)
333 goto end;
Kuninori Morimotoaa6166c2019-07-22 10:33:04 +0900334
Kuninori Morimoto479914e2020-04-24 08:14:43 +0900335 if (dai->driver->ops &&
336 dai->driver->ops->hw_params)
Kuninori Morimotoaa6166c2019-07-22 10:33:04 +0900337 ret = dai->driver->ops->hw_params(substream, params, dai);
Kuninori Morimotoc304c9a2020-09-29 13:31:53 +0900338
339 /* mark substream if succeeded */
340 if (ret == 0)
341 soc_dai_mark_push(dai, substream, hw_params);
Kuninori Morimotoaa7b8232020-04-24 08:14:38 +0900342end:
343 return soc_dai_ret(dai, ret);
Kuninori Morimotoaa6166c2019-07-22 10:33:04 +0900344}
Kuninori Morimoto846faae2019-07-22 10:33:19 +0900345
346void snd_soc_dai_hw_free(struct snd_soc_dai *dai,
Kuninori Morimotoc304c9a2020-09-29 13:31:53 +0900347 struct snd_pcm_substream *substream,
348 int rollback)
Kuninori Morimoto846faae2019-07-22 10:33:19 +0900349{
Kuninori Morimotoc304c9a2020-09-29 13:31:53 +0900350 if (rollback && !soc_dai_mark_match(dai, substream, hw_params))
351 return;
352
Kuninori Morimoto479914e2020-04-24 08:14:43 +0900353 if (dai->driver->ops &&
354 dai->driver->ops->hw_free)
Kuninori Morimoto846faae2019-07-22 10:33:19 +0900355 dai->driver->ops->hw_free(substream, dai);
Kuninori Morimotoc304c9a2020-09-29 13:31:53 +0900356
357 /* remove marked substream */
358 soc_dai_mark_pop(dai, substream, hw_params);
Kuninori Morimoto846faae2019-07-22 10:33:19 +0900359}
Kuninori Morimoto5a52a042019-07-22 10:33:32 +0900360
361int snd_soc_dai_startup(struct snd_soc_dai *dai,
362 struct snd_pcm_substream *substream)
363{
364 int ret = 0;
365
Kuninori Morimoto479914e2020-04-24 08:14:43 +0900366 if (dai->driver->ops &&
367 dai->driver->ops->startup)
Kuninori Morimoto5a52a042019-07-22 10:33:32 +0900368 ret = dai->driver->ops->startup(substream, dai);
369
Kuninori Morimoto00a0b462020-09-28 09:00:40 +0900370 /* mark substream if succeeded */
371 if (ret == 0)
372 soc_dai_mark_push(dai, substream, startup);
373
Kuninori Morimotoaa7b8232020-04-24 08:14:38 +0900374 return soc_dai_ret(dai, ret);
Kuninori Morimoto5a52a042019-07-22 10:33:32 +0900375}
Kuninori Morimoto330fcb52019-07-22 10:33:39 +0900376
377void snd_soc_dai_shutdown(struct snd_soc_dai *dai,
Kuninori Morimoto00a0b462020-09-28 09:00:40 +0900378 struct snd_pcm_substream *substream,
379 int rollback)
Kuninori Morimoto330fcb52019-07-22 10:33:39 +0900380{
Kuninori Morimoto00a0b462020-09-28 09:00:40 +0900381 if (rollback && !soc_dai_mark_match(dai, substream, startup))
382 return;
383
Kuninori Morimoto479914e2020-04-24 08:14:43 +0900384 if (dai->driver->ops &&
385 dai->driver->ops->shutdown)
Kuninori Morimoto330fcb52019-07-22 10:33:39 +0900386 dai->driver->ops->shutdown(substream, dai);
Kuninori Morimoto00a0b462020-09-28 09:00:40 +0900387
388 /* remove marked substream */
389 soc_dai_mark_pop(dai, substream, startup);
Kuninori Morimoto330fcb52019-07-22 10:33:39 +0900390}
Kuninori Morimoto4beb8e12019-07-22 10:33:45 +0900391
Kuninori Morimoto1dea80d2019-07-22 10:34:09 +0900392snd_pcm_sframes_t snd_soc_dai_delay(struct snd_soc_dai *dai,
393 struct snd_pcm_substream *substream)
394{
395 int delay = 0;
396
Kuninori Morimoto479914e2020-04-24 08:14:43 +0900397 if (dai->driver->ops &&
398 dai->driver->ops->delay)
Kuninori Morimoto1dea80d2019-07-22 10:34:09 +0900399 delay = dai->driver->ops->delay(substream, dai);
400
401 return delay;
402}
Kuninori Morimotoe0f22622019-07-22 10:34:29 +0900403
Kuninori Morimotob423c422019-07-22 10:35:29 +0900404int snd_soc_dai_compress_new(struct snd_soc_dai *dai,
405 struct snd_soc_pcm_runtime *rtd, int num)
406{
Kuninori Morimotoaa7b8232020-04-24 08:14:38 +0900407 int ret = -ENOTSUPP;
Kuninori Morimotob423c422019-07-22 10:35:29 +0900408 if (dai->driver->compress_new)
Kuninori Morimotoaa7b8232020-04-24 08:14:38 +0900409 ret = dai->driver->compress_new(rtd, num);
410 return soc_dai_ret(dai, ret);
Kuninori Morimotob423c422019-07-22 10:35:29 +0900411}
Kuninori Morimoto467fece2019-07-22 10:36:16 +0900412
413/*
414 * snd_soc_dai_stream_valid() - check if a DAI supports the given stream
415 *
416 * Returns true if the DAI supports the indicated stream type.
417 */
418bool snd_soc_dai_stream_valid(struct snd_soc_dai *dai, int dir)
419{
Kuninori Morimotoacf253c2020-02-19 15:56:30 +0900420 struct snd_soc_pcm_stream *stream = snd_soc_dai_get_pcm_stream(dai, dir);
Kuninori Morimoto467fece2019-07-22 10:36:16 +0900421
422 /* If the codec specifies any channels at all, it supports the stream */
423 return stream->channels_min;
424}
Kuninori Morimoto0b73ba52020-04-24 08:14:48 +0900425
Pierre-Louis Bossart25612472020-07-07 16:04:37 -0500426/*
427 * snd_soc_dai_link_set_capabilities() - set dai_link properties based on its DAIs
428 */
429void snd_soc_dai_link_set_capabilities(struct snd_soc_dai_link *dai_link)
430{
431 struct snd_soc_dai_link_component *cpu;
432 struct snd_soc_dai_link_component *codec;
433 struct snd_soc_dai *dai;
434 bool supported[SNDRV_PCM_STREAM_LAST + 1];
Pierre-Louis Bossart4f872152020-07-23 13:05:33 -0500435 bool supported_cpu;
436 bool supported_codec;
Pierre-Louis Bossart25612472020-07-07 16:04:37 -0500437 int direction;
438 int i;
439
440 for_each_pcm_streams(direction) {
Pierre-Louis Bossart4f872152020-07-23 13:05:33 -0500441 supported_cpu = false;
442 supported_codec = false;
Pierre-Louis Bossart25612472020-07-07 16:04:37 -0500443
444 for_each_link_cpus(dai_link, i, cpu) {
Kuninori Morimotoc1c277b2020-08-27 08:55:39 +0900445 dai = snd_soc_find_dai_with_mutex(cpu);
Pierre-Louis Bossart4f872152020-07-23 13:05:33 -0500446 if (dai && snd_soc_dai_stream_valid(dai, direction)) {
447 supported_cpu = true;
Pierre-Louis Bossart25612472020-07-07 16:04:37 -0500448 break;
449 }
450 }
Pierre-Louis Bossart25612472020-07-07 16:04:37 -0500451 for_each_link_codecs(dai_link, i, codec) {
Kuninori Morimotoc1c277b2020-08-27 08:55:39 +0900452 dai = snd_soc_find_dai_with_mutex(codec);
Pierre-Louis Bossart4f872152020-07-23 13:05:33 -0500453 if (dai && snd_soc_dai_stream_valid(dai, direction)) {
454 supported_codec = true;
Pierre-Louis Bossart25612472020-07-07 16:04:37 -0500455 break;
456 }
457 }
Pierre-Louis Bossart4f872152020-07-23 13:05:33 -0500458 supported[direction] = supported_cpu && supported_codec;
Pierre-Louis Bossart25612472020-07-07 16:04:37 -0500459 }
460
461 dai_link->dpcm_playback = supported[SNDRV_PCM_STREAM_PLAYBACK];
462 dai_link->dpcm_capture = supported[SNDRV_PCM_STREAM_CAPTURE];
463}
464EXPORT_SYMBOL_GPL(snd_soc_dai_link_set_capabilities);
465
Kuninori Morimotodc829102020-05-15 09:46:27 +0900466void snd_soc_dai_action(struct snd_soc_dai *dai,
467 int stream, int action)
468{
Kuninori Morimoto5552f8d2020-05-15 09:46:47 +0900469 /* see snd_soc_dai_stream_active() */
Kuninori Morimotodc829102020-05-15 09:46:27 +0900470 dai->stream_active[stream] += action;
Kuninori Morimoto0812a082020-05-15 09:48:02 +0900471
Kuninori Morimoto488b2ca2020-05-15 09:46:42 +0900472 /* see snd_soc_component_active() */
Kuninori Morimotodc829102020-05-15 09:46:27 +0900473 dai->component->active += action;
474}
475EXPORT_SYMBOL_GPL(snd_soc_dai_action);
476
Kuninori Morimotoefffd9b2020-05-15 09:46:37 +0900477int snd_soc_dai_active(struct snd_soc_dai *dai)
478{
479 int stream, active;
480
481 active = 0;
482 for_each_pcm_streams(stream)
483 active += dai->stream_active[stream];
484
485 return active;
486}
487EXPORT_SYMBOL_GPL(snd_soc_dai_active);
488
Kuninori Morimoto51801ae2020-04-24 08:15:15 +0900489int snd_soc_pcm_dai_probe(struct snd_soc_pcm_runtime *rtd, int order)
490{
491 struct snd_soc_dai *dai;
492 int i;
493
494 for_each_rtd_dais(rtd, i, dai) {
495 if (dai->driver->probe_order != order)
496 continue;
497
498 if (dai->driver->probe) {
499 int ret = dai->driver->probe(dai);
500
501 if (ret < 0)
502 return soc_dai_ret(dai, ret);
503 }
504
505 dai->probed = 1;
506 }
507
508 return 0;
509}
510
Kuninori Morimoto7eaa3132020-04-24 08:15:20 +0900511int snd_soc_pcm_dai_remove(struct snd_soc_pcm_runtime *rtd, int order)
512{
513 struct snd_soc_dai *dai;
514 int i, r, ret = 0;
515
516 for_each_rtd_dais(rtd, i, dai) {
517 if (dai->driver->remove_order != order)
518 continue;
519
520 if (dai->probed &&
521 dai->driver->remove) {
522 r = dai->driver->remove(dai);
523 if (r < 0)
524 ret = r; /* use last error */
525 }
526
527 dai->probed = 0;
528 }
529
530 return ret;
531}
532
Kuninori Morimoto0b73ba52020-04-24 08:14:48 +0900533int snd_soc_pcm_dai_new(struct snd_soc_pcm_runtime *rtd)
534{
535 struct snd_soc_dai *dai;
536 int i, ret = 0;
537
538 for_each_rtd_dais(rtd, i, dai) {
539 if (dai->driver->pcm_new) {
540 ret = dai->driver->pcm_new(rtd, dai);
541 if (ret < 0)
542 return soc_dai_ret(dai, ret);
543 }
544 }
545
546 return 0;
547}
Kuninori Morimotod108c7f2020-04-24 08:14:53 +0900548
549int snd_soc_pcm_dai_prepare(struct snd_pcm_substream *substream)
550{
Kuninori Morimoto0ceef682020-07-20 10:17:39 +0900551 struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
Kuninori Morimotod108c7f2020-04-24 08:14:53 +0900552 struct snd_soc_dai *dai;
553 int i, ret;
554
555 for_each_rtd_dais(rtd, i, dai) {
556 if (dai->driver->ops &&
557 dai->driver->ops->prepare) {
558 ret = dai->driver->ops->prepare(substream, dai);
559 if (ret < 0)
560 return soc_dai_ret(dai, ret);
561 }
562 }
563
564 return 0;
565}
Kuninori Morimoto42f24722020-04-24 08:15:04 +0900566
Kuninori Morimoto6374f492020-12-01 08:51:33 +0900567static int soc_dai_trigger(struct snd_soc_dai *dai,
568 struct snd_pcm_substream *substream, int cmd)
569{
570 int ret = 0;
571
572 if (dai->driver->ops &&
573 dai->driver->ops->trigger)
574 ret = dai->driver->ops->trigger(substream, cmd, dai);
575
576 return soc_dai_ret(dai, ret);
577}
578
Kuninori Morimoto42f24722020-04-24 08:15:04 +0900579int snd_soc_pcm_dai_trigger(struct snd_pcm_substream *substream,
Kuninori Morimoto6374f492020-12-01 08:51:33 +0900580 int cmd, int rollback)
Kuninori Morimoto42f24722020-04-24 08:15:04 +0900581{
Kuninori Morimoto0ceef682020-07-20 10:17:39 +0900582 struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
Kuninori Morimoto42f24722020-04-24 08:15:04 +0900583 struct snd_soc_dai *dai;
Kuninori Morimoto6374f492020-12-01 08:51:33 +0900584 int i, r, ret = 0;
Kuninori Morimoto42f24722020-04-24 08:15:04 +0900585
Kuninori Morimoto6374f492020-12-01 08:51:33 +0900586 switch (cmd) {
587 case SNDRV_PCM_TRIGGER_START:
588 case SNDRV_PCM_TRIGGER_RESUME:
589 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
590 for_each_rtd_dais(rtd, i, dai) {
591 ret = soc_dai_trigger(dai, substream, cmd);
Kuninori Morimoto42f24722020-04-24 08:15:04 +0900592 if (ret < 0)
Kuninori Morimoto6374f492020-12-01 08:51:33 +0900593 break;
594 soc_dai_mark_push(dai, substream, trigger);
595 }
596 break;
597 case SNDRV_PCM_TRIGGER_STOP:
598 case SNDRV_PCM_TRIGGER_SUSPEND:
599 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
600 for_each_rtd_dais(rtd, i, dai) {
601 if (rollback && !soc_dai_mark_match(dai, substream, trigger))
602 continue;
603
604 r = soc_dai_trigger(dai, substream, cmd);
605 if (r < 0)
606 ret = r; /* use last ret */
607 soc_dai_mark_pop(dai, substream, trigger);
Kuninori Morimoto42f24722020-04-24 08:15:04 +0900608 }
609 }
610
Kuninori Morimoto6374f492020-12-01 08:51:33 +0900611 return ret;
Kuninori Morimoto42f24722020-04-24 08:15:04 +0900612}
Kuninori Morimoto308193582020-04-24 08:15:09 +0900613
614int snd_soc_pcm_dai_bespoke_trigger(struct snd_pcm_substream *substream,
615 int cmd)
616{
Kuninori Morimoto0ceef682020-07-20 10:17:39 +0900617 struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
Kuninori Morimoto308193582020-04-24 08:15:09 +0900618 struct snd_soc_dai *dai;
619 int i, ret;
620
621 for_each_rtd_dais(rtd, i, dai) {
622 if (dai->driver->ops &&
623 dai->driver->ops->bespoke_trigger) {
624 ret = dai->driver->ops->bespoke_trigger(substream,
625 cmd, dai);
626 if (ret < 0)
627 return soc_dai_ret(dai, ret);
628 }
629 }
630
631 return 0;
632}
Kuninori Morimotob5ae4cc2020-04-24 08:15:24 +0900633
634int snd_soc_dai_compr_startup(struct snd_soc_dai *dai,
635 struct snd_compr_stream *cstream)
636{
637 int ret = 0;
638
639 if (dai->driver->cops &&
640 dai->driver->cops->startup)
641 ret = dai->driver->cops->startup(cstream, dai);
642
Kuninori Morimoto1e6a93c2020-11-19 08:50:04 +0900643 /* mark cstream if succeeded */
644 if (ret == 0)
645 soc_dai_mark_push(dai, cstream, compr_startup);
646
Kuninori Morimotob5ae4cc2020-04-24 08:15:24 +0900647 return soc_dai_ret(dai, ret);
648}
649EXPORT_SYMBOL_GPL(snd_soc_dai_compr_startup);
Kuninori Morimoto2b25f812020-04-24 08:15:28 +0900650
651void snd_soc_dai_compr_shutdown(struct snd_soc_dai *dai,
Kuninori Morimoto1e6a93c2020-11-19 08:50:04 +0900652 struct snd_compr_stream *cstream,
653 int rollback)
Kuninori Morimoto2b25f812020-04-24 08:15:28 +0900654{
Kuninori Morimoto1e6a93c2020-11-19 08:50:04 +0900655 if (rollback && !soc_dai_mark_match(dai, cstream, compr_startup))
656 return;
657
Kuninori Morimoto2b25f812020-04-24 08:15:28 +0900658 if (dai->driver->cops &&
659 dai->driver->cops->shutdown)
660 dai->driver->cops->shutdown(cstream, dai);
Kuninori Morimoto1e6a93c2020-11-19 08:50:04 +0900661
662 /* remove marked cstream */
663 soc_dai_mark_pop(dai, cstream, compr_startup);
Kuninori Morimoto2b25f812020-04-24 08:15:28 +0900664}
665EXPORT_SYMBOL_GPL(snd_soc_dai_compr_shutdown);
Kuninori Morimotoeb084112020-04-24 08:15:32 +0900666
667int snd_soc_dai_compr_trigger(struct snd_soc_dai *dai,
668 struct snd_compr_stream *cstream, int cmd)
669{
670 int ret = 0;
671
672 if (dai->driver->cops &&
673 dai->driver->cops->trigger)
674 ret = dai->driver->cops->trigger(cstream, cmd, dai);
675
676 return soc_dai_ret(dai, ret);
677}
678EXPORT_SYMBOL_GPL(snd_soc_dai_compr_trigger);
Kuninori Morimoto8dfedaf2020-04-24 08:15:36 +0900679
680int snd_soc_dai_compr_set_params(struct snd_soc_dai *dai,
681 struct snd_compr_stream *cstream,
682 struct snd_compr_params *params)
683{
684 int ret = 0;
685
686 if (dai->driver->cops &&
687 dai->driver->cops->set_params)
688 ret = dai->driver->cops->set_params(cstream, params, dai);
689
690 return soc_dai_ret(dai, ret);
691}
692EXPORT_SYMBOL_GPL(snd_soc_dai_compr_set_params);
Kuninori Morimotoadbef5432020-04-24 08:15:40 +0900693
694int snd_soc_dai_compr_get_params(struct snd_soc_dai *dai,
695 struct snd_compr_stream *cstream,
696 struct snd_codec *params)
697{
698 int ret = 0;
699
700 if (dai->driver->cops &&
701 dai->driver->cops->get_params)
702 ret = dai->driver->cops->get_params(cstream, params, dai);
703
704 return soc_dai_ret(dai, ret);
705}
706EXPORT_SYMBOL_GPL(snd_soc_dai_compr_get_params);
Kuninori Morimoto53294352020-04-24 08:15:45 +0900707
708int snd_soc_dai_compr_ack(struct snd_soc_dai *dai,
709 struct snd_compr_stream *cstream,
710 size_t bytes)
711{
712 int ret = 0;
713
714 if (dai->driver->cops &&
715 dai->driver->cops->ack)
716 ret = dai->driver->cops->ack(cstream, bytes, dai);
717
718 return soc_dai_ret(dai, ret);
719}
720EXPORT_SYMBOL_GPL(snd_soc_dai_compr_ack);
Kuninori Morimotoed38cc52020-04-24 08:15:49 +0900721
722int snd_soc_dai_compr_pointer(struct snd_soc_dai *dai,
723 struct snd_compr_stream *cstream,
724 struct snd_compr_tstamp *tstamp)
725{
726 int ret = 0;
727
728 if (dai->driver->cops &&
729 dai->driver->cops->pointer)
730 ret = dai->driver->cops->pointer(cstream, tstamp, dai);
731
732 return soc_dai_ret(dai, ret);
733}
734EXPORT_SYMBOL_GPL(snd_soc_dai_compr_pointer);
Kuninori Morimoto88b3a7d2020-04-24 08:15:54 +0900735
736int snd_soc_dai_compr_set_metadata(struct snd_soc_dai *dai,
737 struct snd_compr_stream *cstream,
738 struct snd_compr_metadata *metadata)
739{
740 int ret = 0;
741
742 if (dai->driver->cops &&
743 dai->driver->cops->set_metadata)
744 ret = dai->driver->cops->set_metadata(cstream, metadata, dai);
745
746 return soc_dai_ret(dai, ret);
747}
748EXPORT_SYMBOL_GPL(snd_soc_dai_compr_set_metadata);
Kuninori Morimoto94d72812020-04-24 08:15:59 +0900749
750int snd_soc_dai_compr_get_metadata(struct snd_soc_dai *dai,
751 struct snd_compr_stream *cstream,
752 struct snd_compr_metadata *metadata)
753{
754 int ret = 0;
755
756 if (dai->driver->cops &&
757 dai->driver->cops->get_metadata)
758 ret = dai->driver->cops->get_metadata(cstream, metadata, dai);
759
760 return soc_dai_ret(dai, ret);
761}
762EXPORT_SYMBOL_GPL(snd_soc_dai_compr_get_metadata);