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