blob: b363f2409f727083fd7298fa0fd0e9ac79b9ecdf [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);
529 }
Liam Girdwood8a978232015-05-29 19:06:14 +0100530 } else {
Mengdong Lineea3dd42016-11-25 16:09:17 +0800531 /* volume mixer or bytes controls */
Liam Girdwood8a978232015-05-29 19:06:14 +0100532 for (i = 0; i < w->num_kcontrols; i++) {
533 struct snd_kcontrol *kcontrol = w->kcontrols[i];
Liam Girdwood8a978232015-05-29 19:06:14 +0100534
Mengdong Lineea3dd42016-11-25 16:09:17 +0800535 if (dobj->widget.kcontrol_type
536 == SND_SOC_TPLG_TYPE_MIXER)
537 kfree(kcontrol->tlv.p);
Liam Girdwood8a978232015-05-29 19:06:14 +0100538
Mengdong Lineea3dd42016-11-25 16:09:17 +0800539 /* Private value is used as struct soc_mixer_control
540 * for volume mixers or soc_bytes_ext for bytes
541 * controls.
542 */
543 kfree((void *)kcontrol->private_value);
Colin Ian Kingc2b36122016-12-09 14:17:47 +0000544 snd_ctl_remove(card, kcontrol);
Liam Girdwood8a978232015-05-29 19:06:14 +0100545 }
Liam Girdwood8a978232015-05-29 19:06:14 +0100546 }
Liam Girdwood05bdcf12018-03-14 20:42:40 +0000547
548free_news:
549 kfree(w->kcontrol_news);
550
Liam Girdwood8a978232015-05-29 19:06:14 +0100551 /* widget w is freed by soc-dapm.c */
552}
553
Mengdong Lin64527e82016-01-15 16:13:28 +0800554/* remove DAI configurations */
555static void remove_dai(struct snd_soc_component *comp,
Liam Girdwood8a978232015-05-29 19:06:14 +0100556 struct snd_soc_dobj *dobj, int pass)
557{
Mengdong Lin64527e82016-01-15 16:13:28 +0800558 struct snd_soc_dai_driver *dai_drv =
559 container_of(dobj, struct snd_soc_dai_driver, dobj);
560
Liam Girdwood8a978232015-05-29 19:06:14 +0100561 if (pass != SOC_TPLG_PASS_PCM_DAI)
562 return;
563
Mengdong Lin64527e82016-01-15 16:13:28 +0800564 if (dobj->ops && dobj->ops->dai_unload)
565 dobj->ops->dai_unload(comp, dobj);
Liam Girdwood8a978232015-05-29 19:06:14 +0100566
Mengdong Lin8f27c4a2016-11-03 01:02:59 +0800567 kfree(dai_drv->name);
Liam Girdwood8a978232015-05-29 19:06:14 +0100568 list_del(&dobj->list);
Mengdong Lin64527e82016-01-15 16:13:28 +0800569 kfree(dai_drv);
Liam Girdwood8a978232015-05-29 19:06:14 +0100570}
571
Mengdong Linacfc7d42016-01-15 16:13:37 +0800572/* remove link configurations */
573static void remove_link(struct snd_soc_component *comp,
574 struct snd_soc_dobj *dobj, int pass)
575{
576 struct snd_soc_dai_link *link =
577 container_of(dobj, struct snd_soc_dai_link, dobj);
578
579 if (pass != SOC_TPLG_PASS_PCM_DAI)
580 return;
581
582 if (dobj->ops && dobj->ops->link_unload)
583 dobj->ops->link_unload(comp, dobj);
584
Mengdong Lin8f27c4a2016-11-03 01:02:59 +0800585 kfree(link->name);
586 kfree(link->stream_name);
587 kfree(link->cpu_dai_name);
588
Mengdong Linacfc7d42016-01-15 16:13:37 +0800589 list_del(&dobj->list);
590 snd_soc_remove_dai_link(comp->card, link);
591 kfree(link);
592}
593
Liam Girdwood8a978232015-05-29 19:06:14 +0100594/* bind a kcontrol to it's IO handlers */
595static int soc_tplg_kcontrol_bind_io(struct snd_soc_tplg_ctl_hdr *hdr,
596 struct snd_kcontrol_new *k,
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800597 const struct soc_tplg *tplg)
Liam Girdwood8a978232015-05-29 19:06:14 +0100598{
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800599 const struct snd_soc_tplg_kcontrol_ops *ops;
Mengdong Lin1a3232d2015-08-18 18:12:20 +0800600 const struct snd_soc_tplg_bytes_ext_ops *ext_ops;
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800601 int num_ops, i;
Liam Girdwood8a978232015-05-29 19:06:14 +0100602
Mengdong Lin1a3232d2015-08-18 18:12:20 +0800603 if (hdr->ops.info == SND_SOC_TPLG_CTL_BYTES
604 && k->iface & SNDRV_CTL_ELEM_IFACE_MIXER
605 && k->access & SNDRV_CTL_ELEM_ACCESS_TLV_READWRITE
606 && k->access & SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK) {
607 struct soc_bytes_ext *sbe;
608 struct snd_soc_tplg_bytes_control *be;
609
610 sbe = (struct soc_bytes_ext *)k->private_value;
611 be = container_of(hdr, struct snd_soc_tplg_bytes_control, hdr);
612
613 /* TLV bytes controls need standard kcontrol info handler,
614 * TLV callback and extended put/get handlers.
615 */
Omair M Abdullahf4be9782015-11-09 23:20:01 +0530616 k->info = snd_soc_bytes_info_ext;
Mengdong Lin1a3232d2015-08-18 18:12:20 +0800617 k->tlv.c = snd_soc_bytes_tlv_callback;
618
619 ext_ops = tplg->bytes_ext_ops;
620 num_ops = tplg->bytes_ext_ops_count;
621 for (i = 0; i < num_ops; i++) {
622 if (!sbe->put && ext_ops[i].id == be->ext_ops.put)
623 sbe->put = ext_ops[i].put;
624 if (!sbe->get && ext_ops[i].id == be->ext_ops.get)
625 sbe->get = ext_ops[i].get;
626 }
627
628 if (sbe->put && sbe->get)
629 return 0;
630 else
631 return -EINVAL;
632 }
633
Mengdong Lin88a17d82015-08-18 18:11:51 +0800634 /* try and map vendor specific kcontrol handlers first */
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800635 ops = tplg->io_ops;
636 num_ops = tplg->io_ops_count;
Liam Girdwood8a978232015-05-29 19:06:14 +0100637 for (i = 0; i < num_ops; i++) {
638
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800639 if (k->put == NULL && ops[i].id == hdr->ops.put)
Liam Girdwood8a978232015-05-29 19:06:14 +0100640 k->put = ops[i].put;
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800641 if (k->get == NULL && ops[i].id == hdr->ops.get)
Liam Girdwood8a978232015-05-29 19:06:14 +0100642 k->get = ops[i].get;
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800643 if (k->info == NULL && ops[i].id == hdr->ops.info)
644 k->info = ops[i].info;
Liam Girdwood8a978232015-05-29 19:06:14 +0100645 }
646
Mengdong Lin88a17d82015-08-18 18:11:51 +0800647 /* vendor specific handlers found ? */
648 if (k->put && k->get && k->info)
649 return 0;
650
651 /* none found so try standard kcontrol handlers */
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800652 ops = io_ops;
653 num_ops = ARRAY_SIZE(io_ops);
Mengdong Lin88a17d82015-08-18 18:11:51 +0800654 for (i = 0; i < num_ops; i++) {
655
656 if (k->put == NULL && ops[i].id == hdr->ops.put)
657 k->put = ops[i].put;
658 if (k->get == NULL && ops[i].id == hdr->ops.get)
659 k->get = ops[i].get;
660 if (k->info == NULL && ops[i].id == hdr->ops.info)
Liam Girdwood8a978232015-05-29 19:06:14 +0100661 k->info = ops[i].info;
662 }
663
664 /* standard handlers found ? */
665 if (k->put && k->get && k->info)
666 return 0;
667
Liam Girdwood8a978232015-05-29 19:06:14 +0100668 /* nothing to bind */
669 return -EINVAL;
670}
671
672/* bind a widgets to it's evnt handlers */
673int snd_soc_tplg_widget_bind_event(struct snd_soc_dapm_widget *w,
674 const struct snd_soc_tplg_widget_events *events,
675 int num_events, u16 event_type)
676{
677 int i;
678
679 w->event = NULL;
680
681 for (i = 0; i < num_events; i++) {
682 if (event_type == events[i].type) {
683
684 /* found - so assign event */
685 w->event = events[i].event_handler;
686 return 0;
687 }
688 }
689
690 /* not found */
691 return -EINVAL;
692}
693EXPORT_SYMBOL_GPL(snd_soc_tplg_widget_bind_event);
694
695/* optionally pass new dynamic kcontrol to component driver. */
696static int soc_tplg_init_kcontrol(struct soc_tplg *tplg,
697 struct snd_kcontrol_new *k, struct snd_soc_tplg_ctl_hdr *hdr)
698{
699 if (tplg->comp && tplg->ops && tplg->ops->control_load)
700 return tplg->ops->control_load(tplg->comp, k, hdr);
701
702 return 0;
703}
704
Mengdong Lin28a87ee2015-08-05 14:41:13 +0100705
706static int soc_tplg_create_tlv_db_scale(struct soc_tplg *tplg,
707 struct snd_kcontrol_new *kc, struct snd_soc_tplg_tlv_dbscale *scale)
Liam Girdwood8a978232015-05-29 19:06:14 +0100708{
Mengdong Lin28a87ee2015-08-05 14:41:13 +0100709 unsigned int item_len = 2 * sizeof(unsigned int);
710 unsigned int *p;
Liam Girdwood8a978232015-05-29 19:06:14 +0100711
Mengdong Lin28a87ee2015-08-05 14:41:13 +0100712 p = kzalloc(item_len + 2 * sizeof(unsigned int), GFP_KERNEL);
713 if (!p)
Liam Girdwood8a978232015-05-29 19:06:14 +0100714 return -ENOMEM;
715
Mengdong Lin28a87ee2015-08-05 14:41:13 +0100716 p[0] = SNDRV_CTL_TLVT_DB_SCALE;
717 p[1] = item_len;
718 p[2] = scale->min;
719 p[3] = (scale->step & TLV_DB_SCALE_MASK)
720 | (scale->mute ? TLV_DB_SCALE_MUTE : 0);
Liam Girdwood8a978232015-05-29 19:06:14 +0100721
Mengdong Lin28a87ee2015-08-05 14:41:13 +0100722 kc->tlv.p = (void *)p;
723 return 0;
724}
725
726static int soc_tplg_create_tlv(struct soc_tplg *tplg,
727 struct snd_kcontrol_new *kc, struct snd_soc_tplg_ctl_hdr *tc)
728{
729 struct snd_soc_tplg_ctl_tlv *tplg_tlv;
730
731 if (!(tc->access & SNDRV_CTL_ELEM_ACCESS_TLV_READWRITE))
732 return 0;
733
Mengdong Lin1a3232d2015-08-18 18:12:20 +0800734 if (!(tc->access & SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK)) {
Mengdong Lin28a87ee2015-08-05 14:41:13 +0100735 tplg_tlv = &tc->tlv;
736 switch (tplg_tlv->type) {
737 case SNDRV_CTL_TLVT_DB_SCALE:
738 return soc_tplg_create_tlv_db_scale(tplg, kc,
739 &tplg_tlv->scale);
740
741 /* TODO: add support for other TLV types */
742 default:
743 dev_dbg(tplg->dev, "Unsupported TLV type %d\n",
744 tplg_tlv->type);
745 return -EINVAL;
746 }
747 }
Liam Girdwood8a978232015-05-29 19:06:14 +0100748
749 return 0;
750}
751
752static inline void soc_tplg_free_tlv(struct soc_tplg *tplg,
753 struct snd_kcontrol_new *kc)
754{
755 kfree(kc->tlv.p);
756}
757
758static int soc_tplg_dbytes_create(struct soc_tplg *tplg, unsigned int count,
759 size_t size)
760{
761 struct snd_soc_tplg_bytes_control *be;
762 struct soc_bytes_ext *sbe;
763 struct snd_kcontrol_new kc;
764 int i, err;
765
766 if (soc_tplg_check_elem_count(tplg,
767 sizeof(struct snd_soc_tplg_bytes_control), count,
768 size, "mixer bytes")) {
769 dev_err(tplg->dev, "ASoC: Invalid count %d for byte control\n",
770 count);
771 return -EINVAL;
772 }
773
774 for (i = 0; i < count; i++) {
775 be = (struct snd_soc_tplg_bytes_control *)tplg->pos;
776
777 /* validate kcontrol */
778 if (strnlen(be->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
779 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
780 return -EINVAL;
781
782 sbe = kzalloc(sizeof(*sbe), GFP_KERNEL);
783 if (sbe == NULL)
784 return -ENOMEM;
785
786 tplg->pos += (sizeof(struct snd_soc_tplg_bytes_control) +
787 be->priv.size);
788
789 dev_dbg(tplg->dev,
790 "ASoC: adding bytes kcontrol %s with access 0x%x\n",
791 be->hdr.name, be->hdr.access);
792
793 memset(&kc, 0, sizeof(kc));
794 kc.name = be->hdr.name;
795 kc.private_value = (long)sbe;
796 kc.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
797 kc.access = be->hdr.access;
798
799 sbe->max = be->max;
800 sbe->dobj.type = SND_SOC_DOBJ_BYTES;
801 sbe->dobj.ops = tplg->ops;
802 INIT_LIST_HEAD(&sbe->dobj.list);
803
804 /* map io handlers */
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800805 err = soc_tplg_kcontrol_bind_io(&be->hdr, &kc, tplg);
Liam Girdwood8a978232015-05-29 19:06:14 +0100806 if (err) {
807 soc_control_err(tplg, &be->hdr, be->hdr.name);
808 kfree(sbe);
809 continue;
810 }
811
812 /* pass control to driver for optional further init */
813 err = soc_tplg_init_kcontrol(tplg, &kc,
814 (struct snd_soc_tplg_ctl_hdr *)be);
815 if (err < 0) {
816 dev_err(tplg->dev, "ASoC: failed to init %s\n",
817 be->hdr.name);
818 kfree(sbe);
819 continue;
820 }
821
822 /* register control here */
823 err = soc_tplg_add_kcontrol(tplg, &kc,
824 &sbe->dobj.control.kcontrol);
825 if (err < 0) {
826 dev_err(tplg->dev, "ASoC: failed to add %s\n",
827 be->hdr.name);
828 kfree(sbe);
829 continue;
830 }
831
832 list_add(&sbe->dobj.list, &tplg->comp->dobj_list);
833 }
834 return 0;
835
836}
837
838static int soc_tplg_dmixer_create(struct soc_tplg *tplg, unsigned int count,
839 size_t size)
840{
841 struct snd_soc_tplg_mixer_control *mc;
842 struct soc_mixer_control *sm;
843 struct snd_kcontrol_new kc;
844 int i, err;
845
846 if (soc_tplg_check_elem_count(tplg,
847 sizeof(struct snd_soc_tplg_mixer_control),
848 count, size, "mixers")) {
849
850 dev_err(tplg->dev, "ASoC: invalid count %d for controls\n",
851 count);
852 return -EINVAL;
853 }
854
855 for (i = 0; i < count; i++) {
856 mc = (struct snd_soc_tplg_mixer_control *)tplg->pos;
857
858 /* validate kcontrol */
859 if (strnlen(mc->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
860 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
861 return -EINVAL;
862
863 sm = kzalloc(sizeof(*sm), GFP_KERNEL);
864 if (sm == NULL)
865 return -ENOMEM;
866 tplg->pos += (sizeof(struct snd_soc_tplg_mixer_control) +
867 mc->priv.size);
868
869 dev_dbg(tplg->dev,
870 "ASoC: adding mixer kcontrol %s with access 0x%x\n",
871 mc->hdr.name, mc->hdr.access);
872
873 memset(&kc, 0, sizeof(kc));
874 kc.name = mc->hdr.name;
875 kc.private_value = (long)sm;
876 kc.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
877 kc.access = mc->hdr.access;
878
879 /* we only support FL/FR channel mapping atm */
880 sm->reg = tplc_chan_get_reg(tplg, mc->channel,
881 SNDRV_CHMAP_FL);
882 sm->rreg = tplc_chan_get_reg(tplg, mc->channel,
883 SNDRV_CHMAP_FR);
884 sm->shift = tplc_chan_get_shift(tplg, mc->channel,
885 SNDRV_CHMAP_FL);
886 sm->rshift = tplc_chan_get_shift(tplg, mc->channel,
887 SNDRV_CHMAP_FR);
888
889 sm->max = mc->max;
890 sm->min = mc->min;
891 sm->invert = mc->invert;
892 sm->platform_max = mc->platform_max;
893 sm->dobj.index = tplg->index;
894 sm->dobj.ops = tplg->ops;
895 sm->dobj.type = SND_SOC_DOBJ_MIXER;
896 INIT_LIST_HEAD(&sm->dobj.list);
897
898 /* map io handlers */
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800899 err = soc_tplg_kcontrol_bind_io(&mc->hdr, &kc, tplg);
Liam Girdwood8a978232015-05-29 19:06:14 +0100900 if (err) {
901 soc_control_err(tplg, &mc->hdr, mc->hdr.name);
902 kfree(sm);
903 continue;
904 }
905
906 /* pass control to driver for optional further init */
907 err = soc_tplg_init_kcontrol(tplg, &kc,
908 (struct snd_soc_tplg_ctl_hdr *) mc);
909 if (err < 0) {
910 dev_err(tplg->dev, "ASoC: failed to init %s\n",
911 mc->hdr.name);
912 kfree(sm);
913 continue;
914 }
915
916 /* create any TLV data */
Mengdong Lin28a87ee2015-08-05 14:41:13 +0100917 soc_tplg_create_tlv(tplg, &kc, &mc->hdr);
Liam Girdwood8a978232015-05-29 19:06:14 +0100918
919 /* register control here */
920 err = soc_tplg_add_kcontrol(tplg, &kc,
921 &sm->dobj.control.kcontrol);
922 if (err < 0) {
923 dev_err(tplg->dev, "ASoC: failed to add %s\n",
924 mc->hdr.name);
925 soc_tplg_free_tlv(tplg, &kc);
926 kfree(sm);
927 continue;
928 }
929
930 list_add(&sm->dobj.list, &tplg->comp->dobj_list);
931 }
932
933 return 0;
934}
935
936static int soc_tplg_denum_create_texts(struct soc_enum *se,
937 struct snd_soc_tplg_enum_control *ec)
938{
939 int i, ret;
940
941 se->dobj.control.dtexts =
942 kzalloc(sizeof(char *) * ec->items, GFP_KERNEL);
943 if (se->dobj.control.dtexts == NULL)
944 return -ENOMEM;
945
946 for (i = 0; i < ec->items; i++) {
947
948 if (strnlen(ec->texts[i], SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
949 SNDRV_CTL_ELEM_ID_NAME_MAXLEN) {
950 ret = -EINVAL;
951 goto err;
952 }
953
954 se->dobj.control.dtexts[i] = kstrdup(ec->texts[i], GFP_KERNEL);
955 if (!se->dobj.control.dtexts[i]) {
956 ret = -ENOMEM;
957 goto err;
958 }
959 }
960
Mousumi Janab6e38b22017-04-11 13:06:22 +0530961 se->texts = (const char * const *)se->dobj.control.dtexts;
Liam Girdwood8a978232015-05-29 19:06:14 +0100962 return 0;
963
964err:
965 for (--i; i >= 0; i--)
966 kfree(se->dobj.control.dtexts[i]);
967 kfree(se->dobj.control.dtexts);
968 return ret;
969}
970
971static int soc_tplg_denum_create_values(struct soc_enum *se,
972 struct snd_soc_tplg_enum_control *ec)
973{
974 if (ec->items > sizeof(*ec->values))
975 return -EINVAL;
976
Andrzej Hajda376c0af2015-08-07 09:59:37 +0200977 se->dobj.control.dvalues = kmemdup(ec->values,
978 ec->items * sizeof(u32),
979 GFP_KERNEL);
Liam Girdwood8a978232015-05-29 19:06:14 +0100980 if (!se->dobj.control.dvalues)
981 return -ENOMEM;
982
Liam Girdwood8a978232015-05-29 19:06:14 +0100983 return 0;
984}
985
986static int soc_tplg_denum_create(struct soc_tplg *tplg, unsigned int count,
987 size_t size)
988{
989 struct snd_soc_tplg_enum_control *ec;
990 struct soc_enum *se;
991 struct snd_kcontrol_new kc;
992 int i, ret, err;
993
994 if (soc_tplg_check_elem_count(tplg,
995 sizeof(struct snd_soc_tplg_enum_control),
996 count, size, "enums")) {
997
998 dev_err(tplg->dev, "ASoC: invalid count %d for enum controls\n",
999 count);
1000 return -EINVAL;
1001 }
1002
1003 for (i = 0; i < count; i++) {
1004 ec = (struct snd_soc_tplg_enum_control *)tplg->pos;
1005 tplg->pos += (sizeof(struct snd_soc_tplg_enum_control) +
1006 ec->priv.size);
1007
1008 /* validate kcontrol */
1009 if (strnlen(ec->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1010 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
1011 return -EINVAL;
1012
1013 se = kzalloc((sizeof(*se)), GFP_KERNEL);
1014 if (se == NULL)
1015 return -ENOMEM;
1016
1017 dev_dbg(tplg->dev, "ASoC: adding enum kcontrol %s size %d\n",
1018 ec->hdr.name, ec->items);
1019
1020 memset(&kc, 0, sizeof(kc));
1021 kc.name = ec->hdr.name;
1022 kc.private_value = (long)se;
1023 kc.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
1024 kc.access = ec->hdr.access;
1025
1026 se->reg = tplc_chan_get_reg(tplg, ec->channel, SNDRV_CHMAP_FL);
1027 se->shift_l = tplc_chan_get_shift(tplg, ec->channel,
1028 SNDRV_CHMAP_FL);
1029 se->shift_r = tplc_chan_get_shift(tplg, ec->channel,
1030 SNDRV_CHMAP_FL);
1031
1032 se->items = ec->items;
1033 se->mask = ec->mask;
1034 se->dobj.index = tplg->index;
1035 se->dobj.type = SND_SOC_DOBJ_ENUM;
1036 se->dobj.ops = tplg->ops;
1037 INIT_LIST_HEAD(&se->dobj.list);
1038
1039 switch (ec->hdr.ops.info) {
1040 case SND_SOC_TPLG_DAPM_CTL_ENUM_VALUE:
1041 case SND_SOC_TPLG_CTL_ENUM_VALUE:
1042 err = soc_tplg_denum_create_values(se, ec);
1043 if (err < 0) {
1044 dev_err(tplg->dev,
1045 "ASoC: could not create values for %s\n",
1046 ec->hdr.name);
1047 kfree(se);
1048 continue;
1049 }
1050 /* fall through and create texts */
1051 case SND_SOC_TPLG_CTL_ENUM:
1052 case SND_SOC_TPLG_DAPM_CTL_ENUM_DOUBLE:
1053 case SND_SOC_TPLG_DAPM_CTL_ENUM_VIRT:
1054 err = soc_tplg_denum_create_texts(se, ec);
1055 if (err < 0) {
1056 dev_err(tplg->dev,
1057 "ASoC: could not create texts for %s\n",
1058 ec->hdr.name);
1059 kfree(se);
1060 continue;
1061 }
1062 break;
1063 default:
1064 dev_err(tplg->dev,
1065 "ASoC: invalid enum control type %d for %s\n",
1066 ec->hdr.ops.info, ec->hdr.name);
1067 kfree(se);
1068 continue;
1069 }
1070
1071 /* map io handlers */
Mengdong Lin2b5cdb92015-08-18 18:12:01 +08001072 err = soc_tplg_kcontrol_bind_io(&ec->hdr, &kc, tplg);
Liam Girdwood8a978232015-05-29 19:06:14 +01001073 if (err) {
1074 soc_control_err(tplg, &ec->hdr, ec->hdr.name);
1075 kfree(se);
1076 continue;
1077 }
1078
1079 /* pass control to driver for optional further init */
1080 err = soc_tplg_init_kcontrol(tplg, &kc,
1081 (struct snd_soc_tplg_ctl_hdr *) ec);
1082 if (err < 0) {
1083 dev_err(tplg->dev, "ASoC: failed to init %s\n",
1084 ec->hdr.name);
1085 kfree(se);
1086 continue;
1087 }
1088
1089 /* register control here */
1090 ret = soc_tplg_add_kcontrol(tplg,
1091 &kc, &se->dobj.control.kcontrol);
1092 if (ret < 0) {
1093 dev_err(tplg->dev, "ASoC: could not add kcontrol %s\n",
1094 ec->hdr.name);
1095 kfree(se);
1096 continue;
1097 }
1098
1099 list_add(&se->dobj.list, &tplg->comp->dobj_list);
1100 }
1101
1102 return 0;
1103}
1104
1105static int soc_tplg_kcontrol_elems_load(struct soc_tplg *tplg,
1106 struct snd_soc_tplg_hdr *hdr)
1107{
1108 struct snd_soc_tplg_ctl_hdr *control_hdr;
1109 int i;
1110
1111 if (tplg->pass != SOC_TPLG_PASS_MIXER) {
1112 tplg->pos += hdr->size + hdr->payload_size;
1113 return 0;
1114 }
1115
1116 dev_dbg(tplg->dev, "ASoC: adding %d kcontrols at 0x%lx\n", hdr->count,
1117 soc_tplg_get_offset(tplg));
1118
1119 for (i = 0; i < hdr->count; i++) {
1120
1121 control_hdr = (struct snd_soc_tplg_ctl_hdr *)tplg->pos;
1122
Mengdong Lin06eb49f2016-04-27 14:52:56 +08001123 if (control_hdr->size != sizeof(*control_hdr)) {
1124 dev_err(tplg->dev, "ASoC: invalid control size\n");
1125 return -EINVAL;
1126 }
1127
Liam Girdwood8a978232015-05-29 19:06:14 +01001128 switch (control_hdr->ops.info) {
1129 case SND_SOC_TPLG_CTL_VOLSW:
1130 case SND_SOC_TPLG_CTL_STROBE:
1131 case SND_SOC_TPLG_CTL_VOLSW_SX:
1132 case SND_SOC_TPLG_CTL_VOLSW_XR_SX:
1133 case SND_SOC_TPLG_CTL_RANGE:
1134 case SND_SOC_TPLG_DAPM_CTL_VOLSW:
1135 case SND_SOC_TPLG_DAPM_CTL_PIN:
1136 soc_tplg_dmixer_create(tplg, 1, hdr->payload_size);
1137 break;
1138 case SND_SOC_TPLG_CTL_ENUM:
1139 case SND_SOC_TPLG_CTL_ENUM_VALUE:
1140 case SND_SOC_TPLG_DAPM_CTL_ENUM_DOUBLE:
1141 case SND_SOC_TPLG_DAPM_CTL_ENUM_VIRT:
1142 case SND_SOC_TPLG_DAPM_CTL_ENUM_VALUE:
1143 soc_tplg_denum_create(tplg, 1, hdr->payload_size);
1144 break;
1145 case SND_SOC_TPLG_CTL_BYTES:
1146 soc_tplg_dbytes_create(tplg, 1, hdr->payload_size);
1147 break;
1148 default:
1149 soc_bind_err(tplg, control_hdr, i);
1150 return -EINVAL;
1151 }
1152 }
1153
1154 return 0;
1155}
1156
1157static int soc_tplg_dapm_graph_elems_load(struct soc_tplg *tplg,
1158 struct snd_soc_tplg_hdr *hdr)
1159{
1160 struct snd_soc_dapm_context *dapm = &tplg->comp->dapm;
1161 struct snd_soc_dapm_route route;
1162 struct snd_soc_tplg_dapm_graph_elem *elem;
1163 int count = hdr->count, i;
1164
1165 if (tplg->pass != SOC_TPLG_PASS_GRAPH) {
1166 tplg->pos += hdr->size + hdr->payload_size;
1167 return 0;
1168 }
1169
1170 if (soc_tplg_check_elem_count(tplg,
1171 sizeof(struct snd_soc_tplg_dapm_graph_elem),
1172 count, hdr->payload_size, "graph")) {
1173
1174 dev_err(tplg->dev, "ASoC: invalid count %d for DAPM routes\n",
1175 count);
1176 return -EINVAL;
1177 }
1178
Liam Girdwoodb75a6512017-06-29 14:22:26 +01001179 dev_dbg(tplg->dev, "ASoC: adding %d DAPM routes for index %d\n", count,
1180 hdr->index);
Liam Girdwood8a978232015-05-29 19:06:14 +01001181
1182 for (i = 0; i < count; i++) {
1183 elem = (struct snd_soc_tplg_dapm_graph_elem *)tplg->pos;
1184 tplg->pos += sizeof(struct snd_soc_tplg_dapm_graph_elem);
1185
1186 /* validate routes */
1187 if (strnlen(elem->source, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1188 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
1189 return -EINVAL;
1190 if (strnlen(elem->sink, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1191 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
1192 return -EINVAL;
1193 if (strnlen(elem->control, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1194 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
1195 return -EINVAL;
1196
1197 route.source = elem->source;
1198 route.sink = elem->sink;
1199 route.connected = NULL; /* set to NULL atm for tplg users */
1200 if (strnlen(elem->control, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) == 0)
1201 route.control = NULL;
1202 else
1203 route.control = elem->control;
1204
1205 /* add route, but keep going if some fail */
1206 snd_soc_dapm_add_routes(dapm, &route, 1);
1207 }
1208
1209 return 0;
1210}
1211
1212static struct snd_kcontrol_new *soc_tplg_dapm_widget_dmixer_create(
1213 struct soc_tplg *tplg, int num_kcontrols)
1214{
1215 struct snd_kcontrol_new *kc;
1216 struct soc_mixer_control *sm;
1217 struct snd_soc_tplg_mixer_control *mc;
1218 int i, err;
1219
Axel Lin4ca7deb2015-08-05 22:34:22 +08001220 kc = kcalloc(num_kcontrols, sizeof(*kc), GFP_KERNEL);
Liam Girdwood8a978232015-05-29 19:06:14 +01001221 if (kc == NULL)
1222 return NULL;
1223
1224 for (i = 0; i < num_kcontrols; i++) {
1225 mc = (struct snd_soc_tplg_mixer_control *)tplg->pos;
1226 sm = kzalloc(sizeof(*sm), GFP_KERNEL);
1227 if (sm == NULL)
1228 goto err;
1229
1230 tplg->pos += (sizeof(struct snd_soc_tplg_mixer_control) +
1231 mc->priv.size);
1232
1233 /* validate kcontrol */
1234 if (strnlen(mc->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1235 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
1236 goto err_str;
1237
1238 dev_dbg(tplg->dev, " adding DAPM widget mixer control %s at %d\n",
1239 mc->hdr.name, i);
1240
1241 kc[i].name = mc->hdr.name;
1242 kc[i].private_value = (long)sm;
1243 kc[i].iface = SNDRV_CTL_ELEM_IFACE_MIXER;
1244 kc[i].access = mc->hdr.access;
1245
1246 /* we only support FL/FR channel mapping atm */
1247 sm->reg = tplc_chan_get_reg(tplg, mc->channel,
1248 SNDRV_CHMAP_FL);
1249 sm->rreg = tplc_chan_get_reg(tplg, mc->channel,
1250 SNDRV_CHMAP_FR);
1251 sm->shift = tplc_chan_get_shift(tplg, mc->channel,
1252 SNDRV_CHMAP_FL);
1253 sm->rshift = tplc_chan_get_shift(tplg, mc->channel,
1254 SNDRV_CHMAP_FR);
1255
1256 sm->max = mc->max;
1257 sm->min = mc->min;
1258 sm->invert = mc->invert;
1259 sm->platform_max = mc->platform_max;
1260 sm->dobj.index = tplg->index;
1261 INIT_LIST_HEAD(&sm->dobj.list);
1262
1263 /* map io handlers */
Mengdong Lin2b5cdb92015-08-18 18:12:01 +08001264 err = soc_tplg_kcontrol_bind_io(&mc->hdr, &kc[i], tplg);
Liam Girdwood8a978232015-05-29 19:06:14 +01001265 if (err) {
1266 soc_control_err(tplg, &mc->hdr, mc->hdr.name);
1267 kfree(sm);
1268 continue;
1269 }
1270
1271 /* pass control to driver for optional further init */
1272 err = soc_tplg_init_kcontrol(tplg, &kc[i],
1273 (struct snd_soc_tplg_ctl_hdr *)mc);
1274 if (err < 0) {
1275 dev_err(tplg->dev, "ASoC: failed to init %s\n",
1276 mc->hdr.name);
1277 kfree(sm);
1278 continue;
1279 }
Ranjani Sridharanbde8b382018-03-09 11:11:17 -08001280
1281 /* create any TLV data */
1282 soc_tplg_create_tlv(tplg, &kc[i], &mc->hdr);
Liam Girdwood8a978232015-05-29 19:06:14 +01001283 }
1284 return kc;
1285
1286err_str:
1287 kfree(sm);
1288err:
1289 for (--i; i >= 0; i--)
1290 kfree((void *)kc[i].private_value);
1291 kfree(kc);
1292 return NULL;
1293}
1294
1295static struct snd_kcontrol_new *soc_tplg_dapm_widget_denum_create(
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001296 struct soc_tplg *tplg, int num_kcontrols)
Liam Girdwood8a978232015-05-29 19:06:14 +01001297{
1298 struct snd_kcontrol_new *kc;
1299 struct snd_soc_tplg_enum_control *ec;
1300 struct soc_enum *se;
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001301 int i, j, err;
Liam Girdwood8a978232015-05-29 19:06:14 +01001302
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001303 kc = kcalloc(num_kcontrols, sizeof(*kc), GFP_KERNEL);
Liam Girdwood8a978232015-05-29 19:06:14 +01001304 if (kc == NULL)
1305 return NULL;
1306
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001307 for (i = 0; i < num_kcontrols; i++) {
1308 ec = (struct snd_soc_tplg_enum_control *)tplg->pos;
1309 /* validate kcontrol */
1310 if (strnlen(ec->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1311 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
Christophe JAILLETf3ee9092017-09-14 22:44:24 +02001312 goto err;
Liam Girdwood8a978232015-05-29 19:06:14 +01001313
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001314 se = kzalloc(sizeof(*se), GFP_KERNEL);
1315 if (se == NULL)
1316 goto err;
Liam Girdwood8a978232015-05-29 19:06:14 +01001317
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001318 dev_dbg(tplg->dev, " adding DAPM widget enum control %s\n",
Liam Girdwood8a978232015-05-29 19:06:14 +01001319 ec->hdr.name);
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001320
1321 kc[i].name = ec->hdr.name;
1322 kc[i].private_value = (long)se;
1323 kc[i].iface = SNDRV_CTL_ELEM_IFACE_MIXER;
1324 kc[i].access = ec->hdr.access;
1325
1326 /* we only support FL/FR channel mapping atm */
1327 se->reg = tplc_chan_get_reg(tplg, ec->channel, SNDRV_CHMAP_FL);
1328 se->shift_l = tplc_chan_get_shift(tplg, ec->channel,
1329 SNDRV_CHMAP_FL);
1330 se->shift_r = tplc_chan_get_shift(tplg, ec->channel,
1331 SNDRV_CHMAP_FR);
1332
1333 se->items = ec->items;
1334 se->mask = ec->mask;
1335 se->dobj.index = tplg->index;
1336
1337 switch (ec->hdr.ops.info) {
1338 case SND_SOC_TPLG_CTL_ENUM_VALUE:
1339 case SND_SOC_TPLG_DAPM_CTL_ENUM_VALUE:
1340 err = soc_tplg_denum_create_values(se, ec);
1341 if (err < 0) {
1342 dev_err(tplg->dev, "ASoC: could not create values for %s\n",
1343 ec->hdr.name);
1344 goto err_se;
1345 }
1346 /* fall through to create texts */
1347 case SND_SOC_TPLG_CTL_ENUM:
1348 case SND_SOC_TPLG_DAPM_CTL_ENUM_DOUBLE:
1349 case SND_SOC_TPLG_DAPM_CTL_ENUM_VIRT:
1350 err = soc_tplg_denum_create_texts(se, ec);
1351 if (err < 0) {
1352 dev_err(tplg->dev, "ASoC: could not create texts for %s\n",
1353 ec->hdr.name);
1354 goto err_se;
1355 }
1356 break;
1357 default:
1358 dev_err(tplg->dev, "ASoC: invalid enum control type %d for %s\n",
1359 ec->hdr.ops.info, ec->hdr.name);
1360 goto err_se;
1361 }
1362
1363 /* map io handlers */
1364 err = soc_tplg_kcontrol_bind_io(&ec->hdr, &kc[i], tplg);
1365 if (err) {
1366 soc_control_err(tplg, &ec->hdr, ec->hdr.name);
1367 goto err_se;
1368 }
1369
1370 /* pass control to driver for optional further init */
1371 err = soc_tplg_init_kcontrol(tplg, &kc[i],
1372 (struct snd_soc_tplg_ctl_hdr *)ec);
1373 if (err < 0) {
1374 dev_err(tplg->dev, "ASoC: failed to init %s\n",
1375 ec->hdr.name);
1376 goto err_se;
1377 }
1378
1379 tplg->pos += (sizeof(struct snd_soc_tplg_enum_control) +
1380 ec->priv.size);
Liam Girdwood8a978232015-05-29 19:06:14 +01001381 }
1382
1383 return kc;
1384
1385err_se:
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001386 for (; i >= 0; i--) {
1387 /* free values and texts */
1388 se = (struct soc_enum *)kc[i].private_value;
Christophe JAILLET6d5574e2017-09-14 22:44:12 +02001389 if (!se)
1390 continue;
1391
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001392 kfree(se->dobj.control.dvalues);
1393 for (j = 0; j < ec->items; j++)
1394 kfree(se->dobj.control.dtexts[j]);
Liam Girdwood8a978232015-05-29 19:06:14 +01001395
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001396 kfree(se);
1397 }
Liam Girdwood8a978232015-05-29 19:06:14 +01001398err:
1399 kfree(kc);
1400
1401 return NULL;
1402}
1403
1404static struct snd_kcontrol_new *soc_tplg_dapm_widget_dbytes_create(
1405 struct soc_tplg *tplg, int count)
1406{
1407 struct snd_soc_tplg_bytes_control *be;
1408 struct soc_bytes_ext *sbe;
1409 struct snd_kcontrol_new *kc;
1410 int i, err;
1411
Axel Lin4ca7deb2015-08-05 22:34:22 +08001412 kc = kcalloc(count, sizeof(*kc), GFP_KERNEL);
Liam Girdwood8a978232015-05-29 19:06:14 +01001413 if (!kc)
1414 return NULL;
1415
1416 for (i = 0; i < count; i++) {
1417 be = (struct snd_soc_tplg_bytes_control *)tplg->pos;
1418
1419 /* validate kcontrol */
1420 if (strnlen(be->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1421 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
1422 goto err;
1423
1424 sbe = kzalloc(sizeof(*sbe), GFP_KERNEL);
1425 if (sbe == NULL)
1426 goto err;
1427
1428 tplg->pos += (sizeof(struct snd_soc_tplg_bytes_control) +
1429 be->priv.size);
1430
1431 dev_dbg(tplg->dev,
1432 "ASoC: adding bytes kcontrol %s with access 0x%x\n",
1433 be->hdr.name, be->hdr.access);
1434
Liam Girdwood8a978232015-05-29 19:06:14 +01001435 kc[i].name = be->hdr.name;
1436 kc[i].private_value = (long)sbe;
1437 kc[i].iface = SNDRV_CTL_ELEM_IFACE_MIXER;
1438 kc[i].access = be->hdr.access;
1439
1440 sbe->max = be->max;
1441 INIT_LIST_HEAD(&sbe->dobj.list);
1442
1443 /* map standard io handlers and check for external handlers */
Mengdong Lin2b5cdb92015-08-18 18:12:01 +08001444 err = soc_tplg_kcontrol_bind_io(&be->hdr, &kc[i], tplg);
Liam Girdwood8a978232015-05-29 19:06:14 +01001445 if (err) {
1446 soc_control_err(tplg, &be->hdr, be->hdr.name);
1447 kfree(sbe);
1448 continue;
1449 }
1450
1451 /* pass control to driver for optional further init */
1452 err = soc_tplg_init_kcontrol(tplg, &kc[i],
1453 (struct snd_soc_tplg_ctl_hdr *)be);
1454 if (err < 0) {
1455 dev_err(tplg->dev, "ASoC: failed to init %s\n",
1456 be->hdr.name);
1457 kfree(sbe);
1458 continue;
1459 }
1460 }
1461
1462 return kc;
1463
1464err:
1465 for (--i; i >= 0; i--)
1466 kfree((void *)kc[i].private_value);
1467
1468 kfree(kc);
1469 return NULL;
1470}
1471
1472static int soc_tplg_dapm_widget_create(struct soc_tplg *tplg,
1473 struct snd_soc_tplg_dapm_widget *w)
1474{
1475 struct snd_soc_dapm_context *dapm = &tplg->comp->dapm;
1476 struct snd_soc_dapm_widget template, *widget;
1477 struct snd_soc_tplg_ctl_hdr *control_hdr;
1478 struct snd_soc_card *card = tplg->comp->card;
Mengdong Lineea3dd42016-11-25 16:09:17 +08001479 unsigned int kcontrol_type;
Liam Girdwood8a978232015-05-29 19:06:14 +01001480 int ret = 0;
1481
1482 if (strnlen(w->name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1483 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
1484 return -EINVAL;
1485 if (strnlen(w->sname, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1486 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
1487 return -EINVAL;
1488
1489 dev_dbg(tplg->dev, "ASoC: creating DAPM widget %s id %d\n",
1490 w->name, w->id);
1491
1492 memset(&template, 0, sizeof(template));
1493
1494 /* map user to kernel widget ID */
1495 template.id = get_widget_id(w->id);
1496 if (template.id < 0)
1497 return template.id;
1498
Liam Girdwoodc3421a62017-06-06 15:45:09 +01001499 /* strings are allocated here, but used and freed by the widget */
Liam Girdwood8a978232015-05-29 19:06:14 +01001500 template.name = kstrdup(w->name, GFP_KERNEL);
1501 if (!template.name)
1502 return -ENOMEM;
1503 template.sname = kstrdup(w->sname, GFP_KERNEL);
1504 if (!template.sname) {
1505 ret = -ENOMEM;
1506 goto err;
1507 }
1508 template.reg = w->reg;
1509 template.shift = w->shift;
1510 template.mask = w->mask;
Subhransu S. Prusty6dc6db72015-06-29 17:36:44 +01001511 template.subseq = w->subseq;
Liam Girdwood8a978232015-05-29 19:06:14 +01001512 template.on_val = w->invert ? 0 : 1;
1513 template.off_val = w->invert ? 1 : 0;
1514 template.ignore_suspend = w->ignore_suspend;
1515 template.event_flags = w->event_flags;
1516 template.dobj.index = tplg->index;
1517
1518 tplg->pos +=
1519 (sizeof(struct snd_soc_tplg_dapm_widget) + w->priv.size);
1520 if (w->num_kcontrols == 0) {
Arnd Bergmanndd5abb72016-12-09 12:51:46 +01001521 kcontrol_type = 0;
Liam Girdwood8a978232015-05-29 19:06:14 +01001522 template.num_kcontrols = 0;
1523 goto widget;
1524 }
1525
1526 control_hdr = (struct snd_soc_tplg_ctl_hdr *)tplg->pos;
1527 dev_dbg(tplg->dev, "ASoC: template %s has %d controls of type %x\n",
1528 w->name, w->num_kcontrols, control_hdr->type);
1529
1530 switch (control_hdr->ops.info) {
1531 case SND_SOC_TPLG_CTL_VOLSW:
1532 case SND_SOC_TPLG_CTL_STROBE:
1533 case SND_SOC_TPLG_CTL_VOLSW_SX:
1534 case SND_SOC_TPLG_CTL_VOLSW_XR_SX:
1535 case SND_SOC_TPLG_CTL_RANGE:
1536 case SND_SOC_TPLG_DAPM_CTL_VOLSW:
Mengdong Lineea3dd42016-11-25 16:09:17 +08001537 kcontrol_type = SND_SOC_TPLG_TYPE_MIXER; /* volume mixer */
Liam Girdwood8a978232015-05-29 19:06:14 +01001538 template.num_kcontrols = w->num_kcontrols;
1539 template.kcontrol_news =
1540 soc_tplg_dapm_widget_dmixer_create(tplg,
1541 template.num_kcontrols);
1542 if (!template.kcontrol_news) {
1543 ret = -ENOMEM;
1544 goto hdr_err;
1545 }
1546 break;
1547 case SND_SOC_TPLG_CTL_ENUM:
1548 case SND_SOC_TPLG_CTL_ENUM_VALUE:
1549 case SND_SOC_TPLG_DAPM_CTL_ENUM_DOUBLE:
1550 case SND_SOC_TPLG_DAPM_CTL_ENUM_VIRT:
1551 case SND_SOC_TPLG_DAPM_CTL_ENUM_VALUE:
Mengdong Lineea3dd42016-11-25 16:09:17 +08001552 kcontrol_type = SND_SOC_TPLG_TYPE_ENUM; /* enumerated mixer */
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001553 template.num_kcontrols = w->num_kcontrols;
Liam Girdwood8a978232015-05-29 19:06:14 +01001554 template.kcontrol_news =
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001555 soc_tplg_dapm_widget_denum_create(tplg,
1556 template.num_kcontrols);
Liam Girdwood8a978232015-05-29 19:06:14 +01001557 if (!template.kcontrol_news) {
1558 ret = -ENOMEM;
1559 goto hdr_err;
1560 }
1561 break;
1562 case SND_SOC_TPLG_CTL_BYTES:
Mengdong Lineea3dd42016-11-25 16:09:17 +08001563 kcontrol_type = SND_SOC_TPLG_TYPE_BYTES; /* bytes control */
Liam Girdwood8a978232015-05-29 19:06:14 +01001564 template.num_kcontrols = w->num_kcontrols;
1565 template.kcontrol_news =
1566 soc_tplg_dapm_widget_dbytes_create(tplg,
1567 template.num_kcontrols);
1568 if (!template.kcontrol_news) {
1569 ret = -ENOMEM;
1570 goto hdr_err;
1571 }
1572 break;
1573 default:
1574 dev_err(tplg->dev, "ASoC: invalid widget control type %d:%d:%d\n",
1575 control_hdr->ops.get, control_hdr->ops.put,
1576 control_hdr->ops.info);
1577 ret = -EINVAL;
1578 goto hdr_err;
1579 }
1580
1581widget:
1582 ret = soc_tplg_widget_load(tplg, &template, w);
1583 if (ret < 0)
1584 goto hdr_err;
1585
1586 /* card dapm mutex is held by the core if we are loading topology
1587 * data during sound card init. */
1588 if (card->instantiated)
1589 widget = snd_soc_dapm_new_control(dapm, &template);
1590 else
1591 widget = snd_soc_dapm_new_control_unlocked(dapm, &template);
Linus Walleij37e1df82017-01-13 10:23:52 +01001592 if (IS_ERR(widget)) {
1593 ret = PTR_ERR(widget);
1594 /* Do not nag about probe deferrals */
1595 if (ret != -EPROBE_DEFER)
1596 dev_err(tplg->dev,
1597 "ASoC: failed to create widget %s controls (%d)\n",
1598 w->name, ret);
1599 goto hdr_err;
1600 }
Liam Girdwood8a978232015-05-29 19:06:14 +01001601 if (widget == NULL) {
1602 dev_err(tplg->dev, "ASoC: failed to create widget %s controls\n",
1603 w->name);
Wei Yongjun8ae3ea42016-08-10 13:43:12 +00001604 ret = -ENOMEM;
Liam Girdwood8a978232015-05-29 19:06:14 +01001605 goto hdr_err;
1606 }
1607
1608 widget->dobj.type = SND_SOC_DOBJ_WIDGET;
Mengdong Lineea3dd42016-11-25 16:09:17 +08001609 widget->dobj.widget.kcontrol_type = kcontrol_type;
Liam Girdwood8a978232015-05-29 19:06:14 +01001610 widget->dobj.ops = tplg->ops;
1611 widget->dobj.index = tplg->index;
1612 list_add(&widget->dobj.list, &tplg->comp->dobj_list);
Liam Girdwoodebd259d2017-06-09 15:43:23 +01001613
1614 ret = soc_tplg_widget_ready(tplg, widget, w);
1615 if (ret < 0)
1616 goto ready_err;
1617
Liam Girdwood8a978232015-05-29 19:06:14 +01001618 return 0;
1619
Liam Girdwoodebd259d2017-06-09 15:43:23 +01001620ready_err:
1621 snd_soc_tplg_widget_remove(widget);
1622 snd_soc_dapm_free_widget(widget);
Liam Girdwood8a978232015-05-29 19:06:14 +01001623hdr_err:
1624 kfree(template.sname);
1625err:
1626 kfree(template.name);
1627 return ret;
1628}
1629
1630static int soc_tplg_dapm_widget_elems_load(struct soc_tplg *tplg,
1631 struct snd_soc_tplg_hdr *hdr)
1632{
1633 struct snd_soc_tplg_dapm_widget *widget;
1634 int ret, count = hdr->count, i;
1635
1636 if (tplg->pass != SOC_TPLG_PASS_WIDGET)
1637 return 0;
1638
1639 dev_dbg(tplg->dev, "ASoC: adding %d DAPM widgets\n", count);
1640
1641 for (i = 0; i < count; i++) {
1642 widget = (struct snd_soc_tplg_dapm_widget *) tplg->pos;
Mengdong Lin06eb49f2016-04-27 14:52:56 +08001643 if (widget->size != sizeof(*widget)) {
1644 dev_err(tplg->dev, "ASoC: invalid widget size\n");
1645 return -EINVAL;
1646 }
1647
Liam Girdwood8a978232015-05-29 19:06:14 +01001648 ret = soc_tplg_dapm_widget_create(tplg, widget);
Mengdong Lin7de76b62016-04-27 14:52:38 +08001649 if (ret < 0) {
Liam Girdwood8a978232015-05-29 19:06:14 +01001650 dev_err(tplg->dev, "ASoC: failed to load widget %s\n",
1651 widget->name);
Mengdong Lin7de76b62016-04-27 14:52:38 +08001652 return ret;
1653 }
Liam Girdwood8a978232015-05-29 19:06:14 +01001654 }
1655
1656 return 0;
1657}
1658
1659static int soc_tplg_dapm_complete(struct soc_tplg *tplg)
1660{
1661 struct snd_soc_card *card = tplg->comp->card;
1662 int ret;
1663
1664 /* Card might not have been registered at this point.
1665 * If so, just return success.
1666 */
1667 if (!card || !card->instantiated) {
1668 dev_warn(tplg->dev, "ASoC: Parent card not yet available,"
Liam Girdwoodcc9d4712017-06-06 15:45:08 +01001669 " widget card binding deferred\n");
Liam Girdwood8a978232015-05-29 19:06:14 +01001670 return 0;
1671 }
1672
1673 ret = snd_soc_dapm_new_widgets(card);
1674 if (ret < 0)
1675 dev_err(tplg->dev, "ASoC: failed to create new widgets %d\n",
1676 ret);
1677
1678 return 0;
1679}
1680
Mengdong Linb6b6e4d2016-02-22 16:29:19 +08001681static void set_stream_info(struct snd_soc_pcm_stream *stream,
1682 struct snd_soc_tplg_stream_caps *caps)
1683{
1684 stream->stream_name = kstrdup(caps->name, GFP_KERNEL);
1685 stream->channels_min = caps->channels_min;
1686 stream->channels_max = caps->channels_max;
1687 stream->rates = caps->rates;
1688 stream->rate_min = caps->rate_min;
1689 stream->rate_max = caps->rate_max;
1690 stream->formats = caps->formats;
Mengdong Linf918e162016-08-19 18:12:46 +08001691 stream->sig_bits = caps->sig_bits;
Mengdong Linb6b6e4d2016-02-22 16:29:19 +08001692}
1693
Mengdong Lin0038be92016-07-26 14:32:37 +08001694static void set_dai_flags(struct snd_soc_dai_driver *dai_drv,
1695 unsigned int flag_mask, unsigned int flags)
1696{
1697 if (flag_mask & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_RATES)
1698 dai_drv->symmetric_rates =
1699 flags & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_RATES ? 1 : 0;
1700
1701 if (flag_mask & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_CHANNELS)
1702 dai_drv->symmetric_channels =
1703 flags & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_CHANNELS ?
1704 1 : 0;
1705
1706 if (flag_mask & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_SAMPLEBITS)
1707 dai_drv->symmetric_samplebits =
1708 flags & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_SAMPLEBITS ?
1709 1 : 0;
1710}
1711
Mengdong Lin64527e82016-01-15 16:13:28 +08001712static int soc_tplg_dai_create(struct soc_tplg *tplg,
1713 struct snd_soc_tplg_pcm *pcm)
1714{
1715 struct snd_soc_dai_driver *dai_drv;
1716 struct snd_soc_pcm_stream *stream;
1717 struct snd_soc_tplg_stream_caps *caps;
1718 int ret;
1719
1720 dai_drv = kzalloc(sizeof(struct snd_soc_dai_driver), GFP_KERNEL);
1721 if (dai_drv == NULL)
1722 return -ENOMEM;
1723
Mengdong Lin8f27c4a2016-11-03 01:02:59 +08001724 if (strlen(pcm->dai_name))
1725 dai_drv->name = kstrdup(pcm->dai_name, GFP_KERNEL);
Mengdong Lin64527e82016-01-15 16:13:28 +08001726 dai_drv->id = pcm->dai_id;
1727
1728 if (pcm->playback) {
1729 stream = &dai_drv->playback;
1730 caps = &pcm->caps[SND_SOC_TPLG_STREAM_PLAYBACK];
Mengdong Linb6b6e4d2016-02-22 16:29:19 +08001731 set_stream_info(stream, caps);
Mengdong Lin64527e82016-01-15 16:13:28 +08001732 }
1733
1734 if (pcm->capture) {
1735 stream = &dai_drv->capture;
1736 caps = &pcm->caps[SND_SOC_TPLG_STREAM_CAPTURE];
Mengdong Linb6b6e4d2016-02-22 16:29:19 +08001737 set_stream_info(stream, caps);
Mengdong Lin64527e82016-01-15 16:13:28 +08001738 }
1739
1740 /* pass control to component driver for optional further init */
1741 ret = soc_tplg_dai_load(tplg, dai_drv);
1742 if (ret < 0) {
1743 dev_err(tplg->comp->dev, "ASoC: DAI loading failed\n");
1744 kfree(dai_drv);
1745 return ret;
1746 }
1747
1748 dai_drv->dobj.index = tplg->index;
1749 dai_drv->dobj.ops = tplg->ops;
1750 dai_drv->dobj.type = SND_SOC_DOBJ_PCM;
1751 list_add(&dai_drv->dobj.list, &tplg->comp->dobj_list);
1752
1753 /* register the DAI to the component */
1754 return snd_soc_register_dai(tplg->comp, dai_drv);
1755}
1756
Mengdong Lin717a8e72016-11-03 01:03:34 +08001757static void set_link_flags(struct snd_soc_dai_link *link,
1758 unsigned int flag_mask, unsigned int flags)
1759{
1760 if (flag_mask & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_RATES)
1761 link->symmetric_rates =
1762 flags & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_RATES ? 1 : 0;
1763
1764 if (flag_mask & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_CHANNELS)
1765 link->symmetric_channels =
1766 flags & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_CHANNELS ?
1767 1 : 0;
1768
1769 if (flag_mask & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_SAMPLEBITS)
1770 link->symmetric_samplebits =
1771 flags & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_SAMPLEBITS ?
1772 1 : 0;
Mengdong Lin6ff67cc2016-11-03 01:05:32 +08001773
1774 if (flag_mask & SND_SOC_TPLG_LNK_FLGBIT_VOICE_WAKEUP)
1775 link->ignore_suspend =
1776 flags & SND_SOC_TPLG_LNK_FLGBIT_VOICE_WAKEUP ?
1777 1 : 0;
Mengdong Lin717a8e72016-11-03 01:03:34 +08001778}
1779
Guneshwor Singh67d1c212016-04-19 13:12:50 +08001780/* create the FE DAI link */
Mengdong Linab4bc5e2016-11-03 01:04:42 +08001781static int soc_tplg_fe_link_create(struct soc_tplg *tplg,
Mengdong Linacfc7d42016-01-15 16:13:37 +08001782 struct snd_soc_tplg_pcm *pcm)
1783{
1784 struct snd_soc_dai_link *link;
1785 int ret;
1786
1787 link = kzalloc(sizeof(struct snd_soc_dai_link), GFP_KERNEL);
1788 if (link == NULL)
1789 return -ENOMEM;
1790
Mengdong Lin8f27c4a2016-11-03 01:02:59 +08001791 if (strlen(pcm->pcm_name)) {
1792 link->name = kstrdup(pcm->pcm_name, GFP_KERNEL);
1793 link->stream_name = kstrdup(pcm->pcm_name, GFP_KERNEL);
1794 }
Mengdong Linb84fff52016-04-19 13:12:43 +08001795 link->id = pcm->pcm_id;
Mengdong Linacfc7d42016-01-15 16:13:37 +08001796
Mengdong Lin8f27c4a2016-11-03 01:02:59 +08001797 if (strlen(pcm->dai_name))
1798 link->cpu_dai_name = kstrdup(pcm->dai_name, GFP_KERNEL);
1799
Guneshwor Singh67d1c212016-04-19 13:12:50 +08001800 link->codec_name = "snd-soc-dummy";
1801 link->codec_dai_name = "snd-soc-dummy-dai";
1802
1803 /* enable DPCM */
1804 link->dynamic = 1;
1805 link->dpcm_playback = pcm->playback;
1806 link->dpcm_capture = pcm->capture;
Mengdong Lin717a8e72016-11-03 01:03:34 +08001807 if (pcm->flag_mask)
1808 set_link_flags(link, pcm->flag_mask, pcm->flags);
Guneshwor Singh67d1c212016-04-19 13:12:50 +08001809
Mengdong Linacfc7d42016-01-15 16:13:37 +08001810 /* pass control to component driver for optional further init */
1811 ret = soc_tplg_dai_link_load(tplg, link);
1812 if (ret < 0) {
1813 dev_err(tplg->comp->dev, "ASoC: FE link loading failed\n");
1814 kfree(link);
1815 return ret;
1816 }
1817
1818 link->dobj.index = tplg->index;
1819 link->dobj.ops = tplg->ops;
1820 link->dobj.type = SND_SOC_DOBJ_DAI_LINK;
1821 list_add(&link->dobj.list, &tplg->comp->dobj_list);
1822
1823 snd_soc_add_dai_link(tplg->comp->card, link);
1824 return 0;
1825}
1826
1827/* create a FE DAI and DAI link from the PCM object */
Mengdong Lin64527e82016-01-15 16:13:28 +08001828static int soc_tplg_pcm_create(struct soc_tplg *tplg,
1829 struct snd_soc_tplg_pcm *pcm)
1830{
Mengdong Linacfc7d42016-01-15 16:13:37 +08001831 int ret;
1832
1833 ret = soc_tplg_dai_create(tplg, pcm);
1834 if (ret < 0)
1835 return ret;
1836
Mengdong Linab4bc5e2016-11-03 01:04:42 +08001837 return soc_tplg_fe_link_create(tplg, pcm);
Mengdong Lin64527e82016-01-15 16:13:28 +08001838}
1839
Mengdong Lin55726dc2016-11-03 01:00:16 +08001840/* copy stream caps from the old version 4 of source */
1841static void stream_caps_new_ver(struct snd_soc_tplg_stream_caps *dest,
1842 struct snd_soc_tplg_stream_caps_v4 *src)
1843{
1844 dest->size = sizeof(*dest);
1845 memcpy(dest->name, src->name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN);
1846 dest->formats = src->formats;
1847 dest->rates = src->rates;
1848 dest->rate_min = src->rate_min;
1849 dest->rate_max = src->rate_max;
1850 dest->channels_min = src->channels_min;
1851 dest->channels_max = src->channels_max;
1852 dest->periods_min = src->periods_min;
1853 dest->periods_max = src->periods_max;
1854 dest->period_size_min = src->period_size_min;
1855 dest->period_size_max = src->period_size_max;
1856 dest->buffer_size_min = src->buffer_size_min;
1857 dest->buffer_size_max = src->buffer_size_max;
1858}
1859
1860/**
1861 * pcm_new_ver - Create the new version of PCM from the old version.
1862 * @tplg: topology context
1863 * @src: older version of pcm as a source
1864 * @pcm: latest version of pcm created from the source
1865 *
1866 * Support from vesion 4. User should free the returned pcm manually.
1867 */
1868static int pcm_new_ver(struct soc_tplg *tplg,
1869 struct snd_soc_tplg_pcm *src,
1870 struct snd_soc_tplg_pcm **pcm)
1871{
1872 struct snd_soc_tplg_pcm *dest;
1873 struct snd_soc_tplg_pcm_v4 *src_v4;
1874 int i;
1875
1876 *pcm = NULL;
1877
1878 if (src->size != sizeof(*src_v4)) {
1879 dev_err(tplg->dev, "ASoC: invalid PCM size\n");
1880 return -EINVAL;
1881 }
1882
1883 dev_warn(tplg->dev, "ASoC: old version of PCM\n");
1884 src_v4 = (struct snd_soc_tplg_pcm_v4 *)src;
1885 dest = kzalloc(sizeof(*dest), GFP_KERNEL);
1886 if (!dest)
1887 return -ENOMEM;
1888
1889 dest->size = sizeof(*dest); /* size of latest abi version */
1890 memcpy(dest->pcm_name, src_v4->pcm_name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN);
1891 memcpy(dest->dai_name, src_v4->dai_name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN);
1892 dest->pcm_id = src_v4->pcm_id;
1893 dest->dai_id = src_v4->dai_id;
1894 dest->playback = src_v4->playback;
1895 dest->capture = src_v4->capture;
1896 dest->compress = src_v4->compress;
1897 dest->num_streams = src_v4->num_streams;
1898 for (i = 0; i < dest->num_streams; i++)
1899 memcpy(&dest->stream[i], &src_v4->stream[i],
1900 sizeof(struct snd_soc_tplg_stream));
1901
1902 for (i = 0; i < 2; i++)
1903 stream_caps_new_ver(&dest->caps[i], &src_v4->caps[i]);
1904
1905 *pcm = dest;
1906 return 0;
1907}
1908
Mengdong Lin64527e82016-01-15 16:13:28 +08001909static int soc_tplg_pcm_elems_load(struct soc_tplg *tplg,
Liam Girdwood8a978232015-05-29 19:06:14 +01001910 struct snd_soc_tplg_hdr *hdr)
1911{
Mengdong Lin55726dc2016-11-03 01:00:16 +08001912 struct snd_soc_tplg_pcm *pcm, *_pcm;
Liam Girdwood8a978232015-05-29 19:06:14 +01001913 int count = hdr->count;
Vinod Koulfd340452016-12-08 23:01:27 +05301914 int i;
Mengdong Lin55726dc2016-11-03 01:00:16 +08001915 bool abi_match;
Liam Girdwood8a978232015-05-29 19:06:14 +01001916
1917 if (tplg->pass != SOC_TPLG_PASS_PCM_DAI)
1918 return 0;
1919
Mengdong Lin55726dc2016-11-03 01:00:16 +08001920 /* check the element size and count */
1921 pcm = (struct snd_soc_tplg_pcm *)tplg->pos;
1922 if (pcm->size > sizeof(struct snd_soc_tplg_pcm)
1923 || pcm->size < sizeof(struct snd_soc_tplg_pcm_v4)) {
1924 dev_err(tplg->dev, "ASoC: invalid size %d for PCM elems\n",
1925 pcm->size);
1926 return -EINVAL;
1927 }
1928
Liam Girdwood8a978232015-05-29 19:06:14 +01001929 if (soc_tplg_check_elem_count(tplg,
Mengdong Lin55726dc2016-11-03 01:00:16 +08001930 pcm->size, count,
Liam Girdwood8a978232015-05-29 19:06:14 +01001931 hdr->payload_size, "PCM DAI")) {
1932 dev_err(tplg->dev, "ASoC: invalid count %d for PCM DAI elems\n",
1933 count);
1934 return -EINVAL;
1935 }
1936
Mengdong Lin64527e82016-01-15 16:13:28 +08001937 for (i = 0; i < count; i++) {
Mengdong Lin55726dc2016-11-03 01:00:16 +08001938 pcm = (struct snd_soc_tplg_pcm *)tplg->pos;
1939
1940 /* check ABI version by size, create a new version of pcm
1941 * if abi not match.
1942 */
1943 if (pcm->size == sizeof(*pcm)) {
1944 abi_match = true;
1945 _pcm = pcm;
1946 } else {
1947 abi_match = false;
Vinod Koulfd340452016-12-08 23:01:27 +05301948 pcm_new_ver(tplg, pcm, &_pcm);
Mengdong Lin06eb49f2016-04-27 14:52:56 +08001949 }
1950
Mengdong Lin55726dc2016-11-03 01:00:16 +08001951 /* create the FE DAIs and DAI links */
1952 soc_tplg_pcm_create(tplg, _pcm);
1953
Mengdong Lin717a8e72016-11-03 01:03:34 +08001954 /* offset by version-specific struct size and
1955 * real priv data size
1956 */
1957 tplg->pos += pcm->size + _pcm->priv.size;
1958
Mengdong Lin55726dc2016-11-03 01:00:16 +08001959 if (!abi_match)
1960 kfree(_pcm); /* free the duplicated one */
Mengdong Lin64527e82016-01-15 16:13:28 +08001961 }
1962
Liam Girdwood8a978232015-05-29 19:06:14 +01001963 dev_dbg(tplg->dev, "ASoC: adding %d PCM DAIs\n", count);
Liam Girdwood8a978232015-05-29 19:06:14 +01001964
Liam Girdwood8a978232015-05-29 19:06:14 +01001965 return 0;
Liam Girdwood8a978232015-05-29 19:06:14 +01001966}
1967
Mengdong Lin593d9e52016-11-03 01:04:27 +08001968/**
1969 * set_link_hw_format - Set the HW audio format of the physical DAI link.
Charles Keepax8abab352017-01-12 11:38:15 +00001970 * @link: &snd_soc_dai_link which should be updated
Mengdong Lin593d9e52016-11-03 01:04:27 +08001971 * @cfg: physical link configs.
1972 *
1973 * Topology context contains a list of supported HW formats (configs) and
1974 * a default format ID for the physical link. This function will use this
1975 * default ID to choose the HW format to set the link's DAI format for init.
1976 */
1977static void set_link_hw_format(struct snd_soc_dai_link *link,
1978 struct snd_soc_tplg_link_config *cfg)
1979{
1980 struct snd_soc_tplg_hw_config *hw_config;
1981 unsigned char bclk_master, fsync_master;
1982 unsigned char invert_bclk, invert_fsync;
1983 int i;
1984
1985 for (i = 0; i < cfg->num_hw_configs; i++) {
1986 hw_config = &cfg->hw_config[i];
1987 if (hw_config->id != cfg->default_hw_config_id)
1988 continue;
1989
1990 link->dai_fmt = hw_config->fmt & SND_SOC_DAIFMT_FORMAT_MASK;
1991
1992 /* clock signal polarity */
1993 invert_bclk = hw_config->invert_bclk;
1994 invert_fsync = hw_config->invert_fsync;
1995 if (!invert_bclk && !invert_fsync)
1996 link->dai_fmt |= SND_SOC_DAIFMT_NB_NF;
1997 else if (!invert_bclk && invert_fsync)
1998 link->dai_fmt |= SND_SOC_DAIFMT_NB_IF;
1999 else if (invert_bclk && !invert_fsync)
2000 link->dai_fmt |= SND_SOC_DAIFMT_IB_NF;
2001 else
2002 link->dai_fmt |= SND_SOC_DAIFMT_IB_IF;
2003
2004 /* clock masters */
2005 bclk_master = hw_config->bclk_master;
2006 fsync_master = hw_config->fsync_master;
2007 if (!bclk_master && !fsync_master)
2008 link->dai_fmt |= SND_SOC_DAIFMT_CBM_CFM;
2009 else if (bclk_master && !fsync_master)
2010 link->dai_fmt |= SND_SOC_DAIFMT_CBS_CFM;
2011 else if (!bclk_master && fsync_master)
2012 link->dai_fmt |= SND_SOC_DAIFMT_CBM_CFS;
2013 else
2014 link->dai_fmt |= SND_SOC_DAIFMT_CBS_CFS;
2015 }
2016}
2017
2018/**
2019 * link_new_ver - Create a new physical link config from the old
2020 * version of source.
Charles Keepax8abab352017-01-12 11:38:15 +00002021 * @tplg: topology context
Mengdong Lin593d9e52016-11-03 01:04:27 +08002022 * @src: old version of phyical link config as a source
2023 * @link: latest version of physical link config created from the source
2024 *
2025 * Support from vesion 4. User need free the returned link config manually.
2026 */
2027static int link_new_ver(struct soc_tplg *tplg,
2028 struct snd_soc_tplg_link_config *src,
2029 struct snd_soc_tplg_link_config **link)
2030{
2031 struct snd_soc_tplg_link_config *dest;
2032 struct snd_soc_tplg_link_config_v4 *src_v4;
2033 int i;
2034
2035 *link = NULL;
2036
2037 if (src->size != sizeof(struct snd_soc_tplg_link_config_v4)) {
2038 dev_err(tplg->dev, "ASoC: invalid physical link config size\n");
2039 return -EINVAL;
2040 }
2041
2042 dev_warn(tplg->dev, "ASoC: old version of physical link config\n");
2043
2044 src_v4 = (struct snd_soc_tplg_link_config_v4 *)src;
2045 dest = kzalloc(sizeof(*dest), GFP_KERNEL);
2046 if (!dest)
2047 return -ENOMEM;
2048
2049 dest->size = sizeof(*dest);
2050 dest->id = src_v4->id;
2051 dest->num_streams = src_v4->num_streams;
2052 for (i = 0; i < dest->num_streams; i++)
2053 memcpy(&dest->stream[i], &src_v4->stream[i],
2054 sizeof(struct snd_soc_tplg_stream));
2055
2056 *link = dest;
2057 return 0;
2058}
2059
2060/* Find and configure an existing physical DAI link */
2061static int soc_tplg_link_config(struct soc_tplg *tplg,
2062 struct snd_soc_tplg_link_config *cfg)
2063{
2064 struct snd_soc_dai_link *link;
2065 const char *name, *stream_name;
Mengdong Lindbab1cb2016-11-05 08:42:14 +08002066 size_t len;
Mengdong Lin593d9e52016-11-03 01:04:27 +08002067 int ret;
2068
Mengdong Lindbab1cb2016-11-05 08:42:14 +08002069 len = strnlen(cfg->name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN);
2070 if (len == SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
2071 return -EINVAL;
2072 else if (len)
2073 name = cfg->name;
2074 else
2075 name = NULL;
2076
2077 len = strnlen(cfg->stream_name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN);
2078 if (len == SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
2079 return -EINVAL;
2080 else if (len)
2081 stream_name = cfg->stream_name;
2082 else
2083 stream_name = NULL;
Mengdong Lin593d9e52016-11-03 01:04:27 +08002084
2085 link = snd_soc_find_dai_link(tplg->comp->card, cfg->id,
2086 name, stream_name);
2087 if (!link) {
2088 dev_err(tplg->dev, "ASoC: physical link %s (id %d) not exist\n",
2089 name, cfg->id);
2090 return -EINVAL;
2091 }
2092
2093 /* hw format */
2094 if (cfg->num_hw_configs)
2095 set_link_hw_format(link, cfg);
2096
2097 /* flags */
2098 if (cfg->flag_mask)
2099 set_link_flags(link, cfg->flag_mask, cfg->flags);
2100
2101 /* pass control to component driver for optional further init */
2102 ret = soc_tplg_dai_link_load(tplg, link);
2103 if (ret < 0) {
2104 dev_err(tplg->dev, "ASoC: physical link loading failed\n");
2105 return ret;
2106 }
2107
2108 return 0;
2109}
2110
2111
2112/* Load physical link config elements from the topology context */
2113static int soc_tplg_link_elems_load(struct soc_tplg *tplg,
2114 struct snd_soc_tplg_hdr *hdr)
2115{
2116 struct snd_soc_tplg_link_config *link, *_link;
2117 int count = hdr->count;
2118 int i, ret;
2119 bool abi_match;
2120
2121 if (tplg->pass != SOC_TPLG_PASS_LINK) {
2122 tplg->pos += hdr->size + hdr->payload_size;
2123 return 0;
2124 };
2125
2126 /* check the element size and count */
2127 link = (struct snd_soc_tplg_link_config *)tplg->pos;
2128 if (link->size > sizeof(struct snd_soc_tplg_link_config)
2129 || link->size < sizeof(struct snd_soc_tplg_link_config_v4)) {
2130 dev_err(tplg->dev, "ASoC: invalid size %d for physical link elems\n",
2131 link->size);
2132 return -EINVAL;
2133 }
2134
2135 if (soc_tplg_check_elem_count(tplg,
2136 link->size, count,
2137 hdr->payload_size, "physical link config")) {
2138 dev_err(tplg->dev, "ASoC: invalid count %d for physical link elems\n",
2139 count);
2140 return -EINVAL;
2141 }
2142
2143 /* config physical DAI links */
2144 for (i = 0; i < count; i++) {
2145 link = (struct snd_soc_tplg_link_config *)tplg->pos;
2146 if (link->size == sizeof(*link)) {
2147 abi_match = true;
2148 _link = link;
2149 } else {
2150 abi_match = false;
2151 ret = link_new_ver(tplg, link, &_link);
2152 if (ret < 0)
2153 return ret;
2154 }
2155
2156 ret = soc_tplg_link_config(tplg, _link);
2157 if (ret < 0)
2158 return ret;
2159
2160 /* offset by version-specific struct size and
2161 * real priv data size
2162 */
2163 tplg->pos += link->size + _link->priv.size;
2164
2165 if (!abi_match)
2166 kfree(_link); /* free the duplicated one */
2167 }
2168
2169 return 0;
2170}
2171
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002172/**
2173 * soc_tplg_dai_config - Find and configure an existing physical DAI.
Mengdong Lin0038be92016-07-26 14:32:37 +08002174 * @tplg: topology context
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002175 * @d: physical DAI configs.
Mengdong Lin0038be92016-07-26 14:32:37 +08002176 *
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002177 * The physical dai should already be registered by the platform driver.
2178 * The platform driver should specify the DAI name and ID for matching.
Mengdong Lin0038be92016-07-26 14:32:37 +08002179 */
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002180static int soc_tplg_dai_config(struct soc_tplg *tplg,
2181 struct snd_soc_tplg_dai *d)
Mengdong Lin0038be92016-07-26 14:32:37 +08002182{
2183 struct snd_soc_dai_link_component dai_component = {0};
2184 struct snd_soc_dai *dai;
2185 struct snd_soc_dai_driver *dai_drv;
2186 struct snd_soc_pcm_stream *stream;
2187 struct snd_soc_tplg_stream_caps *caps;
2188 int ret;
2189
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002190 dai_component.dai_name = d->dai_name;
Mengdong Lin0038be92016-07-26 14:32:37 +08002191 dai = snd_soc_find_dai(&dai_component);
2192 if (!dai) {
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002193 dev_err(tplg->dev, "ASoC: physical DAI %s not registered\n",
2194 d->dai_name);
Mengdong Lin0038be92016-07-26 14:32:37 +08002195 return -EINVAL;
2196 }
2197
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002198 if (d->dai_id != dai->id) {
2199 dev_err(tplg->dev, "ASoC: physical DAI %s id mismatch\n",
2200 d->dai_name);
Mengdong Lin0038be92016-07-26 14:32:37 +08002201 return -EINVAL;
2202 }
2203
2204 dai_drv = dai->driver;
2205 if (!dai_drv)
2206 return -EINVAL;
2207
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002208 if (d->playback) {
Mengdong Lin0038be92016-07-26 14:32:37 +08002209 stream = &dai_drv->playback;
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002210 caps = &d->caps[SND_SOC_TPLG_STREAM_PLAYBACK];
Mengdong Lin0038be92016-07-26 14:32:37 +08002211 set_stream_info(stream, caps);
2212 }
2213
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002214 if (d->capture) {
Mengdong Lin0038be92016-07-26 14:32:37 +08002215 stream = &dai_drv->capture;
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002216 caps = &d->caps[SND_SOC_TPLG_STREAM_CAPTURE];
Mengdong Lin0038be92016-07-26 14:32:37 +08002217 set_stream_info(stream, caps);
2218 }
2219
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002220 if (d->flag_mask)
2221 set_dai_flags(dai_drv, d->flag_mask, d->flags);
Mengdong Lin0038be92016-07-26 14:32:37 +08002222
2223 /* pass control to component driver for optional further init */
2224 ret = soc_tplg_dai_load(tplg, dai_drv);
2225 if (ret < 0) {
2226 dev_err(tplg->comp->dev, "ASoC: DAI loading failed\n");
2227 return ret;
2228 }
2229
2230 return 0;
2231}
2232
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002233/* load physical DAI elements */
2234static int soc_tplg_dai_elems_load(struct soc_tplg *tplg,
2235 struct snd_soc_tplg_hdr *hdr)
Mengdong Lin0038be92016-07-26 14:32:37 +08002236{
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002237 struct snd_soc_tplg_dai *dai;
Mengdong Lin0038be92016-07-26 14:32:37 +08002238 int count = hdr->count;
2239 int i;
2240
2241 if (tplg->pass != SOC_TPLG_PASS_BE_DAI)
2242 return 0;
2243
2244 /* config the existing BE DAIs */
2245 for (i = 0; i < count; i++) {
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002246 dai = (struct snd_soc_tplg_dai *)tplg->pos;
2247 if (dai->size != sizeof(*dai)) {
2248 dev_err(tplg->dev, "ASoC: invalid physical DAI size\n");
Mengdong Lin0038be92016-07-26 14:32:37 +08002249 return -EINVAL;
2250 }
2251
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002252 soc_tplg_dai_config(tplg, dai);
2253 tplg->pos += (sizeof(*dai) + dai->priv.size);
Mengdong Lin0038be92016-07-26 14:32:37 +08002254 }
2255
2256 dev_dbg(tplg->dev, "ASoC: Configure %d BE DAIs\n", count);
2257 return 0;
2258}
2259
Mengdong Lin583958f2016-10-11 14:36:42 +08002260/**
2261 * manifest_new_ver - Create a new version of manifest from the old version
2262 * of source.
Charles Keepax8abab352017-01-12 11:38:15 +00002263 * @tplg: topology context
Mengdong Lin583958f2016-10-11 14:36:42 +08002264 * @src: old version of manifest as a source
2265 * @manifest: latest version of manifest created from the source
2266 *
2267 * Support from vesion 4. Users need free the returned manifest manually.
2268 */
2269static int manifest_new_ver(struct soc_tplg *tplg,
2270 struct snd_soc_tplg_manifest *src,
2271 struct snd_soc_tplg_manifest **manifest)
2272{
2273 struct snd_soc_tplg_manifest *dest;
2274 struct snd_soc_tplg_manifest_v4 *src_v4;
2275
2276 *manifest = NULL;
2277
2278 if (src->size != sizeof(*src_v4)) {
2279 dev_err(tplg->dev, "ASoC: invalid manifest size\n");
2280 return -EINVAL;
2281 }
2282
2283 dev_warn(tplg->dev, "ASoC: old version of manifest\n");
2284
2285 src_v4 = (struct snd_soc_tplg_manifest_v4 *)src;
2286 dest = kzalloc(sizeof(*dest) + src_v4->priv.size, GFP_KERNEL);
2287 if (!dest)
2288 return -ENOMEM;
2289
2290 dest->size = sizeof(*dest); /* size of latest abi version */
2291 dest->control_elems = src_v4->control_elems;
2292 dest->widget_elems = src_v4->widget_elems;
2293 dest->graph_elems = src_v4->graph_elems;
2294 dest->pcm_elems = src_v4->pcm_elems;
2295 dest->dai_link_elems = src_v4->dai_link_elems;
2296 dest->priv.size = src_v4->priv.size;
2297 if (dest->priv.size)
2298 memcpy(dest->priv.data, src_v4->priv.data,
2299 src_v4->priv.size);
2300
2301 *manifest = dest;
2302 return 0;
2303}
Mengdong Lin0038be92016-07-26 14:32:37 +08002304
Liam Girdwood8a978232015-05-29 19:06:14 +01002305static int soc_tplg_manifest_load(struct soc_tplg *tplg,
Mengdong Lin0038be92016-07-26 14:32:37 +08002306 struct snd_soc_tplg_hdr *hdr)
Liam Girdwood8a978232015-05-29 19:06:14 +01002307{
Mengdong Lin583958f2016-10-11 14:36:42 +08002308 struct snd_soc_tplg_manifest *manifest, *_manifest;
2309 bool abi_match;
2310 int err;
Liam Girdwood8a978232015-05-29 19:06:14 +01002311
2312 if (tplg->pass != SOC_TPLG_PASS_MANIFEST)
2313 return 0;
2314
2315 manifest = (struct snd_soc_tplg_manifest *)tplg->pos;
Mengdong Lin583958f2016-10-11 14:36:42 +08002316
2317 /* check ABI version by size, create a new manifest if abi not match */
2318 if (manifest->size == sizeof(*manifest)) {
2319 abi_match = true;
2320 _manifest = manifest;
2321 } else {
2322 abi_match = false;
2323 err = manifest_new_ver(tplg, manifest, &_manifest);
2324 if (err < 0)
2325 return err;
Mengdong Lin06eb49f2016-04-27 14:52:56 +08002326 }
2327
Mengdong Lin583958f2016-10-11 14:36:42 +08002328 /* pass control to component driver for optional further init */
Liam Girdwood8a978232015-05-29 19:06:14 +01002329 if (tplg->comp && tplg->ops && tplg->ops->manifest)
Mengdong Lin583958f2016-10-11 14:36:42 +08002330 return tplg->ops->manifest(tplg->comp, _manifest);
Liam Girdwood8a978232015-05-29 19:06:14 +01002331
Mengdong Lin583958f2016-10-11 14:36:42 +08002332 if (!abi_match) /* free the duplicated one */
2333 kfree(_manifest);
2334
Liam Girdwood8a978232015-05-29 19:06:14 +01002335 return 0;
2336}
2337
2338/* validate header magic, size and type */
2339static int soc_valid_header(struct soc_tplg *tplg,
2340 struct snd_soc_tplg_hdr *hdr)
2341{
2342 if (soc_tplg_get_hdr_offset(tplg) >= tplg->fw->size)
2343 return 0;
2344
Mengdong Lin06eb49f2016-04-27 14:52:56 +08002345 if (hdr->size != sizeof(*hdr)) {
2346 dev_err(tplg->dev,
2347 "ASoC: invalid header size for type %d at offset 0x%lx size 0x%zx.\n",
2348 hdr->type, soc_tplg_get_hdr_offset(tplg),
2349 tplg->fw->size);
2350 return -EINVAL;
2351 }
2352
Liam Girdwood8a978232015-05-29 19:06:14 +01002353 /* big endian firmware objects not supported atm */
2354 if (hdr->magic == cpu_to_be32(SND_SOC_TPLG_MAGIC)) {
2355 dev_err(tplg->dev,
2356 "ASoC: pass %d big endian not supported header got %x at offset 0x%lx size 0x%zx.\n",
2357 tplg->pass, hdr->magic,
2358 soc_tplg_get_hdr_offset(tplg), tplg->fw->size);
2359 return -EINVAL;
2360 }
2361
2362 if (hdr->magic != SND_SOC_TPLG_MAGIC) {
2363 dev_err(tplg->dev,
2364 "ASoC: pass %d does not have a valid header got %x at offset 0x%lx size 0x%zx.\n",
2365 tplg->pass, hdr->magic,
2366 soc_tplg_get_hdr_offset(tplg), tplg->fw->size);
2367 return -EINVAL;
2368 }
2369
Mengdong Lin288b8da2016-11-03 01:03:17 +08002370 /* Support ABI from version 4 */
2371 if (hdr->abi > SND_SOC_TPLG_ABI_VERSION
2372 || hdr->abi < SND_SOC_TPLG_ABI_VERSION_MIN) {
Liam Girdwood8a978232015-05-29 19:06:14 +01002373 dev_err(tplg->dev,
2374 "ASoC: pass %d invalid ABI version got 0x%x need 0x%x at offset 0x%lx size 0x%zx.\n",
2375 tplg->pass, hdr->abi,
2376 SND_SOC_TPLG_ABI_VERSION, soc_tplg_get_hdr_offset(tplg),
2377 tplg->fw->size);
2378 return -EINVAL;
2379 }
2380
2381 if (hdr->payload_size == 0) {
2382 dev_err(tplg->dev, "ASoC: header has 0 size at offset 0x%lx.\n",
2383 soc_tplg_get_hdr_offset(tplg));
2384 return -EINVAL;
2385 }
2386
2387 if (tplg->pass == hdr->type)
2388 dev_dbg(tplg->dev,
2389 "ASoC: Got 0x%x bytes of type %d version %d vendor %d at pass %d\n",
2390 hdr->payload_size, hdr->type, hdr->version,
2391 hdr->vendor_type, tplg->pass);
2392
2393 return 1;
2394}
2395
2396/* check header type and call appropriate handler */
2397static int soc_tplg_load_header(struct soc_tplg *tplg,
2398 struct snd_soc_tplg_hdr *hdr)
2399{
2400 tplg->pos = tplg->hdr_pos + sizeof(struct snd_soc_tplg_hdr);
2401
2402 /* check for matching ID */
2403 if (hdr->index != tplg->req_index &&
Liam Girdwoodbb971422017-06-29 14:22:25 +01002404 tplg->req_index != SND_SOC_TPLG_INDEX_ALL)
Liam Girdwood8a978232015-05-29 19:06:14 +01002405 return 0;
2406
2407 tplg->index = hdr->index;
2408
2409 switch (hdr->type) {
2410 case SND_SOC_TPLG_TYPE_MIXER:
2411 case SND_SOC_TPLG_TYPE_ENUM:
2412 case SND_SOC_TPLG_TYPE_BYTES:
2413 return soc_tplg_kcontrol_elems_load(tplg, hdr);
2414 case SND_SOC_TPLG_TYPE_DAPM_GRAPH:
2415 return soc_tplg_dapm_graph_elems_load(tplg, hdr);
2416 case SND_SOC_TPLG_TYPE_DAPM_WIDGET:
2417 return soc_tplg_dapm_widget_elems_load(tplg, hdr);
2418 case SND_SOC_TPLG_TYPE_PCM:
Mengdong Lin64527e82016-01-15 16:13:28 +08002419 return soc_tplg_pcm_elems_load(tplg, hdr);
Mengdong Lin3fbf7932016-11-03 01:05:01 +08002420 case SND_SOC_TPLG_TYPE_DAI:
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002421 return soc_tplg_dai_elems_load(tplg, hdr);
Mengdong Lin593d9e52016-11-03 01:04:27 +08002422 case SND_SOC_TPLG_TYPE_DAI_LINK:
2423 case SND_SOC_TPLG_TYPE_BACKEND_LINK:
2424 /* physical link configurations */
2425 return soc_tplg_link_elems_load(tplg, hdr);
Liam Girdwood8a978232015-05-29 19:06:14 +01002426 case SND_SOC_TPLG_TYPE_MANIFEST:
2427 return soc_tplg_manifest_load(tplg, hdr);
2428 default:
2429 /* bespoke vendor data object */
2430 return soc_tplg_vendor_load(tplg, hdr);
2431 }
2432
2433 return 0;
2434}
2435
2436/* process the topology file headers */
2437static int soc_tplg_process_headers(struct soc_tplg *tplg)
2438{
2439 struct snd_soc_tplg_hdr *hdr;
2440 int ret;
2441
2442 tplg->pass = SOC_TPLG_PASS_START;
2443
2444 /* process the header types from start to end */
2445 while (tplg->pass <= SOC_TPLG_PASS_END) {
2446
2447 tplg->hdr_pos = tplg->fw->data;
2448 hdr = (struct snd_soc_tplg_hdr *)tplg->hdr_pos;
2449
2450 while (!soc_tplg_is_eof(tplg)) {
2451
2452 /* make sure header is valid before loading */
2453 ret = soc_valid_header(tplg, hdr);
2454 if (ret < 0)
2455 return ret;
2456 else if (ret == 0)
2457 break;
2458
2459 /* load the header object */
2460 ret = soc_tplg_load_header(tplg, hdr);
2461 if (ret < 0)
2462 return ret;
2463
2464 /* goto next header */
2465 tplg->hdr_pos += hdr->payload_size +
2466 sizeof(struct snd_soc_tplg_hdr);
2467 hdr = (struct snd_soc_tplg_hdr *)tplg->hdr_pos;
2468 }
2469
2470 /* next data type pass */
2471 tplg->pass++;
2472 }
2473
2474 /* signal DAPM we are complete */
2475 ret = soc_tplg_dapm_complete(tplg);
2476 if (ret < 0)
2477 dev_err(tplg->dev,
2478 "ASoC: failed to initialise DAPM from Firmware\n");
2479
2480 return ret;
2481}
2482
2483static int soc_tplg_load(struct soc_tplg *tplg)
2484{
2485 int ret;
2486
2487 ret = soc_tplg_process_headers(tplg);
2488 if (ret == 0)
2489 soc_tplg_complete(tplg);
2490
2491 return ret;
2492}
2493
2494/* load audio component topology from "firmware" file */
2495int snd_soc_tplg_component_load(struct snd_soc_component *comp,
2496 struct snd_soc_tplg_ops *ops, const struct firmware *fw, u32 id)
2497{
2498 struct soc_tplg tplg;
2499
2500 /* setup parsing context */
2501 memset(&tplg, 0, sizeof(tplg));
2502 tplg.fw = fw;
2503 tplg.dev = comp->dev;
2504 tplg.comp = comp;
2505 tplg.ops = ops;
2506 tplg.req_index = id;
2507 tplg.io_ops = ops->io_ops;
2508 tplg.io_ops_count = ops->io_ops_count;
Mengdong Lin1a3232d2015-08-18 18:12:20 +08002509 tplg.bytes_ext_ops = ops->bytes_ext_ops;
2510 tplg.bytes_ext_ops_count = ops->bytes_ext_ops_count;
Liam Girdwood8a978232015-05-29 19:06:14 +01002511
2512 return soc_tplg_load(&tplg);
2513}
2514EXPORT_SYMBOL_GPL(snd_soc_tplg_component_load);
2515
2516/* remove this dynamic widget */
2517void snd_soc_tplg_widget_remove(struct snd_soc_dapm_widget *w)
2518{
2519 /* make sure we are a widget */
2520 if (w->dobj.type != SND_SOC_DOBJ_WIDGET)
2521 return;
2522
2523 remove_widget(w->dapm->component, &w->dobj, SOC_TPLG_PASS_WIDGET);
2524}
2525EXPORT_SYMBOL_GPL(snd_soc_tplg_widget_remove);
2526
2527/* remove all dynamic widgets from this DAPM context */
2528void snd_soc_tplg_widget_remove_all(struct snd_soc_dapm_context *dapm,
2529 u32 index)
2530{
2531 struct snd_soc_dapm_widget *w, *next_w;
Liam Girdwood8a978232015-05-29 19:06:14 +01002532
2533 list_for_each_entry_safe(w, next_w, &dapm->card->widgets, list) {
2534
2535 /* make sure we are a widget with correct context */
2536 if (w->dobj.type != SND_SOC_DOBJ_WIDGET || w->dapm != dapm)
2537 continue;
2538
2539 /* match ID */
2540 if (w->dobj.index != index &&
2541 w->dobj.index != SND_SOC_TPLG_INDEX_ALL)
2542 continue;
Liam Girdwood8a978232015-05-29 19:06:14 +01002543 /* check and free and dynamic widget kcontrols */
2544 snd_soc_tplg_widget_remove(w);
Lars-Peter Clausenb97e2692015-07-21 18:11:07 +02002545 snd_soc_dapm_free_widget(w);
Liam Girdwood8a978232015-05-29 19:06:14 +01002546 }
Jyri Sarhafd589a12015-11-10 18:12:42 +02002547 snd_soc_dapm_reset_cache(dapm);
Liam Girdwood8a978232015-05-29 19:06:14 +01002548}
2549EXPORT_SYMBOL_GPL(snd_soc_tplg_widget_remove_all);
2550
2551/* remove dynamic controls from the component driver */
2552int snd_soc_tplg_component_remove(struct snd_soc_component *comp, u32 index)
2553{
2554 struct snd_soc_dobj *dobj, *next_dobj;
2555 int pass = SOC_TPLG_PASS_END;
2556
2557 /* process the header types from end to start */
2558 while (pass >= SOC_TPLG_PASS_START) {
2559
2560 /* remove mixer controls */
2561 list_for_each_entry_safe(dobj, next_dobj, &comp->dobj_list,
2562 list) {
2563
2564 /* match index */
2565 if (dobj->index != index &&
2566 dobj->index != SND_SOC_TPLG_INDEX_ALL)
2567 continue;
2568
2569 switch (dobj->type) {
2570 case SND_SOC_DOBJ_MIXER:
2571 remove_mixer(comp, dobj, pass);
2572 break;
2573 case SND_SOC_DOBJ_ENUM:
2574 remove_enum(comp, dobj, pass);
2575 break;
2576 case SND_SOC_DOBJ_BYTES:
2577 remove_bytes(comp, dobj, pass);
2578 break;
2579 case SND_SOC_DOBJ_WIDGET:
2580 remove_widget(comp, dobj, pass);
2581 break;
2582 case SND_SOC_DOBJ_PCM:
Mengdong Lin64527e82016-01-15 16:13:28 +08002583 remove_dai(comp, dobj, pass);
Liam Girdwood8a978232015-05-29 19:06:14 +01002584 break;
Mengdong Linacfc7d42016-01-15 16:13:37 +08002585 case SND_SOC_DOBJ_DAI_LINK:
2586 remove_link(comp, dobj, pass);
2587 break;
Liam Girdwood8a978232015-05-29 19:06:14 +01002588 default:
2589 dev_err(comp->dev, "ASoC: invalid component type %d for removal\n",
2590 dobj->type);
2591 break;
2592 }
2593 }
2594 pass--;
2595 }
2596
2597 /* let caller know if FW can be freed when no objects are left */
2598 return !list_empty(&comp->dobj_list);
2599}
2600EXPORT_SYMBOL_GPL(snd_soc_tplg_component_remove);