blob: 98e08afd8eb9107a4eac558bbae3b1b99e986df3 [file] [log] [blame]
Kuninori Morimotof2b6a1b2018-07-02 06:24:45 +00001// SPDX-License-Identifier: GPL-2.0+
2//
3// soc-topology.c -- ALSA SoC Topology
4//
5// Copyright (C) 2012 Texas Instruments Inc.
6// Copyright (C) 2015 Intel Corporation.
7//
8// Authors: Liam Girdwood <liam.r.girdwood@linux.intel.com>
9// K, Mythri P <mythri.p.k@intel.com>
10// Prusty, Subhransu S <subhransu.s.prusty@intel.com>
11// B, Jayachandran <jayachandran.b@intel.com>
12// Abdullah, Omair M <omair.m.abdullah@intel.com>
13// Jin, Yao <yao.jin@intel.com>
14// Lin, Mengdong <mengdong.lin@intel.com>
15//
16// Add support to read audio firmware topology alongside firmware text. The
17// topology data can contain kcontrols, DAPM graphs, widgets, DAIs, DAI links,
18// equalizers, firmware, coefficients etc.
19//
20// This file only manages the core ALSA and ASoC components, all other bespoke
21// firmware topology data is passed to component drivers for bespoke handling.
Liam Girdwood8a978232015-05-29 19:06:14 +010022
23#include <linux/kernel.h>
24#include <linux/export.h>
25#include <linux/list.h>
26#include <linux/firmware.h>
27#include <linux/slab.h>
28#include <sound/soc.h>
29#include <sound/soc-dapm.h>
30#include <sound/soc-topology.h>
Mengdong Lin28a87ee2015-08-05 14:41:13 +010031#include <sound/tlv.h>
Liam Girdwood8a978232015-05-29 19:06:14 +010032
Pierre-Louis Bossart21141712019-04-04 14:13:58 -050033#define SOC_TPLG_MAGIC_BIG_ENDIAN 0x436F5341 /* ASoC in reverse */
34
Liam Girdwood8a978232015-05-29 19:06:14 +010035/*
36 * We make several passes over the data (since it wont necessarily be ordered)
37 * and process objects in the following order. This guarantees the component
38 * drivers will be ready with any vendor data before the mixers and DAPM objects
39 * are loaded (that may make use of the vendor data).
40 */
41#define SOC_TPLG_PASS_MANIFEST 0
42#define SOC_TPLG_PASS_VENDOR 1
43#define SOC_TPLG_PASS_MIXER 2
44#define SOC_TPLG_PASS_WIDGET 3
Mengdong Lin1a8e7fa2015-08-10 22:48:30 +080045#define SOC_TPLG_PASS_PCM_DAI 4
46#define SOC_TPLG_PASS_GRAPH 5
47#define SOC_TPLG_PASS_PINS 6
Mengdong Lin0038be92016-07-26 14:32:37 +080048#define SOC_TPLG_PASS_BE_DAI 7
Mengdong Lin593d9e52016-11-03 01:04:27 +080049#define SOC_TPLG_PASS_LINK 8
Liam Girdwood8a978232015-05-29 19:06:14 +010050
51#define SOC_TPLG_PASS_START SOC_TPLG_PASS_MANIFEST
Mengdong Lin593d9e52016-11-03 01:04:27 +080052#define SOC_TPLG_PASS_END SOC_TPLG_PASS_LINK
Liam Girdwood8a978232015-05-29 19:06:14 +010053
Mengdong Lin583958f2016-10-11 14:36:42 +080054/* topology context */
Liam Girdwood8a978232015-05-29 19:06:14 +010055struct soc_tplg {
56 const struct firmware *fw;
57
58 /* runtime FW parsing */
59 const u8 *pos; /* read postion */
60 const u8 *hdr_pos; /* header position */
61 unsigned int pass; /* pass number */
62
63 /* component caller */
64 struct device *dev;
65 struct snd_soc_component *comp;
66 u32 index; /* current block index */
Liam Girdwood8a978232015-05-29 19:06:14 +010067
Mengdong Lin88a17d82015-08-18 18:11:51 +080068 /* vendor specific kcontrol operations */
Liam Girdwood8a978232015-05-29 19:06:14 +010069 const struct snd_soc_tplg_kcontrol_ops *io_ops;
70 int io_ops_count;
71
Mengdong Lin1a3232d2015-08-18 18:12:20 +080072 /* vendor specific bytes ext handlers, for TLV bytes controls */
73 const struct snd_soc_tplg_bytes_ext_ops *bytes_ext_ops;
74 int bytes_ext_ops_count;
75
Liam Girdwood8a978232015-05-29 19:06:14 +010076 /* optional fw loading callbacks to component drivers */
77 struct snd_soc_tplg_ops *ops;
78};
79
80static int soc_tplg_process_headers(struct soc_tplg *tplg);
81static void soc_tplg_complete(struct soc_tplg *tplg);
Liam Girdwood8a978232015-05-29 19:06:14 +010082
83/* check we dont overflow the data for this control chunk */
84static int soc_tplg_check_elem_count(struct soc_tplg *tplg, size_t elem_size,
85 unsigned int count, size_t bytes, const char *elem_type)
86{
87 const u8 *end = tplg->pos + elem_size * count;
88
89 if (end > tplg->fw->data + tplg->fw->size) {
90 dev_err(tplg->dev, "ASoC: %s overflow end of data\n",
91 elem_type);
92 return -EINVAL;
93 }
94
95 /* check there is enough room in chunk for control.
96 extra bytes at the end of control are for vendor data here */
97 if (elem_size * count > bytes) {
98 dev_err(tplg->dev,
99 "ASoC: %s count %d of size %zu is bigger than chunk %zu\n",
100 elem_type, count, elem_size, bytes);
101 return -EINVAL;
102 }
103
104 return 0;
105}
106
107static inline int soc_tplg_is_eof(struct soc_tplg *tplg)
108{
109 const u8 *end = tplg->hdr_pos;
110
111 if (end >= tplg->fw->data + tplg->fw->size)
112 return 1;
113 return 0;
114}
115
116static inline unsigned long soc_tplg_get_hdr_offset(struct soc_tplg *tplg)
117{
118 return (unsigned long)(tplg->hdr_pos - tplg->fw->data);
119}
120
121static inline unsigned long soc_tplg_get_offset(struct soc_tplg *tplg)
122{
123 return (unsigned long)(tplg->pos - tplg->fw->data);
124}
125
126/* mapping of Kcontrol types and associated operations. */
127static const struct snd_soc_tplg_kcontrol_ops io_ops[] = {
128 {SND_SOC_TPLG_CTL_VOLSW, snd_soc_get_volsw,
129 snd_soc_put_volsw, snd_soc_info_volsw},
130 {SND_SOC_TPLG_CTL_VOLSW_SX, snd_soc_get_volsw_sx,
131 snd_soc_put_volsw_sx, NULL},
132 {SND_SOC_TPLG_CTL_ENUM, snd_soc_get_enum_double,
133 snd_soc_put_enum_double, snd_soc_info_enum_double},
134 {SND_SOC_TPLG_CTL_ENUM_VALUE, snd_soc_get_enum_double,
135 snd_soc_put_enum_double, NULL},
136 {SND_SOC_TPLG_CTL_BYTES, snd_soc_bytes_get,
137 snd_soc_bytes_put, snd_soc_bytes_info},
138 {SND_SOC_TPLG_CTL_RANGE, snd_soc_get_volsw_range,
139 snd_soc_put_volsw_range, snd_soc_info_volsw_range},
140 {SND_SOC_TPLG_CTL_VOLSW_XR_SX, snd_soc_get_xr_sx,
141 snd_soc_put_xr_sx, snd_soc_info_xr_sx},
142 {SND_SOC_TPLG_CTL_STROBE, snd_soc_get_strobe,
143 snd_soc_put_strobe, NULL},
144 {SND_SOC_TPLG_DAPM_CTL_VOLSW, snd_soc_dapm_get_volsw,
Jeeja KP2c57d4782015-07-14 13:10:47 +0530145 snd_soc_dapm_put_volsw, snd_soc_info_volsw},
Liam Girdwood8a978232015-05-29 19:06:14 +0100146 {SND_SOC_TPLG_DAPM_CTL_ENUM_DOUBLE, snd_soc_dapm_get_enum_double,
147 snd_soc_dapm_put_enum_double, snd_soc_info_enum_double},
148 {SND_SOC_TPLG_DAPM_CTL_ENUM_VIRT, snd_soc_dapm_get_enum_double,
149 snd_soc_dapm_put_enum_double, NULL},
150 {SND_SOC_TPLG_DAPM_CTL_ENUM_VALUE, snd_soc_dapm_get_enum_double,
151 snd_soc_dapm_put_enum_double, NULL},
152 {SND_SOC_TPLG_DAPM_CTL_PIN, snd_soc_dapm_get_pin_switch,
153 snd_soc_dapm_put_pin_switch, snd_soc_dapm_info_pin_switch},
154};
155
156struct soc_tplg_map {
157 int uid;
158 int kid;
159};
160
161/* mapping of widget types from UAPI IDs to kernel IDs */
162static const struct soc_tplg_map dapm_map[] = {
163 {SND_SOC_TPLG_DAPM_INPUT, snd_soc_dapm_input},
164 {SND_SOC_TPLG_DAPM_OUTPUT, snd_soc_dapm_output},
165 {SND_SOC_TPLG_DAPM_MUX, snd_soc_dapm_mux},
166 {SND_SOC_TPLG_DAPM_MIXER, snd_soc_dapm_mixer},
167 {SND_SOC_TPLG_DAPM_PGA, snd_soc_dapm_pga},
168 {SND_SOC_TPLG_DAPM_OUT_DRV, snd_soc_dapm_out_drv},
169 {SND_SOC_TPLG_DAPM_ADC, snd_soc_dapm_adc},
170 {SND_SOC_TPLG_DAPM_DAC, snd_soc_dapm_dac},
171 {SND_SOC_TPLG_DAPM_SWITCH, snd_soc_dapm_switch},
172 {SND_SOC_TPLG_DAPM_PRE, snd_soc_dapm_pre},
173 {SND_SOC_TPLG_DAPM_POST, snd_soc_dapm_post},
174 {SND_SOC_TPLG_DAPM_AIF_IN, snd_soc_dapm_aif_in},
175 {SND_SOC_TPLG_DAPM_AIF_OUT, snd_soc_dapm_aif_out},
176 {SND_SOC_TPLG_DAPM_DAI_IN, snd_soc_dapm_dai_in},
177 {SND_SOC_TPLG_DAPM_DAI_OUT, snd_soc_dapm_dai_out},
178 {SND_SOC_TPLG_DAPM_DAI_LINK, snd_soc_dapm_dai_link},
Liam Girdwood8a70b452017-06-29 14:22:24 +0100179 {SND_SOC_TPLG_DAPM_BUFFER, snd_soc_dapm_buffer},
180 {SND_SOC_TPLG_DAPM_SCHEDULER, snd_soc_dapm_scheduler},
181 {SND_SOC_TPLG_DAPM_EFFECT, snd_soc_dapm_effect},
182 {SND_SOC_TPLG_DAPM_SIGGEN, snd_soc_dapm_siggen},
183 {SND_SOC_TPLG_DAPM_SRC, snd_soc_dapm_src},
184 {SND_SOC_TPLG_DAPM_ASRC, snd_soc_dapm_asrc},
185 {SND_SOC_TPLG_DAPM_ENCODER, snd_soc_dapm_encoder},
186 {SND_SOC_TPLG_DAPM_DECODER, snd_soc_dapm_decoder},
Liam Girdwood8a978232015-05-29 19:06:14 +0100187};
188
189static int tplc_chan_get_reg(struct soc_tplg *tplg,
190 struct snd_soc_tplg_channel *chan, int map)
191{
192 int i;
193
194 for (i = 0; i < SND_SOC_TPLG_MAX_CHAN; i++) {
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500195 if (le32_to_cpu(chan[i].id) == map)
196 return le32_to_cpu(chan[i].reg);
Liam Girdwood8a978232015-05-29 19:06:14 +0100197 }
198
199 return -EINVAL;
200}
201
202static int tplc_chan_get_shift(struct soc_tplg *tplg,
203 struct snd_soc_tplg_channel *chan, int map)
204{
205 int i;
206
207 for (i = 0; i < SND_SOC_TPLG_MAX_CHAN; i++) {
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500208 if (le32_to_cpu(chan[i].id) == map)
209 return le32_to_cpu(chan[i].shift);
Liam Girdwood8a978232015-05-29 19:06:14 +0100210 }
211
212 return -EINVAL;
213}
214
215static int get_widget_id(int tplg_type)
216{
217 int i;
218
219 for (i = 0; i < ARRAY_SIZE(dapm_map); i++) {
220 if (tplg_type == dapm_map[i].uid)
221 return dapm_map[i].kid;
222 }
223
224 return -EINVAL;
225}
226
Liam Girdwood8a978232015-05-29 19:06:14 +0100227static inline void soc_bind_err(struct soc_tplg *tplg,
228 struct snd_soc_tplg_ctl_hdr *hdr, int index)
229{
230 dev_err(tplg->dev,
231 "ASoC: invalid control type (g,p,i) %d:%d:%d index %d at 0x%lx\n",
232 hdr->ops.get, hdr->ops.put, hdr->ops.info, index,
233 soc_tplg_get_offset(tplg));
234}
235
236static inline void soc_control_err(struct soc_tplg *tplg,
237 struct snd_soc_tplg_ctl_hdr *hdr, const char *name)
238{
239 dev_err(tplg->dev,
240 "ASoC: no complete mixer IO handler for %s type (g,p,i) %d:%d:%d at 0x%lx\n",
241 name, hdr->ops.get, hdr->ops.put, hdr->ops.info,
242 soc_tplg_get_offset(tplg));
243}
244
245/* pass vendor data to component driver for processing */
Keyon Jiec2cbd0a2020-05-27 10:28:01 +0800246static int soc_tplg_vendor_load(struct soc_tplg *tplg,
247 struct snd_soc_tplg_hdr *hdr)
Liam Girdwood8a978232015-05-29 19:06:14 +0100248{
249 int ret = 0;
250
Amadeusz Sławińskic42464a2020-03-12 08:22:39 -0400251 if (tplg->ops && tplg->ops->vendor_load)
Liam Girdwoodc60b6132018-06-14 20:50:37 +0100252 ret = tplg->ops->vendor_load(tplg->comp, tplg->index, hdr);
Liam Girdwood8a978232015-05-29 19:06:14 +0100253 else {
254 dev_err(tplg->dev, "ASoC: no vendor load callback for ID %d\n",
255 hdr->vendor_type);
256 return -EINVAL;
257 }
258
259 if (ret < 0)
260 dev_err(tplg->dev,
261 "ASoC: vendor load failed at hdr offset %ld/0x%lx for type %d:%d\n",
262 soc_tplg_get_hdr_offset(tplg),
263 soc_tplg_get_hdr_offset(tplg),
264 hdr->type, hdr->vendor_type);
265 return ret;
266}
267
Liam Girdwood8a978232015-05-29 19:06:14 +0100268/* optionally pass new dynamic widget to component driver. This is mainly for
269 * external widgets where we can assign private data/ops */
270static int soc_tplg_widget_load(struct soc_tplg *tplg,
271 struct snd_soc_dapm_widget *w, struct snd_soc_tplg_dapm_widget *tplg_w)
272{
Amadeusz Sławińskic42464a2020-03-12 08:22:39 -0400273 if (tplg->ops && tplg->ops->widget_load)
Liam Girdwoodc60b6132018-06-14 20:50:37 +0100274 return tplg->ops->widget_load(tplg->comp, tplg->index, w,
275 tplg_w);
Liam Girdwood8a978232015-05-29 19:06:14 +0100276
277 return 0;
278}
279
Liam Girdwoodebd259d2017-06-09 15:43:23 +0100280/* optionally pass new dynamic widget to component driver. This is mainly for
281 * external widgets where we can assign private data/ops */
282static int soc_tplg_widget_ready(struct soc_tplg *tplg,
283 struct snd_soc_dapm_widget *w, struct snd_soc_tplg_dapm_widget *tplg_w)
284{
Amadeusz Sławińskic42464a2020-03-12 08:22:39 -0400285 if (tplg->ops && tplg->ops->widget_ready)
Liam Girdwoodc60b6132018-06-14 20:50:37 +0100286 return tplg->ops->widget_ready(tplg->comp, tplg->index, w,
287 tplg_w);
Liam Girdwoodebd259d2017-06-09 15:43:23 +0100288
289 return 0;
290}
291
Masahiro Yamada183b8022017-02-27 14:29:20 -0800292/* pass DAI configurations to component driver for extra initialization */
Mengdong Lin64527e82016-01-15 16:13:28 +0800293static int soc_tplg_dai_load(struct soc_tplg *tplg,
Liam Girdwoodc60b6132018-06-14 20:50:37 +0100294 struct snd_soc_dai_driver *dai_drv,
295 struct snd_soc_tplg_pcm *pcm, struct snd_soc_dai *dai)
Liam Girdwood8a978232015-05-29 19:06:14 +0100296{
Amadeusz Sławińskic42464a2020-03-12 08:22:39 -0400297 if (tplg->ops && tplg->ops->dai_load)
Liam Girdwoodc60b6132018-06-14 20:50:37 +0100298 return tplg->ops->dai_load(tplg->comp, tplg->index, dai_drv,
299 pcm, dai);
Liam Girdwood8a978232015-05-29 19:06:14 +0100300
301 return 0;
302}
303
Masahiro Yamada183b8022017-02-27 14:29:20 -0800304/* pass link configurations to component driver for extra initialization */
Mengdong Linacfc7d42016-01-15 16:13:37 +0800305static int soc_tplg_dai_link_load(struct soc_tplg *tplg,
Liam Girdwoodc60b6132018-06-14 20:50:37 +0100306 struct snd_soc_dai_link *link, struct snd_soc_tplg_link_config *cfg)
Mengdong Linacfc7d42016-01-15 16:13:37 +0800307{
Amadeusz Sławińskic42464a2020-03-12 08:22:39 -0400308 if (tplg->ops && tplg->ops->link_load)
Liam Girdwoodc60b6132018-06-14 20:50:37 +0100309 return tplg->ops->link_load(tplg->comp, tplg->index, link, cfg);
Mengdong Linacfc7d42016-01-15 16:13:37 +0800310
311 return 0;
312}
313
Liam Girdwood8a978232015-05-29 19:06:14 +0100314/* tell the component driver that all firmware has been loaded in this request */
315static void soc_tplg_complete(struct soc_tplg *tplg)
316{
Amadeusz Sławińskic42464a2020-03-12 08:22:39 -0400317 if (tplg->ops && tplg->ops->complete)
Liam Girdwood8a978232015-05-29 19:06:14 +0100318 tplg->ops->complete(tplg->comp);
319}
320
321/* add a dynamic kcontrol */
322static int soc_tplg_add_dcontrol(struct snd_card *card, struct device *dev,
323 const struct snd_kcontrol_new *control_new, const char *prefix,
324 void *data, struct snd_kcontrol **kcontrol)
325{
326 int err;
327
328 *kcontrol = snd_soc_cnew(control_new, data, control_new->name, prefix);
329 if (*kcontrol == NULL) {
330 dev_err(dev, "ASoC: Failed to create new kcontrol %s\n",
331 control_new->name);
332 return -ENOMEM;
333 }
334
335 err = snd_ctl_add(card, *kcontrol);
336 if (err < 0) {
337 dev_err(dev, "ASoC: Failed to add %s: %d\n",
338 control_new->name, err);
339 return err;
340 }
341
342 return 0;
343}
344
345/* add a dynamic kcontrol for component driver */
346static int soc_tplg_add_kcontrol(struct soc_tplg *tplg,
347 struct snd_kcontrol_new *k, struct snd_kcontrol **kcontrol)
348{
349 struct snd_soc_component *comp = tplg->comp;
350
351 return soc_tplg_add_dcontrol(comp->card->snd_card,
이경택abca9e4a2020-04-01 18:05:24 +0900352 comp->dev, k, comp->name_prefix, comp, kcontrol);
Liam Girdwood8a978232015-05-29 19:06:14 +0100353}
354
355/* remove a mixer kcontrol */
356static void remove_mixer(struct snd_soc_component *comp,
357 struct snd_soc_dobj *dobj, int pass)
358{
359 struct snd_card *card = comp->card->snd_card;
Liam Girdwood8a978232015-05-29 19:06:14 +0100360
361 if (pass != SOC_TPLG_PASS_MIXER)
362 return;
363
364 if (dobj->ops && dobj->ops->control_unload)
365 dobj->ops->control_unload(comp, dobj);
366
Amadeusz Sławiński33ae6ae2019-01-25 14:06:42 -0600367 snd_ctl_remove(card, dobj->control.kcontrol);
368 list_del(&dobj->list);
Liam Girdwood8a978232015-05-29 19:06:14 +0100369}
370
371/* remove an enum kcontrol */
372static void remove_enum(struct snd_soc_component *comp,
373 struct snd_soc_dobj *dobj, int pass)
374{
375 struct snd_card *card = comp->card->snd_card;
Liam Girdwood8a978232015-05-29 19:06:14 +0100376
377 if (pass != SOC_TPLG_PASS_MIXER)
378 return;
379
380 if (dobj->ops && dobj->ops->control_unload)
381 dobj->ops->control_unload(comp, dobj);
382
Amadeusz Sławiński33ae6ae2019-01-25 14:06:42 -0600383 snd_ctl_remove(card, dobj->control.kcontrol);
384 list_del(&dobj->list);
Liam Girdwood8a978232015-05-29 19:06:14 +0100385}
386
387/* remove a byte kcontrol */
388static void remove_bytes(struct snd_soc_component *comp,
389 struct snd_soc_dobj *dobj, int pass)
390{
391 struct snd_card *card = comp->card->snd_card;
Liam Girdwood8a978232015-05-29 19:06:14 +0100392
393 if (pass != SOC_TPLG_PASS_MIXER)
394 return;
395
396 if (dobj->ops && dobj->ops->control_unload)
397 dobj->ops->control_unload(comp, dobj);
398
Amadeusz Sławiński33ae6ae2019-01-25 14:06:42 -0600399 snd_ctl_remove(card, dobj->control.kcontrol);
400 list_del(&dobj->list);
Liam Girdwood8a978232015-05-29 19:06:14 +0100401}
402
Ranjani Sridharan7df04ea2019-01-25 14:06:47 -0600403/* remove a route */
404static void remove_route(struct snd_soc_component *comp,
405 struct snd_soc_dobj *dobj, int pass)
406{
Ranjani Sridharan7df04ea2019-01-25 14:06:47 -0600407 if (pass != SOC_TPLG_PASS_GRAPH)
408 return;
409
410 if (dobj->ops && dobj->ops->dapm_route_unload)
411 dobj->ops->dapm_route_unload(comp, dobj);
412
413 list_del(&dobj->list);
Ranjani Sridharan7df04ea2019-01-25 14:06:47 -0600414}
415
Liam Girdwood8a978232015-05-29 19:06:14 +0100416/* remove a widget and it's kcontrols - routes must be removed first */
417static void remove_widget(struct snd_soc_component *comp,
418 struct snd_soc_dobj *dobj, int pass)
419{
420 struct snd_card *card = comp->card->snd_card;
421 struct snd_soc_dapm_widget *w =
422 container_of(dobj, struct snd_soc_dapm_widget, dobj);
423 int i;
424
425 if (pass != SOC_TPLG_PASS_WIDGET)
426 return;
427
428 if (dobj->ops && dobj->ops->widget_unload)
429 dobj->ops->widget_unload(comp, dobj);
430
Liam Girdwood05bdcf12018-03-14 20:42:40 +0000431 if (!w->kcontrols)
432 goto free_news;
433
Amadeusz Sławiński8d456652020-10-30 10:54:27 -0400434 for (i = 0; w->kcontrols && i < w->num_kcontrols; i++)
435 snd_ctl_remove(card, w->kcontrols[i]);
Liam Girdwood05bdcf12018-03-14 20:42:40 +0000436
437free_news:
Liam Girdwood05bdcf12018-03-14 20:42:40 +0000438
Amadeusz Sławińskia46e8392019-01-25 14:06:43 -0600439 list_del(&dobj->list);
440
Liam Girdwood8a978232015-05-29 19:06:14 +0100441 /* widget w is freed by soc-dapm.c */
442}
443
Mengdong Lin64527e82016-01-15 16:13:28 +0800444/* remove DAI configurations */
445static void remove_dai(struct snd_soc_component *comp,
Liam Girdwood8a978232015-05-29 19:06:14 +0100446 struct snd_soc_dobj *dobj, int pass)
447{
Mengdong Lin64527e82016-01-15 16:13:28 +0800448 struct snd_soc_dai_driver *dai_drv =
449 container_of(dobj, struct snd_soc_dai_driver, dobj);
Amadeusz Sławińskifc4cb1e2021-01-20 16:28:42 +0100450 struct snd_soc_dai *dai, *_dai;
Mengdong Lin64527e82016-01-15 16:13:28 +0800451
Liam Girdwood8a978232015-05-29 19:06:14 +0100452 if (pass != SOC_TPLG_PASS_PCM_DAI)
453 return;
454
Mengdong Lin64527e82016-01-15 16:13:28 +0800455 if (dobj->ops && dobj->ops->dai_unload)
456 dobj->ops->dai_unload(comp, dobj);
Liam Girdwood8a978232015-05-29 19:06:14 +0100457
Amadeusz Sławińskifc4cb1e2021-01-20 16:28:42 +0100458 for_each_component_dais_safe(comp, dai, _dai)
Guennadi Liakhovetski52abe6c2019-02-01 11:05:13 -0600459 if (dai->driver == dai_drv)
Amadeusz Sławińskifc4cb1e2021-01-20 16:28:42 +0100460 snd_soc_unregister_dai(dai);
Guennadi Liakhovetski52abe6c2019-02-01 11:05:13 -0600461
Liam Girdwood8a978232015-05-29 19:06:14 +0100462 list_del(&dobj->list);
Liam Girdwood8a978232015-05-29 19:06:14 +0100463}
464
Mengdong Linacfc7d42016-01-15 16:13:37 +0800465/* remove link configurations */
466static void remove_link(struct snd_soc_component *comp,
467 struct snd_soc_dobj *dobj, int pass)
468{
469 struct snd_soc_dai_link *link =
470 container_of(dobj, struct snd_soc_dai_link, dobj);
471
472 if (pass != SOC_TPLG_PASS_PCM_DAI)
473 return;
474
475 if (dobj->ops && dobj->ops->link_unload)
476 dobj->ops->link_unload(comp, dobj);
477
Dragos Tarcatudd836dd2019-12-04 15:04:47 -0600478 list_del(&dobj->list);
Kuninori Morimoto50cd9b52019-12-10 09:34:23 +0900479 snd_soc_remove_pcm_runtime(comp->card,
480 snd_soc_get_pcm_runtime(comp->card, link));
Mengdong Linacfc7d42016-01-15 16:13:37 +0800481}
482
Bard liaoadfebb52019-02-01 11:07:40 -0600483/* unload dai link */
484static void remove_backend_link(struct snd_soc_component *comp,
485 struct snd_soc_dobj *dobj, int pass)
486{
487 if (pass != SOC_TPLG_PASS_LINK)
488 return;
489
490 if (dobj->ops && dobj->ops->link_unload)
491 dobj->ops->link_unload(comp, dobj);
492
493 /*
494 * We don't free the link here as what remove_link() do since BE
495 * links are not allocated by topology.
496 * We however need to reset the dobj type to its initial values
497 */
498 dobj->type = SND_SOC_DOBJ_NONE;
499 list_del(&dobj->list);
500}
501
Liam Girdwood8a978232015-05-29 19:06:14 +0100502/* bind a kcontrol to it's IO handlers */
503static int soc_tplg_kcontrol_bind_io(struct snd_soc_tplg_ctl_hdr *hdr,
504 struct snd_kcontrol_new *k,
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800505 const struct soc_tplg *tplg)
Liam Girdwood8a978232015-05-29 19:06:14 +0100506{
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800507 const struct snd_soc_tplg_kcontrol_ops *ops;
Mengdong Lin1a3232d2015-08-18 18:12:20 +0800508 const struct snd_soc_tplg_bytes_ext_ops *ext_ops;
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800509 int num_ops, i;
Liam Girdwood8a978232015-05-29 19:06:14 +0100510
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500511 if (le32_to_cpu(hdr->ops.info) == SND_SOC_TPLG_CTL_BYTES
Mengdong Lin1a3232d2015-08-18 18:12:20 +0800512 && k->iface & SNDRV_CTL_ELEM_IFACE_MIXER
513 && k->access & SNDRV_CTL_ELEM_ACCESS_TLV_READWRITE
514 && k->access & SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK) {
515 struct soc_bytes_ext *sbe;
516 struct snd_soc_tplg_bytes_control *be;
517
518 sbe = (struct soc_bytes_ext *)k->private_value;
519 be = container_of(hdr, struct snd_soc_tplg_bytes_control, hdr);
520
521 /* TLV bytes controls need standard kcontrol info handler,
522 * TLV callback and extended put/get handlers.
523 */
Omair M Abdullahf4be9782015-11-09 23:20:01 +0530524 k->info = snd_soc_bytes_info_ext;
Mengdong Lin1a3232d2015-08-18 18:12:20 +0800525 k->tlv.c = snd_soc_bytes_tlv_callback;
526
Pierre-Louis Bossart6788fc12020-09-17 13:39:12 +0300527 /*
528 * When a topology-based implementation abuses the
529 * control interface and uses bytes_ext controls of
530 * more than 512 bytes, we need to disable the size
531 * checks, otherwise accesses to such controls will
532 * return an -EINVAL error and prevent the card from
533 * being configured.
534 */
535 if (IS_ENABLED(CONFIG_SND_CTL_VALIDATION) && sbe->max > 512)
536 k->access |= SNDRV_CTL_ELEM_ACCESS_SKIP_CHECK;
537
Mengdong Lin1a3232d2015-08-18 18:12:20 +0800538 ext_ops = tplg->bytes_ext_ops;
539 num_ops = tplg->bytes_ext_ops_count;
540 for (i = 0; i < num_ops; i++) {
Pierre-Louis Bossart72bbeda2020-01-02 13:59:52 -0600541 if (!sbe->put &&
542 ext_ops[i].id == le32_to_cpu(be->ext_ops.put))
Mengdong Lin1a3232d2015-08-18 18:12:20 +0800543 sbe->put = ext_ops[i].put;
Pierre-Louis Bossart72bbeda2020-01-02 13:59:52 -0600544 if (!sbe->get &&
545 ext_ops[i].id == le32_to_cpu(be->ext_ops.get))
Mengdong Lin1a3232d2015-08-18 18:12:20 +0800546 sbe->get = ext_ops[i].get;
547 }
548
Dharageswari R819b9f62020-09-08 12:28:24 +0300549 if ((k->access & SNDRV_CTL_ELEM_ACCESS_TLV_READ) && !sbe->get)
Mengdong Lin1a3232d2015-08-18 18:12:20 +0800550 return -EINVAL;
Dharageswari R819b9f62020-09-08 12:28:24 +0300551 if ((k->access & SNDRV_CTL_ELEM_ACCESS_TLV_WRITE) && !sbe->put)
552 return -EINVAL;
553 return 0;
Mengdong Lin1a3232d2015-08-18 18:12:20 +0800554 }
555
Mengdong Lin88a17d82015-08-18 18:11:51 +0800556 /* try and map vendor specific kcontrol handlers first */
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800557 ops = tplg->io_ops;
558 num_ops = tplg->io_ops_count;
Liam Girdwood8a978232015-05-29 19:06:14 +0100559 for (i = 0; i < num_ops; i++) {
560
Pierre-Louis Bossart72bbeda2020-01-02 13:59:52 -0600561 if (k->put == NULL && ops[i].id == le32_to_cpu(hdr->ops.put))
Liam Girdwood8a978232015-05-29 19:06:14 +0100562 k->put = ops[i].put;
Pierre-Louis Bossart72bbeda2020-01-02 13:59:52 -0600563 if (k->get == NULL && ops[i].id == le32_to_cpu(hdr->ops.get))
Liam Girdwood8a978232015-05-29 19:06:14 +0100564 k->get = ops[i].get;
Pierre-Louis Bossart72bbeda2020-01-02 13:59:52 -0600565 if (k->info == NULL && ops[i].id == le32_to_cpu(hdr->ops.info))
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800566 k->info = ops[i].info;
Liam Girdwood8a978232015-05-29 19:06:14 +0100567 }
568
Mengdong Lin88a17d82015-08-18 18:11:51 +0800569 /* vendor specific handlers found ? */
570 if (k->put && k->get && k->info)
571 return 0;
572
573 /* none found so try standard kcontrol handlers */
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800574 ops = io_ops;
575 num_ops = ARRAY_SIZE(io_ops);
Mengdong Lin88a17d82015-08-18 18:11:51 +0800576 for (i = 0; i < num_ops; i++) {
577
Pierre-Louis Bossart72bbeda2020-01-02 13:59:52 -0600578 if (k->put == NULL && ops[i].id == le32_to_cpu(hdr->ops.put))
Mengdong Lin88a17d82015-08-18 18:11:51 +0800579 k->put = ops[i].put;
Pierre-Louis Bossart72bbeda2020-01-02 13:59:52 -0600580 if (k->get == NULL && ops[i].id == le32_to_cpu(hdr->ops.get))
Mengdong Lin88a17d82015-08-18 18:11:51 +0800581 k->get = ops[i].get;
Pierre-Louis Bossart72bbeda2020-01-02 13:59:52 -0600582 if (k->info == NULL && ops[i].id == le32_to_cpu(hdr->ops.info))
Liam Girdwood8a978232015-05-29 19:06:14 +0100583 k->info = ops[i].info;
584 }
585
586 /* standard handlers found ? */
587 if (k->put && k->get && k->info)
588 return 0;
589
Liam Girdwood8a978232015-05-29 19:06:14 +0100590 /* nothing to bind */
591 return -EINVAL;
592}
593
594/* bind a widgets to it's evnt handlers */
595int snd_soc_tplg_widget_bind_event(struct snd_soc_dapm_widget *w,
596 const struct snd_soc_tplg_widget_events *events,
597 int num_events, u16 event_type)
598{
599 int i;
600
601 w->event = NULL;
602
603 for (i = 0; i < num_events; i++) {
604 if (event_type == events[i].type) {
605
606 /* found - so assign event */
607 w->event = events[i].event_handler;
608 return 0;
609 }
610 }
611
612 /* not found */
613 return -EINVAL;
614}
615EXPORT_SYMBOL_GPL(snd_soc_tplg_widget_bind_event);
616
617/* optionally pass new dynamic kcontrol to component driver. */
618static int soc_tplg_init_kcontrol(struct soc_tplg *tplg,
619 struct snd_kcontrol_new *k, struct snd_soc_tplg_ctl_hdr *hdr)
620{
Amadeusz Sławińskic42464a2020-03-12 08:22:39 -0400621 if (tplg->ops && tplg->ops->control_load)
Liam Girdwoodc60b6132018-06-14 20:50:37 +0100622 return tplg->ops->control_load(tplg->comp, tplg->index, k,
623 hdr);
Liam Girdwood8a978232015-05-29 19:06:14 +0100624
625 return 0;
626}
627
Mengdong Lin28a87ee2015-08-05 14:41:13 +0100628
629static int soc_tplg_create_tlv_db_scale(struct soc_tplg *tplg,
630 struct snd_kcontrol_new *kc, struct snd_soc_tplg_tlv_dbscale *scale)
Liam Girdwood8a978232015-05-29 19:06:14 +0100631{
Mengdong Lin28a87ee2015-08-05 14:41:13 +0100632 unsigned int item_len = 2 * sizeof(unsigned int);
633 unsigned int *p;
Liam Girdwood8a978232015-05-29 19:06:14 +0100634
Amadeusz Sławińskiff922622020-10-30 10:54:25 -0400635 p = devm_kzalloc(tplg->dev, item_len + 2 * sizeof(unsigned int), GFP_KERNEL);
Mengdong Lin28a87ee2015-08-05 14:41:13 +0100636 if (!p)
Liam Girdwood8a978232015-05-29 19:06:14 +0100637 return -ENOMEM;
638
Mengdong Lin28a87ee2015-08-05 14:41:13 +0100639 p[0] = SNDRV_CTL_TLVT_DB_SCALE;
640 p[1] = item_len;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500641 p[2] = le32_to_cpu(scale->min);
642 p[3] = (le32_to_cpu(scale->step) & TLV_DB_SCALE_MASK)
643 | (le32_to_cpu(scale->mute) ? TLV_DB_SCALE_MUTE : 0);
Liam Girdwood8a978232015-05-29 19:06:14 +0100644
Mengdong Lin28a87ee2015-08-05 14:41:13 +0100645 kc->tlv.p = (void *)p;
646 return 0;
647}
648
649static int soc_tplg_create_tlv(struct soc_tplg *tplg,
650 struct snd_kcontrol_new *kc, struct snd_soc_tplg_ctl_hdr *tc)
651{
652 struct snd_soc_tplg_ctl_tlv *tplg_tlv;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500653 u32 access = le32_to_cpu(tc->access);
Mengdong Lin28a87ee2015-08-05 14:41:13 +0100654
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500655 if (!(access & SNDRV_CTL_ELEM_ACCESS_TLV_READWRITE))
Mengdong Lin28a87ee2015-08-05 14:41:13 +0100656 return 0;
657
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500658 if (!(access & SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK)) {
Mengdong Lin28a87ee2015-08-05 14:41:13 +0100659 tplg_tlv = &tc->tlv;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500660 switch (le32_to_cpu(tplg_tlv->type)) {
Mengdong Lin28a87ee2015-08-05 14:41:13 +0100661 case SNDRV_CTL_TLVT_DB_SCALE:
662 return soc_tplg_create_tlv_db_scale(tplg, kc,
663 &tplg_tlv->scale);
664
665 /* TODO: add support for other TLV types */
666 default:
667 dev_dbg(tplg->dev, "Unsupported TLV type %d\n",
668 tplg_tlv->type);
669 return -EINVAL;
670 }
671 }
Liam Girdwood8a978232015-05-29 19:06:14 +0100672
673 return 0;
674}
675
Liam Girdwood8a978232015-05-29 19:06:14 +0100676static int soc_tplg_dbytes_create(struct soc_tplg *tplg, unsigned int count,
677 size_t size)
678{
679 struct snd_soc_tplg_bytes_control *be;
680 struct soc_bytes_ext *sbe;
681 struct snd_kcontrol_new kc;
Pierre-Louis Bossart129fc2b2020-07-07 15:37:47 -0500682 int i;
683 int err = 0;
Liam Girdwood8a978232015-05-29 19:06:14 +0100684
685 if (soc_tplg_check_elem_count(tplg,
686 sizeof(struct snd_soc_tplg_bytes_control), count,
687 size, "mixer bytes")) {
688 dev_err(tplg->dev, "ASoC: Invalid count %d for byte control\n",
689 count);
690 return -EINVAL;
691 }
692
693 for (i = 0; i < count; i++) {
694 be = (struct snd_soc_tplg_bytes_control *)tplg->pos;
695
696 /* validate kcontrol */
697 if (strnlen(be->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
698 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
699 return -EINVAL;
700
Amadeusz Sławińskiff922622020-10-30 10:54:25 -0400701 sbe = devm_kzalloc(tplg->dev, sizeof(*sbe), GFP_KERNEL);
Liam Girdwood8a978232015-05-29 19:06:14 +0100702 if (sbe == NULL)
703 return -ENOMEM;
704
705 tplg->pos += (sizeof(struct snd_soc_tplg_bytes_control) +
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500706 le32_to_cpu(be->priv.size));
Liam Girdwood8a978232015-05-29 19:06:14 +0100707
708 dev_dbg(tplg->dev,
709 "ASoC: adding bytes kcontrol %s with access 0x%x\n",
710 be->hdr.name, be->hdr.access);
711
712 memset(&kc, 0, sizeof(kc));
713 kc.name = be->hdr.name;
714 kc.private_value = (long)sbe;
715 kc.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500716 kc.access = le32_to_cpu(be->hdr.access);
Liam Girdwood8a978232015-05-29 19:06:14 +0100717
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500718 sbe->max = le32_to_cpu(be->max);
Liam Girdwood8a978232015-05-29 19:06:14 +0100719 sbe->dobj.type = SND_SOC_DOBJ_BYTES;
720 sbe->dobj.ops = tplg->ops;
721 INIT_LIST_HEAD(&sbe->dobj.list);
722
723 /* map io handlers */
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800724 err = soc_tplg_kcontrol_bind_io(&be->hdr, &kc, tplg);
Liam Girdwood8a978232015-05-29 19:06:14 +0100725 if (err) {
726 soc_control_err(tplg, &be->hdr, be->hdr.name);
Pierre-Louis Bossart129fc2b2020-07-07 15:37:47 -0500727 break;
Liam Girdwood8a978232015-05-29 19:06:14 +0100728 }
729
730 /* pass control to driver for optional further init */
731 err = soc_tplg_init_kcontrol(tplg, &kc,
732 (struct snd_soc_tplg_ctl_hdr *)be);
733 if (err < 0) {
734 dev_err(tplg->dev, "ASoC: failed to init %s\n",
735 be->hdr.name);
Pierre-Louis Bossart129fc2b2020-07-07 15:37:47 -0500736 break;
Liam Girdwood8a978232015-05-29 19:06:14 +0100737 }
738
739 /* register control here */
740 err = soc_tplg_add_kcontrol(tplg, &kc,
741 &sbe->dobj.control.kcontrol);
742 if (err < 0) {
743 dev_err(tplg->dev, "ASoC: failed to add %s\n",
744 be->hdr.name);
Pierre-Louis Bossart129fc2b2020-07-07 15:37:47 -0500745 break;
Liam Girdwood8a978232015-05-29 19:06:14 +0100746 }
747
748 list_add(&sbe->dobj.list, &tplg->comp->dobj_list);
749 }
Pierre-Louis Bossart129fc2b2020-07-07 15:37:47 -0500750 return err;
Liam Girdwood8a978232015-05-29 19:06:14 +0100751
752}
753
754static int soc_tplg_dmixer_create(struct soc_tplg *tplg, unsigned int count,
755 size_t size)
756{
757 struct snd_soc_tplg_mixer_control *mc;
758 struct soc_mixer_control *sm;
759 struct snd_kcontrol_new kc;
Pierre-Louis Bossart129fc2b2020-07-07 15:37:47 -0500760 int i;
761 int err = 0;
Liam Girdwood8a978232015-05-29 19:06:14 +0100762
763 if (soc_tplg_check_elem_count(tplg,
764 sizeof(struct snd_soc_tplg_mixer_control),
765 count, size, "mixers")) {
766
767 dev_err(tplg->dev, "ASoC: invalid count %d for controls\n",
768 count);
769 return -EINVAL;
770 }
771
772 for (i = 0; i < count; i++) {
773 mc = (struct snd_soc_tplg_mixer_control *)tplg->pos;
774
775 /* validate kcontrol */
776 if (strnlen(mc->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
777 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
778 return -EINVAL;
779
Amadeusz Sławińskiff922622020-10-30 10:54:25 -0400780 sm = devm_kzalloc(tplg->dev, sizeof(*sm), GFP_KERNEL);
Liam Girdwood8a978232015-05-29 19:06:14 +0100781 if (sm == NULL)
782 return -ENOMEM;
783 tplg->pos += (sizeof(struct snd_soc_tplg_mixer_control) +
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500784 le32_to_cpu(mc->priv.size));
Liam Girdwood8a978232015-05-29 19:06:14 +0100785
786 dev_dbg(tplg->dev,
787 "ASoC: adding mixer kcontrol %s with access 0x%x\n",
788 mc->hdr.name, mc->hdr.access);
789
790 memset(&kc, 0, sizeof(kc));
791 kc.name = mc->hdr.name;
792 kc.private_value = (long)sm;
793 kc.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500794 kc.access = le32_to_cpu(mc->hdr.access);
Liam Girdwood8a978232015-05-29 19:06:14 +0100795
796 /* we only support FL/FR channel mapping atm */
797 sm->reg = tplc_chan_get_reg(tplg, mc->channel,
798 SNDRV_CHMAP_FL);
799 sm->rreg = tplc_chan_get_reg(tplg, mc->channel,
800 SNDRV_CHMAP_FR);
801 sm->shift = tplc_chan_get_shift(tplg, mc->channel,
802 SNDRV_CHMAP_FL);
803 sm->rshift = tplc_chan_get_shift(tplg, mc->channel,
804 SNDRV_CHMAP_FR);
805
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500806 sm->max = le32_to_cpu(mc->max);
807 sm->min = le32_to_cpu(mc->min);
808 sm->invert = le32_to_cpu(mc->invert);
809 sm->platform_max = le32_to_cpu(mc->platform_max);
Liam Girdwood8a978232015-05-29 19:06:14 +0100810 sm->dobj.index = tplg->index;
811 sm->dobj.ops = tplg->ops;
812 sm->dobj.type = SND_SOC_DOBJ_MIXER;
813 INIT_LIST_HEAD(&sm->dobj.list);
814
815 /* map io handlers */
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800816 err = soc_tplg_kcontrol_bind_io(&mc->hdr, &kc, tplg);
Liam Girdwood8a978232015-05-29 19:06:14 +0100817 if (err) {
818 soc_control_err(tplg, &mc->hdr, mc->hdr.name);
Pierre-Louis Bossart129fc2b2020-07-07 15:37:47 -0500819 break;
Liam Girdwood8a978232015-05-29 19:06:14 +0100820 }
821
Bard liao3789deb2019-03-13 21:49:43 +0800822 /* create any TLV data */
Amadeusz Sławiński482db552020-03-27 16:47:25 -0400823 err = soc_tplg_create_tlv(tplg, &kc, &mc->hdr);
824 if (err < 0) {
825 dev_err(tplg->dev, "ASoC: failed to create TLV %s\n",
826 mc->hdr.name);
Pierre-Louis Bossart129fc2b2020-07-07 15:37:47 -0500827 break;
Amadeusz Sławiński482db552020-03-27 16:47:25 -0400828 }
Bard liao3789deb2019-03-13 21:49:43 +0800829
Liam Girdwood8a978232015-05-29 19:06:14 +0100830 /* pass control to driver for optional further init */
831 err = soc_tplg_init_kcontrol(tplg, &kc,
832 (struct snd_soc_tplg_ctl_hdr *) mc);
833 if (err < 0) {
834 dev_err(tplg->dev, "ASoC: failed to init %s\n",
835 mc->hdr.name);
Pierre-Louis Bossart129fc2b2020-07-07 15:37:47 -0500836 break;
Liam Girdwood8a978232015-05-29 19:06:14 +0100837 }
838
Liam Girdwood8a978232015-05-29 19:06:14 +0100839 /* register control here */
840 err = soc_tplg_add_kcontrol(tplg, &kc,
841 &sm->dobj.control.kcontrol);
842 if (err < 0) {
843 dev_err(tplg->dev, "ASoC: failed to add %s\n",
844 mc->hdr.name);
Pierre-Louis Bossart129fc2b2020-07-07 15:37:47 -0500845 break;
Liam Girdwood8a978232015-05-29 19:06:14 +0100846 }
847
848 list_add(&sm->dobj.list, &tplg->comp->dobj_list);
849 }
850
Pierre-Louis Bossart129fc2b2020-07-07 15:37:47 -0500851 return err;
Liam Girdwood8a978232015-05-29 19:06:14 +0100852}
853
Amadeusz Sławińskiff922622020-10-30 10:54:25 -0400854static int soc_tplg_denum_create_texts(struct soc_tplg *tplg, struct soc_enum *se,
855 struct snd_soc_tplg_enum_control *ec)
Liam Girdwood8a978232015-05-29 19:06:14 +0100856{
857 int i, ret;
858
Amadeusz Sławińskif5824e52020-12-10 10:25:41 -0500859 if (le32_to_cpu(ec->items) > ARRAY_SIZE(ec->texts))
860 return -EINVAL;
861
Liam Girdwood8a978232015-05-29 19:06:14 +0100862 se->dobj.control.dtexts =
Amadeusz Sławińskiff922622020-10-30 10:54:25 -0400863 devm_kcalloc(tplg->dev, le32_to_cpu(ec->items), sizeof(char *), GFP_KERNEL);
Liam Girdwood8a978232015-05-29 19:06:14 +0100864 if (se->dobj.control.dtexts == NULL)
865 return -ENOMEM;
866
Pierre-Louis Bossart72bbeda2020-01-02 13:59:52 -0600867 for (i = 0; i < le32_to_cpu(ec->items); i++) {
Liam Girdwood8a978232015-05-29 19:06:14 +0100868
869 if (strnlen(ec->texts[i], SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
870 SNDRV_CTL_ELEM_ID_NAME_MAXLEN) {
871 ret = -EINVAL;
872 goto err;
873 }
874
Amadeusz Sławińskiff922622020-10-30 10:54:25 -0400875 se->dobj.control.dtexts[i] = devm_kstrdup(tplg->dev, ec->texts[i], GFP_KERNEL);
Liam Girdwood8a978232015-05-29 19:06:14 +0100876 if (!se->dobj.control.dtexts[i]) {
877 ret = -ENOMEM;
878 goto err;
879 }
880 }
881
Amadeusz Sławiński3cde8182019-06-17 13:36:43 +0200882 se->items = le32_to_cpu(ec->items);
Mousumi Janab6e38b22017-04-11 13:06:22 +0530883 se->texts = (const char * const *)se->dobj.control.dtexts;
Liam Girdwood8a978232015-05-29 19:06:14 +0100884 return 0;
885
886err:
Amadeusz Sławiński3cde8182019-06-17 13:36:43 +0200887 return ret;
888}
889
Amadeusz Sławińskiff922622020-10-30 10:54:25 -0400890static int soc_tplg_denum_create_values(struct soc_tplg *tplg, struct soc_enum *se,
891 struct snd_soc_tplg_enum_control *ec)
Liam Girdwood8a978232015-05-29 19:06:14 +0100892{
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500893 int i;
894
Amadeusz Sławiński631c78e2020-12-10 10:25:40 -0500895 /*
896 * Following "if" checks if we have at most SND_SOC_TPLG_NUM_TEXTS
897 * values instead of using ARRAY_SIZE(ec->values) due to the fact that
898 * it is oversized for its purpose. Additionally it is done so because
899 * it is defined in UAPI header where it can't be easily changed.
900 */
901 if (le32_to_cpu(ec->items) > SND_SOC_TPLG_NUM_TEXTS)
Liam Girdwood8a978232015-05-29 19:06:14 +0100902 return -EINVAL;
903
Amadeusz Sławiński631c78e2020-12-10 10:25:40 -0500904 se->dobj.control.dvalues = devm_kcalloc(tplg->dev, le32_to_cpu(ec->items),
Dan Carpenter543466e2021-01-20 12:59:13 +0300905 sizeof(*se->dobj.control.dvalues),
Andrzej Hajda376c0af2015-08-07 09:59:37 +0200906 GFP_KERNEL);
Liam Girdwood8a978232015-05-29 19:06:14 +0100907 if (!se->dobj.control.dvalues)
908 return -ENOMEM;
909
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500910 /* convert from little-endian */
911 for (i = 0; i < le32_to_cpu(ec->items); i++) {
912 se->dobj.control.dvalues[i] = le32_to_cpu(ec->values[i]);
913 }
914
Liam Girdwood8a978232015-05-29 19:06:14 +0100915 return 0;
916}
917
918static int soc_tplg_denum_create(struct soc_tplg *tplg, unsigned int count,
919 size_t size)
920{
921 struct snd_soc_tplg_enum_control *ec;
922 struct soc_enum *se;
923 struct snd_kcontrol_new kc;
Pierre-Louis Bossart129fc2b2020-07-07 15:37:47 -0500924 int i;
925 int err = 0;
Liam Girdwood8a978232015-05-29 19:06:14 +0100926
927 if (soc_tplg_check_elem_count(tplg,
928 sizeof(struct snd_soc_tplg_enum_control),
929 count, size, "enums")) {
930
931 dev_err(tplg->dev, "ASoC: invalid count %d for enum controls\n",
932 count);
933 return -EINVAL;
934 }
935
936 for (i = 0; i < count; i++) {
937 ec = (struct snd_soc_tplg_enum_control *)tplg->pos;
Liam Girdwood8a978232015-05-29 19:06:14 +0100938
939 /* validate kcontrol */
940 if (strnlen(ec->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
941 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
942 return -EINVAL;
943
Amadeusz Sławińskiff922622020-10-30 10:54:25 -0400944 se = devm_kzalloc(tplg->dev, (sizeof(*se)), GFP_KERNEL);
Liam Girdwood8a978232015-05-29 19:06:14 +0100945 if (se == NULL)
946 return -ENOMEM;
947
Liam Girdwood02b64242019-03-01 19:08:52 -0600948 tplg->pos += (sizeof(struct snd_soc_tplg_enum_control) +
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500949 le32_to_cpu(ec->priv.size));
Liam Girdwood02b64242019-03-01 19:08:52 -0600950
Liam Girdwood8a978232015-05-29 19:06:14 +0100951 dev_dbg(tplg->dev, "ASoC: adding enum kcontrol %s size %d\n",
952 ec->hdr.name, ec->items);
953
954 memset(&kc, 0, sizeof(kc));
955 kc.name = ec->hdr.name;
956 kc.private_value = (long)se;
957 kc.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500958 kc.access = le32_to_cpu(ec->hdr.access);
Liam Girdwood8a978232015-05-29 19:06:14 +0100959
960 se->reg = tplc_chan_get_reg(tplg, ec->channel, SNDRV_CHMAP_FL);
961 se->shift_l = tplc_chan_get_shift(tplg, ec->channel,
962 SNDRV_CHMAP_FL);
963 se->shift_r = tplc_chan_get_shift(tplg, ec->channel,
964 SNDRV_CHMAP_FL);
965
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500966 se->mask = le32_to_cpu(ec->mask);
Liam Girdwood8a978232015-05-29 19:06:14 +0100967 se->dobj.index = tplg->index;
968 se->dobj.type = SND_SOC_DOBJ_ENUM;
969 se->dobj.ops = tplg->ops;
970 INIT_LIST_HEAD(&se->dobj.list);
971
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500972 switch (le32_to_cpu(ec->hdr.ops.info)) {
Liam Girdwood8a978232015-05-29 19:06:14 +0100973 case SND_SOC_TPLG_DAPM_CTL_ENUM_VALUE:
974 case SND_SOC_TPLG_CTL_ENUM_VALUE:
Amadeusz Sławińskiff922622020-10-30 10:54:25 -0400975 err = soc_tplg_denum_create_values(tplg, se, ec);
Liam Girdwood8a978232015-05-29 19:06:14 +0100976 if (err < 0) {
977 dev_err(tplg->dev,
978 "ASoC: could not create values for %s\n",
979 ec->hdr.name);
Pierre-Louis Bossart129fc2b2020-07-07 15:37:47 -0500980 goto err_denum;
Liam Girdwood8a978232015-05-29 19:06:14 +0100981 }
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -0500982 fallthrough;
Liam Girdwood8a978232015-05-29 19:06:14 +0100983 case SND_SOC_TPLG_CTL_ENUM:
984 case SND_SOC_TPLG_DAPM_CTL_ENUM_DOUBLE:
985 case SND_SOC_TPLG_DAPM_CTL_ENUM_VIRT:
Amadeusz Sławińskiff922622020-10-30 10:54:25 -0400986 err = soc_tplg_denum_create_texts(tplg, se, ec);
Liam Girdwood8a978232015-05-29 19:06:14 +0100987 if (err < 0) {
988 dev_err(tplg->dev,
989 "ASoC: could not create texts for %s\n",
990 ec->hdr.name);
Pierre-Louis Bossart129fc2b2020-07-07 15:37:47 -0500991 goto err_denum;
Liam Girdwood8a978232015-05-29 19:06:14 +0100992 }
993 break;
994 default:
Pierre-Louis Bossart129fc2b2020-07-07 15:37:47 -0500995 err = -EINVAL;
Liam Girdwood8a978232015-05-29 19:06:14 +0100996 dev_err(tplg->dev,
997 "ASoC: invalid enum control type %d for %s\n",
998 ec->hdr.ops.info, ec->hdr.name);
Pierre-Louis Bossart129fc2b2020-07-07 15:37:47 -0500999 goto err_denum;
Liam Girdwood8a978232015-05-29 19:06:14 +01001000 }
1001
1002 /* map io handlers */
Mengdong Lin2b5cdb92015-08-18 18:12:01 +08001003 err = soc_tplg_kcontrol_bind_io(&ec->hdr, &kc, tplg);
Liam Girdwood8a978232015-05-29 19:06:14 +01001004 if (err) {
1005 soc_control_err(tplg, &ec->hdr, ec->hdr.name);
Pierre-Louis Bossart129fc2b2020-07-07 15:37:47 -05001006 goto err_denum;
Liam Girdwood8a978232015-05-29 19:06:14 +01001007 }
1008
1009 /* pass control to driver for optional further init */
1010 err = soc_tplg_init_kcontrol(tplg, &kc,
1011 (struct snd_soc_tplg_ctl_hdr *) ec);
1012 if (err < 0) {
1013 dev_err(tplg->dev, "ASoC: failed to init %s\n",
1014 ec->hdr.name);
Pierre-Louis Bossart129fc2b2020-07-07 15:37:47 -05001015 goto err_denum;
Liam Girdwood8a978232015-05-29 19:06:14 +01001016 }
1017
1018 /* register control here */
Pierre-Louis Bossart129fc2b2020-07-07 15:37:47 -05001019 err = soc_tplg_add_kcontrol(tplg,
1020 &kc, &se->dobj.control.kcontrol);
1021 if (err < 0) {
Liam Girdwood8a978232015-05-29 19:06:14 +01001022 dev_err(tplg->dev, "ASoC: could not add kcontrol %s\n",
1023 ec->hdr.name);
Pierre-Louis Bossart129fc2b2020-07-07 15:37:47 -05001024 goto err_denum;
Liam Girdwood8a978232015-05-29 19:06:14 +01001025 }
1026
1027 list_add(&se->dobj.list, &tplg->comp->dobj_list);
1028 }
Pierre-Louis Bossart952bd932020-07-07 15:37:48 -05001029 return 0;
1030
Pierre-Louis Bossart129fc2b2020-07-07 15:37:47 -05001031err_denum:
1032 return err;
Liam Girdwood8a978232015-05-29 19:06:14 +01001033}
1034
1035static int soc_tplg_kcontrol_elems_load(struct soc_tplg *tplg,
1036 struct snd_soc_tplg_hdr *hdr)
1037{
1038 struct snd_soc_tplg_ctl_hdr *control_hdr;
Amadeusz Sławiński2ae548f2020-03-27 16:47:26 -04001039 int ret;
Liam Girdwood8a978232015-05-29 19:06:14 +01001040 int i;
1041
Liam Girdwood8a978232015-05-29 19:06:14 +01001042 dev_dbg(tplg->dev, "ASoC: adding %d kcontrols at 0x%lx\n", hdr->count,
1043 soc_tplg_get_offset(tplg));
1044
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001045 for (i = 0; i < le32_to_cpu(hdr->count); i++) {
Liam Girdwood8a978232015-05-29 19:06:14 +01001046
1047 control_hdr = (struct snd_soc_tplg_ctl_hdr *)tplg->pos;
1048
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001049 if (le32_to_cpu(control_hdr->size) != sizeof(*control_hdr)) {
Mengdong Lin06eb49f2016-04-27 14:52:56 +08001050 dev_err(tplg->dev, "ASoC: invalid control size\n");
1051 return -EINVAL;
1052 }
1053
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001054 switch (le32_to_cpu(control_hdr->ops.info)) {
Liam Girdwood8a978232015-05-29 19:06:14 +01001055 case SND_SOC_TPLG_CTL_VOLSW:
1056 case SND_SOC_TPLG_CTL_STROBE:
1057 case SND_SOC_TPLG_CTL_VOLSW_SX:
1058 case SND_SOC_TPLG_CTL_VOLSW_XR_SX:
1059 case SND_SOC_TPLG_CTL_RANGE:
1060 case SND_SOC_TPLG_DAPM_CTL_VOLSW:
1061 case SND_SOC_TPLG_DAPM_CTL_PIN:
Amadeusz Sławiński2ae548f2020-03-27 16:47:26 -04001062 ret = soc_tplg_dmixer_create(tplg, 1,
1063 le32_to_cpu(hdr->payload_size));
Liam Girdwood8a978232015-05-29 19:06:14 +01001064 break;
1065 case SND_SOC_TPLG_CTL_ENUM:
1066 case SND_SOC_TPLG_CTL_ENUM_VALUE:
1067 case SND_SOC_TPLG_DAPM_CTL_ENUM_DOUBLE:
1068 case SND_SOC_TPLG_DAPM_CTL_ENUM_VIRT:
1069 case SND_SOC_TPLG_DAPM_CTL_ENUM_VALUE:
Amadeusz Sławiński2ae548f2020-03-27 16:47:26 -04001070 ret = soc_tplg_denum_create(tplg, 1,
1071 le32_to_cpu(hdr->payload_size));
Liam Girdwood8a978232015-05-29 19:06:14 +01001072 break;
1073 case SND_SOC_TPLG_CTL_BYTES:
Amadeusz Sławiński2ae548f2020-03-27 16:47:26 -04001074 ret = soc_tplg_dbytes_create(tplg, 1,
1075 le32_to_cpu(hdr->payload_size));
Liam Girdwood8a978232015-05-29 19:06:14 +01001076 break;
1077 default:
1078 soc_bind_err(tplg, control_hdr, i);
1079 return -EINVAL;
1080 }
Amadeusz Sławiński2ae548f2020-03-27 16:47:26 -04001081 if (ret < 0) {
1082 dev_err(tplg->dev, "ASoC: invalid control\n");
1083 return ret;
1084 }
1085
Liam Girdwood8a978232015-05-29 19:06:14 +01001086 }
1087
1088 return 0;
1089}
1090
Liam Girdwood503e79b2018-06-14 20:53:59 +01001091/* optionally pass new dynamic kcontrol to component driver. */
1092static int soc_tplg_add_route(struct soc_tplg *tplg,
1093 struct snd_soc_dapm_route *route)
1094{
Amadeusz Sławińskic42464a2020-03-12 08:22:39 -04001095 if (tplg->ops && tplg->ops->dapm_route_load)
Liam Girdwood503e79b2018-06-14 20:53:59 +01001096 return tplg->ops->dapm_route_load(tplg->comp, tplg->index,
1097 route);
1098
1099 return 0;
1100}
1101
Liam Girdwood8a978232015-05-29 19:06:14 +01001102static int soc_tplg_dapm_graph_elems_load(struct soc_tplg *tplg,
1103 struct snd_soc_tplg_hdr *hdr)
1104{
1105 struct snd_soc_dapm_context *dapm = &tplg->comp->dapm;
Liam Girdwood8a978232015-05-29 19:06:14 +01001106 struct snd_soc_tplg_dapm_graph_elem *elem;
Ranjani Sridharan7df04ea2019-01-25 14:06:47 -06001107 struct snd_soc_dapm_route **routes;
Amadeusz Sławińskiff922622020-10-30 10:54:25 -04001108 int count, i;
Ranjani Sridharan7df04ea2019-01-25 14:06:47 -06001109 int ret = 0;
Liam Girdwood8a978232015-05-29 19:06:14 +01001110
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001111 count = le32_to_cpu(hdr->count);
1112
Liam Girdwood8a978232015-05-29 19:06:14 +01001113 if (soc_tplg_check_elem_count(tplg,
1114 sizeof(struct snd_soc_tplg_dapm_graph_elem),
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001115 count, le32_to_cpu(hdr->payload_size), "graph")) {
Liam Girdwood8a978232015-05-29 19:06:14 +01001116
1117 dev_err(tplg->dev, "ASoC: invalid count %d for DAPM routes\n",
1118 count);
1119 return -EINVAL;
1120 }
1121
Liam Girdwoodb75a6512017-06-29 14:22:26 +01001122 dev_dbg(tplg->dev, "ASoC: adding %d DAPM routes for index %d\n", count,
1123 hdr->index);
Liam Girdwood8a978232015-05-29 19:06:14 +01001124
Ranjani Sridharan7df04ea2019-01-25 14:06:47 -06001125 /* allocate memory for pointer to array of dapm routes */
1126 routes = kcalloc(count, sizeof(struct snd_soc_dapm_route *),
1127 GFP_KERNEL);
1128 if (!routes)
1129 return -ENOMEM;
1130
1131 /*
1132 * allocate memory for each dapm route in the array.
1133 * This needs to be done individually so that
1134 * each route can be freed when it is removed in remove_route().
1135 */
1136 for (i = 0; i < count; i++) {
Amadeusz Sławińskiff922622020-10-30 10:54:25 -04001137 routes[i] = devm_kzalloc(tplg->dev, sizeof(*routes[i]), GFP_KERNEL);
1138 if (!routes[i])
Ranjani Sridharan7df04ea2019-01-25 14:06:47 -06001139 return -ENOMEM;
Ranjani Sridharan7df04ea2019-01-25 14:06:47 -06001140 }
1141
Liam Girdwood8a978232015-05-29 19:06:14 +01001142 for (i = 0; i < count; i++) {
1143 elem = (struct snd_soc_tplg_dapm_graph_elem *)tplg->pos;
1144 tplg->pos += sizeof(struct snd_soc_tplg_dapm_graph_elem);
1145
1146 /* validate routes */
1147 if (strnlen(elem->source, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
Ranjani Sridharan7df04ea2019-01-25 14:06:47 -06001148 SNDRV_CTL_ELEM_ID_NAME_MAXLEN) {
1149 ret = -EINVAL;
1150 break;
1151 }
Liam Girdwood8a978232015-05-29 19:06:14 +01001152 if (strnlen(elem->sink, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
Ranjani Sridharan7df04ea2019-01-25 14:06:47 -06001153 SNDRV_CTL_ELEM_ID_NAME_MAXLEN) {
1154 ret = -EINVAL;
1155 break;
1156 }
Liam Girdwood8a978232015-05-29 19:06:14 +01001157 if (strnlen(elem->control, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
Ranjani Sridharan7df04ea2019-01-25 14:06:47 -06001158 SNDRV_CTL_ELEM_ID_NAME_MAXLEN) {
1159 ret = -EINVAL;
1160 break;
1161 }
Liam Girdwood8a978232015-05-29 19:06:14 +01001162
Ranjani Sridharan7df04ea2019-01-25 14:06:47 -06001163 routes[i]->source = elem->source;
1164 routes[i]->sink = elem->sink;
1165
1166 /* set to NULL atm for tplg users */
1167 routes[i]->connected = NULL;
Liam Girdwood8a978232015-05-29 19:06:14 +01001168 if (strnlen(elem->control, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) == 0)
Ranjani Sridharan7df04ea2019-01-25 14:06:47 -06001169 routes[i]->control = NULL;
Liam Girdwood8a978232015-05-29 19:06:14 +01001170 else
Ranjani Sridharan7df04ea2019-01-25 14:06:47 -06001171 routes[i]->control = elem->control;
Liam Girdwood8a978232015-05-29 19:06:14 +01001172
Ranjani Sridharan7df04ea2019-01-25 14:06:47 -06001173 /* add route dobj to dobj_list */
1174 routes[i]->dobj.type = SND_SOC_DOBJ_GRAPH;
1175 routes[i]->dobj.ops = tplg->ops;
1176 routes[i]->dobj.index = tplg->index;
1177 list_add(&routes[i]->dobj.list, &tplg->comp->dobj_list);
1178
Amadeusz Sławiński6856e882020-03-27 16:47:27 -04001179 ret = soc_tplg_add_route(tplg, routes[i]);
Pierre-Louis Bossart6f0307d2020-07-07 15:37:45 -05001180 if (ret < 0) {
Pierre-Louis Bossart8bf94752020-07-07 15:37:49 -05001181 dev_err(tplg->dev, "ASoC: topology: add_route failed: %d\n", ret);
Pierre-Louis Bossart6f0307d2020-07-07 15:37:45 -05001182 /*
1183 * this route was added to the list, it will
1184 * be freed in remove_route() so increment the
1185 * counter to skip it in the error handling
1186 * below.
1187 */
1188 i++;
Amadeusz Sławiński6856e882020-03-27 16:47:27 -04001189 break;
Pierre-Louis Bossart6f0307d2020-07-07 15:37:45 -05001190 }
Liam Girdwood503e79b2018-06-14 20:53:59 +01001191
Liam Girdwood8a978232015-05-29 19:06:14 +01001192 /* add route, but keep going if some fail */
Ranjani Sridharan7df04ea2019-01-25 14:06:47 -06001193 snd_soc_dapm_add_routes(dapm, routes[i], 1);
Liam Girdwood8a978232015-05-29 19:06:14 +01001194 }
1195
Pierre-Louis Bossart6f0307d2020-07-07 15:37:45 -05001196 /*
Ranjani Sridharan7df04ea2019-01-25 14:06:47 -06001197 * free pointer to array of dapm routes as this is no longer needed.
1198 * The memory allocated for each dapm route will be freed
1199 * when it is removed in remove_route().
1200 */
1201 kfree(routes);
1202
1203 return ret;
Liam Girdwood8a978232015-05-29 19:06:14 +01001204}
1205
Jaska Uimonend29d41e22021-05-07 10:02:46 +03001206static int soc_tplg_dapm_widget_dmixer_create(struct soc_tplg *tplg, struct snd_kcontrol_new *kc)
Liam Girdwood8a978232015-05-29 19:06:14 +01001207{
Liam Girdwood8a978232015-05-29 19:06:14 +01001208 struct soc_mixer_control *sm;
1209 struct snd_soc_tplg_mixer_control *mc;
Jaska Uimonend29d41e22021-05-07 10:02:46 +03001210 int err;
Liam Girdwood8a978232015-05-29 19:06:14 +01001211
Jaska Uimonend29d41e22021-05-07 10:02:46 +03001212 mc = (struct snd_soc_tplg_mixer_control *)tplg->pos;
Liam Girdwood8a978232015-05-29 19:06:14 +01001213
Jaska Uimonend29d41e22021-05-07 10:02:46 +03001214 /* validate kcontrol */
1215 if (strnlen(mc->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1216 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
1217 return -EINVAL;
Liam Girdwood8a978232015-05-29 19:06:14 +01001218
Jaska Uimonend29d41e22021-05-07 10:02:46 +03001219 sm = devm_kzalloc(tplg->dev, sizeof(*sm), GFP_KERNEL);
1220 if (!sm)
1221 return -ENOMEM;
Amadeusz Sławiński9f90af32019-06-17 13:36:44 +02001222
Jaska Uimonend29d41e22021-05-07 10:02:46 +03001223 tplg->pos += sizeof(struct snd_soc_tplg_mixer_control) +
1224 le32_to_cpu(mc->priv.size);
Liam Girdwood8a978232015-05-29 19:06:14 +01001225
Jaska Uimonend29d41e22021-05-07 10:02:46 +03001226 dev_dbg(tplg->dev, " adding DAPM widget mixer control %s\n",
1227 mc->hdr.name);
Liam Girdwood02b64242019-03-01 19:08:52 -06001228
Jaska Uimonend29d41e22021-05-07 10:02:46 +03001229 kc->private_value = (long)sm;
1230 kc->name = devm_kstrdup(tplg->dev, mc->hdr.name, GFP_KERNEL);
1231 if (!kc->name)
1232 return -ENOMEM;
1233 kc->iface = SNDRV_CTL_ELEM_IFACE_MIXER;
1234 kc->access = le32_to_cpu(mc->hdr.access);
Liam Girdwood8a978232015-05-29 19:06:14 +01001235
Jaska Uimonend29d41e22021-05-07 10:02:46 +03001236 /* we only support FL/FR channel mapping atm */
1237 sm->reg = tplc_chan_get_reg(tplg, mc->channel,
1238 SNDRV_CHMAP_FL);
1239 sm->rreg = tplc_chan_get_reg(tplg, mc->channel,
1240 SNDRV_CHMAP_FR);
1241 sm->shift = tplc_chan_get_shift(tplg, mc->channel,
1242 SNDRV_CHMAP_FL);
1243 sm->rshift = tplc_chan_get_shift(tplg, mc->channel,
1244 SNDRV_CHMAP_FR);
Liam Girdwood8a978232015-05-29 19:06:14 +01001245
Jaska Uimonend29d41e22021-05-07 10:02:46 +03001246 sm->max = le32_to_cpu(mc->max);
1247 sm->min = le32_to_cpu(mc->min);
1248 sm->invert = le32_to_cpu(mc->invert);
1249 sm->platform_max = le32_to_cpu(mc->platform_max);
1250 sm->dobj.index = tplg->index;
1251 INIT_LIST_HEAD(&sm->dobj.list);
Liam Girdwood8a978232015-05-29 19:06:14 +01001252
Jaska Uimonend29d41e22021-05-07 10:02:46 +03001253 /* map io handlers */
1254 err = soc_tplg_kcontrol_bind_io(&mc->hdr, kc, tplg);
1255 if (err) {
1256 soc_control_err(tplg, &mc->hdr, mc->hdr.name);
1257 return err;
Liam Girdwood8a978232015-05-29 19:06:14 +01001258 }
Liam Girdwood8a978232015-05-29 19:06:14 +01001259
Jaska Uimonend29d41e22021-05-07 10:02:46 +03001260 /* create any TLV data */
1261 err = soc_tplg_create_tlv(tplg, kc, &mc->hdr);
1262 if (err < 0) {
1263 dev_err(tplg->dev, "ASoC: failed to create TLV %s\n",
1264 mc->hdr.name);
1265 return err;
1266 }
1267
1268 /* pass control to driver for optional further init */
1269 err = soc_tplg_init_kcontrol(tplg, kc,
1270 (struct snd_soc_tplg_ctl_hdr *)mc);
1271 if (err < 0) {
1272 dev_err(tplg->dev, "ASoC: failed to init %s\n",
1273 mc->hdr.name);
1274 return err;
1275 }
1276
1277 return 0;
Liam Girdwood8a978232015-05-29 19:06:14 +01001278}
1279
Jaska Uimonend29d41e22021-05-07 10:02:46 +03001280static int soc_tplg_dapm_widget_denum_create(struct soc_tplg *tplg, struct snd_kcontrol_new *kc)
Liam Girdwood8a978232015-05-29 19:06:14 +01001281{
Liam Girdwood8a978232015-05-29 19:06:14 +01001282 struct snd_soc_tplg_enum_control *ec;
1283 struct soc_enum *se;
Jaska Uimonend29d41e22021-05-07 10:02:46 +03001284 int err;
Liam Girdwood8a978232015-05-29 19:06:14 +01001285
Jaska Uimonend29d41e22021-05-07 10:02:46 +03001286 ec = (struct snd_soc_tplg_enum_control *)tplg->pos;
1287 /* validate kcontrol */
1288 if (strnlen(ec->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1289 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
1290 return -EINVAL;
Liam Girdwood8a978232015-05-29 19:06:14 +01001291
Jaska Uimonend29d41e22021-05-07 10:02:46 +03001292 se = devm_kzalloc(tplg->dev, sizeof(*se), GFP_KERNEL);
1293 if (!se)
1294 return -ENOMEM;
Liam Girdwood8a978232015-05-29 19:06:14 +01001295
Jaska Uimonend29d41e22021-05-07 10:02:46 +03001296 tplg->pos += (sizeof(struct snd_soc_tplg_enum_control) +
1297 le32_to_cpu(ec->priv.size));
Liam Girdwood8a978232015-05-29 19:06:14 +01001298
Jaska Uimonend29d41e22021-05-07 10:02:46 +03001299 dev_dbg(tplg->dev, " adding DAPM widget enum control %s\n",
1300 ec->hdr.name);
Liam Girdwood02b64242019-03-01 19:08:52 -06001301
Jaska Uimonend29d41e22021-05-07 10:02:46 +03001302 kc->private_value = (long)se;
1303 kc->name = devm_kstrdup(tplg->dev, ec->hdr.name, GFP_KERNEL);
1304 if (!kc->name)
1305 return -ENOMEM;
1306 kc->iface = SNDRV_CTL_ELEM_IFACE_MIXER;
1307 kc->access = le32_to_cpu(ec->hdr.access);
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001308
Jaska Uimonend29d41e22021-05-07 10:02:46 +03001309 /* we only support FL/FR channel mapping atm */
1310 se->reg = tplc_chan_get_reg(tplg, ec->channel, SNDRV_CHMAP_FL);
1311 se->shift_l = tplc_chan_get_shift(tplg, ec->channel,
1312 SNDRV_CHMAP_FL);
1313 se->shift_r = tplc_chan_get_shift(tplg, ec->channel,
1314 SNDRV_CHMAP_FR);
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001315
Jaska Uimonend29d41e22021-05-07 10:02:46 +03001316 se->items = le32_to_cpu(ec->items);
1317 se->mask = le32_to_cpu(ec->mask);
1318 se->dobj.index = tplg->index;
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001319
Jaska Uimonend29d41e22021-05-07 10:02:46 +03001320 switch (le32_to_cpu(ec->hdr.ops.info)) {
1321 case SND_SOC_TPLG_CTL_ENUM_VALUE:
1322 case SND_SOC_TPLG_DAPM_CTL_ENUM_VALUE:
1323 err = soc_tplg_denum_create_values(tplg, se, ec);
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001324 if (err < 0) {
Jaska Uimonend29d41e22021-05-07 10:02:46 +03001325 dev_err(tplg->dev, "ASoC: could not create values for %s\n",
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001326 ec->hdr.name);
Jaska Uimonend29d41e22021-05-07 10:02:46 +03001327 return err;
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001328 }
Jaska Uimonend29d41e22021-05-07 10:02:46 +03001329 fallthrough;
1330 case SND_SOC_TPLG_CTL_ENUM:
1331 case SND_SOC_TPLG_DAPM_CTL_ENUM_DOUBLE:
1332 case SND_SOC_TPLG_DAPM_CTL_ENUM_VIRT:
1333 err = soc_tplg_denum_create_texts(tplg, se, ec);
1334 if (err < 0) {
1335 dev_err(tplg->dev, "ASoC: could not create texts for %s\n",
1336 ec->hdr.name);
1337 return err;
1338 }
1339 break;
1340 default:
1341 dev_err(tplg->dev, "ASoC: invalid enum control type %d for %s\n",
1342 ec->hdr.ops.info, ec->hdr.name);
1343 return -EINVAL;
Liam Girdwood8a978232015-05-29 19:06:14 +01001344 }
1345
Jaska Uimonend29d41e22021-05-07 10:02:46 +03001346 /* map io handlers */
1347 err = soc_tplg_kcontrol_bind_io(&ec->hdr, kc, tplg);
1348 if (err) {
1349 soc_control_err(tplg, &ec->hdr, ec->hdr.name);
1350 return err;
1351 }
Liam Girdwood8a978232015-05-29 19:06:14 +01001352
Jaska Uimonend29d41e22021-05-07 10:02:46 +03001353 /* pass control to driver for optional further init */
1354 err = soc_tplg_init_kcontrol(tplg, kc,
1355 (struct snd_soc_tplg_ctl_hdr *)ec);
1356 if (err < 0) {
1357 dev_err(tplg->dev, "ASoC: failed to init %s\n",
1358 ec->hdr.name);
1359 return err;
1360 }
1361
1362 return 0;
Liam Girdwood8a978232015-05-29 19:06:14 +01001363}
1364
Jaska Uimonend29d41e22021-05-07 10:02:46 +03001365static int soc_tplg_dapm_widget_dbytes_create(struct soc_tplg *tplg, struct snd_kcontrol_new *kc)
Liam Girdwood8a978232015-05-29 19:06:14 +01001366{
1367 struct snd_soc_tplg_bytes_control *be;
Amadeusz Sławiński9f90af32019-06-17 13:36:44 +02001368 struct soc_bytes_ext *sbe;
Jaska Uimonend29d41e22021-05-07 10:02:46 +03001369 int err;
Liam Girdwood8a978232015-05-29 19:06:14 +01001370
Jaska Uimonend29d41e22021-05-07 10:02:46 +03001371 be = (struct snd_soc_tplg_bytes_control *)tplg->pos;
Liam Girdwood8a978232015-05-29 19:06:14 +01001372
Jaska Uimonend29d41e22021-05-07 10:02:46 +03001373 /* validate kcontrol */
1374 if (strnlen(be->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1375 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
1376 return -EINVAL;
Liam Girdwood8a978232015-05-29 19:06:14 +01001377
Jaska Uimonend29d41e22021-05-07 10:02:46 +03001378 sbe = devm_kzalloc(tplg->dev, sizeof(*sbe), GFP_KERNEL);
1379 if (!sbe)
1380 return -ENOMEM;
Liam Girdwood8a978232015-05-29 19:06:14 +01001381
Jaska Uimonend29d41e22021-05-07 10:02:46 +03001382 tplg->pos += (sizeof(struct snd_soc_tplg_bytes_control) +
1383 le32_to_cpu(be->priv.size));
Liam Girdwood8a978232015-05-29 19:06:14 +01001384
Jaska Uimonend29d41e22021-05-07 10:02:46 +03001385 dev_dbg(tplg->dev,
1386 "ASoC: adding bytes kcontrol %s with access 0x%x\n",
1387 be->hdr.name, be->hdr.access);
Liam Girdwood8a978232015-05-29 19:06:14 +01001388
Jaska Uimonend29d41e22021-05-07 10:02:46 +03001389 kc->private_value = (long)sbe;
1390 kc->name = devm_kstrdup(tplg->dev, be->hdr.name, GFP_KERNEL);
1391 if (!kc->name)
1392 return -ENOMEM;
1393 kc->iface = SNDRV_CTL_ELEM_IFACE_MIXER;
1394 kc->access = le32_to_cpu(be->hdr.access);
Liam Girdwood8a978232015-05-29 19:06:14 +01001395
Jaska Uimonend29d41e22021-05-07 10:02:46 +03001396 sbe->max = le32_to_cpu(be->max);
1397 INIT_LIST_HEAD(&sbe->dobj.list);
Liam Girdwood8a978232015-05-29 19:06:14 +01001398
Jaska Uimonend29d41e22021-05-07 10:02:46 +03001399 /* map standard io handlers and check for external handlers */
1400 err = soc_tplg_kcontrol_bind_io(&be->hdr, kc, tplg);
1401 if (err) {
1402 soc_control_err(tplg, &be->hdr, be->hdr.name);
1403 return err;
Liam Girdwood8a978232015-05-29 19:06:14 +01001404 }
1405
Jaska Uimonend29d41e22021-05-07 10:02:46 +03001406 /* pass control to driver for optional further init */
1407 err = soc_tplg_init_kcontrol(tplg, kc,
1408 (struct snd_soc_tplg_ctl_hdr *)be);
1409 if (err < 0) {
1410 dev_err(tplg->dev, "ASoC: failed to init %s\n",
1411 be->hdr.name);
1412 return err;
1413 }
Liam Girdwood8a978232015-05-29 19:06:14 +01001414
Jaska Uimonend29d41e22021-05-07 10:02:46 +03001415 return 0;
Liam Girdwood8a978232015-05-29 19:06:14 +01001416}
1417
1418static int soc_tplg_dapm_widget_create(struct soc_tplg *tplg,
1419 struct snd_soc_tplg_dapm_widget *w)
1420{
1421 struct snd_soc_dapm_context *dapm = &tplg->comp->dapm;
1422 struct snd_soc_dapm_widget template, *widget;
1423 struct snd_soc_tplg_ctl_hdr *control_hdr;
1424 struct snd_soc_card *card = tplg->comp->card;
Jaska Uimonenb9c035a2021-05-19 13:07:13 +03001425 unsigned int *kcontrol_type = NULL;
Jaska Uimonend29d41e22021-05-07 10:02:46 +03001426 struct snd_kcontrol_new *kc;
1427 int mixer_count = 0;
1428 int bytes_count = 0;
1429 int enum_count = 0;
Liam Girdwood8a978232015-05-29 19:06:14 +01001430 int ret = 0;
Jaska Uimonend29d41e22021-05-07 10:02:46 +03001431 int i;
Liam Girdwood8a978232015-05-29 19:06:14 +01001432
1433 if (strnlen(w->name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1434 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
1435 return -EINVAL;
1436 if (strnlen(w->sname, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1437 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
1438 return -EINVAL;
1439
1440 dev_dbg(tplg->dev, "ASoC: creating DAPM widget %s id %d\n",
1441 w->name, w->id);
1442
1443 memset(&template, 0, sizeof(template));
1444
1445 /* map user to kernel widget ID */
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001446 template.id = get_widget_id(le32_to_cpu(w->id));
Dan Carpenter752c9382019-09-25 14:06:24 +03001447 if ((int)template.id < 0)
Liam Girdwood8a978232015-05-29 19:06:14 +01001448 return template.id;
1449
Liam Girdwoodc3421a62017-06-06 15:45:09 +01001450 /* strings are allocated here, but used and freed by the widget */
Liam Girdwood8a978232015-05-29 19:06:14 +01001451 template.name = kstrdup(w->name, GFP_KERNEL);
1452 if (!template.name)
1453 return -ENOMEM;
1454 template.sname = kstrdup(w->sname, GFP_KERNEL);
1455 if (!template.sname) {
1456 ret = -ENOMEM;
1457 goto err;
1458 }
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001459 template.reg = le32_to_cpu(w->reg);
1460 template.shift = le32_to_cpu(w->shift);
1461 template.mask = le32_to_cpu(w->mask);
1462 template.subseq = le32_to_cpu(w->subseq);
Liam Girdwood8a978232015-05-29 19:06:14 +01001463 template.on_val = w->invert ? 0 : 1;
1464 template.off_val = w->invert ? 1 : 0;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001465 template.ignore_suspend = le32_to_cpu(w->ignore_suspend);
1466 template.event_flags = le16_to_cpu(w->event_flags);
Liam Girdwood8a978232015-05-29 19:06:14 +01001467 template.dobj.index = tplg->index;
1468
1469 tplg->pos +=
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001470 (sizeof(struct snd_soc_tplg_dapm_widget) +
1471 le32_to_cpu(w->priv.size));
1472
Liam Girdwood8a978232015-05-29 19:06:14 +01001473 if (w->num_kcontrols == 0) {
1474 template.num_kcontrols = 0;
1475 goto widget;
1476 }
1477
1478 control_hdr = (struct snd_soc_tplg_ctl_hdr *)tplg->pos;
1479 dev_dbg(tplg->dev, "ASoC: template %s has %d controls of type %x\n",
1480 w->name, w->num_kcontrols, control_hdr->type);
1481
Jaska Uimonend29d41e22021-05-07 10:02:46 +03001482 template.num_kcontrols = le32_to_cpu(w->num_kcontrols);
1483 kc = devm_kcalloc(tplg->dev, le32_to_cpu(w->num_kcontrols), sizeof(*kc), GFP_KERNEL);
1484 if (!kc)
1485 goto err;
1486
1487 kcontrol_type = devm_kcalloc(tplg->dev, le32_to_cpu(w->num_kcontrols), sizeof(unsigned int),
1488 GFP_KERNEL);
1489 if (!kcontrol_type)
1490 goto err;
1491
1492 for (i = 0; i < w->num_kcontrols; i++) {
1493 control_hdr = (struct snd_soc_tplg_ctl_hdr *)tplg->pos;
1494 switch (le32_to_cpu(control_hdr->ops.info)) {
1495 case SND_SOC_TPLG_CTL_VOLSW:
1496 case SND_SOC_TPLG_CTL_STROBE:
1497 case SND_SOC_TPLG_CTL_VOLSW_SX:
1498 case SND_SOC_TPLG_CTL_VOLSW_XR_SX:
1499 case SND_SOC_TPLG_CTL_RANGE:
1500 case SND_SOC_TPLG_DAPM_CTL_VOLSW:
1501 /* volume mixer */
1502 kc[i].index = mixer_count;
1503 kcontrol_type[i] = SND_SOC_TPLG_TYPE_MIXER;
1504 mixer_count++;
1505 ret = soc_tplg_dapm_widget_dmixer_create(tplg, &kc[i]);
1506 if (ret < 0)
1507 goto hdr_err;
1508 break;
1509 case SND_SOC_TPLG_CTL_ENUM:
1510 case SND_SOC_TPLG_CTL_ENUM_VALUE:
1511 case SND_SOC_TPLG_DAPM_CTL_ENUM_DOUBLE:
1512 case SND_SOC_TPLG_DAPM_CTL_ENUM_VIRT:
1513 case SND_SOC_TPLG_DAPM_CTL_ENUM_VALUE:
1514 /* enumerated mixer */
1515 kc[i].index = enum_count;
1516 kcontrol_type[i] = SND_SOC_TPLG_TYPE_ENUM;
1517 enum_count++;
1518 ret = soc_tplg_dapm_widget_denum_create(tplg, &kc[i]);
1519 if (ret < 0)
1520 goto hdr_err;
1521 break;
1522 case SND_SOC_TPLG_CTL_BYTES:
1523 /* bytes control */
1524 kc[i].index = bytes_count;
1525 kcontrol_type[i] = SND_SOC_TPLG_TYPE_BYTES;
1526 bytes_count++;
1527 ret = soc_tplg_dapm_widget_dbytes_create(tplg, &kc[i]);
1528 if (ret < 0)
1529 goto hdr_err;
1530 break;
1531 default:
1532 dev_err(tplg->dev, "ASoC: invalid widget control type %d:%d:%d\n",
1533 control_hdr->ops.get, control_hdr->ops.put,
1534 le32_to_cpu(control_hdr->ops.info));
1535 ret = -EINVAL;
Liam Girdwood8a978232015-05-29 19:06:14 +01001536 goto hdr_err;
1537 }
Liam Girdwood8a978232015-05-29 19:06:14 +01001538 }
1539
Jaska Uimonend29d41e22021-05-07 10:02:46 +03001540 template.kcontrol_news = kc;
1541
Liam Girdwood8a978232015-05-29 19:06:14 +01001542widget:
1543 ret = soc_tplg_widget_load(tplg, &template, w);
1544 if (ret < 0)
1545 goto hdr_err;
1546
1547 /* card dapm mutex is held by the core if we are loading topology
1548 * data during sound card init. */
1549 if (card->instantiated)
1550 widget = snd_soc_dapm_new_control(dapm, &template);
1551 else
1552 widget = snd_soc_dapm_new_control_unlocked(dapm, &template);
Linus Walleij37e1df82017-01-13 10:23:52 +01001553 if (IS_ERR(widget)) {
1554 ret = PTR_ERR(widget);
Liam Girdwood8a978232015-05-29 19:06:14 +01001555 goto hdr_err;
1556 }
1557
1558 widget->dobj.type = SND_SOC_DOBJ_WIDGET;
Mengdong Lineea3dd42016-11-25 16:09:17 +08001559 widget->dobj.widget.kcontrol_type = kcontrol_type;
Liam Girdwood8a978232015-05-29 19:06:14 +01001560 widget->dobj.ops = tplg->ops;
1561 widget->dobj.index = tplg->index;
1562 list_add(&widget->dobj.list, &tplg->comp->dobj_list);
Liam Girdwoodebd259d2017-06-09 15:43:23 +01001563
1564 ret = soc_tplg_widget_ready(tplg, widget, w);
1565 if (ret < 0)
1566 goto ready_err;
1567
Bard liao7620fe92019-01-25 14:06:45 -06001568 kfree(template.sname);
1569 kfree(template.name);
1570
Liam Girdwood8a978232015-05-29 19:06:14 +01001571 return 0;
1572
Liam Girdwoodebd259d2017-06-09 15:43:23 +01001573ready_err:
Amadeusz Sławiński841fb102020-10-30 10:54:22 -04001574 remove_widget(widget->dapm->component, &widget->dobj, SOC_TPLG_PASS_WIDGET);
Liam Girdwoodebd259d2017-06-09 15:43:23 +01001575 snd_soc_dapm_free_widget(widget);
Liam Girdwood8a978232015-05-29 19:06:14 +01001576hdr_err:
1577 kfree(template.sname);
1578err:
1579 kfree(template.name);
1580 return ret;
1581}
1582
1583static int soc_tplg_dapm_widget_elems_load(struct soc_tplg *tplg,
1584 struct snd_soc_tplg_hdr *hdr)
1585{
Kuninori Morimotoe9aa1392021-08-02 15:00:52 +09001586 int count, i;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001587
1588 count = le32_to_cpu(hdr->count);
Liam Girdwood8a978232015-05-29 19:06:14 +01001589
Liam Girdwood8a978232015-05-29 19:06:14 +01001590 dev_dbg(tplg->dev, "ASoC: adding %d DAPM widgets\n", count);
1591
1592 for (i = 0; i < count; i++) {
Kuninori Morimotoe9aa1392021-08-02 15:00:52 +09001593 struct snd_soc_tplg_dapm_widget *widget = (struct snd_soc_tplg_dapm_widget *) tplg->pos;
1594 int ret;
1595
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001596 if (le32_to_cpu(widget->size) != sizeof(*widget)) {
Mengdong Lin06eb49f2016-04-27 14:52:56 +08001597 dev_err(tplg->dev, "ASoC: invalid widget size\n");
1598 return -EINVAL;
1599 }
1600
Liam Girdwood8a978232015-05-29 19:06:14 +01001601 ret = soc_tplg_dapm_widget_create(tplg, widget);
Mengdong Lin7de76b62016-04-27 14:52:38 +08001602 if (ret < 0) {
Liam Girdwood8a978232015-05-29 19:06:14 +01001603 dev_err(tplg->dev, "ASoC: failed to load widget %s\n",
1604 widget->name);
Mengdong Lin7de76b62016-04-27 14:52:38 +08001605 return ret;
1606 }
Liam Girdwood8a978232015-05-29 19:06:14 +01001607 }
1608
1609 return 0;
1610}
1611
1612static int soc_tplg_dapm_complete(struct soc_tplg *tplg)
1613{
1614 struct snd_soc_card *card = tplg->comp->card;
1615 int ret;
1616
1617 /* Card might not have been registered at this point.
1618 * If so, just return success.
1619 */
1620 if (!card || !card->instantiated) {
1621 dev_warn(tplg->dev, "ASoC: Parent card not yet available,"
Liam Girdwoodcc9d4712017-06-06 15:45:08 +01001622 " widget card binding deferred\n");
Liam Girdwood8a978232015-05-29 19:06:14 +01001623 return 0;
1624 }
1625
1626 ret = snd_soc_dapm_new_widgets(card);
1627 if (ret < 0)
1628 dev_err(tplg->dev, "ASoC: failed to create new widgets %d\n",
1629 ret);
1630
1631 return 0;
1632}
1633
Amadeusz Sławińskiff922622020-10-30 10:54:25 -04001634static int set_stream_info(struct soc_tplg *tplg, struct snd_soc_pcm_stream *stream,
1635 struct snd_soc_tplg_stream_caps *caps)
Mengdong Linb6b6e4d2016-02-22 16:29:19 +08001636{
Amadeusz Sławińskiff922622020-10-30 10:54:25 -04001637 stream->stream_name = devm_kstrdup(tplg->dev, caps->name, GFP_KERNEL);
Amadeusz Sławińskiabc3caa2020-03-27 16:47:24 -04001638 if (!stream->stream_name)
1639 return -ENOMEM;
1640
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001641 stream->channels_min = le32_to_cpu(caps->channels_min);
1642 stream->channels_max = le32_to_cpu(caps->channels_max);
1643 stream->rates = le32_to_cpu(caps->rates);
1644 stream->rate_min = le32_to_cpu(caps->rate_min);
1645 stream->rate_max = le32_to_cpu(caps->rate_max);
1646 stream->formats = le64_to_cpu(caps->formats);
1647 stream->sig_bits = le32_to_cpu(caps->sig_bits);
Amadeusz Sławińskiabc3caa2020-03-27 16:47:24 -04001648
1649 return 0;
Mengdong Linb6b6e4d2016-02-22 16:29:19 +08001650}
1651
Mengdong Lin0038be92016-07-26 14:32:37 +08001652static void set_dai_flags(struct snd_soc_dai_driver *dai_drv,
1653 unsigned int flag_mask, unsigned int flags)
1654{
1655 if (flag_mask & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_RATES)
Kuninori Morimotof14654d2021-01-15 13:52:54 +09001656 dai_drv->symmetric_rate =
Pierre-Louis Bossart47108a62021-02-18 16:19:20 -06001657 (flags & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_RATES) ? 1 : 0;
Mengdong Lin0038be92016-07-26 14:32:37 +08001658
1659 if (flag_mask & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_CHANNELS)
1660 dai_drv->symmetric_channels =
Pierre-Louis Bossart47108a62021-02-18 16:19:20 -06001661 (flags & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_CHANNELS) ?
Mengdong Lin0038be92016-07-26 14:32:37 +08001662 1 : 0;
1663
1664 if (flag_mask & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_SAMPLEBITS)
Kuninori Morimotof14654d2021-01-15 13:52:54 +09001665 dai_drv->symmetric_sample_bits =
Pierre-Louis Bossart47108a62021-02-18 16:19:20 -06001666 (flags & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_SAMPLEBITS) ?
Mengdong Lin0038be92016-07-26 14:32:37 +08001667 1 : 0;
1668}
1669
Mengdong Lin64527e82016-01-15 16:13:28 +08001670static int soc_tplg_dai_create(struct soc_tplg *tplg,
1671 struct snd_soc_tplg_pcm *pcm)
1672{
1673 struct snd_soc_dai_driver *dai_drv;
1674 struct snd_soc_pcm_stream *stream;
1675 struct snd_soc_tplg_stream_caps *caps;
Kuninori Morimotoe443c202019-11-05 15:47:14 +09001676 struct snd_soc_dai *dai;
1677 struct snd_soc_dapm_context *dapm =
1678 snd_soc_component_get_dapm(tplg->comp);
Mengdong Lin64527e82016-01-15 16:13:28 +08001679 int ret;
1680
Amadeusz Sławińskiff922622020-10-30 10:54:25 -04001681 dai_drv = devm_kzalloc(tplg->dev, sizeof(struct snd_soc_dai_driver), GFP_KERNEL);
Mengdong Lin64527e82016-01-15 16:13:28 +08001682 if (dai_drv == NULL)
1683 return -ENOMEM;
1684
Amadeusz Sławińskiabc3caa2020-03-27 16:47:24 -04001685 if (strlen(pcm->dai_name)) {
Amadeusz Sławińskiff922622020-10-30 10:54:25 -04001686 dai_drv->name = devm_kstrdup(tplg->dev, pcm->dai_name, GFP_KERNEL);
Amadeusz Sławińskiabc3caa2020-03-27 16:47:24 -04001687 if (!dai_drv->name) {
1688 ret = -ENOMEM;
1689 goto err;
1690 }
1691 }
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001692 dai_drv->id = le32_to_cpu(pcm->dai_id);
Mengdong Lin64527e82016-01-15 16:13:28 +08001693
1694 if (pcm->playback) {
1695 stream = &dai_drv->playback;
1696 caps = &pcm->caps[SND_SOC_TPLG_STREAM_PLAYBACK];
Amadeusz Sławińskiff922622020-10-30 10:54:25 -04001697 ret = set_stream_info(tplg, stream, caps);
Amadeusz Sławińskiabc3caa2020-03-27 16:47:24 -04001698 if (ret < 0)
1699 goto err;
Mengdong Lin64527e82016-01-15 16:13:28 +08001700 }
1701
1702 if (pcm->capture) {
1703 stream = &dai_drv->capture;
1704 caps = &pcm->caps[SND_SOC_TPLG_STREAM_CAPTURE];
Amadeusz Sławińskiff922622020-10-30 10:54:25 -04001705 ret = set_stream_info(tplg, stream, caps);
Amadeusz Sławińskiabc3caa2020-03-27 16:47:24 -04001706 if (ret < 0)
1707 goto err;
Mengdong Lin64527e82016-01-15 16:13:28 +08001708 }
1709
Liam Girdwood5db6aab2018-03-27 14:30:45 +01001710 if (pcm->compress)
1711 dai_drv->compress_new = snd_soc_new_compress;
1712
Mengdong Lin64527e82016-01-15 16:13:28 +08001713 /* pass control to component driver for optional further init */
Liam Girdwoodc60b6132018-06-14 20:50:37 +01001714 ret = soc_tplg_dai_load(tplg, dai_drv, pcm, NULL);
Mengdong Lin64527e82016-01-15 16:13:28 +08001715 if (ret < 0) {
Amadeusz Sławińskie59db122020-10-30 10:54:24 -04001716 dev_err(tplg->dev, "ASoC: DAI loading failed\n");
Amadeusz Sławińskiabc3caa2020-03-27 16:47:24 -04001717 goto err;
Mengdong Lin64527e82016-01-15 16:13:28 +08001718 }
1719
1720 dai_drv->dobj.index = tplg->index;
1721 dai_drv->dobj.ops = tplg->ops;
1722 dai_drv->dobj.type = SND_SOC_DOBJ_PCM;
1723 list_add(&dai_drv->dobj.list, &tplg->comp->dobj_list);
1724
1725 /* register the DAI to the component */
Amadeusz Sławińskifc4cb1e2021-01-20 16:28:42 +01001726 dai = snd_soc_register_dai(tplg->comp, dai_drv, false);
Kuninori Morimotoe443c202019-11-05 15:47:14 +09001727 if (!dai)
1728 return -ENOMEM;
1729
1730 /* Create the DAI widgets here */
1731 ret = snd_soc_dapm_new_dai_widgets(dapm, dai);
1732 if (ret != 0) {
1733 dev_err(dai->dev, "Failed to create DAI widgets %d\n", ret);
Amadeusz Sławińskifc4cb1e2021-01-20 16:28:42 +01001734 snd_soc_unregister_dai(dai);
Kuninori Morimotoe443c202019-11-05 15:47:14 +09001735 return ret;
1736 }
1737
Amadeusz Sławińskiabc3caa2020-03-27 16:47:24 -04001738 return 0;
1739
1740err:
Kuninori Morimotoe443c202019-11-05 15:47:14 +09001741 return ret;
Mengdong Lin64527e82016-01-15 16:13:28 +08001742}
1743
Mengdong Lin717a8e72016-11-03 01:03:34 +08001744static void set_link_flags(struct snd_soc_dai_link *link,
1745 unsigned int flag_mask, unsigned int flags)
1746{
1747 if (flag_mask & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_RATES)
Kuninori Morimotof14654d2021-01-15 13:52:54 +09001748 link->symmetric_rate =
Pierre-Louis Bossart47108a62021-02-18 16:19:20 -06001749 (flags & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_RATES) ? 1 : 0;
Mengdong Lin717a8e72016-11-03 01:03:34 +08001750
1751 if (flag_mask & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_CHANNELS)
1752 link->symmetric_channels =
Pierre-Louis Bossart47108a62021-02-18 16:19:20 -06001753 (flags & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_CHANNELS) ?
Mengdong Lin717a8e72016-11-03 01:03:34 +08001754 1 : 0;
1755
1756 if (flag_mask & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_SAMPLEBITS)
Kuninori Morimotof14654d2021-01-15 13:52:54 +09001757 link->symmetric_sample_bits =
Pierre-Louis Bossart47108a62021-02-18 16:19:20 -06001758 (flags & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_SAMPLEBITS) ?
Mengdong Lin717a8e72016-11-03 01:03:34 +08001759 1 : 0;
Mengdong Lin6ff67cc2016-11-03 01:05:32 +08001760
1761 if (flag_mask & SND_SOC_TPLG_LNK_FLGBIT_VOICE_WAKEUP)
1762 link->ignore_suspend =
Pierre-Louis Bossart47108a62021-02-18 16:19:20 -06001763 (flags & SND_SOC_TPLG_LNK_FLGBIT_VOICE_WAKEUP) ?
1764 1 : 0;
Mengdong Lin717a8e72016-11-03 01:03:34 +08001765}
1766
Guneshwor Singh67d1c212016-04-19 13:12:50 +08001767/* create the FE DAI link */
Mengdong Linab4bc5e2016-11-03 01:04:42 +08001768static int soc_tplg_fe_link_create(struct soc_tplg *tplg,
Mengdong Linacfc7d42016-01-15 16:13:37 +08001769 struct snd_soc_tplg_pcm *pcm)
1770{
1771 struct snd_soc_dai_link *link;
Kuninori Morimoto23b946c2019-06-06 13:19:14 +09001772 struct snd_soc_dai_link_component *dlc;
Mengdong Linacfc7d42016-01-15 16:13:37 +08001773 int ret;
1774
Pierre-Louis Bossart3e6de892019-06-12 11:38:45 -05001775 /* link + cpu + codec + platform */
Amadeusz Sławińskiff922622020-10-30 10:54:25 -04001776 link = devm_kzalloc(tplg->dev, sizeof(*link) + (3 * sizeof(*dlc)), GFP_KERNEL);
Mengdong Linacfc7d42016-01-15 16:13:37 +08001777 if (link == NULL)
1778 return -ENOMEM;
1779
Kuninori Morimoto23b946c2019-06-06 13:19:14 +09001780 dlc = (struct snd_soc_dai_link_component *)(link + 1);
1781
1782 link->cpus = &dlc[0];
1783 link->codecs = &dlc[1];
Pierre-Louis Bossart3e6de892019-06-12 11:38:45 -05001784 link->platforms = &dlc[2];
Kuninori Morimoto23b946c2019-06-06 13:19:14 +09001785
1786 link->num_cpus = 1;
1787 link->num_codecs = 1;
Pierre-Louis Bossart3e6de892019-06-12 11:38:45 -05001788 link->num_platforms = 1;
Kuninori Morimoto23b946c2019-06-06 13:19:14 +09001789
Jaroslav Kysela8ce1cbd62020-01-22 20:07:52 +01001790 link->dobj.index = tplg->index;
1791 link->dobj.ops = tplg->ops;
1792 link->dobj.type = SND_SOC_DOBJ_DAI_LINK;
1793
Mengdong Lin8f27c4a2016-11-03 01:02:59 +08001794 if (strlen(pcm->pcm_name)) {
Amadeusz Sławińskiff922622020-10-30 10:54:25 -04001795 link->name = devm_kstrdup(tplg->dev, pcm->pcm_name, GFP_KERNEL);
1796 link->stream_name = devm_kstrdup(tplg->dev, pcm->pcm_name, GFP_KERNEL);
Amadeusz Sławińskiabc3caa2020-03-27 16:47:24 -04001797 if (!link->name || !link->stream_name) {
1798 ret = -ENOMEM;
1799 goto err;
1800 }
Mengdong Lin8f27c4a2016-11-03 01:02:59 +08001801 }
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001802 link->id = le32_to_cpu(pcm->pcm_id);
Mengdong Linacfc7d42016-01-15 16:13:37 +08001803
Amadeusz Sławińskiabc3caa2020-03-27 16:47:24 -04001804 if (strlen(pcm->dai_name)) {
Amadeusz Sławińskiff922622020-10-30 10:54:25 -04001805 link->cpus->dai_name = devm_kstrdup(tplg->dev, pcm->dai_name, GFP_KERNEL);
Amadeusz Sławińskiabc3caa2020-03-27 16:47:24 -04001806 if (!link->cpus->dai_name) {
1807 ret = -ENOMEM;
1808 goto err;
1809 }
1810 }
Mengdong Lin8f27c4a2016-11-03 01:02:59 +08001811
Kuninori Morimoto23b946c2019-06-06 13:19:14 +09001812 link->codecs->name = "snd-soc-dummy";
1813 link->codecs->dai_name = "snd-soc-dummy-dai";
Guneshwor Singh67d1c212016-04-19 13:12:50 +08001814
Pierre-Louis Bossart3e6de892019-06-12 11:38:45 -05001815 link->platforms->name = "snd-soc-dummy";
1816
Guneshwor Singh67d1c212016-04-19 13:12:50 +08001817 /* enable DPCM */
1818 link->dynamic = 1;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001819 link->dpcm_playback = le32_to_cpu(pcm->playback);
1820 link->dpcm_capture = le32_to_cpu(pcm->capture);
Mengdong Lin717a8e72016-11-03 01:03:34 +08001821 if (pcm->flag_mask)
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001822 set_link_flags(link,
1823 le32_to_cpu(pcm->flag_mask),
1824 le32_to_cpu(pcm->flags));
Guneshwor Singh67d1c212016-04-19 13:12:50 +08001825
Mengdong Linacfc7d42016-01-15 16:13:37 +08001826 /* pass control to component driver for optional further init */
Liam Girdwoodc60b6132018-06-14 20:50:37 +01001827 ret = soc_tplg_dai_link_load(tplg, link, NULL);
Mengdong Linacfc7d42016-01-15 16:13:37 +08001828 if (ret < 0) {
Amadeusz Sławińskie59db122020-10-30 10:54:24 -04001829 dev_err(tplg->dev, "ASoC: FE link loading failed\n");
Dragos Tarcatu76d27032019-12-09 18:39:38 -06001830 goto err;
1831 }
1832
Mark Brown2acf6ce2019-12-10 13:27:14 +00001833 ret = snd_soc_add_pcm_runtime(tplg->comp->card, link);
Dragos Tarcatu76d27032019-12-09 18:39:38 -06001834 if (ret < 0) {
Amadeusz Sławińskie59db122020-10-30 10:54:24 -04001835 dev_err(tplg->dev, "ASoC: adding FE link failed\n");
Dragos Tarcatu76d27032019-12-09 18:39:38 -06001836 goto err;
Mengdong Linacfc7d42016-01-15 16:13:37 +08001837 }
1838
Mengdong Linacfc7d42016-01-15 16:13:37 +08001839 list_add(&link->dobj.list, &tplg->comp->dobj_list);
1840
Mengdong Linacfc7d42016-01-15 16:13:37 +08001841 return 0;
Dragos Tarcatu76d27032019-12-09 18:39:38 -06001842err:
Dragos Tarcatu76d27032019-12-09 18:39:38 -06001843 return ret;
Mengdong Linacfc7d42016-01-15 16:13:37 +08001844}
1845
1846/* create a FE DAI and DAI link from the PCM object */
Mengdong Lin64527e82016-01-15 16:13:28 +08001847static int soc_tplg_pcm_create(struct soc_tplg *tplg,
1848 struct snd_soc_tplg_pcm *pcm)
1849{
Mengdong Linacfc7d42016-01-15 16:13:37 +08001850 int ret;
1851
1852 ret = soc_tplg_dai_create(tplg, pcm);
1853 if (ret < 0)
1854 return ret;
1855
Mengdong Linab4bc5e2016-11-03 01:04:42 +08001856 return soc_tplg_fe_link_create(tplg, pcm);
Mengdong Lin64527e82016-01-15 16:13:28 +08001857}
1858
Mengdong Lin55726dc2016-11-03 01:00:16 +08001859/* copy stream caps from the old version 4 of source */
1860static void stream_caps_new_ver(struct snd_soc_tplg_stream_caps *dest,
1861 struct snd_soc_tplg_stream_caps_v4 *src)
1862{
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001863 dest->size = cpu_to_le32(sizeof(*dest));
Mengdong Lin55726dc2016-11-03 01:00:16 +08001864 memcpy(dest->name, src->name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN);
1865 dest->formats = src->formats;
1866 dest->rates = src->rates;
1867 dest->rate_min = src->rate_min;
1868 dest->rate_max = src->rate_max;
1869 dest->channels_min = src->channels_min;
1870 dest->channels_max = src->channels_max;
1871 dest->periods_min = src->periods_min;
1872 dest->periods_max = src->periods_max;
1873 dest->period_size_min = src->period_size_min;
1874 dest->period_size_max = src->period_size_max;
1875 dest->buffer_size_min = src->buffer_size_min;
1876 dest->buffer_size_max = src->buffer_size_max;
1877}
1878
1879/**
1880 * pcm_new_ver - Create the new version of PCM from the old version.
1881 * @tplg: topology context
1882 * @src: older version of pcm as a source
1883 * @pcm: latest version of pcm created from the source
1884 *
Colin Ian Kingce1f2572021-06-01 11:35:06 +01001885 * Support from version 4. User should free the returned pcm manually.
Mengdong Lin55726dc2016-11-03 01:00:16 +08001886 */
1887static int pcm_new_ver(struct soc_tplg *tplg,
1888 struct snd_soc_tplg_pcm *src,
1889 struct snd_soc_tplg_pcm **pcm)
1890{
1891 struct snd_soc_tplg_pcm *dest;
1892 struct snd_soc_tplg_pcm_v4 *src_v4;
1893 int i;
1894
1895 *pcm = NULL;
1896
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001897 if (le32_to_cpu(src->size) != sizeof(*src_v4)) {
Mengdong Lin55726dc2016-11-03 01:00:16 +08001898 dev_err(tplg->dev, "ASoC: invalid PCM size\n");
1899 return -EINVAL;
1900 }
1901
1902 dev_warn(tplg->dev, "ASoC: old version of PCM\n");
1903 src_v4 = (struct snd_soc_tplg_pcm_v4 *)src;
1904 dest = kzalloc(sizeof(*dest), GFP_KERNEL);
1905 if (!dest)
1906 return -ENOMEM;
1907
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001908 dest->size = cpu_to_le32(sizeof(*dest)); /* size of latest abi version */
Mengdong Lin55726dc2016-11-03 01:00:16 +08001909 memcpy(dest->pcm_name, src_v4->pcm_name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN);
1910 memcpy(dest->dai_name, src_v4->dai_name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN);
1911 dest->pcm_id = src_v4->pcm_id;
1912 dest->dai_id = src_v4->dai_id;
1913 dest->playback = src_v4->playback;
1914 dest->capture = src_v4->capture;
1915 dest->compress = src_v4->compress;
1916 dest->num_streams = src_v4->num_streams;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001917 for (i = 0; i < le32_to_cpu(dest->num_streams); i++)
Mengdong Lin55726dc2016-11-03 01:00:16 +08001918 memcpy(&dest->stream[i], &src_v4->stream[i],
1919 sizeof(struct snd_soc_tplg_stream));
1920
1921 for (i = 0; i < 2; i++)
1922 stream_caps_new_ver(&dest->caps[i], &src_v4->caps[i]);
1923
1924 *pcm = dest;
1925 return 0;
1926}
1927
Mengdong Lin64527e82016-01-15 16:13:28 +08001928static int soc_tplg_pcm_elems_load(struct soc_tplg *tplg,
Liam Girdwood8a978232015-05-29 19:06:14 +01001929 struct snd_soc_tplg_hdr *hdr)
1930{
Mengdong Lin55726dc2016-11-03 01:00:16 +08001931 struct snd_soc_tplg_pcm *pcm, *_pcm;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001932 int count;
1933 int size;
Vinod Koulfd340452016-12-08 23:01:27 +05301934 int i;
Mengdong Lin55726dc2016-11-03 01:00:16 +08001935 bool abi_match;
Dragos Tarcatua3039ae2019-12-09 18:39:39 -06001936 int ret;
Liam Girdwood8a978232015-05-29 19:06:14 +01001937
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001938 count = le32_to_cpu(hdr->count);
1939
Mengdong Lin55726dc2016-11-03 01:00:16 +08001940 /* check the element size and count */
1941 pcm = (struct snd_soc_tplg_pcm *)tplg->pos;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001942 size = le32_to_cpu(pcm->size);
1943 if (size > sizeof(struct snd_soc_tplg_pcm)
1944 || size < sizeof(struct snd_soc_tplg_pcm_v4)) {
Mengdong Lin55726dc2016-11-03 01:00:16 +08001945 dev_err(tplg->dev, "ASoC: invalid size %d for PCM elems\n",
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001946 size);
Mengdong Lin55726dc2016-11-03 01:00:16 +08001947 return -EINVAL;
1948 }
1949
Liam Girdwood8a978232015-05-29 19:06:14 +01001950 if (soc_tplg_check_elem_count(tplg,
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001951 size, count,
1952 le32_to_cpu(hdr->payload_size),
1953 "PCM DAI")) {
Liam Girdwood8a978232015-05-29 19:06:14 +01001954 dev_err(tplg->dev, "ASoC: invalid count %d for PCM DAI elems\n",
1955 count);
1956 return -EINVAL;
1957 }
1958
Mengdong Lin64527e82016-01-15 16:13:28 +08001959 for (i = 0; i < count; i++) {
Mengdong Lin55726dc2016-11-03 01:00:16 +08001960 pcm = (struct snd_soc_tplg_pcm *)tplg->pos;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001961 size = le32_to_cpu(pcm->size);
Mengdong Lin55726dc2016-11-03 01:00:16 +08001962
1963 /* check ABI version by size, create a new version of pcm
1964 * if abi not match.
1965 */
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001966 if (size == sizeof(*pcm)) {
Mengdong Lin55726dc2016-11-03 01:00:16 +08001967 abi_match = true;
1968 _pcm = pcm;
1969 } else {
1970 abi_match = false;
Amadeusz Sławińskib3677fc32020-03-27 16:47:28 -04001971 ret = pcm_new_ver(tplg, pcm, &_pcm);
1972 if (ret < 0)
1973 return ret;
Mengdong Lin06eb49f2016-04-27 14:52:56 +08001974 }
1975
Mengdong Lin55726dc2016-11-03 01:00:16 +08001976 /* create the FE DAIs and DAI links */
Dragos Tarcatua3039ae2019-12-09 18:39:39 -06001977 ret = soc_tplg_pcm_create(tplg, _pcm);
1978 if (ret < 0) {
1979 if (!abi_match)
1980 kfree(_pcm);
1981 return ret;
1982 }
Mengdong Lin55726dc2016-11-03 01:00:16 +08001983
Mengdong Lin717a8e72016-11-03 01:03:34 +08001984 /* offset by version-specific struct size and
1985 * real priv data size
1986 */
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001987 tplg->pos += size + le32_to_cpu(_pcm->priv.size);
Mengdong Lin717a8e72016-11-03 01:03:34 +08001988
Mengdong Lin55726dc2016-11-03 01:00:16 +08001989 if (!abi_match)
1990 kfree(_pcm); /* free the duplicated one */
Mengdong Lin64527e82016-01-15 16:13:28 +08001991 }
1992
Liam Girdwood8a978232015-05-29 19:06:14 +01001993 dev_dbg(tplg->dev, "ASoC: adding %d PCM DAIs\n", count);
Liam Girdwood8a978232015-05-29 19:06:14 +01001994
Liam Girdwood8a978232015-05-29 19:06:14 +01001995 return 0;
Liam Girdwood8a978232015-05-29 19:06:14 +01001996}
1997
Mengdong Lin593d9e52016-11-03 01:04:27 +08001998/**
1999 * set_link_hw_format - Set the HW audio format of the physical DAI link.
Charles Keepax8abab352017-01-12 11:38:15 +00002000 * @link: &snd_soc_dai_link which should be updated
Mengdong Lin593d9e52016-11-03 01:04:27 +08002001 * @cfg: physical link configs.
2002 *
2003 * Topology context contains a list of supported HW formats (configs) and
2004 * a default format ID for the physical link. This function will use this
2005 * default ID to choose the HW format to set the link's DAI format for init.
2006 */
2007static void set_link_hw_format(struct snd_soc_dai_link *link,
2008 struct snd_soc_tplg_link_config *cfg)
2009{
2010 struct snd_soc_tplg_hw_config *hw_config;
Pierre-Louis Bossartf026c122020-11-12 10:30:57 -06002011 unsigned char bclk_provider, fsync_provider;
Mengdong Lin593d9e52016-11-03 01:04:27 +08002012 unsigned char invert_bclk, invert_fsync;
2013 int i;
2014
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002015 for (i = 0; i < le32_to_cpu(cfg->num_hw_configs); i++) {
Mengdong Lin593d9e52016-11-03 01:04:27 +08002016 hw_config = &cfg->hw_config[i];
2017 if (hw_config->id != cfg->default_hw_config_id)
2018 continue;
2019
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002020 link->dai_fmt = le32_to_cpu(hw_config->fmt) &
2021 SND_SOC_DAIFMT_FORMAT_MASK;
Mengdong Lin593d9e52016-11-03 01:04:27 +08002022
Kirill Marinushkin933e1c42018-04-04 06:19:38 +02002023 /* clock gating */
Kirill Marinushkinfbeabd02018-04-16 19:56:44 +02002024 switch (hw_config->clock_gated) {
2025 case SND_SOC_TPLG_DAI_CLK_GATE_GATED:
Kirill Marinushkin933e1c42018-04-04 06:19:38 +02002026 link->dai_fmt |= SND_SOC_DAIFMT_GATED;
Kirill Marinushkinfbeabd02018-04-16 19:56:44 +02002027 break;
2028
2029 case SND_SOC_TPLG_DAI_CLK_GATE_CONT:
Kirill Marinushkin933e1c42018-04-04 06:19:38 +02002030 link->dai_fmt |= SND_SOC_DAIFMT_CONT;
Kirill Marinushkinfbeabd02018-04-16 19:56:44 +02002031 break;
2032
2033 default:
2034 /* ignore the value */
2035 break;
2036 }
Kirill Marinushkin933e1c42018-04-04 06:19:38 +02002037
Mengdong Lin593d9e52016-11-03 01:04:27 +08002038 /* clock signal polarity */
2039 invert_bclk = hw_config->invert_bclk;
2040 invert_fsync = hw_config->invert_fsync;
2041 if (!invert_bclk && !invert_fsync)
2042 link->dai_fmt |= SND_SOC_DAIFMT_NB_NF;
2043 else if (!invert_bclk && invert_fsync)
2044 link->dai_fmt |= SND_SOC_DAIFMT_NB_IF;
2045 else if (invert_bclk && !invert_fsync)
2046 link->dai_fmt |= SND_SOC_DAIFMT_IB_NF;
2047 else
2048 link->dai_fmt |= SND_SOC_DAIFMT_IB_IF;
2049
2050 /* clock masters */
Pierre-Louis Bossartf026c122020-11-12 10:30:57 -06002051 bclk_provider = (hw_config->bclk_provider ==
2052 SND_SOC_TPLG_BCLK_CP);
2053 fsync_provider = (hw_config->fsync_provider ==
2054 SND_SOC_TPLG_FSYNC_CP);
2055 if (bclk_provider && fsync_provider)
2056 link->dai_fmt |= SND_SOC_DAIFMT_CBP_CFP;
2057 else if (!bclk_provider && fsync_provider)
2058 link->dai_fmt |= SND_SOC_DAIFMT_CBC_CFP;
2059 else if (bclk_provider && !fsync_provider)
2060 link->dai_fmt |= SND_SOC_DAIFMT_CBP_CFC;
Mengdong Lin593d9e52016-11-03 01:04:27 +08002061 else
Pierre-Louis Bossartf026c122020-11-12 10:30:57 -06002062 link->dai_fmt |= SND_SOC_DAIFMT_CBC_CFC;
Mengdong Lin593d9e52016-11-03 01:04:27 +08002063 }
2064}
2065
2066/**
2067 * link_new_ver - Create a new physical link config from the old
2068 * version of source.
Charles Keepax8abab352017-01-12 11:38:15 +00002069 * @tplg: topology context
Mengdong Lin593d9e52016-11-03 01:04:27 +08002070 * @src: old version of phyical link config as a source
2071 * @link: latest version of physical link config created from the source
2072 *
Colin Ian Kingce1f2572021-06-01 11:35:06 +01002073 * Support from version 4. User need free the returned link config manually.
Mengdong Lin593d9e52016-11-03 01:04:27 +08002074 */
2075static int link_new_ver(struct soc_tplg *tplg,
2076 struct snd_soc_tplg_link_config *src,
2077 struct snd_soc_tplg_link_config **link)
2078{
2079 struct snd_soc_tplg_link_config *dest;
2080 struct snd_soc_tplg_link_config_v4 *src_v4;
2081 int i;
2082
2083 *link = NULL;
2084
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002085 if (le32_to_cpu(src->size) !=
2086 sizeof(struct snd_soc_tplg_link_config_v4)) {
Mengdong Lin593d9e52016-11-03 01:04:27 +08002087 dev_err(tplg->dev, "ASoC: invalid physical link config size\n");
2088 return -EINVAL;
2089 }
2090
2091 dev_warn(tplg->dev, "ASoC: old version of physical link config\n");
2092
2093 src_v4 = (struct snd_soc_tplg_link_config_v4 *)src;
2094 dest = kzalloc(sizeof(*dest), GFP_KERNEL);
2095 if (!dest)
2096 return -ENOMEM;
2097
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002098 dest->size = cpu_to_le32(sizeof(*dest));
Mengdong Lin593d9e52016-11-03 01:04:27 +08002099 dest->id = src_v4->id;
2100 dest->num_streams = src_v4->num_streams;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002101 for (i = 0; i < le32_to_cpu(dest->num_streams); i++)
Mengdong Lin593d9e52016-11-03 01:04:27 +08002102 memcpy(&dest->stream[i], &src_v4->stream[i],
2103 sizeof(struct snd_soc_tplg_stream));
2104
2105 *link = dest;
2106 return 0;
2107}
2108
Kuninori Morimotod6f31e02019-12-10 09:34:14 +09002109/**
2110 * snd_soc_find_dai_link - Find a DAI link
2111 *
2112 * @card: soc card
2113 * @id: DAI link ID to match
2114 * @name: DAI link name to match, optional
2115 * @stream_name: DAI link stream name to match, optional
2116 *
2117 * This function will search all existing DAI links of the soc card to
2118 * find the link of the same ID. Since DAI links may not have their
2119 * unique ID, so name and stream name should also match if being
2120 * specified.
2121 *
2122 * Return: pointer of DAI link, or NULL if not found.
2123 */
2124static struct snd_soc_dai_link *snd_soc_find_dai_link(struct snd_soc_card *card,
2125 int id, const char *name,
2126 const char *stream_name)
2127{
2128 struct snd_soc_pcm_runtime *rtd;
2129 struct snd_soc_dai_link *link;
2130
2131 for_each_card_rtds(card, rtd) {
2132 link = rtd->dai_link;
2133
2134 if (link->id != id)
2135 continue;
2136
2137 if (name && (!link->name || strcmp(name, link->name)))
2138 continue;
2139
2140 if (stream_name && (!link->stream_name
2141 || strcmp(stream_name, link->stream_name)))
2142 continue;
2143
2144 return link;
2145 }
2146
2147 return NULL;
2148}
2149
Mengdong Lin593d9e52016-11-03 01:04:27 +08002150/* Find and configure an existing physical DAI link */
2151static int soc_tplg_link_config(struct soc_tplg *tplg,
2152 struct snd_soc_tplg_link_config *cfg)
2153{
2154 struct snd_soc_dai_link *link;
2155 const char *name, *stream_name;
Mengdong Lindbab1cb2016-11-05 08:42:14 +08002156 size_t len;
Mengdong Lin593d9e52016-11-03 01:04:27 +08002157 int ret;
2158
Mengdong Lindbab1cb2016-11-05 08:42:14 +08002159 len = strnlen(cfg->name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN);
2160 if (len == SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
2161 return -EINVAL;
2162 else if (len)
2163 name = cfg->name;
2164 else
2165 name = NULL;
2166
2167 len = strnlen(cfg->stream_name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN);
2168 if (len == SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
2169 return -EINVAL;
2170 else if (len)
2171 stream_name = cfg->stream_name;
2172 else
2173 stream_name = NULL;
Mengdong Lin593d9e52016-11-03 01:04:27 +08002174
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002175 link = snd_soc_find_dai_link(tplg->comp->card, le32_to_cpu(cfg->id),
Mengdong Lin593d9e52016-11-03 01:04:27 +08002176 name, stream_name);
2177 if (!link) {
2178 dev_err(tplg->dev, "ASoC: physical link %s (id %d) not exist\n",
2179 name, cfg->id);
2180 return -EINVAL;
2181 }
2182
2183 /* hw format */
2184 if (cfg->num_hw_configs)
2185 set_link_hw_format(link, cfg);
2186
2187 /* flags */
2188 if (cfg->flag_mask)
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002189 set_link_flags(link,
2190 le32_to_cpu(cfg->flag_mask),
2191 le32_to_cpu(cfg->flags));
Mengdong Lin593d9e52016-11-03 01:04:27 +08002192
2193 /* pass control to component driver for optional further init */
Liam Girdwoodc60b6132018-06-14 20:50:37 +01002194 ret = soc_tplg_dai_link_load(tplg, link, cfg);
Mengdong Lin593d9e52016-11-03 01:04:27 +08002195 if (ret < 0) {
2196 dev_err(tplg->dev, "ASoC: physical link loading failed\n");
2197 return ret;
2198 }
2199
Bard liaoadfebb52019-02-01 11:07:40 -06002200 /* for unloading it in snd_soc_tplg_component_remove */
2201 link->dobj.index = tplg->index;
2202 link->dobj.ops = tplg->ops;
2203 link->dobj.type = SND_SOC_DOBJ_BACKEND_LINK;
2204 list_add(&link->dobj.list, &tplg->comp->dobj_list);
2205
Mengdong Lin593d9e52016-11-03 01:04:27 +08002206 return 0;
2207}
2208
2209
2210/* Load physical link config elements from the topology context */
2211static int soc_tplg_link_elems_load(struct soc_tplg *tplg,
2212 struct snd_soc_tplg_hdr *hdr)
2213{
2214 struct snd_soc_tplg_link_config *link, *_link;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002215 int count;
2216 int size;
Mengdong Lin593d9e52016-11-03 01:04:27 +08002217 int i, ret;
2218 bool abi_match;
2219
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002220 count = le32_to_cpu(hdr->count);
2221
Mengdong Lin593d9e52016-11-03 01:04:27 +08002222 /* check the element size and count */
2223 link = (struct snd_soc_tplg_link_config *)tplg->pos;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002224 size = le32_to_cpu(link->size);
2225 if (size > sizeof(struct snd_soc_tplg_link_config)
2226 || size < sizeof(struct snd_soc_tplg_link_config_v4)) {
Mengdong Lin593d9e52016-11-03 01:04:27 +08002227 dev_err(tplg->dev, "ASoC: invalid size %d for physical link elems\n",
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002228 size);
Mengdong Lin593d9e52016-11-03 01:04:27 +08002229 return -EINVAL;
2230 }
2231
2232 if (soc_tplg_check_elem_count(tplg,
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002233 size, count,
2234 le32_to_cpu(hdr->payload_size),
2235 "physical link config")) {
Mengdong Lin593d9e52016-11-03 01:04:27 +08002236 dev_err(tplg->dev, "ASoC: invalid count %d for physical link elems\n",
2237 count);
2238 return -EINVAL;
2239 }
2240
2241 /* config physical DAI links */
2242 for (i = 0; i < count; i++) {
2243 link = (struct snd_soc_tplg_link_config *)tplg->pos;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002244 size = le32_to_cpu(link->size);
2245 if (size == sizeof(*link)) {
Mengdong Lin593d9e52016-11-03 01:04:27 +08002246 abi_match = true;
2247 _link = link;
2248 } else {
2249 abi_match = false;
2250 ret = link_new_ver(tplg, link, &_link);
2251 if (ret < 0)
2252 return ret;
2253 }
2254
2255 ret = soc_tplg_link_config(tplg, _link);
Dragos Tarcatu2b2d5c42020-02-07 20:53:24 +02002256 if (ret < 0) {
2257 if (!abi_match)
2258 kfree(_link);
Mengdong Lin593d9e52016-11-03 01:04:27 +08002259 return ret;
Dragos Tarcatu2b2d5c42020-02-07 20:53:24 +02002260 }
Mengdong Lin593d9e52016-11-03 01:04:27 +08002261
2262 /* offset by version-specific struct size and
2263 * real priv data size
2264 */
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002265 tplg->pos += size + le32_to_cpu(_link->priv.size);
Mengdong Lin593d9e52016-11-03 01:04:27 +08002266
2267 if (!abi_match)
2268 kfree(_link); /* free the duplicated one */
2269 }
2270
2271 return 0;
2272}
2273
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002274/**
2275 * soc_tplg_dai_config - Find and configure an existing physical DAI.
Mengdong Lin0038be92016-07-26 14:32:37 +08002276 * @tplg: topology context
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002277 * @d: physical DAI configs.
Mengdong Lin0038be92016-07-26 14:32:37 +08002278 *
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002279 * The physical dai should already be registered by the platform driver.
2280 * The platform driver should specify the DAI name and ID for matching.
Mengdong Lin0038be92016-07-26 14:32:37 +08002281 */
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002282static int soc_tplg_dai_config(struct soc_tplg *tplg,
2283 struct snd_soc_tplg_dai *d)
Mengdong Lin0038be92016-07-26 14:32:37 +08002284{
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002285 struct snd_soc_dai_link_component dai_component;
Mengdong Lin0038be92016-07-26 14:32:37 +08002286 struct snd_soc_dai *dai;
2287 struct snd_soc_dai_driver *dai_drv;
2288 struct snd_soc_pcm_stream *stream;
2289 struct snd_soc_tplg_stream_caps *caps;
2290 int ret;
2291
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002292 memset(&dai_component, 0, sizeof(dai_component));
2293
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002294 dai_component.dai_name = d->dai_name;
Mengdong Lin0038be92016-07-26 14:32:37 +08002295 dai = snd_soc_find_dai(&dai_component);
2296 if (!dai) {
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002297 dev_err(tplg->dev, "ASoC: physical DAI %s not registered\n",
2298 d->dai_name);
Mengdong Lin0038be92016-07-26 14:32:37 +08002299 return -EINVAL;
2300 }
2301
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002302 if (le32_to_cpu(d->dai_id) != dai->id) {
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002303 dev_err(tplg->dev, "ASoC: physical DAI %s id mismatch\n",
2304 d->dai_name);
Mengdong Lin0038be92016-07-26 14:32:37 +08002305 return -EINVAL;
2306 }
2307
2308 dai_drv = dai->driver;
2309 if (!dai_drv)
2310 return -EINVAL;
2311
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002312 if (d->playback) {
Mengdong Lin0038be92016-07-26 14:32:37 +08002313 stream = &dai_drv->playback;
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002314 caps = &d->caps[SND_SOC_TPLG_STREAM_PLAYBACK];
Amadeusz Sławińskiff922622020-10-30 10:54:25 -04002315 ret = set_stream_info(tplg, stream, caps);
Amadeusz Sławińskiabc3caa2020-03-27 16:47:24 -04002316 if (ret < 0)
2317 goto err;
Mengdong Lin0038be92016-07-26 14:32:37 +08002318 }
2319
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002320 if (d->capture) {
Mengdong Lin0038be92016-07-26 14:32:37 +08002321 stream = &dai_drv->capture;
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002322 caps = &d->caps[SND_SOC_TPLG_STREAM_CAPTURE];
Amadeusz Sławińskiff922622020-10-30 10:54:25 -04002323 ret = set_stream_info(tplg, stream, caps);
Amadeusz Sławińskiabc3caa2020-03-27 16:47:24 -04002324 if (ret < 0)
2325 goto err;
Mengdong Lin0038be92016-07-26 14:32:37 +08002326 }
2327
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002328 if (d->flag_mask)
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002329 set_dai_flags(dai_drv,
2330 le32_to_cpu(d->flag_mask),
2331 le32_to_cpu(d->flags));
Mengdong Lin0038be92016-07-26 14:32:37 +08002332
2333 /* pass control to component driver for optional further init */
Liam Girdwoodc60b6132018-06-14 20:50:37 +01002334 ret = soc_tplg_dai_load(tplg, dai_drv, NULL, dai);
Mengdong Lin0038be92016-07-26 14:32:37 +08002335 if (ret < 0) {
Amadeusz Sławińskie59db122020-10-30 10:54:24 -04002336 dev_err(tplg->dev, "ASoC: DAI loading failed\n");
Amadeusz Sławińskiabc3caa2020-03-27 16:47:24 -04002337 goto err;
Mengdong Lin0038be92016-07-26 14:32:37 +08002338 }
2339
2340 return 0;
Amadeusz Sławińskiabc3caa2020-03-27 16:47:24 -04002341
2342err:
Amadeusz Sławińskiabc3caa2020-03-27 16:47:24 -04002343 return ret;
Mengdong Lin0038be92016-07-26 14:32:37 +08002344}
2345
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002346/* load physical DAI elements */
2347static int soc_tplg_dai_elems_load(struct soc_tplg *tplg,
2348 struct snd_soc_tplg_hdr *hdr)
Mengdong Lin0038be92016-07-26 14:32:37 +08002349{
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002350 int count;
Kuninori Morimoto65a4cfd2021-08-02 15:00:42 +09002351 int i;
Mengdong Lin0038be92016-07-26 14:32:37 +08002352
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002353 count = le32_to_cpu(hdr->count);
2354
Mengdong Lin0038be92016-07-26 14:32:37 +08002355 /* config the existing BE DAIs */
2356 for (i = 0; i < count; i++) {
Kuninori Morimoto65a4cfd2021-08-02 15:00:42 +09002357 struct snd_soc_tplg_dai *dai = (struct snd_soc_tplg_dai *)tplg->pos;
2358 int ret;
2359
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002360 if (le32_to_cpu(dai->size) != sizeof(*dai)) {
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002361 dev_err(tplg->dev, "ASoC: invalid physical DAI size\n");
Mengdong Lin0038be92016-07-26 14:32:37 +08002362 return -EINVAL;
2363 }
2364
Amadeusz Sławińskidd8e8712020-03-27 16:47:29 -04002365 ret = soc_tplg_dai_config(tplg, dai);
2366 if (ret < 0) {
2367 dev_err(tplg->dev, "ASoC: failed to configure DAI\n");
2368 return ret;
2369 }
2370
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002371 tplg->pos += (sizeof(*dai) + le32_to_cpu(dai->priv.size));
Mengdong Lin0038be92016-07-26 14:32:37 +08002372 }
2373
2374 dev_dbg(tplg->dev, "ASoC: Configure %d BE DAIs\n", count);
2375 return 0;
2376}
2377
Mengdong Lin583958f2016-10-11 14:36:42 +08002378/**
2379 * manifest_new_ver - Create a new version of manifest from the old version
2380 * of source.
Charles Keepax8abab352017-01-12 11:38:15 +00002381 * @tplg: topology context
Mengdong Lin583958f2016-10-11 14:36:42 +08002382 * @src: old version of manifest as a source
2383 * @manifest: latest version of manifest created from the source
2384 *
Colin Ian Kingce1f2572021-06-01 11:35:06 +01002385 * Support from version 4. Users need free the returned manifest manually.
Mengdong Lin583958f2016-10-11 14:36:42 +08002386 */
2387static int manifest_new_ver(struct soc_tplg *tplg,
2388 struct snd_soc_tplg_manifest *src,
2389 struct snd_soc_tplg_manifest **manifest)
2390{
2391 struct snd_soc_tplg_manifest *dest;
2392 struct snd_soc_tplg_manifest_v4 *src_v4;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002393 int size;
Mengdong Lin583958f2016-10-11 14:36:42 +08002394
2395 *manifest = NULL;
2396
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002397 size = le32_to_cpu(src->size);
2398 if (size != sizeof(*src_v4)) {
Guenter Roeckac9391d2018-05-24 12:49:21 -07002399 dev_warn(tplg->dev, "ASoC: invalid manifest size %d\n",
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002400 size);
2401 if (size)
Guenter Roeckac9391d2018-05-24 12:49:21 -07002402 return -EINVAL;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002403 src->size = cpu_to_le32(sizeof(*src_v4));
Mengdong Lin583958f2016-10-11 14:36:42 +08002404 }
2405
2406 dev_warn(tplg->dev, "ASoC: old version of manifest\n");
2407
2408 src_v4 = (struct snd_soc_tplg_manifest_v4 *)src;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002409 dest = kzalloc(sizeof(*dest) + le32_to_cpu(src_v4->priv.size),
2410 GFP_KERNEL);
Mengdong Lin583958f2016-10-11 14:36:42 +08002411 if (!dest)
2412 return -ENOMEM;
2413
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002414 dest->size = cpu_to_le32(sizeof(*dest)); /* size of latest abi version */
Mengdong Lin583958f2016-10-11 14:36:42 +08002415 dest->control_elems = src_v4->control_elems;
2416 dest->widget_elems = src_v4->widget_elems;
2417 dest->graph_elems = src_v4->graph_elems;
2418 dest->pcm_elems = src_v4->pcm_elems;
2419 dest->dai_link_elems = src_v4->dai_link_elems;
2420 dest->priv.size = src_v4->priv.size;
2421 if (dest->priv.size)
2422 memcpy(dest->priv.data, src_v4->priv.data,
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002423 le32_to_cpu(src_v4->priv.size));
Mengdong Lin583958f2016-10-11 14:36:42 +08002424
2425 *manifest = dest;
2426 return 0;
2427}
Mengdong Lin0038be92016-07-26 14:32:37 +08002428
Liam Girdwood8a978232015-05-29 19:06:14 +01002429static int soc_tplg_manifest_load(struct soc_tplg *tplg,
Mengdong Lin0038be92016-07-26 14:32:37 +08002430 struct snd_soc_tplg_hdr *hdr)
Liam Girdwood8a978232015-05-29 19:06:14 +01002431{
Mengdong Lin583958f2016-10-11 14:36:42 +08002432 struct snd_soc_tplg_manifest *manifest, *_manifest;
2433 bool abi_match;
Dragos Tarcatu242c46c2020-02-07 20:53:25 +02002434 int ret = 0;
Liam Girdwood8a978232015-05-29 19:06:14 +01002435
Liam Girdwood8a978232015-05-29 19:06:14 +01002436 manifest = (struct snd_soc_tplg_manifest *)tplg->pos;
Mengdong Lin583958f2016-10-11 14:36:42 +08002437
2438 /* check ABI version by size, create a new manifest if abi not match */
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002439 if (le32_to_cpu(manifest->size) == sizeof(*manifest)) {
Mengdong Lin583958f2016-10-11 14:36:42 +08002440 abi_match = true;
2441 _manifest = manifest;
2442 } else {
2443 abi_match = false;
Dragos Tarcatu242c46c2020-02-07 20:53:25 +02002444 ret = manifest_new_ver(tplg, manifest, &_manifest);
2445 if (ret < 0)
2446 return ret;
Mengdong Lin06eb49f2016-04-27 14:52:56 +08002447 }
2448
Mengdong Lin583958f2016-10-11 14:36:42 +08002449 /* pass control to component driver for optional further init */
Amadeusz Sławińskic42464a2020-03-12 08:22:39 -04002450 if (tplg->ops && tplg->ops->manifest)
Dragos Tarcatu242c46c2020-02-07 20:53:25 +02002451 ret = tplg->ops->manifest(tplg->comp, tplg->index, _manifest);
Liam Girdwood8a978232015-05-29 19:06:14 +01002452
Mengdong Lin583958f2016-10-11 14:36:42 +08002453 if (!abi_match) /* free the duplicated one */
2454 kfree(_manifest);
2455
Dragos Tarcatu242c46c2020-02-07 20:53:25 +02002456 return ret;
Liam Girdwood8a978232015-05-29 19:06:14 +01002457}
2458
2459/* validate header magic, size and type */
2460static int soc_valid_header(struct soc_tplg *tplg,
2461 struct snd_soc_tplg_hdr *hdr)
2462{
2463 if (soc_tplg_get_hdr_offset(tplg) >= tplg->fw->size)
2464 return 0;
2465
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002466 if (le32_to_cpu(hdr->size) != sizeof(*hdr)) {
Mengdong Lin06eb49f2016-04-27 14:52:56 +08002467 dev_err(tplg->dev,
2468 "ASoC: invalid header size for type %d at offset 0x%lx size 0x%zx.\n",
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002469 le32_to_cpu(hdr->type), soc_tplg_get_hdr_offset(tplg),
Mengdong Lin06eb49f2016-04-27 14:52:56 +08002470 tplg->fw->size);
2471 return -EINVAL;
2472 }
2473
Liam Girdwood8a978232015-05-29 19:06:14 +01002474 /* big endian firmware objects not supported atm */
Amadeusz Sławiński26d87882020-04-15 12:24:35 -04002475 if (le32_to_cpu(hdr->magic) == SOC_TPLG_MAGIC_BIG_ENDIAN) {
Liam Girdwood8a978232015-05-29 19:06:14 +01002476 dev_err(tplg->dev,
2477 "ASoC: pass %d big endian not supported header got %x at offset 0x%lx size 0x%zx.\n",
2478 tplg->pass, hdr->magic,
2479 soc_tplg_get_hdr_offset(tplg), tplg->fw->size);
2480 return -EINVAL;
2481 }
2482
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002483 if (le32_to_cpu(hdr->magic) != SND_SOC_TPLG_MAGIC) {
Liam Girdwood8a978232015-05-29 19:06:14 +01002484 dev_err(tplg->dev,
2485 "ASoC: pass %d does not have a valid header got %x at offset 0x%lx size 0x%zx.\n",
2486 tplg->pass, hdr->magic,
2487 soc_tplg_get_hdr_offset(tplg), tplg->fw->size);
2488 return -EINVAL;
2489 }
2490
Mengdong Lin288b8da2016-11-03 01:03:17 +08002491 /* Support ABI from version 4 */
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002492 if (le32_to_cpu(hdr->abi) > SND_SOC_TPLG_ABI_VERSION ||
2493 le32_to_cpu(hdr->abi) < SND_SOC_TPLG_ABI_VERSION_MIN) {
Liam Girdwood8a978232015-05-29 19:06:14 +01002494 dev_err(tplg->dev,
2495 "ASoC: pass %d invalid ABI version got 0x%x need 0x%x at offset 0x%lx size 0x%zx.\n",
2496 tplg->pass, hdr->abi,
2497 SND_SOC_TPLG_ABI_VERSION, soc_tplg_get_hdr_offset(tplg),
2498 tplg->fw->size);
2499 return -EINVAL;
2500 }
2501
2502 if (hdr->payload_size == 0) {
2503 dev_err(tplg->dev, "ASoC: header has 0 size at offset 0x%lx.\n",
2504 soc_tplg_get_hdr_offset(tplg));
2505 return -EINVAL;
2506 }
2507
Liam Girdwood8a978232015-05-29 19:06:14 +01002508 return 1;
2509}
2510
2511/* check header type and call appropriate handler */
2512static int soc_tplg_load_header(struct soc_tplg *tplg,
2513 struct snd_soc_tplg_hdr *hdr)
2514{
Keyon Jie82ed7412020-05-27 10:28:00 +08002515 int (*elem_load)(struct soc_tplg *tplg,
2516 struct snd_soc_tplg_hdr *hdr);
2517 unsigned int hdr_pass;
2518
Liam Girdwood8a978232015-05-29 19:06:14 +01002519 tplg->pos = tplg->hdr_pos + sizeof(struct snd_soc_tplg_hdr);
2520
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002521 tplg->index = le32_to_cpu(hdr->index);
Liam Girdwood8a978232015-05-29 19:06:14 +01002522
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002523 switch (le32_to_cpu(hdr->type)) {
Liam Girdwood8a978232015-05-29 19:06:14 +01002524 case SND_SOC_TPLG_TYPE_MIXER:
2525 case SND_SOC_TPLG_TYPE_ENUM:
2526 case SND_SOC_TPLG_TYPE_BYTES:
Keyon Jie82ed7412020-05-27 10:28:00 +08002527 hdr_pass = SOC_TPLG_PASS_MIXER;
2528 elem_load = soc_tplg_kcontrol_elems_load;
2529 break;
Liam Girdwood8a978232015-05-29 19:06:14 +01002530 case SND_SOC_TPLG_TYPE_DAPM_GRAPH:
Keyon Jie82ed7412020-05-27 10:28:00 +08002531 hdr_pass = SOC_TPLG_PASS_GRAPH;
2532 elem_load = soc_tplg_dapm_graph_elems_load;
2533 break;
Liam Girdwood8a978232015-05-29 19:06:14 +01002534 case SND_SOC_TPLG_TYPE_DAPM_WIDGET:
Keyon Jie82ed7412020-05-27 10:28:00 +08002535 hdr_pass = SOC_TPLG_PASS_WIDGET;
2536 elem_load = soc_tplg_dapm_widget_elems_load;
2537 break;
Liam Girdwood8a978232015-05-29 19:06:14 +01002538 case SND_SOC_TPLG_TYPE_PCM:
Keyon Jie82ed7412020-05-27 10:28:00 +08002539 hdr_pass = SOC_TPLG_PASS_PCM_DAI;
2540 elem_load = soc_tplg_pcm_elems_load;
2541 break;
Mengdong Lin3fbf7932016-11-03 01:05:01 +08002542 case SND_SOC_TPLG_TYPE_DAI:
Keyon Jie82ed7412020-05-27 10:28:00 +08002543 hdr_pass = SOC_TPLG_PASS_BE_DAI;
2544 elem_load = soc_tplg_dai_elems_load;
2545 break;
Mengdong Lin593d9e52016-11-03 01:04:27 +08002546 case SND_SOC_TPLG_TYPE_DAI_LINK:
2547 case SND_SOC_TPLG_TYPE_BACKEND_LINK:
2548 /* physical link configurations */
Keyon Jie82ed7412020-05-27 10:28:00 +08002549 hdr_pass = SOC_TPLG_PASS_LINK;
2550 elem_load = soc_tplg_link_elems_load;
2551 break;
Liam Girdwood8a978232015-05-29 19:06:14 +01002552 case SND_SOC_TPLG_TYPE_MANIFEST:
Keyon Jie82ed7412020-05-27 10:28:00 +08002553 hdr_pass = SOC_TPLG_PASS_MANIFEST;
2554 elem_load = soc_tplg_manifest_load;
2555 break;
Liam Girdwood8a978232015-05-29 19:06:14 +01002556 default:
2557 /* bespoke vendor data object */
Keyon Jie82ed7412020-05-27 10:28:00 +08002558 hdr_pass = SOC_TPLG_PASS_VENDOR;
2559 elem_load = soc_tplg_vendor_load;
2560 break;
2561 }
2562
2563 if (tplg->pass == hdr_pass) {
2564 dev_dbg(tplg->dev,
2565 "ASoC: Got 0x%x bytes of type %d version %d vendor %d at pass %d\n",
2566 hdr->payload_size, hdr->type, hdr->version,
2567 hdr->vendor_type, tplg->pass);
2568 return elem_load(tplg, hdr);
Liam Girdwood8a978232015-05-29 19:06:14 +01002569 }
2570
2571 return 0;
2572}
2573
2574/* process the topology file headers */
2575static int soc_tplg_process_headers(struct soc_tplg *tplg)
2576{
Liam Girdwood8a978232015-05-29 19:06:14 +01002577 int ret;
2578
2579 tplg->pass = SOC_TPLG_PASS_START;
2580
2581 /* process the header types from start to end */
2582 while (tplg->pass <= SOC_TPLG_PASS_END) {
Kuninori Morimotof79e4b22021-08-02 15:00:27 +09002583 struct snd_soc_tplg_hdr *hdr;
Liam Girdwood8a978232015-05-29 19:06:14 +01002584
2585 tplg->hdr_pos = tplg->fw->data;
2586 hdr = (struct snd_soc_tplg_hdr *)tplg->hdr_pos;
2587
2588 while (!soc_tplg_is_eof(tplg)) {
2589
2590 /* make sure header is valid before loading */
2591 ret = soc_valid_header(tplg, hdr);
Pierre-Louis Bossart8bf94752020-07-07 15:37:49 -05002592 if (ret < 0) {
2593 dev_err(tplg->dev,
2594 "ASoC: topology: invalid header: %d\n", ret);
Liam Girdwood8a978232015-05-29 19:06:14 +01002595 return ret;
Pierre-Louis Bossart8bf94752020-07-07 15:37:49 -05002596 } else if (ret == 0) {
Liam Girdwood8a978232015-05-29 19:06:14 +01002597 break;
Pierre-Louis Bossart8bf94752020-07-07 15:37:49 -05002598 }
Liam Girdwood8a978232015-05-29 19:06:14 +01002599
2600 /* load the header object */
2601 ret = soc_tplg_load_header(tplg, hdr);
Pierre-Louis Bossart8bf94752020-07-07 15:37:49 -05002602 if (ret < 0) {
2603 dev_err(tplg->dev,
2604 "ASoC: topology: could not load header: %d\n", ret);
Liam Girdwood8a978232015-05-29 19:06:14 +01002605 return ret;
Pierre-Louis Bossart8bf94752020-07-07 15:37:49 -05002606 }
Liam Girdwood8a978232015-05-29 19:06:14 +01002607
2608 /* goto next header */
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002609 tplg->hdr_pos += le32_to_cpu(hdr->payload_size) +
Liam Girdwood8a978232015-05-29 19:06:14 +01002610 sizeof(struct snd_soc_tplg_hdr);
2611 hdr = (struct snd_soc_tplg_hdr *)tplg->hdr_pos;
2612 }
2613
2614 /* next data type pass */
2615 tplg->pass++;
2616 }
2617
2618 /* signal DAPM we are complete */
2619 ret = soc_tplg_dapm_complete(tplg);
2620 if (ret < 0)
2621 dev_err(tplg->dev,
2622 "ASoC: failed to initialise DAPM from Firmware\n");
2623
2624 return ret;
2625}
2626
2627static int soc_tplg_load(struct soc_tplg *tplg)
2628{
2629 int ret;
2630
2631 ret = soc_tplg_process_headers(tplg);
2632 if (ret == 0)
2633 soc_tplg_complete(tplg);
2634
2635 return ret;
2636}
2637
2638/* load audio component topology from "firmware" file */
2639int snd_soc_tplg_component_load(struct snd_soc_component *comp,
Amadeusz Sławińskia5b8f712020-10-30 10:54:23 -04002640 struct snd_soc_tplg_ops *ops, const struct firmware *fw)
Liam Girdwood8a978232015-05-29 19:06:14 +01002641{
2642 struct soc_tplg tplg;
Bard liao304017d2019-02-17 21:23:47 +08002643 int ret;
Liam Girdwood8a978232015-05-29 19:06:14 +01002644
Amadeusz Sławińskid40ab862021-01-14 11:36:01 -05002645 /*
2646 * check if we have sane parameters:
2647 * comp - needs to exist to keep and reference data while parsing
2648 * comp->dev - used for resource management and prints
2649 * comp->card - used for setting card related parameters
2650 * fw - we need it, as it is the very thing we parse
2651 */
2652 if (!comp || !comp->dev || !comp->card || !fw)
Amadeusz Sławińskic42464a2020-03-12 08:22:39 -04002653 return -EINVAL;
2654
Liam Girdwood8a978232015-05-29 19:06:14 +01002655 /* setup parsing context */
2656 memset(&tplg, 0, sizeof(tplg));
2657 tplg.fw = fw;
2658 tplg.dev = comp->dev;
2659 tplg.comp = comp;
Amadeusz Sławiński9c88a982021-01-14 11:36:02 -05002660 if (ops) {
2661 tplg.ops = ops;
2662 tplg.io_ops = ops->io_ops;
2663 tplg.io_ops_count = ops->io_ops_count;
2664 tplg.bytes_ext_ops = ops->bytes_ext_ops;
2665 tplg.bytes_ext_ops_count = ops->bytes_ext_ops_count;
2666 }
Liam Girdwood8a978232015-05-29 19:06:14 +01002667
Bard liao304017d2019-02-17 21:23:47 +08002668 ret = soc_tplg_load(&tplg);
2669 /* free the created components if fail to load topology */
2670 if (ret)
Amadeusz Sławińskia5b8f712020-10-30 10:54:23 -04002671 snd_soc_tplg_component_remove(comp);
Bard liao304017d2019-02-17 21:23:47 +08002672
2673 return ret;
Liam Girdwood8a978232015-05-29 19:06:14 +01002674}
2675EXPORT_SYMBOL_GPL(snd_soc_tplg_component_load);
2676
Liam Girdwood8a978232015-05-29 19:06:14 +01002677/* remove dynamic controls from the component driver */
Amadeusz Sławińskia5b8f712020-10-30 10:54:23 -04002678int snd_soc_tplg_component_remove(struct snd_soc_component *comp)
Liam Girdwood8a978232015-05-29 19:06:14 +01002679{
2680 struct snd_soc_dobj *dobj, *next_dobj;
2681 int pass = SOC_TPLG_PASS_END;
2682
2683 /* process the header types from end to start */
2684 while (pass >= SOC_TPLG_PASS_START) {
2685
2686 /* remove mixer controls */
2687 list_for_each_entry_safe(dobj, next_dobj, &comp->dobj_list,
2688 list) {
2689
Liam Girdwood8a978232015-05-29 19:06:14 +01002690 switch (dobj->type) {
2691 case SND_SOC_DOBJ_MIXER:
2692 remove_mixer(comp, dobj, pass);
2693 break;
2694 case SND_SOC_DOBJ_ENUM:
2695 remove_enum(comp, dobj, pass);
2696 break;
2697 case SND_SOC_DOBJ_BYTES:
2698 remove_bytes(comp, dobj, pass);
2699 break;
Ranjani Sridharan7df04ea2019-01-25 14:06:47 -06002700 case SND_SOC_DOBJ_GRAPH:
2701 remove_route(comp, dobj, pass);
2702 break;
Liam Girdwood8a978232015-05-29 19:06:14 +01002703 case SND_SOC_DOBJ_WIDGET:
2704 remove_widget(comp, dobj, pass);
2705 break;
2706 case SND_SOC_DOBJ_PCM:
Mengdong Lin64527e82016-01-15 16:13:28 +08002707 remove_dai(comp, dobj, pass);
Liam Girdwood8a978232015-05-29 19:06:14 +01002708 break;
Mengdong Linacfc7d42016-01-15 16:13:37 +08002709 case SND_SOC_DOBJ_DAI_LINK:
2710 remove_link(comp, dobj, pass);
2711 break;
Bard liaoadfebb52019-02-01 11:07:40 -06002712 case SND_SOC_DOBJ_BACKEND_LINK:
2713 /*
2714 * call link_unload ops if extra
2715 * deinitialization is needed.
2716 */
2717 remove_backend_link(comp, dobj, pass);
2718 break;
Liam Girdwood8a978232015-05-29 19:06:14 +01002719 default:
2720 dev_err(comp->dev, "ASoC: invalid component type %d for removal\n",
2721 dobj->type);
2722 break;
2723 }
2724 }
2725 pass--;
2726 }
2727
2728 /* let caller know if FW can be freed when no objects are left */
2729 return !list_empty(&comp->dobj_list);
2730}
2731EXPORT_SYMBOL_GPL(snd_soc_tplg_component_remove);