blob: 12e1897019240daa7bc3d3ee16533dece4444a34 [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},
245};
246
247static int tplc_chan_get_reg(struct soc_tplg *tplg,
248 struct snd_soc_tplg_channel *chan, int map)
249{
250 int i;
251
252 for (i = 0; i < SND_SOC_TPLG_MAX_CHAN; i++) {
253 if (chan[i].id == map)
254 return chan[i].reg;
255 }
256
257 return -EINVAL;
258}
259
260static int tplc_chan_get_shift(struct soc_tplg *tplg,
261 struct snd_soc_tplg_channel *chan, int map)
262{
263 int i;
264
265 for (i = 0; i < SND_SOC_TPLG_MAX_CHAN; i++) {
266 if (chan[i].id == map)
267 return chan[i].shift;
268 }
269
270 return -EINVAL;
271}
272
273static int get_widget_id(int tplg_type)
274{
275 int i;
276
277 for (i = 0; i < ARRAY_SIZE(dapm_map); i++) {
278 if (tplg_type == dapm_map[i].uid)
279 return dapm_map[i].kid;
280 }
281
282 return -EINVAL;
283}
284
Liam Girdwood8a978232015-05-29 19:06:14 +0100285static inline void soc_bind_err(struct soc_tplg *tplg,
286 struct snd_soc_tplg_ctl_hdr *hdr, int index)
287{
288 dev_err(tplg->dev,
289 "ASoC: invalid control type (g,p,i) %d:%d:%d index %d at 0x%lx\n",
290 hdr->ops.get, hdr->ops.put, hdr->ops.info, index,
291 soc_tplg_get_offset(tplg));
292}
293
294static inline void soc_control_err(struct soc_tplg *tplg,
295 struct snd_soc_tplg_ctl_hdr *hdr, const char *name)
296{
297 dev_err(tplg->dev,
298 "ASoC: no complete mixer IO handler for %s type (g,p,i) %d:%d:%d at 0x%lx\n",
299 name, hdr->ops.get, hdr->ops.put, hdr->ops.info,
300 soc_tplg_get_offset(tplg));
301}
302
303/* pass vendor data to component driver for processing */
304static int soc_tplg_vendor_load_(struct soc_tplg *tplg,
305 struct snd_soc_tplg_hdr *hdr)
306{
307 int ret = 0;
308
309 if (tplg->comp && tplg->ops && tplg->ops->vendor_load)
310 ret = tplg->ops->vendor_load(tplg->comp, hdr);
311 else {
312 dev_err(tplg->dev, "ASoC: no vendor load callback for ID %d\n",
313 hdr->vendor_type);
314 return -EINVAL;
315 }
316
317 if (ret < 0)
318 dev_err(tplg->dev,
319 "ASoC: vendor load failed at hdr offset %ld/0x%lx for type %d:%d\n",
320 soc_tplg_get_hdr_offset(tplg),
321 soc_tplg_get_hdr_offset(tplg),
322 hdr->type, hdr->vendor_type);
323 return ret;
324}
325
326/* pass vendor data to component driver for processing */
327static int soc_tplg_vendor_load(struct soc_tplg *tplg,
328 struct snd_soc_tplg_hdr *hdr)
329{
330 if (tplg->pass != SOC_TPLG_PASS_VENDOR)
331 return 0;
332
333 return soc_tplg_vendor_load_(tplg, hdr);
334}
335
336/* optionally pass new dynamic widget to component driver. This is mainly for
337 * external widgets where we can assign private data/ops */
338static int soc_tplg_widget_load(struct soc_tplg *tplg,
339 struct snd_soc_dapm_widget *w, struct snd_soc_tplg_dapm_widget *tplg_w)
340{
341 if (tplg->comp && tplg->ops && tplg->ops->widget_load)
342 return tplg->ops->widget_load(tplg->comp, w, tplg_w);
343
344 return 0;
345}
346
Liam Girdwoodebd259d2017-06-09 15:43:23 +0100347/* optionally pass new dynamic widget to component driver. This is mainly for
348 * external widgets where we can assign private data/ops */
349static int soc_tplg_widget_ready(struct soc_tplg *tplg,
350 struct snd_soc_dapm_widget *w, struct snd_soc_tplg_dapm_widget *tplg_w)
351{
352 if (tplg->comp && tplg->ops && tplg->ops->widget_ready)
353 return tplg->ops->widget_ready(tplg->comp, w, tplg_w);
354
355 return 0;
356}
357
Masahiro Yamada183b8022017-02-27 14:29:20 -0800358/* pass DAI configurations to component driver for extra initialization */
Mengdong Lin64527e82016-01-15 16:13:28 +0800359static int soc_tplg_dai_load(struct soc_tplg *tplg,
Mark Brown102ebe22017-06-08 17:02:02 +0100360 struct snd_soc_dai_driver *dai_drv)
Liam Girdwood8a978232015-05-29 19:06:14 +0100361{
Mengdong Lin64527e82016-01-15 16:13:28 +0800362 if (tplg->comp && tplg->ops && tplg->ops->dai_load)
Mark Brown102ebe22017-06-08 17:02:02 +0100363 return tplg->ops->dai_load(tplg->comp, dai_drv);
Liam Girdwood8a978232015-05-29 19:06:14 +0100364
365 return 0;
366}
367
Masahiro Yamada183b8022017-02-27 14:29:20 -0800368/* pass link configurations to component driver for extra initialization */
Mengdong Linacfc7d42016-01-15 16:13:37 +0800369static int soc_tplg_dai_link_load(struct soc_tplg *tplg,
370 struct snd_soc_dai_link *link)
371{
372 if (tplg->comp && tplg->ops && tplg->ops->link_load)
373 return tplg->ops->link_load(tplg->comp, link);
374
375 return 0;
376}
377
Liam Girdwood8a978232015-05-29 19:06:14 +0100378/* tell the component driver that all firmware has been loaded in this request */
379static void soc_tplg_complete(struct soc_tplg *tplg)
380{
381 if (tplg->comp && tplg->ops && tplg->ops->complete)
382 tplg->ops->complete(tplg->comp);
383}
384
385/* add a dynamic kcontrol */
386static int soc_tplg_add_dcontrol(struct snd_card *card, struct device *dev,
387 const struct snd_kcontrol_new *control_new, const char *prefix,
388 void *data, struct snd_kcontrol **kcontrol)
389{
390 int err;
391
392 *kcontrol = snd_soc_cnew(control_new, data, control_new->name, prefix);
393 if (*kcontrol == NULL) {
394 dev_err(dev, "ASoC: Failed to create new kcontrol %s\n",
395 control_new->name);
396 return -ENOMEM;
397 }
398
399 err = snd_ctl_add(card, *kcontrol);
400 if (err < 0) {
401 dev_err(dev, "ASoC: Failed to add %s: %d\n",
402 control_new->name, err);
403 return err;
404 }
405
406 return 0;
407}
408
409/* add a dynamic kcontrol for component driver */
410static int soc_tplg_add_kcontrol(struct soc_tplg *tplg,
411 struct snd_kcontrol_new *k, struct snd_kcontrol **kcontrol)
412{
413 struct snd_soc_component *comp = tplg->comp;
414
415 return soc_tplg_add_dcontrol(comp->card->snd_card,
416 comp->dev, k, NULL, comp, kcontrol);
417}
418
419/* remove a mixer kcontrol */
420static void remove_mixer(struct snd_soc_component *comp,
421 struct snd_soc_dobj *dobj, int pass)
422{
423 struct snd_card *card = comp->card->snd_card;
424 struct soc_mixer_control *sm =
425 container_of(dobj, struct soc_mixer_control, dobj);
426 const unsigned int *p = NULL;
427
428 if (pass != SOC_TPLG_PASS_MIXER)
429 return;
430
431 if (dobj->ops && dobj->ops->control_unload)
432 dobj->ops->control_unload(comp, dobj);
433
434 if (sm->dobj.control.kcontrol->tlv.p)
435 p = sm->dobj.control.kcontrol->tlv.p;
436 snd_ctl_remove(card, sm->dobj.control.kcontrol);
437 list_del(&sm->dobj.list);
438 kfree(sm);
439 kfree(p);
440}
441
442/* remove an enum kcontrol */
443static void remove_enum(struct snd_soc_component *comp,
444 struct snd_soc_dobj *dobj, int pass)
445{
446 struct snd_card *card = comp->card->snd_card;
447 struct soc_enum *se = container_of(dobj, struct soc_enum, dobj);
448 int i;
449
450 if (pass != SOC_TPLG_PASS_MIXER)
451 return;
452
453 if (dobj->ops && dobj->ops->control_unload)
454 dobj->ops->control_unload(comp, dobj);
455
456 snd_ctl_remove(card, se->dobj.control.kcontrol);
457 list_del(&se->dobj.list);
458
459 kfree(se->dobj.control.dvalues);
460 for (i = 0; i < se->items; i++)
461 kfree(se->dobj.control.dtexts[i]);
462 kfree(se);
463}
464
465/* remove a byte kcontrol */
466static void remove_bytes(struct snd_soc_component *comp,
467 struct snd_soc_dobj *dobj, int pass)
468{
469 struct snd_card *card = comp->card->snd_card;
470 struct soc_bytes_ext *sb =
471 container_of(dobj, struct soc_bytes_ext, dobj);
472
473 if (pass != SOC_TPLG_PASS_MIXER)
474 return;
475
476 if (dobj->ops && dobj->ops->control_unload)
477 dobj->ops->control_unload(comp, dobj);
478
479 snd_ctl_remove(card, sb->dobj.control.kcontrol);
480 list_del(&sb->dobj.list);
481 kfree(sb);
482}
483
484/* remove a widget and it's kcontrols - routes must be removed first */
485static void remove_widget(struct snd_soc_component *comp,
486 struct snd_soc_dobj *dobj, int pass)
487{
488 struct snd_card *card = comp->card->snd_card;
489 struct snd_soc_dapm_widget *w =
490 container_of(dobj, struct snd_soc_dapm_widget, dobj);
491 int i;
492
493 if (pass != SOC_TPLG_PASS_WIDGET)
494 return;
495
496 if (dobj->ops && dobj->ops->widget_unload)
497 dobj->ops->widget_unload(comp, dobj);
498
499 /*
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +0800500 * Dynamic Widgets either have 1..N enum kcontrols or mixers.
Liam Girdwood8a978232015-05-29 19:06:14 +0100501 * The enum may either have an array of values or strings.
502 */
Mengdong Lineea3dd42016-11-25 16:09:17 +0800503 if (dobj->widget.kcontrol_type == SND_SOC_TPLG_TYPE_ENUM) {
Liam Girdwood8a978232015-05-29 19:06:14 +0100504 /* enumerated widget mixer */
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +0800505 for (i = 0; i < w->num_kcontrols; i++) {
506 struct snd_kcontrol *kcontrol = w->kcontrols[i];
507 struct soc_enum *se =
508 (struct soc_enum *)kcontrol->private_value;
Colin Ian Kingd7766aa2017-04-15 18:49:54 +0100509 int j;
Liam Girdwood8a978232015-05-29 19:06:14 +0100510
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +0800511 snd_ctl_remove(card, kcontrol);
Liam Girdwood8a978232015-05-29 19:06:14 +0100512
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +0800513 kfree(se->dobj.control.dvalues);
Colin Ian Kingd7766aa2017-04-15 18:49:54 +0100514 for (j = 0; j < se->items; j++)
515 kfree(se->dobj.control.dtexts[j]);
Liam Girdwood8a978232015-05-29 19:06:14 +0100516
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +0800517 kfree(se);
518 }
Liam Girdwood8a978232015-05-29 19:06:14 +0100519 kfree(w->kcontrol_news);
520 } else {
Mengdong Lineea3dd42016-11-25 16:09:17 +0800521 /* volume mixer or bytes controls */
Liam Girdwood8a978232015-05-29 19:06:14 +0100522 for (i = 0; i < w->num_kcontrols; i++) {
523 struct snd_kcontrol *kcontrol = w->kcontrols[i];
Liam Girdwood8a978232015-05-29 19:06:14 +0100524
Mengdong Lineea3dd42016-11-25 16:09:17 +0800525 if (dobj->widget.kcontrol_type
526 == SND_SOC_TPLG_TYPE_MIXER)
527 kfree(kcontrol->tlv.p);
Liam Girdwood8a978232015-05-29 19:06:14 +0100528
Mengdong Lineea3dd42016-11-25 16:09:17 +0800529 /* Private value is used as struct soc_mixer_control
530 * for volume mixers or soc_bytes_ext for bytes
531 * controls.
532 */
533 kfree((void *)kcontrol->private_value);
Colin Ian Kingc2b36122016-12-09 14:17:47 +0000534 snd_ctl_remove(card, kcontrol);
Liam Girdwood8a978232015-05-29 19:06:14 +0100535 }
536 kfree(w->kcontrol_news);
537 }
538 /* widget w is freed by soc-dapm.c */
539}
540
Mengdong Lin64527e82016-01-15 16:13:28 +0800541/* remove DAI configurations */
542static void remove_dai(struct snd_soc_component *comp,
Liam Girdwood8a978232015-05-29 19:06:14 +0100543 struct snd_soc_dobj *dobj, int pass)
544{
Mengdong Lin64527e82016-01-15 16:13:28 +0800545 struct snd_soc_dai_driver *dai_drv =
546 container_of(dobj, struct snd_soc_dai_driver, dobj);
547
Liam Girdwood8a978232015-05-29 19:06:14 +0100548 if (pass != SOC_TPLG_PASS_PCM_DAI)
549 return;
550
Mengdong Lin64527e82016-01-15 16:13:28 +0800551 if (dobj->ops && dobj->ops->dai_unload)
552 dobj->ops->dai_unload(comp, dobj);
Liam Girdwood8a978232015-05-29 19:06:14 +0100553
Mengdong Lin8f27c4a2016-11-03 01:02:59 +0800554 kfree(dai_drv->name);
Liam Girdwood8a978232015-05-29 19:06:14 +0100555 list_del(&dobj->list);
Mengdong Lin64527e82016-01-15 16:13:28 +0800556 kfree(dai_drv);
Liam Girdwood8a978232015-05-29 19:06:14 +0100557}
558
Mengdong Linacfc7d42016-01-15 16:13:37 +0800559/* remove link configurations */
560static void remove_link(struct snd_soc_component *comp,
561 struct snd_soc_dobj *dobj, int pass)
562{
563 struct snd_soc_dai_link *link =
564 container_of(dobj, struct snd_soc_dai_link, dobj);
565
566 if (pass != SOC_TPLG_PASS_PCM_DAI)
567 return;
568
569 if (dobj->ops && dobj->ops->link_unload)
570 dobj->ops->link_unload(comp, dobj);
571
Mengdong Lin8f27c4a2016-11-03 01:02:59 +0800572 kfree(link->name);
573 kfree(link->stream_name);
574 kfree(link->cpu_dai_name);
575
Mengdong Linacfc7d42016-01-15 16:13:37 +0800576 list_del(&dobj->list);
577 snd_soc_remove_dai_link(comp->card, link);
578 kfree(link);
579}
580
Liam Girdwood8a978232015-05-29 19:06:14 +0100581/* bind a kcontrol to it's IO handlers */
582static int soc_tplg_kcontrol_bind_io(struct snd_soc_tplg_ctl_hdr *hdr,
583 struct snd_kcontrol_new *k,
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800584 const struct soc_tplg *tplg)
Liam Girdwood8a978232015-05-29 19:06:14 +0100585{
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800586 const struct snd_soc_tplg_kcontrol_ops *ops;
Mengdong Lin1a3232d2015-08-18 18:12:20 +0800587 const struct snd_soc_tplg_bytes_ext_ops *ext_ops;
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800588 int num_ops, i;
Liam Girdwood8a978232015-05-29 19:06:14 +0100589
Mengdong Lin1a3232d2015-08-18 18:12:20 +0800590 if (hdr->ops.info == SND_SOC_TPLG_CTL_BYTES
591 && k->iface & SNDRV_CTL_ELEM_IFACE_MIXER
592 && k->access & SNDRV_CTL_ELEM_ACCESS_TLV_READWRITE
593 && k->access & SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK) {
594 struct soc_bytes_ext *sbe;
595 struct snd_soc_tplg_bytes_control *be;
596
597 sbe = (struct soc_bytes_ext *)k->private_value;
598 be = container_of(hdr, struct snd_soc_tplg_bytes_control, hdr);
599
600 /* TLV bytes controls need standard kcontrol info handler,
601 * TLV callback and extended put/get handlers.
602 */
Omair M Abdullahf4be9782015-11-09 23:20:01 +0530603 k->info = snd_soc_bytes_info_ext;
Mengdong Lin1a3232d2015-08-18 18:12:20 +0800604 k->tlv.c = snd_soc_bytes_tlv_callback;
605
606 ext_ops = tplg->bytes_ext_ops;
607 num_ops = tplg->bytes_ext_ops_count;
608 for (i = 0; i < num_ops; i++) {
609 if (!sbe->put && ext_ops[i].id == be->ext_ops.put)
610 sbe->put = ext_ops[i].put;
611 if (!sbe->get && ext_ops[i].id == be->ext_ops.get)
612 sbe->get = ext_ops[i].get;
613 }
614
615 if (sbe->put && sbe->get)
616 return 0;
617 else
618 return -EINVAL;
619 }
620
Mengdong Lin88a17d82015-08-18 18:11:51 +0800621 /* try and map vendor specific kcontrol handlers first */
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800622 ops = tplg->io_ops;
623 num_ops = tplg->io_ops_count;
Liam Girdwood8a978232015-05-29 19:06:14 +0100624 for (i = 0; i < num_ops; i++) {
625
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800626 if (k->put == NULL && ops[i].id == hdr->ops.put)
Liam Girdwood8a978232015-05-29 19:06:14 +0100627 k->put = ops[i].put;
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800628 if (k->get == NULL && ops[i].id == hdr->ops.get)
Liam Girdwood8a978232015-05-29 19:06:14 +0100629 k->get = ops[i].get;
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800630 if (k->info == NULL && ops[i].id == hdr->ops.info)
631 k->info = ops[i].info;
Liam Girdwood8a978232015-05-29 19:06:14 +0100632 }
633
Mengdong Lin88a17d82015-08-18 18:11:51 +0800634 /* vendor specific handlers found ? */
635 if (k->put && k->get && k->info)
636 return 0;
637
638 /* none found so try standard kcontrol handlers */
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800639 ops = io_ops;
640 num_ops = ARRAY_SIZE(io_ops);
Mengdong Lin88a17d82015-08-18 18:11:51 +0800641 for (i = 0; i < num_ops; i++) {
642
643 if (k->put == NULL && ops[i].id == hdr->ops.put)
644 k->put = ops[i].put;
645 if (k->get == NULL && ops[i].id == hdr->ops.get)
646 k->get = ops[i].get;
647 if (k->info == NULL && ops[i].id == hdr->ops.info)
Liam Girdwood8a978232015-05-29 19:06:14 +0100648 k->info = ops[i].info;
649 }
650
651 /* standard handlers found ? */
652 if (k->put && k->get && k->info)
653 return 0;
654
Liam Girdwood8a978232015-05-29 19:06:14 +0100655 /* nothing to bind */
656 return -EINVAL;
657}
658
659/* bind a widgets to it's evnt handlers */
660int snd_soc_tplg_widget_bind_event(struct snd_soc_dapm_widget *w,
661 const struct snd_soc_tplg_widget_events *events,
662 int num_events, u16 event_type)
663{
664 int i;
665
666 w->event = NULL;
667
668 for (i = 0; i < num_events; i++) {
669 if (event_type == events[i].type) {
670
671 /* found - so assign event */
672 w->event = events[i].event_handler;
673 return 0;
674 }
675 }
676
677 /* not found */
678 return -EINVAL;
679}
680EXPORT_SYMBOL_GPL(snd_soc_tplg_widget_bind_event);
681
682/* optionally pass new dynamic kcontrol to component driver. */
683static int soc_tplg_init_kcontrol(struct soc_tplg *tplg,
684 struct snd_kcontrol_new *k, struct snd_soc_tplg_ctl_hdr *hdr)
685{
686 if (tplg->comp && tplg->ops && tplg->ops->control_load)
687 return tplg->ops->control_load(tplg->comp, k, hdr);
688
689 return 0;
690}
691
Mengdong Lin28a87ee2015-08-05 14:41:13 +0100692
693static int soc_tplg_create_tlv_db_scale(struct soc_tplg *tplg,
694 struct snd_kcontrol_new *kc, struct snd_soc_tplg_tlv_dbscale *scale)
Liam Girdwood8a978232015-05-29 19:06:14 +0100695{
Mengdong Lin28a87ee2015-08-05 14:41:13 +0100696 unsigned int item_len = 2 * sizeof(unsigned int);
697 unsigned int *p;
Liam Girdwood8a978232015-05-29 19:06:14 +0100698
Mengdong Lin28a87ee2015-08-05 14:41:13 +0100699 p = kzalloc(item_len + 2 * sizeof(unsigned int), GFP_KERNEL);
700 if (!p)
Liam Girdwood8a978232015-05-29 19:06:14 +0100701 return -ENOMEM;
702
Mengdong Lin28a87ee2015-08-05 14:41:13 +0100703 p[0] = SNDRV_CTL_TLVT_DB_SCALE;
704 p[1] = item_len;
705 p[2] = scale->min;
706 p[3] = (scale->step & TLV_DB_SCALE_MASK)
707 | (scale->mute ? TLV_DB_SCALE_MUTE : 0);
Liam Girdwood8a978232015-05-29 19:06:14 +0100708
Mengdong Lin28a87ee2015-08-05 14:41:13 +0100709 kc->tlv.p = (void *)p;
710 return 0;
711}
712
713static int soc_tplg_create_tlv(struct soc_tplg *tplg,
714 struct snd_kcontrol_new *kc, struct snd_soc_tplg_ctl_hdr *tc)
715{
716 struct snd_soc_tplg_ctl_tlv *tplg_tlv;
717
718 if (!(tc->access & SNDRV_CTL_ELEM_ACCESS_TLV_READWRITE))
719 return 0;
720
Mengdong Lin1a3232d2015-08-18 18:12:20 +0800721 if (!(tc->access & SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK)) {
Mengdong Lin28a87ee2015-08-05 14:41:13 +0100722 tplg_tlv = &tc->tlv;
723 switch (tplg_tlv->type) {
724 case SNDRV_CTL_TLVT_DB_SCALE:
725 return soc_tplg_create_tlv_db_scale(tplg, kc,
726 &tplg_tlv->scale);
727
728 /* TODO: add support for other TLV types */
729 default:
730 dev_dbg(tplg->dev, "Unsupported TLV type %d\n",
731 tplg_tlv->type);
732 return -EINVAL;
733 }
734 }
Liam Girdwood8a978232015-05-29 19:06:14 +0100735
736 return 0;
737}
738
739static inline void soc_tplg_free_tlv(struct soc_tplg *tplg,
740 struct snd_kcontrol_new *kc)
741{
742 kfree(kc->tlv.p);
743}
744
745static int soc_tplg_dbytes_create(struct soc_tplg *tplg, unsigned int count,
746 size_t size)
747{
748 struct snd_soc_tplg_bytes_control *be;
749 struct soc_bytes_ext *sbe;
750 struct snd_kcontrol_new kc;
751 int i, err;
752
753 if (soc_tplg_check_elem_count(tplg,
754 sizeof(struct snd_soc_tplg_bytes_control), count,
755 size, "mixer bytes")) {
756 dev_err(tplg->dev, "ASoC: Invalid count %d for byte control\n",
757 count);
758 return -EINVAL;
759 }
760
761 for (i = 0; i < count; i++) {
762 be = (struct snd_soc_tplg_bytes_control *)tplg->pos;
763
764 /* validate kcontrol */
765 if (strnlen(be->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
766 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
767 return -EINVAL;
768
769 sbe = kzalloc(sizeof(*sbe), GFP_KERNEL);
770 if (sbe == NULL)
771 return -ENOMEM;
772
773 tplg->pos += (sizeof(struct snd_soc_tplg_bytes_control) +
774 be->priv.size);
775
776 dev_dbg(tplg->dev,
777 "ASoC: adding bytes kcontrol %s with access 0x%x\n",
778 be->hdr.name, be->hdr.access);
779
780 memset(&kc, 0, sizeof(kc));
781 kc.name = be->hdr.name;
782 kc.private_value = (long)sbe;
783 kc.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
784 kc.access = be->hdr.access;
785
786 sbe->max = be->max;
787 sbe->dobj.type = SND_SOC_DOBJ_BYTES;
788 sbe->dobj.ops = tplg->ops;
789 INIT_LIST_HEAD(&sbe->dobj.list);
790
791 /* map io handlers */
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800792 err = soc_tplg_kcontrol_bind_io(&be->hdr, &kc, tplg);
Liam Girdwood8a978232015-05-29 19:06:14 +0100793 if (err) {
794 soc_control_err(tplg, &be->hdr, be->hdr.name);
795 kfree(sbe);
796 continue;
797 }
798
799 /* pass control to driver for optional further init */
800 err = soc_tplg_init_kcontrol(tplg, &kc,
801 (struct snd_soc_tplg_ctl_hdr *)be);
802 if (err < 0) {
803 dev_err(tplg->dev, "ASoC: failed to init %s\n",
804 be->hdr.name);
805 kfree(sbe);
806 continue;
807 }
808
809 /* register control here */
810 err = soc_tplg_add_kcontrol(tplg, &kc,
811 &sbe->dobj.control.kcontrol);
812 if (err < 0) {
813 dev_err(tplg->dev, "ASoC: failed to add %s\n",
814 be->hdr.name);
815 kfree(sbe);
816 continue;
817 }
818
819 list_add(&sbe->dobj.list, &tplg->comp->dobj_list);
820 }
821 return 0;
822
823}
824
825static int soc_tplg_dmixer_create(struct soc_tplg *tplg, unsigned int count,
826 size_t size)
827{
828 struct snd_soc_tplg_mixer_control *mc;
829 struct soc_mixer_control *sm;
830 struct snd_kcontrol_new kc;
831 int i, err;
832
833 if (soc_tplg_check_elem_count(tplg,
834 sizeof(struct snd_soc_tplg_mixer_control),
835 count, size, "mixers")) {
836
837 dev_err(tplg->dev, "ASoC: invalid count %d for controls\n",
838 count);
839 return -EINVAL;
840 }
841
842 for (i = 0; i < count; i++) {
843 mc = (struct snd_soc_tplg_mixer_control *)tplg->pos;
844
845 /* validate kcontrol */
846 if (strnlen(mc->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
847 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
848 return -EINVAL;
849
850 sm = kzalloc(sizeof(*sm), GFP_KERNEL);
851 if (sm == NULL)
852 return -ENOMEM;
853 tplg->pos += (sizeof(struct snd_soc_tplg_mixer_control) +
854 mc->priv.size);
855
856 dev_dbg(tplg->dev,
857 "ASoC: adding mixer kcontrol %s with access 0x%x\n",
858 mc->hdr.name, mc->hdr.access);
859
860 memset(&kc, 0, sizeof(kc));
861 kc.name = mc->hdr.name;
862 kc.private_value = (long)sm;
863 kc.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
864 kc.access = mc->hdr.access;
865
866 /* we only support FL/FR channel mapping atm */
867 sm->reg = tplc_chan_get_reg(tplg, mc->channel,
868 SNDRV_CHMAP_FL);
869 sm->rreg = tplc_chan_get_reg(tplg, mc->channel,
870 SNDRV_CHMAP_FR);
871 sm->shift = tplc_chan_get_shift(tplg, mc->channel,
872 SNDRV_CHMAP_FL);
873 sm->rshift = tplc_chan_get_shift(tplg, mc->channel,
874 SNDRV_CHMAP_FR);
875
876 sm->max = mc->max;
877 sm->min = mc->min;
878 sm->invert = mc->invert;
879 sm->platform_max = mc->platform_max;
880 sm->dobj.index = tplg->index;
881 sm->dobj.ops = tplg->ops;
882 sm->dobj.type = SND_SOC_DOBJ_MIXER;
883 INIT_LIST_HEAD(&sm->dobj.list);
884
885 /* map io handlers */
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800886 err = soc_tplg_kcontrol_bind_io(&mc->hdr, &kc, tplg);
Liam Girdwood8a978232015-05-29 19:06:14 +0100887 if (err) {
888 soc_control_err(tplg, &mc->hdr, mc->hdr.name);
889 kfree(sm);
890 continue;
891 }
892
893 /* pass control to driver for optional further init */
894 err = soc_tplg_init_kcontrol(tplg, &kc,
895 (struct snd_soc_tplg_ctl_hdr *) mc);
896 if (err < 0) {
897 dev_err(tplg->dev, "ASoC: failed to init %s\n",
898 mc->hdr.name);
899 kfree(sm);
900 continue;
901 }
902
903 /* create any TLV data */
Mengdong Lin28a87ee2015-08-05 14:41:13 +0100904 soc_tplg_create_tlv(tplg, &kc, &mc->hdr);
Liam Girdwood8a978232015-05-29 19:06:14 +0100905
906 /* register control here */
907 err = soc_tplg_add_kcontrol(tplg, &kc,
908 &sm->dobj.control.kcontrol);
909 if (err < 0) {
910 dev_err(tplg->dev, "ASoC: failed to add %s\n",
911 mc->hdr.name);
912 soc_tplg_free_tlv(tplg, &kc);
913 kfree(sm);
914 continue;
915 }
916
917 list_add(&sm->dobj.list, &tplg->comp->dobj_list);
918 }
919
920 return 0;
921}
922
923static int soc_tplg_denum_create_texts(struct soc_enum *se,
924 struct snd_soc_tplg_enum_control *ec)
925{
926 int i, ret;
927
928 se->dobj.control.dtexts =
929 kzalloc(sizeof(char *) * ec->items, GFP_KERNEL);
930 if (se->dobj.control.dtexts == NULL)
931 return -ENOMEM;
932
933 for (i = 0; i < ec->items; i++) {
934
935 if (strnlen(ec->texts[i], SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
936 SNDRV_CTL_ELEM_ID_NAME_MAXLEN) {
937 ret = -EINVAL;
938 goto err;
939 }
940
941 se->dobj.control.dtexts[i] = kstrdup(ec->texts[i], GFP_KERNEL);
942 if (!se->dobj.control.dtexts[i]) {
943 ret = -ENOMEM;
944 goto err;
945 }
946 }
947
Mousumi Janab6e38b22017-04-11 13:06:22 +0530948 se->texts = (const char * const *)se->dobj.control.dtexts;
Liam Girdwood8a978232015-05-29 19:06:14 +0100949 return 0;
950
951err:
952 for (--i; i >= 0; i--)
953 kfree(se->dobj.control.dtexts[i]);
954 kfree(se->dobj.control.dtexts);
955 return ret;
956}
957
958static int soc_tplg_denum_create_values(struct soc_enum *se,
959 struct snd_soc_tplg_enum_control *ec)
960{
961 if (ec->items > sizeof(*ec->values))
962 return -EINVAL;
963
Andrzej Hajda376c0af2015-08-07 09:59:37 +0200964 se->dobj.control.dvalues = kmemdup(ec->values,
965 ec->items * sizeof(u32),
966 GFP_KERNEL);
Liam Girdwood8a978232015-05-29 19:06:14 +0100967 if (!se->dobj.control.dvalues)
968 return -ENOMEM;
969
Liam Girdwood8a978232015-05-29 19:06:14 +0100970 return 0;
971}
972
973static int soc_tplg_denum_create(struct soc_tplg *tplg, unsigned int count,
974 size_t size)
975{
976 struct snd_soc_tplg_enum_control *ec;
977 struct soc_enum *se;
978 struct snd_kcontrol_new kc;
979 int i, ret, err;
980
981 if (soc_tplg_check_elem_count(tplg,
982 sizeof(struct snd_soc_tplg_enum_control),
983 count, size, "enums")) {
984
985 dev_err(tplg->dev, "ASoC: invalid count %d for enum controls\n",
986 count);
987 return -EINVAL;
988 }
989
990 for (i = 0; i < count; i++) {
991 ec = (struct snd_soc_tplg_enum_control *)tplg->pos;
992 tplg->pos += (sizeof(struct snd_soc_tplg_enum_control) +
993 ec->priv.size);
994
995 /* validate kcontrol */
996 if (strnlen(ec->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
997 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
998 return -EINVAL;
999
1000 se = kzalloc((sizeof(*se)), GFP_KERNEL);
1001 if (se == NULL)
1002 return -ENOMEM;
1003
1004 dev_dbg(tplg->dev, "ASoC: adding enum kcontrol %s size %d\n",
1005 ec->hdr.name, ec->items);
1006
1007 memset(&kc, 0, sizeof(kc));
1008 kc.name = ec->hdr.name;
1009 kc.private_value = (long)se;
1010 kc.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
1011 kc.access = ec->hdr.access;
1012
1013 se->reg = tplc_chan_get_reg(tplg, ec->channel, SNDRV_CHMAP_FL);
1014 se->shift_l = tplc_chan_get_shift(tplg, ec->channel,
1015 SNDRV_CHMAP_FL);
1016 se->shift_r = tplc_chan_get_shift(tplg, ec->channel,
1017 SNDRV_CHMAP_FL);
1018
1019 se->items = ec->items;
1020 se->mask = ec->mask;
1021 se->dobj.index = tplg->index;
1022 se->dobj.type = SND_SOC_DOBJ_ENUM;
1023 se->dobj.ops = tplg->ops;
1024 INIT_LIST_HEAD(&se->dobj.list);
1025
1026 switch (ec->hdr.ops.info) {
1027 case SND_SOC_TPLG_DAPM_CTL_ENUM_VALUE:
1028 case SND_SOC_TPLG_CTL_ENUM_VALUE:
1029 err = soc_tplg_denum_create_values(se, ec);
1030 if (err < 0) {
1031 dev_err(tplg->dev,
1032 "ASoC: could not create values for %s\n",
1033 ec->hdr.name);
1034 kfree(se);
1035 continue;
1036 }
1037 /* fall through and create texts */
1038 case SND_SOC_TPLG_CTL_ENUM:
1039 case SND_SOC_TPLG_DAPM_CTL_ENUM_DOUBLE:
1040 case SND_SOC_TPLG_DAPM_CTL_ENUM_VIRT:
1041 err = soc_tplg_denum_create_texts(se, ec);
1042 if (err < 0) {
1043 dev_err(tplg->dev,
1044 "ASoC: could not create texts for %s\n",
1045 ec->hdr.name);
1046 kfree(se);
1047 continue;
1048 }
1049 break;
1050 default:
1051 dev_err(tplg->dev,
1052 "ASoC: invalid enum control type %d for %s\n",
1053 ec->hdr.ops.info, ec->hdr.name);
1054 kfree(se);
1055 continue;
1056 }
1057
1058 /* map io handlers */
Mengdong Lin2b5cdb92015-08-18 18:12:01 +08001059 err = soc_tplg_kcontrol_bind_io(&ec->hdr, &kc, tplg);
Liam Girdwood8a978232015-05-29 19:06:14 +01001060 if (err) {
1061 soc_control_err(tplg, &ec->hdr, ec->hdr.name);
1062 kfree(se);
1063 continue;
1064 }
1065
1066 /* pass control to driver for optional further init */
1067 err = soc_tplg_init_kcontrol(tplg, &kc,
1068 (struct snd_soc_tplg_ctl_hdr *) ec);
1069 if (err < 0) {
1070 dev_err(tplg->dev, "ASoC: failed to init %s\n",
1071 ec->hdr.name);
1072 kfree(se);
1073 continue;
1074 }
1075
1076 /* register control here */
1077 ret = soc_tplg_add_kcontrol(tplg,
1078 &kc, &se->dobj.control.kcontrol);
1079 if (ret < 0) {
1080 dev_err(tplg->dev, "ASoC: could not add kcontrol %s\n",
1081 ec->hdr.name);
1082 kfree(se);
1083 continue;
1084 }
1085
1086 list_add(&se->dobj.list, &tplg->comp->dobj_list);
1087 }
1088
1089 return 0;
1090}
1091
1092static int soc_tplg_kcontrol_elems_load(struct soc_tplg *tplg,
1093 struct snd_soc_tplg_hdr *hdr)
1094{
1095 struct snd_soc_tplg_ctl_hdr *control_hdr;
1096 int i;
1097
1098 if (tplg->pass != SOC_TPLG_PASS_MIXER) {
1099 tplg->pos += hdr->size + hdr->payload_size;
1100 return 0;
1101 }
1102
1103 dev_dbg(tplg->dev, "ASoC: adding %d kcontrols at 0x%lx\n", hdr->count,
1104 soc_tplg_get_offset(tplg));
1105
1106 for (i = 0; i < hdr->count; i++) {
1107
1108 control_hdr = (struct snd_soc_tplg_ctl_hdr *)tplg->pos;
1109
Mengdong Lin06eb49f2016-04-27 14:52:56 +08001110 if (control_hdr->size != sizeof(*control_hdr)) {
1111 dev_err(tplg->dev, "ASoC: invalid control size\n");
1112 return -EINVAL;
1113 }
1114
Liam Girdwood8a978232015-05-29 19:06:14 +01001115 switch (control_hdr->ops.info) {
1116 case SND_SOC_TPLG_CTL_VOLSW:
1117 case SND_SOC_TPLG_CTL_STROBE:
1118 case SND_SOC_TPLG_CTL_VOLSW_SX:
1119 case SND_SOC_TPLG_CTL_VOLSW_XR_SX:
1120 case SND_SOC_TPLG_CTL_RANGE:
1121 case SND_SOC_TPLG_DAPM_CTL_VOLSW:
1122 case SND_SOC_TPLG_DAPM_CTL_PIN:
1123 soc_tplg_dmixer_create(tplg, 1, hdr->payload_size);
1124 break;
1125 case SND_SOC_TPLG_CTL_ENUM:
1126 case SND_SOC_TPLG_CTL_ENUM_VALUE:
1127 case SND_SOC_TPLG_DAPM_CTL_ENUM_DOUBLE:
1128 case SND_SOC_TPLG_DAPM_CTL_ENUM_VIRT:
1129 case SND_SOC_TPLG_DAPM_CTL_ENUM_VALUE:
1130 soc_tplg_denum_create(tplg, 1, hdr->payload_size);
1131 break;
1132 case SND_SOC_TPLG_CTL_BYTES:
1133 soc_tplg_dbytes_create(tplg, 1, hdr->payload_size);
1134 break;
1135 default:
1136 soc_bind_err(tplg, control_hdr, i);
1137 return -EINVAL;
1138 }
1139 }
1140
1141 return 0;
1142}
1143
1144static int soc_tplg_dapm_graph_elems_load(struct soc_tplg *tplg,
1145 struct snd_soc_tplg_hdr *hdr)
1146{
1147 struct snd_soc_dapm_context *dapm = &tplg->comp->dapm;
1148 struct snd_soc_dapm_route route;
1149 struct snd_soc_tplg_dapm_graph_elem *elem;
1150 int count = hdr->count, i;
1151
1152 if (tplg->pass != SOC_TPLG_PASS_GRAPH) {
1153 tplg->pos += hdr->size + hdr->payload_size;
1154 return 0;
1155 }
1156
1157 if (soc_tplg_check_elem_count(tplg,
1158 sizeof(struct snd_soc_tplg_dapm_graph_elem),
1159 count, hdr->payload_size, "graph")) {
1160
1161 dev_err(tplg->dev, "ASoC: invalid count %d for DAPM routes\n",
1162 count);
1163 return -EINVAL;
1164 }
1165
1166 dev_dbg(tplg->dev, "ASoC: adding %d DAPM routes\n", count);
1167
1168 for (i = 0; i < count; i++) {
1169 elem = (struct snd_soc_tplg_dapm_graph_elem *)tplg->pos;
1170 tplg->pos += sizeof(struct snd_soc_tplg_dapm_graph_elem);
1171
1172 /* validate routes */
1173 if (strnlen(elem->source, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1174 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
1175 return -EINVAL;
1176 if (strnlen(elem->sink, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1177 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
1178 return -EINVAL;
1179 if (strnlen(elem->control, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1180 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
1181 return -EINVAL;
1182
1183 route.source = elem->source;
1184 route.sink = elem->sink;
1185 route.connected = NULL; /* set to NULL atm for tplg users */
1186 if (strnlen(elem->control, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) == 0)
1187 route.control = NULL;
1188 else
1189 route.control = elem->control;
1190
1191 /* add route, but keep going if some fail */
1192 snd_soc_dapm_add_routes(dapm, &route, 1);
1193 }
1194
1195 return 0;
1196}
1197
1198static struct snd_kcontrol_new *soc_tplg_dapm_widget_dmixer_create(
1199 struct soc_tplg *tplg, int num_kcontrols)
1200{
1201 struct snd_kcontrol_new *kc;
1202 struct soc_mixer_control *sm;
1203 struct snd_soc_tplg_mixer_control *mc;
1204 int i, err;
1205
Axel Lin4ca7deb2015-08-05 22:34:22 +08001206 kc = kcalloc(num_kcontrols, sizeof(*kc), GFP_KERNEL);
Liam Girdwood8a978232015-05-29 19:06:14 +01001207 if (kc == NULL)
1208 return NULL;
1209
1210 for (i = 0; i < num_kcontrols; i++) {
1211 mc = (struct snd_soc_tplg_mixer_control *)tplg->pos;
1212 sm = kzalloc(sizeof(*sm), GFP_KERNEL);
1213 if (sm == NULL)
1214 goto err;
1215
1216 tplg->pos += (sizeof(struct snd_soc_tplg_mixer_control) +
1217 mc->priv.size);
1218
1219 /* validate kcontrol */
1220 if (strnlen(mc->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1221 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
1222 goto err_str;
1223
1224 dev_dbg(tplg->dev, " adding DAPM widget mixer control %s at %d\n",
1225 mc->hdr.name, i);
1226
1227 kc[i].name = mc->hdr.name;
1228 kc[i].private_value = (long)sm;
1229 kc[i].iface = SNDRV_CTL_ELEM_IFACE_MIXER;
1230 kc[i].access = mc->hdr.access;
1231
1232 /* we only support FL/FR channel mapping atm */
1233 sm->reg = tplc_chan_get_reg(tplg, mc->channel,
1234 SNDRV_CHMAP_FL);
1235 sm->rreg = tplc_chan_get_reg(tplg, mc->channel,
1236 SNDRV_CHMAP_FR);
1237 sm->shift = tplc_chan_get_shift(tplg, mc->channel,
1238 SNDRV_CHMAP_FL);
1239 sm->rshift = tplc_chan_get_shift(tplg, mc->channel,
1240 SNDRV_CHMAP_FR);
1241
1242 sm->max = mc->max;
1243 sm->min = mc->min;
1244 sm->invert = mc->invert;
1245 sm->platform_max = mc->platform_max;
1246 sm->dobj.index = tplg->index;
1247 INIT_LIST_HEAD(&sm->dobj.list);
1248
1249 /* map io handlers */
Mengdong Lin2b5cdb92015-08-18 18:12:01 +08001250 err = soc_tplg_kcontrol_bind_io(&mc->hdr, &kc[i], tplg);
Liam Girdwood8a978232015-05-29 19:06:14 +01001251 if (err) {
1252 soc_control_err(tplg, &mc->hdr, mc->hdr.name);
1253 kfree(sm);
1254 continue;
1255 }
1256
1257 /* pass control to driver for optional further init */
1258 err = soc_tplg_init_kcontrol(tplg, &kc[i],
1259 (struct snd_soc_tplg_ctl_hdr *)mc);
1260 if (err < 0) {
1261 dev_err(tplg->dev, "ASoC: failed to init %s\n",
1262 mc->hdr.name);
1263 kfree(sm);
1264 continue;
1265 }
1266 }
1267 return kc;
1268
1269err_str:
1270 kfree(sm);
1271err:
1272 for (--i; i >= 0; i--)
1273 kfree((void *)kc[i].private_value);
1274 kfree(kc);
1275 return NULL;
1276}
1277
1278static struct snd_kcontrol_new *soc_tplg_dapm_widget_denum_create(
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001279 struct soc_tplg *tplg, int num_kcontrols)
Liam Girdwood8a978232015-05-29 19:06:14 +01001280{
1281 struct snd_kcontrol_new *kc;
1282 struct snd_soc_tplg_enum_control *ec;
1283 struct soc_enum *se;
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001284 int i, j, err;
Liam Girdwood8a978232015-05-29 19:06:14 +01001285
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001286 kc = kcalloc(num_kcontrols, sizeof(*kc), GFP_KERNEL);
Liam Girdwood8a978232015-05-29 19:06:14 +01001287 if (kc == NULL)
1288 return NULL;
1289
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001290 for (i = 0; i < num_kcontrols; i++) {
1291 ec = (struct snd_soc_tplg_enum_control *)tplg->pos;
1292 /* validate kcontrol */
1293 if (strnlen(ec->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1294 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
1295 return NULL;
Liam Girdwood8a978232015-05-29 19:06:14 +01001296
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001297 se = kzalloc(sizeof(*se), GFP_KERNEL);
1298 if (se == NULL)
1299 goto err;
Liam Girdwood8a978232015-05-29 19:06:14 +01001300
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001301 dev_dbg(tplg->dev, " adding DAPM widget enum control %s\n",
Liam Girdwood8a978232015-05-29 19:06:14 +01001302 ec->hdr.name);
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001303
1304 kc[i].name = ec->hdr.name;
1305 kc[i].private_value = (long)se;
1306 kc[i].iface = SNDRV_CTL_ELEM_IFACE_MIXER;
1307 kc[i].access = ec->hdr.access;
1308
1309 /* we only support FL/FR channel mapping atm */
1310 se->reg = tplc_chan_get_reg(tplg, ec->channel, SNDRV_CHMAP_FL);
1311 se->shift_l = tplc_chan_get_shift(tplg, ec->channel,
1312 SNDRV_CHMAP_FL);
1313 se->shift_r = tplc_chan_get_shift(tplg, ec->channel,
1314 SNDRV_CHMAP_FR);
1315
1316 se->items = ec->items;
1317 se->mask = ec->mask;
1318 se->dobj.index = tplg->index;
1319
1320 switch (ec->hdr.ops.info) {
1321 case SND_SOC_TPLG_CTL_ENUM_VALUE:
1322 case SND_SOC_TPLG_DAPM_CTL_ENUM_VALUE:
1323 err = soc_tplg_denum_create_values(se, ec);
1324 if (err < 0) {
1325 dev_err(tplg->dev, "ASoC: could not create values for %s\n",
1326 ec->hdr.name);
1327 goto err_se;
1328 }
1329 /* fall through to create texts */
1330 case SND_SOC_TPLG_CTL_ENUM:
1331 case SND_SOC_TPLG_DAPM_CTL_ENUM_DOUBLE:
1332 case SND_SOC_TPLG_DAPM_CTL_ENUM_VIRT:
1333 err = soc_tplg_denum_create_texts(se, ec);
1334 if (err < 0) {
1335 dev_err(tplg->dev, "ASoC: could not create texts for %s\n",
1336 ec->hdr.name);
1337 goto err_se;
1338 }
1339 break;
1340 default:
1341 dev_err(tplg->dev, "ASoC: invalid enum control type %d for %s\n",
1342 ec->hdr.ops.info, ec->hdr.name);
1343 goto err_se;
1344 }
1345
1346 /* map io handlers */
1347 err = soc_tplg_kcontrol_bind_io(&ec->hdr, &kc[i], tplg);
1348 if (err) {
1349 soc_control_err(tplg, &ec->hdr, ec->hdr.name);
1350 goto err_se;
1351 }
1352
1353 /* pass control to driver for optional further init */
1354 err = soc_tplg_init_kcontrol(tplg, &kc[i],
1355 (struct snd_soc_tplg_ctl_hdr *)ec);
1356 if (err < 0) {
1357 dev_err(tplg->dev, "ASoC: failed to init %s\n",
1358 ec->hdr.name);
1359 goto err_se;
1360 }
1361
1362 tplg->pos += (sizeof(struct snd_soc_tplg_enum_control) +
1363 ec->priv.size);
Liam Girdwood8a978232015-05-29 19:06:14 +01001364 }
1365
1366 return kc;
1367
1368err_se:
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001369 for (; i >= 0; i--) {
1370 /* free values and texts */
1371 se = (struct soc_enum *)kc[i].private_value;
1372 kfree(se->dobj.control.dvalues);
1373 for (j = 0; j < ec->items; j++)
1374 kfree(se->dobj.control.dtexts[j]);
Liam Girdwood8a978232015-05-29 19:06:14 +01001375
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001376 kfree(se);
1377 }
Liam Girdwood8a978232015-05-29 19:06:14 +01001378err:
1379 kfree(kc);
1380
1381 return NULL;
1382}
1383
1384static struct snd_kcontrol_new *soc_tplg_dapm_widget_dbytes_create(
1385 struct soc_tplg *tplg, int count)
1386{
1387 struct snd_soc_tplg_bytes_control *be;
1388 struct soc_bytes_ext *sbe;
1389 struct snd_kcontrol_new *kc;
1390 int i, err;
1391
Axel Lin4ca7deb2015-08-05 22:34:22 +08001392 kc = kcalloc(count, sizeof(*kc), GFP_KERNEL);
Liam Girdwood8a978232015-05-29 19:06:14 +01001393 if (!kc)
1394 return NULL;
1395
1396 for (i = 0; i < count; i++) {
1397 be = (struct snd_soc_tplg_bytes_control *)tplg->pos;
1398
1399 /* validate kcontrol */
1400 if (strnlen(be->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1401 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
1402 goto err;
1403
1404 sbe = kzalloc(sizeof(*sbe), GFP_KERNEL);
1405 if (sbe == NULL)
1406 goto err;
1407
1408 tplg->pos += (sizeof(struct snd_soc_tplg_bytes_control) +
1409 be->priv.size);
1410
1411 dev_dbg(tplg->dev,
1412 "ASoC: adding bytes kcontrol %s with access 0x%x\n",
1413 be->hdr.name, be->hdr.access);
1414
Liam Girdwood8a978232015-05-29 19:06:14 +01001415 kc[i].name = be->hdr.name;
1416 kc[i].private_value = (long)sbe;
1417 kc[i].iface = SNDRV_CTL_ELEM_IFACE_MIXER;
1418 kc[i].access = be->hdr.access;
1419
1420 sbe->max = be->max;
1421 INIT_LIST_HEAD(&sbe->dobj.list);
1422
1423 /* map standard io handlers and check for external handlers */
Mengdong Lin2b5cdb92015-08-18 18:12:01 +08001424 err = soc_tplg_kcontrol_bind_io(&be->hdr, &kc[i], tplg);
Liam Girdwood8a978232015-05-29 19:06:14 +01001425 if (err) {
1426 soc_control_err(tplg, &be->hdr, be->hdr.name);
1427 kfree(sbe);
1428 continue;
1429 }
1430
1431 /* pass control to driver for optional further init */
1432 err = soc_tplg_init_kcontrol(tplg, &kc[i],
1433 (struct snd_soc_tplg_ctl_hdr *)be);
1434 if (err < 0) {
1435 dev_err(tplg->dev, "ASoC: failed to init %s\n",
1436 be->hdr.name);
1437 kfree(sbe);
1438 continue;
1439 }
1440 }
1441
1442 return kc;
1443
1444err:
1445 for (--i; i >= 0; i--)
1446 kfree((void *)kc[i].private_value);
1447
1448 kfree(kc);
1449 return NULL;
1450}
1451
1452static int soc_tplg_dapm_widget_create(struct soc_tplg *tplg,
1453 struct snd_soc_tplg_dapm_widget *w)
1454{
1455 struct snd_soc_dapm_context *dapm = &tplg->comp->dapm;
1456 struct snd_soc_dapm_widget template, *widget;
1457 struct snd_soc_tplg_ctl_hdr *control_hdr;
1458 struct snd_soc_card *card = tplg->comp->card;
Mengdong Lineea3dd42016-11-25 16:09:17 +08001459 unsigned int kcontrol_type;
Liam Girdwood8a978232015-05-29 19:06:14 +01001460 int ret = 0;
1461
1462 if (strnlen(w->name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1463 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
1464 return -EINVAL;
1465 if (strnlen(w->sname, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1466 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
1467 return -EINVAL;
1468
1469 dev_dbg(tplg->dev, "ASoC: creating DAPM widget %s id %d\n",
1470 w->name, w->id);
1471
1472 memset(&template, 0, sizeof(template));
1473
1474 /* map user to kernel widget ID */
1475 template.id = get_widget_id(w->id);
1476 if (template.id < 0)
1477 return template.id;
1478
Liam Girdwoodc3421a62017-06-06 15:45:09 +01001479 /* strings are allocated here, but used and freed by the widget */
Liam Girdwood8a978232015-05-29 19:06:14 +01001480 template.name = kstrdup(w->name, GFP_KERNEL);
1481 if (!template.name)
1482 return -ENOMEM;
1483 template.sname = kstrdup(w->sname, GFP_KERNEL);
1484 if (!template.sname) {
1485 ret = -ENOMEM;
1486 goto err;
1487 }
1488 template.reg = w->reg;
1489 template.shift = w->shift;
1490 template.mask = w->mask;
Subhransu S. Prusty6dc6db72015-06-29 17:36:44 +01001491 template.subseq = w->subseq;
Liam Girdwood8a978232015-05-29 19:06:14 +01001492 template.on_val = w->invert ? 0 : 1;
1493 template.off_val = w->invert ? 1 : 0;
1494 template.ignore_suspend = w->ignore_suspend;
1495 template.event_flags = w->event_flags;
1496 template.dobj.index = tplg->index;
1497
1498 tplg->pos +=
1499 (sizeof(struct snd_soc_tplg_dapm_widget) + w->priv.size);
1500 if (w->num_kcontrols == 0) {
Arnd Bergmanndd5abb72016-12-09 12:51:46 +01001501 kcontrol_type = 0;
Liam Girdwood8a978232015-05-29 19:06:14 +01001502 template.num_kcontrols = 0;
1503 goto widget;
1504 }
1505
1506 control_hdr = (struct snd_soc_tplg_ctl_hdr *)tplg->pos;
1507 dev_dbg(tplg->dev, "ASoC: template %s has %d controls of type %x\n",
1508 w->name, w->num_kcontrols, control_hdr->type);
1509
1510 switch (control_hdr->ops.info) {
1511 case SND_SOC_TPLG_CTL_VOLSW:
1512 case SND_SOC_TPLG_CTL_STROBE:
1513 case SND_SOC_TPLG_CTL_VOLSW_SX:
1514 case SND_SOC_TPLG_CTL_VOLSW_XR_SX:
1515 case SND_SOC_TPLG_CTL_RANGE:
1516 case SND_SOC_TPLG_DAPM_CTL_VOLSW:
Mengdong Lineea3dd42016-11-25 16:09:17 +08001517 kcontrol_type = SND_SOC_TPLG_TYPE_MIXER; /* volume mixer */
Liam Girdwood8a978232015-05-29 19:06:14 +01001518 template.num_kcontrols = w->num_kcontrols;
1519 template.kcontrol_news =
1520 soc_tplg_dapm_widget_dmixer_create(tplg,
1521 template.num_kcontrols);
1522 if (!template.kcontrol_news) {
1523 ret = -ENOMEM;
1524 goto hdr_err;
1525 }
1526 break;
1527 case SND_SOC_TPLG_CTL_ENUM:
1528 case SND_SOC_TPLG_CTL_ENUM_VALUE:
1529 case SND_SOC_TPLG_DAPM_CTL_ENUM_DOUBLE:
1530 case SND_SOC_TPLG_DAPM_CTL_ENUM_VIRT:
1531 case SND_SOC_TPLG_DAPM_CTL_ENUM_VALUE:
Mengdong Lineea3dd42016-11-25 16:09:17 +08001532 kcontrol_type = SND_SOC_TPLG_TYPE_ENUM; /* enumerated mixer */
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001533 template.num_kcontrols = w->num_kcontrols;
Liam Girdwood8a978232015-05-29 19:06:14 +01001534 template.kcontrol_news =
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001535 soc_tplg_dapm_widget_denum_create(tplg,
1536 template.num_kcontrols);
Liam Girdwood8a978232015-05-29 19:06:14 +01001537 if (!template.kcontrol_news) {
1538 ret = -ENOMEM;
1539 goto hdr_err;
1540 }
1541 break;
1542 case SND_SOC_TPLG_CTL_BYTES:
Mengdong Lineea3dd42016-11-25 16:09:17 +08001543 kcontrol_type = SND_SOC_TPLG_TYPE_BYTES; /* bytes control */
Liam Girdwood8a978232015-05-29 19:06:14 +01001544 template.num_kcontrols = w->num_kcontrols;
1545 template.kcontrol_news =
1546 soc_tplg_dapm_widget_dbytes_create(tplg,
1547 template.num_kcontrols);
1548 if (!template.kcontrol_news) {
1549 ret = -ENOMEM;
1550 goto hdr_err;
1551 }
1552 break;
1553 default:
1554 dev_err(tplg->dev, "ASoC: invalid widget control type %d:%d:%d\n",
1555 control_hdr->ops.get, control_hdr->ops.put,
1556 control_hdr->ops.info);
1557 ret = -EINVAL;
1558 goto hdr_err;
1559 }
1560
1561widget:
1562 ret = soc_tplg_widget_load(tplg, &template, w);
1563 if (ret < 0)
1564 goto hdr_err;
1565
1566 /* card dapm mutex is held by the core if we are loading topology
1567 * data during sound card init. */
1568 if (card->instantiated)
1569 widget = snd_soc_dapm_new_control(dapm, &template);
1570 else
1571 widget = snd_soc_dapm_new_control_unlocked(dapm, &template);
Linus Walleij37e1df82017-01-13 10:23:52 +01001572 if (IS_ERR(widget)) {
1573 ret = PTR_ERR(widget);
1574 /* Do not nag about probe deferrals */
1575 if (ret != -EPROBE_DEFER)
1576 dev_err(tplg->dev,
1577 "ASoC: failed to create widget %s controls (%d)\n",
1578 w->name, ret);
1579 goto hdr_err;
1580 }
Liam Girdwood8a978232015-05-29 19:06:14 +01001581 if (widget == NULL) {
1582 dev_err(tplg->dev, "ASoC: failed to create widget %s controls\n",
1583 w->name);
Wei Yongjun8ae3ea42016-08-10 13:43:12 +00001584 ret = -ENOMEM;
Liam Girdwood8a978232015-05-29 19:06:14 +01001585 goto hdr_err;
1586 }
1587
1588 widget->dobj.type = SND_SOC_DOBJ_WIDGET;
Mengdong Lineea3dd42016-11-25 16:09:17 +08001589 widget->dobj.widget.kcontrol_type = kcontrol_type;
Liam Girdwood8a978232015-05-29 19:06:14 +01001590 widget->dobj.ops = tplg->ops;
1591 widget->dobj.index = tplg->index;
1592 list_add(&widget->dobj.list, &tplg->comp->dobj_list);
Liam Girdwoodebd259d2017-06-09 15:43:23 +01001593
1594 ret = soc_tplg_widget_ready(tplg, widget, w);
1595 if (ret < 0)
1596 goto ready_err;
1597
Liam Girdwood8a978232015-05-29 19:06:14 +01001598 return 0;
1599
Liam Girdwoodebd259d2017-06-09 15:43:23 +01001600ready_err:
1601 snd_soc_tplg_widget_remove(widget);
1602 snd_soc_dapm_free_widget(widget);
Liam Girdwood8a978232015-05-29 19:06:14 +01001603hdr_err:
1604 kfree(template.sname);
1605err:
1606 kfree(template.name);
1607 return ret;
1608}
1609
1610static int soc_tplg_dapm_widget_elems_load(struct soc_tplg *tplg,
1611 struct snd_soc_tplg_hdr *hdr)
1612{
1613 struct snd_soc_tplg_dapm_widget *widget;
1614 int ret, count = hdr->count, i;
1615
1616 if (tplg->pass != SOC_TPLG_PASS_WIDGET)
1617 return 0;
1618
1619 dev_dbg(tplg->dev, "ASoC: adding %d DAPM widgets\n", count);
1620
1621 for (i = 0; i < count; i++) {
1622 widget = (struct snd_soc_tplg_dapm_widget *) tplg->pos;
Mengdong Lin06eb49f2016-04-27 14:52:56 +08001623 if (widget->size != sizeof(*widget)) {
1624 dev_err(tplg->dev, "ASoC: invalid widget size\n");
1625 return -EINVAL;
1626 }
1627
Liam Girdwood8a978232015-05-29 19:06:14 +01001628 ret = soc_tplg_dapm_widget_create(tplg, widget);
Mengdong Lin7de76b62016-04-27 14:52:38 +08001629 if (ret < 0) {
Liam Girdwood8a978232015-05-29 19:06:14 +01001630 dev_err(tplg->dev, "ASoC: failed to load widget %s\n",
1631 widget->name);
Mengdong Lin7de76b62016-04-27 14:52:38 +08001632 return ret;
1633 }
Liam Girdwood8a978232015-05-29 19:06:14 +01001634 }
1635
1636 return 0;
1637}
1638
1639static int soc_tplg_dapm_complete(struct soc_tplg *tplg)
1640{
1641 struct snd_soc_card *card = tplg->comp->card;
1642 int ret;
1643
1644 /* Card might not have been registered at this point.
1645 * If so, just return success.
1646 */
1647 if (!card || !card->instantiated) {
1648 dev_warn(tplg->dev, "ASoC: Parent card not yet available,"
Liam Girdwoodcc9d4712017-06-06 15:45:08 +01001649 " widget card binding deferred\n");
Liam Girdwood8a978232015-05-29 19:06:14 +01001650 return 0;
1651 }
1652
1653 ret = snd_soc_dapm_new_widgets(card);
1654 if (ret < 0)
1655 dev_err(tplg->dev, "ASoC: failed to create new widgets %d\n",
1656 ret);
1657
1658 return 0;
1659}
1660
Mengdong Linb6b6e4d2016-02-22 16:29:19 +08001661static void set_stream_info(struct snd_soc_pcm_stream *stream,
1662 struct snd_soc_tplg_stream_caps *caps)
1663{
1664 stream->stream_name = kstrdup(caps->name, GFP_KERNEL);
1665 stream->channels_min = caps->channels_min;
1666 stream->channels_max = caps->channels_max;
1667 stream->rates = caps->rates;
1668 stream->rate_min = caps->rate_min;
1669 stream->rate_max = caps->rate_max;
1670 stream->formats = caps->formats;
Mengdong Linf918e162016-08-19 18:12:46 +08001671 stream->sig_bits = caps->sig_bits;
Mengdong Linb6b6e4d2016-02-22 16:29:19 +08001672}
1673
Mengdong Lin0038be92016-07-26 14:32:37 +08001674static void set_dai_flags(struct snd_soc_dai_driver *dai_drv,
1675 unsigned int flag_mask, unsigned int flags)
1676{
1677 if (flag_mask & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_RATES)
1678 dai_drv->symmetric_rates =
1679 flags & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_RATES ? 1 : 0;
1680
1681 if (flag_mask & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_CHANNELS)
1682 dai_drv->symmetric_channels =
1683 flags & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_CHANNELS ?
1684 1 : 0;
1685
1686 if (flag_mask & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_SAMPLEBITS)
1687 dai_drv->symmetric_samplebits =
1688 flags & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_SAMPLEBITS ?
1689 1 : 0;
1690}
1691
Mengdong Lin64527e82016-01-15 16:13:28 +08001692static int soc_tplg_dai_create(struct soc_tplg *tplg,
1693 struct snd_soc_tplg_pcm *pcm)
1694{
1695 struct snd_soc_dai_driver *dai_drv;
1696 struct snd_soc_pcm_stream *stream;
1697 struct snd_soc_tplg_stream_caps *caps;
1698 int ret;
1699
1700 dai_drv = kzalloc(sizeof(struct snd_soc_dai_driver), GFP_KERNEL);
1701 if (dai_drv == NULL)
1702 return -ENOMEM;
1703
Mengdong Lin8f27c4a2016-11-03 01:02:59 +08001704 if (strlen(pcm->dai_name))
1705 dai_drv->name = kstrdup(pcm->dai_name, GFP_KERNEL);
Mengdong Lin64527e82016-01-15 16:13:28 +08001706 dai_drv->id = pcm->dai_id;
1707
1708 if (pcm->playback) {
1709 stream = &dai_drv->playback;
1710 caps = &pcm->caps[SND_SOC_TPLG_STREAM_PLAYBACK];
Mengdong Linb6b6e4d2016-02-22 16:29:19 +08001711 set_stream_info(stream, caps);
Mengdong Lin64527e82016-01-15 16:13:28 +08001712 }
1713
1714 if (pcm->capture) {
1715 stream = &dai_drv->capture;
1716 caps = &pcm->caps[SND_SOC_TPLG_STREAM_CAPTURE];
Mengdong Linb6b6e4d2016-02-22 16:29:19 +08001717 set_stream_info(stream, caps);
Mengdong Lin64527e82016-01-15 16:13:28 +08001718 }
1719
1720 /* pass control to component driver for optional further init */
1721 ret = soc_tplg_dai_load(tplg, dai_drv);
1722 if (ret < 0) {
1723 dev_err(tplg->comp->dev, "ASoC: DAI loading failed\n");
1724 kfree(dai_drv);
1725 return ret;
1726 }
1727
1728 dai_drv->dobj.index = tplg->index;
1729 dai_drv->dobj.ops = tplg->ops;
1730 dai_drv->dobj.type = SND_SOC_DOBJ_PCM;
1731 list_add(&dai_drv->dobj.list, &tplg->comp->dobj_list);
1732
1733 /* register the DAI to the component */
1734 return snd_soc_register_dai(tplg->comp, dai_drv);
1735}
1736
Mengdong Lin717a8e72016-11-03 01:03:34 +08001737static void set_link_flags(struct snd_soc_dai_link *link,
1738 unsigned int flag_mask, unsigned int flags)
1739{
1740 if (flag_mask & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_RATES)
1741 link->symmetric_rates =
1742 flags & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_RATES ? 1 : 0;
1743
1744 if (flag_mask & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_CHANNELS)
1745 link->symmetric_channels =
1746 flags & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_CHANNELS ?
1747 1 : 0;
1748
1749 if (flag_mask & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_SAMPLEBITS)
1750 link->symmetric_samplebits =
1751 flags & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_SAMPLEBITS ?
1752 1 : 0;
Mengdong Lin6ff67cc2016-11-03 01:05:32 +08001753
1754 if (flag_mask & SND_SOC_TPLG_LNK_FLGBIT_VOICE_WAKEUP)
1755 link->ignore_suspend =
1756 flags & SND_SOC_TPLG_LNK_FLGBIT_VOICE_WAKEUP ?
1757 1 : 0;
Mengdong Lin717a8e72016-11-03 01:03:34 +08001758}
1759
Guneshwor Singh67d1c212016-04-19 13:12:50 +08001760/* create the FE DAI link */
Mengdong Linab4bc5e2016-11-03 01:04:42 +08001761static int soc_tplg_fe_link_create(struct soc_tplg *tplg,
Mengdong Linacfc7d42016-01-15 16:13:37 +08001762 struct snd_soc_tplg_pcm *pcm)
1763{
1764 struct snd_soc_dai_link *link;
1765 int ret;
1766
1767 link = kzalloc(sizeof(struct snd_soc_dai_link), GFP_KERNEL);
1768 if (link == NULL)
1769 return -ENOMEM;
1770
Mengdong Lin8f27c4a2016-11-03 01:02:59 +08001771 if (strlen(pcm->pcm_name)) {
1772 link->name = kstrdup(pcm->pcm_name, GFP_KERNEL);
1773 link->stream_name = kstrdup(pcm->pcm_name, GFP_KERNEL);
1774 }
Mengdong Linb84fff52016-04-19 13:12:43 +08001775 link->id = pcm->pcm_id;
Mengdong Linacfc7d42016-01-15 16:13:37 +08001776
Mengdong Lin8f27c4a2016-11-03 01:02:59 +08001777 if (strlen(pcm->dai_name))
1778 link->cpu_dai_name = kstrdup(pcm->dai_name, GFP_KERNEL);
1779
Guneshwor Singh67d1c212016-04-19 13:12:50 +08001780 link->codec_name = "snd-soc-dummy";
1781 link->codec_dai_name = "snd-soc-dummy-dai";
1782
1783 /* enable DPCM */
1784 link->dynamic = 1;
1785 link->dpcm_playback = pcm->playback;
1786 link->dpcm_capture = pcm->capture;
Mengdong Lin717a8e72016-11-03 01:03:34 +08001787 if (pcm->flag_mask)
1788 set_link_flags(link, pcm->flag_mask, pcm->flags);
Guneshwor Singh67d1c212016-04-19 13:12:50 +08001789
Mengdong Linacfc7d42016-01-15 16:13:37 +08001790 /* pass control to component driver for optional further init */
1791 ret = soc_tplg_dai_link_load(tplg, link);
1792 if (ret < 0) {
1793 dev_err(tplg->comp->dev, "ASoC: FE link loading failed\n");
1794 kfree(link);
1795 return ret;
1796 }
1797
1798 link->dobj.index = tplg->index;
1799 link->dobj.ops = tplg->ops;
1800 link->dobj.type = SND_SOC_DOBJ_DAI_LINK;
1801 list_add(&link->dobj.list, &tplg->comp->dobj_list);
1802
1803 snd_soc_add_dai_link(tplg->comp->card, link);
1804 return 0;
1805}
1806
1807/* create a FE DAI and DAI link from the PCM object */
Mengdong Lin64527e82016-01-15 16:13:28 +08001808static int soc_tplg_pcm_create(struct soc_tplg *tplg,
1809 struct snd_soc_tplg_pcm *pcm)
1810{
Mengdong Linacfc7d42016-01-15 16:13:37 +08001811 int ret;
1812
1813 ret = soc_tplg_dai_create(tplg, pcm);
1814 if (ret < 0)
1815 return ret;
1816
Mengdong Linab4bc5e2016-11-03 01:04:42 +08001817 return soc_tplg_fe_link_create(tplg, pcm);
Mengdong Lin64527e82016-01-15 16:13:28 +08001818}
1819
Mengdong Lin55726dc2016-11-03 01:00:16 +08001820/* copy stream caps from the old version 4 of source */
1821static void stream_caps_new_ver(struct snd_soc_tplg_stream_caps *dest,
1822 struct snd_soc_tplg_stream_caps_v4 *src)
1823{
1824 dest->size = sizeof(*dest);
1825 memcpy(dest->name, src->name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN);
1826 dest->formats = src->formats;
1827 dest->rates = src->rates;
1828 dest->rate_min = src->rate_min;
1829 dest->rate_max = src->rate_max;
1830 dest->channels_min = src->channels_min;
1831 dest->channels_max = src->channels_max;
1832 dest->periods_min = src->periods_min;
1833 dest->periods_max = src->periods_max;
1834 dest->period_size_min = src->period_size_min;
1835 dest->period_size_max = src->period_size_max;
1836 dest->buffer_size_min = src->buffer_size_min;
1837 dest->buffer_size_max = src->buffer_size_max;
1838}
1839
1840/**
1841 * pcm_new_ver - Create the new version of PCM from the old version.
1842 * @tplg: topology context
1843 * @src: older version of pcm as a source
1844 * @pcm: latest version of pcm created from the source
1845 *
1846 * Support from vesion 4. User should free the returned pcm manually.
1847 */
1848static int pcm_new_ver(struct soc_tplg *tplg,
1849 struct snd_soc_tplg_pcm *src,
1850 struct snd_soc_tplg_pcm **pcm)
1851{
1852 struct snd_soc_tplg_pcm *dest;
1853 struct snd_soc_tplg_pcm_v4 *src_v4;
1854 int i;
1855
1856 *pcm = NULL;
1857
1858 if (src->size != sizeof(*src_v4)) {
1859 dev_err(tplg->dev, "ASoC: invalid PCM size\n");
1860 return -EINVAL;
1861 }
1862
1863 dev_warn(tplg->dev, "ASoC: old version of PCM\n");
1864 src_v4 = (struct snd_soc_tplg_pcm_v4 *)src;
1865 dest = kzalloc(sizeof(*dest), GFP_KERNEL);
1866 if (!dest)
1867 return -ENOMEM;
1868
1869 dest->size = sizeof(*dest); /* size of latest abi version */
1870 memcpy(dest->pcm_name, src_v4->pcm_name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN);
1871 memcpy(dest->dai_name, src_v4->dai_name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN);
1872 dest->pcm_id = src_v4->pcm_id;
1873 dest->dai_id = src_v4->dai_id;
1874 dest->playback = src_v4->playback;
1875 dest->capture = src_v4->capture;
1876 dest->compress = src_v4->compress;
1877 dest->num_streams = src_v4->num_streams;
1878 for (i = 0; i < dest->num_streams; i++)
1879 memcpy(&dest->stream[i], &src_v4->stream[i],
1880 sizeof(struct snd_soc_tplg_stream));
1881
1882 for (i = 0; i < 2; i++)
1883 stream_caps_new_ver(&dest->caps[i], &src_v4->caps[i]);
1884
1885 *pcm = dest;
1886 return 0;
1887}
1888
Mengdong Lin64527e82016-01-15 16:13:28 +08001889static int soc_tplg_pcm_elems_load(struct soc_tplg *tplg,
Liam Girdwood8a978232015-05-29 19:06:14 +01001890 struct snd_soc_tplg_hdr *hdr)
1891{
Mengdong Lin55726dc2016-11-03 01:00:16 +08001892 struct snd_soc_tplg_pcm *pcm, *_pcm;
Liam Girdwood8a978232015-05-29 19:06:14 +01001893 int count = hdr->count;
Vinod Koulfd340452016-12-08 23:01:27 +05301894 int i;
Mengdong Lin55726dc2016-11-03 01:00:16 +08001895 bool abi_match;
Liam Girdwood8a978232015-05-29 19:06:14 +01001896
1897 if (tplg->pass != SOC_TPLG_PASS_PCM_DAI)
1898 return 0;
1899
Mengdong Lin55726dc2016-11-03 01:00:16 +08001900 /* check the element size and count */
1901 pcm = (struct snd_soc_tplg_pcm *)tplg->pos;
1902 if (pcm->size > sizeof(struct snd_soc_tplg_pcm)
1903 || pcm->size < sizeof(struct snd_soc_tplg_pcm_v4)) {
1904 dev_err(tplg->dev, "ASoC: invalid size %d for PCM elems\n",
1905 pcm->size);
1906 return -EINVAL;
1907 }
1908
Liam Girdwood8a978232015-05-29 19:06:14 +01001909 if (soc_tplg_check_elem_count(tplg,
Mengdong Lin55726dc2016-11-03 01:00:16 +08001910 pcm->size, count,
Liam Girdwood8a978232015-05-29 19:06:14 +01001911 hdr->payload_size, "PCM DAI")) {
1912 dev_err(tplg->dev, "ASoC: invalid count %d for PCM DAI elems\n",
1913 count);
1914 return -EINVAL;
1915 }
1916
Mengdong Lin64527e82016-01-15 16:13:28 +08001917 for (i = 0; i < count; i++) {
Mengdong Lin55726dc2016-11-03 01:00:16 +08001918 pcm = (struct snd_soc_tplg_pcm *)tplg->pos;
1919
1920 /* check ABI version by size, create a new version of pcm
1921 * if abi not match.
1922 */
1923 if (pcm->size == sizeof(*pcm)) {
1924 abi_match = true;
1925 _pcm = pcm;
1926 } else {
1927 abi_match = false;
Vinod Koulfd340452016-12-08 23:01:27 +05301928 pcm_new_ver(tplg, pcm, &_pcm);
Mengdong Lin06eb49f2016-04-27 14:52:56 +08001929 }
1930
Mengdong Lin55726dc2016-11-03 01:00:16 +08001931 /* create the FE DAIs and DAI links */
1932 soc_tplg_pcm_create(tplg, _pcm);
1933
Mengdong Lin717a8e72016-11-03 01:03:34 +08001934 /* offset by version-specific struct size and
1935 * real priv data size
1936 */
1937 tplg->pos += pcm->size + _pcm->priv.size;
1938
Mengdong Lin55726dc2016-11-03 01:00:16 +08001939 if (!abi_match)
1940 kfree(_pcm); /* free the duplicated one */
Mengdong Lin64527e82016-01-15 16:13:28 +08001941 }
1942
Liam Girdwood8a978232015-05-29 19:06:14 +01001943 dev_dbg(tplg->dev, "ASoC: adding %d PCM DAIs\n", count);
Liam Girdwood8a978232015-05-29 19:06:14 +01001944
Liam Girdwood8a978232015-05-29 19:06:14 +01001945 return 0;
Liam Girdwood8a978232015-05-29 19:06:14 +01001946}
1947
Mengdong Lin593d9e52016-11-03 01:04:27 +08001948/**
1949 * set_link_hw_format - Set the HW audio format of the physical DAI link.
Charles Keepax8abab352017-01-12 11:38:15 +00001950 * @link: &snd_soc_dai_link which should be updated
Mengdong Lin593d9e52016-11-03 01:04:27 +08001951 * @cfg: physical link configs.
1952 *
1953 * Topology context contains a list of supported HW formats (configs) and
1954 * a default format ID for the physical link. This function will use this
1955 * default ID to choose the HW format to set the link's DAI format for init.
1956 */
1957static void set_link_hw_format(struct snd_soc_dai_link *link,
1958 struct snd_soc_tplg_link_config *cfg)
1959{
1960 struct snd_soc_tplg_hw_config *hw_config;
1961 unsigned char bclk_master, fsync_master;
1962 unsigned char invert_bclk, invert_fsync;
1963 int i;
1964
1965 for (i = 0; i < cfg->num_hw_configs; i++) {
1966 hw_config = &cfg->hw_config[i];
1967 if (hw_config->id != cfg->default_hw_config_id)
1968 continue;
1969
1970 link->dai_fmt = hw_config->fmt & SND_SOC_DAIFMT_FORMAT_MASK;
1971
1972 /* clock signal polarity */
1973 invert_bclk = hw_config->invert_bclk;
1974 invert_fsync = hw_config->invert_fsync;
1975 if (!invert_bclk && !invert_fsync)
1976 link->dai_fmt |= SND_SOC_DAIFMT_NB_NF;
1977 else if (!invert_bclk && invert_fsync)
1978 link->dai_fmt |= SND_SOC_DAIFMT_NB_IF;
1979 else if (invert_bclk && !invert_fsync)
1980 link->dai_fmt |= SND_SOC_DAIFMT_IB_NF;
1981 else
1982 link->dai_fmt |= SND_SOC_DAIFMT_IB_IF;
1983
1984 /* clock masters */
1985 bclk_master = hw_config->bclk_master;
1986 fsync_master = hw_config->fsync_master;
1987 if (!bclk_master && !fsync_master)
1988 link->dai_fmt |= SND_SOC_DAIFMT_CBM_CFM;
1989 else if (bclk_master && !fsync_master)
1990 link->dai_fmt |= SND_SOC_DAIFMT_CBS_CFM;
1991 else if (!bclk_master && fsync_master)
1992 link->dai_fmt |= SND_SOC_DAIFMT_CBM_CFS;
1993 else
1994 link->dai_fmt |= SND_SOC_DAIFMT_CBS_CFS;
1995 }
1996}
1997
1998/**
1999 * link_new_ver - Create a new physical link config from the old
2000 * version of source.
Charles Keepax8abab352017-01-12 11:38:15 +00002001 * @tplg: topology context
Mengdong Lin593d9e52016-11-03 01:04:27 +08002002 * @src: old version of phyical link config as a source
2003 * @link: latest version of physical link config created from the source
2004 *
2005 * Support from vesion 4. User need free the returned link config manually.
2006 */
2007static int link_new_ver(struct soc_tplg *tplg,
2008 struct snd_soc_tplg_link_config *src,
2009 struct snd_soc_tplg_link_config **link)
2010{
2011 struct snd_soc_tplg_link_config *dest;
2012 struct snd_soc_tplg_link_config_v4 *src_v4;
2013 int i;
2014
2015 *link = NULL;
2016
2017 if (src->size != sizeof(struct snd_soc_tplg_link_config_v4)) {
2018 dev_err(tplg->dev, "ASoC: invalid physical link config size\n");
2019 return -EINVAL;
2020 }
2021
2022 dev_warn(tplg->dev, "ASoC: old version of physical link config\n");
2023
2024 src_v4 = (struct snd_soc_tplg_link_config_v4 *)src;
2025 dest = kzalloc(sizeof(*dest), GFP_KERNEL);
2026 if (!dest)
2027 return -ENOMEM;
2028
2029 dest->size = sizeof(*dest);
2030 dest->id = src_v4->id;
2031 dest->num_streams = src_v4->num_streams;
2032 for (i = 0; i < dest->num_streams; i++)
2033 memcpy(&dest->stream[i], &src_v4->stream[i],
2034 sizeof(struct snd_soc_tplg_stream));
2035
2036 *link = dest;
2037 return 0;
2038}
2039
2040/* Find and configure an existing physical DAI link */
2041static int soc_tplg_link_config(struct soc_tplg *tplg,
2042 struct snd_soc_tplg_link_config *cfg)
2043{
2044 struct snd_soc_dai_link *link;
2045 const char *name, *stream_name;
Mengdong Lindbab1cb2016-11-05 08:42:14 +08002046 size_t len;
Mengdong Lin593d9e52016-11-03 01:04:27 +08002047 int ret;
2048
Mengdong Lindbab1cb2016-11-05 08:42:14 +08002049 len = strnlen(cfg->name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN);
2050 if (len == SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
2051 return -EINVAL;
2052 else if (len)
2053 name = cfg->name;
2054 else
2055 name = NULL;
2056
2057 len = strnlen(cfg->stream_name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN);
2058 if (len == SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
2059 return -EINVAL;
2060 else if (len)
2061 stream_name = cfg->stream_name;
2062 else
2063 stream_name = NULL;
Mengdong Lin593d9e52016-11-03 01:04:27 +08002064
2065 link = snd_soc_find_dai_link(tplg->comp->card, cfg->id,
2066 name, stream_name);
2067 if (!link) {
2068 dev_err(tplg->dev, "ASoC: physical link %s (id %d) not exist\n",
2069 name, cfg->id);
2070 return -EINVAL;
2071 }
2072
2073 /* hw format */
2074 if (cfg->num_hw_configs)
2075 set_link_hw_format(link, cfg);
2076
2077 /* flags */
2078 if (cfg->flag_mask)
2079 set_link_flags(link, cfg->flag_mask, cfg->flags);
2080
2081 /* pass control to component driver for optional further init */
2082 ret = soc_tplg_dai_link_load(tplg, link);
2083 if (ret < 0) {
2084 dev_err(tplg->dev, "ASoC: physical link loading failed\n");
2085 return ret;
2086 }
2087
2088 return 0;
2089}
2090
2091
2092/* Load physical link config elements from the topology context */
2093static int soc_tplg_link_elems_load(struct soc_tplg *tplg,
2094 struct snd_soc_tplg_hdr *hdr)
2095{
2096 struct snd_soc_tplg_link_config *link, *_link;
2097 int count = hdr->count;
2098 int i, ret;
2099 bool abi_match;
2100
2101 if (tplg->pass != SOC_TPLG_PASS_LINK) {
2102 tplg->pos += hdr->size + hdr->payload_size;
2103 return 0;
2104 };
2105
2106 /* check the element size and count */
2107 link = (struct snd_soc_tplg_link_config *)tplg->pos;
2108 if (link->size > sizeof(struct snd_soc_tplg_link_config)
2109 || link->size < sizeof(struct snd_soc_tplg_link_config_v4)) {
2110 dev_err(tplg->dev, "ASoC: invalid size %d for physical link elems\n",
2111 link->size);
2112 return -EINVAL;
2113 }
2114
2115 if (soc_tplg_check_elem_count(tplg,
2116 link->size, count,
2117 hdr->payload_size, "physical link config")) {
2118 dev_err(tplg->dev, "ASoC: invalid count %d for physical link elems\n",
2119 count);
2120 return -EINVAL;
2121 }
2122
2123 /* config physical DAI links */
2124 for (i = 0; i < count; i++) {
2125 link = (struct snd_soc_tplg_link_config *)tplg->pos;
2126 if (link->size == sizeof(*link)) {
2127 abi_match = true;
2128 _link = link;
2129 } else {
2130 abi_match = false;
2131 ret = link_new_ver(tplg, link, &_link);
2132 if (ret < 0)
2133 return ret;
2134 }
2135
2136 ret = soc_tplg_link_config(tplg, _link);
2137 if (ret < 0)
2138 return ret;
2139
2140 /* offset by version-specific struct size and
2141 * real priv data size
2142 */
2143 tplg->pos += link->size + _link->priv.size;
2144
2145 if (!abi_match)
2146 kfree(_link); /* free the duplicated one */
2147 }
2148
2149 return 0;
2150}
2151
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002152/**
2153 * soc_tplg_dai_config - Find and configure an existing physical DAI.
Mengdong Lin0038be92016-07-26 14:32:37 +08002154 * @tplg: topology context
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002155 * @d: physical DAI configs.
Mengdong Lin0038be92016-07-26 14:32:37 +08002156 *
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002157 * The physical dai should already be registered by the platform driver.
2158 * The platform driver should specify the DAI name and ID for matching.
Mengdong Lin0038be92016-07-26 14:32:37 +08002159 */
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002160static int soc_tplg_dai_config(struct soc_tplg *tplg,
2161 struct snd_soc_tplg_dai *d)
Mengdong Lin0038be92016-07-26 14:32:37 +08002162{
2163 struct snd_soc_dai_link_component dai_component = {0};
2164 struct snd_soc_dai *dai;
2165 struct snd_soc_dai_driver *dai_drv;
2166 struct snd_soc_pcm_stream *stream;
2167 struct snd_soc_tplg_stream_caps *caps;
2168 int ret;
2169
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002170 dai_component.dai_name = d->dai_name;
Mengdong Lin0038be92016-07-26 14:32:37 +08002171 dai = snd_soc_find_dai(&dai_component);
2172 if (!dai) {
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002173 dev_err(tplg->dev, "ASoC: physical DAI %s not registered\n",
2174 d->dai_name);
Mengdong Lin0038be92016-07-26 14:32:37 +08002175 return -EINVAL;
2176 }
2177
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002178 if (d->dai_id != dai->id) {
2179 dev_err(tplg->dev, "ASoC: physical DAI %s id mismatch\n",
2180 d->dai_name);
Mengdong Lin0038be92016-07-26 14:32:37 +08002181 return -EINVAL;
2182 }
2183
2184 dai_drv = dai->driver;
2185 if (!dai_drv)
2186 return -EINVAL;
2187
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002188 if (d->playback) {
Mengdong Lin0038be92016-07-26 14:32:37 +08002189 stream = &dai_drv->playback;
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002190 caps = &d->caps[SND_SOC_TPLG_STREAM_PLAYBACK];
Mengdong Lin0038be92016-07-26 14:32:37 +08002191 set_stream_info(stream, caps);
2192 }
2193
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002194 if (d->capture) {
Mengdong Lin0038be92016-07-26 14:32:37 +08002195 stream = &dai_drv->capture;
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002196 caps = &d->caps[SND_SOC_TPLG_STREAM_CAPTURE];
Mengdong Lin0038be92016-07-26 14:32:37 +08002197 set_stream_info(stream, caps);
2198 }
2199
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002200 if (d->flag_mask)
2201 set_dai_flags(dai_drv, d->flag_mask, d->flags);
Mengdong Lin0038be92016-07-26 14:32:37 +08002202
2203 /* pass control to component driver for optional further init */
2204 ret = soc_tplg_dai_load(tplg, dai_drv);
2205 if (ret < 0) {
2206 dev_err(tplg->comp->dev, "ASoC: DAI loading failed\n");
2207 return ret;
2208 }
2209
2210 return 0;
2211}
2212
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002213/* load physical DAI elements */
2214static int soc_tplg_dai_elems_load(struct soc_tplg *tplg,
2215 struct snd_soc_tplg_hdr *hdr)
Mengdong Lin0038be92016-07-26 14:32:37 +08002216{
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002217 struct snd_soc_tplg_dai *dai;
Mengdong Lin0038be92016-07-26 14:32:37 +08002218 int count = hdr->count;
2219 int i;
2220
2221 if (tplg->pass != SOC_TPLG_PASS_BE_DAI)
2222 return 0;
2223
2224 /* config the existing BE DAIs */
2225 for (i = 0; i < count; i++) {
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002226 dai = (struct snd_soc_tplg_dai *)tplg->pos;
2227 if (dai->size != sizeof(*dai)) {
2228 dev_err(tplg->dev, "ASoC: invalid physical DAI size\n");
Mengdong Lin0038be92016-07-26 14:32:37 +08002229 return -EINVAL;
2230 }
2231
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002232 soc_tplg_dai_config(tplg, dai);
2233 tplg->pos += (sizeof(*dai) + dai->priv.size);
Mengdong Lin0038be92016-07-26 14:32:37 +08002234 }
2235
2236 dev_dbg(tplg->dev, "ASoC: Configure %d BE DAIs\n", count);
2237 return 0;
2238}
2239
Mengdong Lin583958f2016-10-11 14:36:42 +08002240/**
2241 * manifest_new_ver - Create a new version of manifest from the old version
2242 * of source.
Charles Keepax8abab352017-01-12 11:38:15 +00002243 * @tplg: topology context
Mengdong Lin583958f2016-10-11 14:36:42 +08002244 * @src: old version of manifest as a source
2245 * @manifest: latest version of manifest created from the source
2246 *
2247 * Support from vesion 4. Users need free the returned manifest manually.
2248 */
2249static int manifest_new_ver(struct soc_tplg *tplg,
2250 struct snd_soc_tplg_manifest *src,
2251 struct snd_soc_tplg_manifest **manifest)
2252{
2253 struct snd_soc_tplg_manifest *dest;
2254 struct snd_soc_tplg_manifest_v4 *src_v4;
2255
2256 *manifest = NULL;
2257
2258 if (src->size != sizeof(*src_v4)) {
2259 dev_err(tplg->dev, "ASoC: invalid manifest size\n");
2260 return -EINVAL;
2261 }
2262
2263 dev_warn(tplg->dev, "ASoC: old version of manifest\n");
2264
2265 src_v4 = (struct snd_soc_tplg_manifest_v4 *)src;
2266 dest = kzalloc(sizeof(*dest) + src_v4->priv.size, GFP_KERNEL);
2267 if (!dest)
2268 return -ENOMEM;
2269
2270 dest->size = sizeof(*dest); /* size of latest abi version */
2271 dest->control_elems = src_v4->control_elems;
2272 dest->widget_elems = src_v4->widget_elems;
2273 dest->graph_elems = src_v4->graph_elems;
2274 dest->pcm_elems = src_v4->pcm_elems;
2275 dest->dai_link_elems = src_v4->dai_link_elems;
2276 dest->priv.size = src_v4->priv.size;
2277 if (dest->priv.size)
2278 memcpy(dest->priv.data, src_v4->priv.data,
2279 src_v4->priv.size);
2280
2281 *manifest = dest;
2282 return 0;
2283}
Mengdong Lin0038be92016-07-26 14:32:37 +08002284
Liam Girdwood8a978232015-05-29 19:06:14 +01002285static int soc_tplg_manifest_load(struct soc_tplg *tplg,
Mengdong Lin0038be92016-07-26 14:32:37 +08002286 struct snd_soc_tplg_hdr *hdr)
Liam Girdwood8a978232015-05-29 19:06:14 +01002287{
Mengdong Lin583958f2016-10-11 14:36:42 +08002288 struct snd_soc_tplg_manifest *manifest, *_manifest;
2289 bool abi_match;
2290 int err;
Liam Girdwood8a978232015-05-29 19:06:14 +01002291
2292 if (tplg->pass != SOC_TPLG_PASS_MANIFEST)
2293 return 0;
2294
2295 manifest = (struct snd_soc_tplg_manifest *)tplg->pos;
Mengdong Lin583958f2016-10-11 14:36:42 +08002296
2297 /* check ABI version by size, create a new manifest if abi not match */
2298 if (manifest->size == sizeof(*manifest)) {
2299 abi_match = true;
2300 _manifest = manifest;
2301 } else {
2302 abi_match = false;
2303 err = manifest_new_ver(tplg, manifest, &_manifest);
2304 if (err < 0)
2305 return err;
Mengdong Lin06eb49f2016-04-27 14:52:56 +08002306 }
2307
Mengdong Lin583958f2016-10-11 14:36:42 +08002308 /* pass control to component driver for optional further init */
Liam Girdwood8a978232015-05-29 19:06:14 +01002309 if (tplg->comp && tplg->ops && tplg->ops->manifest)
Mengdong Lin583958f2016-10-11 14:36:42 +08002310 return tplg->ops->manifest(tplg->comp, _manifest);
Liam Girdwood8a978232015-05-29 19:06:14 +01002311
Mengdong Lin583958f2016-10-11 14:36:42 +08002312 if (!abi_match) /* free the duplicated one */
2313 kfree(_manifest);
2314
Liam Girdwood8a978232015-05-29 19:06:14 +01002315 return 0;
2316}
2317
2318/* validate header magic, size and type */
2319static int soc_valid_header(struct soc_tplg *tplg,
2320 struct snd_soc_tplg_hdr *hdr)
2321{
2322 if (soc_tplg_get_hdr_offset(tplg) >= tplg->fw->size)
2323 return 0;
2324
Mengdong Lin06eb49f2016-04-27 14:52:56 +08002325 if (hdr->size != sizeof(*hdr)) {
2326 dev_err(tplg->dev,
2327 "ASoC: invalid header size for type %d at offset 0x%lx size 0x%zx.\n",
2328 hdr->type, soc_tplg_get_hdr_offset(tplg),
2329 tplg->fw->size);
2330 return -EINVAL;
2331 }
2332
Liam Girdwood8a978232015-05-29 19:06:14 +01002333 /* big endian firmware objects not supported atm */
2334 if (hdr->magic == cpu_to_be32(SND_SOC_TPLG_MAGIC)) {
2335 dev_err(tplg->dev,
2336 "ASoC: pass %d big endian not supported header got %x at offset 0x%lx size 0x%zx.\n",
2337 tplg->pass, hdr->magic,
2338 soc_tplg_get_hdr_offset(tplg), tplg->fw->size);
2339 return -EINVAL;
2340 }
2341
2342 if (hdr->magic != SND_SOC_TPLG_MAGIC) {
2343 dev_err(tplg->dev,
2344 "ASoC: pass %d does not have a valid header got %x at offset 0x%lx size 0x%zx.\n",
2345 tplg->pass, hdr->magic,
2346 soc_tplg_get_hdr_offset(tplg), tplg->fw->size);
2347 return -EINVAL;
2348 }
2349
Mengdong Lin288b8da2016-11-03 01:03:17 +08002350 /* Support ABI from version 4 */
2351 if (hdr->abi > SND_SOC_TPLG_ABI_VERSION
2352 || hdr->abi < SND_SOC_TPLG_ABI_VERSION_MIN) {
Liam Girdwood8a978232015-05-29 19:06:14 +01002353 dev_err(tplg->dev,
2354 "ASoC: pass %d invalid ABI version got 0x%x need 0x%x at offset 0x%lx size 0x%zx.\n",
2355 tplg->pass, hdr->abi,
2356 SND_SOC_TPLG_ABI_VERSION, soc_tplg_get_hdr_offset(tplg),
2357 tplg->fw->size);
2358 return -EINVAL;
2359 }
2360
2361 if (hdr->payload_size == 0) {
2362 dev_err(tplg->dev, "ASoC: header has 0 size at offset 0x%lx.\n",
2363 soc_tplg_get_hdr_offset(tplg));
2364 return -EINVAL;
2365 }
2366
2367 if (tplg->pass == hdr->type)
2368 dev_dbg(tplg->dev,
2369 "ASoC: Got 0x%x bytes of type %d version %d vendor %d at pass %d\n",
2370 hdr->payload_size, hdr->type, hdr->version,
2371 hdr->vendor_type, tplg->pass);
2372
2373 return 1;
2374}
2375
2376/* check header type and call appropriate handler */
2377static int soc_tplg_load_header(struct soc_tplg *tplg,
2378 struct snd_soc_tplg_hdr *hdr)
2379{
2380 tplg->pos = tplg->hdr_pos + sizeof(struct snd_soc_tplg_hdr);
2381
2382 /* check for matching ID */
2383 if (hdr->index != tplg->req_index &&
2384 hdr->index != SND_SOC_TPLG_INDEX_ALL)
2385 return 0;
2386
2387 tplg->index = hdr->index;
2388
2389 switch (hdr->type) {
2390 case SND_SOC_TPLG_TYPE_MIXER:
2391 case SND_SOC_TPLG_TYPE_ENUM:
2392 case SND_SOC_TPLG_TYPE_BYTES:
2393 return soc_tplg_kcontrol_elems_load(tplg, hdr);
2394 case SND_SOC_TPLG_TYPE_DAPM_GRAPH:
2395 return soc_tplg_dapm_graph_elems_load(tplg, hdr);
2396 case SND_SOC_TPLG_TYPE_DAPM_WIDGET:
2397 return soc_tplg_dapm_widget_elems_load(tplg, hdr);
2398 case SND_SOC_TPLG_TYPE_PCM:
Mengdong Lin64527e82016-01-15 16:13:28 +08002399 return soc_tplg_pcm_elems_load(tplg, hdr);
Mengdong Lin3fbf7932016-11-03 01:05:01 +08002400 case SND_SOC_TPLG_TYPE_DAI:
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002401 return soc_tplg_dai_elems_load(tplg, hdr);
Mengdong Lin593d9e52016-11-03 01:04:27 +08002402 case SND_SOC_TPLG_TYPE_DAI_LINK:
2403 case SND_SOC_TPLG_TYPE_BACKEND_LINK:
2404 /* physical link configurations */
2405 return soc_tplg_link_elems_load(tplg, hdr);
Liam Girdwood8a978232015-05-29 19:06:14 +01002406 case SND_SOC_TPLG_TYPE_MANIFEST:
2407 return soc_tplg_manifest_load(tplg, hdr);
2408 default:
2409 /* bespoke vendor data object */
2410 return soc_tplg_vendor_load(tplg, hdr);
2411 }
2412
2413 return 0;
2414}
2415
2416/* process the topology file headers */
2417static int soc_tplg_process_headers(struct soc_tplg *tplg)
2418{
2419 struct snd_soc_tplg_hdr *hdr;
2420 int ret;
2421
2422 tplg->pass = SOC_TPLG_PASS_START;
2423
2424 /* process the header types from start to end */
2425 while (tplg->pass <= SOC_TPLG_PASS_END) {
2426
2427 tplg->hdr_pos = tplg->fw->data;
2428 hdr = (struct snd_soc_tplg_hdr *)tplg->hdr_pos;
2429
2430 while (!soc_tplg_is_eof(tplg)) {
2431
2432 /* make sure header is valid before loading */
2433 ret = soc_valid_header(tplg, hdr);
2434 if (ret < 0)
2435 return ret;
2436 else if (ret == 0)
2437 break;
2438
2439 /* load the header object */
2440 ret = soc_tplg_load_header(tplg, hdr);
2441 if (ret < 0)
2442 return ret;
2443
2444 /* goto next header */
2445 tplg->hdr_pos += hdr->payload_size +
2446 sizeof(struct snd_soc_tplg_hdr);
2447 hdr = (struct snd_soc_tplg_hdr *)tplg->hdr_pos;
2448 }
2449
2450 /* next data type pass */
2451 tplg->pass++;
2452 }
2453
2454 /* signal DAPM we are complete */
2455 ret = soc_tplg_dapm_complete(tplg);
2456 if (ret < 0)
2457 dev_err(tplg->dev,
2458 "ASoC: failed to initialise DAPM from Firmware\n");
2459
2460 return ret;
2461}
2462
2463static int soc_tplg_load(struct soc_tplg *tplg)
2464{
2465 int ret;
2466
2467 ret = soc_tplg_process_headers(tplg);
2468 if (ret == 0)
2469 soc_tplg_complete(tplg);
2470
2471 return ret;
2472}
2473
2474/* load audio component topology from "firmware" file */
2475int snd_soc_tplg_component_load(struct snd_soc_component *comp,
2476 struct snd_soc_tplg_ops *ops, const struct firmware *fw, u32 id)
2477{
2478 struct soc_tplg tplg;
2479
2480 /* setup parsing context */
2481 memset(&tplg, 0, sizeof(tplg));
2482 tplg.fw = fw;
2483 tplg.dev = comp->dev;
2484 tplg.comp = comp;
2485 tplg.ops = ops;
2486 tplg.req_index = id;
2487 tplg.io_ops = ops->io_ops;
2488 tplg.io_ops_count = ops->io_ops_count;
Mengdong Lin1a3232d2015-08-18 18:12:20 +08002489 tplg.bytes_ext_ops = ops->bytes_ext_ops;
2490 tplg.bytes_ext_ops_count = ops->bytes_ext_ops_count;
Liam Girdwood8a978232015-05-29 19:06:14 +01002491
2492 return soc_tplg_load(&tplg);
2493}
2494EXPORT_SYMBOL_GPL(snd_soc_tplg_component_load);
2495
2496/* remove this dynamic widget */
2497void snd_soc_tplg_widget_remove(struct snd_soc_dapm_widget *w)
2498{
2499 /* make sure we are a widget */
2500 if (w->dobj.type != SND_SOC_DOBJ_WIDGET)
2501 return;
2502
2503 remove_widget(w->dapm->component, &w->dobj, SOC_TPLG_PASS_WIDGET);
2504}
2505EXPORT_SYMBOL_GPL(snd_soc_tplg_widget_remove);
2506
2507/* remove all dynamic widgets from this DAPM context */
2508void snd_soc_tplg_widget_remove_all(struct snd_soc_dapm_context *dapm,
2509 u32 index)
2510{
2511 struct snd_soc_dapm_widget *w, *next_w;
Liam Girdwood8a978232015-05-29 19:06:14 +01002512
2513 list_for_each_entry_safe(w, next_w, &dapm->card->widgets, list) {
2514
2515 /* make sure we are a widget with correct context */
2516 if (w->dobj.type != SND_SOC_DOBJ_WIDGET || w->dapm != dapm)
2517 continue;
2518
2519 /* match ID */
2520 if (w->dobj.index != index &&
2521 w->dobj.index != SND_SOC_TPLG_INDEX_ALL)
2522 continue;
Liam Girdwood8a978232015-05-29 19:06:14 +01002523 /* check and free and dynamic widget kcontrols */
2524 snd_soc_tplg_widget_remove(w);
Lars-Peter Clausenb97e2692015-07-21 18:11:07 +02002525 snd_soc_dapm_free_widget(w);
Liam Girdwood8a978232015-05-29 19:06:14 +01002526 }
Jyri Sarhafd589a12015-11-10 18:12:42 +02002527 snd_soc_dapm_reset_cache(dapm);
Liam Girdwood8a978232015-05-29 19:06:14 +01002528}
2529EXPORT_SYMBOL_GPL(snd_soc_tplg_widget_remove_all);
2530
2531/* remove dynamic controls from the component driver */
2532int snd_soc_tplg_component_remove(struct snd_soc_component *comp, u32 index)
2533{
2534 struct snd_soc_dobj *dobj, *next_dobj;
2535 int pass = SOC_TPLG_PASS_END;
2536
2537 /* process the header types from end to start */
2538 while (pass >= SOC_TPLG_PASS_START) {
2539
2540 /* remove mixer controls */
2541 list_for_each_entry_safe(dobj, next_dobj, &comp->dobj_list,
2542 list) {
2543
2544 /* match index */
2545 if (dobj->index != index &&
2546 dobj->index != SND_SOC_TPLG_INDEX_ALL)
2547 continue;
2548
2549 switch (dobj->type) {
2550 case SND_SOC_DOBJ_MIXER:
2551 remove_mixer(comp, dobj, pass);
2552 break;
2553 case SND_SOC_DOBJ_ENUM:
2554 remove_enum(comp, dobj, pass);
2555 break;
2556 case SND_SOC_DOBJ_BYTES:
2557 remove_bytes(comp, dobj, pass);
2558 break;
2559 case SND_SOC_DOBJ_WIDGET:
2560 remove_widget(comp, dobj, pass);
2561 break;
2562 case SND_SOC_DOBJ_PCM:
Mengdong Lin64527e82016-01-15 16:13:28 +08002563 remove_dai(comp, dobj, pass);
Liam Girdwood8a978232015-05-29 19:06:14 +01002564 break;
Mengdong Linacfc7d42016-01-15 16:13:37 +08002565 case SND_SOC_DOBJ_DAI_LINK:
2566 remove_link(comp, dobj, pass);
2567 break;
Liam Girdwood8a978232015-05-29 19:06:14 +01002568 default:
2569 dev_err(comp->dev, "ASoC: invalid component type %d for removal\n",
2570 dobj->type);
2571 break;
2572 }
2573 }
2574 pass--;
2575 }
2576
2577 /* let caller know if FW can be freed when no objects are left */
2578 return !list_empty(&comp->dobj_list);
2579}
2580EXPORT_SYMBOL_GPL(snd_soc_tplg_component_remove);