blob: f37a72aebb5ac1a201419cb859bc3125a76ae11f [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 */
67 u32 req_index; /* required index, only loaded/free matching blocks */
68
Mengdong Lin88a17d82015-08-18 18:11:51 +080069 /* vendor specific kcontrol operations */
Liam Girdwood8a978232015-05-29 19:06:14 +010070 const struct snd_soc_tplg_kcontrol_ops *io_ops;
71 int io_ops_count;
72
Mengdong Lin1a3232d2015-08-18 18:12:20 +080073 /* vendor specific bytes ext handlers, for TLV bytes controls */
74 const struct snd_soc_tplg_bytes_ext_ops *bytes_ext_ops;
75 int bytes_ext_ops_count;
76
Liam Girdwood8a978232015-05-29 19:06:14 +010077 /* optional fw loading callbacks to component drivers */
78 struct snd_soc_tplg_ops *ops;
79};
80
81static int soc_tplg_process_headers(struct soc_tplg *tplg);
82static void soc_tplg_complete(struct soc_tplg *tplg);
Amadeusz Sławiński3cde8182019-06-17 13:36:43 +020083static void soc_tplg_denum_remove_texts(struct soc_enum *se);
84static void soc_tplg_denum_remove_values(struct soc_enum *se);
Liam Girdwood8a978232015-05-29 19:06:14 +010085
86/* check we dont overflow the data for this control chunk */
87static int soc_tplg_check_elem_count(struct soc_tplg *tplg, size_t elem_size,
88 unsigned int count, size_t bytes, const char *elem_type)
89{
90 const u8 *end = tplg->pos + elem_size * count;
91
92 if (end > tplg->fw->data + tplg->fw->size) {
93 dev_err(tplg->dev, "ASoC: %s overflow end of data\n",
94 elem_type);
95 return -EINVAL;
96 }
97
98 /* check there is enough room in chunk for control.
99 extra bytes at the end of control are for vendor data here */
100 if (elem_size * count > bytes) {
101 dev_err(tplg->dev,
102 "ASoC: %s count %d of size %zu is bigger than chunk %zu\n",
103 elem_type, count, elem_size, bytes);
104 return -EINVAL;
105 }
106
107 return 0;
108}
109
110static inline int soc_tplg_is_eof(struct soc_tplg *tplg)
111{
112 const u8 *end = tplg->hdr_pos;
113
114 if (end >= tplg->fw->data + tplg->fw->size)
115 return 1;
116 return 0;
117}
118
119static inline unsigned long soc_tplg_get_hdr_offset(struct soc_tplg *tplg)
120{
121 return (unsigned long)(tplg->hdr_pos - tplg->fw->data);
122}
123
124static inline unsigned long soc_tplg_get_offset(struct soc_tplg *tplg)
125{
126 return (unsigned long)(tplg->pos - tplg->fw->data);
127}
128
129/* mapping of Kcontrol types and associated operations. */
130static const struct snd_soc_tplg_kcontrol_ops io_ops[] = {
131 {SND_SOC_TPLG_CTL_VOLSW, snd_soc_get_volsw,
132 snd_soc_put_volsw, snd_soc_info_volsw},
133 {SND_SOC_TPLG_CTL_VOLSW_SX, snd_soc_get_volsw_sx,
134 snd_soc_put_volsw_sx, NULL},
135 {SND_SOC_TPLG_CTL_ENUM, snd_soc_get_enum_double,
136 snd_soc_put_enum_double, snd_soc_info_enum_double},
137 {SND_SOC_TPLG_CTL_ENUM_VALUE, snd_soc_get_enum_double,
138 snd_soc_put_enum_double, NULL},
139 {SND_SOC_TPLG_CTL_BYTES, snd_soc_bytes_get,
140 snd_soc_bytes_put, snd_soc_bytes_info},
141 {SND_SOC_TPLG_CTL_RANGE, snd_soc_get_volsw_range,
142 snd_soc_put_volsw_range, snd_soc_info_volsw_range},
143 {SND_SOC_TPLG_CTL_VOLSW_XR_SX, snd_soc_get_xr_sx,
144 snd_soc_put_xr_sx, snd_soc_info_xr_sx},
145 {SND_SOC_TPLG_CTL_STROBE, snd_soc_get_strobe,
146 snd_soc_put_strobe, NULL},
147 {SND_SOC_TPLG_DAPM_CTL_VOLSW, snd_soc_dapm_get_volsw,
Jeeja KP2c57d4782015-07-14 13:10:47 +0530148 snd_soc_dapm_put_volsw, snd_soc_info_volsw},
Liam Girdwood8a978232015-05-29 19:06:14 +0100149 {SND_SOC_TPLG_DAPM_CTL_ENUM_DOUBLE, snd_soc_dapm_get_enum_double,
150 snd_soc_dapm_put_enum_double, snd_soc_info_enum_double},
151 {SND_SOC_TPLG_DAPM_CTL_ENUM_VIRT, snd_soc_dapm_get_enum_double,
152 snd_soc_dapm_put_enum_double, NULL},
153 {SND_SOC_TPLG_DAPM_CTL_ENUM_VALUE, snd_soc_dapm_get_enum_double,
154 snd_soc_dapm_put_enum_double, NULL},
155 {SND_SOC_TPLG_DAPM_CTL_PIN, snd_soc_dapm_get_pin_switch,
156 snd_soc_dapm_put_pin_switch, snd_soc_dapm_info_pin_switch},
157};
158
159struct soc_tplg_map {
160 int uid;
161 int kid;
162};
163
164/* mapping of widget types from UAPI IDs to kernel IDs */
165static const struct soc_tplg_map dapm_map[] = {
166 {SND_SOC_TPLG_DAPM_INPUT, snd_soc_dapm_input},
167 {SND_SOC_TPLG_DAPM_OUTPUT, snd_soc_dapm_output},
168 {SND_SOC_TPLG_DAPM_MUX, snd_soc_dapm_mux},
169 {SND_SOC_TPLG_DAPM_MIXER, snd_soc_dapm_mixer},
170 {SND_SOC_TPLG_DAPM_PGA, snd_soc_dapm_pga},
171 {SND_SOC_TPLG_DAPM_OUT_DRV, snd_soc_dapm_out_drv},
172 {SND_SOC_TPLG_DAPM_ADC, snd_soc_dapm_adc},
173 {SND_SOC_TPLG_DAPM_DAC, snd_soc_dapm_dac},
174 {SND_SOC_TPLG_DAPM_SWITCH, snd_soc_dapm_switch},
175 {SND_SOC_TPLG_DAPM_PRE, snd_soc_dapm_pre},
176 {SND_SOC_TPLG_DAPM_POST, snd_soc_dapm_post},
177 {SND_SOC_TPLG_DAPM_AIF_IN, snd_soc_dapm_aif_in},
178 {SND_SOC_TPLG_DAPM_AIF_OUT, snd_soc_dapm_aif_out},
179 {SND_SOC_TPLG_DAPM_DAI_IN, snd_soc_dapm_dai_in},
180 {SND_SOC_TPLG_DAPM_DAI_OUT, snd_soc_dapm_dai_out},
181 {SND_SOC_TPLG_DAPM_DAI_LINK, snd_soc_dapm_dai_link},
Liam Girdwood8a70b452017-06-29 14:22:24 +0100182 {SND_SOC_TPLG_DAPM_BUFFER, snd_soc_dapm_buffer},
183 {SND_SOC_TPLG_DAPM_SCHEDULER, snd_soc_dapm_scheduler},
184 {SND_SOC_TPLG_DAPM_EFFECT, snd_soc_dapm_effect},
185 {SND_SOC_TPLG_DAPM_SIGGEN, snd_soc_dapm_siggen},
186 {SND_SOC_TPLG_DAPM_SRC, snd_soc_dapm_src},
187 {SND_SOC_TPLG_DAPM_ASRC, snd_soc_dapm_asrc},
188 {SND_SOC_TPLG_DAPM_ENCODER, snd_soc_dapm_encoder},
189 {SND_SOC_TPLG_DAPM_DECODER, snd_soc_dapm_decoder},
Liam Girdwood8a978232015-05-29 19:06:14 +0100190};
191
192static int tplc_chan_get_reg(struct soc_tplg *tplg,
193 struct snd_soc_tplg_channel *chan, int map)
194{
195 int i;
196
197 for (i = 0; i < SND_SOC_TPLG_MAX_CHAN; i++) {
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500198 if (le32_to_cpu(chan[i].id) == map)
199 return le32_to_cpu(chan[i].reg);
Liam Girdwood8a978232015-05-29 19:06:14 +0100200 }
201
202 return -EINVAL;
203}
204
205static int tplc_chan_get_shift(struct soc_tplg *tplg,
206 struct snd_soc_tplg_channel *chan, int map)
207{
208 int i;
209
210 for (i = 0; i < SND_SOC_TPLG_MAX_CHAN; i++) {
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500211 if (le32_to_cpu(chan[i].id) == map)
212 return le32_to_cpu(chan[i].shift);
Liam Girdwood8a978232015-05-29 19:06:14 +0100213 }
214
215 return -EINVAL;
216}
217
218static int get_widget_id(int tplg_type)
219{
220 int i;
221
222 for (i = 0; i < ARRAY_SIZE(dapm_map); i++) {
223 if (tplg_type == dapm_map[i].uid)
224 return dapm_map[i].kid;
225 }
226
227 return -EINVAL;
228}
229
Liam Girdwood8a978232015-05-29 19:06:14 +0100230static inline void soc_bind_err(struct soc_tplg *tplg,
231 struct snd_soc_tplg_ctl_hdr *hdr, int index)
232{
233 dev_err(tplg->dev,
234 "ASoC: invalid control type (g,p,i) %d:%d:%d index %d at 0x%lx\n",
235 hdr->ops.get, hdr->ops.put, hdr->ops.info, index,
236 soc_tplg_get_offset(tplg));
237}
238
239static inline void soc_control_err(struct soc_tplg *tplg,
240 struct snd_soc_tplg_ctl_hdr *hdr, const char *name)
241{
242 dev_err(tplg->dev,
243 "ASoC: no complete mixer IO handler for %s type (g,p,i) %d:%d:%d at 0x%lx\n",
244 name, hdr->ops.get, hdr->ops.put, hdr->ops.info,
245 soc_tplg_get_offset(tplg));
246}
247
248/* pass vendor data to component driver for processing */
249static int soc_tplg_vendor_load_(struct soc_tplg *tplg,
250 struct snd_soc_tplg_hdr *hdr)
251{
252 int ret = 0;
253
Amadeusz Sławińskic42464a2020-03-12 08:22:39 -0400254 if (tplg->ops && tplg->ops->vendor_load)
Liam Girdwoodc60b6132018-06-14 20:50:37 +0100255 ret = tplg->ops->vendor_load(tplg->comp, tplg->index, hdr);
Liam Girdwood8a978232015-05-29 19:06:14 +0100256 else {
257 dev_err(tplg->dev, "ASoC: no vendor load callback for ID %d\n",
258 hdr->vendor_type);
259 return -EINVAL;
260 }
261
262 if (ret < 0)
263 dev_err(tplg->dev,
264 "ASoC: vendor load failed at hdr offset %ld/0x%lx for type %d:%d\n",
265 soc_tplg_get_hdr_offset(tplg),
266 soc_tplg_get_hdr_offset(tplg),
267 hdr->type, hdr->vendor_type);
268 return ret;
269}
270
271/* pass vendor data to component driver for processing */
272static int soc_tplg_vendor_load(struct soc_tplg *tplg,
273 struct snd_soc_tplg_hdr *hdr)
274{
275 if (tplg->pass != SOC_TPLG_PASS_VENDOR)
276 return 0;
277
278 return soc_tplg_vendor_load_(tplg, hdr);
279}
280
281/* optionally pass new dynamic widget to component driver. This is mainly for
282 * external widgets where we can assign private data/ops */
283static int soc_tplg_widget_load(struct soc_tplg *tplg,
284 struct snd_soc_dapm_widget *w, struct snd_soc_tplg_dapm_widget *tplg_w)
285{
Amadeusz Sławińskic42464a2020-03-12 08:22:39 -0400286 if (tplg->ops && tplg->ops->widget_load)
Liam Girdwoodc60b6132018-06-14 20:50:37 +0100287 return tplg->ops->widget_load(tplg->comp, tplg->index, w,
288 tplg_w);
Liam Girdwood8a978232015-05-29 19:06:14 +0100289
290 return 0;
291}
292
Liam Girdwoodebd259d2017-06-09 15:43:23 +0100293/* optionally pass new dynamic widget to component driver. This is mainly for
294 * external widgets where we can assign private data/ops */
295static int soc_tplg_widget_ready(struct soc_tplg *tplg,
296 struct snd_soc_dapm_widget *w, struct snd_soc_tplg_dapm_widget *tplg_w)
297{
Amadeusz Sławińskic42464a2020-03-12 08:22:39 -0400298 if (tplg->ops && tplg->ops->widget_ready)
Liam Girdwoodc60b6132018-06-14 20:50:37 +0100299 return tplg->ops->widget_ready(tplg->comp, tplg->index, w,
300 tplg_w);
Liam Girdwoodebd259d2017-06-09 15:43:23 +0100301
302 return 0;
303}
304
Masahiro Yamada183b8022017-02-27 14:29:20 -0800305/* pass DAI configurations to component driver for extra initialization */
Mengdong Lin64527e82016-01-15 16:13:28 +0800306static int soc_tplg_dai_load(struct soc_tplg *tplg,
Liam Girdwoodc60b6132018-06-14 20:50:37 +0100307 struct snd_soc_dai_driver *dai_drv,
308 struct snd_soc_tplg_pcm *pcm, struct snd_soc_dai *dai)
Liam Girdwood8a978232015-05-29 19:06:14 +0100309{
Amadeusz Sławińskic42464a2020-03-12 08:22:39 -0400310 if (tplg->ops && tplg->ops->dai_load)
Liam Girdwoodc60b6132018-06-14 20:50:37 +0100311 return tplg->ops->dai_load(tplg->comp, tplg->index, dai_drv,
312 pcm, dai);
Liam Girdwood8a978232015-05-29 19:06:14 +0100313
314 return 0;
315}
316
Masahiro Yamada183b8022017-02-27 14:29:20 -0800317/* pass link configurations to component driver for extra initialization */
Mengdong Linacfc7d42016-01-15 16:13:37 +0800318static int soc_tplg_dai_link_load(struct soc_tplg *tplg,
Liam Girdwoodc60b6132018-06-14 20:50:37 +0100319 struct snd_soc_dai_link *link, struct snd_soc_tplg_link_config *cfg)
Mengdong Linacfc7d42016-01-15 16:13:37 +0800320{
Amadeusz Sławińskic42464a2020-03-12 08:22:39 -0400321 if (tplg->ops && tplg->ops->link_load)
Liam Girdwoodc60b6132018-06-14 20:50:37 +0100322 return tplg->ops->link_load(tplg->comp, tplg->index, link, cfg);
Mengdong Linacfc7d42016-01-15 16:13:37 +0800323
324 return 0;
325}
326
Liam Girdwood8a978232015-05-29 19:06:14 +0100327/* tell the component driver that all firmware has been loaded in this request */
328static void soc_tplg_complete(struct soc_tplg *tplg)
329{
Amadeusz Sławińskic42464a2020-03-12 08:22:39 -0400330 if (tplg->ops && tplg->ops->complete)
Liam Girdwood8a978232015-05-29 19:06:14 +0100331 tplg->ops->complete(tplg->comp);
332}
333
334/* add a dynamic kcontrol */
335static int soc_tplg_add_dcontrol(struct snd_card *card, struct device *dev,
336 const struct snd_kcontrol_new *control_new, const char *prefix,
337 void *data, struct snd_kcontrol **kcontrol)
338{
339 int err;
340
341 *kcontrol = snd_soc_cnew(control_new, data, control_new->name, prefix);
342 if (*kcontrol == NULL) {
343 dev_err(dev, "ASoC: Failed to create new kcontrol %s\n",
344 control_new->name);
345 return -ENOMEM;
346 }
347
348 err = snd_ctl_add(card, *kcontrol);
349 if (err < 0) {
350 dev_err(dev, "ASoC: Failed to add %s: %d\n",
351 control_new->name, err);
352 return err;
353 }
354
355 return 0;
356}
357
358/* add a dynamic kcontrol for component driver */
359static int soc_tplg_add_kcontrol(struct soc_tplg *tplg,
360 struct snd_kcontrol_new *k, struct snd_kcontrol **kcontrol)
361{
362 struct snd_soc_component *comp = tplg->comp;
363
364 return soc_tplg_add_dcontrol(comp->card->snd_card,
이경택abca9e4a2020-04-01 18:05:24 +0900365 comp->dev, k, comp->name_prefix, comp, kcontrol);
Liam Girdwood8a978232015-05-29 19:06:14 +0100366}
367
368/* remove a mixer kcontrol */
369static void remove_mixer(struct snd_soc_component *comp,
370 struct snd_soc_dobj *dobj, int pass)
371{
372 struct snd_card *card = comp->card->snd_card;
373 struct soc_mixer_control *sm =
374 container_of(dobj, struct soc_mixer_control, dobj);
375 const unsigned int *p = NULL;
376
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 if (dobj->control.kcontrol->tlv.p)
384 p = dobj->control.kcontrol->tlv.p;
385 snd_ctl_remove(card, dobj->control.kcontrol);
386 list_del(&dobj->list);
Liam Girdwood8a978232015-05-29 19:06:14 +0100387 kfree(sm);
388 kfree(p);
389}
390
391/* remove an enum kcontrol */
392static void remove_enum(struct snd_soc_component *comp,
393 struct snd_soc_dobj *dobj, int pass)
394{
395 struct snd_card *card = comp->card->snd_card;
396 struct soc_enum *se = container_of(dobj, struct soc_enum, dobj);
Liam Girdwood8a978232015-05-29 19:06:14 +0100397
398 if (pass != SOC_TPLG_PASS_MIXER)
399 return;
400
401 if (dobj->ops && dobj->ops->control_unload)
402 dobj->ops->control_unload(comp, dobj);
403
Amadeusz Sławiński33ae6ae2019-01-25 14:06:42 -0600404 snd_ctl_remove(card, dobj->control.kcontrol);
405 list_del(&dobj->list);
Liam Girdwood8a978232015-05-29 19:06:14 +0100406
Amadeusz Sławiński3cde8182019-06-17 13:36:43 +0200407 soc_tplg_denum_remove_values(se);
408 soc_tplg_denum_remove_texts(se);
Liam Girdwood8a978232015-05-29 19:06:14 +0100409 kfree(se);
410}
411
412/* remove a byte kcontrol */
413static void remove_bytes(struct snd_soc_component *comp,
414 struct snd_soc_dobj *dobj, int pass)
415{
416 struct snd_card *card = comp->card->snd_card;
417 struct soc_bytes_ext *sb =
418 container_of(dobj, struct soc_bytes_ext, dobj);
419
420 if (pass != SOC_TPLG_PASS_MIXER)
421 return;
422
423 if (dobj->ops && dobj->ops->control_unload)
424 dobj->ops->control_unload(comp, dobj);
425
Amadeusz Sławiński33ae6ae2019-01-25 14:06:42 -0600426 snd_ctl_remove(card, dobj->control.kcontrol);
427 list_del(&dobj->list);
Liam Girdwood8a978232015-05-29 19:06:14 +0100428 kfree(sb);
429}
430
Ranjani Sridharan7df04ea2019-01-25 14:06:47 -0600431/* remove a route */
432static void remove_route(struct snd_soc_component *comp,
433 struct snd_soc_dobj *dobj, int pass)
434{
435 struct snd_soc_dapm_route *route =
436 container_of(dobj, struct snd_soc_dapm_route, dobj);
437
438 if (pass != SOC_TPLG_PASS_GRAPH)
439 return;
440
441 if (dobj->ops && dobj->ops->dapm_route_unload)
442 dobj->ops->dapm_route_unload(comp, dobj);
443
444 list_del(&dobj->list);
445 kfree(route);
446}
447
Liam Girdwood8a978232015-05-29 19:06:14 +0100448/* remove a widget and it's kcontrols - routes must be removed first */
449static void remove_widget(struct snd_soc_component *comp,
450 struct snd_soc_dobj *dobj, int pass)
451{
452 struct snd_card *card = comp->card->snd_card;
453 struct snd_soc_dapm_widget *w =
454 container_of(dobj, struct snd_soc_dapm_widget, dobj);
455 int i;
456
457 if (pass != SOC_TPLG_PASS_WIDGET)
458 return;
459
460 if (dobj->ops && dobj->ops->widget_unload)
461 dobj->ops->widget_unload(comp, dobj);
462
Liam Girdwood05bdcf12018-03-14 20:42:40 +0000463 if (!w->kcontrols)
464 goto free_news;
465
Liam Girdwood8a978232015-05-29 19:06:14 +0100466 /*
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +0800467 * Dynamic Widgets either have 1..N enum kcontrols or mixers.
Liam Girdwood8a978232015-05-29 19:06:14 +0100468 * The enum may either have an array of values or strings.
469 */
Mengdong Lineea3dd42016-11-25 16:09:17 +0800470 if (dobj->widget.kcontrol_type == SND_SOC_TPLG_TYPE_ENUM) {
Liam Girdwood8a978232015-05-29 19:06:14 +0100471 /* enumerated widget mixer */
Liam Girdwoodf53c4c22018-03-27 14:30:44 +0100472 for (i = 0; w->kcontrols != NULL && i < w->num_kcontrols; i++) {
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +0800473 struct snd_kcontrol *kcontrol = w->kcontrols[i];
474 struct soc_enum *se =
475 (struct soc_enum *)kcontrol->private_value;
Liam Girdwood8a978232015-05-29 19:06:14 +0100476
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +0800477 snd_ctl_remove(card, kcontrol);
Liam Girdwood8a978232015-05-29 19:06:14 +0100478
Ranjani Sridharan54f88442019-04-04 19:48:33 -0700479 /* free enum kcontrol's dvalues and dtexts */
Amadeusz Sławiński3cde8182019-06-17 13:36:43 +0200480 soc_tplg_denum_remove_values(se);
481 soc_tplg_denum_remove_texts(se);
Liam Girdwood8a978232015-05-29 19:06:14 +0100482
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +0800483 kfree(se);
Liam Girdwood267e2c62018-03-27 12:04:04 +0100484 kfree(w->kcontrol_news[i].name);
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +0800485 }
Liam Girdwood8a978232015-05-29 19:06:14 +0100486 } else {
Mengdong Lineea3dd42016-11-25 16:09:17 +0800487 /* volume mixer or bytes controls */
Liam Girdwoodf53c4c22018-03-27 14:30:44 +0100488 for (i = 0; w->kcontrols != NULL && i < w->num_kcontrols; i++) {
Liam Girdwood8a978232015-05-29 19:06:14 +0100489 struct snd_kcontrol *kcontrol = w->kcontrols[i];
Liam Girdwood8a978232015-05-29 19:06:14 +0100490
Mengdong Lineea3dd42016-11-25 16:09:17 +0800491 if (dobj->widget.kcontrol_type
492 == SND_SOC_TPLG_TYPE_MIXER)
493 kfree(kcontrol->tlv.p);
Liam Girdwood8a978232015-05-29 19:06:14 +0100494
Mengdong Lineea3dd42016-11-25 16:09:17 +0800495 /* Private value is used as struct soc_mixer_control
496 * for volume mixers or soc_bytes_ext for bytes
497 * controls.
498 */
499 kfree((void *)kcontrol->private_value);
Colin Ian Kingc2b36122016-12-09 14:17:47 +0000500 snd_ctl_remove(card, kcontrol);
Liam Girdwood267e2c62018-03-27 12:04:04 +0100501 kfree(w->kcontrol_news[i].name);
Liam Girdwood8a978232015-05-29 19:06:14 +0100502 }
Liam Girdwood8a978232015-05-29 19:06:14 +0100503 }
Liam Girdwood05bdcf12018-03-14 20:42:40 +0000504
505free_news:
506 kfree(w->kcontrol_news);
507
Amadeusz Sławińskia46e8392019-01-25 14:06:43 -0600508 list_del(&dobj->list);
509
Liam Girdwood8a978232015-05-29 19:06:14 +0100510 /* widget w is freed by soc-dapm.c */
511}
512
Mengdong Lin64527e82016-01-15 16:13:28 +0800513/* remove DAI configurations */
514static void remove_dai(struct snd_soc_component *comp,
Liam Girdwood8a978232015-05-29 19:06:14 +0100515 struct snd_soc_dobj *dobj, int pass)
516{
Mengdong Lin64527e82016-01-15 16:13:28 +0800517 struct snd_soc_dai_driver *dai_drv =
518 container_of(dobj, struct snd_soc_dai_driver, dobj);
Guennadi Liakhovetski52abe6c2019-02-01 11:05:13 -0600519 struct snd_soc_dai *dai;
Mengdong Lin64527e82016-01-15 16:13:28 +0800520
Liam Girdwood8a978232015-05-29 19:06:14 +0100521 if (pass != SOC_TPLG_PASS_PCM_DAI)
522 return;
523
Mengdong Lin64527e82016-01-15 16:13:28 +0800524 if (dobj->ops && dobj->ops->dai_unload)
525 dobj->ops->dai_unload(comp, dobj);
Liam Girdwood8a978232015-05-29 19:06:14 +0100526
Kuninori Morimoto43ca5da2019-08-20 14:05:32 +0900527 for_each_component_dais(comp, dai)
Guennadi Liakhovetski52abe6c2019-02-01 11:05:13 -0600528 if (dai->driver == dai_drv)
529 dai->driver = NULL;
530
Bard liao7b6f68a2019-03-05 23:57:52 +0800531 kfree(dai_drv->playback.stream_name);
532 kfree(dai_drv->capture.stream_name);
Mengdong Lin8f27c4a2016-11-03 01:02:59 +0800533 kfree(dai_drv->name);
Liam Girdwood8a978232015-05-29 19:06:14 +0100534 list_del(&dobj->list);
Mengdong Lin64527e82016-01-15 16:13:28 +0800535 kfree(dai_drv);
Liam Girdwood8a978232015-05-29 19:06:14 +0100536}
537
Mengdong Linacfc7d42016-01-15 16:13:37 +0800538/* remove link configurations */
539static void remove_link(struct snd_soc_component *comp,
540 struct snd_soc_dobj *dobj, int pass)
541{
542 struct snd_soc_dai_link *link =
543 container_of(dobj, struct snd_soc_dai_link, dobj);
544
545 if (pass != SOC_TPLG_PASS_PCM_DAI)
546 return;
547
548 if (dobj->ops && dobj->ops->link_unload)
549 dobj->ops->link_unload(comp, dobj);
550
Dragos Tarcatudd836dd2019-12-04 15:04:47 -0600551 list_del(&dobj->list);
Kuninori Morimoto50cd9b52019-12-10 09:34:23 +0900552 snd_soc_remove_pcm_runtime(comp->card,
553 snd_soc_get_pcm_runtime(comp->card, link));
Dragos Tarcatudd836dd2019-12-04 15:04:47 -0600554
Mengdong Lin8f27c4a2016-11-03 01:02:59 +0800555 kfree(link->name);
556 kfree(link->stream_name);
Kuninori Morimoto23b946c2019-06-06 13:19:14 +0900557 kfree(link->cpus->dai_name);
Mengdong Linacfc7d42016-01-15 16:13:37 +0800558 kfree(link);
559}
560
Bard liaoadfebb52019-02-01 11:07:40 -0600561/* unload dai link */
562static void remove_backend_link(struct snd_soc_component *comp,
563 struct snd_soc_dobj *dobj, int pass)
564{
565 if (pass != SOC_TPLG_PASS_LINK)
566 return;
567
568 if (dobj->ops && dobj->ops->link_unload)
569 dobj->ops->link_unload(comp, dobj);
570
571 /*
572 * We don't free the link here as what remove_link() do since BE
573 * links are not allocated by topology.
574 * We however need to reset the dobj type to its initial values
575 */
576 dobj->type = SND_SOC_DOBJ_NONE;
577 list_del(&dobj->list);
578}
579
Liam Girdwood8a978232015-05-29 19:06:14 +0100580/* bind a kcontrol to it's IO handlers */
581static int soc_tplg_kcontrol_bind_io(struct snd_soc_tplg_ctl_hdr *hdr,
582 struct snd_kcontrol_new *k,
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800583 const struct soc_tplg *tplg)
Liam Girdwood8a978232015-05-29 19:06:14 +0100584{
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800585 const struct snd_soc_tplg_kcontrol_ops *ops;
Mengdong Lin1a3232d2015-08-18 18:12:20 +0800586 const struct snd_soc_tplg_bytes_ext_ops *ext_ops;
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800587 int num_ops, i;
Liam Girdwood8a978232015-05-29 19:06:14 +0100588
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500589 if (le32_to_cpu(hdr->ops.info) == SND_SOC_TPLG_CTL_BYTES
Mengdong Lin1a3232d2015-08-18 18:12:20 +0800590 && k->iface & SNDRV_CTL_ELEM_IFACE_MIXER
591 && k->access & SNDRV_CTL_ELEM_ACCESS_TLV_READWRITE
592 && k->access & SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK) {
593 struct soc_bytes_ext *sbe;
594 struct snd_soc_tplg_bytes_control *be;
595
596 sbe = (struct soc_bytes_ext *)k->private_value;
597 be = container_of(hdr, struct snd_soc_tplg_bytes_control, hdr);
598
599 /* TLV bytes controls need standard kcontrol info handler,
600 * TLV callback and extended put/get handlers.
601 */
Omair M Abdullahf4be9782015-11-09 23:20:01 +0530602 k->info = snd_soc_bytes_info_ext;
Mengdong Lin1a3232d2015-08-18 18:12:20 +0800603 k->tlv.c = snd_soc_bytes_tlv_callback;
604
605 ext_ops = tplg->bytes_ext_ops;
606 num_ops = tplg->bytes_ext_ops_count;
607 for (i = 0; i < num_ops; i++) {
Pierre-Louis Bossart72bbeda2020-01-02 13:59:52 -0600608 if (!sbe->put &&
609 ext_ops[i].id == le32_to_cpu(be->ext_ops.put))
Mengdong Lin1a3232d2015-08-18 18:12:20 +0800610 sbe->put = ext_ops[i].put;
Pierre-Louis Bossart72bbeda2020-01-02 13:59:52 -0600611 if (!sbe->get &&
612 ext_ops[i].id == le32_to_cpu(be->ext_ops.get))
Mengdong Lin1a3232d2015-08-18 18:12:20 +0800613 sbe->get = ext_ops[i].get;
614 }
615
616 if (sbe->put && sbe->get)
617 return 0;
618 else
619 return -EINVAL;
620 }
621
Mengdong Lin88a17d82015-08-18 18:11:51 +0800622 /* try and map vendor specific kcontrol handlers first */
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800623 ops = tplg->io_ops;
624 num_ops = tplg->io_ops_count;
Liam Girdwood8a978232015-05-29 19:06:14 +0100625 for (i = 0; i < num_ops; i++) {
626
Pierre-Louis Bossart72bbeda2020-01-02 13:59:52 -0600627 if (k->put == NULL && ops[i].id == le32_to_cpu(hdr->ops.put))
Liam Girdwood8a978232015-05-29 19:06:14 +0100628 k->put = ops[i].put;
Pierre-Louis Bossart72bbeda2020-01-02 13:59:52 -0600629 if (k->get == NULL && ops[i].id == le32_to_cpu(hdr->ops.get))
Liam Girdwood8a978232015-05-29 19:06:14 +0100630 k->get = ops[i].get;
Pierre-Louis Bossart72bbeda2020-01-02 13:59:52 -0600631 if (k->info == NULL && ops[i].id == le32_to_cpu(hdr->ops.info))
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800632 k->info = ops[i].info;
Liam Girdwood8a978232015-05-29 19:06:14 +0100633 }
634
Mengdong Lin88a17d82015-08-18 18:11:51 +0800635 /* vendor specific handlers found ? */
636 if (k->put && k->get && k->info)
637 return 0;
638
639 /* none found so try standard kcontrol handlers */
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800640 ops = io_ops;
641 num_ops = ARRAY_SIZE(io_ops);
Mengdong Lin88a17d82015-08-18 18:11:51 +0800642 for (i = 0; i < num_ops; i++) {
643
Pierre-Louis Bossart72bbeda2020-01-02 13:59:52 -0600644 if (k->put == NULL && ops[i].id == le32_to_cpu(hdr->ops.put))
Mengdong Lin88a17d82015-08-18 18:11:51 +0800645 k->put = ops[i].put;
Pierre-Louis Bossart72bbeda2020-01-02 13:59:52 -0600646 if (k->get == NULL && ops[i].id == le32_to_cpu(hdr->ops.get))
Mengdong Lin88a17d82015-08-18 18:11:51 +0800647 k->get = ops[i].get;
Pierre-Louis Bossart72bbeda2020-01-02 13:59:52 -0600648 if (k->info == NULL && ops[i].id == le32_to_cpu(hdr->ops.info))
Liam Girdwood8a978232015-05-29 19:06:14 +0100649 k->info = ops[i].info;
650 }
651
652 /* standard handlers found ? */
653 if (k->put && k->get && k->info)
654 return 0;
655
Liam Girdwood8a978232015-05-29 19:06:14 +0100656 /* nothing to bind */
657 return -EINVAL;
658}
659
660/* bind a widgets to it's evnt handlers */
661int snd_soc_tplg_widget_bind_event(struct snd_soc_dapm_widget *w,
662 const struct snd_soc_tplg_widget_events *events,
663 int num_events, u16 event_type)
664{
665 int i;
666
667 w->event = NULL;
668
669 for (i = 0; i < num_events; i++) {
670 if (event_type == events[i].type) {
671
672 /* found - so assign event */
673 w->event = events[i].event_handler;
674 return 0;
675 }
676 }
677
678 /* not found */
679 return -EINVAL;
680}
681EXPORT_SYMBOL_GPL(snd_soc_tplg_widget_bind_event);
682
683/* optionally pass new dynamic kcontrol to component driver. */
684static int soc_tplg_init_kcontrol(struct soc_tplg *tplg,
685 struct snd_kcontrol_new *k, struct snd_soc_tplg_ctl_hdr *hdr)
686{
Amadeusz Sławińskic42464a2020-03-12 08:22:39 -0400687 if (tplg->ops && tplg->ops->control_load)
Liam Girdwoodc60b6132018-06-14 20:50:37 +0100688 return tplg->ops->control_load(tplg->comp, tplg->index, k,
689 hdr);
Liam Girdwood8a978232015-05-29 19:06:14 +0100690
691 return 0;
692}
693
Mengdong Lin28a87ee2015-08-05 14:41:13 +0100694
695static int soc_tplg_create_tlv_db_scale(struct soc_tplg *tplg,
696 struct snd_kcontrol_new *kc, struct snd_soc_tplg_tlv_dbscale *scale)
Liam Girdwood8a978232015-05-29 19:06:14 +0100697{
Mengdong Lin28a87ee2015-08-05 14:41:13 +0100698 unsigned int item_len = 2 * sizeof(unsigned int);
699 unsigned int *p;
Liam Girdwood8a978232015-05-29 19:06:14 +0100700
Mengdong Lin28a87ee2015-08-05 14:41:13 +0100701 p = kzalloc(item_len + 2 * sizeof(unsigned int), GFP_KERNEL);
702 if (!p)
Liam Girdwood8a978232015-05-29 19:06:14 +0100703 return -ENOMEM;
704
Mengdong Lin28a87ee2015-08-05 14:41:13 +0100705 p[0] = SNDRV_CTL_TLVT_DB_SCALE;
706 p[1] = item_len;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500707 p[2] = le32_to_cpu(scale->min);
708 p[3] = (le32_to_cpu(scale->step) & TLV_DB_SCALE_MASK)
709 | (le32_to_cpu(scale->mute) ? TLV_DB_SCALE_MUTE : 0);
Liam Girdwood8a978232015-05-29 19:06:14 +0100710
Mengdong Lin28a87ee2015-08-05 14:41:13 +0100711 kc->tlv.p = (void *)p;
712 return 0;
713}
714
715static int soc_tplg_create_tlv(struct soc_tplg *tplg,
716 struct snd_kcontrol_new *kc, struct snd_soc_tplg_ctl_hdr *tc)
717{
718 struct snd_soc_tplg_ctl_tlv *tplg_tlv;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500719 u32 access = le32_to_cpu(tc->access);
Mengdong Lin28a87ee2015-08-05 14:41:13 +0100720
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500721 if (!(access & SNDRV_CTL_ELEM_ACCESS_TLV_READWRITE))
Mengdong Lin28a87ee2015-08-05 14:41:13 +0100722 return 0;
723
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500724 if (!(access & SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK)) {
Mengdong Lin28a87ee2015-08-05 14:41:13 +0100725 tplg_tlv = &tc->tlv;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500726 switch (le32_to_cpu(tplg_tlv->type)) {
Mengdong Lin28a87ee2015-08-05 14:41:13 +0100727 case SNDRV_CTL_TLVT_DB_SCALE:
728 return soc_tplg_create_tlv_db_scale(tplg, kc,
729 &tplg_tlv->scale);
730
731 /* TODO: add support for other TLV types */
732 default:
733 dev_dbg(tplg->dev, "Unsupported TLV type %d\n",
734 tplg_tlv->type);
735 return -EINVAL;
736 }
737 }
Liam Girdwood8a978232015-05-29 19:06:14 +0100738
739 return 0;
740}
741
742static inline void soc_tplg_free_tlv(struct soc_tplg *tplg,
743 struct snd_kcontrol_new *kc)
744{
745 kfree(kc->tlv.p);
746}
747
748static int soc_tplg_dbytes_create(struct soc_tplg *tplg, unsigned int count,
749 size_t size)
750{
751 struct snd_soc_tplg_bytes_control *be;
752 struct soc_bytes_ext *sbe;
753 struct snd_kcontrol_new kc;
754 int i, err;
755
756 if (soc_tplg_check_elem_count(tplg,
757 sizeof(struct snd_soc_tplg_bytes_control), count,
758 size, "mixer bytes")) {
759 dev_err(tplg->dev, "ASoC: Invalid count %d for byte control\n",
760 count);
761 return -EINVAL;
762 }
763
764 for (i = 0; i < count; i++) {
765 be = (struct snd_soc_tplg_bytes_control *)tplg->pos;
766
767 /* validate kcontrol */
768 if (strnlen(be->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
769 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
770 return -EINVAL;
771
772 sbe = kzalloc(sizeof(*sbe), GFP_KERNEL);
773 if (sbe == NULL)
774 return -ENOMEM;
775
776 tplg->pos += (sizeof(struct snd_soc_tplg_bytes_control) +
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500777 le32_to_cpu(be->priv.size));
Liam Girdwood8a978232015-05-29 19:06:14 +0100778
779 dev_dbg(tplg->dev,
780 "ASoC: adding bytes kcontrol %s with access 0x%x\n",
781 be->hdr.name, be->hdr.access);
782
783 memset(&kc, 0, sizeof(kc));
784 kc.name = be->hdr.name;
785 kc.private_value = (long)sbe;
786 kc.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500787 kc.access = le32_to_cpu(be->hdr.access);
Liam Girdwood8a978232015-05-29 19:06:14 +0100788
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500789 sbe->max = le32_to_cpu(be->max);
Liam Girdwood8a978232015-05-29 19:06:14 +0100790 sbe->dobj.type = SND_SOC_DOBJ_BYTES;
791 sbe->dobj.ops = tplg->ops;
792 INIT_LIST_HEAD(&sbe->dobj.list);
793
794 /* map io handlers */
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800795 err = soc_tplg_kcontrol_bind_io(&be->hdr, &kc, tplg);
Liam Girdwood8a978232015-05-29 19:06:14 +0100796 if (err) {
797 soc_control_err(tplg, &be->hdr, be->hdr.name);
798 kfree(sbe);
799 continue;
800 }
801
802 /* pass control to driver for optional further init */
803 err = soc_tplg_init_kcontrol(tplg, &kc,
804 (struct snd_soc_tplg_ctl_hdr *)be);
805 if (err < 0) {
806 dev_err(tplg->dev, "ASoC: failed to init %s\n",
807 be->hdr.name);
808 kfree(sbe);
809 continue;
810 }
811
812 /* register control here */
813 err = soc_tplg_add_kcontrol(tplg, &kc,
814 &sbe->dobj.control.kcontrol);
815 if (err < 0) {
816 dev_err(tplg->dev, "ASoC: failed to add %s\n",
817 be->hdr.name);
818 kfree(sbe);
819 continue;
820 }
821
822 list_add(&sbe->dobj.list, &tplg->comp->dobj_list);
823 }
824 return 0;
825
826}
827
828static int soc_tplg_dmixer_create(struct soc_tplg *tplg, unsigned int count,
829 size_t size)
830{
831 struct snd_soc_tplg_mixer_control *mc;
832 struct soc_mixer_control *sm;
833 struct snd_kcontrol_new kc;
834 int i, err;
835
836 if (soc_tplg_check_elem_count(tplg,
837 sizeof(struct snd_soc_tplg_mixer_control),
838 count, size, "mixers")) {
839
840 dev_err(tplg->dev, "ASoC: invalid count %d for controls\n",
841 count);
842 return -EINVAL;
843 }
844
845 for (i = 0; i < count; i++) {
846 mc = (struct snd_soc_tplg_mixer_control *)tplg->pos;
847
848 /* validate kcontrol */
849 if (strnlen(mc->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
850 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
851 return -EINVAL;
852
853 sm = kzalloc(sizeof(*sm), GFP_KERNEL);
854 if (sm == NULL)
855 return -ENOMEM;
856 tplg->pos += (sizeof(struct snd_soc_tplg_mixer_control) +
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500857 le32_to_cpu(mc->priv.size));
Liam Girdwood8a978232015-05-29 19:06:14 +0100858
859 dev_dbg(tplg->dev,
860 "ASoC: adding mixer kcontrol %s with access 0x%x\n",
861 mc->hdr.name, mc->hdr.access);
862
863 memset(&kc, 0, sizeof(kc));
864 kc.name = mc->hdr.name;
865 kc.private_value = (long)sm;
866 kc.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500867 kc.access = le32_to_cpu(mc->hdr.access);
Liam Girdwood8a978232015-05-29 19:06:14 +0100868
869 /* we only support FL/FR channel mapping atm */
870 sm->reg = tplc_chan_get_reg(tplg, mc->channel,
871 SNDRV_CHMAP_FL);
872 sm->rreg = tplc_chan_get_reg(tplg, mc->channel,
873 SNDRV_CHMAP_FR);
874 sm->shift = tplc_chan_get_shift(tplg, mc->channel,
875 SNDRV_CHMAP_FL);
876 sm->rshift = tplc_chan_get_shift(tplg, mc->channel,
877 SNDRV_CHMAP_FR);
878
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500879 sm->max = le32_to_cpu(mc->max);
880 sm->min = le32_to_cpu(mc->min);
881 sm->invert = le32_to_cpu(mc->invert);
882 sm->platform_max = le32_to_cpu(mc->platform_max);
Liam Girdwood8a978232015-05-29 19:06:14 +0100883 sm->dobj.index = tplg->index;
884 sm->dobj.ops = tplg->ops;
885 sm->dobj.type = SND_SOC_DOBJ_MIXER;
886 INIT_LIST_HEAD(&sm->dobj.list);
887
888 /* map io handlers */
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800889 err = soc_tplg_kcontrol_bind_io(&mc->hdr, &kc, tplg);
Liam Girdwood8a978232015-05-29 19:06:14 +0100890 if (err) {
891 soc_control_err(tplg, &mc->hdr, mc->hdr.name);
892 kfree(sm);
893 continue;
894 }
895
Bard liao3789deb2019-03-13 21:49:43 +0800896 /* create any TLV data */
Amadeusz Sławiński482db552020-03-27 16:47:25 -0400897 err = soc_tplg_create_tlv(tplg, &kc, &mc->hdr);
898 if (err < 0) {
899 dev_err(tplg->dev, "ASoC: failed to create TLV %s\n",
900 mc->hdr.name);
901 kfree(sm);
902 continue;
903 }
Bard liao3789deb2019-03-13 21:49:43 +0800904
Liam Girdwood8a978232015-05-29 19:06:14 +0100905 /* pass control to driver for optional further init */
906 err = soc_tplg_init_kcontrol(tplg, &kc,
907 (struct snd_soc_tplg_ctl_hdr *) mc);
908 if (err < 0) {
909 dev_err(tplg->dev, "ASoC: failed to init %s\n",
910 mc->hdr.name);
Bard liao3789deb2019-03-13 21:49:43 +0800911 soc_tplg_free_tlv(tplg, &kc);
Liam Girdwood8a978232015-05-29 19:06:14 +0100912 kfree(sm);
913 continue;
914 }
915
Liam Girdwood8a978232015-05-29 19:06:14 +0100916 /* register control here */
917 err = soc_tplg_add_kcontrol(tplg, &kc,
918 &sm->dobj.control.kcontrol);
919 if (err < 0) {
920 dev_err(tplg->dev, "ASoC: failed to add %s\n",
921 mc->hdr.name);
922 soc_tplg_free_tlv(tplg, &kc);
923 kfree(sm);
924 continue;
925 }
926
927 list_add(&sm->dobj.list, &tplg->comp->dobj_list);
928 }
929
930 return 0;
931}
932
933static int soc_tplg_denum_create_texts(struct soc_enum *se,
934 struct snd_soc_tplg_enum_control *ec)
935{
936 int i, ret;
937
938 se->dobj.control.dtexts =
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500939 kcalloc(le32_to_cpu(ec->items), sizeof(char *), GFP_KERNEL);
Liam Girdwood8a978232015-05-29 19:06:14 +0100940 if (se->dobj.control.dtexts == NULL)
941 return -ENOMEM;
942
Pierre-Louis Bossart72bbeda2020-01-02 13:59:52 -0600943 for (i = 0; i < le32_to_cpu(ec->items); i++) {
Liam Girdwood8a978232015-05-29 19:06:14 +0100944
945 if (strnlen(ec->texts[i], SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
946 SNDRV_CTL_ELEM_ID_NAME_MAXLEN) {
947 ret = -EINVAL;
948 goto err;
949 }
950
951 se->dobj.control.dtexts[i] = kstrdup(ec->texts[i], GFP_KERNEL);
952 if (!se->dobj.control.dtexts[i]) {
953 ret = -ENOMEM;
954 goto err;
955 }
956 }
957
Amadeusz Sławiński3cde8182019-06-17 13:36:43 +0200958 se->items = le32_to_cpu(ec->items);
Mousumi Janab6e38b22017-04-11 13:06:22 +0530959 se->texts = (const char * const *)se->dobj.control.dtexts;
Liam Girdwood8a978232015-05-29 19:06:14 +0100960 return 0;
961
962err:
Amadeusz Sławiński3cde8182019-06-17 13:36:43 +0200963 se->items = i;
964 soc_tplg_denum_remove_texts(se);
965 return ret;
966}
967
968static inline void soc_tplg_denum_remove_texts(struct soc_enum *se)
969{
970 int i = se->items;
971
Liam Girdwood8a978232015-05-29 19:06:14 +0100972 for (--i; i >= 0; i--)
973 kfree(se->dobj.control.dtexts[i]);
974 kfree(se->dobj.control.dtexts);
Liam Girdwood8a978232015-05-29 19:06:14 +0100975}
976
977static int soc_tplg_denum_create_values(struct soc_enum *se,
978 struct snd_soc_tplg_enum_control *ec)
979{
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500980 int i;
981
982 if (le32_to_cpu(ec->items) > sizeof(*ec->values))
Liam Girdwood8a978232015-05-29 19:06:14 +0100983 return -EINVAL;
984
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500985 se->dobj.control.dvalues = kzalloc(le32_to_cpu(ec->items) *
986 sizeof(u32),
Andrzej Hajda376c0af2015-08-07 09:59:37 +0200987 GFP_KERNEL);
Liam Girdwood8a978232015-05-29 19:06:14 +0100988 if (!se->dobj.control.dvalues)
989 return -ENOMEM;
990
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500991 /* convert from little-endian */
992 for (i = 0; i < le32_to_cpu(ec->items); i++) {
993 se->dobj.control.dvalues[i] = le32_to_cpu(ec->values[i]);
994 }
995
Liam Girdwood8a978232015-05-29 19:06:14 +0100996 return 0;
997}
998
Amadeusz Sławiński3cde8182019-06-17 13:36:43 +0200999static inline void soc_tplg_denum_remove_values(struct soc_enum *se)
1000{
1001 kfree(se->dobj.control.dvalues);
1002}
1003
Liam Girdwood8a978232015-05-29 19:06:14 +01001004static int soc_tplg_denum_create(struct soc_tplg *tplg, unsigned int count,
1005 size_t size)
1006{
1007 struct snd_soc_tplg_enum_control *ec;
1008 struct soc_enum *se;
1009 struct snd_kcontrol_new kc;
1010 int i, ret, err;
1011
1012 if (soc_tplg_check_elem_count(tplg,
1013 sizeof(struct snd_soc_tplg_enum_control),
1014 count, size, "enums")) {
1015
1016 dev_err(tplg->dev, "ASoC: invalid count %d for enum controls\n",
1017 count);
1018 return -EINVAL;
1019 }
1020
1021 for (i = 0; i < count; i++) {
1022 ec = (struct snd_soc_tplg_enum_control *)tplg->pos;
Liam Girdwood8a978232015-05-29 19:06:14 +01001023
1024 /* validate kcontrol */
1025 if (strnlen(ec->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1026 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
1027 return -EINVAL;
1028
1029 se = kzalloc((sizeof(*se)), GFP_KERNEL);
1030 if (se == NULL)
1031 return -ENOMEM;
1032
Liam Girdwood02b64242019-03-01 19:08:52 -06001033 tplg->pos += (sizeof(struct snd_soc_tplg_enum_control) +
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001034 le32_to_cpu(ec->priv.size));
Liam Girdwood02b64242019-03-01 19:08:52 -06001035
Liam Girdwood8a978232015-05-29 19:06:14 +01001036 dev_dbg(tplg->dev, "ASoC: adding enum kcontrol %s size %d\n",
1037 ec->hdr.name, ec->items);
1038
1039 memset(&kc, 0, sizeof(kc));
1040 kc.name = ec->hdr.name;
1041 kc.private_value = (long)se;
1042 kc.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001043 kc.access = le32_to_cpu(ec->hdr.access);
Liam Girdwood8a978232015-05-29 19:06:14 +01001044
1045 se->reg = tplc_chan_get_reg(tplg, ec->channel, SNDRV_CHMAP_FL);
1046 se->shift_l = tplc_chan_get_shift(tplg, ec->channel,
1047 SNDRV_CHMAP_FL);
1048 se->shift_r = tplc_chan_get_shift(tplg, ec->channel,
1049 SNDRV_CHMAP_FL);
1050
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001051 se->mask = le32_to_cpu(ec->mask);
Liam Girdwood8a978232015-05-29 19:06:14 +01001052 se->dobj.index = tplg->index;
1053 se->dobj.type = SND_SOC_DOBJ_ENUM;
1054 se->dobj.ops = tplg->ops;
1055 INIT_LIST_HEAD(&se->dobj.list);
1056
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001057 switch (le32_to_cpu(ec->hdr.ops.info)) {
Liam Girdwood8a978232015-05-29 19:06:14 +01001058 case SND_SOC_TPLG_DAPM_CTL_ENUM_VALUE:
1059 case SND_SOC_TPLG_CTL_ENUM_VALUE:
1060 err = soc_tplg_denum_create_values(se, ec);
1061 if (err < 0) {
1062 dev_err(tplg->dev,
1063 "ASoC: could not create values for %s\n",
1064 ec->hdr.name);
1065 kfree(se);
1066 continue;
1067 }
Takashi Iwai9c6c4d92018-10-04 20:30:06 +02001068 /* fall through */
Liam Girdwood8a978232015-05-29 19:06:14 +01001069 case SND_SOC_TPLG_CTL_ENUM:
1070 case SND_SOC_TPLG_DAPM_CTL_ENUM_DOUBLE:
1071 case SND_SOC_TPLG_DAPM_CTL_ENUM_VIRT:
1072 err = soc_tplg_denum_create_texts(se, ec);
1073 if (err < 0) {
1074 dev_err(tplg->dev,
1075 "ASoC: could not create texts for %s\n",
1076 ec->hdr.name);
1077 kfree(se);
1078 continue;
1079 }
1080 break;
1081 default:
1082 dev_err(tplg->dev,
1083 "ASoC: invalid enum control type %d for %s\n",
1084 ec->hdr.ops.info, ec->hdr.name);
1085 kfree(se);
1086 continue;
1087 }
1088
1089 /* map io handlers */
Mengdong Lin2b5cdb92015-08-18 18:12:01 +08001090 err = soc_tplg_kcontrol_bind_io(&ec->hdr, &kc, tplg);
Liam Girdwood8a978232015-05-29 19:06:14 +01001091 if (err) {
1092 soc_control_err(tplg, &ec->hdr, ec->hdr.name);
1093 kfree(se);
1094 continue;
1095 }
1096
1097 /* pass control to driver for optional further init */
1098 err = soc_tplg_init_kcontrol(tplg, &kc,
1099 (struct snd_soc_tplg_ctl_hdr *) ec);
1100 if (err < 0) {
1101 dev_err(tplg->dev, "ASoC: failed to init %s\n",
1102 ec->hdr.name);
1103 kfree(se);
1104 continue;
1105 }
1106
1107 /* register control here */
1108 ret = soc_tplg_add_kcontrol(tplg,
1109 &kc, &se->dobj.control.kcontrol);
1110 if (ret < 0) {
1111 dev_err(tplg->dev, "ASoC: could not add kcontrol %s\n",
1112 ec->hdr.name);
1113 kfree(se);
1114 continue;
1115 }
1116
1117 list_add(&se->dobj.list, &tplg->comp->dobj_list);
1118 }
1119
1120 return 0;
1121}
1122
1123static int soc_tplg_kcontrol_elems_load(struct soc_tplg *tplg,
1124 struct snd_soc_tplg_hdr *hdr)
1125{
1126 struct snd_soc_tplg_ctl_hdr *control_hdr;
1127 int i;
1128
1129 if (tplg->pass != SOC_TPLG_PASS_MIXER) {
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001130 tplg->pos += le32_to_cpu(hdr->size) +
1131 le32_to_cpu(hdr->payload_size);
Liam Girdwood8a978232015-05-29 19:06:14 +01001132 return 0;
1133 }
1134
1135 dev_dbg(tplg->dev, "ASoC: adding %d kcontrols at 0x%lx\n", hdr->count,
1136 soc_tplg_get_offset(tplg));
1137
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001138 for (i = 0; i < le32_to_cpu(hdr->count); i++) {
Liam Girdwood8a978232015-05-29 19:06:14 +01001139
1140 control_hdr = (struct snd_soc_tplg_ctl_hdr *)tplg->pos;
1141
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001142 if (le32_to_cpu(control_hdr->size) != sizeof(*control_hdr)) {
Mengdong Lin06eb49f2016-04-27 14:52:56 +08001143 dev_err(tplg->dev, "ASoC: invalid control size\n");
1144 return -EINVAL;
1145 }
1146
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001147 switch (le32_to_cpu(control_hdr->ops.info)) {
Liam Girdwood8a978232015-05-29 19:06:14 +01001148 case SND_SOC_TPLG_CTL_VOLSW:
1149 case SND_SOC_TPLG_CTL_STROBE:
1150 case SND_SOC_TPLG_CTL_VOLSW_SX:
1151 case SND_SOC_TPLG_CTL_VOLSW_XR_SX:
1152 case SND_SOC_TPLG_CTL_RANGE:
1153 case SND_SOC_TPLG_DAPM_CTL_VOLSW:
1154 case SND_SOC_TPLG_DAPM_CTL_PIN:
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001155 soc_tplg_dmixer_create(tplg, 1,
1156 le32_to_cpu(hdr->payload_size));
Liam Girdwood8a978232015-05-29 19:06:14 +01001157 break;
1158 case SND_SOC_TPLG_CTL_ENUM:
1159 case SND_SOC_TPLG_CTL_ENUM_VALUE:
1160 case SND_SOC_TPLG_DAPM_CTL_ENUM_DOUBLE:
1161 case SND_SOC_TPLG_DAPM_CTL_ENUM_VIRT:
1162 case SND_SOC_TPLG_DAPM_CTL_ENUM_VALUE:
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001163 soc_tplg_denum_create(tplg, 1,
1164 le32_to_cpu(hdr->payload_size));
Liam Girdwood8a978232015-05-29 19:06:14 +01001165 break;
1166 case SND_SOC_TPLG_CTL_BYTES:
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001167 soc_tplg_dbytes_create(tplg, 1,
1168 le32_to_cpu(hdr->payload_size));
Liam Girdwood8a978232015-05-29 19:06:14 +01001169 break;
1170 default:
1171 soc_bind_err(tplg, control_hdr, i);
1172 return -EINVAL;
1173 }
1174 }
1175
1176 return 0;
1177}
1178
Liam Girdwood503e79b2018-06-14 20:53:59 +01001179/* optionally pass new dynamic kcontrol to component driver. */
1180static int soc_tplg_add_route(struct soc_tplg *tplg,
1181 struct snd_soc_dapm_route *route)
1182{
Amadeusz Sławińskic42464a2020-03-12 08:22:39 -04001183 if (tplg->ops && tplg->ops->dapm_route_load)
Liam Girdwood503e79b2018-06-14 20:53:59 +01001184 return tplg->ops->dapm_route_load(tplg->comp, tplg->index,
1185 route);
1186
1187 return 0;
1188}
1189
Liam Girdwood8a978232015-05-29 19:06:14 +01001190static int soc_tplg_dapm_graph_elems_load(struct soc_tplg *tplg,
1191 struct snd_soc_tplg_hdr *hdr)
1192{
1193 struct snd_soc_dapm_context *dapm = &tplg->comp->dapm;
Liam Girdwood8a978232015-05-29 19:06:14 +01001194 struct snd_soc_tplg_dapm_graph_elem *elem;
Ranjani Sridharan7df04ea2019-01-25 14:06:47 -06001195 struct snd_soc_dapm_route **routes;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001196 int count, i, j;
Ranjani Sridharan7df04ea2019-01-25 14:06:47 -06001197 int ret = 0;
Liam Girdwood8a978232015-05-29 19:06:14 +01001198
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001199 count = le32_to_cpu(hdr->count);
1200
Liam Girdwood8a978232015-05-29 19:06:14 +01001201 if (tplg->pass != SOC_TPLG_PASS_GRAPH) {
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001202 tplg->pos +=
1203 le32_to_cpu(hdr->size) +
1204 le32_to_cpu(hdr->payload_size);
1205
Liam Girdwood8a978232015-05-29 19:06:14 +01001206 return 0;
1207 }
1208
1209 if (soc_tplg_check_elem_count(tplg,
1210 sizeof(struct snd_soc_tplg_dapm_graph_elem),
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001211 count, le32_to_cpu(hdr->payload_size), "graph")) {
Liam Girdwood8a978232015-05-29 19:06:14 +01001212
1213 dev_err(tplg->dev, "ASoC: invalid count %d for DAPM routes\n",
1214 count);
1215 return -EINVAL;
1216 }
1217
Liam Girdwoodb75a6512017-06-29 14:22:26 +01001218 dev_dbg(tplg->dev, "ASoC: adding %d DAPM routes for index %d\n", count,
1219 hdr->index);
Liam Girdwood8a978232015-05-29 19:06:14 +01001220
Ranjani Sridharan7df04ea2019-01-25 14:06:47 -06001221 /* allocate memory for pointer to array of dapm routes */
1222 routes = kcalloc(count, sizeof(struct snd_soc_dapm_route *),
1223 GFP_KERNEL);
1224 if (!routes)
1225 return -ENOMEM;
1226
1227 /*
1228 * allocate memory for each dapm route in the array.
1229 * This needs to be done individually so that
1230 * each route can be freed when it is removed in remove_route().
1231 */
1232 for (i = 0; i < count; i++) {
1233 routes[i] = kzalloc(sizeof(*routes[i]), GFP_KERNEL);
1234 if (!routes[i]) {
1235 /* free previously allocated memory */
1236 for (j = 0; j < i; j++)
1237 kfree(routes[j]);
1238
1239 kfree(routes);
1240 return -ENOMEM;
1241 }
1242 }
1243
Liam Girdwood8a978232015-05-29 19:06:14 +01001244 for (i = 0; i < count; i++) {
1245 elem = (struct snd_soc_tplg_dapm_graph_elem *)tplg->pos;
1246 tplg->pos += sizeof(struct snd_soc_tplg_dapm_graph_elem);
1247
1248 /* validate routes */
1249 if (strnlen(elem->source, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
Ranjani Sridharan7df04ea2019-01-25 14:06:47 -06001250 SNDRV_CTL_ELEM_ID_NAME_MAXLEN) {
1251 ret = -EINVAL;
1252 break;
1253 }
Liam Girdwood8a978232015-05-29 19:06:14 +01001254 if (strnlen(elem->sink, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
Ranjani Sridharan7df04ea2019-01-25 14:06:47 -06001255 SNDRV_CTL_ELEM_ID_NAME_MAXLEN) {
1256 ret = -EINVAL;
1257 break;
1258 }
Liam Girdwood8a978232015-05-29 19:06:14 +01001259 if (strnlen(elem->control, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
Ranjani Sridharan7df04ea2019-01-25 14:06:47 -06001260 SNDRV_CTL_ELEM_ID_NAME_MAXLEN) {
1261 ret = -EINVAL;
1262 break;
1263 }
Liam Girdwood8a978232015-05-29 19:06:14 +01001264
Ranjani Sridharan7df04ea2019-01-25 14:06:47 -06001265 routes[i]->source = elem->source;
1266 routes[i]->sink = elem->sink;
1267
1268 /* set to NULL atm for tplg users */
1269 routes[i]->connected = NULL;
Liam Girdwood8a978232015-05-29 19:06:14 +01001270 if (strnlen(elem->control, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) == 0)
Ranjani Sridharan7df04ea2019-01-25 14:06:47 -06001271 routes[i]->control = NULL;
Liam Girdwood8a978232015-05-29 19:06:14 +01001272 else
Ranjani Sridharan7df04ea2019-01-25 14:06:47 -06001273 routes[i]->control = elem->control;
Liam Girdwood8a978232015-05-29 19:06:14 +01001274
Ranjani Sridharan7df04ea2019-01-25 14:06:47 -06001275 /* add route dobj to dobj_list */
1276 routes[i]->dobj.type = SND_SOC_DOBJ_GRAPH;
1277 routes[i]->dobj.ops = tplg->ops;
1278 routes[i]->dobj.index = tplg->index;
1279 list_add(&routes[i]->dobj.list, &tplg->comp->dobj_list);
1280
1281 soc_tplg_add_route(tplg, routes[i]);
Liam Girdwood503e79b2018-06-14 20:53:59 +01001282
Liam Girdwood8a978232015-05-29 19:06:14 +01001283 /* add route, but keep going if some fail */
Ranjani Sridharan7df04ea2019-01-25 14:06:47 -06001284 snd_soc_dapm_add_routes(dapm, routes[i], 1);
Liam Girdwood8a978232015-05-29 19:06:14 +01001285 }
1286
Ranjani Sridharan7df04ea2019-01-25 14:06:47 -06001287 /* free memory allocated for all dapm routes in case of error */
1288 if (ret < 0)
1289 for (i = 0; i < count ; i++)
1290 kfree(routes[i]);
1291
1292 /*
1293 * free pointer to array of dapm routes as this is no longer needed.
1294 * The memory allocated for each dapm route will be freed
1295 * when it is removed in remove_route().
1296 */
1297 kfree(routes);
1298
1299 return ret;
Liam Girdwood8a978232015-05-29 19:06:14 +01001300}
1301
1302static struct snd_kcontrol_new *soc_tplg_dapm_widget_dmixer_create(
1303 struct soc_tplg *tplg, int num_kcontrols)
1304{
1305 struct snd_kcontrol_new *kc;
1306 struct soc_mixer_control *sm;
1307 struct snd_soc_tplg_mixer_control *mc;
1308 int i, err;
1309
Axel Lin4ca7deb2015-08-05 22:34:22 +08001310 kc = kcalloc(num_kcontrols, sizeof(*kc), GFP_KERNEL);
Liam Girdwood8a978232015-05-29 19:06:14 +01001311 if (kc == NULL)
1312 return NULL;
1313
1314 for (i = 0; i < num_kcontrols; i++) {
1315 mc = (struct snd_soc_tplg_mixer_control *)tplg->pos;
Liam Girdwood8a978232015-05-29 19:06:14 +01001316
Liam Girdwood8a978232015-05-29 19:06:14 +01001317 /* validate kcontrol */
1318 if (strnlen(mc->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1319 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
Amadeusz Sławiński9f90af32019-06-17 13:36:44 +02001320 goto err_sm;
1321
1322 sm = kzalloc(sizeof(*sm), GFP_KERNEL);
1323 if (sm == NULL)
1324 goto err_sm;
Liam Girdwood8a978232015-05-29 19:06:14 +01001325
Liam Girdwood02b64242019-03-01 19:08:52 -06001326 tplg->pos += (sizeof(struct snd_soc_tplg_mixer_control) +
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001327 le32_to_cpu(mc->priv.size));
Liam Girdwood02b64242019-03-01 19:08:52 -06001328
Liam Girdwood8a978232015-05-29 19:06:14 +01001329 dev_dbg(tplg->dev, " adding DAPM widget mixer control %s at %d\n",
1330 mc->hdr.name, i);
1331
Colin Ian King1ad741d2019-06-27 14:32:08 +01001332 kc[i].private_value = (long)sm;
Liam Girdwood267e2c62018-03-27 12:04:04 +01001333 kc[i].name = kstrdup(mc->hdr.name, GFP_KERNEL);
1334 if (kc[i].name == NULL)
Amadeusz Sławiński9f90af32019-06-17 13:36:44 +02001335 goto err_sm;
Liam Girdwood8a978232015-05-29 19:06:14 +01001336 kc[i].iface = SNDRV_CTL_ELEM_IFACE_MIXER;
Pierre-Louis Bossart72bbeda2020-01-02 13:59:52 -06001337 kc[i].access = le32_to_cpu(mc->hdr.access);
Liam Girdwood8a978232015-05-29 19:06:14 +01001338
1339 /* we only support FL/FR channel mapping atm */
1340 sm->reg = tplc_chan_get_reg(tplg, mc->channel,
1341 SNDRV_CHMAP_FL);
1342 sm->rreg = tplc_chan_get_reg(tplg, mc->channel,
1343 SNDRV_CHMAP_FR);
1344 sm->shift = tplc_chan_get_shift(tplg, mc->channel,
1345 SNDRV_CHMAP_FL);
1346 sm->rshift = tplc_chan_get_shift(tplg, mc->channel,
1347 SNDRV_CHMAP_FR);
1348
Pierre-Louis Bossart72bbeda2020-01-02 13:59:52 -06001349 sm->max = le32_to_cpu(mc->max);
1350 sm->min = le32_to_cpu(mc->min);
1351 sm->invert = le32_to_cpu(mc->invert);
1352 sm->platform_max = le32_to_cpu(mc->platform_max);
Liam Girdwood8a978232015-05-29 19:06:14 +01001353 sm->dobj.index = tplg->index;
1354 INIT_LIST_HEAD(&sm->dobj.list);
1355
1356 /* map io handlers */
Mengdong Lin2b5cdb92015-08-18 18:12:01 +08001357 err = soc_tplg_kcontrol_bind_io(&mc->hdr, &kc[i], tplg);
Liam Girdwood8a978232015-05-29 19:06:14 +01001358 if (err) {
1359 soc_control_err(tplg, &mc->hdr, mc->hdr.name);
Amadeusz Sławiński9f90af32019-06-17 13:36:44 +02001360 goto err_sm;
Liam Girdwood8a978232015-05-29 19:06:14 +01001361 }
1362
Bard liao3789deb2019-03-13 21:49:43 +08001363 /* create any TLV data */
Amadeusz Sławiński482db552020-03-27 16:47:25 -04001364 err = soc_tplg_create_tlv(tplg, &kc[i], &mc->hdr);
1365 if (err < 0) {
1366 dev_err(tplg->dev, "ASoC: failed to create TLV %s\n",
1367 mc->hdr.name);
1368 kfree(sm);
1369 continue;
1370 }
Bard liao3789deb2019-03-13 21:49:43 +08001371
Liam Girdwood8a978232015-05-29 19:06:14 +01001372 /* pass control to driver for optional further init */
1373 err = soc_tplg_init_kcontrol(tplg, &kc[i],
1374 (struct snd_soc_tplg_ctl_hdr *)mc);
1375 if (err < 0) {
1376 dev_err(tplg->dev, "ASoC: failed to init %s\n",
1377 mc->hdr.name);
Bard liao3789deb2019-03-13 21:49:43 +08001378 soc_tplg_free_tlv(tplg, &kc[i]);
Amadeusz Sławiński9f90af32019-06-17 13:36:44 +02001379 goto err_sm;
Liam Girdwood8a978232015-05-29 19:06:14 +01001380 }
1381 }
1382 return kc;
1383
Amadeusz Sławiński9f90af32019-06-17 13:36:44 +02001384err_sm:
1385 for (; i >= 0; i--) {
1386 sm = (struct soc_mixer_control *)kc[i].private_value;
1387 kfree(sm);
Liam Girdwood267e2c62018-03-27 12:04:04 +01001388 kfree(kc[i].name);
1389 }
Liam Girdwood8a978232015-05-29 19:06:14 +01001390 kfree(kc);
Amadeusz Sławiński9f90af32019-06-17 13:36:44 +02001391
Liam Girdwood8a978232015-05-29 19:06:14 +01001392 return NULL;
1393}
1394
1395static struct snd_kcontrol_new *soc_tplg_dapm_widget_denum_create(
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001396 struct soc_tplg *tplg, int num_kcontrols)
Liam Girdwood8a978232015-05-29 19:06:14 +01001397{
1398 struct snd_kcontrol_new *kc;
1399 struct snd_soc_tplg_enum_control *ec;
1400 struct soc_enum *se;
Amadeusz Sławiński3cde8182019-06-17 13:36:43 +02001401 int i, err;
Liam Girdwood8a978232015-05-29 19:06:14 +01001402
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001403 kc = kcalloc(num_kcontrols, sizeof(*kc), GFP_KERNEL);
Liam Girdwood8a978232015-05-29 19:06:14 +01001404 if (kc == NULL)
1405 return NULL;
1406
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001407 for (i = 0; i < num_kcontrols; i++) {
1408 ec = (struct snd_soc_tplg_enum_control *)tplg->pos;
1409 /* validate kcontrol */
1410 if (strnlen(ec->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1411 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
Amadeusz Sławiński9f90af32019-06-17 13:36:44 +02001412 goto err_se;
Liam Girdwood8a978232015-05-29 19:06:14 +01001413
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001414 se = kzalloc(sizeof(*se), GFP_KERNEL);
1415 if (se == NULL)
Amadeusz Sławiński9f90af32019-06-17 13:36:44 +02001416 goto err_se;
Liam Girdwood8a978232015-05-29 19:06:14 +01001417
Liam Girdwood02b64242019-03-01 19:08:52 -06001418 tplg->pos += (sizeof(struct snd_soc_tplg_enum_control) +
Pierre-Louis Bossart72bbeda2020-01-02 13:59:52 -06001419 le32_to_cpu(ec->priv.size));
Liam Girdwood02b64242019-03-01 19:08:52 -06001420
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001421 dev_dbg(tplg->dev, " adding DAPM widget enum control %s\n",
Liam Girdwood8a978232015-05-29 19:06:14 +01001422 ec->hdr.name);
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001423
Colin Ian King1ad741d2019-06-27 14:32:08 +01001424 kc[i].private_value = (long)se;
Liam Girdwood267e2c62018-03-27 12:04:04 +01001425 kc[i].name = kstrdup(ec->hdr.name, GFP_KERNEL);
Amadeusz Sławiński9f90af32019-06-17 13:36:44 +02001426 if (kc[i].name == NULL)
Liam Girdwood267e2c62018-03-27 12:04:04 +01001427 goto err_se;
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001428 kc[i].iface = SNDRV_CTL_ELEM_IFACE_MIXER;
Pierre-Louis Bossart72bbeda2020-01-02 13:59:52 -06001429 kc[i].access = le32_to_cpu(ec->hdr.access);
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001430
1431 /* we only support FL/FR channel mapping atm */
1432 se->reg = tplc_chan_get_reg(tplg, ec->channel, SNDRV_CHMAP_FL);
1433 se->shift_l = tplc_chan_get_shift(tplg, ec->channel,
1434 SNDRV_CHMAP_FL);
1435 se->shift_r = tplc_chan_get_shift(tplg, ec->channel,
1436 SNDRV_CHMAP_FR);
1437
Pierre-Louis Bossart72bbeda2020-01-02 13:59:52 -06001438 se->items = le32_to_cpu(ec->items);
1439 se->mask = le32_to_cpu(ec->mask);
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001440 se->dobj.index = tplg->index;
1441
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001442 switch (le32_to_cpu(ec->hdr.ops.info)) {
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001443 case SND_SOC_TPLG_CTL_ENUM_VALUE:
1444 case SND_SOC_TPLG_DAPM_CTL_ENUM_VALUE:
1445 err = soc_tplg_denum_create_values(se, ec);
1446 if (err < 0) {
1447 dev_err(tplg->dev, "ASoC: could not create values for %s\n",
1448 ec->hdr.name);
1449 goto err_se;
1450 }
Takashi Iwai9c6c4d92018-10-04 20:30:06 +02001451 /* fall through */
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001452 case SND_SOC_TPLG_CTL_ENUM:
1453 case SND_SOC_TPLG_DAPM_CTL_ENUM_DOUBLE:
1454 case SND_SOC_TPLG_DAPM_CTL_ENUM_VIRT:
1455 err = soc_tplg_denum_create_texts(se, ec);
1456 if (err < 0) {
1457 dev_err(tplg->dev, "ASoC: could not create texts for %s\n",
1458 ec->hdr.name);
1459 goto err_se;
1460 }
1461 break;
1462 default:
1463 dev_err(tplg->dev, "ASoC: invalid enum control type %d for %s\n",
1464 ec->hdr.ops.info, ec->hdr.name);
1465 goto err_se;
1466 }
1467
1468 /* map io handlers */
1469 err = soc_tplg_kcontrol_bind_io(&ec->hdr, &kc[i], tplg);
1470 if (err) {
1471 soc_control_err(tplg, &ec->hdr, ec->hdr.name);
1472 goto err_se;
1473 }
1474
1475 /* pass control to driver for optional further init */
1476 err = soc_tplg_init_kcontrol(tplg, &kc[i],
1477 (struct snd_soc_tplg_ctl_hdr *)ec);
1478 if (err < 0) {
1479 dev_err(tplg->dev, "ASoC: failed to init %s\n",
1480 ec->hdr.name);
1481 goto err_se;
1482 }
Liam Girdwood8a978232015-05-29 19:06:14 +01001483 }
1484
1485 return kc;
1486
1487err_se:
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001488 for (; i >= 0; i--) {
1489 /* free values and texts */
1490 se = (struct soc_enum *)kc[i].private_value;
Christophe JAILLET6d5574e2017-09-14 22:44:12 +02001491
Amadeusz Sławiński9f90af32019-06-17 13:36:44 +02001492 if (se) {
1493 soc_tplg_denum_remove_values(se);
1494 soc_tplg_denum_remove_texts(se);
1495 }
Liam Girdwood8a978232015-05-29 19:06:14 +01001496
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001497 kfree(se);
Liam Girdwood267e2c62018-03-27 12:04:04 +01001498 kfree(kc[i].name);
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001499 }
Liam Girdwood8a978232015-05-29 19:06:14 +01001500 kfree(kc);
1501
1502 return NULL;
1503}
1504
1505static struct snd_kcontrol_new *soc_tplg_dapm_widget_dbytes_create(
Amadeusz Sławiński9f90af32019-06-17 13:36:44 +02001506 struct soc_tplg *tplg, int num_kcontrols)
Liam Girdwood8a978232015-05-29 19:06:14 +01001507{
1508 struct snd_soc_tplg_bytes_control *be;
Amadeusz Sławiński9f90af32019-06-17 13:36:44 +02001509 struct soc_bytes_ext *sbe;
Liam Girdwood8a978232015-05-29 19:06:14 +01001510 struct snd_kcontrol_new *kc;
1511 int i, err;
1512
Amadeusz Sławiński9f90af32019-06-17 13:36:44 +02001513 kc = kcalloc(num_kcontrols, sizeof(*kc), GFP_KERNEL);
Liam Girdwood8a978232015-05-29 19:06:14 +01001514 if (!kc)
1515 return NULL;
1516
Amadeusz Sławiński9f90af32019-06-17 13:36:44 +02001517 for (i = 0; i < num_kcontrols; i++) {
Liam Girdwood8a978232015-05-29 19:06:14 +01001518 be = (struct snd_soc_tplg_bytes_control *)tplg->pos;
1519
1520 /* validate kcontrol */
1521 if (strnlen(be->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1522 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
Amadeusz Sławiński9f90af32019-06-17 13:36:44 +02001523 goto err_sbe;
Liam Girdwood8a978232015-05-29 19:06:14 +01001524
1525 sbe = kzalloc(sizeof(*sbe), GFP_KERNEL);
1526 if (sbe == NULL)
Amadeusz Sławiński9f90af32019-06-17 13:36:44 +02001527 goto err_sbe;
Liam Girdwood8a978232015-05-29 19:06:14 +01001528
1529 tplg->pos += (sizeof(struct snd_soc_tplg_bytes_control) +
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001530 le32_to_cpu(be->priv.size));
Liam Girdwood8a978232015-05-29 19:06:14 +01001531
1532 dev_dbg(tplg->dev,
1533 "ASoC: adding bytes kcontrol %s with access 0x%x\n",
1534 be->hdr.name, be->hdr.access);
1535
Colin Ian King1ad741d2019-06-27 14:32:08 +01001536 kc[i].private_value = (long)sbe;
Liam Girdwood267e2c62018-03-27 12:04:04 +01001537 kc[i].name = kstrdup(be->hdr.name, GFP_KERNEL);
Amadeusz Sławiński9f90af32019-06-17 13:36:44 +02001538 if (kc[i].name == NULL)
1539 goto err_sbe;
Liam Girdwood8a978232015-05-29 19:06:14 +01001540 kc[i].iface = SNDRV_CTL_ELEM_IFACE_MIXER;
Pierre-Louis Bossart72bbeda2020-01-02 13:59:52 -06001541 kc[i].access = le32_to_cpu(be->hdr.access);
Liam Girdwood8a978232015-05-29 19:06:14 +01001542
Pierre-Louis Bossart72bbeda2020-01-02 13:59:52 -06001543 sbe->max = le32_to_cpu(be->max);
Liam Girdwood8a978232015-05-29 19:06:14 +01001544 INIT_LIST_HEAD(&sbe->dobj.list);
1545
1546 /* map standard io handlers and check for external handlers */
Mengdong Lin2b5cdb92015-08-18 18:12:01 +08001547 err = soc_tplg_kcontrol_bind_io(&be->hdr, &kc[i], tplg);
Liam Girdwood8a978232015-05-29 19:06:14 +01001548 if (err) {
1549 soc_control_err(tplg, &be->hdr, be->hdr.name);
Amadeusz Sławiński9f90af32019-06-17 13:36:44 +02001550 goto err_sbe;
Liam Girdwood8a978232015-05-29 19:06:14 +01001551 }
1552
1553 /* pass control to driver for optional further init */
1554 err = soc_tplg_init_kcontrol(tplg, &kc[i],
1555 (struct snd_soc_tplg_ctl_hdr *)be);
1556 if (err < 0) {
1557 dev_err(tplg->dev, "ASoC: failed to init %s\n",
1558 be->hdr.name);
Amadeusz Sławiński9f90af32019-06-17 13:36:44 +02001559 goto err_sbe;
Liam Girdwood8a978232015-05-29 19:06:14 +01001560 }
1561 }
1562
1563 return kc;
1564
Amadeusz Sławiński9f90af32019-06-17 13:36:44 +02001565err_sbe:
1566 for (; i >= 0; i--) {
1567 sbe = (struct soc_bytes_ext *)kc[i].private_value;
1568 kfree(sbe);
Liam Girdwood267e2c62018-03-27 12:04:04 +01001569 kfree(kc[i].name);
1570 }
Liam Girdwood8a978232015-05-29 19:06:14 +01001571 kfree(kc);
Amadeusz Sławiński9f90af32019-06-17 13:36:44 +02001572
Liam Girdwood8a978232015-05-29 19:06:14 +01001573 return NULL;
1574}
1575
1576static int soc_tplg_dapm_widget_create(struct soc_tplg *tplg,
1577 struct snd_soc_tplg_dapm_widget *w)
1578{
1579 struct snd_soc_dapm_context *dapm = &tplg->comp->dapm;
1580 struct snd_soc_dapm_widget template, *widget;
1581 struct snd_soc_tplg_ctl_hdr *control_hdr;
1582 struct snd_soc_card *card = tplg->comp->card;
Mengdong Lineea3dd42016-11-25 16:09:17 +08001583 unsigned int kcontrol_type;
Liam Girdwood8a978232015-05-29 19:06:14 +01001584 int ret = 0;
1585
1586 if (strnlen(w->name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1587 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
1588 return -EINVAL;
1589 if (strnlen(w->sname, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1590 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
1591 return -EINVAL;
1592
1593 dev_dbg(tplg->dev, "ASoC: creating DAPM widget %s id %d\n",
1594 w->name, w->id);
1595
1596 memset(&template, 0, sizeof(template));
1597
1598 /* map user to kernel widget ID */
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001599 template.id = get_widget_id(le32_to_cpu(w->id));
Dan Carpenter752c9382019-09-25 14:06:24 +03001600 if ((int)template.id < 0)
Liam Girdwood8a978232015-05-29 19:06:14 +01001601 return template.id;
1602
Liam Girdwoodc3421a62017-06-06 15:45:09 +01001603 /* strings are allocated here, but used and freed by the widget */
Liam Girdwood8a978232015-05-29 19:06:14 +01001604 template.name = kstrdup(w->name, GFP_KERNEL);
1605 if (!template.name)
1606 return -ENOMEM;
1607 template.sname = kstrdup(w->sname, GFP_KERNEL);
1608 if (!template.sname) {
1609 ret = -ENOMEM;
1610 goto err;
1611 }
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001612 template.reg = le32_to_cpu(w->reg);
1613 template.shift = le32_to_cpu(w->shift);
1614 template.mask = le32_to_cpu(w->mask);
1615 template.subseq = le32_to_cpu(w->subseq);
Liam Girdwood8a978232015-05-29 19:06:14 +01001616 template.on_val = w->invert ? 0 : 1;
1617 template.off_val = w->invert ? 1 : 0;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001618 template.ignore_suspend = le32_to_cpu(w->ignore_suspend);
1619 template.event_flags = le16_to_cpu(w->event_flags);
Liam Girdwood8a978232015-05-29 19:06:14 +01001620 template.dobj.index = tplg->index;
1621
1622 tplg->pos +=
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001623 (sizeof(struct snd_soc_tplg_dapm_widget) +
1624 le32_to_cpu(w->priv.size));
1625
Liam Girdwood8a978232015-05-29 19:06:14 +01001626 if (w->num_kcontrols == 0) {
Arnd Bergmanndd5abb72016-12-09 12:51:46 +01001627 kcontrol_type = 0;
Liam Girdwood8a978232015-05-29 19:06:14 +01001628 template.num_kcontrols = 0;
1629 goto widget;
1630 }
1631
1632 control_hdr = (struct snd_soc_tplg_ctl_hdr *)tplg->pos;
1633 dev_dbg(tplg->dev, "ASoC: template %s has %d controls of type %x\n",
1634 w->name, w->num_kcontrols, control_hdr->type);
1635
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001636 switch (le32_to_cpu(control_hdr->ops.info)) {
Liam Girdwood8a978232015-05-29 19:06:14 +01001637 case SND_SOC_TPLG_CTL_VOLSW:
1638 case SND_SOC_TPLG_CTL_STROBE:
1639 case SND_SOC_TPLG_CTL_VOLSW_SX:
1640 case SND_SOC_TPLG_CTL_VOLSW_XR_SX:
1641 case SND_SOC_TPLG_CTL_RANGE:
1642 case SND_SOC_TPLG_DAPM_CTL_VOLSW:
Mengdong Lineea3dd42016-11-25 16:09:17 +08001643 kcontrol_type = SND_SOC_TPLG_TYPE_MIXER; /* volume mixer */
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001644 template.num_kcontrols = le32_to_cpu(w->num_kcontrols);
Liam Girdwood8a978232015-05-29 19:06:14 +01001645 template.kcontrol_news =
1646 soc_tplg_dapm_widget_dmixer_create(tplg,
1647 template.num_kcontrols);
1648 if (!template.kcontrol_news) {
1649 ret = -ENOMEM;
1650 goto hdr_err;
1651 }
1652 break;
1653 case SND_SOC_TPLG_CTL_ENUM:
1654 case SND_SOC_TPLG_CTL_ENUM_VALUE:
1655 case SND_SOC_TPLG_DAPM_CTL_ENUM_DOUBLE:
1656 case SND_SOC_TPLG_DAPM_CTL_ENUM_VIRT:
1657 case SND_SOC_TPLG_DAPM_CTL_ENUM_VALUE:
Mengdong Lineea3dd42016-11-25 16:09:17 +08001658 kcontrol_type = SND_SOC_TPLG_TYPE_ENUM; /* enumerated mixer */
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001659 template.num_kcontrols = le32_to_cpu(w->num_kcontrols);
Liam Girdwood8a978232015-05-29 19:06:14 +01001660 template.kcontrol_news =
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001661 soc_tplg_dapm_widget_denum_create(tplg,
1662 template.num_kcontrols);
Liam Girdwood8a978232015-05-29 19:06:14 +01001663 if (!template.kcontrol_news) {
1664 ret = -ENOMEM;
1665 goto hdr_err;
1666 }
1667 break;
1668 case SND_SOC_TPLG_CTL_BYTES:
Mengdong Lineea3dd42016-11-25 16:09:17 +08001669 kcontrol_type = SND_SOC_TPLG_TYPE_BYTES; /* bytes control */
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001670 template.num_kcontrols = le32_to_cpu(w->num_kcontrols);
Liam Girdwood8a978232015-05-29 19:06:14 +01001671 template.kcontrol_news =
1672 soc_tplg_dapm_widget_dbytes_create(tplg,
1673 template.num_kcontrols);
1674 if (!template.kcontrol_news) {
1675 ret = -ENOMEM;
1676 goto hdr_err;
1677 }
1678 break;
1679 default:
1680 dev_err(tplg->dev, "ASoC: invalid widget control type %d:%d:%d\n",
1681 control_hdr->ops.get, control_hdr->ops.put,
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001682 le32_to_cpu(control_hdr->ops.info));
Liam Girdwood8a978232015-05-29 19:06:14 +01001683 ret = -EINVAL;
1684 goto hdr_err;
1685 }
1686
1687widget:
1688 ret = soc_tplg_widget_load(tplg, &template, w);
1689 if (ret < 0)
1690 goto hdr_err;
1691
1692 /* card dapm mutex is held by the core if we are loading topology
1693 * data during sound card init. */
1694 if (card->instantiated)
1695 widget = snd_soc_dapm_new_control(dapm, &template);
1696 else
1697 widget = snd_soc_dapm_new_control_unlocked(dapm, &template);
Linus Walleij37e1df82017-01-13 10:23:52 +01001698 if (IS_ERR(widget)) {
1699 ret = PTR_ERR(widget);
Liam Girdwood8a978232015-05-29 19:06:14 +01001700 goto hdr_err;
1701 }
1702
1703 widget->dobj.type = SND_SOC_DOBJ_WIDGET;
Mengdong Lineea3dd42016-11-25 16:09:17 +08001704 widget->dobj.widget.kcontrol_type = kcontrol_type;
Liam Girdwood8a978232015-05-29 19:06:14 +01001705 widget->dobj.ops = tplg->ops;
1706 widget->dobj.index = tplg->index;
1707 list_add(&widget->dobj.list, &tplg->comp->dobj_list);
Liam Girdwoodebd259d2017-06-09 15:43:23 +01001708
1709 ret = soc_tplg_widget_ready(tplg, widget, w);
1710 if (ret < 0)
1711 goto ready_err;
1712
Bard liao7620fe92019-01-25 14:06:45 -06001713 kfree(template.sname);
1714 kfree(template.name);
1715
Liam Girdwood8a978232015-05-29 19:06:14 +01001716 return 0;
1717
Liam Girdwoodebd259d2017-06-09 15:43:23 +01001718ready_err:
1719 snd_soc_tplg_widget_remove(widget);
1720 snd_soc_dapm_free_widget(widget);
Liam Girdwood8a978232015-05-29 19:06:14 +01001721hdr_err:
1722 kfree(template.sname);
1723err:
1724 kfree(template.name);
1725 return ret;
1726}
1727
1728static int soc_tplg_dapm_widget_elems_load(struct soc_tplg *tplg,
1729 struct snd_soc_tplg_hdr *hdr)
1730{
1731 struct snd_soc_tplg_dapm_widget *widget;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001732 int ret, count, i;
1733
1734 count = le32_to_cpu(hdr->count);
Liam Girdwood8a978232015-05-29 19:06:14 +01001735
1736 if (tplg->pass != SOC_TPLG_PASS_WIDGET)
1737 return 0;
1738
1739 dev_dbg(tplg->dev, "ASoC: adding %d DAPM widgets\n", count);
1740
1741 for (i = 0; i < count; i++) {
1742 widget = (struct snd_soc_tplg_dapm_widget *) tplg->pos;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001743 if (le32_to_cpu(widget->size) != sizeof(*widget)) {
Mengdong Lin06eb49f2016-04-27 14:52:56 +08001744 dev_err(tplg->dev, "ASoC: invalid widget size\n");
1745 return -EINVAL;
1746 }
1747
Liam Girdwood8a978232015-05-29 19:06:14 +01001748 ret = soc_tplg_dapm_widget_create(tplg, widget);
Mengdong Lin7de76b62016-04-27 14:52:38 +08001749 if (ret < 0) {
Liam Girdwood8a978232015-05-29 19:06:14 +01001750 dev_err(tplg->dev, "ASoC: failed to load widget %s\n",
1751 widget->name);
Mengdong Lin7de76b62016-04-27 14:52:38 +08001752 return ret;
1753 }
Liam Girdwood8a978232015-05-29 19:06:14 +01001754 }
1755
1756 return 0;
1757}
1758
1759static int soc_tplg_dapm_complete(struct soc_tplg *tplg)
1760{
1761 struct snd_soc_card *card = tplg->comp->card;
1762 int ret;
1763
1764 /* Card might not have been registered at this point.
1765 * If so, just return success.
1766 */
1767 if (!card || !card->instantiated) {
1768 dev_warn(tplg->dev, "ASoC: Parent card not yet available,"
Liam Girdwoodcc9d4712017-06-06 15:45:08 +01001769 " widget card binding deferred\n");
Liam Girdwood8a978232015-05-29 19:06:14 +01001770 return 0;
1771 }
1772
1773 ret = snd_soc_dapm_new_widgets(card);
1774 if (ret < 0)
1775 dev_err(tplg->dev, "ASoC: failed to create new widgets %d\n",
1776 ret);
1777
1778 return 0;
1779}
1780
Amadeusz Sławińskiabc3caa2020-03-27 16:47:24 -04001781static int set_stream_info(struct snd_soc_pcm_stream *stream,
Mengdong Linb6b6e4d2016-02-22 16:29:19 +08001782 struct snd_soc_tplg_stream_caps *caps)
1783{
1784 stream->stream_name = kstrdup(caps->name, GFP_KERNEL);
Amadeusz Sławińskiabc3caa2020-03-27 16:47:24 -04001785 if (!stream->stream_name)
1786 return -ENOMEM;
1787
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001788 stream->channels_min = le32_to_cpu(caps->channels_min);
1789 stream->channels_max = le32_to_cpu(caps->channels_max);
1790 stream->rates = le32_to_cpu(caps->rates);
1791 stream->rate_min = le32_to_cpu(caps->rate_min);
1792 stream->rate_max = le32_to_cpu(caps->rate_max);
1793 stream->formats = le64_to_cpu(caps->formats);
1794 stream->sig_bits = le32_to_cpu(caps->sig_bits);
Amadeusz Sławińskiabc3caa2020-03-27 16:47:24 -04001795
1796 return 0;
Mengdong Linb6b6e4d2016-02-22 16:29:19 +08001797}
1798
Mengdong Lin0038be92016-07-26 14:32:37 +08001799static void set_dai_flags(struct snd_soc_dai_driver *dai_drv,
1800 unsigned int flag_mask, unsigned int flags)
1801{
1802 if (flag_mask & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_RATES)
1803 dai_drv->symmetric_rates =
1804 flags & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_RATES ? 1 : 0;
1805
1806 if (flag_mask & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_CHANNELS)
1807 dai_drv->symmetric_channels =
1808 flags & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_CHANNELS ?
1809 1 : 0;
1810
1811 if (flag_mask & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_SAMPLEBITS)
1812 dai_drv->symmetric_samplebits =
1813 flags & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_SAMPLEBITS ?
1814 1 : 0;
1815}
1816
Mengdong Lin64527e82016-01-15 16:13:28 +08001817static int soc_tplg_dai_create(struct soc_tplg *tplg,
1818 struct snd_soc_tplg_pcm *pcm)
1819{
1820 struct snd_soc_dai_driver *dai_drv;
1821 struct snd_soc_pcm_stream *stream;
1822 struct snd_soc_tplg_stream_caps *caps;
Kuninori Morimotoe443c202019-11-05 15:47:14 +09001823 struct snd_soc_dai *dai;
1824 struct snd_soc_dapm_context *dapm =
1825 snd_soc_component_get_dapm(tplg->comp);
Mengdong Lin64527e82016-01-15 16:13:28 +08001826 int ret;
1827
1828 dai_drv = kzalloc(sizeof(struct snd_soc_dai_driver), GFP_KERNEL);
1829 if (dai_drv == NULL)
1830 return -ENOMEM;
1831
Amadeusz Sławińskiabc3caa2020-03-27 16:47:24 -04001832 if (strlen(pcm->dai_name)) {
Mengdong Lin8f27c4a2016-11-03 01:02:59 +08001833 dai_drv->name = kstrdup(pcm->dai_name, GFP_KERNEL);
Amadeusz Sławińskiabc3caa2020-03-27 16:47:24 -04001834 if (!dai_drv->name) {
1835 ret = -ENOMEM;
1836 goto err;
1837 }
1838 }
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001839 dai_drv->id = le32_to_cpu(pcm->dai_id);
Mengdong Lin64527e82016-01-15 16:13:28 +08001840
1841 if (pcm->playback) {
1842 stream = &dai_drv->playback;
1843 caps = &pcm->caps[SND_SOC_TPLG_STREAM_PLAYBACK];
Amadeusz Sławińskiabc3caa2020-03-27 16:47:24 -04001844 ret = set_stream_info(stream, caps);
1845 if (ret < 0)
1846 goto err;
Mengdong Lin64527e82016-01-15 16:13:28 +08001847 }
1848
1849 if (pcm->capture) {
1850 stream = &dai_drv->capture;
1851 caps = &pcm->caps[SND_SOC_TPLG_STREAM_CAPTURE];
Amadeusz Sławińskiabc3caa2020-03-27 16:47:24 -04001852 ret = set_stream_info(stream, caps);
1853 if (ret < 0)
1854 goto err;
Mengdong Lin64527e82016-01-15 16:13:28 +08001855 }
1856
Liam Girdwood5db6aab2018-03-27 14:30:45 +01001857 if (pcm->compress)
1858 dai_drv->compress_new = snd_soc_new_compress;
1859
Mengdong Lin64527e82016-01-15 16:13:28 +08001860 /* pass control to component driver for optional further init */
Liam Girdwoodc60b6132018-06-14 20:50:37 +01001861 ret = soc_tplg_dai_load(tplg, dai_drv, pcm, NULL);
Mengdong Lin64527e82016-01-15 16:13:28 +08001862 if (ret < 0) {
1863 dev_err(tplg->comp->dev, "ASoC: DAI loading failed\n");
Amadeusz Sławińskiabc3caa2020-03-27 16:47:24 -04001864 goto err;
Mengdong Lin64527e82016-01-15 16:13:28 +08001865 }
1866
1867 dai_drv->dobj.index = tplg->index;
1868 dai_drv->dobj.ops = tplg->ops;
1869 dai_drv->dobj.type = SND_SOC_DOBJ_PCM;
1870 list_add(&dai_drv->dobj.list, &tplg->comp->dobj_list);
1871
1872 /* register the DAI to the component */
Kuninori Morimotoe443c202019-11-05 15:47:14 +09001873 dai = snd_soc_register_dai(tplg->comp, dai_drv, false);
1874 if (!dai)
1875 return -ENOMEM;
1876
1877 /* Create the DAI widgets here */
1878 ret = snd_soc_dapm_new_dai_widgets(dapm, dai);
1879 if (ret != 0) {
1880 dev_err(dai->dev, "Failed to create DAI widgets %d\n", ret);
1881 snd_soc_unregister_dai(dai);
1882 return ret;
1883 }
1884
Amadeusz Sławińskiabc3caa2020-03-27 16:47:24 -04001885 return 0;
1886
1887err:
1888 kfree(dai_drv->playback.stream_name);
1889 kfree(dai_drv->capture.stream_name);
1890 kfree(dai_drv->name);
1891 kfree(dai_drv);
1892
Kuninori Morimotoe443c202019-11-05 15:47:14 +09001893 return ret;
Mengdong Lin64527e82016-01-15 16:13:28 +08001894}
1895
Mengdong Lin717a8e72016-11-03 01:03:34 +08001896static void set_link_flags(struct snd_soc_dai_link *link,
1897 unsigned int flag_mask, unsigned int flags)
1898{
1899 if (flag_mask & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_RATES)
1900 link->symmetric_rates =
1901 flags & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_RATES ? 1 : 0;
1902
1903 if (flag_mask & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_CHANNELS)
1904 link->symmetric_channels =
1905 flags & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_CHANNELS ?
1906 1 : 0;
1907
1908 if (flag_mask & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_SAMPLEBITS)
1909 link->symmetric_samplebits =
1910 flags & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_SAMPLEBITS ?
1911 1 : 0;
Mengdong Lin6ff67cc2016-11-03 01:05:32 +08001912
1913 if (flag_mask & SND_SOC_TPLG_LNK_FLGBIT_VOICE_WAKEUP)
1914 link->ignore_suspend =
1915 flags & SND_SOC_TPLG_LNK_FLGBIT_VOICE_WAKEUP ?
1916 1 : 0;
Mengdong Lin717a8e72016-11-03 01:03:34 +08001917}
1918
Guneshwor Singh67d1c212016-04-19 13:12:50 +08001919/* create the FE DAI link */
Mengdong Linab4bc5e2016-11-03 01:04:42 +08001920static int soc_tplg_fe_link_create(struct soc_tplg *tplg,
Mengdong Linacfc7d42016-01-15 16:13:37 +08001921 struct snd_soc_tplg_pcm *pcm)
1922{
1923 struct snd_soc_dai_link *link;
Kuninori Morimoto23b946c2019-06-06 13:19:14 +09001924 struct snd_soc_dai_link_component *dlc;
Mengdong Linacfc7d42016-01-15 16:13:37 +08001925 int ret;
1926
Pierre-Louis Bossart3e6de892019-06-12 11:38:45 -05001927 /* link + cpu + codec + platform */
1928 link = kzalloc(sizeof(*link) + (3 * sizeof(*dlc)), GFP_KERNEL);
Mengdong Linacfc7d42016-01-15 16:13:37 +08001929 if (link == NULL)
1930 return -ENOMEM;
1931
Kuninori Morimoto23b946c2019-06-06 13:19:14 +09001932 dlc = (struct snd_soc_dai_link_component *)(link + 1);
1933
1934 link->cpus = &dlc[0];
1935 link->codecs = &dlc[1];
Pierre-Louis Bossart3e6de892019-06-12 11:38:45 -05001936 link->platforms = &dlc[2];
Kuninori Morimoto23b946c2019-06-06 13:19:14 +09001937
1938 link->num_cpus = 1;
1939 link->num_codecs = 1;
Pierre-Louis Bossart3e6de892019-06-12 11:38:45 -05001940 link->num_platforms = 1;
Kuninori Morimoto23b946c2019-06-06 13:19:14 +09001941
Jaroslav Kysela8ce1cbd62020-01-22 20:07:52 +01001942 link->dobj.index = tplg->index;
1943 link->dobj.ops = tplg->ops;
1944 link->dobj.type = SND_SOC_DOBJ_DAI_LINK;
1945
Mengdong Lin8f27c4a2016-11-03 01:02:59 +08001946 if (strlen(pcm->pcm_name)) {
1947 link->name = kstrdup(pcm->pcm_name, GFP_KERNEL);
1948 link->stream_name = kstrdup(pcm->pcm_name, GFP_KERNEL);
Amadeusz Sławińskiabc3caa2020-03-27 16:47:24 -04001949 if (!link->name || !link->stream_name) {
1950 ret = -ENOMEM;
1951 goto err;
1952 }
Mengdong Lin8f27c4a2016-11-03 01:02:59 +08001953 }
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001954 link->id = le32_to_cpu(pcm->pcm_id);
Mengdong Linacfc7d42016-01-15 16:13:37 +08001955
Amadeusz Sławińskiabc3caa2020-03-27 16:47:24 -04001956 if (strlen(pcm->dai_name)) {
Kuninori Morimoto23b946c2019-06-06 13:19:14 +09001957 link->cpus->dai_name = kstrdup(pcm->dai_name, GFP_KERNEL);
Amadeusz Sławińskiabc3caa2020-03-27 16:47:24 -04001958 if (!link->cpus->dai_name) {
1959 ret = -ENOMEM;
1960 goto err;
1961 }
1962 }
Mengdong Lin8f27c4a2016-11-03 01:02:59 +08001963
Kuninori Morimoto23b946c2019-06-06 13:19:14 +09001964 link->codecs->name = "snd-soc-dummy";
1965 link->codecs->dai_name = "snd-soc-dummy-dai";
Guneshwor Singh67d1c212016-04-19 13:12:50 +08001966
Pierre-Louis Bossart3e6de892019-06-12 11:38:45 -05001967 link->platforms->name = "snd-soc-dummy";
1968
Guneshwor Singh67d1c212016-04-19 13:12:50 +08001969 /* enable DPCM */
1970 link->dynamic = 1;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001971 link->dpcm_playback = le32_to_cpu(pcm->playback);
1972 link->dpcm_capture = le32_to_cpu(pcm->capture);
Mengdong Lin717a8e72016-11-03 01:03:34 +08001973 if (pcm->flag_mask)
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001974 set_link_flags(link,
1975 le32_to_cpu(pcm->flag_mask),
1976 le32_to_cpu(pcm->flags));
Guneshwor Singh67d1c212016-04-19 13:12:50 +08001977
Mengdong Linacfc7d42016-01-15 16:13:37 +08001978 /* pass control to component driver for optional further init */
Liam Girdwoodc60b6132018-06-14 20:50:37 +01001979 ret = soc_tplg_dai_link_load(tplg, link, NULL);
Mengdong Linacfc7d42016-01-15 16:13:37 +08001980 if (ret < 0) {
1981 dev_err(tplg->comp->dev, "ASoC: FE link loading failed\n");
Dragos Tarcatu76d27032019-12-09 18:39:38 -06001982 goto err;
1983 }
1984
Mark Brown2acf6ce2019-12-10 13:27:14 +00001985 ret = snd_soc_add_pcm_runtime(tplg->comp->card, link);
Dragos Tarcatu76d27032019-12-09 18:39:38 -06001986 if (ret < 0) {
1987 dev_err(tplg->comp->dev, "ASoC: adding FE link failed\n");
1988 goto err;
Mengdong Linacfc7d42016-01-15 16:13:37 +08001989 }
1990
Mengdong Linacfc7d42016-01-15 16:13:37 +08001991 list_add(&link->dobj.list, &tplg->comp->dobj_list);
1992
Mengdong Linacfc7d42016-01-15 16:13:37 +08001993 return 0;
Dragos Tarcatu76d27032019-12-09 18:39:38 -06001994err:
1995 kfree(link->name);
1996 kfree(link->stream_name);
1997 kfree(link->cpus->dai_name);
1998 kfree(link);
1999 return ret;
Mengdong Linacfc7d42016-01-15 16:13:37 +08002000}
2001
2002/* create a FE DAI and DAI link from the PCM object */
Mengdong Lin64527e82016-01-15 16:13:28 +08002003static int soc_tplg_pcm_create(struct soc_tplg *tplg,
2004 struct snd_soc_tplg_pcm *pcm)
2005{
Mengdong Linacfc7d42016-01-15 16:13:37 +08002006 int ret;
2007
2008 ret = soc_tplg_dai_create(tplg, pcm);
2009 if (ret < 0)
2010 return ret;
2011
Mengdong Linab4bc5e2016-11-03 01:04:42 +08002012 return soc_tplg_fe_link_create(tplg, pcm);
Mengdong Lin64527e82016-01-15 16:13:28 +08002013}
2014
Mengdong Lin55726dc2016-11-03 01:00:16 +08002015/* copy stream caps from the old version 4 of source */
2016static void stream_caps_new_ver(struct snd_soc_tplg_stream_caps *dest,
2017 struct snd_soc_tplg_stream_caps_v4 *src)
2018{
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002019 dest->size = cpu_to_le32(sizeof(*dest));
Mengdong Lin55726dc2016-11-03 01:00:16 +08002020 memcpy(dest->name, src->name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN);
2021 dest->formats = src->formats;
2022 dest->rates = src->rates;
2023 dest->rate_min = src->rate_min;
2024 dest->rate_max = src->rate_max;
2025 dest->channels_min = src->channels_min;
2026 dest->channels_max = src->channels_max;
2027 dest->periods_min = src->periods_min;
2028 dest->periods_max = src->periods_max;
2029 dest->period_size_min = src->period_size_min;
2030 dest->period_size_max = src->period_size_max;
2031 dest->buffer_size_min = src->buffer_size_min;
2032 dest->buffer_size_max = src->buffer_size_max;
2033}
2034
2035/**
2036 * pcm_new_ver - Create the new version of PCM from the old version.
2037 * @tplg: topology context
2038 * @src: older version of pcm as a source
2039 * @pcm: latest version of pcm created from the source
2040 *
2041 * Support from vesion 4. User should free the returned pcm manually.
2042 */
2043static int pcm_new_ver(struct soc_tplg *tplg,
2044 struct snd_soc_tplg_pcm *src,
2045 struct snd_soc_tplg_pcm **pcm)
2046{
2047 struct snd_soc_tplg_pcm *dest;
2048 struct snd_soc_tplg_pcm_v4 *src_v4;
2049 int i;
2050
2051 *pcm = NULL;
2052
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002053 if (le32_to_cpu(src->size) != sizeof(*src_v4)) {
Mengdong Lin55726dc2016-11-03 01:00:16 +08002054 dev_err(tplg->dev, "ASoC: invalid PCM size\n");
2055 return -EINVAL;
2056 }
2057
2058 dev_warn(tplg->dev, "ASoC: old version of PCM\n");
2059 src_v4 = (struct snd_soc_tplg_pcm_v4 *)src;
2060 dest = kzalloc(sizeof(*dest), GFP_KERNEL);
2061 if (!dest)
2062 return -ENOMEM;
2063
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002064 dest->size = cpu_to_le32(sizeof(*dest)); /* size of latest abi version */
Mengdong Lin55726dc2016-11-03 01:00:16 +08002065 memcpy(dest->pcm_name, src_v4->pcm_name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN);
2066 memcpy(dest->dai_name, src_v4->dai_name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN);
2067 dest->pcm_id = src_v4->pcm_id;
2068 dest->dai_id = src_v4->dai_id;
2069 dest->playback = src_v4->playback;
2070 dest->capture = src_v4->capture;
2071 dest->compress = src_v4->compress;
2072 dest->num_streams = src_v4->num_streams;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002073 for (i = 0; i < le32_to_cpu(dest->num_streams); i++)
Mengdong Lin55726dc2016-11-03 01:00:16 +08002074 memcpy(&dest->stream[i], &src_v4->stream[i],
2075 sizeof(struct snd_soc_tplg_stream));
2076
2077 for (i = 0; i < 2; i++)
2078 stream_caps_new_ver(&dest->caps[i], &src_v4->caps[i]);
2079
2080 *pcm = dest;
2081 return 0;
2082}
2083
Mengdong Lin64527e82016-01-15 16:13:28 +08002084static int soc_tplg_pcm_elems_load(struct soc_tplg *tplg,
Liam Girdwood8a978232015-05-29 19:06:14 +01002085 struct snd_soc_tplg_hdr *hdr)
2086{
Mengdong Lin55726dc2016-11-03 01:00:16 +08002087 struct snd_soc_tplg_pcm *pcm, *_pcm;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002088 int count;
2089 int size;
Vinod Koulfd340452016-12-08 23:01:27 +05302090 int i;
Mengdong Lin55726dc2016-11-03 01:00:16 +08002091 bool abi_match;
Dragos Tarcatua3039ae2019-12-09 18:39:39 -06002092 int ret;
Liam Girdwood8a978232015-05-29 19:06:14 +01002093
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002094 count = le32_to_cpu(hdr->count);
2095
Liam Girdwood8a978232015-05-29 19:06:14 +01002096 if (tplg->pass != SOC_TPLG_PASS_PCM_DAI)
2097 return 0;
2098
Mengdong Lin55726dc2016-11-03 01:00:16 +08002099 /* check the element size and count */
2100 pcm = (struct snd_soc_tplg_pcm *)tplg->pos;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002101 size = le32_to_cpu(pcm->size);
2102 if (size > sizeof(struct snd_soc_tplg_pcm)
2103 || size < sizeof(struct snd_soc_tplg_pcm_v4)) {
Mengdong Lin55726dc2016-11-03 01:00:16 +08002104 dev_err(tplg->dev, "ASoC: invalid size %d for PCM elems\n",
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002105 size);
Mengdong Lin55726dc2016-11-03 01:00:16 +08002106 return -EINVAL;
2107 }
2108
Liam Girdwood8a978232015-05-29 19:06:14 +01002109 if (soc_tplg_check_elem_count(tplg,
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002110 size, count,
2111 le32_to_cpu(hdr->payload_size),
2112 "PCM DAI")) {
Liam Girdwood8a978232015-05-29 19:06:14 +01002113 dev_err(tplg->dev, "ASoC: invalid count %d for PCM DAI elems\n",
2114 count);
2115 return -EINVAL;
2116 }
2117
Mengdong Lin64527e82016-01-15 16:13:28 +08002118 for (i = 0; i < count; i++) {
Mengdong Lin55726dc2016-11-03 01:00:16 +08002119 pcm = (struct snd_soc_tplg_pcm *)tplg->pos;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002120 size = le32_to_cpu(pcm->size);
Mengdong Lin55726dc2016-11-03 01:00:16 +08002121
2122 /* check ABI version by size, create a new version of pcm
2123 * if abi not match.
2124 */
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002125 if (size == sizeof(*pcm)) {
Mengdong Lin55726dc2016-11-03 01:00:16 +08002126 abi_match = true;
2127 _pcm = pcm;
2128 } else {
2129 abi_match = false;
Vinod Koulfd340452016-12-08 23:01:27 +05302130 pcm_new_ver(tplg, pcm, &_pcm);
Mengdong Lin06eb49f2016-04-27 14:52:56 +08002131 }
2132
Mengdong Lin55726dc2016-11-03 01:00:16 +08002133 /* create the FE DAIs and DAI links */
Dragos Tarcatua3039ae2019-12-09 18:39:39 -06002134 ret = soc_tplg_pcm_create(tplg, _pcm);
2135 if (ret < 0) {
2136 if (!abi_match)
2137 kfree(_pcm);
2138 return ret;
2139 }
Mengdong Lin55726dc2016-11-03 01:00:16 +08002140
Mengdong Lin717a8e72016-11-03 01:03:34 +08002141 /* offset by version-specific struct size and
2142 * real priv data size
2143 */
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002144 tplg->pos += size + le32_to_cpu(_pcm->priv.size);
Mengdong Lin717a8e72016-11-03 01:03:34 +08002145
Mengdong Lin55726dc2016-11-03 01:00:16 +08002146 if (!abi_match)
2147 kfree(_pcm); /* free the duplicated one */
Mengdong Lin64527e82016-01-15 16:13:28 +08002148 }
2149
Liam Girdwood8a978232015-05-29 19:06:14 +01002150 dev_dbg(tplg->dev, "ASoC: adding %d PCM DAIs\n", count);
Liam Girdwood8a978232015-05-29 19:06:14 +01002151
Liam Girdwood8a978232015-05-29 19:06:14 +01002152 return 0;
Liam Girdwood8a978232015-05-29 19:06:14 +01002153}
2154
Mengdong Lin593d9e52016-11-03 01:04:27 +08002155/**
2156 * set_link_hw_format - Set the HW audio format of the physical DAI link.
Charles Keepax8abab352017-01-12 11:38:15 +00002157 * @link: &snd_soc_dai_link which should be updated
Mengdong Lin593d9e52016-11-03 01:04:27 +08002158 * @cfg: physical link configs.
2159 *
2160 * Topology context contains a list of supported HW formats (configs) and
2161 * a default format ID for the physical link. This function will use this
2162 * default ID to choose the HW format to set the link's DAI format for init.
2163 */
2164static void set_link_hw_format(struct snd_soc_dai_link *link,
2165 struct snd_soc_tplg_link_config *cfg)
2166{
2167 struct snd_soc_tplg_hw_config *hw_config;
2168 unsigned char bclk_master, fsync_master;
2169 unsigned char invert_bclk, invert_fsync;
2170 int i;
2171
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002172 for (i = 0; i < le32_to_cpu(cfg->num_hw_configs); i++) {
Mengdong Lin593d9e52016-11-03 01:04:27 +08002173 hw_config = &cfg->hw_config[i];
2174 if (hw_config->id != cfg->default_hw_config_id)
2175 continue;
2176
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002177 link->dai_fmt = le32_to_cpu(hw_config->fmt) &
2178 SND_SOC_DAIFMT_FORMAT_MASK;
Mengdong Lin593d9e52016-11-03 01:04:27 +08002179
Kirill Marinushkin933e1c42018-04-04 06:19:38 +02002180 /* clock gating */
Kirill Marinushkinfbeabd02018-04-16 19:56:44 +02002181 switch (hw_config->clock_gated) {
2182 case SND_SOC_TPLG_DAI_CLK_GATE_GATED:
Kirill Marinushkin933e1c42018-04-04 06:19:38 +02002183 link->dai_fmt |= SND_SOC_DAIFMT_GATED;
Kirill Marinushkinfbeabd02018-04-16 19:56:44 +02002184 break;
2185
2186 case SND_SOC_TPLG_DAI_CLK_GATE_CONT:
Kirill Marinushkin933e1c42018-04-04 06:19:38 +02002187 link->dai_fmt |= SND_SOC_DAIFMT_CONT;
Kirill Marinushkinfbeabd02018-04-16 19:56:44 +02002188 break;
2189
2190 default:
2191 /* ignore the value */
2192 break;
2193 }
Kirill Marinushkin933e1c42018-04-04 06:19:38 +02002194
Mengdong Lin593d9e52016-11-03 01:04:27 +08002195 /* clock signal polarity */
2196 invert_bclk = hw_config->invert_bclk;
2197 invert_fsync = hw_config->invert_fsync;
2198 if (!invert_bclk && !invert_fsync)
2199 link->dai_fmt |= SND_SOC_DAIFMT_NB_NF;
2200 else if (!invert_bclk && invert_fsync)
2201 link->dai_fmt |= SND_SOC_DAIFMT_NB_IF;
2202 else if (invert_bclk && !invert_fsync)
2203 link->dai_fmt |= SND_SOC_DAIFMT_IB_NF;
2204 else
2205 link->dai_fmt |= SND_SOC_DAIFMT_IB_IF;
2206
2207 /* clock masters */
Kirill Marinushkina941e2f2018-04-04 06:19:37 +02002208 bclk_master = (hw_config->bclk_master ==
2209 SND_SOC_TPLG_BCLK_CM);
2210 fsync_master = (hw_config->fsync_master ==
2211 SND_SOC_TPLG_FSYNC_CM);
2212 if (bclk_master && fsync_master)
Mengdong Lin593d9e52016-11-03 01:04:27 +08002213 link->dai_fmt |= SND_SOC_DAIFMT_CBM_CFM;
Mengdong Lin593d9e52016-11-03 01:04:27 +08002214 else if (!bclk_master && fsync_master)
Kirill Marinushkina941e2f2018-04-04 06:19:37 +02002215 link->dai_fmt |= SND_SOC_DAIFMT_CBS_CFM;
2216 else if (bclk_master && !fsync_master)
Mengdong Lin593d9e52016-11-03 01:04:27 +08002217 link->dai_fmt |= SND_SOC_DAIFMT_CBM_CFS;
2218 else
2219 link->dai_fmt |= SND_SOC_DAIFMT_CBS_CFS;
2220 }
2221}
2222
2223/**
2224 * link_new_ver - Create a new physical link config from the old
2225 * version of source.
Charles Keepax8abab352017-01-12 11:38:15 +00002226 * @tplg: topology context
Mengdong Lin593d9e52016-11-03 01:04:27 +08002227 * @src: old version of phyical link config as a source
2228 * @link: latest version of physical link config created from the source
2229 *
2230 * Support from vesion 4. User need free the returned link config manually.
2231 */
2232static int link_new_ver(struct soc_tplg *tplg,
2233 struct snd_soc_tplg_link_config *src,
2234 struct snd_soc_tplg_link_config **link)
2235{
2236 struct snd_soc_tplg_link_config *dest;
2237 struct snd_soc_tplg_link_config_v4 *src_v4;
2238 int i;
2239
2240 *link = NULL;
2241
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002242 if (le32_to_cpu(src->size) !=
2243 sizeof(struct snd_soc_tplg_link_config_v4)) {
Mengdong Lin593d9e52016-11-03 01:04:27 +08002244 dev_err(tplg->dev, "ASoC: invalid physical link config size\n");
2245 return -EINVAL;
2246 }
2247
2248 dev_warn(tplg->dev, "ASoC: old version of physical link config\n");
2249
2250 src_v4 = (struct snd_soc_tplg_link_config_v4 *)src;
2251 dest = kzalloc(sizeof(*dest), GFP_KERNEL);
2252 if (!dest)
2253 return -ENOMEM;
2254
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002255 dest->size = cpu_to_le32(sizeof(*dest));
Mengdong Lin593d9e52016-11-03 01:04:27 +08002256 dest->id = src_v4->id;
2257 dest->num_streams = src_v4->num_streams;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002258 for (i = 0; i < le32_to_cpu(dest->num_streams); i++)
Mengdong Lin593d9e52016-11-03 01:04:27 +08002259 memcpy(&dest->stream[i], &src_v4->stream[i],
2260 sizeof(struct snd_soc_tplg_stream));
2261
2262 *link = dest;
2263 return 0;
2264}
2265
Kuninori Morimotod6f31e02019-12-10 09:34:14 +09002266/**
2267 * snd_soc_find_dai_link - Find a DAI link
2268 *
2269 * @card: soc card
2270 * @id: DAI link ID to match
2271 * @name: DAI link name to match, optional
2272 * @stream_name: DAI link stream name to match, optional
2273 *
2274 * This function will search all existing DAI links of the soc card to
2275 * find the link of the same ID. Since DAI links may not have their
2276 * unique ID, so name and stream name should also match if being
2277 * specified.
2278 *
2279 * Return: pointer of DAI link, or NULL if not found.
2280 */
2281static struct snd_soc_dai_link *snd_soc_find_dai_link(struct snd_soc_card *card,
2282 int id, const char *name,
2283 const char *stream_name)
2284{
2285 struct snd_soc_pcm_runtime *rtd;
2286 struct snd_soc_dai_link *link;
2287
2288 for_each_card_rtds(card, rtd) {
2289 link = rtd->dai_link;
2290
2291 if (link->id != id)
2292 continue;
2293
2294 if (name && (!link->name || strcmp(name, link->name)))
2295 continue;
2296
2297 if (stream_name && (!link->stream_name
2298 || strcmp(stream_name, link->stream_name)))
2299 continue;
2300
2301 return link;
2302 }
2303
2304 return NULL;
2305}
2306
Mengdong Lin593d9e52016-11-03 01:04:27 +08002307/* Find and configure an existing physical DAI link */
2308static int soc_tplg_link_config(struct soc_tplg *tplg,
2309 struct snd_soc_tplg_link_config *cfg)
2310{
2311 struct snd_soc_dai_link *link;
2312 const char *name, *stream_name;
Mengdong Lindbab1cb2016-11-05 08:42:14 +08002313 size_t len;
Mengdong Lin593d9e52016-11-03 01:04:27 +08002314 int ret;
2315
Mengdong Lindbab1cb2016-11-05 08:42:14 +08002316 len = strnlen(cfg->name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN);
2317 if (len == SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
2318 return -EINVAL;
2319 else if (len)
2320 name = cfg->name;
2321 else
2322 name = NULL;
2323
2324 len = strnlen(cfg->stream_name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN);
2325 if (len == SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
2326 return -EINVAL;
2327 else if (len)
2328 stream_name = cfg->stream_name;
2329 else
2330 stream_name = NULL;
Mengdong Lin593d9e52016-11-03 01:04:27 +08002331
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002332 link = snd_soc_find_dai_link(tplg->comp->card, le32_to_cpu(cfg->id),
Mengdong Lin593d9e52016-11-03 01:04:27 +08002333 name, stream_name);
2334 if (!link) {
2335 dev_err(tplg->dev, "ASoC: physical link %s (id %d) not exist\n",
2336 name, cfg->id);
2337 return -EINVAL;
2338 }
2339
2340 /* hw format */
2341 if (cfg->num_hw_configs)
2342 set_link_hw_format(link, cfg);
2343
2344 /* flags */
2345 if (cfg->flag_mask)
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002346 set_link_flags(link,
2347 le32_to_cpu(cfg->flag_mask),
2348 le32_to_cpu(cfg->flags));
Mengdong Lin593d9e52016-11-03 01:04:27 +08002349
2350 /* pass control to component driver for optional further init */
Liam Girdwoodc60b6132018-06-14 20:50:37 +01002351 ret = soc_tplg_dai_link_load(tplg, link, cfg);
Mengdong Lin593d9e52016-11-03 01:04:27 +08002352 if (ret < 0) {
2353 dev_err(tplg->dev, "ASoC: physical link loading failed\n");
2354 return ret;
2355 }
2356
Bard liaoadfebb52019-02-01 11:07:40 -06002357 /* for unloading it in snd_soc_tplg_component_remove */
2358 link->dobj.index = tplg->index;
2359 link->dobj.ops = tplg->ops;
2360 link->dobj.type = SND_SOC_DOBJ_BACKEND_LINK;
2361 list_add(&link->dobj.list, &tplg->comp->dobj_list);
2362
Mengdong Lin593d9e52016-11-03 01:04:27 +08002363 return 0;
2364}
2365
2366
2367/* Load physical link config elements from the topology context */
2368static int soc_tplg_link_elems_load(struct soc_tplg *tplg,
2369 struct snd_soc_tplg_hdr *hdr)
2370{
2371 struct snd_soc_tplg_link_config *link, *_link;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002372 int count;
2373 int size;
Mengdong Lin593d9e52016-11-03 01:04:27 +08002374 int i, ret;
2375 bool abi_match;
2376
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002377 count = le32_to_cpu(hdr->count);
2378
Mengdong Lin593d9e52016-11-03 01:04:27 +08002379 if (tplg->pass != SOC_TPLG_PASS_LINK) {
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002380 tplg->pos += le32_to_cpu(hdr->size) +
2381 le32_to_cpu(hdr->payload_size);
Mengdong Lin593d9e52016-11-03 01:04:27 +08002382 return 0;
2383 };
2384
2385 /* check the element size and count */
2386 link = (struct snd_soc_tplg_link_config *)tplg->pos;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002387 size = le32_to_cpu(link->size);
2388 if (size > sizeof(struct snd_soc_tplg_link_config)
2389 || size < sizeof(struct snd_soc_tplg_link_config_v4)) {
Mengdong Lin593d9e52016-11-03 01:04:27 +08002390 dev_err(tplg->dev, "ASoC: invalid size %d for physical link elems\n",
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002391 size);
Mengdong Lin593d9e52016-11-03 01:04:27 +08002392 return -EINVAL;
2393 }
2394
2395 if (soc_tplg_check_elem_count(tplg,
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002396 size, count,
2397 le32_to_cpu(hdr->payload_size),
2398 "physical link config")) {
Mengdong Lin593d9e52016-11-03 01:04:27 +08002399 dev_err(tplg->dev, "ASoC: invalid count %d for physical link elems\n",
2400 count);
2401 return -EINVAL;
2402 }
2403
2404 /* config physical DAI links */
2405 for (i = 0; i < count; i++) {
2406 link = (struct snd_soc_tplg_link_config *)tplg->pos;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002407 size = le32_to_cpu(link->size);
2408 if (size == sizeof(*link)) {
Mengdong Lin593d9e52016-11-03 01:04:27 +08002409 abi_match = true;
2410 _link = link;
2411 } else {
2412 abi_match = false;
2413 ret = link_new_ver(tplg, link, &_link);
2414 if (ret < 0)
2415 return ret;
2416 }
2417
2418 ret = soc_tplg_link_config(tplg, _link);
Dragos Tarcatu2b2d5c42020-02-07 20:53:24 +02002419 if (ret < 0) {
2420 if (!abi_match)
2421 kfree(_link);
Mengdong Lin593d9e52016-11-03 01:04:27 +08002422 return ret;
Dragos Tarcatu2b2d5c42020-02-07 20:53:24 +02002423 }
Mengdong Lin593d9e52016-11-03 01:04:27 +08002424
2425 /* offset by version-specific struct size and
2426 * real priv data size
2427 */
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002428 tplg->pos += size + le32_to_cpu(_link->priv.size);
Mengdong Lin593d9e52016-11-03 01:04:27 +08002429
2430 if (!abi_match)
2431 kfree(_link); /* free the duplicated one */
2432 }
2433
2434 return 0;
2435}
2436
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002437/**
2438 * soc_tplg_dai_config - Find and configure an existing physical DAI.
Mengdong Lin0038be92016-07-26 14:32:37 +08002439 * @tplg: topology context
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002440 * @d: physical DAI configs.
Mengdong Lin0038be92016-07-26 14:32:37 +08002441 *
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002442 * The physical dai should already be registered by the platform driver.
2443 * The platform driver should specify the DAI name and ID for matching.
Mengdong Lin0038be92016-07-26 14:32:37 +08002444 */
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002445static int soc_tplg_dai_config(struct soc_tplg *tplg,
2446 struct snd_soc_tplg_dai *d)
Mengdong Lin0038be92016-07-26 14:32:37 +08002447{
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002448 struct snd_soc_dai_link_component dai_component;
Mengdong Lin0038be92016-07-26 14:32:37 +08002449 struct snd_soc_dai *dai;
2450 struct snd_soc_dai_driver *dai_drv;
2451 struct snd_soc_pcm_stream *stream;
2452 struct snd_soc_tplg_stream_caps *caps;
2453 int ret;
2454
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002455 memset(&dai_component, 0, sizeof(dai_component));
2456
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002457 dai_component.dai_name = d->dai_name;
Mengdong Lin0038be92016-07-26 14:32:37 +08002458 dai = snd_soc_find_dai(&dai_component);
2459 if (!dai) {
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002460 dev_err(tplg->dev, "ASoC: physical DAI %s not registered\n",
2461 d->dai_name);
Mengdong Lin0038be92016-07-26 14:32:37 +08002462 return -EINVAL;
2463 }
2464
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002465 if (le32_to_cpu(d->dai_id) != dai->id) {
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002466 dev_err(tplg->dev, "ASoC: physical DAI %s id mismatch\n",
2467 d->dai_name);
Mengdong Lin0038be92016-07-26 14:32:37 +08002468 return -EINVAL;
2469 }
2470
2471 dai_drv = dai->driver;
2472 if (!dai_drv)
2473 return -EINVAL;
2474
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002475 if (d->playback) {
Mengdong Lin0038be92016-07-26 14:32:37 +08002476 stream = &dai_drv->playback;
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002477 caps = &d->caps[SND_SOC_TPLG_STREAM_PLAYBACK];
Amadeusz Sławińskiabc3caa2020-03-27 16:47:24 -04002478 ret = set_stream_info(stream, caps);
2479 if (ret < 0)
2480 goto err;
Mengdong Lin0038be92016-07-26 14:32:37 +08002481 }
2482
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002483 if (d->capture) {
Mengdong Lin0038be92016-07-26 14:32:37 +08002484 stream = &dai_drv->capture;
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002485 caps = &d->caps[SND_SOC_TPLG_STREAM_CAPTURE];
Amadeusz Sławińskiabc3caa2020-03-27 16:47:24 -04002486 ret = set_stream_info(stream, caps);
2487 if (ret < 0)
2488 goto err;
Mengdong Lin0038be92016-07-26 14:32:37 +08002489 }
2490
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002491 if (d->flag_mask)
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002492 set_dai_flags(dai_drv,
2493 le32_to_cpu(d->flag_mask),
2494 le32_to_cpu(d->flags));
Mengdong Lin0038be92016-07-26 14:32:37 +08002495
2496 /* pass control to component driver for optional further init */
Liam Girdwoodc60b6132018-06-14 20:50:37 +01002497 ret = soc_tplg_dai_load(tplg, dai_drv, NULL, dai);
Mengdong Lin0038be92016-07-26 14:32:37 +08002498 if (ret < 0) {
2499 dev_err(tplg->comp->dev, "ASoC: DAI loading failed\n");
Amadeusz Sławińskiabc3caa2020-03-27 16:47:24 -04002500 goto err;
Mengdong Lin0038be92016-07-26 14:32:37 +08002501 }
2502
2503 return 0;
Amadeusz Sławińskiabc3caa2020-03-27 16:47:24 -04002504
2505err:
2506 kfree(dai_drv->playback.stream_name);
2507 kfree(dai_drv->capture.stream_name);
2508 return ret;
Mengdong Lin0038be92016-07-26 14:32:37 +08002509}
2510
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002511/* load physical DAI elements */
2512static int soc_tplg_dai_elems_load(struct soc_tplg *tplg,
2513 struct snd_soc_tplg_hdr *hdr)
Mengdong Lin0038be92016-07-26 14:32:37 +08002514{
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002515 struct snd_soc_tplg_dai *dai;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002516 int count;
Mengdong Lin0038be92016-07-26 14:32:37 +08002517 int i;
2518
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002519 count = le32_to_cpu(hdr->count);
2520
Mengdong Lin0038be92016-07-26 14:32:37 +08002521 if (tplg->pass != SOC_TPLG_PASS_BE_DAI)
2522 return 0;
2523
2524 /* config the existing BE DAIs */
2525 for (i = 0; i < count; i++) {
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002526 dai = (struct snd_soc_tplg_dai *)tplg->pos;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002527 if (le32_to_cpu(dai->size) != sizeof(*dai)) {
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002528 dev_err(tplg->dev, "ASoC: invalid physical DAI size\n");
Mengdong Lin0038be92016-07-26 14:32:37 +08002529 return -EINVAL;
2530 }
2531
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002532 soc_tplg_dai_config(tplg, dai);
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002533 tplg->pos += (sizeof(*dai) + le32_to_cpu(dai->priv.size));
Mengdong Lin0038be92016-07-26 14:32:37 +08002534 }
2535
2536 dev_dbg(tplg->dev, "ASoC: Configure %d BE DAIs\n", count);
2537 return 0;
2538}
2539
Mengdong Lin583958f2016-10-11 14:36:42 +08002540/**
2541 * manifest_new_ver - Create a new version of manifest from the old version
2542 * of source.
Charles Keepax8abab352017-01-12 11:38:15 +00002543 * @tplg: topology context
Mengdong Lin583958f2016-10-11 14:36:42 +08002544 * @src: old version of manifest as a source
2545 * @manifest: latest version of manifest created from the source
2546 *
2547 * Support from vesion 4. Users need free the returned manifest manually.
2548 */
2549static int manifest_new_ver(struct soc_tplg *tplg,
2550 struct snd_soc_tplg_manifest *src,
2551 struct snd_soc_tplg_manifest **manifest)
2552{
2553 struct snd_soc_tplg_manifest *dest;
2554 struct snd_soc_tplg_manifest_v4 *src_v4;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002555 int size;
Mengdong Lin583958f2016-10-11 14:36:42 +08002556
2557 *manifest = NULL;
2558
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002559 size = le32_to_cpu(src->size);
2560 if (size != sizeof(*src_v4)) {
Guenter Roeckac9391d2018-05-24 12:49:21 -07002561 dev_warn(tplg->dev, "ASoC: invalid manifest size %d\n",
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002562 size);
2563 if (size)
Guenter Roeckac9391d2018-05-24 12:49:21 -07002564 return -EINVAL;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002565 src->size = cpu_to_le32(sizeof(*src_v4));
Mengdong Lin583958f2016-10-11 14:36:42 +08002566 }
2567
2568 dev_warn(tplg->dev, "ASoC: old version of manifest\n");
2569
2570 src_v4 = (struct snd_soc_tplg_manifest_v4 *)src;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002571 dest = kzalloc(sizeof(*dest) + le32_to_cpu(src_v4->priv.size),
2572 GFP_KERNEL);
Mengdong Lin583958f2016-10-11 14:36:42 +08002573 if (!dest)
2574 return -ENOMEM;
2575
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002576 dest->size = cpu_to_le32(sizeof(*dest)); /* size of latest abi version */
Mengdong Lin583958f2016-10-11 14:36:42 +08002577 dest->control_elems = src_v4->control_elems;
2578 dest->widget_elems = src_v4->widget_elems;
2579 dest->graph_elems = src_v4->graph_elems;
2580 dest->pcm_elems = src_v4->pcm_elems;
2581 dest->dai_link_elems = src_v4->dai_link_elems;
2582 dest->priv.size = src_v4->priv.size;
2583 if (dest->priv.size)
2584 memcpy(dest->priv.data, src_v4->priv.data,
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002585 le32_to_cpu(src_v4->priv.size));
Mengdong Lin583958f2016-10-11 14:36:42 +08002586
2587 *manifest = dest;
2588 return 0;
2589}
Mengdong Lin0038be92016-07-26 14:32:37 +08002590
Liam Girdwood8a978232015-05-29 19:06:14 +01002591static int soc_tplg_manifest_load(struct soc_tplg *tplg,
Mengdong Lin0038be92016-07-26 14:32:37 +08002592 struct snd_soc_tplg_hdr *hdr)
Liam Girdwood8a978232015-05-29 19:06:14 +01002593{
Mengdong Lin583958f2016-10-11 14:36:42 +08002594 struct snd_soc_tplg_manifest *manifest, *_manifest;
2595 bool abi_match;
Dragos Tarcatu242c46c2020-02-07 20:53:25 +02002596 int ret = 0;
Liam Girdwood8a978232015-05-29 19:06:14 +01002597
2598 if (tplg->pass != SOC_TPLG_PASS_MANIFEST)
2599 return 0;
2600
2601 manifest = (struct snd_soc_tplg_manifest *)tplg->pos;
Mengdong Lin583958f2016-10-11 14:36:42 +08002602
2603 /* check ABI version by size, create a new manifest if abi not match */
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002604 if (le32_to_cpu(manifest->size) == sizeof(*manifest)) {
Mengdong Lin583958f2016-10-11 14:36:42 +08002605 abi_match = true;
2606 _manifest = manifest;
2607 } else {
2608 abi_match = false;
Dragos Tarcatu242c46c2020-02-07 20:53:25 +02002609 ret = manifest_new_ver(tplg, manifest, &_manifest);
2610 if (ret < 0)
2611 return ret;
Mengdong Lin06eb49f2016-04-27 14:52:56 +08002612 }
2613
Mengdong Lin583958f2016-10-11 14:36:42 +08002614 /* pass control to component driver for optional further init */
Amadeusz Sławińskic42464a2020-03-12 08:22:39 -04002615 if (tplg->ops && tplg->ops->manifest)
Dragos Tarcatu242c46c2020-02-07 20:53:25 +02002616 ret = tplg->ops->manifest(tplg->comp, tplg->index, _manifest);
Liam Girdwood8a978232015-05-29 19:06:14 +01002617
Mengdong Lin583958f2016-10-11 14:36:42 +08002618 if (!abi_match) /* free the duplicated one */
2619 kfree(_manifest);
2620
Dragos Tarcatu242c46c2020-02-07 20:53:25 +02002621 return ret;
Liam Girdwood8a978232015-05-29 19:06:14 +01002622}
2623
2624/* validate header magic, size and type */
2625static int soc_valid_header(struct soc_tplg *tplg,
2626 struct snd_soc_tplg_hdr *hdr)
2627{
2628 if (soc_tplg_get_hdr_offset(tplg) >= tplg->fw->size)
2629 return 0;
2630
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002631 if (le32_to_cpu(hdr->size) != sizeof(*hdr)) {
Mengdong Lin06eb49f2016-04-27 14:52:56 +08002632 dev_err(tplg->dev,
2633 "ASoC: invalid header size for type %d at offset 0x%lx size 0x%zx.\n",
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002634 le32_to_cpu(hdr->type), soc_tplg_get_hdr_offset(tplg),
Mengdong Lin06eb49f2016-04-27 14:52:56 +08002635 tplg->fw->size);
2636 return -EINVAL;
2637 }
2638
Liam Girdwood8a978232015-05-29 19:06:14 +01002639 /* big endian firmware objects not supported atm */
Pierre-Louis Bossart21141712019-04-04 14:13:58 -05002640 if (hdr->magic == SOC_TPLG_MAGIC_BIG_ENDIAN) {
Liam Girdwood8a978232015-05-29 19:06:14 +01002641 dev_err(tplg->dev,
2642 "ASoC: pass %d big endian not supported header got %x at offset 0x%lx size 0x%zx.\n",
2643 tplg->pass, hdr->magic,
2644 soc_tplg_get_hdr_offset(tplg), tplg->fw->size);
2645 return -EINVAL;
2646 }
2647
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002648 if (le32_to_cpu(hdr->magic) != SND_SOC_TPLG_MAGIC) {
Liam Girdwood8a978232015-05-29 19:06:14 +01002649 dev_err(tplg->dev,
2650 "ASoC: pass %d does not have a valid header got %x at offset 0x%lx size 0x%zx.\n",
2651 tplg->pass, hdr->magic,
2652 soc_tplg_get_hdr_offset(tplg), tplg->fw->size);
2653 return -EINVAL;
2654 }
2655
Mengdong Lin288b8da2016-11-03 01:03:17 +08002656 /* Support ABI from version 4 */
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002657 if (le32_to_cpu(hdr->abi) > SND_SOC_TPLG_ABI_VERSION ||
2658 le32_to_cpu(hdr->abi) < SND_SOC_TPLG_ABI_VERSION_MIN) {
Liam Girdwood8a978232015-05-29 19:06:14 +01002659 dev_err(tplg->dev,
2660 "ASoC: pass %d invalid ABI version got 0x%x need 0x%x at offset 0x%lx size 0x%zx.\n",
2661 tplg->pass, hdr->abi,
2662 SND_SOC_TPLG_ABI_VERSION, soc_tplg_get_hdr_offset(tplg),
2663 tplg->fw->size);
2664 return -EINVAL;
2665 }
2666
2667 if (hdr->payload_size == 0) {
2668 dev_err(tplg->dev, "ASoC: header has 0 size at offset 0x%lx.\n",
2669 soc_tplg_get_hdr_offset(tplg));
2670 return -EINVAL;
2671 }
2672
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002673 if (tplg->pass == le32_to_cpu(hdr->type))
Liam Girdwood8a978232015-05-29 19:06:14 +01002674 dev_dbg(tplg->dev,
2675 "ASoC: Got 0x%x bytes of type %d version %d vendor %d at pass %d\n",
2676 hdr->payload_size, hdr->type, hdr->version,
2677 hdr->vendor_type, tplg->pass);
2678
2679 return 1;
2680}
2681
2682/* check header type and call appropriate handler */
2683static int soc_tplg_load_header(struct soc_tplg *tplg,
2684 struct snd_soc_tplg_hdr *hdr)
2685{
2686 tplg->pos = tplg->hdr_pos + sizeof(struct snd_soc_tplg_hdr);
2687
2688 /* check for matching ID */
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002689 if (le32_to_cpu(hdr->index) != tplg->req_index &&
Liam Girdwoodbb971422017-06-29 14:22:25 +01002690 tplg->req_index != SND_SOC_TPLG_INDEX_ALL)
Liam Girdwood8a978232015-05-29 19:06:14 +01002691 return 0;
2692
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002693 tplg->index = le32_to_cpu(hdr->index);
Liam Girdwood8a978232015-05-29 19:06:14 +01002694
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002695 switch (le32_to_cpu(hdr->type)) {
Liam Girdwood8a978232015-05-29 19:06:14 +01002696 case SND_SOC_TPLG_TYPE_MIXER:
2697 case SND_SOC_TPLG_TYPE_ENUM:
2698 case SND_SOC_TPLG_TYPE_BYTES:
2699 return soc_tplg_kcontrol_elems_load(tplg, hdr);
2700 case SND_SOC_TPLG_TYPE_DAPM_GRAPH:
2701 return soc_tplg_dapm_graph_elems_load(tplg, hdr);
2702 case SND_SOC_TPLG_TYPE_DAPM_WIDGET:
2703 return soc_tplg_dapm_widget_elems_load(tplg, hdr);
2704 case SND_SOC_TPLG_TYPE_PCM:
Mengdong Lin64527e82016-01-15 16:13:28 +08002705 return soc_tplg_pcm_elems_load(tplg, hdr);
Mengdong Lin3fbf7932016-11-03 01:05:01 +08002706 case SND_SOC_TPLG_TYPE_DAI:
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002707 return soc_tplg_dai_elems_load(tplg, hdr);
Mengdong Lin593d9e52016-11-03 01:04:27 +08002708 case SND_SOC_TPLG_TYPE_DAI_LINK:
2709 case SND_SOC_TPLG_TYPE_BACKEND_LINK:
2710 /* physical link configurations */
2711 return soc_tplg_link_elems_load(tplg, hdr);
Liam Girdwood8a978232015-05-29 19:06:14 +01002712 case SND_SOC_TPLG_TYPE_MANIFEST:
2713 return soc_tplg_manifest_load(tplg, hdr);
2714 default:
2715 /* bespoke vendor data object */
2716 return soc_tplg_vendor_load(tplg, hdr);
2717 }
2718
2719 return 0;
2720}
2721
2722/* process the topology file headers */
2723static int soc_tplg_process_headers(struct soc_tplg *tplg)
2724{
2725 struct snd_soc_tplg_hdr *hdr;
2726 int ret;
2727
2728 tplg->pass = SOC_TPLG_PASS_START;
2729
2730 /* process the header types from start to end */
2731 while (tplg->pass <= SOC_TPLG_PASS_END) {
2732
2733 tplg->hdr_pos = tplg->fw->data;
2734 hdr = (struct snd_soc_tplg_hdr *)tplg->hdr_pos;
2735
2736 while (!soc_tplg_is_eof(tplg)) {
2737
2738 /* make sure header is valid before loading */
2739 ret = soc_valid_header(tplg, hdr);
2740 if (ret < 0)
2741 return ret;
2742 else if (ret == 0)
2743 break;
2744
2745 /* load the header object */
2746 ret = soc_tplg_load_header(tplg, hdr);
2747 if (ret < 0)
2748 return ret;
2749
2750 /* goto next header */
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002751 tplg->hdr_pos += le32_to_cpu(hdr->payload_size) +
Liam Girdwood8a978232015-05-29 19:06:14 +01002752 sizeof(struct snd_soc_tplg_hdr);
2753 hdr = (struct snd_soc_tplg_hdr *)tplg->hdr_pos;
2754 }
2755
2756 /* next data type pass */
2757 tplg->pass++;
2758 }
2759
2760 /* signal DAPM we are complete */
2761 ret = soc_tplg_dapm_complete(tplg);
2762 if (ret < 0)
2763 dev_err(tplg->dev,
2764 "ASoC: failed to initialise DAPM from Firmware\n");
2765
2766 return ret;
2767}
2768
2769static int soc_tplg_load(struct soc_tplg *tplg)
2770{
2771 int ret;
2772
2773 ret = soc_tplg_process_headers(tplg);
2774 if (ret == 0)
2775 soc_tplg_complete(tplg);
2776
2777 return ret;
2778}
2779
2780/* load audio component topology from "firmware" file */
2781int snd_soc_tplg_component_load(struct snd_soc_component *comp,
2782 struct snd_soc_tplg_ops *ops, const struct firmware *fw, u32 id)
2783{
2784 struct soc_tplg tplg;
Bard liao304017d2019-02-17 21:23:47 +08002785 int ret;
Liam Girdwood8a978232015-05-29 19:06:14 +01002786
Amadeusz Sławińskic42464a2020-03-12 08:22:39 -04002787 /* component needs to exist to keep and reference data while parsing */
2788 if (!comp)
2789 return -EINVAL;
2790
Liam Girdwood8a978232015-05-29 19:06:14 +01002791 /* setup parsing context */
2792 memset(&tplg, 0, sizeof(tplg));
2793 tplg.fw = fw;
2794 tplg.dev = comp->dev;
2795 tplg.comp = comp;
2796 tplg.ops = ops;
2797 tplg.req_index = id;
2798 tplg.io_ops = ops->io_ops;
2799 tplg.io_ops_count = ops->io_ops_count;
Mengdong Lin1a3232d2015-08-18 18:12:20 +08002800 tplg.bytes_ext_ops = ops->bytes_ext_ops;
2801 tplg.bytes_ext_ops_count = ops->bytes_ext_ops_count;
Liam Girdwood8a978232015-05-29 19:06:14 +01002802
Bard liao304017d2019-02-17 21:23:47 +08002803 ret = soc_tplg_load(&tplg);
2804 /* free the created components if fail to load topology */
2805 if (ret)
2806 snd_soc_tplg_component_remove(comp, SND_SOC_TPLG_INDEX_ALL);
2807
2808 return ret;
Liam Girdwood8a978232015-05-29 19:06:14 +01002809}
2810EXPORT_SYMBOL_GPL(snd_soc_tplg_component_load);
2811
2812/* remove this dynamic widget */
2813void snd_soc_tplg_widget_remove(struct snd_soc_dapm_widget *w)
2814{
2815 /* make sure we are a widget */
2816 if (w->dobj.type != SND_SOC_DOBJ_WIDGET)
2817 return;
2818
2819 remove_widget(w->dapm->component, &w->dobj, SOC_TPLG_PASS_WIDGET);
2820}
2821EXPORT_SYMBOL_GPL(snd_soc_tplg_widget_remove);
2822
2823/* remove all dynamic widgets from this DAPM context */
2824void snd_soc_tplg_widget_remove_all(struct snd_soc_dapm_context *dapm,
2825 u32 index)
2826{
2827 struct snd_soc_dapm_widget *w, *next_w;
Liam Girdwood8a978232015-05-29 19:06:14 +01002828
Kuninori Morimoto14596692020-03-09 13:08:21 +09002829 for_each_card_widgets_safe(dapm->card, w, next_w) {
Liam Girdwood8a978232015-05-29 19:06:14 +01002830
2831 /* make sure we are a widget with correct context */
2832 if (w->dobj.type != SND_SOC_DOBJ_WIDGET || w->dapm != dapm)
2833 continue;
2834
2835 /* match ID */
2836 if (w->dobj.index != index &&
2837 w->dobj.index != SND_SOC_TPLG_INDEX_ALL)
2838 continue;
Liam Girdwood8a978232015-05-29 19:06:14 +01002839 /* check and free and dynamic widget kcontrols */
2840 snd_soc_tplg_widget_remove(w);
Lars-Peter Clausenb97e2692015-07-21 18:11:07 +02002841 snd_soc_dapm_free_widget(w);
Liam Girdwood8a978232015-05-29 19:06:14 +01002842 }
Jyri Sarhafd589a12015-11-10 18:12:42 +02002843 snd_soc_dapm_reset_cache(dapm);
Liam Girdwood8a978232015-05-29 19:06:14 +01002844}
2845EXPORT_SYMBOL_GPL(snd_soc_tplg_widget_remove_all);
2846
2847/* remove dynamic controls from the component driver */
2848int snd_soc_tplg_component_remove(struct snd_soc_component *comp, u32 index)
2849{
2850 struct snd_soc_dobj *dobj, *next_dobj;
2851 int pass = SOC_TPLG_PASS_END;
2852
2853 /* process the header types from end to start */
2854 while (pass >= SOC_TPLG_PASS_START) {
2855
2856 /* remove mixer controls */
2857 list_for_each_entry_safe(dobj, next_dobj, &comp->dobj_list,
2858 list) {
2859
2860 /* match index */
2861 if (dobj->index != index &&
Yan Wangfeb12f02018-03-26 16:48:00 +01002862 index != SND_SOC_TPLG_INDEX_ALL)
Liam Girdwood8a978232015-05-29 19:06:14 +01002863 continue;
2864
2865 switch (dobj->type) {
2866 case SND_SOC_DOBJ_MIXER:
2867 remove_mixer(comp, dobj, pass);
2868 break;
2869 case SND_SOC_DOBJ_ENUM:
2870 remove_enum(comp, dobj, pass);
2871 break;
2872 case SND_SOC_DOBJ_BYTES:
2873 remove_bytes(comp, dobj, pass);
2874 break;
Ranjani Sridharan7df04ea2019-01-25 14:06:47 -06002875 case SND_SOC_DOBJ_GRAPH:
2876 remove_route(comp, dobj, pass);
2877 break;
Liam Girdwood8a978232015-05-29 19:06:14 +01002878 case SND_SOC_DOBJ_WIDGET:
2879 remove_widget(comp, dobj, pass);
2880 break;
2881 case SND_SOC_DOBJ_PCM:
Mengdong Lin64527e82016-01-15 16:13:28 +08002882 remove_dai(comp, dobj, pass);
Liam Girdwood8a978232015-05-29 19:06:14 +01002883 break;
Mengdong Linacfc7d42016-01-15 16:13:37 +08002884 case SND_SOC_DOBJ_DAI_LINK:
2885 remove_link(comp, dobj, pass);
2886 break;
Bard liaoadfebb52019-02-01 11:07:40 -06002887 case SND_SOC_DOBJ_BACKEND_LINK:
2888 /*
2889 * call link_unload ops if extra
2890 * deinitialization is needed.
2891 */
2892 remove_backend_link(comp, dobj, pass);
2893 break;
Liam Girdwood8a978232015-05-29 19:06:14 +01002894 default:
2895 dev_err(comp->dev, "ASoC: invalid component type %d for removal\n",
2896 dobj->type);
2897 break;
2898 }
2899 }
2900 pass--;
2901 }
2902
2903 /* let caller know if FW can be freed when no objects are left */
2904 return !list_empty(&comp->dobj_list);
2905}
2906EXPORT_SYMBOL_GPL(snd_soc_tplg_component_remove);