GNU Linux-libre 4.14.328-gnu1
[releases.git] / sound / soc / soc-topology.c
1 /*
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>
36 #include <sound/tlv.h>
37
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
48 #define SOC_TPLG_PASS_PCM_DAI           4
49 #define SOC_TPLG_PASS_GRAPH             5
50 #define SOC_TPLG_PASS_PINS              6
51 #define SOC_TPLG_PASS_BE_DAI            7
52 #define SOC_TPLG_PASS_LINK              8
53
54 #define SOC_TPLG_PASS_START     SOC_TPLG_PASS_MANIFEST
55 #define SOC_TPLG_PASS_END       SOC_TPLG_PASS_LINK
56
57 /*
58  * Old version of ABI structs, supported for backward compatibility.
59  */
60
61 /* Manifest v4 */
62 struct 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
72 /* Stream Capabilities v4 */
73 struct 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 */
91 struct 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
105 /* Physical link config v4 */
106 struct 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
113 /* topology context */
114 struct 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
128         /* vendor specific kcontrol operations */
129         const struct snd_soc_tplg_kcontrol_ops *io_ops;
130         int io_ops_count;
131
132         /* 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
136         /* optional fw loading callbacks to component drivers */
137         struct snd_soc_tplg_ops *ops;
138 };
139
140 static int soc_tplg_process_headers(struct soc_tplg *tplg);
141 static void soc_tplg_complete(struct soc_tplg *tplg);
142 struct snd_soc_dapm_widget *
143 snd_soc_dapm_new_control_unlocked(struct snd_soc_dapm_context *dapm,
144                          const struct snd_soc_dapm_widget *widget);
145 struct snd_soc_dapm_widget *
146 snd_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 */
150 static 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
173 static 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
182 static 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
187 static 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. */
193 static 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,
211                 snd_soc_dapm_put_volsw, snd_soc_info_volsw},
212         {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
222 struct soc_tplg_map {
223         int uid;
224         int kid;
225 };
226
227 /* mapping of widget types from UAPI IDs to kernel IDs */
228 static const struct soc_tplg_map dapm_map[] = {
229         {SND_SOC_TPLG_DAPM_INPUT, snd_soc_dapm_input},
230         {SND_SOC_TPLG_DAPM_OUTPUT, snd_soc_dapm_output},
231         {SND_SOC_TPLG_DAPM_MUX, snd_soc_dapm_mux},
232         {SND_SOC_TPLG_DAPM_MIXER, snd_soc_dapm_mixer},
233         {SND_SOC_TPLG_DAPM_PGA, snd_soc_dapm_pga},
234         {SND_SOC_TPLG_DAPM_OUT_DRV, snd_soc_dapm_out_drv},
235         {SND_SOC_TPLG_DAPM_ADC, snd_soc_dapm_adc},
236         {SND_SOC_TPLG_DAPM_DAC, snd_soc_dapm_dac},
237         {SND_SOC_TPLG_DAPM_SWITCH, snd_soc_dapm_switch},
238         {SND_SOC_TPLG_DAPM_PRE, snd_soc_dapm_pre},
239         {SND_SOC_TPLG_DAPM_POST, snd_soc_dapm_post},
240         {SND_SOC_TPLG_DAPM_AIF_IN, snd_soc_dapm_aif_in},
241         {SND_SOC_TPLG_DAPM_AIF_OUT, snd_soc_dapm_aif_out},
242         {SND_SOC_TPLG_DAPM_DAI_IN, snd_soc_dapm_dai_in},
243         {SND_SOC_TPLG_DAPM_DAI_OUT, snd_soc_dapm_dai_out},
244         {SND_SOC_TPLG_DAPM_DAI_LINK, snd_soc_dapm_dai_link},
245         {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},
253 };
254
255 static 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
268 static 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
281 static 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
293 static 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
302 static 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 */
312 static 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 */
335 static 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 */
346 static 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
355 /* optionally pass new dynamic widget to component driver. This is mainly for
356  * external widgets where we can assign private data/ops */
357 static 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
366 /* pass DAI configurations to component driver for extra initialization */
367 static int soc_tplg_dai_load(struct soc_tplg *tplg,
368         struct snd_soc_dai_driver *dai_drv)
369 {
370         if (tplg->comp && tplg->ops && tplg->ops->dai_load)
371                 return tplg->ops->dai_load(tplg->comp, dai_drv);
372
373         return 0;
374 }
375
376 /* pass link configurations to component driver for extra initialization */
377 static 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
386 /* tell the component driver that all firmware has been loaded in this request */
387 static 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 */
394 static 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 */
418 static 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, comp->name_prefix, comp, kcontrol);
425 }
426
427 /* remove a mixer kcontrol */
428 static 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 */
451 static 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 */
474 static 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 */
493 static 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
507         /*
508          * Dynamic Widgets either have 1..N enum kcontrols or mixers.
509          * The enum may either have an array of values or strings.
510          */
511         if (dobj->widget.kcontrol_type == SND_SOC_TPLG_TYPE_ENUM) {
512                 /* enumerated widget mixer */
513                 for (i = 0; w->kcontrols != NULL && i < w->num_kcontrols; i++) {
514                         struct snd_kcontrol *kcontrol = w->kcontrols[i];
515                         struct soc_enum *se =
516                                 (struct soc_enum *)kcontrol->private_value;
517                         int j;
518
519                         snd_ctl_remove(card, kcontrol);
520
521                         kfree(se->dobj.control.dvalues);
522                         for (j = 0; j < se->items; j++)
523                                 kfree(se->dobj.control.dtexts[j]);
524
525                         kfree(se);
526                         kfree(w->kcontrol_news[i].name);
527                 }
528                 kfree(w->kcontrol_news);
529         } else {
530                 /* volume mixer or bytes controls */
531                 for (i = 0; w->kcontrols != NULL && i < w->num_kcontrols; i++) {
532                         struct snd_kcontrol *kcontrol = w->kcontrols[i];
533
534                         if (dobj->widget.kcontrol_type
535                             == SND_SOC_TPLG_TYPE_MIXER)
536                                 kfree(kcontrol->tlv.p);
537
538                         /* Private value is used as struct soc_mixer_control
539                          * for volume mixers or soc_bytes_ext for bytes
540                          * controls.
541                          */
542                         kfree((void *)kcontrol->private_value);
543                         snd_ctl_remove(card, kcontrol);
544                         kfree(w->kcontrol_news[i].name);
545                 }
546                 kfree(w->kcontrol_news);
547         }
548         /* widget w is freed by soc-dapm.c */
549 }
550
551 /* remove DAI configurations */
552 static void remove_dai(struct snd_soc_component *comp,
553         struct snd_soc_dobj *dobj, int pass)
554 {
555         struct snd_soc_dai_driver *dai_drv =
556                 container_of(dobj, struct snd_soc_dai_driver, dobj);
557
558         if (pass != SOC_TPLG_PASS_PCM_DAI)
559                 return;
560
561         if (dobj->ops && dobj->ops->dai_unload)
562                 dobj->ops->dai_unload(comp, dobj);
563
564         kfree(dai_drv->name);
565         list_del(&dobj->list);
566         kfree(dai_drv);
567 }
568
569 /* remove link configurations */
570 static void remove_link(struct snd_soc_component *comp,
571         struct snd_soc_dobj *dobj, int pass)
572 {
573         struct snd_soc_dai_link *link =
574                 container_of(dobj, struct snd_soc_dai_link, dobj);
575
576         if (pass != SOC_TPLG_PASS_PCM_DAI)
577                 return;
578
579         if (dobj->ops && dobj->ops->link_unload)
580                 dobj->ops->link_unload(comp, dobj);
581
582         kfree(link->name);
583         kfree(link->stream_name);
584         kfree(link->cpu_dai_name);
585
586         list_del(&dobj->list);
587         snd_soc_remove_dai_link(comp->card, link);
588         kfree(link);
589 }
590
591 /* bind a kcontrol to it's IO handlers */
592 static int soc_tplg_kcontrol_bind_io(struct snd_soc_tplg_ctl_hdr *hdr,
593         struct snd_kcontrol_new *k,
594         const struct soc_tplg *tplg)
595 {
596         const struct snd_soc_tplg_kcontrol_ops *ops;
597         const struct snd_soc_tplg_bytes_ext_ops *ext_ops;
598         int num_ops, i;
599
600         if (hdr->ops.info == SND_SOC_TPLG_CTL_BYTES
601                 && k->iface & SNDRV_CTL_ELEM_IFACE_MIXER
602                 && (k->access & SNDRV_CTL_ELEM_ACCESS_TLV_READ
603                     || k->access & SNDRV_CTL_ELEM_ACCESS_TLV_WRITE)
604                 && k->access & SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK) {
605                 struct soc_bytes_ext *sbe;
606                 struct snd_soc_tplg_bytes_control *be;
607
608                 sbe = (struct soc_bytes_ext *)k->private_value;
609                 be = container_of(hdr, struct snd_soc_tplg_bytes_control, hdr);
610
611                 /* TLV bytes controls need standard kcontrol info handler,
612                  * TLV callback and extended put/get handlers.
613                  */
614                 k->info = snd_soc_bytes_info_ext;
615                 k->tlv.c = snd_soc_bytes_tlv_callback;
616
617                 ext_ops = tplg->bytes_ext_ops;
618                 num_ops = tplg->bytes_ext_ops_count;
619                 for (i = 0; i < num_ops; i++) {
620                         if (!sbe->put && ext_ops[i].id == be->ext_ops.put)
621                                 sbe->put = ext_ops[i].put;
622                         if (!sbe->get && ext_ops[i].id == be->ext_ops.get)
623                                 sbe->get = ext_ops[i].get;
624                 }
625
626                 if (sbe->put && sbe->get)
627                         return 0;
628                 else
629                         return -EINVAL;
630         }
631
632         /* try and map vendor specific kcontrol handlers first */
633         ops = tplg->io_ops;
634         num_ops = tplg->io_ops_count;
635         for (i = 0; i < num_ops; i++) {
636
637                 if (k->put == NULL && ops[i].id == hdr->ops.put)
638                         k->put = ops[i].put;
639                 if (k->get == NULL && ops[i].id == hdr->ops.get)
640                         k->get = ops[i].get;
641                 if (k->info == NULL && ops[i].id == hdr->ops.info)
642                         k->info = ops[i].info;
643         }
644
645         /* vendor specific handlers found ? */
646         if (k->put && k->get && k->info)
647                 return 0;
648
649         /* none found so try standard kcontrol handlers */
650         ops = io_ops;
651         num_ops = ARRAY_SIZE(io_ops);
652         for (i = 0; i < num_ops; i++) {
653
654                 if (k->put == NULL && ops[i].id == hdr->ops.put)
655                         k->put = ops[i].put;
656                 if (k->get == NULL && ops[i].id == hdr->ops.get)
657                         k->get = ops[i].get;
658                 if (k->info == NULL && ops[i].id == hdr->ops.info)
659                         k->info = ops[i].info;
660         }
661
662         /* standard handlers found ? */
663         if (k->put && k->get && k->info)
664                 return 0;
665
666         /* nothing to bind */
667         return -EINVAL;
668 }
669
670 /* bind a widgets to it's evnt handlers */
671 int snd_soc_tplg_widget_bind_event(struct snd_soc_dapm_widget *w,
672                 const struct snd_soc_tplg_widget_events *events,
673                 int num_events, u16 event_type)
674 {
675         int i;
676
677         w->event = NULL;
678
679         for (i = 0; i < num_events; i++) {
680                 if (event_type == events[i].type) {
681
682                         /* found - so assign event */
683                         w->event = events[i].event_handler;
684                         return 0;
685                 }
686         }
687
688         /* not found */
689         return -EINVAL;
690 }
691 EXPORT_SYMBOL_GPL(snd_soc_tplg_widget_bind_event);
692
693 /* optionally pass new dynamic kcontrol to component driver. */
694 static int soc_tplg_init_kcontrol(struct soc_tplg *tplg,
695         struct snd_kcontrol_new *k, struct snd_soc_tplg_ctl_hdr *hdr)
696 {
697         if (tplg->comp && tplg->ops && tplg->ops->control_load)
698                 return tplg->ops->control_load(tplg->comp, k, hdr);
699
700         return 0;
701 }
702
703
704 static int soc_tplg_create_tlv_db_scale(struct soc_tplg *tplg,
705         struct snd_kcontrol_new *kc, struct snd_soc_tplg_tlv_dbscale *scale)
706 {
707         unsigned int item_len = 2 * sizeof(unsigned int);
708         unsigned int *p;
709
710         p = kzalloc(item_len + 2 * sizeof(unsigned int), GFP_KERNEL);
711         if (!p)
712                 return -ENOMEM;
713
714         p[0] = SNDRV_CTL_TLVT_DB_SCALE;
715         p[1] = item_len;
716         p[2] = scale->min;
717         p[3] = (scale->step & TLV_DB_SCALE_MASK)
718                         | (scale->mute ? TLV_DB_SCALE_MUTE : 0);
719
720         kc->tlv.p = (void *)p;
721         return 0;
722 }
723
724 static int soc_tplg_create_tlv(struct soc_tplg *tplg,
725         struct snd_kcontrol_new *kc, struct snd_soc_tplg_ctl_hdr *tc)
726 {
727         struct snd_soc_tplg_ctl_tlv *tplg_tlv;
728
729         if (!(tc->access & SNDRV_CTL_ELEM_ACCESS_TLV_READWRITE))
730                 return 0;
731
732         if (!(tc->access & SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK)) {
733                 tplg_tlv = &tc->tlv;
734                 switch (tplg_tlv->type) {
735                 case SNDRV_CTL_TLVT_DB_SCALE:
736                         return soc_tplg_create_tlv_db_scale(tplg, kc,
737                                         &tplg_tlv->scale);
738
739                 /* TODO: add support for other TLV types */
740                 default:
741                         dev_dbg(tplg->dev, "Unsupported TLV type %d\n",
742                                         tplg_tlv->type);
743                         return -EINVAL;
744                 }
745         }
746
747         return 0;
748 }
749
750 static inline void soc_tplg_free_tlv(struct soc_tplg *tplg,
751         struct snd_kcontrol_new *kc)
752 {
753         kfree(kc->tlv.p);
754 }
755
756 static int soc_tplg_dbytes_create(struct soc_tplg *tplg, unsigned int count,
757         size_t size)
758 {
759         struct snd_soc_tplg_bytes_control *be;
760         struct soc_bytes_ext *sbe;
761         struct snd_kcontrol_new kc;
762         int i, err;
763
764         if (soc_tplg_check_elem_count(tplg,
765                 sizeof(struct snd_soc_tplg_bytes_control), count,
766                         size, "mixer bytes")) {
767                 dev_err(tplg->dev, "ASoC: Invalid count %d for byte control\n",
768                         count);
769                 return -EINVAL;
770         }
771
772         for (i = 0; i < count; i++) {
773                 be = (struct snd_soc_tplg_bytes_control *)tplg->pos;
774
775                 /* validate kcontrol */
776                 if (strnlen(be->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
777                         SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
778                         return -EINVAL;
779
780                 sbe = kzalloc(sizeof(*sbe), GFP_KERNEL);
781                 if (sbe == NULL)
782                         return -ENOMEM;
783
784                 tplg->pos += (sizeof(struct snd_soc_tplg_bytes_control) +
785                         be->priv.size);
786
787                 dev_dbg(tplg->dev,
788                         "ASoC: adding bytes kcontrol %s with access 0x%x\n",
789                         be->hdr.name, be->hdr.access);
790
791                 memset(&kc, 0, sizeof(kc));
792                 kc.name = be->hdr.name;
793                 kc.private_value = (long)sbe;
794                 kc.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
795                 kc.access = be->hdr.access;
796
797                 sbe->max = be->max;
798                 sbe->dobj.type = SND_SOC_DOBJ_BYTES;
799                 sbe->dobj.ops = tplg->ops;
800                 INIT_LIST_HEAD(&sbe->dobj.list);
801
802                 /* map io handlers */
803                 err = soc_tplg_kcontrol_bind_io(&be->hdr, &kc, tplg);
804                 if (err) {
805                         soc_control_err(tplg, &be->hdr, be->hdr.name);
806                         kfree(sbe);
807                         continue;
808                 }
809
810                 /* pass control to driver for optional further init */
811                 err = soc_tplg_init_kcontrol(tplg, &kc,
812                         (struct snd_soc_tplg_ctl_hdr *)be);
813                 if (err < 0) {
814                         dev_err(tplg->dev, "ASoC: failed to init %s\n",
815                                 be->hdr.name);
816                         kfree(sbe);
817                         continue;
818                 }
819
820                 /* register control here */
821                 err = soc_tplg_add_kcontrol(tplg, &kc,
822                         &sbe->dobj.control.kcontrol);
823                 if (err < 0) {
824                         dev_err(tplg->dev, "ASoC: failed to add %s\n",
825                                 be->hdr.name);
826                         kfree(sbe);
827                         continue;
828                 }
829
830                 list_add(&sbe->dobj.list, &tplg->comp->dobj_list);
831         }
832         return 0;
833
834 }
835
836 static int soc_tplg_dmixer_create(struct soc_tplg *tplg, unsigned int count,
837         size_t size)
838 {
839         struct snd_soc_tplg_mixer_control *mc;
840         struct soc_mixer_control *sm;
841         struct snd_kcontrol_new kc;
842         int i, err;
843
844         if (soc_tplg_check_elem_count(tplg,
845                 sizeof(struct snd_soc_tplg_mixer_control),
846                 count, size, "mixers")) {
847
848                 dev_err(tplg->dev, "ASoC: invalid count %d for controls\n",
849                         count);
850                 return -EINVAL;
851         }
852
853         for (i = 0; i < count; i++) {
854                 mc = (struct snd_soc_tplg_mixer_control *)tplg->pos;
855
856                 /* validate kcontrol */
857                 if (strnlen(mc->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
858                         SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
859                         return -EINVAL;
860
861                 sm = kzalloc(sizeof(*sm), GFP_KERNEL);
862                 if (sm == NULL)
863                         return -ENOMEM;
864                 tplg->pos += (sizeof(struct snd_soc_tplg_mixer_control) +
865                         mc->priv.size);
866
867                 dev_dbg(tplg->dev,
868                         "ASoC: adding mixer kcontrol %s with access 0x%x\n",
869                         mc->hdr.name, mc->hdr.access);
870
871                 memset(&kc, 0, sizeof(kc));
872                 kc.name = mc->hdr.name;
873                 kc.private_value = (long)sm;
874                 kc.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
875                 kc.access = mc->hdr.access;
876
877                 /* we only support FL/FR channel mapping atm */
878                 sm->reg = tplc_chan_get_reg(tplg, mc->channel,
879                         SNDRV_CHMAP_FL);
880                 sm->rreg = tplc_chan_get_reg(tplg, mc->channel,
881                         SNDRV_CHMAP_FR);
882                 sm->shift = tplc_chan_get_shift(tplg, mc->channel,
883                         SNDRV_CHMAP_FL);
884                 sm->rshift = tplc_chan_get_shift(tplg, mc->channel,
885                         SNDRV_CHMAP_FR);
886
887                 sm->max = mc->max;
888                 sm->min = mc->min;
889                 sm->invert = mc->invert;
890                 sm->platform_max = mc->platform_max;
891                 sm->dobj.index = tplg->index;
892                 sm->dobj.ops = tplg->ops;
893                 sm->dobj.type = SND_SOC_DOBJ_MIXER;
894                 INIT_LIST_HEAD(&sm->dobj.list);
895
896                 /* map io handlers */
897                 err = soc_tplg_kcontrol_bind_io(&mc->hdr, &kc, tplg);
898                 if (err) {
899                         soc_control_err(tplg, &mc->hdr, mc->hdr.name);
900                         kfree(sm);
901                         continue;
902                 }
903
904                 /* pass control to driver for optional further init */
905                 err = soc_tplg_init_kcontrol(tplg, &kc,
906                         (struct snd_soc_tplg_ctl_hdr *) mc);
907                 if (err < 0) {
908                         dev_err(tplg->dev, "ASoC: failed to init %s\n",
909                                 mc->hdr.name);
910                         kfree(sm);
911                         continue;
912                 }
913
914                 /* create any TLV data */
915                 soc_tplg_create_tlv(tplg, &kc, &mc->hdr);
916
917                 /* register control here */
918                 err = soc_tplg_add_kcontrol(tplg, &kc,
919                         &sm->dobj.control.kcontrol);
920                 if (err < 0) {
921                         dev_err(tplg->dev, "ASoC: failed to add %s\n",
922                                 mc->hdr.name);
923                         soc_tplg_free_tlv(tplg, &kc);
924                         kfree(sm);
925                         continue;
926                 }
927
928                 list_add(&sm->dobj.list, &tplg->comp->dobj_list);
929         }
930
931         return 0;
932 }
933
934 static int soc_tplg_denum_create_texts(struct soc_enum *se,
935         struct snd_soc_tplg_enum_control *ec)
936 {
937         int i, ret;
938
939         se->dobj.control.dtexts =
940                 kzalloc(sizeof(char *) * ec->items, GFP_KERNEL);
941         if (se->dobj.control.dtexts == NULL)
942                 return -ENOMEM;
943
944         for (i = 0; i < ec->items; i++) {
945
946                 if (strnlen(ec->texts[i], SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
947                         SNDRV_CTL_ELEM_ID_NAME_MAXLEN) {
948                         ret = -EINVAL;
949                         goto err;
950                 }
951
952                 se->dobj.control.dtexts[i] = kstrdup(ec->texts[i], GFP_KERNEL);
953                 if (!se->dobj.control.dtexts[i]) {
954                         ret = -ENOMEM;
955                         goto err;
956                 }
957         }
958
959         se->texts = (const char * const *)se->dobj.control.dtexts;
960         return 0;
961
962 err:
963         for (--i; i >= 0; i--)
964                 kfree(se->dobj.control.dtexts[i]);
965         kfree(se->dobj.control.dtexts);
966         return ret;
967 }
968
969 static int soc_tplg_denum_create_values(struct soc_enum *se,
970         struct snd_soc_tplg_enum_control *ec)
971 {
972         if (ec->items > sizeof(*ec->values))
973                 return -EINVAL;
974
975         se->dobj.control.dvalues = kmemdup(ec->values,
976                                            ec->items * sizeof(u32),
977                                            GFP_KERNEL);
978         if (!se->dobj.control.dvalues)
979                 return -ENOMEM;
980
981         return 0;
982 }
983
984 static int soc_tplg_denum_create(struct soc_tplg *tplg, unsigned int count,
985         size_t size)
986 {
987         struct snd_soc_tplg_enum_control *ec;
988         struct soc_enum *se;
989         struct snd_kcontrol_new kc;
990         int i, ret, err;
991
992         if (soc_tplg_check_elem_count(tplg,
993                 sizeof(struct snd_soc_tplg_enum_control),
994                 count, size, "enums")) {
995
996                 dev_err(tplg->dev, "ASoC: invalid count %d for enum controls\n",
997                         count);
998                 return -EINVAL;
999         }
1000
1001         for (i = 0; i < count; i++) {
1002                 ec = (struct snd_soc_tplg_enum_control *)tplg->pos;
1003                 tplg->pos += (sizeof(struct snd_soc_tplg_enum_control) +
1004                         ec->priv.size);
1005
1006                 /* validate kcontrol */
1007                 if (strnlen(ec->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1008                         SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
1009                         return -EINVAL;
1010
1011                 se = kzalloc((sizeof(*se)), GFP_KERNEL);
1012                 if (se == NULL)
1013                         return -ENOMEM;
1014
1015                 dev_dbg(tplg->dev, "ASoC: adding enum kcontrol %s size %d\n",
1016                         ec->hdr.name, ec->items);
1017
1018                 memset(&kc, 0, sizeof(kc));
1019                 kc.name = ec->hdr.name;
1020                 kc.private_value = (long)se;
1021                 kc.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
1022                 kc.access = ec->hdr.access;
1023
1024                 se->reg = tplc_chan_get_reg(tplg, ec->channel, SNDRV_CHMAP_FL);
1025                 se->shift_l = tplc_chan_get_shift(tplg, ec->channel,
1026                         SNDRV_CHMAP_FL);
1027                 se->shift_r = tplc_chan_get_shift(tplg, ec->channel,
1028                         SNDRV_CHMAP_FL);
1029
1030                 se->items = ec->items;
1031                 se->mask = ec->mask;
1032                 se->dobj.index = tplg->index;
1033                 se->dobj.type = SND_SOC_DOBJ_ENUM;
1034                 se->dobj.ops = tplg->ops;
1035                 INIT_LIST_HEAD(&se->dobj.list);
1036
1037                 switch (ec->hdr.ops.info) {
1038                 case SND_SOC_TPLG_DAPM_CTL_ENUM_VALUE:
1039                 case SND_SOC_TPLG_CTL_ENUM_VALUE:
1040                         err = soc_tplg_denum_create_values(se, ec);
1041                         if (err < 0) {
1042                                 dev_err(tplg->dev,
1043                                         "ASoC: could not create values for %s\n",
1044                                         ec->hdr.name);
1045                                 kfree(se);
1046                                 continue;
1047                         }
1048                         /* fall through and create texts */
1049                 case SND_SOC_TPLG_CTL_ENUM:
1050                 case SND_SOC_TPLG_DAPM_CTL_ENUM_DOUBLE:
1051                 case SND_SOC_TPLG_DAPM_CTL_ENUM_VIRT:
1052                         err = soc_tplg_denum_create_texts(se, ec);
1053                         if (err < 0) {
1054                                 dev_err(tplg->dev,
1055                                         "ASoC: could not create texts for %s\n",
1056                                         ec->hdr.name);
1057                                 kfree(se);
1058                                 continue;
1059                         }
1060                         break;
1061                 default:
1062                         dev_err(tplg->dev,
1063                                 "ASoC: invalid enum control type %d for %s\n",
1064                                 ec->hdr.ops.info, ec->hdr.name);
1065                         kfree(se);
1066                         continue;
1067                 }
1068
1069                 /* map io handlers */
1070                 err = soc_tplg_kcontrol_bind_io(&ec->hdr, &kc, tplg);
1071                 if (err) {
1072                         soc_control_err(tplg, &ec->hdr, ec->hdr.name);
1073                         kfree(se);
1074                         continue;
1075                 }
1076
1077                 /* pass control to driver for optional further init */
1078                 err = soc_tplg_init_kcontrol(tplg, &kc,
1079                         (struct snd_soc_tplg_ctl_hdr *) ec);
1080                 if (err < 0) {
1081                         dev_err(tplg->dev, "ASoC: failed to init %s\n",
1082                                 ec->hdr.name);
1083                         kfree(se);
1084                         continue;
1085                 }
1086
1087                 /* register control here */
1088                 ret = soc_tplg_add_kcontrol(tplg,
1089                         &kc, &se->dobj.control.kcontrol);
1090                 if (ret < 0) {
1091                         dev_err(tplg->dev, "ASoC: could not add kcontrol %s\n",
1092                                 ec->hdr.name);
1093                         kfree(se);
1094                         continue;
1095                 }
1096
1097                 list_add(&se->dobj.list, &tplg->comp->dobj_list);
1098         }
1099
1100         return 0;
1101 }
1102
1103 static int soc_tplg_kcontrol_elems_load(struct soc_tplg *tplg,
1104         struct snd_soc_tplg_hdr *hdr)
1105 {
1106         struct snd_soc_tplg_ctl_hdr *control_hdr;
1107         int i;
1108
1109         if (tplg->pass != SOC_TPLG_PASS_MIXER) {
1110                 tplg->pos += hdr->size + hdr->payload_size;
1111                 return 0;
1112         }
1113
1114         dev_dbg(tplg->dev, "ASoC: adding %d kcontrols at 0x%lx\n", hdr->count,
1115                 soc_tplg_get_offset(tplg));
1116
1117         for (i = 0; i < hdr->count; i++) {
1118
1119                 control_hdr = (struct snd_soc_tplg_ctl_hdr *)tplg->pos;
1120
1121                 if (control_hdr->size != sizeof(*control_hdr)) {
1122                         dev_err(tplg->dev, "ASoC: invalid control size\n");
1123                         return -EINVAL;
1124                 }
1125
1126                 switch (control_hdr->ops.info) {
1127                 case SND_SOC_TPLG_CTL_VOLSW:
1128                 case SND_SOC_TPLG_CTL_STROBE:
1129                 case SND_SOC_TPLG_CTL_VOLSW_SX:
1130                 case SND_SOC_TPLG_CTL_VOLSW_XR_SX:
1131                 case SND_SOC_TPLG_CTL_RANGE:
1132                 case SND_SOC_TPLG_DAPM_CTL_VOLSW:
1133                 case SND_SOC_TPLG_DAPM_CTL_PIN:
1134                         soc_tplg_dmixer_create(tplg, 1, hdr->payload_size);
1135                         break;
1136                 case SND_SOC_TPLG_CTL_ENUM:
1137                 case SND_SOC_TPLG_CTL_ENUM_VALUE:
1138                 case SND_SOC_TPLG_DAPM_CTL_ENUM_DOUBLE:
1139                 case SND_SOC_TPLG_DAPM_CTL_ENUM_VIRT:
1140                 case SND_SOC_TPLG_DAPM_CTL_ENUM_VALUE:
1141                         soc_tplg_denum_create(tplg, 1, hdr->payload_size);
1142                         break;
1143                 case SND_SOC_TPLG_CTL_BYTES:
1144                         soc_tplg_dbytes_create(tplg, 1, hdr->payload_size);
1145                         break;
1146                 default:
1147                         soc_bind_err(tplg, control_hdr, i);
1148                         return -EINVAL;
1149                 }
1150         }
1151
1152         return 0;
1153 }
1154
1155 static int soc_tplg_dapm_graph_elems_load(struct soc_tplg *tplg,
1156         struct snd_soc_tplg_hdr *hdr)
1157 {
1158         struct snd_soc_dapm_context *dapm = &tplg->comp->dapm;
1159         struct snd_soc_dapm_route route;
1160         struct snd_soc_tplg_dapm_graph_elem *elem;
1161         int count = hdr->count, i;
1162
1163         if (tplg->pass != SOC_TPLG_PASS_GRAPH) {
1164                 tplg->pos += hdr->size + hdr->payload_size;
1165                 return 0;
1166         }
1167
1168         if (soc_tplg_check_elem_count(tplg,
1169                 sizeof(struct snd_soc_tplg_dapm_graph_elem),
1170                 count, hdr->payload_size, "graph")) {
1171
1172                 dev_err(tplg->dev, "ASoC: invalid count %d for DAPM routes\n",
1173                         count);
1174                 return -EINVAL;
1175         }
1176
1177         dev_dbg(tplg->dev, "ASoC: adding %d DAPM routes for index %d\n", count,
1178                 hdr->index);
1179
1180         for (i = 0; i < count; i++) {
1181                 elem = (struct snd_soc_tplg_dapm_graph_elem *)tplg->pos;
1182                 tplg->pos += sizeof(struct snd_soc_tplg_dapm_graph_elem);
1183
1184                 /* validate routes */
1185                 if (strnlen(elem->source, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1186                         SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
1187                         return -EINVAL;
1188                 if (strnlen(elem->sink, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1189                         SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
1190                         return -EINVAL;
1191                 if (strnlen(elem->control, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1192                         SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
1193                         return -EINVAL;
1194
1195                 route.source = elem->source;
1196                 route.sink = elem->sink;
1197                 route.connected = NULL; /* set to NULL atm for tplg users */
1198                 if (strnlen(elem->control, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) == 0)
1199                         route.control = NULL;
1200                 else
1201                         route.control = elem->control;
1202
1203                 /* add route, but keep going if some fail */
1204                 snd_soc_dapm_add_routes(dapm, &route, 1);
1205         }
1206
1207         return 0;
1208 }
1209
1210 static struct snd_kcontrol_new *soc_tplg_dapm_widget_dmixer_create(
1211         struct soc_tplg *tplg, int num_kcontrols)
1212 {
1213         struct snd_kcontrol_new *kc;
1214         struct soc_mixer_control *sm;
1215         struct snd_soc_tplg_mixer_control *mc;
1216         int i, err;
1217
1218         kc = kcalloc(num_kcontrols, sizeof(*kc), GFP_KERNEL);
1219         if (kc == NULL)
1220                 return NULL;
1221
1222         for (i = 0; i < num_kcontrols; i++) {
1223                 mc = (struct snd_soc_tplg_mixer_control *)tplg->pos;
1224                 sm = kzalloc(sizeof(*sm), GFP_KERNEL);
1225                 if (sm == NULL)
1226                         goto err;
1227
1228                 tplg->pos += (sizeof(struct snd_soc_tplg_mixer_control) +
1229                         mc->priv.size);
1230
1231                 /* validate kcontrol */
1232                 if (strnlen(mc->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1233                         SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
1234                         goto err_str;
1235
1236                 dev_dbg(tplg->dev, " adding DAPM widget mixer control %s at %d\n",
1237                         mc->hdr.name, i);
1238
1239                 kc[i].name = kstrdup(mc->hdr.name, GFP_KERNEL);
1240                 if (kc[i].name == NULL)
1241                         goto err_str;
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 */
1264                 err = soc_tplg_kcontrol_bind_io(&mc->hdr, &kc[i], tplg);
1265                 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                 }
1280
1281                 /* create any TLV data */
1282                 soc_tplg_create_tlv(tplg, &kc[i], &mc->hdr);
1283         }
1284         return kc;
1285
1286 err_str:
1287         kfree(sm);
1288 err:
1289         for (--i; i >= 0; i--) {
1290                 kfree((void *)kc[i].private_value);
1291                 kfree(kc[i].name);
1292         }
1293         kfree(kc);
1294         return NULL;
1295 }
1296
1297 static struct snd_kcontrol_new *soc_tplg_dapm_widget_denum_create(
1298         struct soc_tplg *tplg, int num_kcontrols)
1299 {
1300         struct snd_kcontrol_new *kc;
1301         struct snd_soc_tplg_enum_control *ec;
1302         struct soc_enum *se;
1303         int i, j, err;
1304
1305         kc = kcalloc(num_kcontrols, sizeof(*kc), GFP_KERNEL);
1306         if (kc == NULL)
1307                 return NULL;
1308
1309         for (i = 0; i < num_kcontrols; i++) {
1310                 ec = (struct snd_soc_tplg_enum_control *)tplg->pos;
1311                 /* validate kcontrol */
1312                 if (strnlen(ec->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1313                             SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
1314                         goto err;
1315
1316                 se = kzalloc(sizeof(*se), GFP_KERNEL);
1317                 if (se == NULL)
1318                         goto err;
1319
1320                 dev_dbg(tplg->dev, " adding DAPM widget enum control %s\n",
1321                         ec->hdr.name);
1322
1323                 kc[i].name = kstrdup(ec->hdr.name, GFP_KERNEL);
1324                 if (kc[i].name == NULL)
1325                         goto err_se;
1326                 kc[i].private_value = (long)se;
1327                 kc[i].iface = SNDRV_CTL_ELEM_IFACE_MIXER;
1328                 kc[i].access = ec->hdr.access;
1329
1330                 /* we only support FL/FR channel mapping atm */
1331                 se->reg = tplc_chan_get_reg(tplg, ec->channel, SNDRV_CHMAP_FL);
1332                 se->shift_l = tplc_chan_get_shift(tplg, ec->channel,
1333                                                   SNDRV_CHMAP_FL);
1334                 se->shift_r = tplc_chan_get_shift(tplg, ec->channel,
1335                                                   SNDRV_CHMAP_FR);
1336
1337                 se->items = ec->items;
1338                 se->mask = ec->mask;
1339                 se->dobj.index = tplg->index;
1340
1341                 switch (ec->hdr.ops.info) {
1342                 case SND_SOC_TPLG_CTL_ENUM_VALUE:
1343                 case SND_SOC_TPLG_DAPM_CTL_ENUM_VALUE:
1344                         err = soc_tplg_denum_create_values(se, ec);
1345                         if (err < 0) {
1346                                 dev_err(tplg->dev, "ASoC: could not create values for %s\n",
1347                                         ec->hdr.name);
1348                                 goto err_se;
1349                         }
1350                         /* fall through to create texts */
1351                 case SND_SOC_TPLG_CTL_ENUM:
1352                 case SND_SOC_TPLG_DAPM_CTL_ENUM_DOUBLE:
1353                 case SND_SOC_TPLG_DAPM_CTL_ENUM_VIRT:
1354                         err = soc_tplg_denum_create_texts(se, ec);
1355                         if (err < 0) {
1356                                 dev_err(tplg->dev, "ASoC: could not create texts for %s\n",
1357                                         ec->hdr.name);
1358                                 goto err_se;
1359                         }
1360                         break;
1361                 default:
1362                         dev_err(tplg->dev, "ASoC: invalid enum control type %d for %s\n",
1363                                 ec->hdr.ops.info, ec->hdr.name);
1364                         goto err_se;
1365                 }
1366
1367                 /* map io handlers */
1368                 err = soc_tplg_kcontrol_bind_io(&ec->hdr, &kc[i], tplg);
1369                 if (err) {
1370                         soc_control_err(tplg, &ec->hdr, ec->hdr.name);
1371                         goto err_se;
1372                 }
1373
1374                 /* pass control to driver for optional further init */
1375                 err = soc_tplg_init_kcontrol(tplg, &kc[i],
1376                         (struct snd_soc_tplg_ctl_hdr *)ec);
1377                 if (err < 0) {
1378                         dev_err(tplg->dev, "ASoC: failed to init %s\n",
1379                                 ec->hdr.name);
1380                         goto err_se;
1381                 }
1382
1383                 tplg->pos += (sizeof(struct snd_soc_tplg_enum_control) +
1384                                 ec->priv.size);
1385         }
1386
1387         return kc;
1388
1389 err_se:
1390         for (; i >= 0; i--) {
1391                 /* free values and texts */
1392                 se = (struct soc_enum *)kc[i].private_value;
1393                 if (!se)
1394                         continue;
1395
1396                 kfree(se->dobj.control.dvalues);
1397                 for (j = 0; j < ec->items; j++)
1398                         kfree(se->dobj.control.dtexts[j]);
1399
1400                 kfree(se);
1401                 kfree(kc[i].name);
1402         }
1403 err:
1404         kfree(kc);
1405
1406         return NULL;
1407 }
1408
1409 static struct snd_kcontrol_new *soc_tplg_dapm_widget_dbytes_create(
1410         struct soc_tplg *tplg, int count)
1411 {
1412         struct snd_soc_tplg_bytes_control *be;
1413         struct soc_bytes_ext  *sbe;
1414         struct snd_kcontrol_new *kc;
1415         int i, err;
1416
1417         kc = kcalloc(count, sizeof(*kc), GFP_KERNEL);
1418         if (!kc)
1419                 return NULL;
1420
1421         for (i = 0; i < count; i++) {
1422                 be = (struct snd_soc_tplg_bytes_control *)tplg->pos;
1423
1424                 /* validate kcontrol */
1425                 if (strnlen(be->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1426                         SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
1427                         goto err;
1428
1429                 sbe = kzalloc(sizeof(*sbe), GFP_KERNEL);
1430                 if (sbe == NULL)
1431                         goto err;
1432
1433                 tplg->pos += (sizeof(struct snd_soc_tplg_bytes_control) +
1434                         be->priv.size);
1435
1436                 dev_dbg(tplg->dev,
1437                         "ASoC: adding bytes kcontrol %s with access 0x%x\n",
1438                         be->hdr.name, be->hdr.access);
1439
1440                 kc[i].name = kstrdup(be->hdr.name, GFP_KERNEL);
1441                 if (kc[i].name == NULL)
1442                         goto err;
1443                 kc[i].private_value = (long)sbe;
1444                 kc[i].iface = SNDRV_CTL_ELEM_IFACE_MIXER;
1445                 kc[i].access = be->hdr.access;
1446
1447                 sbe->max = be->max;
1448                 INIT_LIST_HEAD(&sbe->dobj.list);
1449
1450                 /* map standard io handlers and check for external handlers */
1451                 err = soc_tplg_kcontrol_bind_io(&be->hdr, &kc[i], tplg);
1452                 if (err) {
1453                         soc_control_err(tplg, &be->hdr, be->hdr.name);
1454                         kfree(sbe);
1455                         continue;
1456                 }
1457
1458                 /* pass control to driver for optional further init */
1459                 err = soc_tplg_init_kcontrol(tplg, &kc[i],
1460                         (struct snd_soc_tplg_ctl_hdr *)be);
1461                 if (err < 0) {
1462                         dev_err(tplg->dev, "ASoC: failed to init %s\n",
1463                                 be->hdr.name);
1464                         kfree(sbe);
1465                         continue;
1466                 }
1467         }
1468
1469         return kc;
1470
1471 err:
1472         for (--i; i >= 0; i--) {
1473                 kfree((void *)kc[i].private_value);
1474                 kfree(kc[i].name);
1475         }
1476
1477         kfree(kc);
1478         return NULL;
1479 }
1480
1481 static int soc_tplg_dapm_widget_create(struct soc_tplg *tplg,
1482         struct snd_soc_tplg_dapm_widget *w)
1483 {
1484         struct snd_soc_dapm_context *dapm = &tplg->comp->dapm;
1485         struct snd_soc_dapm_widget template, *widget;
1486         struct snd_soc_tplg_ctl_hdr *control_hdr;
1487         struct snd_soc_card *card = tplg->comp->card;
1488         unsigned int kcontrol_type;
1489         int ret = 0;
1490
1491         if (strnlen(w->name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1492                 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
1493                 return -EINVAL;
1494         if (strnlen(w->sname, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1495                 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
1496                 return -EINVAL;
1497
1498         dev_dbg(tplg->dev, "ASoC: creating DAPM widget %s id %d\n",
1499                 w->name, w->id);
1500
1501         memset(&template, 0, sizeof(template));
1502
1503         /* map user to kernel widget ID */
1504         template.id = get_widget_id(w->id);
1505         if (template.id < 0)
1506                 return template.id;
1507
1508         /* strings are allocated here, but used and freed by the widget */
1509         template.name = kstrdup(w->name, GFP_KERNEL);
1510         if (!template.name)
1511                 return -ENOMEM;
1512         template.sname = kstrdup(w->sname, GFP_KERNEL);
1513         if (!template.sname) {
1514                 ret = -ENOMEM;
1515                 goto err;
1516         }
1517         template.reg = w->reg;
1518         template.shift = w->shift;
1519         template.mask = w->mask;
1520         template.subseq = w->subseq;
1521         template.on_val = w->invert ? 0 : 1;
1522         template.off_val = w->invert ? 1 : 0;
1523         template.ignore_suspend = w->ignore_suspend;
1524         template.event_flags = w->event_flags;
1525         template.dobj.index = tplg->index;
1526
1527         tplg->pos +=
1528                 (sizeof(struct snd_soc_tplg_dapm_widget) + w->priv.size);
1529         if (w->num_kcontrols == 0) {
1530                 kcontrol_type = 0;
1531                 template.num_kcontrols = 0;
1532                 goto widget;
1533         }
1534
1535         control_hdr = (struct snd_soc_tplg_ctl_hdr *)tplg->pos;
1536         dev_dbg(tplg->dev, "ASoC: template %s has %d controls of type %x\n",
1537                 w->name, w->num_kcontrols, control_hdr->type);
1538
1539         switch (control_hdr->ops.info) {
1540         case SND_SOC_TPLG_CTL_VOLSW:
1541         case SND_SOC_TPLG_CTL_STROBE:
1542         case SND_SOC_TPLG_CTL_VOLSW_SX:
1543         case SND_SOC_TPLG_CTL_VOLSW_XR_SX:
1544         case SND_SOC_TPLG_CTL_RANGE:
1545         case SND_SOC_TPLG_DAPM_CTL_VOLSW:
1546                 kcontrol_type = SND_SOC_TPLG_TYPE_MIXER;  /* volume mixer */
1547                 template.num_kcontrols = w->num_kcontrols;
1548                 template.kcontrol_news =
1549                         soc_tplg_dapm_widget_dmixer_create(tplg,
1550                         template.num_kcontrols);
1551                 if (!template.kcontrol_news) {
1552                         ret = -ENOMEM;
1553                         goto hdr_err;
1554                 }
1555                 break;
1556         case SND_SOC_TPLG_CTL_ENUM:
1557         case SND_SOC_TPLG_CTL_ENUM_VALUE:
1558         case SND_SOC_TPLG_DAPM_CTL_ENUM_DOUBLE:
1559         case SND_SOC_TPLG_DAPM_CTL_ENUM_VIRT:
1560         case SND_SOC_TPLG_DAPM_CTL_ENUM_VALUE:
1561                 kcontrol_type = SND_SOC_TPLG_TYPE_ENUM; /* enumerated mixer */
1562                 template.num_kcontrols = w->num_kcontrols;
1563                 template.kcontrol_news =
1564                         soc_tplg_dapm_widget_denum_create(tplg,
1565                         template.num_kcontrols);
1566                 if (!template.kcontrol_news) {
1567                         ret = -ENOMEM;
1568                         goto hdr_err;
1569                 }
1570                 break;
1571         case SND_SOC_TPLG_CTL_BYTES:
1572                 kcontrol_type = SND_SOC_TPLG_TYPE_BYTES; /* bytes control */
1573                 template.num_kcontrols = w->num_kcontrols;
1574                 template.kcontrol_news =
1575                         soc_tplg_dapm_widget_dbytes_create(tplg,
1576                                 template.num_kcontrols);
1577                 if (!template.kcontrol_news) {
1578                         ret = -ENOMEM;
1579                         goto hdr_err;
1580                 }
1581                 break;
1582         default:
1583                 dev_err(tplg->dev, "ASoC: invalid widget control type %d:%d:%d\n",
1584                         control_hdr->ops.get, control_hdr->ops.put,
1585                         control_hdr->ops.info);
1586                 ret = -EINVAL;
1587                 goto hdr_err;
1588         }
1589
1590 widget:
1591         ret = soc_tplg_widget_load(tplg, &template, w);
1592         if (ret < 0)
1593                 goto hdr_err;
1594
1595         /* card dapm mutex is held by the core if we are loading topology
1596          * data during sound card init. */
1597         if (card->instantiated)
1598                 widget = snd_soc_dapm_new_control(dapm, &template);
1599         else
1600                 widget = snd_soc_dapm_new_control_unlocked(dapm, &template);
1601         if (IS_ERR(widget)) {
1602                 ret = PTR_ERR(widget);
1603                 /* Do not nag about probe deferrals */
1604                 if (ret != -EPROBE_DEFER)
1605                         dev_err(tplg->dev,
1606                                 "ASoC: failed to create widget %s controls (%d)\n",
1607                                 w->name, ret);
1608                 goto hdr_err;
1609         }
1610         if (widget == NULL) {
1611                 dev_err(tplg->dev, "ASoC: failed to create widget %s controls\n",
1612                         w->name);
1613                 ret = -ENOMEM;
1614                 goto hdr_err;
1615         }
1616
1617         widget->dobj.type = SND_SOC_DOBJ_WIDGET;
1618         widget->dobj.widget.kcontrol_type = kcontrol_type;
1619         widget->dobj.ops = tplg->ops;
1620         widget->dobj.index = tplg->index;
1621         list_add(&widget->dobj.list, &tplg->comp->dobj_list);
1622
1623         ret = soc_tplg_widget_ready(tplg, widget, w);
1624         if (ret < 0)
1625                 goto ready_err;
1626
1627         return 0;
1628
1629 ready_err:
1630         snd_soc_tplg_widget_remove(widget);
1631         snd_soc_dapm_free_widget(widget);
1632 hdr_err:
1633         kfree(template.sname);
1634 err:
1635         kfree(template.name);
1636         return ret;
1637 }
1638
1639 static int soc_tplg_dapm_widget_elems_load(struct soc_tplg *tplg,
1640         struct snd_soc_tplg_hdr *hdr)
1641 {
1642         struct snd_soc_tplg_dapm_widget *widget;
1643         int ret, count = hdr->count, i;
1644
1645         if (tplg->pass != SOC_TPLG_PASS_WIDGET)
1646                 return 0;
1647
1648         dev_dbg(tplg->dev, "ASoC: adding %d DAPM widgets\n", count);
1649
1650         for (i = 0; i < count; i++) {
1651                 widget = (struct snd_soc_tplg_dapm_widget *) tplg->pos;
1652                 if (widget->size != sizeof(*widget)) {
1653                         dev_err(tplg->dev, "ASoC: invalid widget size\n");
1654                         return -EINVAL;
1655                 }
1656
1657                 ret = soc_tplg_dapm_widget_create(tplg, widget);
1658                 if (ret < 0) {
1659                         dev_err(tplg->dev, "ASoC: failed to load widget %s\n",
1660                                 widget->name);
1661                         return ret;
1662                 }
1663         }
1664
1665         return 0;
1666 }
1667
1668 static int soc_tplg_dapm_complete(struct soc_tplg *tplg)
1669 {
1670         struct snd_soc_card *card = tplg->comp->card;
1671         int ret;
1672
1673         /* Card might not have been registered at this point.
1674          * If so, just return success.
1675         */
1676         if (!card || !card->instantiated) {
1677                 dev_warn(tplg->dev, "ASoC: Parent card not yet available,"
1678                         " widget card binding deferred\n");
1679                 return 0;
1680         }
1681
1682         ret = snd_soc_dapm_new_widgets(card);
1683         if (ret < 0)
1684                 dev_err(tplg->dev, "ASoC: failed to create new widgets %d\n",
1685                         ret);
1686
1687         return 0;
1688 }
1689
1690 static void set_stream_info(struct snd_soc_pcm_stream *stream,
1691         struct snd_soc_tplg_stream_caps *caps)
1692 {
1693         stream->stream_name = kstrdup(caps->name, GFP_KERNEL);
1694         stream->channels_min = caps->channels_min;
1695         stream->channels_max = caps->channels_max;
1696         stream->rates = caps->rates;
1697         stream->rate_min = caps->rate_min;
1698         stream->rate_max = caps->rate_max;
1699         stream->formats = caps->formats;
1700         stream->sig_bits = caps->sig_bits;
1701 }
1702
1703 static void set_dai_flags(struct snd_soc_dai_driver *dai_drv,
1704                           unsigned int flag_mask, unsigned int flags)
1705 {
1706         if (flag_mask & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_RATES)
1707                 dai_drv->symmetric_rates =
1708                         flags & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_RATES ? 1 : 0;
1709
1710         if (flag_mask & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_CHANNELS)
1711                 dai_drv->symmetric_channels =
1712                         flags & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_CHANNELS ?
1713                         1 : 0;
1714
1715         if (flag_mask & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_SAMPLEBITS)
1716                 dai_drv->symmetric_samplebits =
1717                         flags & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_SAMPLEBITS ?
1718                         1 : 0;
1719 }
1720
1721 static int soc_tplg_dai_create(struct soc_tplg *tplg,
1722         struct snd_soc_tplg_pcm *pcm)
1723 {
1724         struct snd_soc_dai_driver *dai_drv;
1725         struct snd_soc_pcm_stream *stream;
1726         struct snd_soc_tplg_stream_caps *caps;
1727         int ret;
1728
1729         dai_drv = kzalloc(sizeof(struct snd_soc_dai_driver), GFP_KERNEL);
1730         if (dai_drv == NULL)
1731                 return -ENOMEM;
1732
1733         if (strlen(pcm->dai_name))
1734                 dai_drv->name = kstrdup(pcm->dai_name, GFP_KERNEL);
1735         dai_drv->id = pcm->dai_id;
1736
1737         if (pcm->playback) {
1738                 stream = &dai_drv->playback;
1739                 caps = &pcm->caps[SND_SOC_TPLG_STREAM_PLAYBACK];
1740                 set_stream_info(stream, caps);
1741         }
1742
1743         if (pcm->capture) {
1744                 stream = &dai_drv->capture;
1745                 caps = &pcm->caps[SND_SOC_TPLG_STREAM_CAPTURE];
1746                 set_stream_info(stream, caps);
1747         }
1748
1749         /* pass control to component driver for optional further init */
1750         ret = soc_tplg_dai_load(tplg, dai_drv);
1751         if (ret < 0) {
1752                 dev_err(tplg->comp->dev, "ASoC: DAI loading failed\n");
1753                 kfree(dai_drv);
1754                 return ret;
1755         }
1756
1757         dai_drv->dobj.index = tplg->index;
1758         dai_drv->dobj.ops = tplg->ops;
1759         dai_drv->dobj.type = SND_SOC_DOBJ_PCM;
1760         list_add(&dai_drv->dobj.list, &tplg->comp->dobj_list);
1761
1762         /* register the DAI to the component */
1763         return snd_soc_register_dai(tplg->comp, dai_drv);
1764 }
1765
1766 static void set_link_flags(struct snd_soc_dai_link *link,
1767                 unsigned int flag_mask, unsigned int flags)
1768 {
1769         if (flag_mask & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_RATES)
1770                 link->symmetric_rates =
1771                         flags & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_RATES ? 1 : 0;
1772
1773         if (flag_mask & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_CHANNELS)
1774                 link->symmetric_channels =
1775                         flags & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_CHANNELS ?
1776                         1 : 0;
1777
1778         if (flag_mask & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_SAMPLEBITS)
1779                 link->symmetric_samplebits =
1780                         flags & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_SAMPLEBITS ?
1781                         1 : 0;
1782
1783         if (flag_mask & SND_SOC_TPLG_LNK_FLGBIT_VOICE_WAKEUP)
1784                 link->ignore_suspend =
1785                 flags & SND_SOC_TPLG_LNK_FLGBIT_VOICE_WAKEUP ?
1786                 1 : 0;
1787 }
1788
1789 /* create the FE DAI link */
1790 static int soc_tplg_fe_link_create(struct soc_tplg *tplg,
1791         struct snd_soc_tplg_pcm *pcm)
1792 {
1793         struct snd_soc_dai_link *link;
1794         int ret;
1795
1796         link = kzalloc(sizeof(struct snd_soc_dai_link), GFP_KERNEL);
1797         if (link == NULL)
1798                 return -ENOMEM;
1799
1800         if (strlen(pcm->pcm_name)) {
1801                 link->name = kstrdup(pcm->pcm_name, GFP_KERNEL);
1802                 link->stream_name = kstrdup(pcm->pcm_name, GFP_KERNEL);
1803         }
1804         link->id = pcm->pcm_id;
1805
1806         if (strlen(pcm->dai_name))
1807                 link->cpu_dai_name = kstrdup(pcm->dai_name, GFP_KERNEL);
1808
1809         link->codec_name = "snd-soc-dummy";
1810         link->codec_dai_name = "snd-soc-dummy-dai";
1811
1812         /* enable DPCM */
1813         link->dynamic = 1;
1814         link->dpcm_playback = pcm->playback;
1815         link->dpcm_capture = pcm->capture;
1816         if (pcm->flag_mask)
1817                 set_link_flags(link, pcm->flag_mask, pcm->flags);
1818
1819         /* pass control to component driver for optional further init */
1820         ret = soc_tplg_dai_link_load(tplg, link);
1821         if (ret < 0) {
1822                 dev_err(tplg->comp->dev, "ASoC: FE link loading failed\n");
1823                 kfree(link);
1824                 return ret;
1825         }
1826
1827         link->dobj.index = tplg->index;
1828         link->dobj.ops = tplg->ops;
1829         link->dobj.type = SND_SOC_DOBJ_DAI_LINK;
1830         list_add(&link->dobj.list, &tplg->comp->dobj_list);
1831
1832         snd_soc_add_dai_link(tplg->comp->card, link);
1833         return 0;
1834 }
1835
1836 /* create a FE DAI and DAI link from the PCM object */
1837 static int soc_tplg_pcm_create(struct soc_tplg *tplg,
1838         struct snd_soc_tplg_pcm *pcm)
1839 {
1840         int ret;
1841
1842         ret = soc_tplg_dai_create(tplg, pcm);
1843         if (ret < 0)
1844                 return ret;
1845
1846         return  soc_tplg_fe_link_create(tplg, pcm);
1847 }
1848
1849 /* copy stream caps from the old version 4 of source */
1850 static void stream_caps_new_ver(struct snd_soc_tplg_stream_caps *dest,
1851                                 struct snd_soc_tplg_stream_caps_v4 *src)
1852 {
1853         dest->size = sizeof(*dest);
1854         memcpy(dest->name, src->name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN);
1855         dest->formats = src->formats;
1856         dest->rates = src->rates;
1857         dest->rate_min = src->rate_min;
1858         dest->rate_max = src->rate_max;
1859         dest->channels_min = src->channels_min;
1860         dest->channels_max = src->channels_max;
1861         dest->periods_min = src->periods_min;
1862         dest->periods_max = src->periods_max;
1863         dest->period_size_min = src->period_size_min;
1864         dest->period_size_max = src->period_size_max;
1865         dest->buffer_size_min = src->buffer_size_min;
1866         dest->buffer_size_max = src->buffer_size_max;
1867 }
1868
1869 /**
1870  * pcm_new_ver - Create the new version of PCM from the old version.
1871  * @tplg: topology context
1872  * @src: older version of pcm as a source
1873  * @pcm: latest version of pcm created from the source
1874  *
1875  * Support from vesion 4. User should free the returned pcm manually.
1876  */
1877 static int pcm_new_ver(struct soc_tplg *tplg,
1878                        struct snd_soc_tplg_pcm *src,
1879                        struct snd_soc_tplg_pcm **pcm)
1880 {
1881         struct snd_soc_tplg_pcm *dest;
1882         struct snd_soc_tplg_pcm_v4 *src_v4;
1883         int i;
1884
1885         *pcm = NULL;
1886
1887         if (src->size != sizeof(*src_v4)) {
1888                 dev_err(tplg->dev, "ASoC: invalid PCM size\n");
1889                 return -EINVAL;
1890         }
1891
1892         dev_warn(tplg->dev, "ASoC: old version of PCM\n");
1893         src_v4 = (struct snd_soc_tplg_pcm_v4 *)src;
1894         dest = kzalloc(sizeof(*dest), GFP_KERNEL);
1895         if (!dest)
1896                 return -ENOMEM;
1897
1898         dest->size = sizeof(*dest);     /* size of latest abi version */
1899         memcpy(dest->pcm_name, src_v4->pcm_name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN);
1900         memcpy(dest->dai_name, src_v4->dai_name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN);
1901         dest->pcm_id = src_v4->pcm_id;
1902         dest->dai_id = src_v4->dai_id;
1903         dest->playback = src_v4->playback;
1904         dest->capture = src_v4->capture;
1905         dest->compress = src_v4->compress;
1906         dest->num_streams = src_v4->num_streams;
1907         for (i = 0; i < dest->num_streams; i++)
1908                 memcpy(&dest->stream[i], &src_v4->stream[i],
1909                        sizeof(struct snd_soc_tplg_stream));
1910
1911         for (i = 0; i < 2; i++)
1912                 stream_caps_new_ver(&dest->caps[i], &src_v4->caps[i]);
1913
1914         *pcm = dest;
1915         return 0;
1916 }
1917
1918 static int soc_tplg_pcm_elems_load(struct soc_tplg *tplg,
1919         struct snd_soc_tplg_hdr *hdr)
1920 {
1921         struct snd_soc_tplg_pcm *pcm, *_pcm;
1922         int count = hdr->count;
1923         int i;
1924         bool abi_match;
1925         int ret;
1926
1927         if (tplg->pass != SOC_TPLG_PASS_PCM_DAI)
1928                 return 0;
1929
1930         /* check the element size and count */
1931         pcm = (struct snd_soc_tplg_pcm *)tplg->pos;
1932         if (pcm->size > sizeof(struct snd_soc_tplg_pcm)
1933                 || pcm->size < sizeof(struct snd_soc_tplg_pcm_v4)) {
1934                 dev_err(tplg->dev, "ASoC: invalid size %d for PCM elems\n",
1935                         pcm->size);
1936                 return -EINVAL;
1937         }
1938
1939         if (soc_tplg_check_elem_count(tplg,
1940                 pcm->size, count,
1941                 hdr->payload_size, "PCM DAI")) {
1942                 dev_err(tplg->dev, "ASoC: invalid count %d for PCM DAI elems\n",
1943                         count);
1944                 return -EINVAL;
1945         }
1946
1947         for (i = 0; i < count; i++) {
1948                 pcm = (struct snd_soc_tplg_pcm *)tplg->pos;
1949
1950                 /* check ABI version by size, create a new version of pcm
1951                  * if abi not match.
1952                  */
1953                 if (pcm->size == sizeof(*pcm)) {
1954                         abi_match = true;
1955                         _pcm = pcm;
1956                 } else {
1957                         abi_match = false;
1958                         ret = pcm_new_ver(tplg, pcm, &_pcm);
1959                         if (ret < 0)
1960                                 return ret;
1961                 }
1962
1963                 /* create the FE DAIs and DAI links */
1964                 ret = soc_tplg_pcm_create(tplg, _pcm);
1965                 if (ret < 0) {
1966                         if (!abi_match)
1967                                 kfree(_pcm);
1968                         return ret;
1969                 }
1970
1971                 /* offset by version-specific struct size and
1972                  * real priv data size
1973                  */
1974                 tplg->pos += pcm->size + _pcm->priv.size;
1975
1976                 if (!abi_match)
1977                         kfree(_pcm); /* free the duplicated one */
1978         }
1979
1980         dev_dbg(tplg->dev, "ASoC: adding %d PCM DAIs\n", count);
1981
1982         return 0;
1983 }
1984
1985 /**
1986  * set_link_hw_format - Set the HW audio format of the physical DAI link.
1987  * @link: &snd_soc_dai_link which should be updated
1988  * @cfg: physical link configs.
1989  *
1990  * Topology context contains a list of supported HW formats (configs) and
1991  * a default format ID for the physical link. This function will use this
1992  * default ID to choose the HW format to set the link's DAI format for init.
1993  */
1994 static void set_link_hw_format(struct snd_soc_dai_link *link,
1995                         struct snd_soc_tplg_link_config *cfg)
1996 {
1997         struct snd_soc_tplg_hw_config *hw_config;
1998         unsigned char bclk_master, fsync_master;
1999         unsigned char invert_bclk, invert_fsync;
2000         int i;
2001
2002         for (i = 0; i < cfg->num_hw_configs; i++) {
2003                 hw_config = &cfg->hw_config[i];
2004                 if (hw_config->id != cfg->default_hw_config_id)
2005                         continue;
2006
2007                 link->dai_fmt = hw_config->fmt & SND_SOC_DAIFMT_FORMAT_MASK;
2008
2009                 /* clock gating */
2010                 if (hw_config->clock_gated == SND_SOC_TPLG_DAI_CLK_GATE_GATED)
2011                         link->dai_fmt |= SND_SOC_DAIFMT_GATED;
2012                 else if (hw_config->clock_gated ==
2013                          SND_SOC_TPLG_DAI_CLK_GATE_CONT)
2014                         link->dai_fmt |= SND_SOC_DAIFMT_CONT;
2015
2016                 /* clock signal polarity */
2017                 invert_bclk = hw_config->invert_bclk;
2018                 invert_fsync = hw_config->invert_fsync;
2019                 if (!invert_bclk && !invert_fsync)
2020                         link->dai_fmt |= SND_SOC_DAIFMT_NB_NF;
2021                 else if (!invert_bclk && invert_fsync)
2022                         link->dai_fmt |= SND_SOC_DAIFMT_NB_IF;
2023                 else if (invert_bclk && !invert_fsync)
2024                         link->dai_fmt |= SND_SOC_DAIFMT_IB_NF;
2025                 else
2026                         link->dai_fmt |= SND_SOC_DAIFMT_IB_IF;
2027
2028                 /* clock masters */
2029                 bclk_master = (hw_config->bclk_master ==
2030                                SND_SOC_TPLG_BCLK_CM);
2031                 fsync_master = (hw_config->fsync_master ==
2032                                 SND_SOC_TPLG_FSYNC_CM);
2033                 if (bclk_master && fsync_master)
2034                         link->dai_fmt |= SND_SOC_DAIFMT_CBM_CFM;
2035                 else if (!bclk_master && fsync_master)
2036                         link->dai_fmt |= SND_SOC_DAIFMT_CBS_CFM;
2037                 else if (bclk_master && !fsync_master)
2038                         link->dai_fmt |= SND_SOC_DAIFMT_CBM_CFS;
2039                 else
2040                         link->dai_fmt |= SND_SOC_DAIFMT_CBS_CFS;
2041         }
2042 }
2043
2044 /**
2045  * link_new_ver - Create a new physical link config from the old
2046  * version of source.
2047  * @tplg: topology context
2048  * @src: old version of phyical link config as a source
2049  * @link: latest version of physical link config created from the source
2050  *
2051  * Support from vesion 4. User need free the returned link config manually.
2052  */
2053 static int link_new_ver(struct soc_tplg *tplg,
2054                         struct snd_soc_tplg_link_config *src,
2055                         struct snd_soc_tplg_link_config **link)
2056 {
2057         struct snd_soc_tplg_link_config *dest;
2058         struct snd_soc_tplg_link_config_v4 *src_v4;
2059         int i;
2060
2061         *link = NULL;
2062
2063         if (src->size != sizeof(struct snd_soc_tplg_link_config_v4)) {
2064                 dev_err(tplg->dev, "ASoC: invalid physical link config size\n");
2065                 return -EINVAL;
2066         }
2067
2068         dev_warn(tplg->dev, "ASoC: old version of physical link config\n");
2069
2070         src_v4 = (struct snd_soc_tplg_link_config_v4 *)src;
2071         dest = kzalloc(sizeof(*dest), GFP_KERNEL);
2072         if (!dest)
2073                 return -ENOMEM;
2074
2075         dest->size = sizeof(*dest);
2076         dest->id = src_v4->id;
2077         dest->num_streams = src_v4->num_streams;
2078         for (i = 0; i < dest->num_streams; i++)
2079                 memcpy(&dest->stream[i], &src_v4->stream[i],
2080                        sizeof(struct snd_soc_tplg_stream));
2081
2082         *link = dest;
2083         return 0;
2084 }
2085
2086 /* Find and configure an existing physical DAI link */
2087 static int soc_tplg_link_config(struct soc_tplg *tplg,
2088         struct snd_soc_tplg_link_config *cfg)
2089 {
2090         struct snd_soc_dai_link *link;
2091         const char *name, *stream_name;
2092         size_t len;
2093         int ret;
2094
2095         len = strnlen(cfg->name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN);
2096         if (len == SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
2097                 return -EINVAL;
2098         else if (len)
2099                 name = cfg->name;
2100         else
2101                 name = NULL;
2102
2103         len = strnlen(cfg->stream_name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN);
2104         if (len == SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
2105                 return -EINVAL;
2106         else if (len)
2107                 stream_name = cfg->stream_name;
2108         else
2109                 stream_name = NULL;
2110
2111         link = snd_soc_find_dai_link(tplg->comp->card, cfg->id,
2112                                      name, stream_name);
2113         if (!link) {
2114                 dev_err(tplg->dev, "ASoC: physical link %s (id %d) not exist\n",
2115                         name, cfg->id);
2116                 return -EINVAL;
2117         }
2118
2119         /* hw format */
2120         if (cfg->num_hw_configs)
2121                 set_link_hw_format(link, cfg);
2122
2123         /* flags */
2124         if (cfg->flag_mask)
2125                 set_link_flags(link, cfg->flag_mask, cfg->flags);
2126
2127         /* pass control to component driver for optional further init */
2128         ret = soc_tplg_dai_link_load(tplg, link);
2129         if (ret < 0) {
2130                 dev_err(tplg->dev, "ASoC: physical link loading failed\n");
2131                 return ret;
2132         }
2133
2134         return 0;
2135 }
2136
2137
2138 /* Load physical link config elements from the topology context */
2139 static int soc_tplg_link_elems_load(struct soc_tplg *tplg,
2140         struct snd_soc_tplg_hdr *hdr)
2141 {
2142         struct snd_soc_tplg_link_config *link, *_link;
2143         int count = hdr->count;
2144         int i, ret;
2145         bool abi_match;
2146
2147         if (tplg->pass != SOC_TPLG_PASS_LINK) {
2148                 tplg->pos += hdr->size + hdr->payload_size;
2149                 return 0;
2150         };
2151
2152         /* check the element size and count */
2153         link = (struct snd_soc_tplg_link_config *)tplg->pos;
2154         if (link->size > sizeof(struct snd_soc_tplg_link_config)
2155                 || link->size < sizeof(struct snd_soc_tplg_link_config_v4)) {
2156                 dev_err(tplg->dev, "ASoC: invalid size %d for physical link elems\n",
2157                         link->size);
2158                 return -EINVAL;
2159         }
2160
2161         if (soc_tplg_check_elem_count(tplg,
2162                 link->size, count,
2163                 hdr->payload_size, "physical link config")) {
2164                 dev_err(tplg->dev, "ASoC: invalid count %d for physical link elems\n",
2165                         count);
2166                 return -EINVAL;
2167         }
2168
2169         /* config physical DAI links */
2170         for (i = 0; i < count; i++) {
2171                 link = (struct snd_soc_tplg_link_config *)tplg->pos;
2172                 if (link->size == sizeof(*link)) {
2173                         abi_match = true;
2174                         _link = link;
2175                 } else {
2176                         abi_match = false;
2177                         ret = link_new_ver(tplg, link, &_link);
2178                         if (ret < 0)
2179                                 return ret;
2180                 }
2181
2182                 ret = soc_tplg_link_config(tplg, _link);
2183                 if (ret < 0) {
2184                         if (!abi_match)
2185                                 kfree(_link);
2186                         return ret;
2187                 }
2188
2189                 /* offset by version-specific struct size and
2190                  * real priv data size
2191                  */
2192                 tplg->pos += link->size + _link->priv.size;
2193
2194                 if (!abi_match)
2195                         kfree(_link); /* free the duplicated one */
2196         }
2197
2198         return 0;
2199 }
2200
2201 /**
2202  * soc_tplg_dai_config - Find and configure an existing physical DAI.
2203  * @tplg: topology context
2204  * @d: physical DAI configs.
2205  *
2206  * The physical dai should already be registered by the platform driver.
2207  * The platform driver should specify the DAI name and ID for matching.
2208  */
2209 static int soc_tplg_dai_config(struct soc_tplg *tplg,
2210                                struct snd_soc_tplg_dai *d)
2211 {
2212         struct snd_soc_dai_link_component dai_component = {0};
2213         struct snd_soc_dai *dai;
2214         struct snd_soc_dai_driver *dai_drv;
2215         struct snd_soc_pcm_stream *stream;
2216         struct snd_soc_tplg_stream_caps *caps;
2217         int ret;
2218
2219         dai_component.dai_name = d->dai_name;
2220         dai = snd_soc_find_dai(&dai_component);
2221         if (!dai) {
2222                 dev_err(tplg->dev, "ASoC: physical DAI %s not registered\n",
2223                         d->dai_name);
2224                 return -EINVAL;
2225         }
2226
2227         if (d->dai_id != dai->id) {
2228                 dev_err(tplg->dev, "ASoC: physical DAI %s id mismatch\n",
2229                         d->dai_name);
2230                 return -EINVAL;
2231         }
2232
2233         dai_drv = dai->driver;
2234         if (!dai_drv)
2235                 return -EINVAL;
2236
2237         if (d->playback) {
2238                 stream = &dai_drv->playback;
2239                 caps = &d->caps[SND_SOC_TPLG_STREAM_PLAYBACK];
2240                 set_stream_info(stream, caps);
2241         }
2242
2243         if (d->capture) {
2244                 stream = &dai_drv->capture;
2245                 caps = &d->caps[SND_SOC_TPLG_STREAM_CAPTURE];
2246                 set_stream_info(stream, caps);
2247         }
2248
2249         if (d->flag_mask)
2250                 set_dai_flags(dai_drv, d->flag_mask, d->flags);
2251
2252         /* pass control to component driver for optional further init */
2253         ret = soc_tplg_dai_load(tplg, dai_drv);
2254         if (ret < 0) {
2255                 dev_err(tplg->comp->dev, "ASoC: DAI loading failed\n");
2256                 return ret;
2257         }
2258
2259         return 0;
2260 }
2261
2262 /* load physical DAI elements */
2263 static int soc_tplg_dai_elems_load(struct soc_tplg *tplg,
2264                                    struct snd_soc_tplg_hdr *hdr)
2265 {
2266         struct snd_soc_tplg_dai *dai;
2267         int count = hdr->count;
2268         int i;
2269
2270         if (tplg->pass != SOC_TPLG_PASS_BE_DAI)
2271                 return 0;
2272
2273         /* config the existing BE DAIs */
2274         for (i = 0; i < count; i++) {
2275                 dai = (struct snd_soc_tplg_dai *)tplg->pos;
2276                 if (dai->size != sizeof(*dai)) {
2277                         dev_err(tplg->dev, "ASoC: invalid physical DAI size\n");
2278                         return -EINVAL;
2279                 }
2280
2281                 soc_tplg_dai_config(tplg, dai);
2282                 tplg->pos += (sizeof(*dai) + dai->priv.size);
2283         }
2284
2285         dev_dbg(tplg->dev, "ASoC: Configure %d BE DAIs\n", count);
2286         return 0;
2287 }
2288
2289 /**
2290  * manifest_new_ver - Create a new version of manifest from the old version
2291  * of source.
2292  * @tplg: topology context
2293  * @src: old version of manifest as a source
2294  * @manifest: latest version of manifest created from the source
2295  *
2296  * Support from vesion 4. Users need free the returned manifest manually.
2297  */
2298 static int manifest_new_ver(struct soc_tplg *tplg,
2299                             struct snd_soc_tplg_manifest *src,
2300                             struct snd_soc_tplg_manifest **manifest)
2301 {
2302         struct snd_soc_tplg_manifest *dest;
2303         struct snd_soc_tplg_manifest_v4 *src_v4;
2304
2305         *manifest = NULL;
2306
2307         if (src->size != sizeof(*src_v4)) {
2308                 dev_err(tplg->dev, "ASoC: invalid manifest size\n");
2309                 return -EINVAL;
2310         }
2311
2312         dev_warn(tplg->dev, "ASoC: old version of manifest\n");
2313
2314         src_v4 = (struct snd_soc_tplg_manifest_v4 *)src;
2315         dest = kzalloc(sizeof(*dest) + src_v4->priv.size, GFP_KERNEL);
2316         if (!dest)
2317                 return -ENOMEM;
2318
2319         dest->size = sizeof(*dest);     /* size of latest abi version */
2320         dest->control_elems = src_v4->control_elems;
2321         dest->widget_elems = src_v4->widget_elems;
2322         dest->graph_elems = src_v4->graph_elems;
2323         dest->pcm_elems = src_v4->pcm_elems;
2324         dest->dai_link_elems = src_v4->dai_link_elems;
2325         dest->priv.size = src_v4->priv.size;
2326         if (dest->priv.size)
2327                 memcpy(dest->priv.data, src_v4->priv.data,
2328                        src_v4->priv.size);
2329
2330         *manifest = dest;
2331         return 0;
2332 }
2333
2334 static int soc_tplg_manifest_load(struct soc_tplg *tplg,
2335                                   struct snd_soc_tplg_hdr *hdr)
2336 {
2337         struct snd_soc_tplg_manifest *manifest, *_manifest;
2338         bool abi_match;
2339         int ret = 0;
2340
2341         if (tplg->pass != SOC_TPLG_PASS_MANIFEST)
2342                 return 0;
2343
2344         manifest = (struct snd_soc_tplg_manifest *)tplg->pos;
2345
2346         /* check ABI version by size, create a new manifest if abi not match */
2347         if (manifest->size == sizeof(*manifest)) {
2348                 abi_match = true;
2349                 _manifest = manifest;
2350         } else {
2351                 abi_match = false;
2352                 ret = manifest_new_ver(tplg, manifest, &_manifest);
2353                 if (ret < 0)
2354                         return ret;
2355         }
2356
2357         /* pass control to component driver for optional further init */
2358         if (tplg->comp && tplg->ops && tplg->ops->manifest)
2359                 ret = tplg->ops->manifest(tplg->comp, _manifest);
2360
2361         if (!abi_match) /* free the duplicated one */
2362                 kfree(_manifest);
2363
2364         return ret;
2365 }
2366
2367 /* validate header magic, size and type */
2368 static int soc_valid_header(struct soc_tplg *tplg,
2369         struct snd_soc_tplg_hdr *hdr)
2370 {
2371         if (soc_tplg_get_hdr_offset(tplg) >= tplg->fw->size)
2372                 return 0;
2373
2374         if (hdr->size != sizeof(*hdr)) {
2375                 dev_err(tplg->dev,
2376                         "ASoC: invalid header size for type %d at offset 0x%lx size 0x%zx.\n",
2377                         hdr->type, soc_tplg_get_hdr_offset(tplg),
2378                         tplg->fw->size);
2379                 return -EINVAL;
2380         }
2381
2382         /* big endian firmware objects not supported atm */
2383         if (hdr->magic == cpu_to_be32(SND_SOC_TPLG_MAGIC)) {
2384                 dev_err(tplg->dev,
2385                         "ASoC: pass %d big endian not supported header got %x at offset 0x%lx size 0x%zx.\n",
2386                         tplg->pass, hdr->magic,
2387                         soc_tplg_get_hdr_offset(tplg), tplg->fw->size);
2388                 return -EINVAL;
2389         }
2390
2391         if (hdr->magic != SND_SOC_TPLG_MAGIC) {
2392                 dev_err(tplg->dev,
2393                         "ASoC: pass %d does not have a valid header got %x at offset 0x%lx size 0x%zx.\n",
2394                         tplg->pass, hdr->magic,
2395                         soc_tplg_get_hdr_offset(tplg), tplg->fw->size);
2396                 return -EINVAL;
2397         }
2398
2399         /* Support ABI from version 4 */
2400         if (hdr->abi > SND_SOC_TPLG_ABI_VERSION
2401                 || hdr->abi < SND_SOC_TPLG_ABI_VERSION_MIN) {
2402                 dev_err(tplg->dev,
2403                         "ASoC: pass %d invalid ABI version got 0x%x need 0x%x at offset 0x%lx size 0x%zx.\n",
2404                         tplg->pass, hdr->abi,
2405                         SND_SOC_TPLG_ABI_VERSION, soc_tplg_get_hdr_offset(tplg),
2406                         tplg->fw->size);
2407                 return -EINVAL;
2408         }
2409
2410         if (hdr->payload_size == 0) {
2411                 dev_err(tplg->dev, "ASoC: header has 0 size at offset 0x%lx.\n",
2412                         soc_tplg_get_hdr_offset(tplg));
2413                 return -EINVAL;
2414         }
2415
2416         if (tplg->pass == hdr->type)
2417                 dev_dbg(tplg->dev,
2418                         "ASoC: Got 0x%x bytes of type %d version %d vendor %d at pass %d\n",
2419                         hdr->payload_size, hdr->type, hdr->version,
2420                         hdr->vendor_type, tplg->pass);
2421
2422         return 1;
2423 }
2424
2425 /* check header type and call appropriate handler */
2426 static int soc_tplg_load_header(struct soc_tplg *tplg,
2427         struct snd_soc_tplg_hdr *hdr)
2428 {
2429         tplg->pos = tplg->hdr_pos + sizeof(struct snd_soc_tplg_hdr);
2430
2431         /* check for matching ID */
2432         if (hdr->index != tplg->req_index &&
2433                 tplg->req_index != SND_SOC_TPLG_INDEX_ALL)
2434                 return 0;
2435
2436         tplg->index = hdr->index;
2437
2438         switch (hdr->type) {
2439         case SND_SOC_TPLG_TYPE_MIXER:
2440         case SND_SOC_TPLG_TYPE_ENUM:
2441         case SND_SOC_TPLG_TYPE_BYTES:
2442                 return soc_tplg_kcontrol_elems_load(tplg, hdr);
2443         case SND_SOC_TPLG_TYPE_DAPM_GRAPH:
2444                 return soc_tplg_dapm_graph_elems_load(tplg, hdr);
2445         case SND_SOC_TPLG_TYPE_DAPM_WIDGET:
2446                 return soc_tplg_dapm_widget_elems_load(tplg, hdr);
2447         case SND_SOC_TPLG_TYPE_PCM:
2448                 return soc_tplg_pcm_elems_load(tplg, hdr);
2449         case SND_SOC_TPLG_TYPE_DAI:
2450                 return soc_tplg_dai_elems_load(tplg, hdr);
2451         case SND_SOC_TPLG_TYPE_DAI_LINK:
2452         case SND_SOC_TPLG_TYPE_BACKEND_LINK:
2453                 /* physical link configurations */
2454                 return soc_tplg_link_elems_load(tplg, hdr);
2455         case SND_SOC_TPLG_TYPE_MANIFEST:
2456                 return soc_tplg_manifest_load(tplg, hdr);
2457         default:
2458                 /* bespoke vendor data object */
2459                 return soc_tplg_vendor_load(tplg, hdr);
2460         }
2461
2462         return 0;
2463 }
2464
2465 /* process the topology file headers */
2466 static int soc_tplg_process_headers(struct soc_tplg *tplg)
2467 {
2468         struct snd_soc_tplg_hdr *hdr;
2469         int ret;
2470
2471         tplg->pass = SOC_TPLG_PASS_START;
2472
2473         /* process the header types from start to end */
2474         while (tplg->pass <= SOC_TPLG_PASS_END) {
2475
2476                 tplg->hdr_pos = tplg->fw->data;
2477                 hdr = (struct snd_soc_tplg_hdr *)tplg->hdr_pos;
2478
2479                 while (!soc_tplg_is_eof(tplg)) {
2480
2481                         /* make sure header is valid before loading */
2482                         ret = soc_valid_header(tplg, hdr);
2483                         if (ret < 0)
2484                                 return ret;
2485                         else if (ret == 0)
2486                                 break;
2487
2488                         /* load the header object */
2489                         ret = soc_tplg_load_header(tplg, hdr);
2490                         if (ret < 0)
2491                                 return ret;
2492
2493                         /* goto next header */
2494                         tplg->hdr_pos += hdr->payload_size +
2495                                 sizeof(struct snd_soc_tplg_hdr);
2496                         hdr = (struct snd_soc_tplg_hdr *)tplg->hdr_pos;
2497                 }
2498
2499                 /* next data type pass */
2500                 tplg->pass++;
2501         }
2502
2503         /* signal DAPM we are complete */
2504         ret = soc_tplg_dapm_complete(tplg);
2505         if (ret < 0)
2506                 dev_err(tplg->dev,
2507                         "ASoC: failed to initialise DAPM from Firmware\n");
2508
2509         return ret;
2510 }
2511
2512 static int soc_tplg_load(struct soc_tplg *tplg)
2513 {
2514         int ret;
2515
2516         ret = soc_tplg_process_headers(tplg);
2517         if (ret == 0)
2518                 soc_tplg_complete(tplg);
2519
2520         return ret;
2521 }
2522
2523 /* load audio component topology from "firmware" file */
2524 int snd_soc_tplg_component_load(struct snd_soc_component *comp,
2525         struct snd_soc_tplg_ops *ops, const struct firmware *fw, u32 id)
2526 {
2527         struct soc_tplg tplg;
2528         int ret;
2529
2530         /* setup parsing context */
2531         memset(&tplg, 0, sizeof(tplg));
2532         tplg.fw = fw;
2533         tplg.dev = comp->dev;
2534         tplg.comp = comp;
2535         tplg.ops = ops;
2536         tplg.req_index = id;
2537         tplg.io_ops = ops->io_ops;
2538         tplg.io_ops_count = ops->io_ops_count;
2539         tplg.bytes_ext_ops = ops->bytes_ext_ops;
2540         tplg.bytes_ext_ops_count = ops->bytes_ext_ops_count;
2541
2542         ret = soc_tplg_load(&tplg);
2543         /* free the created components if fail to load topology */
2544         if (ret)
2545                 snd_soc_tplg_component_remove(comp, SND_SOC_TPLG_INDEX_ALL);
2546
2547         return ret;
2548 }
2549 EXPORT_SYMBOL_GPL(snd_soc_tplg_component_load);
2550
2551 /* remove this dynamic widget */
2552 void snd_soc_tplg_widget_remove(struct snd_soc_dapm_widget *w)
2553 {
2554         /* make sure we are a widget */
2555         if (w->dobj.type != SND_SOC_DOBJ_WIDGET)
2556                 return;
2557
2558         remove_widget(w->dapm->component, &w->dobj, SOC_TPLG_PASS_WIDGET);
2559 }
2560 EXPORT_SYMBOL_GPL(snd_soc_tplg_widget_remove);
2561
2562 /* remove all dynamic widgets from this DAPM context */
2563 void snd_soc_tplg_widget_remove_all(struct snd_soc_dapm_context *dapm,
2564         u32 index)
2565 {
2566         struct snd_soc_dapm_widget *w, *next_w;
2567
2568         list_for_each_entry_safe(w, next_w, &dapm->card->widgets, list) {
2569
2570                 /* make sure we are a widget with correct context */
2571                 if (w->dobj.type != SND_SOC_DOBJ_WIDGET || w->dapm != dapm)
2572                         continue;
2573
2574                 /* match ID */
2575                 if (w->dobj.index != index &&
2576                         w->dobj.index != SND_SOC_TPLG_INDEX_ALL)
2577                         continue;
2578                 /* check and free and dynamic widget kcontrols */
2579                 snd_soc_tplg_widget_remove(w);
2580                 snd_soc_dapm_free_widget(w);
2581         }
2582         snd_soc_dapm_reset_cache(dapm);
2583 }
2584 EXPORT_SYMBOL_GPL(snd_soc_tplg_widget_remove_all);
2585
2586 /* remove dynamic controls from the component driver */
2587 int snd_soc_tplg_component_remove(struct snd_soc_component *comp, u32 index)
2588 {
2589         struct snd_card *card = comp->card->snd_card;
2590         struct snd_soc_dobj *dobj, *next_dobj;
2591         int pass = SOC_TPLG_PASS_END;
2592
2593         /* process the header types from end to start */
2594         while (pass >= SOC_TPLG_PASS_START) {
2595
2596                 /* remove mixer controls */
2597                 down_write(&card->controls_rwsem);
2598                 list_for_each_entry_safe(dobj, next_dobj, &comp->dobj_list,
2599                         list) {
2600
2601                         /* match index */
2602                         if (dobj->index != index &&
2603                                 index != SND_SOC_TPLG_INDEX_ALL)
2604                                 continue;
2605
2606                         switch (dobj->type) {
2607                         case SND_SOC_DOBJ_MIXER:
2608                                 remove_mixer(comp, dobj, pass);
2609                                 break;
2610                         case SND_SOC_DOBJ_ENUM:
2611                                 remove_enum(comp, dobj, pass);
2612                                 break;
2613                         case SND_SOC_DOBJ_BYTES:
2614                                 remove_bytes(comp, dobj, pass);
2615                                 break;
2616                         case SND_SOC_DOBJ_WIDGET:
2617                                 remove_widget(comp, dobj, pass);
2618                                 break;
2619                         case SND_SOC_DOBJ_PCM:
2620                                 remove_dai(comp, dobj, pass);
2621                                 break;
2622                         case SND_SOC_DOBJ_DAI_LINK:
2623                                 remove_link(comp, dobj, pass);
2624                                 break;
2625                         default:
2626                                 dev_err(comp->dev, "ASoC: invalid component type %d for removal\n",
2627                                         dobj->type);
2628                                 break;
2629                         }
2630                 }
2631                 up_write(&card->controls_rwsem);
2632                 pass--;
2633         }
2634
2635         /* let caller know if FW can be freed when no objects are left */
2636         return !list_empty(&comp->dobj_list);
2637 }
2638 EXPORT_SYMBOL_GPL(snd_soc_tplg_component_remove);