blob: aab31144f683abc575ceee1074c87aaa180b17b6 [file] [log] [blame]
Liam Girdwood8a978232015-05-29 19:06:14 +01001/*
2 * soc-topology.c -- ALSA SoC Topology
3 *
4 * Copyright (C) 2012 Texas Instruments Inc.
5 * Copyright (C) 2015 Intel Corporation.
6 *
7 * Authors: Liam Girdwood <liam.r.girdwood@linux.intel.com>
8 * K, Mythri P <mythri.p.k@intel.com>
9 * Prusty, Subhransu S <subhransu.s.prusty@intel.com>
10 * B, Jayachandran <jayachandran.b@intel.com>
11 * Abdullah, Omair M <omair.m.abdullah@intel.com>
12 * Jin, Yao <yao.jin@intel.com>
13 * Lin, Mengdong <mengdong.lin@intel.com>
14 *
15 * This program is free software; you can redistribute it and/or modify it
16 * under the terms of the GNU General Public License as published by the
17 * Free Software Foundation; either version 2 of the License, or (at your
18 * option) any later version.
19 *
20 * Add support to read audio firmware topology alongside firmware text. The
21 * topology data can contain kcontrols, DAPM graphs, widgets, DAIs, DAI links,
22 * equalizers, firmware, coefficients etc.
23 *
24 * This file only manages the core ALSA and ASoC components, all other bespoke
25 * firmware topology data is passed to component drivers for bespoke handling.
26 */
27
28#include <linux/kernel.h>
29#include <linux/export.h>
30#include <linux/list.h>
31#include <linux/firmware.h>
32#include <linux/slab.h>
33#include <sound/soc.h>
34#include <sound/soc-dapm.h>
35#include <sound/soc-topology.h>
Mengdong Lin28a87ee2015-08-05 14:41:13 +010036#include <sound/tlv.h>
Liam Girdwood8a978232015-05-29 19:06:14 +010037
38/*
39 * We make several passes over the data (since it wont necessarily be ordered)
40 * and process objects in the following order. This guarantees the component
41 * drivers will be ready with any vendor data before the mixers and DAPM objects
42 * are loaded (that may make use of the vendor data).
43 */
44#define SOC_TPLG_PASS_MANIFEST 0
45#define SOC_TPLG_PASS_VENDOR 1
46#define SOC_TPLG_PASS_MIXER 2
47#define SOC_TPLG_PASS_WIDGET 3
Mengdong Lin1a8e7fa2015-08-10 22:48:30 +080048#define SOC_TPLG_PASS_PCM_DAI 4
49#define SOC_TPLG_PASS_GRAPH 5
50#define SOC_TPLG_PASS_PINS 6
Mengdong Lin0038be92016-07-26 14:32:37 +080051#define SOC_TPLG_PASS_BE_DAI 7
Mengdong Lin593d9e52016-11-03 01:04:27 +080052#define SOC_TPLG_PASS_LINK 8
Liam Girdwood8a978232015-05-29 19:06:14 +010053
54#define SOC_TPLG_PASS_START SOC_TPLG_PASS_MANIFEST
Mengdong Lin593d9e52016-11-03 01:04:27 +080055#define SOC_TPLG_PASS_END SOC_TPLG_PASS_LINK
Liam Girdwood8a978232015-05-29 19:06:14 +010056
Mengdong Lin583958f2016-10-11 14:36:42 +080057/*
58 * Old version of ABI structs, supported for backward compatibility.
59 */
60
61/* Manifest v4 */
62struct snd_soc_tplg_manifest_v4 {
63 __le32 size; /* in bytes of this structure */
64 __le32 control_elems; /* number of control elements */
65 __le32 widget_elems; /* number of widget elements */
66 __le32 graph_elems; /* number of graph elements */
67 __le32 pcm_elems; /* number of PCM elements */
68 __le32 dai_link_elems; /* number of DAI link elements */
69 struct snd_soc_tplg_private priv;
70} __packed;
71
Mengdong Lin55726dc2016-11-03 01:00:16 +080072/* Stream Capabilities v4 */
73struct snd_soc_tplg_stream_caps_v4 {
74 __le32 size; /* in bytes of this structure */
75 char name[SNDRV_CTL_ELEM_ID_NAME_MAXLEN];
76 __le64 formats; /* supported formats SNDRV_PCM_FMTBIT_* */
77 __le32 rates; /* supported rates SNDRV_PCM_RATE_* */
78 __le32 rate_min; /* min rate */
79 __le32 rate_max; /* max rate */
80 __le32 channels_min; /* min channels */
81 __le32 channels_max; /* max channels */
82 __le32 periods_min; /* min number of periods */
83 __le32 periods_max; /* max number of periods */
84 __le32 period_size_min; /* min period size bytes */
85 __le32 period_size_max; /* max period size bytes */
86 __le32 buffer_size_min; /* min buffer size bytes */
87 __le32 buffer_size_max; /* max buffer size bytes */
88} __packed;
89
90/* PCM v4 */
91struct snd_soc_tplg_pcm_v4 {
92 __le32 size; /* in bytes of this structure */
93 char pcm_name[SNDRV_CTL_ELEM_ID_NAME_MAXLEN];
94 char dai_name[SNDRV_CTL_ELEM_ID_NAME_MAXLEN];
95 __le32 pcm_id; /* unique ID - used to match with DAI link */
96 __le32 dai_id; /* unique ID - used to match */
97 __le32 playback; /* supports playback mode */
98 __le32 capture; /* supports capture mode */
99 __le32 compress; /* 1 = compressed; 0 = PCM */
100 struct snd_soc_tplg_stream stream[SND_SOC_TPLG_STREAM_CONFIG_MAX]; /* for DAI link */
101 __le32 num_streams; /* number of streams */
102 struct snd_soc_tplg_stream_caps_v4 caps[2]; /* playback and capture for DAI */
103} __packed;
104
Mengdong Lin593d9e52016-11-03 01:04:27 +0800105/* Physical link config v4 */
106struct snd_soc_tplg_link_config_v4 {
107 __le32 size; /* in bytes of this structure */
108 __le32 id; /* unique ID - used to match */
109 struct snd_soc_tplg_stream stream[SND_SOC_TPLG_STREAM_CONFIG_MAX]; /* supported configs playback and captrure */
110 __le32 num_streams; /* number of streams */
111} __packed;
112
Mengdong Lin583958f2016-10-11 14:36:42 +0800113/* topology context */
Liam Girdwood8a978232015-05-29 19:06:14 +0100114struct soc_tplg {
115 const struct firmware *fw;
116
117 /* runtime FW parsing */
118 const u8 *pos; /* read postion */
119 const u8 *hdr_pos; /* header position */
120 unsigned int pass; /* pass number */
121
122 /* component caller */
123 struct device *dev;
124 struct snd_soc_component *comp;
125 u32 index; /* current block index */
126 u32 req_index; /* required index, only loaded/free matching blocks */
127
Mengdong Lin88a17d82015-08-18 18:11:51 +0800128 /* vendor specific kcontrol operations */
Liam Girdwood8a978232015-05-29 19:06:14 +0100129 const struct snd_soc_tplg_kcontrol_ops *io_ops;
130 int io_ops_count;
131
Mengdong Lin1a3232d2015-08-18 18:12:20 +0800132 /* vendor specific bytes ext handlers, for TLV bytes controls */
133 const struct snd_soc_tplg_bytes_ext_ops *bytes_ext_ops;
134 int bytes_ext_ops_count;
135
Liam Girdwood8a978232015-05-29 19:06:14 +0100136 /* optional fw loading callbacks to component drivers */
137 struct snd_soc_tplg_ops *ops;
138};
139
140static int soc_tplg_process_headers(struct soc_tplg *tplg);
141static void soc_tplg_complete(struct soc_tplg *tplg);
142struct snd_soc_dapm_widget *
143snd_soc_dapm_new_control_unlocked(struct snd_soc_dapm_context *dapm,
144 const struct snd_soc_dapm_widget *widget);
145struct snd_soc_dapm_widget *
146snd_soc_dapm_new_control(struct snd_soc_dapm_context *dapm,
147 const struct snd_soc_dapm_widget *widget);
148
149/* check we dont overflow the data for this control chunk */
150static int soc_tplg_check_elem_count(struct soc_tplg *tplg, size_t elem_size,
151 unsigned int count, size_t bytes, const char *elem_type)
152{
153 const u8 *end = tplg->pos + elem_size * count;
154
155 if (end > tplg->fw->data + tplg->fw->size) {
156 dev_err(tplg->dev, "ASoC: %s overflow end of data\n",
157 elem_type);
158 return -EINVAL;
159 }
160
161 /* check there is enough room in chunk for control.
162 extra bytes at the end of control are for vendor data here */
163 if (elem_size * count > bytes) {
164 dev_err(tplg->dev,
165 "ASoC: %s count %d of size %zu is bigger than chunk %zu\n",
166 elem_type, count, elem_size, bytes);
167 return -EINVAL;
168 }
169
170 return 0;
171}
172
173static inline int soc_tplg_is_eof(struct soc_tplg *tplg)
174{
175 const u8 *end = tplg->hdr_pos;
176
177 if (end >= tplg->fw->data + tplg->fw->size)
178 return 1;
179 return 0;
180}
181
182static inline unsigned long soc_tplg_get_hdr_offset(struct soc_tplg *tplg)
183{
184 return (unsigned long)(tplg->hdr_pos - tplg->fw->data);
185}
186
187static inline unsigned long soc_tplg_get_offset(struct soc_tplg *tplg)
188{
189 return (unsigned long)(tplg->pos - tplg->fw->data);
190}
191
192/* mapping of Kcontrol types and associated operations. */
193static const struct snd_soc_tplg_kcontrol_ops io_ops[] = {
194 {SND_SOC_TPLG_CTL_VOLSW, snd_soc_get_volsw,
195 snd_soc_put_volsw, snd_soc_info_volsw},
196 {SND_SOC_TPLG_CTL_VOLSW_SX, snd_soc_get_volsw_sx,
197 snd_soc_put_volsw_sx, NULL},
198 {SND_SOC_TPLG_CTL_ENUM, snd_soc_get_enum_double,
199 snd_soc_put_enum_double, snd_soc_info_enum_double},
200 {SND_SOC_TPLG_CTL_ENUM_VALUE, snd_soc_get_enum_double,
201 snd_soc_put_enum_double, NULL},
202 {SND_SOC_TPLG_CTL_BYTES, snd_soc_bytes_get,
203 snd_soc_bytes_put, snd_soc_bytes_info},
204 {SND_SOC_TPLG_CTL_RANGE, snd_soc_get_volsw_range,
205 snd_soc_put_volsw_range, snd_soc_info_volsw_range},
206 {SND_SOC_TPLG_CTL_VOLSW_XR_SX, snd_soc_get_xr_sx,
207 snd_soc_put_xr_sx, snd_soc_info_xr_sx},
208 {SND_SOC_TPLG_CTL_STROBE, snd_soc_get_strobe,
209 snd_soc_put_strobe, NULL},
210 {SND_SOC_TPLG_DAPM_CTL_VOLSW, snd_soc_dapm_get_volsw,
Jeeja KP2c57d4782015-07-14 13:10:47 +0530211 snd_soc_dapm_put_volsw, snd_soc_info_volsw},
Liam Girdwood8a978232015-05-29 19:06:14 +0100212 {SND_SOC_TPLG_DAPM_CTL_ENUM_DOUBLE, snd_soc_dapm_get_enum_double,
213 snd_soc_dapm_put_enum_double, snd_soc_info_enum_double},
214 {SND_SOC_TPLG_DAPM_CTL_ENUM_VIRT, snd_soc_dapm_get_enum_double,
215 snd_soc_dapm_put_enum_double, NULL},
216 {SND_SOC_TPLG_DAPM_CTL_ENUM_VALUE, snd_soc_dapm_get_enum_double,
217 snd_soc_dapm_put_enum_double, NULL},
218 {SND_SOC_TPLG_DAPM_CTL_PIN, snd_soc_dapm_get_pin_switch,
219 snd_soc_dapm_put_pin_switch, snd_soc_dapm_info_pin_switch},
220};
221
222struct soc_tplg_map {
223 int uid;
224 int kid;
225};
226
227/* mapping of widget types from UAPI IDs to kernel IDs */
228static const struct soc_tplg_map dapm_map[] = {
229 {SND_SOC_TPLG_DAPM_INPUT, snd_soc_dapm_input},
230 {SND_SOC_TPLG_DAPM_OUTPUT, snd_soc_dapm_output},
231 {SND_SOC_TPLG_DAPM_MUX, snd_soc_dapm_mux},
232 {SND_SOC_TPLG_DAPM_MIXER, snd_soc_dapm_mixer},
233 {SND_SOC_TPLG_DAPM_PGA, snd_soc_dapm_pga},
234 {SND_SOC_TPLG_DAPM_OUT_DRV, snd_soc_dapm_out_drv},
235 {SND_SOC_TPLG_DAPM_ADC, snd_soc_dapm_adc},
236 {SND_SOC_TPLG_DAPM_DAC, snd_soc_dapm_dac},
237 {SND_SOC_TPLG_DAPM_SWITCH, snd_soc_dapm_switch},
238 {SND_SOC_TPLG_DAPM_PRE, snd_soc_dapm_pre},
239 {SND_SOC_TPLG_DAPM_POST, snd_soc_dapm_post},
240 {SND_SOC_TPLG_DAPM_AIF_IN, snd_soc_dapm_aif_in},
241 {SND_SOC_TPLG_DAPM_AIF_OUT, snd_soc_dapm_aif_out},
242 {SND_SOC_TPLG_DAPM_DAI_IN, snd_soc_dapm_dai_in},
243 {SND_SOC_TPLG_DAPM_DAI_OUT, snd_soc_dapm_dai_out},
244 {SND_SOC_TPLG_DAPM_DAI_LINK, snd_soc_dapm_dai_link},
Liam Girdwood8a70b452017-06-29 14:22:24 +0100245 {SND_SOC_TPLG_DAPM_BUFFER, snd_soc_dapm_buffer},
246 {SND_SOC_TPLG_DAPM_SCHEDULER, snd_soc_dapm_scheduler},
247 {SND_SOC_TPLG_DAPM_EFFECT, snd_soc_dapm_effect},
248 {SND_SOC_TPLG_DAPM_SIGGEN, snd_soc_dapm_siggen},
249 {SND_SOC_TPLG_DAPM_SRC, snd_soc_dapm_src},
250 {SND_SOC_TPLG_DAPM_ASRC, snd_soc_dapm_asrc},
251 {SND_SOC_TPLG_DAPM_ENCODER, snd_soc_dapm_encoder},
252 {SND_SOC_TPLG_DAPM_DECODER, snd_soc_dapm_decoder},
Liam Girdwood8a978232015-05-29 19:06:14 +0100253};
254
255static int tplc_chan_get_reg(struct soc_tplg *tplg,
256 struct snd_soc_tplg_channel *chan, int map)
257{
258 int i;
259
260 for (i = 0; i < SND_SOC_TPLG_MAX_CHAN; i++) {
261 if (chan[i].id == map)
262 return chan[i].reg;
263 }
264
265 return -EINVAL;
266}
267
268static int tplc_chan_get_shift(struct soc_tplg *tplg,
269 struct snd_soc_tplg_channel *chan, int map)
270{
271 int i;
272
273 for (i = 0; i < SND_SOC_TPLG_MAX_CHAN; i++) {
274 if (chan[i].id == map)
275 return chan[i].shift;
276 }
277
278 return -EINVAL;
279}
280
281static int get_widget_id(int tplg_type)
282{
283 int i;
284
285 for (i = 0; i < ARRAY_SIZE(dapm_map); i++) {
286 if (tplg_type == dapm_map[i].uid)
287 return dapm_map[i].kid;
288 }
289
290 return -EINVAL;
291}
292
Liam Girdwood8a978232015-05-29 19:06:14 +0100293static inline void soc_bind_err(struct soc_tplg *tplg,
294 struct snd_soc_tplg_ctl_hdr *hdr, int index)
295{
296 dev_err(tplg->dev,
297 "ASoC: invalid control type (g,p,i) %d:%d:%d index %d at 0x%lx\n",
298 hdr->ops.get, hdr->ops.put, hdr->ops.info, index,
299 soc_tplg_get_offset(tplg));
300}
301
302static inline void soc_control_err(struct soc_tplg *tplg,
303 struct snd_soc_tplg_ctl_hdr *hdr, const char *name)
304{
305 dev_err(tplg->dev,
306 "ASoC: no complete mixer IO handler for %s type (g,p,i) %d:%d:%d at 0x%lx\n",
307 name, hdr->ops.get, hdr->ops.put, hdr->ops.info,
308 soc_tplg_get_offset(tplg));
309}
310
311/* pass vendor data to component driver for processing */
312static int soc_tplg_vendor_load_(struct soc_tplg *tplg,
313 struct snd_soc_tplg_hdr *hdr)
314{
315 int ret = 0;
316
317 if (tplg->comp && tplg->ops && tplg->ops->vendor_load)
318 ret = tplg->ops->vendor_load(tplg->comp, hdr);
319 else {
320 dev_err(tplg->dev, "ASoC: no vendor load callback for ID %d\n",
321 hdr->vendor_type);
322 return -EINVAL;
323 }
324
325 if (ret < 0)
326 dev_err(tplg->dev,
327 "ASoC: vendor load failed at hdr offset %ld/0x%lx for type %d:%d\n",
328 soc_tplg_get_hdr_offset(tplg),
329 soc_tplg_get_hdr_offset(tplg),
330 hdr->type, hdr->vendor_type);
331 return ret;
332}
333
334/* pass vendor data to component driver for processing */
335static int soc_tplg_vendor_load(struct soc_tplg *tplg,
336 struct snd_soc_tplg_hdr *hdr)
337{
338 if (tplg->pass != SOC_TPLG_PASS_VENDOR)
339 return 0;
340
341 return soc_tplg_vendor_load_(tplg, hdr);
342}
343
344/* optionally pass new dynamic widget to component driver. This is mainly for
345 * external widgets where we can assign private data/ops */
346static int soc_tplg_widget_load(struct soc_tplg *tplg,
347 struct snd_soc_dapm_widget *w, struct snd_soc_tplg_dapm_widget *tplg_w)
348{
349 if (tplg->comp && tplg->ops && tplg->ops->widget_load)
350 return tplg->ops->widget_load(tplg->comp, w, tplg_w);
351
352 return 0;
353}
354
Liam Girdwoodebd259d2017-06-09 15:43:23 +0100355/* optionally pass new dynamic widget to component driver. This is mainly for
356 * external widgets where we can assign private data/ops */
357static int soc_tplg_widget_ready(struct soc_tplg *tplg,
358 struct snd_soc_dapm_widget *w, struct snd_soc_tplg_dapm_widget *tplg_w)
359{
360 if (tplg->comp && tplg->ops && tplg->ops->widget_ready)
361 return tplg->ops->widget_ready(tplg->comp, w, tplg_w);
362
363 return 0;
364}
365
Masahiro Yamada183b8022017-02-27 14:29:20 -0800366/* pass DAI configurations to component driver for extra initialization */
Mengdong Lin64527e82016-01-15 16:13:28 +0800367static int soc_tplg_dai_load(struct soc_tplg *tplg,
368 struct snd_soc_dai_driver *dai_drv)
Liam Girdwood8a978232015-05-29 19:06:14 +0100369{
Mengdong Lin64527e82016-01-15 16:13:28 +0800370 if (tplg->comp && tplg->ops && tplg->ops->dai_load)
371 return tplg->ops->dai_load(tplg->comp, dai_drv);
Liam Girdwood8a978232015-05-29 19:06:14 +0100372
373 return 0;
374}
375
Masahiro Yamada183b8022017-02-27 14:29:20 -0800376/* pass link configurations to component driver for extra initialization */
Mengdong Linacfc7d42016-01-15 16:13:37 +0800377static int soc_tplg_dai_link_load(struct soc_tplg *tplg,
378 struct snd_soc_dai_link *link)
379{
380 if (tplg->comp && tplg->ops && tplg->ops->link_load)
381 return tplg->ops->link_load(tplg->comp, link);
382
383 return 0;
384}
385
Liam Girdwood8a978232015-05-29 19:06:14 +0100386/* tell the component driver that all firmware has been loaded in this request */
387static void soc_tplg_complete(struct soc_tplg *tplg)
388{
389 if (tplg->comp && tplg->ops && tplg->ops->complete)
390 tplg->ops->complete(tplg->comp);
391}
392
393/* add a dynamic kcontrol */
394static int soc_tplg_add_dcontrol(struct snd_card *card, struct device *dev,
395 const struct snd_kcontrol_new *control_new, const char *prefix,
396 void *data, struct snd_kcontrol **kcontrol)
397{
398 int err;
399
400 *kcontrol = snd_soc_cnew(control_new, data, control_new->name, prefix);
401 if (*kcontrol == NULL) {
402 dev_err(dev, "ASoC: Failed to create new kcontrol %s\n",
403 control_new->name);
404 return -ENOMEM;
405 }
406
407 err = snd_ctl_add(card, *kcontrol);
408 if (err < 0) {
409 dev_err(dev, "ASoC: Failed to add %s: %d\n",
410 control_new->name, err);
411 return err;
412 }
413
414 return 0;
415}
416
417/* add a dynamic kcontrol for component driver */
418static int soc_tplg_add_kcontrol(struct soc_tplg *tplg,
419 struct snd_kcontrol_new *k, struct snd_kcontrol **kcontrol)
420{
421 struct snd_soc_component *comp = tplg->comp;
422
423 return soc_tplg_add_dcontrol(comp->card->snd_card,
424 comp->dev, k, NULL, comp, kcontrol);
425}
426
427/* remove a mixer kcontrol */
428static void remove_mixer(struct snd_soc_component *comp,
429 struct snd_soc_dobj *dobj, int pass)
430{
431 struct snd_card *card = comp->card->snd_card;
432 struct soc_mixer_control *sm =
433 container_of(dobj, struct soc_mixer_control, dobj);
434 const unsigned int *p = NULL;
435
436 if (pass != SOC_TPLG_PASS_MIXER)
437 return;
438
439 if (dobj->ops && dobj->ops->control_unload)
440 dobj->ops->control_unload(comp, dobj);
441
442 if (sm->dobj.control.kcontrol->tlv.p)
443 p = sm->dobj.control.kcontrol->tlv.p;
444 snd_ctl_remove(card, sm->dobj.control.kcontrol);
445 list_del(&sm->dobj.list);
446 kfree(sm);
447 kfree(p);
448}
449
450/* remove an enum kcontrol */
451static void remove_enum(struct snd_soc_component *comp,
452 struct snd_soc_dobj *dobj, int pass)
453{
454 struct snd_card *card = comp->card->snd_card;
455 struct soc_enum *se = container_of(dobj, struct soc_enum, dobj);
456 int i;
457
458 if (pass != SOC_TPLG_PASS_MIXER)
459 return;
460
461 if (dobj->ops && dobj->ops->control_unload)
462 dobj->ops->control_unload(comp, dobj);
463
464 snd_ctl_remove(card, se->dobj.control.kcontrol);
465 list_del(&se->dobj.list);
466
467 kfree(se->dobj.control.dvalues);
468 for (i = 0; i < se->items; i++)
469 kfree(se->dobj.control.dtexts[i]);
470 kfree(se);
471}
472
473/* remove a byte kcontrol */
474static void remove_bytes(struct snd_soc_component *comp,
475 struct snd_soc_dobj *dobj, int pass)
476{
477 struct snd_card *card = comp->card->snd_card;
478 struct soc_bytes_ext *sb =
479 container_of(dobj, struct soc_bytes_ext, dobj);
480
481 if (pass != SOC_TPLG_PASS_MIXER)
482 return;
483
484 if (dobj->ops && dobj->ops->control_unload)
485 dobj->ops->control_unload(comp, dobj);
486
487 snd_ctl_remove(card, sb->dobj.control.kcontrol);
488 list_del(&sb->dobj.list);
489 kfree(sb);
490}
491
492/* remove a widget and it's kcontrols - routes must be removed first */
493static void remove_widget(struct snd_soc_component *comp,
494 struct snd_soc_dobj *dobj, int pass)
495{
496 struct snd_card *card = comp->card->snd_card;
497 struct snd_soc_dapm_widget *w =
498 container_of(dobj, struct snd_soc_dapm_widget, dobj);
499 int i;
500
501 if (pass != SOC_TPLG_PASS_WIDGET)
502 return;
503
504 if (dobj->ops && dobj->ops->widget_unload)
505 dobj->ops->widget_unload(comp, dobj);
506
Liam Girdwood05bdcf12018-03-14 20:42:40 +0000507 if (!w->kcontrols)
508 goto free_news;
509
Liam Girdwood8a978232015-05-29 19:06:14 +0100510 /*
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +0800511 * Dynamic Widgets either have 1..N enum kcontrols or mixers.
Liam Girdwood8a978232015-05-29 19:06:14 +0100512 * The enum may either have an array of values or strings.
513 */
Mengdong Lineea3dd42016-11-25 16:09:17 +0800514 if (dobj->widget.kcontrol_type == SND_SOC_TPLG_TYPE_ENUM) {
Liam Girdwood8a978232015-05-29 19:06:14 +0100515 /* enumerated widget mixer */
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +0800516 for (i = 0; i < w->num_kcontrols; i++) {
517 struct snd_kcontrol *kcontrol = w->kcontrols[i];
518 struct soc_enum *se =
519 (struct soc_enum *)kcontrol->private_value;
Colin Ian Kingd7766aa2017-04-15 18:49:54 +0100520 int j;
Liam Girdwood8a978232015-05-29 19:06:14 +0100521
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +0800522 snd_ctl_remove(card, kcontrol);
Liam Girdwood8a978232015-05-29 19:06:14 +0100523
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +0800524 kfree(se->dobj.control.dvalues);
Colin Ian Kingd7766aa2017-04-15 18:49:54 +0100525 for (j = 0; j < se->items; j++)
526 kfree(se->dobj.control.dtexts[j]);
Liam Girdwood8a978232015-05-29 19:06:14 +0100527
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +0800528 kfree(se);
Liam Girdwood267e2c62018-03-27 12:04:04 +0100529 kfree(w->kcontrol_news[i].name);
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +0800530 }
Liam Girdwood8a978232015-05-29 19:06:14 +0100531 } else {
Mengdong Lineea3dd42016-11-25 16:09:17 +0800532 /* volume mixer or bytes controls */
Liam Girdwood8a978232015-05-29 19:06:14 +0100533 for (i = 0; i < w->num_kcontrols; i++) {
534 struct snd_kcontrol *kcontrol = w->kcontrols[i];
Liam Girdwood8a978232015-05-29 19:06:14 +0100535
Mengdong Lineea3dd42016-11-25 16:09:17 +0800536 if (dobj->widget.kcontrol_type
537 == SND_SOC_TPLG_TYPE_MIXER)
538 kfree(kcontrol->tlv.p);
Liam Girdwood8a978232015-05-29 19:06:14 +0100539
Mengdong Lineea3dd42016-11-25 16:09:17 +0800540 /* Private value is used as struct soc_mixer_control
541 * for volume mixers or soc_bytes_ext for bytes
542 * controls.
543 */
544 kfree((void *)kcontrol->private_value);
Colin Ian Kingc2b36122016-12-09 14:17:47 +0000545 snd_ctl_remove(card, kcontrol);
Liam Girdwood267e2c62018-03-27 12:04:04 +0100546 kfree(w->kcontrol_news[i].name);
Liam Girdwood8a978232015-05-29 19:06:14 +0100547 }
Liam Girdwood8a978232015-05-29 19:06:14 +0100548 }
Liam Girdwood05bdcf12018-03-14 20:42:40 +0000549
550free_news:
551 kfree(w->kcontrol_news);
552
Liam Girdwood8a978232015-05-29 19:06:14 +0100553 /* widget w is freed by soc-dapm.c */
554}
555
Mengdong Lin64527e82016-01-15 16:13:28 +0800556/* remove DAI configurations */
557static void remove_dai(struct snd_soc_component *comp,
Liam Girdwood8a978232015-05-29 19:06:14 +0100558 struct snd_soc_dobj *dobj, int pass)
559{
Mengdong Lin64527e82016-01-15 16:13:28 +0800560 struct snd_soc_dai_driver *dai_drv =
561 container_of(dobj, struct snd_soc_dai_driver, dobj);
562
Liam Girdwood8a978232015-05-29 19:06:14 +0100563 if (pass != SOC_TPLG_PASS_PCM_DAI)
564 return;
565
Mengdong Lin64527e82016-01-15 16:13:28 +0800566 if (dobj->ops && dobj->ops->dai_unload)
567 dobj->ops->dai_unload(comp, dobj);
Liam Girdwood8a978232015-05-29 19:06:14 +0100568
Mengdong Lin8f27c4a2016-11-03 01:02:59 +0800569 kfree(dai_drv->name);
Liam Girdwood8a978232015-05-29 19:06:14 +0100570 list_del(&dobj->list);
Mengdong Lin64527e82016-01-15 16:13:28 +0800571 kfree(dai_drv);
Liam Girdwood8a978232015-05-29 19:06:14 +0100572}
573
Mengdong Linacfc7d42016-01-15 16:13:37 +0800574/* remove link configurations */
575static void remove_link(struct snd_soc_component *comp,
576 struct snd_soc_dobj *dobj, int pass)
577{
578 struct snd_soc_dai_link *link =
579 container_of(dobj, struct snd_soc_dai_link, dobj);
580
581 if (pass != SOC_TPLG_PASS_PCM_DAI)
582 return;
583
584 if (dobj->ops && dobj->ops->link_unload)
585 dobj->ops->link_unload(comp, dobj);
586
Mengdong Lin8f27c4a2016-11-03 01:02:59 +0800587 kfree(link->name);
588 kfree(link->stream_name);
589 kfree(link->cpu_dai_name);
590
Mengdong Linacfc7d42016-01-15 16:13:37 +0800591 list_del(&dobj->list);
592 snd_soc_remove_dai_link(comp->card, link);
593 kfree(link);
594}
595
Liam Girdwood8a978232015-05-29 19:06:14 +0100596/* bind a kcontrol to it's IO handlers */
597static int soc_tplg_kcontrol_bind_io(struct snd_soc_tplg_ctl_hdr *hdr,
598 struct snd_kcontrol_new *k,
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800599 const struct soc_tplg *tplg)
Liam Girdwood8a978232015-05-29 19:06:14 +0100600{
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800601 const struct snd_soc_tplg_kcontrol_ops *ops;
Mengdong Lin1a3232d2015-08-18 18:12:20 +0800602 const struct snd_soc_tplg_bytes_ext_ops *ext_ops;
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800603 int num_ops, i;
Liam Girdwood8a978232015-05-29 19:06:14 +0100604
Mengdong Lin1a3232d2015-08-18 18:12:20 +0800605 if (hdr->ops.info == SND_SOC_TPLG_CTL_BYTES
606 && k->iface & SNDRV_CTL_ELEM_IFACE_MIXER
607 && k->access & SNDRV_CTL_ELEM_ACCESS_TLV_READWRITE
608 && k->access & SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK) {
609 struct soc_bytes_ext *sbe;
610 struct snd_soc_tplg_bytes_control *be;
611
612 sbe = (struct soc_bytes_ext *)k->private_value;
613 be = container_of(hdr, struct snd_soc_tplg_bytes_control, hdr);
614
615 /* TLV bytes controls need standard kcontrol info handler,
616 * TLV callback and extended put/get handlers.
617 */
Omair M Abdullahf4be9782015-11-09 23:20:01 +0530618 k->info = snd_soc_bytes_info_ext;
Mengdong Lin1a3232d2015-08-18 18:12:20 +0800619 k->tlv.c = snd_soc_bytes_tlv_callback;
620
621 ext_ops = tplg->bytes_ext_ops;
622 num_ops = tplg->bytes_ext_ops_count;
623 for (i = 0; i < num_ops; i++) {
624 if (!sbe->put && ext_ops[i].id == be->ext_ops.put)
625 sbe->put = ext_ops[i].put;
626 if (!sbe->get && ext_ops[i].id == be->ext_ops.get)
627 sbe->get = ext_ops[i].get;
628 }
629
630 if (sbe->put && sbe->get)
631 return 0;
632 else
633 return -EINVAL;
634 }
635
Mengdong Lin88a17d82015-08-18 18:11:51 +0800636 /* try and map vendor specific kcontrol handlers first */
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800637 ops = tplg->io_ops;
638 num_ops = tplg->io_ops_count;
Liam Girdwood8a978232015-05-29 19:06:14 +0100639 for (i = 0; i < num_ops; i++) {
640
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800641 if (k->put == NULL && ops[i].id == hdr->ops.put)
Liam Girdwood8a978232015-05-29 19:06:14 +0100642 k->put = ops[i].put;
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800643 if (k->get == NULL && ops[i].id == hdr->ops.get)
Liam Girdwood8a978232015-05-29 19:06:14 +0100644 k->get = ops[i].get;
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800645 if (k->info == NULL && ops[i].id == hdr->ops.info)
646 k->info = ops[i].info;
Liam Girdwood8a978232015-05-29 19:06:14 +0100647 }
648
Mengdong Lin88a17d82015-08-18 18:11:51 +0800649 /* vendor specific handlers found ? */
650 if (k->put && k->get && k->info)
651 return 0;
652
653 /* none found so try standard kcontrol handlers */
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800654 ops = io_ops;
655 num_ops = ARRAY_SIZE(io_ops);
Mengdong Lin88a17d82015-08-18 18:11:51 +0800656 for (i = 0; i < num_ops; i++) {
657
658 if (k->put == NULL && ops[i].id == hdr->ops.put)
659 k->put = ops[i].put;
660 if (k->get == NULL && ops[i].id == hdr->ops.get)
661 k->get = ops[i].get;
662 if (k->info == NULL && ops[i].id == hdr->ops.info)
Liam Girdwood8a978232015-05-29 19:06:14 +0100663 k->info = ops[i].info;
664 }
665
666 /* standard handlers found ? */
667 if (k->put && k->get && k->info)
668 return 0;
669
Liam Girdwood8a978232015-05-29 19:06:14 +0100670 /* nothing to bind */
671 return -EINVAL;
672}
673
674/* bind a widgets to it's evnt handlers */
675int snd_soc_tplg_widget_bind_event(struct snd_soc_dapm_widget *w,
676 const struct snd_soc_tplg_widget_events *events,
677 int num_events, u16 event_type)
678{
679 int i;
680
681 w->event = NULL;
682
683 for (i = 0; i < num_events; i++) {
684 if (event_type == events[i].type) {
685
686 /* found - so assign event */
687 w->event = events[i].event_handler;
688 return 0;
689 }
690 }
691
692 /* not found */
693 return -EINVAL;
694}
695EXPORT_SYMBOL_GPL(snd_soc_tplg_widget_bind_event);
696
697/* optionally pass new dynamic kcontrol to component driver. */
698static int soc_tplg_init_kcontrol(struct soc_tplg *tplg,
699 struct snd_kcontrol_new *k, struct snd_soc_tplg_ctl_hdr *hdr)
700{
701 if (tplg->comp && tplg->ops && tplg->ops->control_load)
702 return tplg->ops->control_load(tplg->comp, k, hdr);
703
704 return 0;
705}
706
Mengdong Lin28a87ee2015-08-05 14:41:13 +0100707
708static int soc_tplg_create_tlv_db_scale(struct soc_tplg *tplg,
709 struct snd_kcontrol_new *kc, struct snd_soc_tplg_tlv_dbscale *scale)
Liam Girdwood8a978232015-05-29 19:06:14 +0100710{
Mengdong Lin28a87ee2015-08-05 14:41:13 +0100711 unsigned int item_len = 2 * sizeof(unsigned int);
712 unsigned int *p;
Liam Girdwood8a978232015-05-29 19:06:14 +0100713
Mengdong Lin28a87ee2015-08-05 14:41:13 +0100714 p = kzalloc(item_len + 2 * sizeof(unsigned int), GFP_KERNEL);
715 if (!p)
Liam Girdwood8a978232015-05-29 19:06:14 +0100716 return -ENOMEM;
717
Mengdong Lin28a87ee2015-08-05 14:41:13 +0100718 p[0] = SNDRV_CTL_TLVT_DB_SCALE;
719 p[1] = item_len;
720 p[2] = scale->min;
721 p[3] = (scale->step & TLV_DB_SCALE_MASK)
722 | (scale->mute ? TLV_DB_SCALE_MUTE : 0);
Liam Girdwood8a978232015-05-29 19:06:14 +0100723
Mengdong Lin28a87ee2015-08-05 14:41:13 +0100724 kc->tlv.p = (void *)p;
725 return 0;
726}
727
728static int soc_tplg_create_tlv(struct soc_tplg *tplg,
729 struct snd_kcontrol_new *kc, struct snd_soc_tplg_ctl_hdr *tc)
730{
731 struct snd_soc_tplg_ctl_tlv *tplg_tlv;
732
733 if (!(tc->access & SNDRV_CTL_ELEM_ACCESS_TLV_READWRITE))
734 return 0;
735
Mengdong Lin1a3232d2015-08-18 18:12:20 +0800736 if (!(tc->access & SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK)) {
Mengdong Lin28a87ee2015-08-05 14:41:13 +0100737 tplg_tlv = &tc->tlv;
738 switch (tplg_tlv->type) {
739 case SNDRV_CTL_TLVT_DB_SCALE:
740 return soc_tplg_create_tlv_db_scale(tplg, kc,
741 &tplg_tlv->scale);
742
743 /* TODO: add support for other TLV types */
744 default:
745 dev_dbg(tplg->dev, "Unsupported TLV type %d\n",
746 tplg_tlv->type);
747 return -EINVAL;
748 }
749 }
Liam Girdwood8a978232015-05-29 19:06:14 +0100750
751 return 0;
752}
753
754static inline void soc_tplg_free_tlv(struct soc_tplg *tplg,
755 struct snd_kcontrol_new *kc)
756{
757 kfree(kc->tlv.p);
758}
759
760static int soc_tplg_dbytes_create(struct soc_tplg *tplg, unsigned int count,
761 size_t size)
762{
763 struct snd_soc_tplg_bytes_control *be;
764 struct soc_bytes_ext *sbe;
765 struct snd_kcontrol_new kc;
766 int i, err;
767
768 if (soc_tplg_check_elem_count(tplg,
769 sizeof(struct snd_soc_tplg_bytes_control), count,
770 size, "mixer bytes")) {
771 dev_err(tplg->dev, "ASoC: Invalid count %d for byte control\n",
772 count);
773 return -EINVAL;
774 }
775
776 for (i = 0; i < count; i++) {
777 be = (struct snd_soc_tplg_bytes_control *)tplg->pos;
778
779 /* validate kcontrol */
780 if (strnlen(be->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
781 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
782 return -EINVAL;
783
784 sbe = kzalloc(sizeof(*sbe), GFP_KERNEL);
785 if (sbe == NULL)
786 return -ENOMEM;
787
788 tplg->pos += (sizeof(struct snd_soc_tplg_bytes_control) +
789 be->priv.size);
790
791 dev_dbg(tplg->dev,
792 "ASoC: adding bytes kcontrol %s with access 0x%x\n",
793 be->hdr.name, be->hdr.access);
794
795 memset(&kc, 0, sizeof(kc));
796 kc.name = be->hdr.name;
797 kc.private_value = (long)sbe;
798 kc.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
799 kc.access = be->hdr.access;
800
801 sbe->max = be->max;
802 sbe->dobj.type = SND_SOC_DOBJ_BYTES;
803 sbe->dobj.ops = tplg->ops;
804 INIT_LIST_HEAD(&sbe->dobj.list);
805
806 /* map io handlers */
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800807 err = soc_tplg_kcontrol_bind_io(&be->hdr, &kc, tplg);
Liam Girdwood8a978232015-05-29 19:06:14 +0100808 if (err) {
809 soc_control_err(tplg, &be->hdr, be->hdr.name);
810 kfree(sbe);
811 continue;
812 }
813
814 /* pass control to driver for optional further init */
815 err = soc_tplg_init_kcontrol(tplg, &kc,
816 (struct snd_soc_tplg_ctl_hdr *)be);
817 if (err < 0) {
818 dev_err(tplg->dev, "ASoC: failed to init %s\n",
819 be->hdr.name);
820 kfree(sbe);
821 continue;
822 }
823
824 /* register control here */
825 err = soc_tplg_add_kcontrol(tplg, &kc,
826 &sbe->dobj.control.kcontrol);
827 if (err < 0) {
828 dev_err(tplg->dev, "ASoC: failed to add %s\n",
829 be->hdr.name);
830 kfree(sbe);
831 continue;
832 }
833
834 list_add(&sbe->dobj.list, &tplg->comp->dobj_list);
835 }
836 return 0;
837
838}
839
840static int soc_tplg_dmixer_create(struct soc_tplg *tplg, unsigned int count,
841 size_t size)
842{
843 struct snd_soc_tplg_mixer_control *mc;
844 struct soc_mixer_control *sm;
845 struct snd_kcontrol_new kc;
846 int i, err;
847
848 if (soc_tplg_check_elem_count(tplg,
849 sizeof(struct snd_soc_tplg_mixer_control),
850 count, size, "mixers")) {
851
852 dev_err(tplg->dev, "ASoC: invalid count %d for controls\n",
853 count);
854 return -EINVAL;
855 }
856
857 for (i = 0; i < count; i++) {
858 mc = (struct snd_soc_tplg_mixer_control *)tplg->pos;
859
860 /* validate kcontrol */
861 if (strnlen(mc->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
862 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
863 return -EINVAL;
864
865 sm = kzalloc(sizeof(*sm), GFP_KERNEL);
866 if (sm == NULL)
867 return -ENOMEM;
868 tplg->pos += (sizeof(struct snd_soc_tplg_mixer_control) +
869 mc->priv.size);
870
871 dev_dbg(tplg->dev,
872 "ASoC: adding mixer kcontrol %s with access 0x%x\n",
873 mc->hdr.name, mc->hdr.access);
874
875 memset(&kc, 0, sizeof(kc));
876 kc.name = mc->hdr.name;
877 kc.private_value = (long)sm;
878 kc.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
879 kc.access = mc->hdr.access;
880
881 /* we only support FL/FR channel mapping atm */
882 sm->reg = tplc_chan_get_reg(tplg, mc->channel,
883 SNDRV_CHMAP_FL);
884 sm->rreg = tplc_chan_get_reg(tplg, mc->channel,
885 SNDRV_CHMAP_FR);
886 sm->shift = tplc_chan_get_shift(tplg, mc->channel,
887 SNDRV_CHMAP_FL);
888 sm->rshift = tplc_chan_get_shift(tplg, mc->channel,
889 SNDRV_CHMAP_FR);
890
891 sm->max = mc->max;
892 sm->min = mc->min;
893 sm->invert = mc->invert;
894 sm->platform_max = mc->platform_max;
895 sm->dobj.index = tplg->index;
896 sm->dobj.ops = tplg->ops;
897 sm->dobj.type = SND_SOC_DOBJ_MIXER;
898 INIT_LIST_HEAD(&sm->dobj.list);
899
900 /* map io handlers */
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800901 err = soc_tplg_kcontrol_bind_io(&mc->hdr, &kc, tplg);
Liam Girdwood8a978232015-05-29 19:06:14 +0100902 if (err) {
903 soc_control_err(tplg, &mc->hdr, mc->hdr.name);
904 kfree(sm);
905 continue;
906 }
907
908 /* pass control to driver for optional further init */
909 err = soc_tplg_init_kcontrol(tplg, &kc,
910 (struct snd_soc_tplg_ctl_hdr *) mc);
911 if (err < 0) {
912 dev_err(tplg->dev, "ASoC: failed to init %s\n",
913 mc->hdr.name);
914 kfree(sm);
915 continue;
916 }
917
918 /* create any TLV data */
Mengdong Lin28a87ee2015-08-05 14:41:13 +0100919 soc_tplg_create_tlv(tplg, &kc, &mc->hdr);
Liam Girdwood8a978232015-05-29 19:06:14 +0100920
921 /* register control here */
922 err = soc_tplg_add_kcontrol(tplg, &kc,
923 &sm->dobj.control.kcontrol);
924 if (err < 0) {
925 dev_err(tplg->dev, "ASoC: failed to add %s\n",
926 mc->hdr.name);
927 soc_tplg_free_tlv(tplg, &kc);
928 kfree(sm);
929 continue;
930 }
931
932 list_add(&sm->dobj.list, &tplg->comp->dobj_list);
933 }
934
935 return 0;
936}
937
938static int soc_tplg_denum_create_texts(struct soc_enum *se,
939 struct snd_soc_tplg_enum_control *ec)
940{
941 int i, ret;
942
943 se->dobj.control.dtexts =
944 kzalloc(sizeof(char *) * ec->items, GFP_KERNEL);
945 if (se->dobj.control.dtexts == NULL)
946 return -ENOMEM;
947
948 for (i = 0; i < ec->items; i++) {
949
950 if (strnlen(ec->texts[i], SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
951 SNDRV_CTL_ELEM_ID_NAME_MAXLEN) {
952 ret = -EINVAL;
953 goto err;
954 }
955
956 se->dobj.control.dtexts[i] = kstrdup(ec->texts[i], GFP_KERNEL);
957 if (!se->dobj.control.dtexts[i]) {
958 ret = -ENOMEM;
959 goto err;
960 }
961 }
962
Mousumi Janab6e38b22017-04-11 13:06:22 +0530963 se->texts = (const char * const *)se->dobj.control.dtexts;
Liam Girdwood8a978232015-05-29 19:06:14 +0100964 return 0;
965
966err:
967 for (--i; i >= 0; i--)
968 kfree(se->dobj.control.dtexts[i]);
969 kfree(se->dobj.control.dtexts);
970 return ret;
971}
972
973static int soc_tplg_denum_create_values(struct soc_enum *se,
974 struct snd_soc_tplg_enum_control *ec)
975{
976 if (ec->items > sizeof(*ec->values))
977 return -EINVAL;
978
Andrzej Hajda376c0af2015-08-07 09:59:37 +0200979 se->dobj.control.dvalues = kmemdup(ec->values,
980 ec->items * sizeof(u32),
981 GFP_KERNEL);
Liam Girdwood8a978232015-05-29 19:06:14 +0100982 if (!se->dobj.control.dvalues)
983 return -ENOMEM;
984
Liam Girdwood8a978232015-05-29 19:06:14 +0100985 return 0;
986}
987
988static int soc_tplg_denum_create(struct soc_tplg *tplg, unsigned int count,
989 size_t size)
990{
991 struct snd_soc_tplg_enum_control *ec;
992 struct soc_enum *se;
993 struct snd_kcontrol_new kc;
994 int i, ret, err;
995
996 if (soc_tplg_check_elem_count(tplg,
997 sizeof(struct snd_soc_tplg_enum_control),
998 count, size, "enums")) {
999
1000 dev_err(tplg->dev, "ASoC: invalid count %d for enum controls\n",
1001 count);
1002 return -EINVAL;
1003 }
1004
1005 for (i = 0; i < count; i++) {
1006 ec = (struct snd_soc_tplg_enum_control *)tplg->pos;
1007 tplg->pos += (sizeof(struct snd_soc_tplg_enum_control) +
1008 ec->priv.size);
1009
1010 /* validate kcontrol */
1011 if (strnlen(ec->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1012 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
1013 return -EINVAL;
1014
1015 se = kzalloc((sizeof(*se)), GFP_KERNEL);
1016 if (se == NULL)
1017 return -ENOMEM;
1018
1019 dev_dbg(tplg->dev, "ASoC: adding enum kcontrol %s size %d\n",
1020 ec->hdr.name, ec->items);
1021
1022 memset(&kc, 0, sizeof(kc));
1023 kc.name = ec->hdr.name;
1024 kc.private_value = (long)se;
1025 kc.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
1026 kc.access = ec->hdr.access;
1027
1028 se->reg = tplc_chan_get_reg(tplg, ec->channel, SNDRV_CHMAP_FL);
1029 se->shift_l = tplc_chan_get_shift(tplg, ec->channel,
1030 SNDRV_CHMAP_FL);
1031 se->shift_r = tplc_chan_get_shift(tplg, ec->channel,
1032 SNDRV_CHMAP_FL);
1033
1034 se->items = ec->items;
1035 se->mask = ec->mask;
1036 se->dobj.index = tplg->index;
1037 se->dobj.type = SND_SOC_DOBJ_ENUM;
1038 se->dobj.ops = tplg->ops;
1039 INIT_LIST_HEAD(&se->dobj.list);
1040
1041 switch (ec->hdr.ops.info) {
1042 case SND_SOC_TPLG_DAPM_CTL_ENUM_VALUE:
1043 case SND_SOC_TPLG_CTL_ENUM_VALUE:
1044 err = soc_tplg_denum_create_values(se, ec);
1045 if (err < 0) {
1046 dev_err(tplg->dev,
1047 "ASoC: could not create values for %s\n",
1048 ec->hdr.name);
1049 kfree(se);
1050 continue;
1051 }
1052 /* fall through and create texts */
1053 case SND_SOC_TPLG_CTL_ENUM:
1054 case SND_SOC_TPLG_DAPM_CTL_ENUM_DOUBLE:
1055 case SND_SOC_TPLG_DAPM_CTL_ENUM_VIRT:
1056 err = soc_tplg_denum_create_texts(se, ec);
1057 if (err < 0) {
1058 dev_err(tplg->dev,
1059 "ASoC: could not create texts for %s\n",
1060 ec->hdr.name);
1061 kfree(se);
1062 continue;
1063 }
1064 break;
1065 default:
1066 dev_err(tplg->dev,
1067 "ASoC: invalid enum control type %d for %s\n",
1068 ec->hdr.ops.info, ec->hdr.name);
1069 kfree(se);
1070 continue;
1071 }
1072
1073 /* map io handlers */
Mengdong Lin2b5cdb92015-08-18 18:12:01 +08001074 err = soc_tplg_kcontrol_bind_io(&ec->hdr, &kc, tplg);
Liam Girdwood8a978232015-05-29 19:06:14 +01001075 if (err) {
1076 soc_control_err(tplg, &ec->hdr, ec->hdr.name);
1077 kfree(se);
1078 continue;
1079 }
1080
1081 /* pass control to driver for optional further init */
1082 err = soc_tplg_init_kcontrol(tplg, &kc,
1083 (struct snd_soc_tplg_ctl_hdr *) ec);
1084 if (err < 0) {
1085 dev_err(tplg->dev, "ASoC: failed to init %s\n",
1086 ec->hdr.name);
1087 kfree(se);
1088 continue;
1089 }
1090
1091 /* register control here */
1092 ret = soc_tplg_add_kcontrol(tplg,
1093 &kc, &se->dobj.control.kcontrol);
1094 if (ret < 0) {
1095 dev_err(tplg->dev, "ASoC: could not add kcontrol %s\n",
1096 ec->hdr.name);
1097 kfree(se);
1098 continue;
1099 }
1100
1101 list_add(&se->dobj.list, &tplg->comp->dobj_list);
1102 }
1103
1104 return 0;
1105}
1106
1107static int soc_tplg_kcontrol_elems_load(struct soc_tplg *tplg,
1108 struct snd_soc_tplg_hdr *hdr)
1109{
1110 struct snd_soc_tplg_ctl_hdr *control_hdr;
1111 int i;
1112
1113 if (tplg->pass != SOC_TPLG_PASS_MIXER) {
1114 tplg->pos += hdr->size + hdr->payload_size;
1115 return 0;
1116 }
1117
1118 dev_dbg(tplg->dev, "ASoC: adding %d kcontrols at 0x%lx\n", hdr->count,
1119 soc_tplg_get_offset(tplg));
1120
1121 for (i = 0; i < hdr->count; i++) {
1122
1123 control_hdr = (struct snd_soc_tplg_ctl_hdr *)tplg->pos;
1124
Mengdong Lin06eb49f2016-04-27 14:52:56 +08001125 if (control_hdr->size != sizeof(*control_hdr)) {
1126 dev_err(tplg->dev, "ASoC: invalid control size\n");
1127 return -EINVAL;
1128 }
1129
Liam Girdwood8a978232015-05-29 19:06:14 +01001130 switch (control_hdr->ops.info) {
1131 case SND_SOC_TPLG_CTL_VOLSW:
1132 case SND_SOC_TPLG_CTL_STROBE:
1133 case SND_SOC_TPLG_CTL_VOLSW_SX:
1134 case SND_SOC_TPLG_CTL_VOLSW_XR_SX:
1135 case SND_SOC_TPLG_CTL_RANGE:
1136 case SND_SOC_TPLG_DAPM_CTL_VOLSW:
1137 case SND_SOC_TPLG_DAPM_CTL_PIN:
1138 soc_tplg_dmixer_create(tplg, 1, hdr->payload_size);
1139 break;
1140 case SND_SOC_TPLG_CTL_ENUM:
1141 case SND_SOC_TPLG_CTL_ENUM_VALUE:
1142 case SND_SOC_TPLG_DAPM_CTL_ENUM_DOUBLE:
1143 case SND_SOC_TPLG_DAPM_CTL_ENUM_VIRT:
1144 case SND_SOC_TPLG_DAPM_CTL_ENUM_VALUE:
1145 soc_tplg_denum_create(tplg, 1, hdr->payload_size);
1146 break;
1147 case SND_SOC_TPLG_CTL_BYTES:
1148 soc_tplg_dbytes_create(tplg, 1, hdr->payload_size);
1149 break;
1150 default:
1151 soc_bind_err(tplg, control_hdr, i);
1152 return -EINVAL;
1153 }
1154 }
1155
1156 return 0;
1157}
1158
1159static int soc_tplg_dapm_graph_elems_load(struct soc_tplg *tplg,
1160 struct snd_soc_tplg_hdr *hdr)
1161{
1162 struct snd_soc_dapm_context *dapm = &tplg->comp->dapm;
1163 struct snd_soc_dapm_route route;
1164 struct snd_soc_tplg_dapm_graph_elem *elem;
1165 int count = hdr->count, i;
1166
1167 if (tplg->pass != SOC_TPLG_PASS_GRAPH) {
1168 tplg->pos += hdr->size + hdr->payload_size;
1169 return 0;
1170 }
1171
1172 if (soc_tplg_check_elem_count(tplg,
1173 sizeof(struct snd_soc_tplg_dapm_graph_elem),
1174 count, hdr->payload_size, "graph")) {
1175
1176 dev_err(tplg->dev, "ASoC: invalid count %d for DAPM routes\n",
1177 count);
1178 return -EINVAL;
1179 }
1180
Liam Girdwoodb75a6512017-06-29 14:22:26 +01001181 dev_dbg(tplg->dev, "ASoC: adding %d DAPM routes for index %d\n", count,
1182 hdr->index);
Liam Girdwood8a978232015-05-29 19:06:14 +01001183
1184 for (i = 0; i < count; i++) {
1185 elem = (struct snd_soc_tplg_dapm_graph_elem *)tplg->pos;
1186 tplg->pos += sizeof(struct snd_soc_tplg_dapm_graph_elem);
1187
1188 /* validate routes */
1189 if (strnlen(elem->source, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1190 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
1191 return -EINVAL;
1192 if (strnlen(elem->sink, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1193 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
1194 return -EINVAL;
1195 if (strnlen(elem->control, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1196 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
1197 return -EINVAL;
1198
1199 route.source = elem->source;
1200 route.sink = elem->sink;
1201 route.connected = NULL; /* set to NULL atm for tplg users */
1202 if (strnlen(elem->control, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) == 0)
1203 route.control = NULL;
1204 else
1205 route.control = elem->control;
1206
1207 /* add route, but keep going if some fail */
1208 snd_soc_dapm_add_routes(dapm, &route, 1);
1209 }
1210
1211 return 0;
1212}
1213
1214static struct snd_kcontrol_new *soc_tplg_dapm_widget_dmixer_create(
1215 struct soc_tplg *tplg, int num_kcontrols)
1216{
1217 struct snd_kcontrol_new *kc;
1218 struct soc_mixer_control *sm;
1219 struct snd_soc_tplg_mixer_control *mc;
1220 int i, err;
1221
Axel Lin4ca7deb2015-08-05 22:34:22 +08001222 kc = kcalloc(num_kcontrols, sizeof(*kc), GFP_KERNEL);
Liam Girdwood8a978232015-05-29 19:06:14 +01001223 if (kc == NULL)
1224 return NULL;
1225
1226 for (i = 0; i < num_kcontrols; i++) {
1227 mc = (struct snd_soc_tplg_mixer_control *)tplg->pos;
1228 sm = kzalloc(sizeof(*sm), GFP_KERNEL);
1229 if (sm == NULL)
1230 goto err;
1231
1232 tplg->pos += (sizeof(struct snd_soc_tplg_mixer_control) +
1233 mc->priv.size);
1234
1235 /* validate kcontrol */
1236 if (strnlen(mc->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1237 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
1238 goto err_str;
1239
1240 dev_dbg(tplg->dev, " adding DAPM widget mixer control %s at %d\n",
1241 mc->hdr.name, i);
1242
Liam Girdwood267e2c62018-03-27 12:04:04 +01001243 kc[i].name = kstrdup(mc->hdr.name, GFP_KERNEL);
1244 if (kc[i].name == NULL)
1245 goto err_str;
Liam Girdwood8a978232015-05-29 19:06:14 +01001246 kc[i].private_value = (long)sm;
1247 kc[i].iface = SNDRV_CTL_ELEM_IFACE_MIXER;
1248 kc[i].access = mc->hdr.access;
1249
1250 /* we only support FL/FR channel mapping atm */
1251 sm->reg = tplc_chan_get_reg(tplg, mc->channel,
1252 SNDRV_CHMAP_FL);
1253 sm->rreg = tplc_chan_get_reg(tplg, mc->channel,
1254 SNDRV_CHMAP_FR);
1255 sm->shift = tplc_chan_get_shift(tplg, mc->channel,
1256 SNDRV_CHMAP_FL);
1257 sm->rshift = tplc_chan_get_shift(tplg, mc->channel,
1258 SNDRV_CHMAP_FR);
1259
1260 sm->max = mc->max;
1261 sm->min = mc->min;
1262 sm->invert = mc->invert;
1263 sm->platform_max = mc->platform_max;
1264 sm->dobj.index = tplg->index;
1265 INIT_LIST_HEAD(&sm->dobj.list);
1266
1267 /* map io handlers */
Mengdong Lin2b5cdb92015-08-18 18:12:01 +08001268 err = soc_tplg_kcontrol_bind_io(&mc->hdr, &kc[i], tplg);
Liam Girdwood8a978232015-05-29 19:06:14 +01001269 if (err) {
1270 soc_control_err(tplg, &mc->hdr, mc->hdr.name);
1271 kfree(sm);
1272 continue;
1273 }
1274
1275 /* pass control to driver for optional further init */
1276 err = soc_tplg_init_kcontrol(tplg, &kc[i],
1277 (struct snd_soc_tplg_ctl_hdr *)mc);
1278 if (err < 0) {
1279 dev_err(tplg->dev, "ASoC: failed to init %s\n",
1280 mc->hdr.name);
1281 kfree(sm);
1282 continue;
1283 }
Ranjani Sridharanbde8b382018-03-09 11:11:17 -08001284
1285 /* create any TLV data */
1286 soc_tplg_create_tlv(tplg, &kc[i], &mc->hdr);
Liam Girdwood8a978232015-05-29 19:06:14 +01001287 }
1288 return kc;
1289
1290err_str:
1291 kfree(sm);
1292err:
Liam Girdwood267e2c62018-03-27 12:04:04 +01001293 for (--i; i >= 0; i--) {
Liam Girdwood8a978232015-05-29 19:06:14 +01001294 kfree((void *)kc[i].private_value);
Liam Girdwood267e2c62018-03-27 12:04:04 +01001295 kfree(kc[i].name);
1296 }
Liam Girdwood8a978232015-05-29 19:06:14 +01001297 kfree(kc);
1298 return NULL;
1299}
1300
1301static struct snd_kcontrol_new *soc_tplg_dapm_widget_denum_create(
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001302 struct soc_tplg *tplg, int num_kcontrols)
Liam Girdwood8a978232015-05-29 19:06:14 +01001303{
1304 struct snd_kcontrol_new *kc;
1305 struct snd_soc_tplg_enum_control *ec;
1306 struct soc_enum *se;
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001307 int i, j, err;
Liam Girdwood8a978232015-05-29 19:06:14 +01001308
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001309 kc = kcalloc(num_kcontrols, sizeof(*kc), GFP_KERNEL);
Liam Girdwood8a978232015-05-29 19:06:14 +01001310 if (kc == NULL)
1311 return NULL;
1312
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001313 for (i = 0; i < num_kcontrols; i++) {
1314 ec = (struct snd_soc_tplg_enum_control *)tplg->pos;
1315 /* validate kcontrol */
1316 if (strnlen(ec->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1317 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
Christophe JAILLETf3ee9092017-09-14 22:44:24 +02001318 goto err;
Liam Girdwood8a978232015-05-29 19:06:14 +01001319
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001320 se = kzalloc(sizeof(*se), GFP_KERNEL);
1321 if (se == NULL)
1322 goto err;
Liam Girdwood8a978232015-05-29 19:06:14 +01001323
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001324 dev_dbg(tplg->dev, " adding DAPM widget enum control %s\n",
Liam Girdwood8a978232015-05-29 19:06:14 +01001325 ec->hdr.name);
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001326
Liam Girdwood267e2c62018-03-27 12:04:04 +01001327 kc[i].name = kstrdup(ec->hdr.name, GFP_KERNEL);
Dan Carpenter65030ff2018-04-05 14:25:18 +03001328 if (kc[i].name == NULL) {
1329 kfree(se);
Liam Girdwood267e2c62018-03-27 12:04:04 +01001330 goto err_se;
Dan Carpenter65030ff2018-04-05 14:25:18 +03001331 }
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001332 kc[i].private_value = (long)se;
1333 kc[i].iface = SNDRV_CTL_ELEM_IFACE_MIXER;
1334 kc[i].access = ec->hdr.access;
1335
1336 /* we only support FL/FR channel mapping atm */
1337 se->reg = tplc_chan_get_reg(tplg, ec->channel, SNDRV_CHMAP_FL);
1338 se->shift_l = tplc_chan_get_shift(tplg, ec->channel,
1339 SNDRV_CHMAP_FL);
1340 se->shift_r = tplc_chan_get_shift(tplg, ec->channel,
1341 SNDRV_CHMAP_FR);
1342
1343 se->items = ec->items;
1344 se->mask = ec->mask;
1345 se->dobj.index = tplg->index;
1346
1347 switch (ec->hdr.ops.info) {
1348 case SND_SOC_TPLG_CTL_ENUM_VALUE:
1349 case SND_SOC_TPLG_DAPM_CTL_ENUM_VALUE:
1350 err = soc_tplg_denum_create_values(se, ec);
1351 if (err < 0) {
1352 dev_err(tplg->dev, "ASoC: could not create values for %s\n",
1353 ec->hdr.name);
1354 goto err_se;
1355 }
1356 /* fall through to create texts */
1357 case SND_SOC_TPLG_CTL_ENUM:
1358 case SND_SOC_TPLG_DAPM_CTL_ENUM_DOUBLE:
1359 case SND_SOC_TPLG_DAPM_CTL_ENUM_VIRT:
1360 err = soc_tplg_denum_create_texts(se, ec);
1361 if (err < 0) {
1362 dev_err(tplg->dev, "ASoC: could not create texts for %s\n",
1363 ec->hdr.name);
1364 goto err_se;
1365 }
1366 break;
1367 default:
1368 dev_err(tplg->dev, "ASoC: invalid enum control type %d for %s\n",
1369 ec->hdr.ops.info, ec->hdr.name);
1370 goto err_se;
1371 }
1372
1373 /* map io handlers */
1374 err = soc_tplg_kcontrol_bind_io(&ec->hdr, &kc[i], tplg);
1375 if (err) {
1376 soc_control_err(tplg, &ec->hdr, ec->hdr.name);
1377 goto err_se;
1378 }
1379
1380 /* pass control to driver for optional further init */
1381 err = soc_tplg_init_kcontrol(tplg, &kc[i],
1382 (struct snd_soc_tplg_ctl_hdr *)ec);
1383 if (err < 0) {
1384 dev_err(tplg->dev, "ASoC: failed to init %s\n",
1385 ec->hdr.name);
1386 goto err_se;
1387 }
1388
1389 tplg->pos += (sizeof(struct snd_soc_tplg_enum_control) +
1390 ec->priv.size);
Liam Girdwood8a978232015-05-29 19:06:14 +01001391 }
1392
1393 return kc;
1394
1395err_se:
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001396 for (; i >= 0; i--) {
1397 /* free values and texts */
1398 se = (struct soc_enum *)kc[i].private_value;
Christophe JAILLET6d5574e2017-09-14 22:44:12 +02001399 if (!se)
1400 continue;
1401
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001402 kfree(se->dobj.control.dvalues);
1403 for (j = 0; j < ec->items; j++)
1404 kfree(se->dobj.control.dtexts[j]);
Liam Girdwood8a978232015-05-29 19:06:14 +01001405
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001406 kfree(se);
Liam Girdwood267e2c62018-03-27 12:04:04 +01001407 kfree(kc[i].name);
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001408 }
Liam Girdwood8a978232015-05-29 19:06:14 +01001409err:
1410 kfree(kc);
1411
1412 return NULL;
1413}
1414
1415static struct snd_kcontrol_new *soc_tplg_dapm_widget_dbytes_create(
1416 struct soc_tplg *tplg, int count)
1417{
1418 struct snd_soc_tplg_bytes_control *be;
1419 struct soc_bytes_ext *sbe;
1420 struct snd_kcontrol_new *kc;
1421 int i, err;
1422
Axel Lin4ca7deb2015-08-05 22:34:22 +08001423 kc = kcalloc(count, sizeof(*kc), GFP_KERNEL);
Liam Girdwood8a978232015-05-29 19:06:14 +01001424 if (!kc)
1425 return NULL;
1426
1427 for (i = 0; i < count; i++) {
1428 be = (struct snd_soc_tplg_bytes_control *)tplg->pos;
1429
1430 /* validate kcontrol */
1431 if (strnlen(be->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1432 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
1433 goto err;
1434
1435 sbe = kzalloc(sizeof(*sbe), GFP_KERNEL);
1436 if (sbe == NULL)
1437 goto err;
1438
1439 tplg->pos += (sizeof(struct snd_soc_tplg_bytes_control) +
1440 be->priv.size);
1441
1442 dev_dbg(tplg->dev,
1443 "ASoC: adding bytes kcontrol %s with access 0x%x\n",
1444 be->hdr.name, be->hdr.access);
1445
Liam Girdwood267e2c62018-03-27 12:04:04 +01001446 kc[i].name = kstrdup(be->hdr.name, GFP_KERNEL);
Dan Carpenter65030ff2018-04-05 14:25:18 +03001447 if (kc[i].name == NULL) {
1448 kfree(sbe);
Liam Girdwood267e2c62018-03-27 12:04:04 +01001449 goto err;
Dan Carpenter65030ff2018-04-05 14:25:18 +03001450 }
Liam Girdwood8a978232015-05-29 19:06:14 +01001451 kc[i].private_value = (long)sbe;
1452 kc[i].iface = SNDRV_CTL_ELEM_IFACE_MIXER;
1453 kc[i].access = be->hdr.access;
1454
1455 sbe->max = be->max;
1456 INIT_LIST_HEAD(&sbe->dobj.list);
1457
1458 /* map standard io handlers and check for external handlers */
Mengdong Lin2b5cdb92015-08-18 18:12:01 +08001459 err = soc_tplg_kcontrol_bind_io(&be->hdr, &kc[i], tplg);
Liam Girdwood8a978232015-05-29 19:06:14 +01001460 if (err) {
1461 soc_control_err(tplg, &be->hdr, be->hdr.name);
1462 kfree(sbe);
1463 continue;
1464 }
1465
1466 /* pass control to driver for optional further init */
1467 err = soc_tplg_init_kcontrol(tplg, &kc[i],
1468 (struct snd_soc_tplg_ctl_hdr *)be);
1469 if (err < 0) {
1470 dev_err(tplg->dev, "ASoC: failed to init %s\n",
1471 be->hdr.name);
1472 kfree(sbe);
1473 continue;
1474 }
1475 }
1476
1477 return kc;
1478
1479err:
Liam Girdwood267e2c62018-03-27 12:04:04 +01001480 for (--i; i >= 0; i--) {
Liam Girdwood8a978232015-05-29 19:06:14 +01001481 kfree((void *)kc[i].private_value);
Liam Girdwood267e2c62018-03-27 12:04:04 +01001482 kfree(kc[i].name);
1483 }
Liam Girdwood8a978232015-05-29 19:06:14 +01001484
1485 kfree(kc);
1486 return NULL;
1487}
1488
1489static int soc_tplg_dapm_widget_create(struct soc_tplg *tplg,
1490 struct snd_soc_tplg_dapm_widget *w)
1491{
1492 struct snd_soc_dapm_context *dapm = &tplg->comp->dapm;
1493 struct snd_soc_dapm_widget template, *widget;
1494 struct snd_soc_tplg_ctl_hdr *control_hdr;
1495 struct snd_soc_card *card = tplg->comp->card;
Mengdong Lineea3dd42016-11-25 16:09:17 +08001496 unsigned int kcontrol_type;
Liam Girdwood8a978232015-05-29 19:06:14 +01001497 int ret = 0;
1498
1499 if (strnlen(w->name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1500 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
1501 return -EINVAL;
1502 if (strnlen(w->sname, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1503 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
1504 return -EINVAL;
1505
1506 dev_dbg(tplg->dev, "ASoC: creating DAPM widget %s id %d\n",
1507 w->name, w->id);
1508
1509 memset(&template, 0, sizeof(template));
1510
1511 /* map user to kernel widget ID */
1512 template.id = get_widget_id(w->id);
1513 if (template.id < 0)
1514 return template.id;
1515
Liam Girdwoodc3421a62017-06-06 15:45:09 +01001516 /* strings are allocated here, but used and freed by the widget */
Liam Girdwood8a978232015-05-29 19:06:14 +01001517 template.name = kstrdup(w->name, GFP_KERNEL);
1518 if (!template.name)
1519 return -ENOMEM;
1520 template.sname = kstrdup(w->sname, GFP_KERNEL);
1521 if (!template.sname) {
1522 ret = -ENOMEM;
1523 goto err;
1524 }
1525 template.reg = w->reg;
1526 template.shift = w->shift;
1527 template.mask = w->mask;
Subhransu S. Prusty6dc6db72015-06-29 17:36:44 +01001528 template.subseq = w->subseq;
Liam Girdwood8a978232015-05-29 19:06:14 +01001529 template.on_val = w->invert ? 0 : 1;
1530 template.off_val = w->invert ? 1 : 0;
1531 template.ignore_suspend = w->ignore_suspend;
1532 template.event_flags = w->event_flags;
1533 template.dobj.index = tplg->index;
1534
1535 tplg->pos +=
1536 (sizeof(struct snd_soc_tplg_dapm_widget) + w->priv.size);
1537 if (w->num_kcontrols == 0) {
Arnd Bergmanndd5abb72016-12-09 12:51:46 +01001538 kcontrol_type = 0;
Liam Girdwood8a978232015-05-29 19:06:14 +01001539 template.num_kcontrols = 0;
1540 goto widget;
1541 }
1542
1543 control_hdr = (struct snd_soc_tplg_ctl_hdr *)tplg->pos;
1544 dev_dbg(tplg->dev, "ASoC: template %s has %d controls of type %x\n",
1545 w->name, w->num_kcontrols, control_hdr->type);
1546
1547 switch (control_hdr->ops.info) {
1548 case SND_SOC_TPLG_CTL_VOLSW:
1549 case SND_SOC_TPLG_CTL_STROBE:
1550 case SND_SOC_TPLG_CTL_VOLSW_SX:
1551 case SND_SOC_TPLG_CTL_VOLSW_XR_SX:
1552 case SND_SOC_TPLG_CTL_RANGE:
1553 case SND_SOC_TPLG_DAPM_CTL_VOLSW:
Mengdong Lineea3dd42016-11-25 16:09:17 +08001554 kcontrol_type = SND_SOC_TPLG_TYPE_MIXER; /* volume mixer */
Liam Girdwood8a978232015-05-29 19:06:14 +01001555 template.num_kcontrols = w->num_kcontrols;
1556 template.kcontrol_news =
1557 soc_tplg_dapm_widget_dmixer_create(tplg,
1558 template.num_kcontrols);
1559 if (!template.kcontrol_news) {
1560 ret = -ENOMEM;
1561 goto hdr_err;
1562 }
1563 break;
1564 case SND_SOC_TPLG_CTL_ENUM:
1565 case SND_SOC_TPLG_CTL_ENUM_VALUE:
1566 case SND_SOC_TPLG_DAPM_CTL_ENUM_DOUBLE:
1567 case SND_SOC_TPLG_DAPM_CTL_ENUM_VIRT:
1568 case SND_SOC_TPLG_DAPM_CTL_ENUM_VALUE:
Mengdong Lineea3dd42016-11-25 16:09:17 +08001569 kcontrol_type = SND_SOC_TPLG_TYPE_ENUM; /* enumerated mixer */
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001570 template.num_kcontrols = w->num_kcontrols;
Liam Girdwood8a978232015-05-29 19:06:14 +01001571 template.kcontrol_news =
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001572 soc_tplg_dapm_widget_denum_create(tplg,
1573 template.num_kcontrols);
Liam Girdwood8a978232015-05-29 19:06:14 +01001574 if (!template.kcontrol_news) {
1575 ret = -ENOMEM;
1576 goto hdr_err;
1577 }
1578 break;
1579 case SND_SOC_TPLG_CTL_BYTES:
Mengdong Lineea3dd42016-11-25 16:09:17 +08001580 kcontrol_type = SND_SOC_TPLG_TYPE_BYTES; /* bytes control */
Liam Girdwood8a978232015-05-29 19:06:14 +01001581 template.num_kcontrols = w->num_kcontrols;
1582 template.kcontrol_news =
1583 soc_tplg_dapm_widget_dbytes_create(tplg,
1584 template.num_kcontrols);
1585 if (!template.kcontrol_news) {
1586 ret = -ENOMEM;
1587 goto hdr_err;
1588 }
1589 break;
1590 default:
1591 dev_err(tplg->dev, "ASoC: invalid widget control type %d:%d:%d\n",
1592 control_hdr->ops.get, control_hdr->ops.put,
1593 control_hdr->ops.info);
1594 ret = -EINVAL;
1595 goto hdr_err;
1596 }
1597
1598widget:
1599 ret = soc_tplg_widget_load(tplg, &template, w);
1600 if (ret < 0)
1601 goto hdr_err;
1602
1603 /* card dapm mutex is held by the core if we are loading topology
1604 * data during sound card init. */
1605 if (card->instantiated)
1606 widget = snd_soc_dapm_new_control(dapm, &template);
1607 else
1608 widget = snd_soc_dapm_new_control_unlocked(dapm, &template);
Linus Walleij37e1df82017-01-13 10:23:52 +01001609 if (IS_ERR(widget)) {
1610 ret = PTR_ERR(widget);
1611 /* Do not nag about probe deferrals */
1612 if (ret != -EPROBE_DEFER)
1613 dev_err(tplg->dev,
1614 "ASoC: failed to create widget %s controls (%d)\n",
1615 w->name, ret);
1616 goto hdr_err;
1617 }
Liam Girdwood8a978232015-05-29 19:06:14 +01001618 if (widget == NULL) {
1619 dev_err(tplg->dev, "ASoC: failed to create widget %s controls\n",
1620 w->name);
Wei Yongjun8ae3ea42016-08-10 13:43:12 +00001621 ret = -ENOMEM;
Liam Girdwood8a978232015-05-29 19:06:14 +01001622 goto hdr_err;
1623 }
1624
1625 widget->dobj.type = SND_SOC_DOBJ_WIDGET;
Mengdong Lineea3dd42016-11-25 16:09:17 +08001626 widget->dobj.widget.kcontrol_type = kcontrol_type;
Liam Girdwood8a978232015-05-29 19:06:14 +01001627 widget->dobj.ops = tplg->ops;
1628 widget->dobj.index = tplg->index;
1629 list_add(&widget->dobj.list, &tplg->comp->dobj_list);
Liam Girdwoodebd259d2017-06-09 15:43:23 +01001630
1631 ret = soc_tplg_widget_ready(tplg, widget, w);
1632 if (ret < 0)
1633 goto ready_err;
1634
Liam Girdwood8a978232015-05-29 19:06:14 +01001635 return 0;
1636
Liam Girdwoodebd259d2017-06-09 15:43:23 +01001637ready_err:
1638 snd_soc_tplg_widget_remove(widget);
1639 snd_soc_dapm_free_widget(widget);
Liam Girdwood8a978232015-05-29 19:06:14 +01001640hdr_err:
1641 kfree(template.sname);
1642err:
1643 kfree(template.name);
1644 return ret;
1645}
1646
1647static int soc_tplg_dapm_widget_elems_load(struct soc_tplg *tplg,
1648 struct snd_soc_tplg_hdr *hdr)
1649{
1650 struct snd_soc_tplg_dapm_widget *widget;
1651 int ret, count = hdr->count, i;
1652
1653 if (tplg->pass != SOC_TPLG_PASS_WIDGET)
1654 return 0;
1655
1656 dev_dbg(tplg->dev, "ASoC: adding %d DAPM widgets\n", count);
1657
1658 for (i = 0; i < count; i++) {
1659 widget = (struct snd_soc_tplg_dapm_widget *) tplg->pos;
Mengdong Lin06eb49f2016-04-27 14:52:56 +08001660 if (widget->size != sizeof(*widget)) {
1661 dev_err(tplg->dev, "ASoC: invalid widget size\n");
1662 return -EINVAL;
1663 }
1664
Liam Girdwood8a978232015-05-29 19:06:14 +01001665 ret = soc_tplg_dapm_widget_create(tplg, widget);
Mengdong Lin7de76b62016-04-27 14:52:38 +08001666 if (ret < 0) {
Liam Girdwood8a978232015-05-29 19:06:14 +01001667 dev_err(tplg->dev, "ASoC: failed to load widget %s\n",
1668 widget->name);
Mengdong Lin7de76b62016-04-27 14:52:38 +08001669 return ret;
1670 }
Liam Girdwood8a978232015-05-29 19:06:14 +01001671 }
1672
1673 return 0;
1674}
1675
1676static int soc_tplg_dapm_complete(struct soc_tplg *tplg)
1677{
1678 struct snd_soc_card *card = tplg->comp->card;
1679 int ret;
1680
1681 /* Card might not have been registered at this point.
1682 * If so, just return success.
1683 */
1684 if (!card || !card->instantiated) {
1685 dev_warn(tplg->dev, "ASoC: Parent card not yet available,"
Liam Girdwoodcc9d4712017-06-06 15:45:08 +01001686 " widget card binding deferred\n");
Liam Girdwood8a978232015-05-29 19:06:14 +01001687 return 0;
1688 }
1689
1690 ret = snd_soc_dapm_new_widgets(card);
1691 if (ret < 0)
1692 dev_err(tplg->dev, "ASoC: failed to create new widgets %d\n",
1693 ret);
1694
1695 return 0;
1696}
1697
Mengdong Linb6b6e4d2016-02-22 16:29:19 +08001698static void set_stream_info(struct snd_soc_pcm_stream *stream,
1699 struct snd_soc_tplg_stream_caps *caps)
1700{
1701 stream->stream_name = kstrdup(caps->name, GFP_KERNEL);
1702 stream->channels_min = caps->channels_min;
1703 stream->channels_max = caps->channels_max;
1704 stream->rates = caps->rates;
1705 stream->rate_min = caps->rate_min;
1706 stream->rate_max = caps->rate_max;
1707 stream->formats = caps->formats;
Mengdong Linf918e162016-08-19 18:12:46 +08001708 stream->sig_bits = caps->sig_bits;
Mengdong Linb6b6e4d2016-02-22 16:29:19 +08001709}
1710
Mengdong Lin0038be92016-07-26 14:32:37 +08001711static void set_dai_flags(struct snd_soc_dai_driver *dai_drv,
1712 unsigned int flag_mask, unsigned int flags)
1713{
1714 if (flag_mask & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_RATES)
1715 dai_drv->symmetric_rates =
1716 flags & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_RATES ? 1 : 0;
1717
1718 if (flag_mask & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_CHANNELS)
1719 dai_drv->symmetric_channels =
1720 flags & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_CHANNELS ?
1721 1 : 0;
1722
1723 if (flag_mask & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_SAMPLEBITS)
1724 dai_drv->symmetric_samplebits =
1725 flags & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_SAMPLEBITS ?
1726 1 : 0;
1727}
1728
Mengdong Lin64527e82016-01-15 16:13:28 +08001729static int soc_tplg_dai_create(struct soc_tplg *tplg,
1730 struct snd_soc_tplg_pcm *pcm)
1731{
1732 struct snd_soc_dai_driver *dai_drv;
1733 struct snd_soc_pcm_stream *stream;
1734 struct snd_soc_tplg_stream_caps *caps;
1735 int ret;
1736
1737 dai_drv = kzalloc(sizeof(struct snd_soc_dai_driver), GFP_KERNEL);
1738 if (dai_drv == NULL)
1739 return -ENOMEM;
1740
Mengdong Lin8f27c4a2016-11-03 01:02:59 +08001741 if (strlen(pcm->dai_name))
1742 dai_drv->name = kstrdup(pcm->dai_name, GFP_KERNEL);
Mengdong Lin64527e82016-01-15 16:13:28 +08001743 dai_drv->id = pcm->dai_id;
1744
1745 if (pcm->playback) {
1746 stream = &dai_drv->playback;
1747 caps = &pcm->caps[SND_SOC_TPLG_STREAM_PLAYBACK];
Mengdong Linb6b6e4d2016-02-22 16:29:19 +08001748 set_stream_info(stream, caps);
Mengdong Lin64527e82016-01-15 16:13:28 +08001749 }
1750
1751 if (pcm->capture) {
1752 stream = &dai_drv->capture;
1753 caps = &pcm->caps[SND_SOC_TPLG_STREAM_CAPTURE];
Mengdong Linb6b6e4d2016-02-22 16:29:19 +08001754 set_stream_info(stream, caps);
Mengdong Lin64527e82016-01-15 16:13:28 +08001755 }
1756
1757 /* pass control to component driver for optional further init */
1758 ret = soc_tplg_dai_load(tplg, dai_drv);
1759 if (ret < 0) {
1760 dev_err(tplg->comp->dev, "ASoC: DAI loading failed\n");
1761 kfree(dai_drv);
1762 return ret;
1763 }
1764
1765 dai_drv->dobj.index = tplg->index;
1766 dai_drv->dobj.ops = tplg->ops;
1767 dai_drv->dobj.type = SND_SOC_DOBJ_PCM;
1768 list_add(&dai_drv->dobj.list, &tplg->comp->dobj_list);
1769
1770 /* register the DAI to the component */
1771 return snd_soc_register_dai(tplg->comp, dai_drv);
1772}
1773
Mengdong Lin717a8e72016-11-03 01:03:34 +08001774static void set_link_flags(struct snd_soc_dai_link *link,
1775 unsigned int flag_mask, unsigned int flags)
1776{
1777 if (flag_mask & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_RATES)
1778 link->symmetric_rates =
1779 flags & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_RATES ? 1 : 0;
1780
1781 if (flag_mask & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_CHANNELS)
1782 link->symmetric_channels =
1783 flags & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_CHANNELS ?
1784 1 : 0;
1785
1786 if (flag_mask & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_SAMPLEBITS)
1787 link->symmetric_samplebits =
1788 flags & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_SAMPLEBITS ?
1789 1 : 0;
Mengdong Lin6ff67cc2016-11-03 01:05:32 +08001790
1791 if (flag_mask & SND_SOC_TPLG_LNK_FLGBIT_VOICE_WAKEUP)
1792 link->ignore_suspend =
1793 flags & SND_SOC_TPLG_LNK_FLGBIT_VOICE_WAKEUP ?
1794 1 : 0;
Mengdong Lin717a8e72016-11-03 01:03:34 +08001795}
1796
Guneshwor Singh67d1c212016-04-19 13:12:50 +08001797/* create the FE DAI link */
Mengdong Linab4bc5e2016-11-03 01:04:42 +08001798static int soc_tplg_fe_link_create(struct soc_tplg *tplg,
Mengdong Linacfc7d42016-01-15 16:13:37 +08001799 struct snd_soc_tplg_pcm *pcm)
1800{
1801 struct snd_soc_dai_link *link;
1802 int ret;
1803
1804 link = kzalloc(sizeof(struct snd_soc_dai_link), GFP_KERNEL);
1805 if (link == NULL)
1806 return -ENOMEM;
1807
Mengdong Lin8f27c4a2016-11-03 01:02:59 +08001808 if (strlen(pcm->pcm_name)) {
1809 link->name = kstrdup(pcm->pcm_name, GFP_KERNEL);
1810 link->stream_name = kstrdup(pcm->pcm_name, GFP_KERNEL);
1811 }
Mengdong Linb84fff52016-04-19 13:12:43 +08001812 link->id = pcm->pcm_id;
Mengdong Linacfc7d42016-01-15 16:13:37 +08001813
Mengdong Lin8f27c4a2016-11-03 01:02:59 +08001814 if (strlen(pcm->dai_name))
1815 link->cpu_dai_name = kstrdup(pcm->dai_name, GFP_KERNEL);
1816
Guneshwor Singh67d1c212016-04-19 13:12:50 +08001817 link->codec_name = "snd-soc-dummy";
1818 link->codec_dai_name = "snd-soc-dummy-dai";
1819
1820 /* enable DPCM */
1821 link->dynamic = 1;
1822 link->dpcm_playback = pcm->playback;
1823 link->dpcm_capture = pcm->capture;
Mengdong Lin717a8e72016-11-03 01:03:34 +08001824 if (pcm->flag_mask)
1825 set_link_flags(link, pcm->flag_mask, pcm->flags);
Guneshwor Singh67d1c212016-04-19 13:12:50 +08001826
Mengdong Linacfc7d42016-01-15 16:13:37 +08001827 /* pass control to component driver for optional further init */
1828 ret = soc_tplg_dai_link_load(tplg, link);
1829 if (ret < 0) {
1830 dev_err(tplg->comp->dev, "ASoC: FE link loading failed\n");
1831 kfree(link);
1832 return ret;
1833 }
1834
1835 link->dobj.index = tplg->index;
1836 link->dobj.ops = tplg->ops;
1837 link->dobj.type = SND_SOC_DOBJ_DAI_LINK;
1838 list_add(&link->dobj.list, &tplg->comp->dobj_list);
1839
1840 snd_soc_add_dai_link(tplg->comp->card, link);
1841 return 0;
1842}
1843
1844/* create a FE DAI and DAI link from the PCM object */
Mengdong Lin64527e82016-01-15 16:13:28 +08001845static int soc_tplg_pcm_create(struct soc_tplg *tplg,
1846 struct snd_soc_tplg_pcm *pcm)
1847{
Mengdong Linacfc7d42016-01-15 16:13:37 +08001848 int ret;
1849
1850 ret = soc_tplg_dai_create(tplg, pcm);
1851 if (ret < 0)
1852 return ret;
1853
Mengdong Linab4bc5e2016-11-03 01:04:42 +08001854 return soc_tplg_fe_link_create(tplg, pcm);
Mengdong Lin64527e82016-01-15 16:13:28 +08001855}
1856
Mengdong Lin55726dc2016-11-03 01:00:16 +08001857/* copy stream caps from the old version 4 of source */
1858static void stream_caps_new_ver(struct snd_soc_tplg_stream_caps *dest,
1859 struct snd_soc_tplg_stream_caps_v4 *src)
1860{
1861 dest->size = sizeof(*dest);
1862 memcpy(dest->name, src->name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN);
1863 dest->formats = src->formats;
1864 dest->rates = src->rates;
1865 dest->rate_min = src->rate_min;
1866 dest->rate_max = src->rate_max;
1867 dest->channels_min = src->channels_min;
1868 dest->channels_max = src->channels_max;
1869 dest->periods_min = src->periods_min;
1870 dest->periods_max = src->periods_max;
1871 dest->period_size_min = src->period_size_min;
1872 dest->period_size_max = src->period_size_max;
1873 dest->buffer_size_min = src->buffer_size_min;
1874 dest->buffer_size_max = src->buffer_size_max;
1875}
1876
1877/**
1878 * pcm_new_ver - Create the new version of PCM from the old version.
1879 * @tplg: topology context
1880 * @src: older version of pcm as a source
1881 * @pcm: latest version of pcm created from the source
1882 *
1883 * Support from vesion 4. User should free the returned pcm manually.
1884 */
1885static int pcm_new_ver(struct soc_tplg *tplg,
1886 struct snd_soc_tplg_pcm *src,
1887 struct snd_soc_tplg_pcm **pcm)
1888{
1889 struct snd_soc_tplg_pcm *dest;
1890 struct snd_soc_tplg_pcm_v4 *src_v4;
1891 int i;
1892
1893 *pcm = NULL;
1894
1895 if (src->size != sizeof(*src_v4)) {
1896 dev_err(tplg->dev, "ASoC: invalid PCM size\n");
1897 return -EINVAL;
1898 }
1899
1900 dev_warn(tplg->dev, "ASoC: old version of PCM\n");
1901 src_v4 = (struct snd_soc_tplg_pcm_v4 *)src;
1902 dest = kzalloc(sizeof(*dest), GFP_KERNEL);
1903 if (!dest)
1904 return -ENOMEM;
1905
1906 dest->size = sizeof(*dest); /* size of latest abi version */
1907 memcpy(dest->pcm_name, src_v4->pcm_name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN);
1908 memcpy(dest->dai_name, src_v4->dai_name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN);
1909 dest->pcm_id = src_v4->pcm_id;
1910 dest->dai_id = src_v4->dai_id;
1911 dest->playback = src_v4->playback;
1912 dest->capture = src_v4->capture;
1913 dest->compress = src_v4->compress;
1914 dest->num_streams = src_v4->num_streams;
1915 for (i = 0; i < dest->num_streams; i++)
1916 memcpy(&dest->stream[i], &src_v4->stream[i],
1917 sizeof(struct snd_soc_tplg_stream));
1918
1919 for (i = 0; i < 2; i++)
1920 stream_caps_new_ver(&dest->caps[i], &src_v4->caps[i]);
1921
1922 *pcm = dest;
1923 return 0;
1924}
1925
Mengdong Lin64527e82016-01-15 16:13:28 +08001926static int soc_tplg_pcm_elems_load(struct soc_tplg *tplg,
Liam Girdwood8a978232015-05-29 19:06:14 +01001927 struct snd_soc_tplg_hdr *hdr)
1928{
Mengdong Lin55726dc2016-11-03 01:00:16 +08001929 struct snd_soc_tplg_pcm *pcm, *_pcm;
Liam Girdwood8a978232015-05-29 19:06:14 +01001930 int count = hdr->count;
Vinod Koulfd340452016-12-08 23:01:27 +05301931 int i;
Mengdong Lin55726dc2016-11-03 01:00:16 +08001932 bool abi_match;
Liam Girdwood8a978232015-05-29 19:06:14 +01001933
1934 if (tplg->pass != SOC_TPLG_PASS_PCM_DAI)
1935 return 0;
1936
Mengdong Lin55726dc2016-11-03 01:00:16 +08001937 /* check the element size and count */
1938 pcm = (struct snd_soc_tplg_pcm *)tplg->pos;
1939 if (pcm->size > sizeof(struct snd_soc_tplg_pcm)
1940 || pcm->size < sizeof(struct snd_soc_tplg_pcm_v4)) {
1941 dev_err(tplg->dev, "ASoC: invalid size %d for PCM elems\n",
1942 pcm->size);
1943 return -EINVAL;
1944 }
1945
Liam Girdwood8a978232015-05-29 19:06:14 +01001946 if (soc_tplg_check_elem_count(tplg,
Mengdong Lin55726dc2016-11-03 01:00:16 +08001947 pcm->size, count,
Liam Girdwood8a978232015-05-29 19:06:14 +01001948 hdr->payload_size, "PCM DAI")) {
1949 dev_err(tplg->dev, "ASoC: invalid count %d for PCM DAI elems\n",
1950 count);
1951 return -EINVAL;
1952 }
1953
Mengdong Lin64527e82016-01-15 16:13:28 +08001954 for (i = 0; i < count; i++) {
Mengdong Lin55726dc2016-11-03 01:00:16 +08001955 pcm = (struct snd_soc_tplg_pcm *)tplg->pos;
1956
1957 /* check ABI version by size, create a new version of pcm
1958 * if abi not match.
1959 */
1960 if (pcm->size == sizeof(*pcm)) {
1961 abi_match = true;
1962 _pcm = pcm;
1963 } else {
1964 abi_match = false;
Vinod Koulfd340452016-12-08 23:01:27 +05301965 pcm_new_ver(tplg, pcm, &_pcm);
Mengdong Lin06eb49f2016-04-27 14:52:56 +08001966 }
1967
Mengdong Lin55726dc2016-11-03 01:00:16 +08001968 /* create the FE DAIs and DAI links */
1969 soc_tplg_pcm_create(tplg, _pcm);
1970
Mengdong Lin717a8e72016-11-03 01:03:34 +08001971 /* offset by version-specific struct size and
1972 * real priv data size
1973 */
1974 tplg->pos += pcm->size + _pcm->priv.size;
1975
Mengdong Lin55726dc2016-11-03 01:00:16 +08001976 if (!abi_match)
1977 kfree(_pcm); /* free the duplicated one */
Mengdong Lin64527e82016-01-15 16:13:28 +08001978 }
1979
Liam Girdwood8a978232015-05-29 19:06:14 +01001980 dev_dbg(tplg->dev, "ASoC: adding %d PCM DAIs\n", count);
Liam Girdwood8a978232015-05-29 19:06:14 +01001981
Liam Girdwood8a978232015-05-29 19:06:14 +01001982 return 0;
Liam Girdwood8a978232015-05-29 19:06:14 +01001983}
1984
Mengdong Lin593d9e52016-11-03 01:04:27 +08001985/**
1986 * set_link_hw_format - Set the HW audio format of the physical DAI link.
Charles Keepax8abab352017-01-12 11:38:15 +00001987 * @link: &snd_soc_dai_link which should be updated
Mengdong Lin593d9e52016-11-03 01:04:27 +08001988 * @cfg: physical link configs.
1989 *
1990 * Topology context contains a list of supported HW formats (configs) and
1991 * a default format ID for the physical link. This function will use this
1992 * default ID to choose the HW format to set the link's DAI format for init.
1993 */
1994static void set_link_hw_format(struct snd_soc_dai_link *link,
1995 struct snd_soc_tplg_link_config *cfg)
1996{
1997 struct snd_soc_tplg_hw_config *hw_config;
1998 unsigned char bclk_master, fsync_master;
1999 unsigned char invert_bclk, invert_fsync;
2000 int i;
2001
2002 for (i = 0; i < cfg->num_hw_configs; i++) {
2003 hw_config = &cfg->hw_config[i];
2004 if (hw_config->id != cfg->default_hw_config_id)
2005 continue;
2006
2007 link->dai_fmt = hw_config->fmt & SND_SOC_DAIFMT_FORMAT_MASK;
2008
Kirill Marinushkin933e1c42018-04-04 06:19:38 +02002009 /* clock gating */
2010 if (hw_config->clock_gated == SND_SOC_TPLG_DAI_CLK_GATE_GATED)
2011 link->dai_fmt |= SND_SOC_DAIFMT_GATED;
2012 else if (hw_config->clock_gated ==
2013 SND_SOC_TPLG_DAI_CLK_GATE_CONT)
2014 link->dai_fmt |= SND_SOC_DAIFMT_CONT;
2015
Mengdong Lin593d9e52016-11-03 01:04:27 +08002016 /* clock signal polarity */
2017 invert_bclk = hw_config->invert_bclk;
2018 invert_fsync = hw_config->invert_fsync;
2019 if (!invert_bclk && !invert_fsync)
2020 link->dai_fmt |= SND_SOC_DAIFMT_NB_NF;
2021 else if (!invert_bclk && invert_fsync)
2022 link->dai_fmt |= SND_SOC_DAIFMT_NB_IF;
2023 else if (invert_bclk && !invert_fsync)
2024 link->dai_fmt |= SND_SOC_DAIFMT_IB_NF;
2025 else
2026 link->dai_fmt |= SND_SOC_DAIFMT_IB_IF;
2027
2028 /* clock masters */
Kirill Marinushkina941e2f2018-04-04 06:19:37 +02002029 bclk_master = (hw_config->bclk_master ==
2030 SND_SOC_TPLG_BCLK_CM);
2031 fsync_master = (hw_config->fsync_master ==
2032 SND_SOC_TPLG_FSYNC_CM);
2033 if (bclk_master && fsync_master)
Mengdong Lin593d9e52016-11-03 01:04:27 +08002034 link->dai_fmt |= SND_SOC_DAIFMT_CBM_CFM;
Mengdong Lin593d9e52016-11-03 01:04:27 +08002035 else if (!bclk_master && fsync_master)
Kirill Marinushkina941e2f2018-04-04 06:19:37 +02002036 link->dai_fmt |= SND_SOC_DAIFMT_CBS_CFM;
2037 else if (bclk_master && !fsync_master)
Mengdong Lin593d9e52016-11-03 01:04:27 +08002038 link->dai_fmt |= SND_SOC_DAIFMT_CBM_CFS;
2039 else
2040 link->dai_fmt |= SND_SOC_DAIFMT_CBS_CFS;
2041 }
2042}
2043
2044/**
2045 * link_new_ver - Create a new physical link config from the old
2046 * version of source.
Charles Keepax8abab352017-01-12 11:38:15 +00002047 * @tplg: topology context
Mengdong Lin593d9e52016-11-03 01:04:27 +08002048 * @src: old version of phyical link config as a source
2049 * @link: latest version of physical link config created from the source
2050 *
2051 * Support from vesion 4. User need free the returned link config manually.
2052 */
2053static int link_new_ver(struct soc_tplg *tplg,
2054 struct snd_soc_tplg_link_config *src,
2055 struct snd_soc_tplg_link_config **link)
2056{
2057 struct snd_soc_tplg_link_config *dest;
2058 struct snd_soc_tplg_link_config_v4 *src_v4;
2059 int i;
2060
2061 *link = NULL;
2062
2063 if (src->size != sizeof(struct snd_soc_tplg_link_config_v4)) {
2064 dev_err(tplg->dev, "ASoC: invalid physical link config size\n");
2065 return -EINVAL;
2066 }
2067
2068 dev_warn(tplg->dev, "ASoC: old version of physical link config\n");
2069
2070 src_v4 = (struct snd_soc_tplg_link_config_v4 *)src;
2071 dest = kzalloc(sizeof(*dest), GFP_KERNEL);
2072 if (!dest)
2073 return -ENOMEM;
2074
2075 dest->size = sizeof(*dest);
2076 dest->id = src_v4->id;
2077 dest->num_streams = src_v4->num_streams;
2078 for (i = 0; i < dest->num_streams; i++)
2079 memcpy(&dest->stream[i], &src_v4->stream[i],
2080 sizeof(struct snd_soc_tplg_stream));
2081
2082 *link = dest;
2083 return 0;
2084}
2085
2086/* Find and configure an existing physical DAI link */
2087static int soc_tplg_link_config(struct soc_tplg *tplg,
2088 struct snd_soc_tplg_link_config *cfg)
2089{
2090 struct snd_soc_dai_link *link;
2091 const char *name, *stream_name;
Mengdong Lindbab1cb2016-11-05 08:42:14 +08002092 size_t len;
Mengdong Lin593d9e52016-11-03 01:04:27 +08002093 int ret;
2094
Mengdong Lindbab1cb2016-11-05 08:42:14 +08002095 len = strnlen(cfg->name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN);
2096 if (len == SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
2097 return -EINVAL;
2098 else if (len)
2099 name = cfg->name;
2100 else
2101 name = NULL;
2102
2103 len = strnlen(cfg->stream_name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN);
2104 if (len == SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
2105 return -EINVAL;
2106 else if (len)
2107 stream_name = cfg->stream_name;
2108 else
2109 stream_name = NULL;
Mengdong Lin593d9e52016-11-03 01:04:27 +08002110
2111 link = snd_soc_find_dai_link(tplg->comp->card, cfg->id,
2112 name, stream_name);
2113 if (!link) {
2114 dev_err(tplg->dev, "ASoC: physical link %s (id %d) not exist\n",
2115 name, cfg->id);
2116 return -EINVAL;
2117 }
2118
2119 /* hw format */
2120 if (cfg->num_hw_configs)
2121 set_link_hw_format(link, cfg);
2122
2123 /* flags */
2124 if (cfg->flag_mask)
2125 set_link_flags(link, cfg->flag_mask, cfg->flags);
2126
2127 /* pass control to component driver for optional further init */
2128 ret = soc_tplg_dai_link_load(tplg, link);
2129 if (ret < 0) {
2130 dev_err(tplg->dev, "ASoC: physical link loading failed\n");
2131 return ret;
2132 }
2133
2134 return 0;
2135}
2136
2137
2138/* Load physical link config elements from the topology context */
2139static int soc_tplg_link_elems_load(struct soc_tplg *tplg,
2140 struct snd_soc_tplg_hdr *hdr)
2141{
2142 struct snd_soc_tplg_link_config *link, *_link;
2143 int count = hdr->count;
2144 int i, ret;
2145 bool abi_match;
2146
2147 if (tplg->pass != SOC_TPLG_PASS_LINK) {
2148 tplg->pos += hdr->size + hdr->payload_size;
2149 return 0;
2150 };
2151
2152 /* check the element size and count */
2153 link = (struct snd_soc_tplg_link_config *)tplg->pos;
2154 if (link->size > sizeof(struct snd_soc_tplg_link_config)
2155 || link->size < sizeof(struct snd_soc_tplg_link_config_v4)) {
2156 dev_err(tplg->dev, "ASoC: invalid size %d for physical link elems\n",
2157 link->size);
2158 return -EINVAL;
2159 }
2160
2161 if (soc_tplg_check_elem_count(tplg,
2162 link->size, count,
2163 hdr->payload_size, "physical link config")) {
2164 dev_err(tplg->dev, "ASoC: invalid count %d for physical link elems\n",
2165 count);
2166 return -EINVAL;
2167 }
2168
2169 /* config physical DAI links */
2170 for (i = 0; i < count; i++) {
2171 link = (struct snd_soc_tplg_link_config *)tplg->pos;
2172 if (link->size == sizeof(*link)) {
2173 abi_match = true;
2174 _link = link;
2175 } else {
2176 abi_match = false;
2177 ret = link_new_ver(tplg, link, &_link);
2178 if (ret < 0)
2179 return ret;
2180 }
2181
2182 ret = soc_tplg_link_config(tplg, _link);
2183 if (ret < 0)
2184 return ret;
2185
2186 /* offset by version-specific struct size and
2187 * real priv data size
2188 */
2189 tplg->pos += link->size + _link->priv.size;
2190
2191 if (!abi_match)
2192 kfree(_link); /* free the duplicated one */
2193 }
2194
2195 return 0;
2196}
2197
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002198/**
2199 * soc_tplg_dai_config - Find and configure an existing physical DAI.
Mengdong Lin0038be92016-07-26 14:32:37 +08002200 * @tplg: topology context
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002201 * @d: physical DAI configs.
Mengdong Lin0038be92016-07-26 14:32:37 +08002202 *
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002203 * The physical dai should already be registered by the platform driver.
2204 * The platform driver should specify the DAI name and ID for matching.
Mengdong Lin0038be92016-07-26 14:32:37 +08002205 */
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002206static int soc_tplg_dai_config(struct soc_tplg *tplg,
2207 struct snd_soc_tplg_dai *d)
Mengdong Lin0038be92016-07-26 14:32:37 +08002208{
2209 struct snd_soc_dai_link_component dai_component = {0};
2210 struct snd_soc_dai *dai;
2211 struct snd_soc_dai_driver *dai_drv;
2212 struct snd_soc_pcm_stream *stream;
2213 struct snd_soc_tplg_stream_caps *caps;
2214 int ret;
2215
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002216 dai_component.dai_name = d->dai_name;
Mengdong Lin0038be92016-07-26 14:32:37 +08002217 dai = snd_soc_find_dai(&dai_component);
2218 if (!dai) {
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002219 dev_err(tplg->dev, "ASoC: physical DAI %s not registered\n",
2220 d->dai_name);
Mengdong Lin0038be92016-07-26 14:32:37 +08002221 return -EINVAL;
2222 }
2223
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002224 if (d->dai_id != dai->id) {
2225 dev_err(tplg->dev, "ASoC: physical DAI %s id mismatch\n",
2226 d->dai_name);
Mengdong Lin0038be92016-07-26 14:32:37 +08002227 return -EINVAL;
2228 }
2229
2230 dai_drv = dai->driver;
2231 if (!dai_drv)
2232 return -EINVAL;
2233
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002234 if (d->playback) {
Mengdong Lin0038be92016-07-26 14:32:37 +08002235 stream = &dai_drv->playback;
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002236 caps = &d->caps[SND_SOC_TPLG_STREAM_PLAYBACK];
Mengdong Lin0038be92016-07-26 14:32:37 +08002237 set_stream_info(stream, caps);
2238 }
2239
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002240 if (d->capture) {
Mengdong Lin0038be92016-07-26 14:32:37 +08002241 stream = &dai_drv->capture;
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002242 caps = &d->caps[SND_SOC_TPLG_STREAM_CAPTURE];
Mengdong Lin0038be92016-07-26 14:32:37 +08002243 set_stream_info(stream, caps);
2244 }
2245
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002246 if (d->flag_mask)
2247 set_dai_flags(dai_drv, d->flag_mask, d->flags);
Mengdong Lin0038be92016-07-26 14:32:37 +08002248
2249 /* pass control to component driver for optional further init */
2250 ret = soc_tplg_dai_load(tplg, dai_drv);
2251 if (ret < 0) {
2252 dev_err(tplg->comp->dev, "ASoC: DAI loading failed\n");
2253 return ret;
2254 }
2255
2256 return 0;
2257}
2258
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002259/* load physical DAI elements */
2260static int soc_tplg_dai_elems_load(struct soc_tplg *tplg,
2261 struct snd_soc_tplg_hdr *hdr)
Mengdong Lin0038be92016-07-26 14:32:37 +08002262{
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002263 struct snd_soc_tplg_dai *dai;
Mengdong Lin0038be92016-07-26 14:32:37 +08002264 int count = hdr->count;
2265 int i;
2266
2267 if (tplg->pass != SOC_TPLG_PASS_BE_DAI)
2268 return 0;
2269
2270 /* config the existing BE DAIs */
2271 for (i = 0; i < count; i++) {
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002272 dai = (struct snd_soc_tplg_dai *)tplg->pos;
2273 if (dai->size != sizeof(*dai)) {
2274 dev_err(tplg->dev, "ASoC: invalid physical DAI size\n");
Mengdong Lin0038be92016-07-26 14:32:37 +08002275 return -EINVAL;
2276 }
2277
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002278 soc_tplg_dai_config(tplg, dai);
2279 tplg->pos += (sizeof(*dai) + dai->priv.size);
Mengdong Lin0038be92016-07-26 14:32:37 +08002280 }
2281
2282 dev_dbg(tplg->dev, "ASoC: Configure %d BE DAIs\n", count);
2283 return 0;
2284}
2285
Mengdong Lin583958f2016-10-11 14:36:42 +08002286/**
2287 * manifest_new_ver - Create a new version of manifest from the old version
2288 * of source.
Charles Keepax8abab352017-01-12 11:38:15 +00002289 * @tplg: topology context
Mengdong Lin583958f2016-10-11 14:36:42 +08002290 * @src: old version of manifest as a source
2291 * @manifest: latest version of manifest created from the source
2292 *
2293 * Support from vesion 4. Users need free the returned manifest manually.
2294 */
2295static int manifest_new_ver(struct soc_tplg *tplg,
2296 struct snd_soc_tplg_manifest *src,
2297 struct snd_soc_tplg_manifest **manifest)
2298{
2299 struct snd_soc_tplg_manifest *dest;
2300 struct snd_soc_tplg_manifest_v4 *src_v4;
2301
2302 *manifest = NULL;
2303
2304 if (src->size != sizeof(*src_v4)) {
2305 dev_err(tplg->dev, "ASoC: invalid manifest size\n");
2306 return -EINVAL;
2307 }
2308
2309 dev_warn(tplg->dev, "ASoC: old version of manifest\n");
2310
2311 src_v4 = (struct snd_soc_tplg_manifest_v4 *)src;
2312 dest = kzalloc(sizeof(*dest) + src_v4->priv.size, GFP_KERNEL);
2313 if (!dest)
2314 return -ENOMEM;
2315
2316 dest->size = sizeof(*dest); /* size of latest abi version */
2317 dest->control_elems = src_v4->control_elems;
2318 dest->widget_elems = src_v4->widget_elems;
2319 dest->graph_elems = src_v4->graph_elems;
2320 dest->pcm_elems = src_v4->pcm_elems;
2321 dest->dai_link_elems = src_v4->dai_link_elems;
2322 dest->priv.size = src_v4->priv.size;
2323 if (dest->priv.size)
2324 memcpy(dest->priv.data, src_v4->priv.data,
2325 src_v4->priv.size);
2326
2327 *manifest = dest;
2328 return 0;
2329}
Mengdong Lin0038be92016-07-26 14:32:37 +08002330
Liam Girdwood8a978232015-05-29 19:06:14 +01002331static int soc_tplg_manifest_load(struct soc_tplg *tplg,
Mengdong Lin0038be92016-07-26 14:32:37 +08002332 struct snd_soc_tplg_hdr *hdr)
Liam Girdwood8a978232015-05-29 19:06:14 +01002333{
Mengdong Lin583958f2016-10-11 14:36:42 +08002334 struct snd_soc_tplg_manifest *manifest, *_manifest;
2335 bool abi_match;
2336 int err;
Liam Girdwood8a978232015-05-29 19:06:14 +01002337
2338 if (tplg->pass != SOC_TPLG_PASS_MANIFEST)
2339 return 0;
2340
2341 manifest = (struct snd_soc_tplg_manifest *)tplg->pos;
Mengdong Lin583958f2016-10-11 14:36:42 +08002342
2343 /* check ABI version by size, create a new manifest if abi not match */
2344 if (manifest->size == sizeof(*manifest)) {
2345 abi_match = true;
2346 _manifest = manifest;
2347 } else {
2348 abi_match = false;
2349 err = manifest_new_ver(tplg, manifest, &_manifest);
2350 if (err < 0)
2351 return err;
Mengdong Lin06eb49f2016-04-27 14:52:56 +08002352 }
2353
Mengdong Lin583958f2016-10-11 14:36:42 +08002354 /* pass control to component driver for optional further init */
Liam Girdwood8a978232015-05-29 19:06:14 +01002355 if (tplg->comp && tplg->ops && tplg->ops->manifest)
Mengdong Lin583958f2016-10-11 14:36:42 +08002356 return tplg->ops->manifest(tplg->comp, _manifest);
Liam Girdwood8a978232015-05-29 19:06:14 +01002357
Mengdong Lin583958f2016-10-11 14:36:42 +08002358 if (!abi_match) /* free the duplicated one */
2359 kfree(_manifest);
2360
Liam Girdwood8a978232015-05-29 19:06:14 +01002361 return 0;
2362}
2363
2364/* validate header magic, size and type */
2365static int soc_valid_header(struct soc_tplg *tplg,
2366 struct snd_soc_tplg_hdr *hdr)
2367{
2368 if (soc_tplg_get_hdr_offset(tplg) >= tplg->fw->size)
2369 return 0;
2370
Mengdong Lin06eb49f2016-04-27 14:52:56 +08002371 if (hdr->size != sizeof(*hdr)) {
2372 dev_err(tplg->dev,
2373 "ASoC: invalid header size for type %d at offset 0x%lx size 0x%zx.\n",
2374 hdr->type, soc_tplg_get_hdr_offset(tplg),
2375 tplg->fw->size);
2376 return -EINVAL;
2377 }
2378
Liam Girdwood8a978232015-05-29 19:06:14 +01002379 /* big endian firmware objects not supported atm */
2380 if (hdr->magic == cpu_to_be32(SND_SOC_TPLG_MAGIC)) {
2381 dev_err(tplg->dev,
2382 "ASoC: pass %d big endian not supported header got %x at offset 0x%lx size 0x%zx.\n",
2383 tplg->pass, hdr->magic,
2384 soc_tplg_get_hdr_offset(tplg), tplg->fw->size);
2385 return -EINVAL;
2386 }
2387
2388 if (hdr->magic != SND_SOC_TPLG_MAGIC) {
2389 dev_err(tplg->dev,
2390 "ASoC: pass %d does not have a valid header got %x at offset 0x%lx size 0x%zx.\n",
2391 tplg->pass, hdr->magic,
2392 soc_tplg_get_hdr_offset(tplg), tplg->fw->size);
2393 return -EINVAL;
2394 }
2395
Mengdong Lin288b8da2016-11-03 01:03:17 +08002396 /* Support ABI from version 4 */
2397 if (hdr->abi > SND_SOC_TPLG_ABI_VERSION
2398 || hdr->abi < SND_SOC_TPLG_ABI_VERSION_MIN) {
Liam Girdwood8a978232015-05-29 19:06:14 +01002399 dev_err(tplg->dev,
2400 "ASoC: pass %d invalid ABI version got 0x%x need 0x%x at offset 0x%lx size 0x%zx.\n",
2401 tplg->pass, hdr->abi,
2402 SND_SOC_TPLG_ABI_VERSION, soc_tplg_get_hdr_offset(tplg),
2403 tplg->fw->size);
2404 return -EINVAL;
2405 }
2406
2407 if (hdr->payload_size == 0) {
2408 dev_err(tplg->dev, "ASoC: header has 0 size at offset 0x%lx.\n",
2409 soc_tplg_get_hdr_offset(tplg));
2410 return -EINVAL;
2411 }
2412
2413 if (tplg->pass == hdr->type)
2414 dev_dbg(tplg->dev,
2415 "ASoC: Got 0x%x bytes of type %d version %d vendor %d at pass %d\n",
2416 hdr->payload_size, hdr->type, hdr->version,
2417 hdr->vendor_type, tplg->pass);
2418
2419 return 1;
2420}
2421
2422/* check header type and call appropriate handler */
2423static int soc_tplg_load_header(struct soc_tplg *tplg,
2424 struct snd_soc_tplg_hdr *hdr)
2425{
2426 tplg->pos = tplg->hdr_pos + sizeof(struct snd_soc_tplg_hdr);
2427
2428 /* check for matching ID */
2429 if (hdr->index != tplg->req_index &&
Liam Girdwoodbb971422017-06-29 14:22:25 +01002430 tplg->req_index != SND_SOC_TPLG_INDEX_ALL)
Liam Girdwood8a978232015-05-29 19:06:14 +01002431 return 0;
2432
2433 tplg->index = hdr->index;
2434
2435 switch (hdr->type) {
2436 case SND_SOC_TPLG_TYPE_MIXER:
2437 case SND_SOC_TPLG_TYPE_ENUM:
2438 case SND_SOC_TPLG_TYPE_BYTES:
2439 return soc_tplg_kcontrol_elems_load(tplg, hdr);
2440 case SND_SOC_TPLG_TYPE_DAPM_GRAPH:
2441 return soc_tplg_dapm_graph_elems_load(tplg, hdr);
2442 case SND_SOC_TPLG_TYPE_DAPM_WIDGET:
2443 return soc_tplg_dapm_widget_elems_load(tplg, hdr);
2444 case SND_SOC_TPLG_TYPE_PCM:
Mengdong Lin64527e82016-01-15 16:13:28 +08002445 return soc_tplg_pcm_elems_load(tplg, hdr);
Mengdong Lin3fbf7932016-11-03 01:05:01 +08002446 case SND_SOC_TPLG_TYPE_DAI:
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002447 return soc_tplg_dai_elems_load(tplg, hdr);
Mengdong Lin593d9e52016-11-03 01:04:27 +08002448 case SND_SOC_TPLG_TYPE_DAI_LINK:
2449 case SND_SOC_TPLG_TYPE_BACKEND_LINK:
2450 /* physical link configurations */
2451 return soc_tplg_link_elems_load(tplg, hdr);
Liam Girdwood8a978232015-05-29 19:06:14 +01002452 case SND_SOC_TPLG_TYPE_MANIFEST:
2453 return soc_tplg_manifest_load(tplg, hdr);
2454 default:
2455 /* bespoke vendor data object */
2456 return soc_tplg_vendor_load(tplg, hdr);
2457 }
2458
2459 return 0;
2460}
2461
2462/* process the topology file headers */
2463static int soc_tplg_process_headers(struct soc_tplg *tplg)
2464{
2465 struct snd_soc_tplg_hdr *hdr;
2466 int ret;
2467
2468 tplg->pass = SOC_TPLG_PASS_START;
2469
2470 /* process the header types from start to end */
2471 while (tplg->pass <= SOC_TPLG_PASS_END) {
2472
2473 tplg->hdr_pos = tplg->fw->data;
2474 hdr = (struct snd_soc_tplg_hdr *)tplg->hdr_pos;
2475
2476 while (!soc_tplg_is_eof(tplg)) {
2477
2478 /* make sure header is valid before loading */
2479 ret = soc_valid_header(tplg, hdr);
2480 if (ret < 0)
2481 return ret;
2482 else if (ret == 0)
2483 break;
2484
2485 /* load the header object */
2486 ret = soc_tplg_load_header(tplg, hdr);
2487 if (ret < 0)
2488 return ret;
2489
2490 /* goto next header */
2491 tplg->hdr_pos += hdr->payload_size +
2492 sizeof(struct snd_soc_tplg_hdr);
2493 hdr = (struct snd_soc_tplg_hdr *)tplg->hdr_pos;
2494 }
2495
2496 /* next data type pass */
2497 tplg->pass++;
2498 }
2499
2500 /* signal DAPM we are complete */
2501 ret = soc_tplg_dapm_complete(tplg);
2502 if (ret < 0)
2503 dev_err(tplg->dev,
2504 "ASoC: failed to initialise DAPM from Firmware\n");
2505
2506 return ret;
2507}
2508
2509static int soc_tplg_load(struct soc_tplg *tplg)
2510{
2511 int ret;
2512
2513 ret = soc_tplg_process_headers(tplg);
2514 if (ret == 0)
2515 soc_tplg_complete(tplg);
2516
2517 return ret;
2518}
2519
2520/* load audio component topology from "firmware" file */
2521int snd_soc_tplg_component_load(struct snd_soc_component *comp,
2522 struct snd_soc_tplg_ops *ops, const struct firmware *fw, u32 id)
2523{
2524 struct soc_tplg tplg;
2525
2526 /* setup parsing context */
2527 memset(&tplg, 0, sizeof(tplg));
2528 tplg.fw = fw;
2529 tplg.dev = comp->dev;
2530 tplg.comp = comp;
2531 tplg.ops = ops;
2532 tplg.req_index = id;
2533 tplg.io_ops = ops->io_ops;
2534 tplg.io_ops_count = ops->io_ops_count;
Mengdong Lin1a3232d2015-08-18 18:12:20 +08002535 tplg.bytes_ext_ops = ops->bytes_ext_ops;
2536 tplg.bytes_ext_ops_count = ops->bytes_ext_ops_count;
Liam Girdwood8a978232015-05-29 19:06:14 +01002537
2538 return soc_tplg_load(&tplg);
2539}
2540EXPORT_SYMBOL_GPL(snd_soc_tplg_component_load);
2541
2542/* remove this dynamic widget */
2543void snd_soc_tplg_widget_remove(struct snd_soc_dapm_widget *w)
2544{
2545 /* make sure we are a widget */
2546 if (w->dobj.type != SND_SOC_DOBJ_WIDGET)
2547 return;
2548
2549 remove_widget(w->dapm->component, &w->dobj, SOC_TPLG_PASS_WIDGET);
2550}
2551EXPORT_SYMBOL_GPL(snd_soc_tplg_widget_remove);
2552
2553/* remove all dynamic widgets from this DAPM context */
2554void snd_soc_tplg_widget_remove_all(struct snd_soc_dapm_context *dapm,
2555 u32 index)
2556{
2557 struct snd_soc_dapm_widget *w, *next_w;
Liam Girdwood8a978232015-05-29 19:06:14 +01002558
2559 list_for_each_entry_safe(w, next_w, &dapm->card->widgets, list) {
2560
2561 /* make sure we are a widget with correct context */
2562 if (w->dobj.type != SND_SOC_DOBJ_WIDGET || w->dapm != dapm)
2563 continue;
2564
2565 /* match ID */
2566 if (w->dobj.index != index &&
2567 w->dobj.index != SND_SOC_TPLG_INDEX_ALL)
2568 continue;
Liam Girdwood8a978232015-05-29 19:06:14 +01002569 /* check and free and dynamic widget kcontrols */
2570 snd_soc_tplg_widget_remove(w);
Lars-Peter Clausenb97e2692015-07-21 18:11:07 +02002571 snd_soc_dapm_free_widget(w);
Liam Girdwood8a978232015-05-29 19:06:14 +01002572 }
Jyri Sarhafd589a12015-11-10 18:12:42 +02002573 snd_soc_dapm_reset_cache(dapm);
Liam Girdwood8a978232015-05-29 19:06:14 +01002574}
2575EXPORT_SYMBOL_GPL(snd_soc_tplg_widget_remove_all);
2576
2577/* remove dynamic controls from the component driver */
2578int snd_soc_tplg_component_remove(struct snd_soc_component *comp, u32 index)
2579{
2580 struct snd_soc_dobj *dobj, *next_dobj;
2581 int pass = SOC_TPLG_PASS_END;
2582
2583 /* process the header types from end to start */
2584 while (pass >= SOC_TPLG_PASS_START) {
2585
2586 /* remove mixer controls */
2587 list_for_each_entry_safe(dobj, next_dobj, &comp->dobj_list,
2588 list) {
2589
2590 /* match index */
2591 if (dobj->index != index &&
2592 dobj->index != SND_SOC_TPLG_INDEX_ALL)
2593 continue;
2594
2595 switch (dobj->type) {
2596 case SND_SOC_DOBJ_MIXER:
2597 remove_mixer(comp, dobj, pass);
2598 break;
2599 case SND_SOC_DOBJ_ENUM:
2600 remove_enum(comp, dobj, pass);
2601 break;
2602 case SND_SOC_DOBJ_BYTES:
2603 remove_bytes(comp, dobj, pass);
2604 break;
2605 case SND_SOC_DOBJ_WIDGET:
2606 remove_widget(comp, dobj, pass);
2607 break;
2608 case SND_SOC_DOBJ_PCM:
Mengdong Lin64527e82016-01-15 16:13:28 +08002609 remove_dai(comp, dobj, pass);
Liam Girdwood8a978232015-05-29 19:06:14 +01002610 break;
Mengdong Linacfc7d42016-01-15 16:13:37 +08002611 case SND_SOC_DOBJ_DAI_LINK:
2612 remove_link(comp, dobj, pass);
2613 break;
Liam Girdwood8a978232015-05-29 19:06:14 +01002614 default:
2615 dev_err(comp->dev, "ASoC: invalid component type %d for removal\n",
2616 dobj->type);
2617 break;
2618 }
2619 }
2620 pass--;
2621 }
2622
2623 /* let caller know if FW can be freed when no objects are left */
2624 return !list_empty(&comp->dobj_list);
2625}
2626EXPORT_SYMBOL_GPL(snd_soc_tplg_component_remove);