GNU Linux-libre 5.4.241-gnu1
[releases.git] / sound / soc / soc-topology.c
1 // SPDX-License-Identifier: GPL-2.0+
2 //
3 // soc-topology.c  --  ALSA SoC Topology
4 //
5 // Copyright (C) 2012 Texas Instruments Inc.
6 // Copyright (C) 2015 Intel Corporation.
7 //
8 // Authors: Liam Girdwood <liam.r.girdwood@linux.intel.com>
9 //              K, Mythri P <mythri.p.k@intel.com>
10 //              Prusty, Subhransu S <subhransu.s.prusty@intel.com>
11 //              B, Jayachandran <jayachandran.b@intel.com>
12 //              Abdullah, Omair M <omair.m.abdullah@intel.com>
13 //              Jin, Yao <yao.jin@intel.com>
14 //              Lin, Mengdong <mengdong.lin@intel.com>
15 //
16 //  Add support to read audio firmware topology alongside firmware text. The
17 //  topology data can contain kcontrols, DAPM graphs, widgets, DAIs, DAI links,
18 //  equalizers, firmware, coefficients etc.
19 //
20 //  This file only manages the core ALSA and ASoC components, all other bespoke
21 //  firmware topology data is passed to component drivers for bespoke handling.
22
23 #include <linux/kernel.h>
24 #include <linux/export.h>
25 #include <linux/list.h>
26 #include <linux/firmware.h>
27 #include <linux/slab.h>
28 #include <sound/soc.h>
29 #include <sound/soc-dapm.h>
30 #include <sound/soc-topology.h>
31 #include <sound/tlv.h>
32
33 #define SOC_TPLG_MAGIC_BIG_ENDIAN            0x436F5341 /* ASoC in reverse */
34
35 /*
36  * We make several passes over the data (since it wont necessarily be ordered)
37  * and process objects in the following order. This guarantees the component
38  * drivers will be ready with any vendor data before the mixers and DAPM objects
39  * are loaded (that may make use of the vendor data).
40  */
41 #define SOC_TPLG_PASS_MANIFEST          0
42 #define SOC_TPLG_PASS_VENDOR            1
43 #define SOC_TPLG_PASS_MIXER             2
44 #define SOC_TPLG_PASS_WIDGET            3
45 #define SOC_TPLG_PASS_PCM_DAI           4
46 #define SOC_TPLG_PASS_GRAPH             5
47 #define SOC_TPLG_PASS_PINS              6
48 #define SOC_TPLG_PASS_BE_DAI            7
49 #define SOC_TPLG_PASS_LINK              8
50
51 #define SOC_TPLG_PASS_START     SOC_TPLG_PASS_MANIFEST
52 #define SOC_TPLG_PASS_END       SOC_TPLG_PASS_LINK
53
54 /* topology context */
55 struct soc_tplg {
56         const struct firmware *fw;
57
58         /* runtime FW parsing */
59         const u8 *pos;          /* read postion */
60         const u8 *hdr_pos;      /* header position */
61         unsigned int pass;      /* pass number */
62
63         /* component caller */
64         struct device *dev;
65         struct snd_soc_component *comp;
66         u32 index;      /* current block index */
67         u32 req_index;  /* required index, only loaded/free matching blocks */
68
69         /* vendor specific kcontrol operations */
70         const struct snd_soc_tplg_kcontrol_ops *io_ops;
71         int io_ops_count;
72
73         /* vendor specific bytes ext handlers, for TLV bytes controls */
74         const struct snd_soc_tplg_bytes_ext_ops *bytes_ext_ops;
75         int bytes_ext_ops_count;
76
77         /* optional fw loading callbacks to component drivers */
78         struct snd_soc_tplg_ops *ops;
79 };
80
81 static int soc_tplg_process_headers(struct soc_tplg *tplg);
82 static void soc_tplg_complete(struct soc_tplg *tplg);
83 static void soc_tplg_denum_remove_texts(struct soc_enum *se);
84 static void soc_tplg_denum_remove_values(struct soc_enum *se);
85
86 /* check we dont overflow the data for this control chunk */
87 static int soc_tplg_check_elem_count(struct soc_tplg *tplg, size_t elem_size,
88         unsigned int count, size_t bytes, const char *elem_type)
89 {
90         const u8 *end = tplg->pos + elem_size * count;
91
92         if (end > tplg->fw->data + tplg->fw->size) {
93                 dev_err(tplg->dev, "ASoC: %s overflow end of data\n",
94                         elem_type);
95                 return -EINVAL;
96         }
97
98         /* check there is enough room in chunk for control.
99            extra bytes at the end of control are for vendor data here  */
100         if (elem_size * count > bytes) {
101                 dev_err(tplg->dev,
102                         "ASoC: %s count %d of size %zu is bigger than chunk %zu\n",
103                         elem_type, count, elem_size, bytes);
104                 return -EINVAL;
105         }
106
107         return 0;
108 }
109
110 static inline int soc_tplg_is_eof(struct soc_tplg *tplg)
111 {
112         const u8 *end = tplg->hdr_pos;
113
114         if (end >= tplg->fw->data + tplg->fw->size)
115                 return 1;
116         return 0;
117 }
118
119 static inline unsigned long soc_tplg_get_hdr_offset(struct soc_tplg *tplg)
120 {
121         return (unsigned long)(tplg->hdr_pos - tplg->fw->data);
122 }
123
124 static inline unsigned long soc_tplg_get_offset(struct soc_tplg *tplg)
125 {
126         return (unsigned long)(tplg->pos - tplg->fw->data);
127 }
128
129 /* mapping of Kcontrol types and associated operations. */
130 static const struct snd_soc_tplg_kcontrol_ops io_ops[] = {
131         {SND_SOC_TPLG_CTL_VOLSW, snd_soc_get_volsw,
132                 snd_soc_put_volsw, snd_soc_info_volsw},
133         {SND_SOC_TPLG_CTL_VOLSW_SX, snd_soc_get_volsw_sx,
134                 snd_soc_put_volsw_sx, NULL},
135         {SND_SOC_TPLG_CTL_ENUM, snd_soc_get_enum_double,
136                 snd_soc_put_enum_double, snd_soc_info_enum_double},
137         {SND_SOC_TPLG_CTL_ENUM_VALUE, snd_soc_get_enum_double,
138                 snd_soc_put_enum_double, NULL},
139         {SND_SOC_TPLG_CTL_BYTES, snd_soc_bytes_get,
140                 snd_soc_bytes_put, snd_soc_bytes_info},
141         {SND_SOC_TPLG_CTL_RANGE, snd_soc_get_volsw_range,
142                 snd_soc_put_volsw_range, snd_soc_info_volsw_range},
143         {SND_SOC_TPLG_CTL_VOLSW_XR_SX, snd_soc_get_xr_sx,
144                 snd_soc_put_xr_sx, snd_soc_info_xr_sx},
145         {SND_SOC_TPLG_CTL_STROBE, snd_soc_get_strobe,
146                 snd_soc_put_strobe, NULL},
147         {SND_SOC_TPLG_DAPM_CTL_VOLSW, snd_soc_dapm_get_volsw,
148                 snd_soc_dapm_put_volsw, snd_soc_info_volsw},
149         {SND_SOC_TPLG_DAPM_CTL_ENUM_DOUBLE, snd_soc_dapm_get_enum_double,
150                 snd_soc_dapm_put_enum_double, snd_soc_info_enum_double},
151         {SND_SOC_TPLG_DAPM_CTL_ENUM_VIRT, snd_soc_dapm_get_enum_double,
152                 snd_soc_dapm_put_enum_double, NULL},
153         {SND_SOC_TPLG_DAPM_CTL_ENUM_VALUE, snd_soc_dapm_get_enum_double,
154                 snd_soc_dapm_put_enum_double, NULL},
155         {SND_SOC_TPLG_DAPM_CTL_PIN, snd_soc_dapm_get_pin_switch,
156                 snd_soc_dapm_put_pin_switch, snd_soc_dapm_info_pin_switch},
157 };
158
159 struct soc_tplg_map {
160         int uid;
161         int kid;
162 };
163
164 /* mapping of widget types from UAPI IDs to kernel IDs */
165 static const struct soc_tplg_map dapm_map[] = {
166         {SND_SOC_TPLG_DAPM_INPUT, snd_soc_dapm_input},
167         {SND_SOC_TPLG_DAPM_OUTPUT, snd_soc_dapm_output},
168         {SND_SOC_TPLG_DAPM_MUX, snd_soc_dapm_mux},
169         {SND_SOC_TPLG_DAPM_MIXER, snd_soc_dapm_mixer},
170         {SND_SOC_TPLG_DAPM_PGA, snd_soc_dapm_pga},
171         {SND_SOC_TPLG_DAPM_OUT_DRV, snd_soc_dapm_out_drv},
172         {SND_SOC_TPLG_DAPM_ADC, snd_soc_dapm_adc},
173         {SND_SOC_TPLG_DAPM_DAC, snd_soc_dapm_dac},
174         {SND_SOC_TPLG_DAPM_SWITCH, snd_soc_dapm_switch},
175         {SND_SOC_TPLG_DAPM_PRE, snd_soc_dapm_pre},
176         {SND_SOC_TPLG_DAPM_POST, snd_soc_dapm_post},
177         {SND_SOC_TPLG_DAPM_AIF_IN, snd_soc_dapm_aif_in},
178         {SND_SOC_TPLG_DAPM_AIF_OUT, snd_soc_dapm_aif_out},
179         {SND_SOC_TPLG_DAPM_DAI_IN, snd_soc_dapm_dai_in},
180         {SND_SOC_TPLG_DAPM_DAI_OUT, snd_soc_dapm_dai_out},
181         {SND_SOC_TPLG_DAPM_DAI_LINK, snd_soc_dapm_dai_link},
182         {SND_SOC_TPLG_DAPM_BUFFER, snd_soc_dapm_buffer},
183         {SND_SOC_TPLG_DAPM_SCHEDULER, snd_soc_dapm_scheduler},
184         {SND_SOC_TPLG_DAPM_EFFECT, snd_soc_dapm_effect},
185         {SND_SOC_TPLG_DAPM_SIGGEN, snd_soc_dapm_siggen},
186         {SND_SOC_TPLG_DAPM_SRC, snd_soc_dapm_src},
187         {SND_SOC_TPLG_DAPM_ASRC, snd_soc_dapm_asrc},
188         {SND_SOC_TPLG_DAPM_ENCODER, snd_soc_dapm_encoder},
189         {SND_SOC_TPLG_DAPM_DECODER, snd_soc_dapm_decoder},
190 };
191
192 static int tplc_chan_get_reg(struct soc_tplg *tplg,
193         struct snd_soc_tplg_channel *chan, int map)
194 {
195         int i;
196
197         for (i = 0; i < SND_SOC_TPLG_MAX_CHAN; i++) {
198                 if (le32_to_cpu(chan[i].id) == map)
199                         return le32_to_cpu(chan[i].reg);
200         }
201
202         return -EINVAL;
203 }
204
205 static int tplc_chan_get_shift(struct soc_tplg *tplg,
206         struct snd_soc_tplg_channel *chan, int map)
207 {
208         int i;
209
210         for (i = 0; i < SND_SOC_TPLG_MAX_CHAN; i++) {
211                 if (le32_to_cpu(chan[i].id) == map)
212                         return le32_to_cpu(chan[i].shift);
213         }
214
215         return -EINVAL;
216 }
217
218 static int get_widget_id(int tplg_type)
219 {
220         int i;
221
222         for (i = 0; i < ARRAY_SIZE(dapm_map); i++) {
223                 if (tplg_type == dapm_map[i].uid)
224                         return dapm_map[i].kid;
225         }
226
227         return -EINVAL;
228 }
229
230 static inline void soc_bind_err(struct soc_tplg *tplg,
231         struct snd_soc_tplg_ctl_hdr *hdr, int index)
232 {
233         dev_err(tplg->dev,
234                 "ASoC: invalid control type (g,p,i) %d:%d:%d index %d at 0x%lx\n",
235                 hdr->ops.get, hdr->ops.put, hdr->ops.info, index,
236                 soc_tplg_get_offset(tplg));
237 }
238
239 static inline void soc_control_err(struct soc_tplg *tplg,
240         struct snd_soc_tplg_ctl_hdr *hdr, const char *name)
241 {
242         dev_err(tplg->dev,
243                 "ASoC: no complete mixer IO handler for %s type (g,p,i) %d:%d:%d at 0x%lx\n",
244                 name, hdr->ops.get, hdr->ops.put, hdr->ops.info,
245                 soc_tplg_get_offset(tplg));
246 }
247
248 /* pass vendor data to component driver for processing */
249 static int soc_tplg_vendor_load_(struct soc_tplg *tplg,
250         struct snd_soc_tplg_hdr *hdr)
251 {
252         int ret = 0;
253
254         if (tplg->comp && tplg->ops && tplg->ops->vendor_load)
255                 ret = tplg->ops->vendor_load(tplg->comp, tplg->index, hdr);
256         else {
257                 dev_err(tplg->dev, "ASoC: no vendor load callback for ID %d\n",
258                         hdr->vendor_type);
259                 return -EINVAL;
260         }
261
262         if (ret < 0)
263                 dev_err(tplg->dev,
264                         "ASoC: vendor load failed at hdr offset %ld/0x%lx for type %d:%d\n",
265                         soc_tplg_get_hdr_offset(tplg),
266                         soc_tplg_get_hdr_offset(tplg),
267                         hdr->type, hdr->vendor_type);
268         return ret;
269 }
270
271 /* pass vendor data to component driver for processing */
272 static int soc_tplg_vendor_load(struct soc_tplg *tplg,
273         struct snd_soc_tplg_hdr *hdr)
274 {
275         if (tplg->pass != SOC_TPLG_PASS_VENDOR)
276                 return 0;
277
278         return soc_tplg_vendor_load_(tplg, hdr);
279 }
280
281 /* optionally pass new dynamic widget to component driver. This is mainly for
282  * external widgets where we can assign private data/ops */
283 static int soc_tplg_widget_load(struct soc_tplg *tplg,
284         struct snd_soc_dapm_widget *w, struct snd_soc_tplg_dapm_widget *tplg_w)
285 {
286         if (tplg->comp && tplg->ops && tplg->ops->widget_load)
287                 return tplg->ops->widget_load(tplg->comp, tplg->index, w,
288                         tplg_w);
289
290         return 0;
291 }
292
293 /* optionally pass new dynamic widget to component driver. This is mainly for
294  * external widgets where we can assign private data/ops */
295 static int soc_tplg_widget_ready(struct soc_tplg *tplg,
296         struct snd_soc_dapm_widget *w, struct snd_soc_tplg_dapm_widget *tplg_w)
297 {
298         if (tplg->comp && tplg->ops && tplg->ops->widget_ready)
299                 return tplg->ops->widget_ready(tplg->comp, tplg->index, w,
300                         tplg_w);
301
302         return 0;
303 }
304
305 /* pass DAI configurations to component driver for extra initialization */
306 static int soc_tplg_dai_load(struct soc_tplg *tplg,
307         struct snd_soc_dai_driver *dai_drv,
308         struct snd_soc_tplg_pcm *pcm, struct snd_soc_dai *dai)
309 {
310         if (tplg->comp && tplg->ops && tplg->ops->dai_load)
311                 return tplg->ops->dai_load(tplg->comp, tplg->index, dai_drv,
312                         pcm, dai);
313
314         return 0;
315 }
316
317 /* pass link configurations to component driver for extra initialization */
318 static int soc_tplg_dai_link_load(struct soc_tplg *tplg,
319         struct snd_soc_dai_link *link, struct snd_soc_tplg_link_config *cfg)
320 {
321         if (tplg->comp && tplg->ops && tplg->ops->link_load)
322                 return tplg->ops->link_load(tplg->comp, tplg->index, link, cfg);
323
324         return 0;
325 }
326
327 /* tell the component driver that all firmware has been loaded in this request */
328 static void soc_tplg_complete(struct soc_tplg *tplg)
329 {
330         if (tplg->comp && tplg->ops && tplg->ops->complete)
331                 tplg->ops->complete(tplg->comp);
332 }
333
334 /* add a dynamic kcontrol */
335 static int soc_tplg_add_dcontrol(struct snd_card *card, struct device *dev,
336         const struct snd_kcontrol_new *control_new, const char *prefix,
337         void *data, struct snd_kcontrol **kcontrol)
338 {
339         int err;
340
341         *kcontrol = snd_soc_cnew(control_new, data, control_new->name, prefix);
342         if (*kcontrol == NULL) {
343                 dev_err(dev, "ASoC: Failed to create new kcontrol %s\n",
344                 control_new->name);
345                 return -ENOMEM;
346         }
347
348         err = snd_ctl_add(card, *kcontrol);
349         if (err < 0) {
350                 dev_err(dev, "ASoC: Failed to add %s: %d\n",
351                         control_new->name, err);
352                 return err;
353         }
354
355         return 0;
356 }
357
358 /* add a dynamic kcontrol for component driver */
359 static int soc_tplg_add_kcontrol(struct soc_tplg *tplg,
360         struct snd_kcontrol_new *k, struct snd_kcontrol **kcontrol)
361 {
362         struct snd_soc_component *comp = tplg->comp;
363
364         return soc_tplg_add_dcontrol(comp->card->snd_card,
365                                 comp->dev, k, comp->name_prefix, comp, kcontrol);
366 }
367
368 /* remove a mixer kcontrol */
369 static void remove_mixer(struct snd_soc_component *comp,
370         struct snd_soc_dobj *dobj, int pass)
371 {
372         struct snd_card *card = comp->card->snd_card;
373         struct soc_mixer_control *sm =
374                 container_of(dobj, struct soc_mixer_control, dobj);
375         const unsigned int *p = NULL;
376
377         if (pass != SOC_TPLG_PASS_MIXER)
378                 return;
379
380         if (dobj->ops && dobj->ops->control_unload)
381                 dobj->ops->control_unload(comp, dobj);
382
383         if (dobj->control.kcontrol->tlv.p)
384                 p = dobj->control.kcontrol->tlv.p;
385         snd_ctl_remove(card, dobj->control.kcontrol);
386         list_del(&dobj->list);
387         kfree(sm);
388         kfree(p);
389 }
390
391 /* remove an enum kcontrol */
392 static void remove_enum(struct snd_soc_component *comp,
393         struct snd_soc_dobj *dobj, int pass)
394 {
395         struct snd_card *card = comp->card->snd_card;
396         struct soc_enum *se = container_of(dobj, struct soc_enum, dobj);
397
398         if (pass != SOC_TPLG_PASS_MIXER)
399                 return;
400
401         if (dobj->ops && dobj->ops->control_unload)
402                 dobj->ops->control_unload(comp, dobj);
403
404         snd_ctl_remove(card, dobj->control.kcontrol);
405         list_del(&dobj->list);
406
407         soc_tplg_denum_remove_values(se);
408         soc_tplg_denum_remove_texts(se);
409         kfree(se);
410 }
411
412 /* remove a byte kcontrol */
413 static void remove_bytes(struct snd_soc_component *comp,
414         struct snd_soc_dobj *dobj, int pass)
415 {
416         struct snd_card *card = comp->card->snd_card;
417         struct soc_bytes_ext *sb =
418                 container_of(dobj, struct soc_bytes_ext, dobj);
419
420         if (pass != SOC_TPLG_PASS_MIXER)
421                 return;
422
423         if (dobj->ops && dobj->ops->control_unload)
424                 dobj->ops->control_unload(comp, dobj);
425
426         snd_ctl_remove(card, dobj->control.kcontrol);
427         list_del(&dobj->list);
428         kfree(sb);
429 }
430
431 /* remove a route */
432 static void remove_route(struct snd_soc_component *comp,
433                          struct snd_soc_dobj *dobj, int pass)
434 {
435         struct snd_soc_dapm_route *route =
436                 container_of(dobj, struct snd_soc_dapm_route, dobj);
437
438         if (pass != SOC_TPLG_PASS_GRAPH)
439                 return;
440
441         if (dobj->ops && dobj->ops->dapm_route_unload)
442                 dobj->ops->dapm_route_unload(comp, dobj);
443
444         list_del(&dobj->list);
445         kfree(route);
446 }
447
448 /* remove a widget and it's kcontrols - routes must be removed first */
449 static void remove_widget(struct snd_soc_component *comp,
450         struct snd_soc_dobj *dobj, int pass)
451 {
452         struct snd_card *card = comp->card->snd_card;
453         struct snd_soc_dapm_widget *w =
454                 container_of(dobj, struct snd_soc_dapm_widget, dobj);
455         int i;
456
457         if (pass != SOC_TPLG_PASS_WIDGET)
458                 return;
459
460         if (dobj->ops && dobj->ops->widget_unload)
461                 dobj->ops->widget_unload(comp, dobj);
462
463         if (!w->kcontrols)
464                 goto free_news;
465
466         /*
467          * Dynamic Widgets either have 1..N enum kcontrols or mixers.
468          * The enum may either have an array of values or strings.
469          */
470         if (dobj->widget.kcontrol_type == SND_SOC_TPLG_TYPE_ENUM) {
471                 /* enumerated widget mixer */
472                 for (i = 0; w->kcontrols != NULL && i < w->num_kcontrols; i++) {
473                         struct snd_kcontrol *kcontrol = w->kcontrols[i];
474                         struct soc_enum *se =
475                                 (struct soc_enum *)kcontrol->private_value;
476
477                         snd_ctl_remove(card, kcontrol);
478
479                         /* free enum kcontrol's dvalues and dtexts */
480                         soc_tplg_denum_remove_values(se);
481                         soc_tplg_denum_remove_texts(se);
482
483                         kfree(se);
484                         kfree(w->kcontrol_news[i].name);
485                 }
486         } else {
487                 /* volume mixer or bytes controls */
488                 for (i = 0; w->kcontrols != NULL && i < w->num_kcontrols; i++) {
489                         struct snd_kcontrol *kcontrol = w->kcontrols[i];
490
491                         if (dobj->widget.kcontrol_type
492                             == SND_SOC_TPLG_TYPE_MIXER)
493                                 kfree(kcontrol->tlv.p);
494
495                         /* Private value is used as struct soc_mixer_control
496                          * for volume mixers or soc_bytes_ext for bytes
497                          * controls.
498                          */
499                         kfree((void *)kcontrol->private_value);
500                         snd_ctl_remove(card, kcontrol);
501                         kfree(w->kcontrol_news[i].name);
502                 }
503         }
504
505 free_news:
506         kfree(w->kcontrol_news);
507
508         list_del(&dobj->list);
509
510         /* widget w is freed by soc-dapm.c */
511 }
512
513 /* remove DAI configurations */
514 static void remove_dai(struct snd_soc_component *comp,
515         struct snd_soc_dobj *dobj, int pass)
516 {
517         struct snd_soc_dai_driver *dai_drv =
518                 container_of(dobj, struct snd_soc_dai_driver, dobj);
519         struct snd_soc_dai *dai;
520
521         if (pass != SOC_TPLG_PASS_PCM_DAI)
522                 return;
523
524         if (dobj->ops && dobj->ops->dai_unload)
525                 dobj->ops->dai_unload(comp, dobj);
526
527         for_each_component_dais(comp, dai)
528                 if (dai->driver == dai_drv)
529                         dai->driver = NULL;
530
531         kfree(dai_drv->playback.stream_name);
532         kfree(dai_drv->capture.stream_name);
533         kfree(dai_drv->name);
534         list_del(&dobj->list);
535         kfree(dai_drv);
536 }
537
538 /* remove link configurations */
539 static void remove_link(struct snd_soc_component *comp,
540         struct snd_soc_dobj *dobj, int pass)
541 {
542         struct snd_soc_dai_link *link =
543                 container_of(dobj, struct snd_soc_dai_link, dobj);
544
545         if (pass != SOC_TPLG_PASS_PCM_DAI)
546                 return;
547
548         if (dobj->ops && dobj->ops->link_unload)
549                 dobj->ops->link_unload(comp, dobj);
550
551         list_del(&dobj->list);
552         snd_soc_remove_dai_link(comp->card, link);
553
554         kfree(link->name);
555         kfree(link->stream_name);
556         kfree(link->cpus->dai_name);
557         kfree(link);
558 }
559
560 /* unload dai link */
561 static void remove_backend_link(struct snd_soc_component *comp,
562         struct snd_soc_dobj *dobj, int pass)
563 {
564         if (pass != SOC_TPLG_PASS_LINK)
565                 return;
566
567         if (dobj->ops && dobj->ops->link_unload)
568                 dobj->ops->link_unload(comp, dobj);
569
570         /*
571          * We don't free the link here as what remove_link() do since BE
572          * links are not allocated by topology.
573          * We however need to reset the dobj type to its initial values
574          */
575         dobj->type = SND_SOC_DOBJ_NONE;
576         list_del(&dobj->list);
577 }
578
579 /* bind a kcontrol to it's IO handlers */
580 static int soc_tplg_kcontrol_bind_io(struct snd_soc_tplg_ctl_hdr *hdr,
581         struct snd_kcontrol_new *k,
582         const struct soc_tplg *tplg)
583 {
584         const struct snd_soc_tplg_kcontrol_ops *ops;
585         const struct snd_soc_tplg_bytes_ext_ops *ext_ops;
586         int num_ops, i;
587
588         if (le32_to_cpu(hdr->ops.info) == SND_SOC_TPLG_CTL_BYTES
589                 && k->iface & SNDRV_CTL_ELEM_IFACE_MIXER
590                 && (k->access & SNDRV_CTL_ELEM_ACCESS_TLV_READ
591                     || k->access & SNDRV_CTL_ELEM_ACCESS_TLV_WRITE)
592                 && k->access & SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK) {
593                 struct soc_bytes_ext *sbe;
594                 struct snd_soc_tplg_bytes_control *be;
595
596                 sbe = (struct soc_bytes_ext *)k->private_value;
597                 be = container_of(hdr, struct snd_soc_tplg_bytes_control, hdr);
598
599                 /* TLV bytes controls need standard kcontrol info handler,
600                  * TLV callback and extended put/get handlers.
601                  */
602                 k->info = snd_soc_bytes_info_ext;
603                 k->tlv.c = snd_soc_bytes_tlv_callback;
604
605                 ext_ops = tplg->bytes_ext_ops;
606                 num_ops = tplg->bytes_ext_ops_count;
607                 for (i = 0; i < num_ops; i++) {
608                         if (!sbe->put &&
609                             ext_ops[i].id == le32_to_cpu(be->ext_ops.put))
610                                 sbe->put = ext_ops[i].put;
611                         if (!sbe->get &&
612                             ext_ops[i].id == le32_to_cpu(be->ext_ops.get))
613                                 sbe->get = ext_ops[i].get;
614                 }
615
616                 if (sbe->put && sbe->get)
617                         return 0;
618                 else
619                         return -EINVAL;
620         }
621
622         /* try and map vendor specific kcontrol handlers first */
623         ops = tplg->io_ops;
624         num_ops = tplg->io_ops_count;
625         for (i = 0; i < num_ops; i++) {
626
627                 if (k->put == NULL && ops[i].id == le32_to_cpu(hdr->ops.put))
628                         k->put = ops[i].put;
629                 if (k->get == NULL && ops[i].id == le32_to_cpu(hdr->ops.get))
630                         k->get = ops[i].get;
631                 if (k->info == NULL && ops[i].id == le32_to_cpu(hdr->ops.info))
632                         k->info = ops[i].info;
633         }
634
635         /* vendor specific handlers found ? */
636         if (k->put && k->get && k->info)
637                 return 0;
638
639         /* none found so try standard kcontrol handlers */
640         ops = io_ops;
641         num_ops = ARRAY_SIZE(io_ops);
642         for (i = 0; i < num_ops; i++) {
643
644                 if (k->put == NULL && ops[i].id == le32_to_cpu(hdr->ops.put))
645                         k->put = ops[i].put;
646                 if (k->get == NULL && ops[i].id == le32_to_cpu(hdr->ops.get))
647                         k->get = ops[i].get;
648                 if (k->info == NULL && ops[i].id == le32_to_cpu(hdr->ops.info))
649                         k->info = ops[i].info;
650         }
651
652         /* standard handlers found ? */
653         if (k->put && k->get && k->info)
654                 return 0;
655
656         /* nothing to bind */
657         return -EINVAL;
658 }
659
660 /* bind a widgets to it's evnt handlers */
661 int snd_soc_tplg_widget_bind_event(struct snd_soc_dapm_widget *w,
662                 const struct snd_soc_tplg_widget_events *events,
663                 int num_events, u16 event_type)
664 {
665         int i;
666
667         w->event = NULL;
668
669         for (i = 0; i < num_events; i++) {
670                 if (event_type == events[i].type) {
671
672                         /* found - so assign event */
673                         w->event = events[i].event_handler;
674                         return 0;
675                 }
676         }
677
678         /* not found */
679         return -EINVAL;
680 }
681 EXPORT_SYMBOL_GPL(snd_soc_tplg_widget_bind_event);
682
683 /* optionally pass new dynamic kcontrol to component driver. */
684 static int soc_tplg_init_kcontrol(struct soc_tplg *tplg,
685         struct snd_kcontrol_new *k, struct snd_soc_tplg_ctl_hdr *hdr)
686 {
687         if (tplg->comp && tplg->ops && tplg->ops->control_load)
688                 return tplg->ops->control_load(tplg->comp, tplg->index, k,
689                         hdr);
690
691         return 0;
692 }
693
694
695 static int soc_tplg_create_tlv_db_scale(struct soc_tplg *tplg,
696         struct snd_kcontrol_new *kc, struct snd_soc_tplg_tlv_dbscale *scale)
697 {
698         unsigned int item_len = 2 * sizeof(unsigned int);
699         unsigned int *p;
700
701         p = kzalloc(item_len + 2 * sizeof(unsigned int), GFP_KERNEL);
702         if (!p)
703                 return -ENOMEM;
704
705         p[0] = SNDRV_CTL_TLVT_DB_SCALE;
706         p[1] = item_len;
707         p[2] = le32_to_cpu(scale->min);
708         p[3] = (le32_to_cpu(scale->step) & TLV_DB_SCALE_MASK)
709                 | (le32_to_cpu(scale->mute) ? TLV_DB_SCALE_MUTE : 0);
710
711         kc->tlv.p = (void *)p;
712         return 0;
713 }
714
715 static int soc_tplg_create_tlv(struct soc_tplg *tplg,
716         struct snd_kcontrol_new *kc, struct snd_soc_tplg_ctl_hdr *tc)
717 {
718         struct snd_soc_tplg_ctl_tlv *tplg_tlv;
719         u32 access = le32_to_cpu(tc->access);
720
721         if (!(access & SNDRV_CTL_ELEM_ACCESS_TLV_READWRITE))
722                 return 0;
723
724         if (!(access & SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK)) {
725                 tplg_tlv = &tc->tlv;
726                 switch (le32_to_cpu(tplg_tlv->type)) {
727                 case SNDRV_CTL_TLVT_DB_SCALE:
728                         return soc_tplg_create_tlv_db_scale(tplg, kc,
729                                         &tplg_tlv->scale);
730
731                 /* TODO: add support for other TLV types */
732                 default:
733                         dev_dbg(tplg->dev, "Unsupported TLV type %d\n",
734                                         tplg_tlv->type);
735                         return -EINVAL;
736                 }
737         }
738
739         return 0;
740 }
741
742 static inline void soc_tplg_free_tlv(struct soc_tplg *tplg,
743         struct snd_kcontrol_new *kc)
744 {
745         kfree(kc->tlv.p);
746 }
747
748 static int soc_tplg_dbytes_create(struct soc_tplg *tplg, unsigned int count,
749         size_t size)
750 {
751         struct snd_soc_tplg_bytes_control *be;
752         struct soc_bytes_ext *sbe;
753         struct snd_kcontrol_new kc;
754         int i, err;
755
756         if (soc_tplg_check_elem_count(tplg,
757                 sizeof(struct snd_soc_tplg_bytes_control), count,
758                         size, "mixer bytes")) {
759                 dev_err(tplg->dev, "ASoC: Invalid count %d for byte control\n",
760                         count);
761                 return -EINVAL;
762         }
763
764         for (i = 0; i < count; i++) {
765                 be = (struct snd_soc_tplg_bytes_control *)tplg->pos;
766
767                 /* validate kcontrol */
768                 if (strnlen(be->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
769                         SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
770                         return -EINVAL;
771
772                 sbe = kzalloc(sizeof(*sbe), GFP_KERNEL);
773                 if (sbe == NULL)
774                         return -ENOMEM;
775
776                 tplg->pos += (sizeof(struct snd_soc_tplg_bytes_control) +
777                               le32_to_cpu(be->priv.size));
778
779                 dev_dbg(tplg->dev,
780                         "ASoC: adding bytes kcontrol %s with access 0x%x\n",
781                         be->hdr.name, be->hdr.access);
782
783                 memset(&kc, 0, sizeof(kc));
784                 kc.name = be->hdr.name;
785                 kc.private_value = (long)sbe;
786                 kc.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
787                 kc.access = le32_to_cpu(be->hdr.access);
788
789                 sbe->max = le32_to_cpu(be->max);
790                 sbe->dobj.type = SND_SOC_DOBJ_BYTES;
791                 sbe->dobj.ops = tplg->ops;
792                 INIT_LIST_HEAD(&sbe->dobj.list);
793
794                 /* map io handlers */
795                 err = soc_tplg_kcontrol_bind_io(&be->hdr, &kc, tplg);
796                 if (err) {
797                         soc_control_err(tplg, &be->hdr, be->hdr.name);
798                         kfree(sbe);
799                         continue;
800                 }
801
802                 /* pass control to driver for optional further init */
803                 err = soc_tplg_init_kcontrol(tplg, &kc,
804                         (struct snd_soc_tplg_ctl_hdr *)be);
805                 if (err < 0) {
806                         dev_err(tplg->dev, "ASoC: failed to init %s\n",
807                                 be->hdr.name);
808                         kfree(sbe);
809                         continue;
810                 }
811
812                 /* register control here */
813                 err = soc_tplg_add_kcontrol(tplg, &kc,
814                         &sbe->dobj.control.kcontrol);
815                 if (err < 0) {
816                         dev_err(tplg->dev, "ASoC: failed to add %s\n",
817                                 be->hdr.name);
818                         kfree(sbe);
819                         continue;
820                 }
821
822                 list_add(&sbe->dobj.list, &tplg->comp->dobj_list);
823         }
824         return 0;
825
826 }
827
828 static int soc_tplg_dmixer_create(struct soc_tplg *tplg, unsigned int count,
829         size_t size)
830 {
831         struct snd_soc_tplg_mixer_control *mc;
832         struct soc_mixer_control *sm;
833         struct snd_kcontrol_new kc;
834         int i, err;
835
836         if (soc_tplg_check_elem_count(tplg,
837                 sizeof(struct snd_soc_tplg_mixer_control),
838                 count, size, "mixers")) {
839
840                 dev_err(tplg->dev, "ASoC: invalid count %d for controls\n",
841                         count);
842                 return -EINVAL;
843         }
844
845         for (i = 0; i < count; i++) {
846                 mc = (struct snd_soc_tplg_mixer_control *)tplg->pos;
847
848                 /* validate kcontrol */
849                 if (strnlen(mc->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
850                         SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
851                         return -EINVAL;
852
853                 sm = kzalloc(sizeof(*sm), GFP_KERNEL);
854                 if (sm == NULL)
855                         return -ENOMEM;
856                 tplg->pos += (sizeof(struct snd_soc_tplg_mixer_control) +
857                               le32_to_cpu(mc->priv.size));
858
859                 dev_dbg(tplg->dev,
860                         "ASoC: adding mixer kcontrol %s with access 0x%x\n",
861                         mc->hdr.name, mc->hdr.access);
862
863                 memset(&kc, 0, sizeof(kc));
864                 kc.name = mc->hdr.name;
865                 kc.private_value = (long)sm;
866                 kc.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
867                 kc.access = le32_to_cpu(mc->hdr.access);
868
869                 /* we only support FL/FR channel mapping atm */
870                 sm->reg = tplc_chan_get_reg(tplg, mc->channel,
871                         SNDRV_CHMAP_FL);
872                 sm->rreg = tplc_chan_get_reg(tplg, mc->channel,
873                         SNDRV_CHMAP_FR);
874                 sm->shift = tplc_chan_get_shift(tplg, mc->channel,
875                         SNDRV_CHMAP_FL);
876                 sm->rshift = tplc_chan_get_shift(tplg, mc->channel,
877                         SNDRV_CHMAP_FR);
878
879                 sm->max = le32_to_cpu(mc->max);
880                 sm->min = le32_to_cpu(mc->min);
881                 sm->invert = le32_to_cpu(mc->invert);
882                 sm->platform_max = le32_to_cpu(mc->platform_max);
883                 sm->dobj.index = tplg->index;
884                 sm->dobj.ops = tplg->ops;
885                 sm->dobj.type = SND_SOC_DOBJ_MIXER;
886                 INIT_LIST_HEAD(&sm->dobj.list);
887
888                 /* map io handlers */
889                 err = soc_tplg_kcontrol_bind_io(&mc->hdr, &kc, tplg);
890                 if (err) {
891                         soc_control_err(tplg, &mc->hdr, mc->hdr.name);
892                         kfree(sm);
893                         continue;
894                 }
895
896                 /* create any TLV data */
897                 err = soc_tplg_create_tlv(tplg, &kc, &mc->hdr);
898                 if (err < 0) {
899                         dev_err(tplg->dev, "ASoC: failed to create TLV %s\n",
900                                 mc->hdr.name);
901                         kfree(sm);
902                         continue;
903                 }
904
905                 /* pass control to driver for optional further init */
906                 err = soc_tplg_init_kcontrol(tplg, &kc,
907                         (struct snd_soc_tplg_ctl_hdr *) mc);
908                 if (err < 0) {
909                         dev_err(tplg->dev, "ASoC: failed to init %s\n",
910                                 mc->hdr.name);
911                         soc_tplg_free_tlv(tplg, &kc);
912                         kfree(sm);
913                         continue;
914                 }
915
916                 /* register control here */
917                 err = soc_tplg_add_kcontrol(tplg, &kc,
918                         &sm->dobj.control.kcontrol);
919                 if (err < 0) {
920                         dev_err(tplg->dev, "ASoC: failed to add %s\n",
921                                 mc->hdr.name);
922                         soc_tplg_free_tlv(tplg, &kc);
923                         kfree(sm);
924                         continue;
925                 }
926
927                 list_add(&sm->dobj.list, &tplg->comp->dobj_list);
928         }
929
930         return 0;
931 }
932
933 static int soc_tplg_denum_create_texts(struct soc_enum *se,
934         struct snd_soc_tplg_enum_control *ec)
935 {
936         int i, ret;
937
938         se->dobj.control.dtexts =
939                 kcalloc(le32_to_cpu(ec->items), sizeof(char *), GFP_KERNEL);
940         if (se->dobj.control.dtexts == NULL)
941                 return -ENOMEM;
942
943         for (i = 0; i < le32_to_cpu(ec->items); i++) {
944
945                 if (strnlen(ec->texts[i], SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
946                         SNDRV_CTL_ELEM_ID_NAME_MAXLEN) {
947                         ret = -EINVAL;
948                         goto err;
949                 }
950
951                 se->dobj.control.dtexts[i] = kstrdup(ec->texts[i], GFP_KERNEL);
952                 if (!se->dobj.control.dtexts[i]) {
953                         ret = -ENOMEM;
954                         goto err;
955                 }
956         }
957
958         se->items = le32_to_cpu(ec->items);
959         se->texts = (const char * const *)se->dobj.control.dtexts;
960         return 0;
961
962 err:
963         se->items = i;
964         soc_tplg_denum_remove_texts(se);
965         return ret;
966 }
967
968 static inline void soc_tplg_denum_remove_texts(struct soc_enum *se)
969 {
970         int i = se->items;
971
972         for (--i; i >= 0; i--)
973                 kfree(se->dobj.control.dtexts[i]);
974         kfree(se->dobj.control.dtexts);
975 }
976
977 static int soc_tplg_denum_create_values(struct soc_enum *se,
978         struct snd_soc_tplg_enum_control *ec)
979 {
980         int i;
981
982         if (le32_to_cpu(ec->items) > sizeof(*ec->values))
983                 return -EINVAL;
984
985         se->dobj.control.dvalues = kzalloc(le32_to_cpu(ec->items) *
986                                            sizeof(*se->dobj.control.dvalues),
987                                            GFP_KERNEL);
988         if (!se->dobj.control.dvalues)
989                 return -ENOMEM;
990
991         /* convert from little-endian */
992         for (i = 0; i < le32_to_cpu(ec->items); i++) {
993                 se->dobj.control.dvalues[i] = le32_to_cpu(ec->values[i]);
994         }
995
996         return 0;
997 }
998
999 static inline void soc_tplg_denum_remove_values(struct soc_enum *se)
1000 {
1001         kfree(se->dobj.control.dvalues);
1002 }
1003
1004 static int soc_tplg_denum_create(struct soc_tplg *tplg, unsigned int count,
1005         size_t size)
1006 {
1007         struct snd_soc_tplg_enum_control *ec;
1008         struct soc_enum *se;
1009         struct snd_kcontrol_new kc;
1010         int i, ret, err;
1011
1012         if (soc_tplg_check_elem_count(tplg,
1013                 sizeof(struct snd_soc_tplg_enum_control),
1014                 count, size, "enums")) {
1015
1016                 dev_err(tplg->dev, "ASoC: invalid count %d for enum controls\n",
1017                         count);
1018                 return -EINVAL;
1019         }
1020
1021         for (i = 0; i < count; i++) {
1022                 ec = (struct snd_soc_tplg_enum_control *)tplg->pos;
1023
1024                 /* validate kcontrol */
1025                 if (strnlen(ec->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1026                         SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
1027                         return -EINVAL;
1028
1029                 se = kzalloc((sizeof(*se)), GFP_KERNEL);
1030                 if (se == NULL)
1031                         return -ENOMEM;
1032
1033                 tplg->pos += (sizeof(struct snd_soc_tplg_enum_control) +
1034                               le32_to_cpu(ec->priv.size));
1035
1036                 dev_dbg(tplg->dev, "ASoC: adding enum kcontrol %s size %d\n",
1037                         ec->hdr.name, ec->items);
1038
1039                 memset(&kc, 0, sizeof(kc));
1040                 kc.name = ec->hdr.name;
1041                 kc.private_value = (long)se;
1042                 kc.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
1043                 kc.access = le32_to_cpu(ec->hdr.access);
1044
1045                 se->reg = tplc_chan_get_reg(tplg, ec->channel, SNDRV_CHMAP_FL);
1046                 se->shift_l = tplc_chan_get_shift(tplg, ec->channel,
1047                         SNDRV_CHMAP_FL);
1048                 se->shift_r = tplc_chan_get_shift(tplg, ec->channel,
1049                         SNDRV_CHMAP_FL);
1050
1051                 se->mask = le32_to_cpu(ec->mask);
1052                 se->dobj.index = tplg->index;
1053                 se->dobj.type = SND_SOC_DOBJ_ENUM;
1054                 se->dobj.ops = tplg->ops;
1055                 INIT_LIST_HEAD(&se->dobj.list);
1056
1057                 switch (le32_to_cpu(ec->hdr.ops.info)) {
1058                 case SND_SOC_TPLG_DAPM_CTL_ENUM_VALUE:
1059                 case SND_SOC_TPLG_CTL_ENUM_VALUE:
1060                         err = soc_tplg_denum_create_values(se, ec);
1061                         if (err < 0) {
1062                                 dev_err(tplg->dev,
1063                                         "ASoC: could not create values for %s\n",
1064                                         ec->hdr.name);
1065                                 kfree(se);
1066                                 continue;
1067                         }
1068                         /* fall through */
1069                 case SND_SOC_TPLG_CTL_ENUM:
1070                 case SND_SOC_TPLG_DAPM_CTL_ENUM_DOUBLE:
1071                 case SND_SOC_TPLG_DAPM_CTL_ENUM_VIRT:
1072                         err = soc_tplg_denum_create_texts(se, ec);
1073                         if (err < 0) {
1074                                 dev_err(tplg->dev,
1075                                         "ASoC: could not create texts for %s\n",
1076                                         ec->hdr.name);
1077                                 kfree(se);
1078                                 continue;
1079                         }
1080                         break;
1081                 default:
1082                         dev_err(tplg->dev,
1083                                 "ASoC: invalid enum control type %d for %s\n",
1084                                 ec->hdr.ops.info, ec->hdr.name);
1085                         kfree(se);
1086                         continue;
1087                 }
1088
1089                 /* map io handlers */
1090                 err = soc_tplg_kcontrol_bind_io(&ec->hdr, &kc, tplg);
1091                 if (err) {
1092                         soc_control_err(tplg, &ec->hdr, ec->hdr.name);
1093                         kfree(se);
1094                         continue;
1095                 }
1096
1097                 /* pass control to driver for optional further init */
1098                 err = soc_tplg_init_kcontrol(tplg, &kc,
1099                         (struct snd_soc_tplg_ctl_hdr *) ec);
1100                 if (err < 0) {
1101                         dev_err(tplg->dev, "ASoC: failed to init %s\n",
1102                                 ec->hdr.name);
1103                         kfree(se);
1104                         continue;
1105                 }
1106
1107                 /* register control here */
1108                 ret = soc_tplg_add_kcontrol(tplg,
1109                         &kc, &se->dobj.control.kcontrol);
1110                 if (ret < 0) {
1111                         dev_err(tplg->dev, "ASoC: could not add kcontrol %s\n",
1112                                 ec->hdr.name);
1113                         kfree(se);
1114                         continue;
1115                 }
1116
1117                 list_add(&se->dobj.list, &tplg->comp->dobj_list);
1118         }
1119
1120         return 0;
1121 }
1122
1123 static int soc_tplg_kcontrol_elems_load(struct soc_tplg *tplg,
1124         struct snd_soc_tplg_hdr *hdr)
1125 {
1126         struct snd_soc_tplg_ctl_hdr *control_hdr;
1127         int ret;
1128         int i;
1129
1130         if (tplg->pass != SOC_TPLG_PASS_MIXER) {
1131                 tplg->pos += le32_to_cpu(hdr->size) +
1132                         le32_to_cpu(hdr->payload_size);
1133                 return 0;
1134         }
1135
1136         dev_dbg(tplg->dev, "ASoC: adding %d kcontrols at 0x%lx\n", hdr->count,
1137                 soc_tplg_get_offset(tplg));
1138
1139         for (i = 0; i < le32_to_cpu(hdr->count); i++) {
1140
1141                 control_hdr = (struct snd_soc_tplg_ctl_hdr *)tplg->pos;
1142
1143                 if (le32_to_cpu(control_hdr->size) != sizeof(*control_hdr)) {
1144                         dev_err(tplg->dev, "ASoC: invalid control size\n");
1145                         return -EINVAL;
1146                 }
1147
1148                 switch (le32_to_cpu(control_hdr->ops.info)) {
1149                 case SND_SOC_TPLG_CTL_VOLSW:
1150                 case SND_SOC_TPLG_CTL_STROBE:
1151                 case SND_SOC_TPLG_CTL_VOLSW_SX:
1152                 case SND_SOC_TPLG_CTL_VOLSW_XR_SX:
1153                 case SND_SOC_TPLG_CTL_RANGE:
1154                 case SND_SOC_TPLG_DAPM_CTL_VOLSW:
1155                 case SND_SOC_TPLG_DAPM_CTL_PIN:
1156                         ret = soc_tplg_dmixer_create(tplg, 1,
1157                                         le32_to_cpu(hdr->payload_size));
1158                         break;
1159                 case SND_SOC_TPLG_CTL_ENUM:
1160                 case SND_SOC_TPLG_CTL_ENUM_VALUE:
1161                 case SND_SOC_TPLG_DAPM_CTL_ENUM_DOUBLE:
1162                 case SND_SOC_TPLG_DAPM_CTL_ENUM_VIRT:
1163                 case SND_SOC_TPLG_DAPM_CTL_ENUM_VALUE:
1164                         ret = soc_tplg_denum_create(tplg, 1,
1165                                         le32_to_cpu(hdr->payload_size));
1166                         break;
1167                 case SND_SOC_TPLG_CTL_BYTES:
1168                         ret = soc_tplg_dbytes_create(tplg, 1,
1169                                         le32_to_cpu(hdr->payload_size));
1170                         break;
1171                 default:
1172                         soc_bind_err(tplg, control_hdr, i);
1173                         return -EINVAL;
1174                 }
1175                 if (ret < 0) {
1176                         dev_err(tplg->dev, "ASoC: invalid control\n");
1177                         return ret;
1178                 }
1179
1180         }
1181
1182         return 0;
1183 }
1184
1185 /* optionally pass new dynamic kcontrol to component driver. */
1186 static int soc_tplg_add_route(struct soc_tplg *tplg,
1187         struct snd_soc_dapm_route *route)
1188 {
1189         if (tplg->comp && tplg->ops && tplg->ops->dapm_route_load)
1190                 return tplg->ops->dapm_route_load(tplg->comp, tplg->index,
1191                         route);
1192
1193         return 0;
1194 }
1195
1196 static int soc_tplg_dapm_graph_elems_load(struct soc_tplg *tplg,
1197         struct snd_soc_tplg_hdr *hdr)
1198 {
1199         struct snd_soc_dapm_context *dapm = &tplg->comp->dapm;
1200         struct snd_soc_tplg_dapm_graph_elem *elem;
1201         struct snd_soc_dapm_route **routes;
1202         int count, i, j;
1203         int ret = 0;
1204
1205         count = le32_to_cpu(hdr->count);
1206
1207         if (tplg->pass != SOC_TPLG_PASS_GRAPH) {
1208                 tplg->pos +=
1209                         le32_to_cpu(hdr->size) +
1210                         le32_to_cpu(hdr->payload_size);
1211
1212                 return 0;
1213         }
1214
1215         if (soc_tplg_check_elem_count(tplg,
1216                 sizeof(struct snd_soc_tplg_dapm_graph_elem),
1217                 count, le32_to_cpu(hdr->payload_size), "graph")) {
1218
1219                 dev_err(tplg->dev, "ASoC: invalid count %d for DAPM routes\n",
1220                         count);
1221                 return -EINVAL;
1222         }
1223
1224         dev_dbg(tplg->dev, "ASoC: adding %d DAPM routes for index %d\n", count,
1225                 hdr->index);
1226
1227         /* allocate memory for pointer to array of dapm routes */
1228         routes = kcalloc(count, sizeof(struct snd_soc_dapm_route *),
1229                          GFP_KERNEL);
1230         if (!routes)
1231                 return -ENOMEM;
1232
1233         /*
1234          * allocate memory for each dapm route in the array.
1235          * This needs to be done individually so that
1236          * each route can be freed when it is removed in remove_route().
1237          */
1238         for (i = 0; i < count; i++) {
1239                 routes[i] = kzalloc(sizeof(*routes[i]), GFP_KERNEL);
1240                 if (!routes[i]) {
1241                         /* free previously allocated memory */
1242                         for (j = 0; j < i; j++)
1243                                 kfree(routes[j]);
1244
1245                         kfree(routes);
1246                         return -ENOMEM;
1247                 }
1248         }
1249
1250         for (i = 0; i < count; i++) {
1251                 elem = (struct snd_soc_tplg_dapm_graph_elem *)tplg->pos;
1252                 tplg->pos += sizeof(struct snd_soc_tplg_dapm_graph_elem);
1253
1254                 /* validate routes */
1255                 if (strnlen(elem->source, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1256                             SNDRV_CTL_ELEM_ID_NAME_MAXLEN) {
1257                         ret = -EINVAL;
1258                         break;
1259                 }
1260                 if (strnlen(elem->sink, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1261                             SNDRV_CTL_ELEM_ID_NAME_MAXLEN) {
1262                         ret = -EINVAL;
1263                         break;
1264                 }
1265                 if (strnlen(elem->control, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1266                             SNDRV_CTL_ELEM_ID_NAME_MAXLEN) {
1267                         ret = -EINVAL;
1268                         break;
1269                 }
1270
1271                 routes[i]->source = elem->source;
1272                 routes[i]->sink = elem->sink;
1273
1274                 /* set to NULL atm for tplg users */
1275                 routes[i]->connected = NULL;
1276                 if (strnlen(elem->control, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) == 0)
1277                         routes[i]->control = NULL;
1278                 else
1279                         routes[i]->control = elem->control;
1280
1281                 /* add route dobj to dobj_list */
1282                 routes[i]->dobj.type = SND_SOC_DOBJ_GRAPH;
1283                 routes[i]->dobj.ops = tplg->ops;
1284                 routes[i]->dobj.index = tplg->index;
1285                 list_add(&routes[i]->dobj.list, &tplg->comp->dobj_list);
1286
1287                 ret = soc_tplg_add_route(tplg, routes[i]);
1288                 if (ret < 0) {
1289                         /*
1290                          * this route was added to the list, it will
1291                          * be freed in remove_route() so increment the
1292                          * counter to skip it in the error handling
1293                          * below.
1294                          */
1295                         i++;
1296                         break;
1297                 }
1298
1299                 /* add route, but keep going if some fail */
1300                 snd_soc_dapm_add_routes(dapm, routes[i], 1);
1301         }
1302
1303         /*
1304          * free memory allocated for all dapm routes not added to the
1305          * list in case of error
1306          */
1307         if (ret < 0) {
1308                 while (i < count)
1309                         kfree(routes[i++]);
1310         }
1311
1312         /*
1313          * free pointer to array of dapm routes as this is no longer needed.
1314          * The memory allocated for each dapm route will be freed
1315          * when it is removed in remove_route().
1316          */
1317         kfree(routes);
1318
1319         return ret;
1320 }
1321
1322 static struct snd_kcontrol_new *soc_tplg_dapm_widget_dmixer_create(
1323         struct soc_tplg *tplg, int num_kcontrols)
1324 {
1325         struct snd_kcontrol_new *kc;
1326         struct soc_mixer_control *sm;
1327         struct snd_soc_tplg_mixer_control *mc;
1328         int i, err;
1329
1330         kc = kcalloc(num_kcontrols, sizeof(*kc), GFP_KERNEL);
1331         if (kc == NULL)
1332                 return NULL;
1333
1334         for (i = 0; i < num_kcontrols; i++) {
1335                 mc = (struct snd_soc_tplg_mixer_control *)tplg->pos;
1336
1337                 /* validate kcontrol */
1338                 if (strnlen(mc->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1339                         SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
1340                         goto err_sm;
1341
1342                 sm = kzalloc(sizeof(*sm), GFP_KERNEL);
1343                 if (sm == NULL)
1344                         goto err_sm;
1345
1346                 tplg->pos += (sizeof(struct snd_soc_tplg_mixer_control) +
1347                               le32_to_cpu(mc->priv.size));
1348
1349                 dev_dbg(tplg->dev, " adding DAPM widget mixer control %s at %d\n",
1350                         mc->hdr.name, i);
1351
1352                 kc[i].private_value = (long)sm;
1353                 kc[i].name = kstrdup(mc->hdr.name, GFP_KERNEL);
1354                 if (kc[i].name == NULL)
1355                         goto err_sm;
1356                 kc[i].iface = SNDRV_CTL_ELEM_IFACE_MIXER;
1357                 kc[i].access = le32_to_cpu(mc->hdr.access);
1358
1359                 /* we only support FL/FR channel mapping atm */
1360                 sm->reg = tplc_chan_get_reg(tplg, mc->channel,
1361                         SNDRV_CHMAP_FL);
1362                 sm->rreg = tplc_chan_get_reg(tplg, mc->channel,
1363                         SNDRV_CHMAP_FR);
1364                 sm->shift = tplc_chan_get_shift(tplg, mc->channel,
1365                         SNDRV_CHMAP_FL);
1366                 sm->rshift = tplc_chan_get_shift(tplg, mc->channel,
1367                         SNDRV_CHMAP_FR);
1368
1369                 sm->max = le32_to_cpu(mc->max);
1370                 sm->min = le32_to_cpu(mc->min);
1371                 sm->invert = le32_to_cpu(mc->invert);
1372                 sm->platform_max = le32_to_cpu(mc->platform_max);
1373                 sm->dobj.index = tplg->index;
1374                 INIT_LIST_HEAD(&sm->dobj.list);
1375
1376                 /* map io handlers */
1377                 err = soc_tplg_kcontrol_bind_io(&mc->hdr, &kc[i], tplg);
1378                 if (err) {
1379                         soc_control_err(tplg, &mc->hdr, mc->hdr.name);
1380                         goto err_sm;
1381                 }
1382
1383                 /* create any TLV data */
1384                 err = soc_tplg_create_tlv(tplg, &kc[i], &mc->hdr);
1385                 if (err < 0) {
1386                         dev_err(tplg->dev, "ASoC: failed to create TLV %s\n",
1387                                 mc->hdr.name);
1388                         kfree(sm);
1389                         continue;
1390                 }
1391
1392                 /* pass control to driver for optional further init */
1393                 err = soc_tplg_init_kcontrol(tplg, &kc[i],
1394                         (struct snd_soc_tplg_ctl_hdr *)mc);
1395                 if (err < 0) {
1396                         dev_err(tplg->dev, "ASoC: failed to init %s\n",
1397                                 mc->hdr.name);
1398                         goto err_sm;
1399                 }
1400         }
1401         return kc;
1402
1403 err_sm:
1404         for (; i >= 0; i--) {
1405                 soc_tplg_free_tlv(tplg, &kc[i]);
1406                 sm = (struct soc_mixer_control *)kc[i].private_value;
1407                 kfree(sm);
1408                 kfree(kc[i].name);
1409         }
1410         kfree(kc);
1411
1412         return NULL;
1413 }
1414
1415 static struct snd_kcontrol_new *soc_tplg_dapm_widget_denum_create(
1416         struct soc_tplg *tplg, int num_kcontrols)
1417 {
1418         struct snd_kcontrol_new *kc;
1419         struct snd_soc_tplg_enum_control *ec;
1420         struct soc_enum *se;
1421         int i, err;
1422
1423         kc = kcalloc(num_kcontrols, sizeof(*kc), GFP_KERNEL);
1424         if (kc == NULL)
1425                 return NULL;
1426
1427         for (i = 0; i < num_kcontrols; i++) {
1428                 ec = (struct snd_soc_tplg_enum_control *)tplg->pos;
1429                 /* validate kcontrol */
1430                 if (strnlen(ec->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1431                             SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
1432                         goto err_se;
1433
1434                 se = kzalloc(sizeof(*se), GFP_KERNEL);
1435                 if (se == NULL)
1436                         goto err_se;
1437
1438                 tplg->pos += (sizeof(struct snd_soc_tplg_enum_control) +
1439                               le32_to_cpu(ec->priv.size));
1440
1441                 dev_dbg(tplg->dev, " adding DAPM widget enum control %s\n",
1442                         ec->hdr.name);
1443
1444                 kc[i].private_value = (long)se;
1445                 kc[i].name = kstrdup(ec->hdr.name, GFP_KERNEL);
1446                 if (kc[i].name == NULL)
1447                         goto err_se;
1448                 kc[i].iface = SNDRV_CTL_ELEM_IFACE_MIXER;
1449                 kc[i].access = le32_to_cpu(ec->hdr.access);
1450
1451                 /* we only support FL/FR channel mapping atm */
1452                 se->reg = tplc_chan_get_reg(tplg, ec->channel, SNDRV_CHMAP_FL);
1453                 se->shift_l = tplc_chan_get_shift(tplg, ec->channel,
1454                                                   SNDRV_CHMAP_FL);
1455                 se->shift_r = tplc_chan_get_shift(tplg, ec->channel,
1456                                                   SNDRV_CHMAP_FR);
1457
1458                 se->items = le32_to_cpu(ec->items);
1459                 se->mask = le32_to_cpu(ec->mask);
1460                 se->dobj.index = tplg->index;
1461
1462                 switch (le32_to_cpu(ec->hdr.ops.info)) {
1463                 case SND_SOC_TPLG_CTL_ENUM_VALUE:
1464                 case SND_SOC_TPLG_DAPM_CTL_ENUM_VALUE:
1465                         err = soc_tplg_denum_create_values(se, ec);
1466                         if (err < 0) {
1467                                 dev_err(tplg->dev, "ASoC: could not create values for %s\n",
1468                                         ec->hdr.name);
1469                                 goto err_se;
1470                         }
1471                         /* fall through */
1472                 case SND_SOC_TPLG_CTL_ENUM:
1473                 case SND_SOC_TPLG_DAPM_CTL_ENUM_DOUBLE:
1474                 case SND_SOC_TPLG_DAPM_CTL_ENUM_VIRT:
1475                         err = soc_tplg_denum_create_texts(se, ec);
1476                         if (err < 0) {
1477                                 dev_err(tplg->dev, "ASoC: could not create texts for %s\n",
1478                                         ec->hdr.name);
1479                                 goto err_se;
1480                         }
1481                         break;
1482                 default:
1483                         dev_err(tplg->dev, "ASoC: invalid enum control type %d for %s\n",
1484                                 ec->hdr.ops.info, ec->hdr.name);
1485                         goto err_se;
1486                 }
1487
1488                 /* map io handlers */
1489                 err = soc_tplg_kcontrol_bind_io(&ec->hdr, &kc[i], tplg);
1490                 if (err) {
1491                         soc_control_err(tplg, &ec->hdr, ec->hdr.name);
1492                         goto err_se;
1493                 }
1494
1495                 /* pass control to driver for optional further init */
1496                 err = soc_tplg_init_kcontrol(tplg, &kc[i],
1497                         (struct snd_soc_tplg_ctl_hdr *)ec);
1498                 if (err < 0) {
1499                         dev_err(tplg->dev, "ASoC: failed to init %s\n",
1500                                 ec->hdr.name);
1501                         goto err_se;
1502                 }
1503         }
1504
1505         return kc;
1506
1507 err_se:
1508         for (; i >= 0; i--) {
1509                 /* free values and texts */
1510                 se = (struct soc_enum *)kc[i].private_value;
1511
1512                 if (se) {
1513                         soc_tplg_denum_remove_values(se);
1514                         soc_tplg_denum_remove_texts(se);
1515                 }
1516
1517                 kfree(se);
1518                 kfree(kc[i].name);
1519         }
1520         kfree(kc);
1521
1522         return NULL;
1523 }
1524
1525 static struct snd_kcontrol_new *soc_tplg_dapm_widget_dbytes_create(
1526         struct soc_tplg *tplg, int num_kcontrols)
1527 {
1528         struct snd_soc_tplg_bytes_control *be;
1529         struct soc_bytes_ext *sbe;
1530         struct snd_kcontrol_new *kc;
1531         int i, err;
1532
1533         kc = kcalloc(num_kcontrols, sizeof(*kc), GFP_KERNEL);
1534         if (!kc)
1535                 return NULL;
1536
1537         for (i = 0; i < num_kcontrols; i++) {
1538                 be = (struct snd_soc_tplg_bytes_control *)tplg->pos;
1539
1540                 /* validate kcontrol */
1541                 if (strnlen(be->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1542                         SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
1543                         goto err_sbe;
1544
1545                 sbe = kzalloc(sizeof(*sbe), GFP_KERNEL);
1546                 if (sbe == NULL)
1547                         goto err_sbe;
1548
1549                 tplg->pos += (sizeof(struct snd_soc_tplg_bytes_control) +
1550                               le32_to_cpu(be->priv.size));
1551
1552                 dev_dbg(tplg->dev,
1553                         "ASoC: adding bytes kcontrol %s with access 0x%x\n",
1554                         be->hdr.name, be->hdr.access);
1555
1556                 kc[i].private_value = (long)sbe;
1557                 kc[i].name = kstrdup(be->hdr.name, GFP_KERNEL);
1558                 if (kc[i].name == NULL)
1559                         goto err_sbe;
1560                 kc[i].iface = SNDRV_CTL_ELEM_IFACE_MIXER;
1561                 kc[i].access = le32_to_cpu(be->hdr.access);
1562
1563                 sbe->max = le32_to_cpu(be->max);
1564                 INIT_LIST_HEAD(&sbe->dobj.list);
1565
1566                 /* map standard io handlers and check for external handlers */
1567                 err = soc_tplg_kcontrol_bind_io(&be->hdr, &kc[i], tplg);
1568                 if (err) {
1569                         soc_control_err(tplg, &be->hdr, be->hdr.name);
1570                         goto err_sbe;
1571                 }
1572
1573                 /* pass control to driver for optional further init */
1574                 err = soc_tplg_init_kcontrol(tplg, &kc[i],
1575                         (struct snd_soc_tplg_ctl_hdr *)be);
1576                 if (err < 0) {
1577                         dev_err(tplg->dev, "ASoC: failed to init %s\n",
1578                                 be->hdr.name);
1579                         goto err_sbe;
1580                 }
1581         }
1582
1583         return kc;
1584
1585 err_sbe:
1586         for (; i >= 0; i--) {
1587                 sbe = (struct soc_bytes_ext *)kc[i].private_value;
1588                 kfree(sbe);
1589                 kfree(kc[i].name);
1590         }
1591         kfree(kc);
1592
1593         return NULL;
1594 }
1595
1596 static int soc_tplg_dapm_widget_create(struct soc_tplg *tplg,
1597         struct snd_soc_tplg_dapm_widget *w)
1598 {
1599         struct snd_soc_dapm_context *dapm = &tplg->comp->dapm;
1600         struct snd_soc_dapm_widget template, *widget;
1601         struct snd_soc_tplg_ctl_hdr *control_hdr;
1602         struct snd_soc_card *card = tplg->comp->card;
1603         unsigned int kcontrol_type;
1604         int ret = 0;
1605
1606         if (strnlen(w->name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1607                 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
1608                 return -EINVAL;
1609         if (strnlen(w->sname, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1610                 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
1611                 return -EINVAL;
1612
1613         dev_dbg(tplg->dev, "ASoC: creating DAPM widget %s id %d\n",
1614                 w->name, w->id);
1615
1616         memset(&template, 0, sizeof(template));
1617
1618         /* map user to kernel widget ID */
1619         template.id = get_widget_id(le32_to_cpu(w->id));
1620         if ((int)template.id < 0)
1621                 return template.id;
1622
1623         /* strings are allocated here, but used and freed by the widget */
1624         template.name = kstrdup(w->name, GFP_KERNEL);
1625         if (!template.name)
1626                 return -ENOMEM;
1627         template.sname = kstrdup(w->sname, GFP_KERNEL);
1628         if (!template.sname) {
1629                 ret = -ENOMEM;
1630                 goto err;
1631         }
1632         template.reg = le32_to_cpu(w->reg);
1633         template.shift = le32_to_cpu(w->shift);
1634         template.mask = le32_to_cpu(w->mask);
1635         template.subseq = le32_to_cpu(w->subseq);
1636         template.on_val = w->invert ? 0 : 1;
1637         template.off_val = w->invert ? 1 : 0;
1638         template.ignore_suspend = le32_to_cpu(w->ignore_suspend);
1639         template.event_flags = le16_to_cpu(w->event_flags);
1640         template.dobj.index = tplg->index;
1641
1642         tplg->pos +=
1643                 (sizeof(struct snd_soc_tplg_dapm_widget) +
1644                  le32_to_cpu(w->priv.size));
1645
1646         if (w->num_kcontrols == 0) {
1647                 kcontrol_type = 0;
1648                 template.num_kcontrols = 0;
1649                 goto widget;
1650         }
1651
1652         control_hdr = (struct snd_soc_tplg_ctl_hdr *)tplg->pos;
1653         dev_dbg(tplg->dev, "ASoC: template %s has %d controls of type %x\n",
1654                 w->name, w->num_kcontrols, control_hdr->type);
1655
1656         switch (le32_to_cpu(control_hdr->ops.info)) {
1657         case SND_SOC_TPLG_CTL_VOLSW:
1658         case SND_SOC_TPLG_CTL_STROBE:
1659         case SND_SOC_TPLG_CTL_VOLSW_SX:
1660         case SND_SOC_TPLG_CTL_VOLSW_XR_SX:
1661         case SND_SOC_TPLG_CTL_RANGE:
1662         case SND_SOC_TPLG_DAPM_CTL_VOLSW:
1663                 kcontrol_type = SND_SOC_TPLG_TYPE_MIXER;  /* volume mixer */
1664                 template.num_kcontrols = le32_to_cpu(w->num_kcontrols);
1665                 template.kcontrol_news =
1666                         soc_tplg_dapm_widget_dmixer_create(tplg,
1667                         template.num_kcontrols);
1668                 if (!template.kcontrol_news) {
1669                         ret = -ENOMEM;
1670                         goto hdr_err;
1671                 }
1672                 break;
1673         case SND_SOC_TPLG_CTL_ENUM:
1674         case SND_SOC_TPLG_CTL_ENUM_VALUE:
1675         case SND_SOC_TPLG_DAPM_CTL_ENUM_DOUBLE:
1676         case SND_SOC_TPLG_DAPM_CTL_ENUM_VIRT:
1677         case SND_SOC_TPLG_DAPM_CTL_ENUM_VALUE:
1678                 kcontrol_type = SND_SOC_TPLG_TYPE_ENUM; /* enumerated mixer */
1679                 template.num_kcontrols = le32_to_cpu(w->num_kcontrols);
1680                 template.kcontrol_news =
1681                         soc_tplg_dapm_widget_denum_create(tplg,
1682                         template.num_kcontrols);
1683                 if (!template.kcontrol_news) {
1684                         ret = -ENOMEM;
1685                         goto hdr_err;
1686                 }
1687                 break;
1688         case SND_SOC_TPLG_CTL_BYTES:
1689                 kcontrol_type = SND_SOC_TPLG_TYPE_BYTES; /* bytes control */
1690                 template.num_kcontrols = le32_to_cpu(w->num_kcontrols);
1691                 template.kcontrol_news =
1692                         soc_tplg_dapm_widget_dbytes_create(tplg,
1693                                 template.num_kcontrols);
1694                 if (!template.kcontrol_news) {
1695                         ret = -ENOMEM;
1696                         goto hdr_err;
1697                 }
1698                 break;
1699         default:
1700                 dev_err(tplg->dev, "ASoC: invalid widget control type %d:%d:%d\n",
1701                         control_hdr->ops.get, control_hdr->ops.put,
1702                         le32_to_cpu(control_hdr->ops.info));
1703                 ret = -EINVAL;
1704                 goto hdr_err;
1705         }
1706
1707 widget:
1708         ret = soc_tplg_widget_load(tplg, &template, w);
1709         if (ret < 0)
1710                 goto hdr_err;
1711
1712         /* card dapm mutex is held by the core if we are loading topology
1713          * data during sound card init. */
1714         if (card->instantiated)
1715                 widget = snd_soc_dapm_new_control(dapm, &template);
1716         else
1717                 widget = snd_soc_dapm_new_control_unlocked(dapm, &template);
1718         if (IS_ERR(widget)) {
1719                 ret = PTR_ERR(widget);
1720                 goto hdr_err;
1721         }
1722
1723         widget->dobj.type = SND_SOC_DOBJ_WIDGET;
1724         widget->dobj.widget.kcontrol_type = kcontrol_type;
1725         widget->dobj.ops = tplg->ops;
1726         widget->dobj.index = tplg->index;
1727         list_add(&widget->dobj.list, &tplg->comp->dobj_list);
1728
1729         ret = soc_tplg_widget_ready(tplg, widget, w);
1730         if (ret < 0)
1731                 goto ready_err;
1732
1733         kfree(template.sname);
1734         kfree(template.name);
1735
1736         return 0;
1737
1738 ready_err:
1739         snd_soc_tplg_widget_remove(widget);
1740         snd_soc_dapm_free_widget(widget);
1741 hdr_err:
1742         kfree(template.sname);
1743 err:
1744         kfree(template.name);
1745         return ret;
1746 }
1747
1748 static int soc_tplg_dapm_widget_elems_load(struct soc_tplg *tplg,
1749         struct snd_soc_tplg_hdr *hdr)
1750 {
1751         struct snd_soc_tplg_dapm_widget *widget;
1752         int ret, count, i;
1753
1754         count = le32_to_cpu(hdr->count);
1755
1756         if (tplg->pass != SOC_TPLG_PASS_WIDGET)
1757                 return 0;
1758
1759         dev_dbg(tplg->dev, "ASoC: adding %d DAPM widgets\n", count);
1760
1761         for (i = 0; i < count; i++) {
1762                 widget = (struct snd_soc_tplg_dapm_widget *) tplg->pos;
1763                 if (le32_to_cpu(widget->size) != sizeof(*widget)) {
1764                         dev_err(tplg->dev, "ASoC: invalid widget size\n");
1765                         return -EINVAL;
1766                 }
1767
1768                 ret = soc_tplg_dapm_widget_create(tplg, widget);
1769                 if (ret < 0) {
1770                         dev_err(tplg->dev, "ASoC: failed to load widget %s\n",
1771                                 widget->name);
1772                         return ret;
1773                 }
1774         }
1775
1776         return 0;
1777 }
1778
1779 static int soc_tplg_dapm_complete(struct soc_tplg *tplg)
1780 {
1781         struct snd_soc_card *card = tplg->comp->card;
1782         int ret;
1783
1784         /* Card might not have been registered at this point.
1785          * If so, just return success.
1786         */
1787         if (!card || !card->instantiated) {
1788                 dev_warn(tplg->dev, "ASoC: Parent card not yet available,"
1789                         " widget card binding deferred\n");
1790                 return 0;
1791         }
1792
1793         ret = snd_soc_dapm_new_widgets(card);
1794         if (ret < 0)
1795                 dev_err(tplg->dev, "ASoC: failed to create new widgets %d\n",
1796                         ret);
1797
1798         return 0;
1799 }
1800
1801 static void set_stream_info(struct snd_soc_pcm_stream *stream,
1802         struct snd_soc_tplg_stream_caps *caps)
1803 {
1804         stream->stream_name = kstrdup(caps->name, GFP_KERNEL);
1805         stream->channels_min = le32_to_cpu(caps->channels_min);
1806         stream->channels_max = le32_to_cpu(caps->channels_max);
1807         stream->rates = le32_to_cpu(caps->rates);
1808         stream->rate_min = le32_to_cpu(caps->rate_min);
1809         stream->rate_max = le32_to_cpu(caps->rate_max);
1810         stream->formats = le64_to_cpu(caps->formats);
1811         stream->sig_bits = le32_to_cpu(caps->sig_bits);
1812 }
1813
1814 static void set_dai_flags(struct snd_soc_dai_driver *dai_drv,
1815                           unsigned int flag_mask, unsigned int flags)
1816 {
1817         if (flag_mask & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_RATES)
1818                 dai_drv->symmetric_rates =
1819                         flags & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_RATES ? 1 : 0;
1820
1821         if (flag_mask & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_CHANNELS)
1822                 dai_drv->symmetric_channels =
1823                         flags & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_CHANNELS ?
1824                         1 : 0;
1825
1826         if (flag_mask & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_SAMPLEBITS)
1827                 dai_drv->symmetric_samplebits =
1828                         flags & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_SAMPLEBITS ?
1829                         1 : 0;
1830 }
1831
1832 static int soc_tplg_dai_create(struct soc_tplg *tplg,
1833         struct snd_soc_tplg_pcm *pcm)
1834 {
1835         struct snd_soc_dai_driver *dai_drv;
1836         struct snd_soc_pcm_stream *stream;
1837         struct snd_soc_tplg_stream_caps *caps;
1838         int ret;
1839
1840         dai_drv = kzalloc(sizeof(struct snd_soc_dai_driver), GFP_KERNEL);
1841         if (dai_drv == NULL)
1842                 return -ENOMEM;
1843
1844         if (strlen(pcm->dai_name))
1845                 dai_drv->name = kstrdup(pcm->dai_name, GFP_KERNEL);
1846         dai_drv->id = le32_to_cpu(pcm->dai_id);
1847
1848         if (pcm->playback) {
1849                 stream = &dai_drv->playback;
1850                 caps = &pcm->caps[SND_SOC_TPLG_STREAM_PLAYBACK];
1851                 set_stream_info(stream, caps);
1852         }
1853
1854         if (pcm->capture) {
1855                 stream = &dai_drv->capture;
1856                 caps = &pcm->caps[SND_SOC_TPLG_STREAM_CAPTURE];
1857                 set_stream_info(stream, caps);
1858         }
1859
1860         if (pcm->compress)
1861                 dai_drv->compress_new = snd_soc_new_compress;
1862
1863         /* pass control to component driver for optional further init */
1864         ret = soc_tplg_dai_load(tplg, dai_drv, pcm, NULL);
1865         if (ret < 0) {
1866                 dev_err(tplg->comp->dev, "ASoC: DAI loading failed\n");
1867                 kfree(dai_drv->playback.stream_name);
1868                 kfree(dai_drv->capture.stream_name);
1869                 kfree(dai_drv->name);
1870                 kfree(dai_drv);
1871                 return ret;
1872         }
1873
1874         dai_drv->dobj.index = tplg->index;
1875         dai_drv->dobj.ops = tplg->ops;
1876         dai_drv->dobj.type = SND_SOC_DOBJ_PCM;
1877         list_add(&dai_drv->dobj.list, &tplg->comp->dobj_list);
1878
1879         /* register the DAI to the component */
1880         return snd_soc_register_dai(tplg->comp, dai_drv);
1881 }
1882
1883 static void set_link_flags(struct snd_soc_dai_link *link,
1884                 unsigned int flag_mask, unsigned int flags)
1885 {
1886         if (flag_mask & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_RATES)
1887                 link->symmetric_rates =
1888                         flags & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_RATES ? 1 : 0;
1889
1890         if (flag_mask & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_CHANNELS)
1891                 link->symmetric_channels =
1892                         flags & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_CHANNELS ?
1893                         1 : 0;
1894
1895         if (flag_mask & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_SAMPLEBITS)
1896                 link->symmetric_samplebits =
1897                         flags & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_SAMPLEBITS ?
1898                         1 : 0;
1899
1900         if (flag_mask & SND_SOC_TPLG_LNK_FLGBIT_VOICE_WAKEUP)
1901                 link->ignore_suspend =
1902                 flags & SND_SOC_TPLG_LNK_FLGBIT_VOICE_WAKEUP ?
1903                 1 : 0;
1904 }
1905
1906 /* create the FE DAI link */
1907 static int soc_tplg_fe_link_create(struct soc_tplg *tplg,
1908         struct snd_soc_tplg_pcm *pcm)
1909 {
1910         struct snd_soc_dai_link *link;
1911         struct snd_soc_dai_link_component *dlc;
1912         int ret;
1913
1914         /* link + cpu + codec + platform */
1915         link = kzalloc(sizeof(*link) + (3 * sizeof(*dlc)), GFP_KERNEL);
1916         if (link == NULL)
1917                 return -ENOMEM;
1918
1919         dlc = (struct snd_soc_dai_link_component *)(link + 1);
1920
1921         link->cpus      = &dlc[0];
1922         link->codecs    = &dlc[1];
1923         link->platforms = &dlc[2];
1924
1925         link->num_cpus   = 1;
1926         link->num_codecs = 1;
1927         link->num_platforms = 1;
1928
1929         link->dobj.index = tplg->index;
1930         link->dobj.ops = tplg->ops;
1931         link->dobj.type = SND_SOC_DOBJ_DAI_LINK;
1932
1933         if (strlen(pcm->pcm_name)) {
1934                 link->name = kstrdup(pcm->pcm_name, GFP_KERNEL);
1935                 link->stream_name = kstrdup(pcm->pcm_name, GFP_KERNEL);
1936         }
1937         link->id = le32_to_cpu(pcm->pcm_id);
1938
1939         if (strlen(pcm->dai_name))
1940                 link->cpus->dai_name = kstrdup(pcm->dai_name, GFP_KERNEL);
1941
1942         link->codecs->name = "snd-soc-dummy";
1943         link->codecs->dai_name = "snd-soc-dummy-dai";
1944
1945         link->platforms->name = "snd-soc-dummy";
1946
1947         /* enable DPCM */
1948         link->dynamic = 1;
1949         link->dpcm_playback = le32_to_cpu(pcm->playback);
1950         link->dpcm_capture = le32_to_cpu(pcm->capture);
1951         if (pcm->flag_mask)
1952                 set_link_flags(link,
1953                                le32_to_cpu(pcm->flag_mask),
1954                                le32_to_cpu(pcm->flags));
1955
1956         /* pass control to component driver for optional further init */
1957         ret = soc_tplg_dai_link_load(tplg, link, NULL);
1958         if (ret < 0) {
1959                 dev_err(tplg->comp->dev, "ASoC: FE link loading failed\n");
1960                 goto err;
1961         }
1962
1963         ret = snd_soc_add_dai_link(tplg->comp->card, link);
1964         if (ret < 0) {
1965                 dev_err(tplg->comp->dev, "ASoC: adding FE link failed\n");
1966                 goto err;
1967         }
1968
1969         list_add(&link->dobj.list, &tplg->comp->dobj_list);
1970
1971         return 0;
1972 err:
1973         kfree(link->name);
1974         kfree(link->stream_name);
1975         kfree(link->cpus->dai_name);
1976         kfree(link);
1977         return ret;
1978 }
1979
1980 /* create a FE DAI and DAI link from the PCM object */
1981 static int soc_tplg_pcm_create(struct soc_tplg *tplg,
1982         struct snd_soc_tplg_pcm *pcm)
1983 {
1984         int ret;
1985
1986         ret = soc_tplg_dai_create(tplg, pcm);
1987         if (ret < 0)
1988                 return ret;
1989
1990         return  soc_tplg_fe_link_create(tplg, pcm);
1991 }
1992
1993 /* copy stream caps from the old version 4 of source */
1994 static void stream_caps_new_ver(struct snd_soc_tplg_stream_caps *dest,
1995                                 struct snd_soc_tplg_stream_caps_v4 *src)
1996 {
1997         dest->size = cpu_to_le32(sizeof(*dest));
1998         memcpy(dest->name, src->name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN);
1999         dest->formats = src->formats;
2000         dest->rates = src->rates;
2001         dest->rate_min = src->rate_min;
2002         dest->rate_max = src->rate_max;
2003         dest->channels_min = src->channels_min;
2004         dest->channels_max = src->channels_max;
2005         dest->periods_min = src->periods_min;
2006         dest->periods_max = src->periods_max;
2007         dest->period_size_min = src->period_size_min;
2008         dest->period_size_max = src->period_size_max;
2009         dest->buffer_size_min = src->buffer_size_min;
2010         dest->buffer_size_max = src->buffer_size_max;
2011 }
2012
2013 /**
2014  * pcm_new_ver - Create the new version of PCM from the old version.
2015  * @tplg: topology context
2016  * @src: older version of pcm as a source
2017  * @pcm: latest version of pcm created from the source
2018  *
2019  * Support from vesion 4. User should free the returned pcm manually.
2020  */
2021 static int pcm_new_ver(struct soc_tplg *tplg,
2022                        struct snd_soc_tplg_pcm *src,
2023                        struct snd_soc_tplg_pcm **pcm)
2024 {
2025         struct snd_soc_tplg_pcm *dest;
2026         struct snd_soc_tplg_pcm_v4 *src_v4;
2027         int i;
2028
2029         *pcm = NULL;
2030
2031         if (le32_to_cpu(src->size) != sizeof(*src_v4)) {
2032                 dev_err(tplg->dev, "ASoC: invalid PCM size\n");
2033                 return -EINVAL;
2034         }
2035
2036         dev_warn(tplg->dev, "ASoC: old version of PCM\n");
2037         src_v4 = (struct snd_soc_tplg_pcm_v4 *)src;
2038         dest = kzalloc(sizeof(*dest), GFP_KERNEL);
2039         if (!dest)
2040                 return -ENOMEM;
2041
2042         dest->size = cpu_to_le32(sizeof(*dest)); /* size of latest abi version */
2043         memcpy(dest->pcm_name, src_v4->pcm_name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN);
2044         memcpy(dest->dai_name, src_v4->dai_name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN);
2045         dest->pcm_id = src_v4->pcm_id;
2046         dest->dai_id = src_v4->dai_id;
2047         dest->playback = src_v4->playback;
2048         dest->capture = src_v4->capture;
2049         dest->compress = src_v4->compress;
2050         dest->num_streams = src_v4->num_streams;
2051         for (i = 0; i < le32_to_cpu(dest->num_streams); i++)
2052                 memcpy(&dest->stream[i], &src_v4->stream[i],
2053                        sizeof(struct snd_soc_tplg_stream));
2054
2055         for (i = 0; i < 2; i++)
2056                 stream_caps_new_ver(&dest->caps[i], &src_v4->caps[i]);
2057
2058         *pcm = dest;
2059         return 0;
2060 }
2061
2062 static int soc_tplg_pcm_elems_load(struct soc_tplg *tplg,
2063         struct snd_soc_tplg_hdr *hdr)
2064 {
2065         struct snd_soc_tplg_pcm *pcm, *_pcm;
2066         int count;
2067         int size;
2068         int i;
2069         bool abi_match;
2070         int ret;
2071
2072         count = le32_to_cpu(hdr->count);
2073
2074         if (tplg->pass != SOC_TPLG_PASS_PCM_DAI)
2075                 return 0;
2076
2077         /* check the element size and count */
2078         pcm = (struct snd_soc_tplg_pcm *)tplg->pos;
2079         size = le32_to_cpu(pcm->size);
2080         if (size > sizeof(struct snd_soc_tplg_pcm)
2081                 || size < sizeof(struct snd_soc_tplg_pcm_v4)) {
2082                 dev_err(tplg->dev, "ASoC: invalid size %d for PCM elems\n",
2083                         size);
2084                 return -EINVAL;
2085         }
2086
2087         if (soc_tplg_check_elem_count(tplg,
2088                                       size, count,
2089                                       le32_to_cpu(hdr->payload_size),
2090                                       "PCM DAI")) {
2091                 dev_err(tplg->dev, "ASoC: invalid count %d for PCM DAI elems\n",
2092                         count);
2093                 return -EINVAL;
2094         }
2095
2096         for (i = 0; i < count; i++) {
2097                 pcm = (struct snd_soc_tplg_pcm *)tplg->pos;
2098                 size = le32_to_cpu(pcm->size);
2099
2100                 /* check ABI version by size, create a new version of pcm
2101                  * if abi not match.
2102                  */
2103                 if (size == sizeof(*pcm)) {
2104                         abi_match = true;
2105                         _pcm = pcm;
2106                 } else {
2107                         abi_match = false;
2108                         ret = pcm_new_ver(tplg, pcm, &_pcm);
2109                         if (ret < 0)
2110                                 return ret;
2111                 }
2112
2113                 /* create the FE DAIs and DAI links */
2114                 ret = soc_tplg_pcm_create(tplg, _pcm);
2115                 if (ret < 0) {
2116                         if (!abi_match)
2117                                 kfree(_pcm);
2118                         return ret;
2119                 }
2120
2121                 /* offset by version-specific struct size and
2122                  * real priv data size
2123                  */
2124                 tplg->pos += size + le32_to_cpu(_pcm->priv.size);
2125
2126                 if (!abi_match)
2127                         kfree(_pcm); /* free the duplicated one */
2128         }
2129
2130         dev_dbg(tplg->dev, "ASoC: adding %d PCM DAIs\n", count);
2131
2132         return 0;
2133 }
2134
2135 /**
2136  * set_link_hw_format - Set the HW audio format of the physical DAI link.
2137  * @link: &snd_soc_dai_link which should be updated
2138  * @cfg: physical link configs.
2139  *
2140  * Topology context contains a list of supported HW formats (configs) and
2141  * a default format ID for the physical link. This function will use this
2142  * default ID to choose the HW format to set the link's DAI format for init.
2143  */
2144 static void set_link_hw_format(struct snd_soc_dai_link *link,
2145                         struct snd_soc_tplg_link_config *cfg)
2146 {
2147         struct snd_soc_tplg_hw_config *hw_config;
2148         unsigned char bclk_master, fsync_master;
2149         unsigned char invert_bclk, invert_fsync;
2150         int i;
2151
2152         for (i = 0; i < le32_to_cpu(cfg->num_hw_configs); i++) {
2153                 hw_config = &cfg->hw_config[i];
2154                 if (hw_config->id != cfg->default_hw_config_id)
2155                         continue;
2156
2157                 link->dai_fmt = le32_to_cpu(hw_config->fmt) &
2158                         SND_SOC_DAIFMT_FORMAT_MASK;
2159
2160                 /* clock gating */
2161                 switch (hw_config->clock_gated) {
2162                 case SND_SOC_TPLG_DAI_CLK_GATE_GATED:
2163                         link->dai_fmt |= SND_SOC_DAIFMT_GATED;
2164                         break;
2165
2166                 case SND_SOC_TPLG_DAI_CLK_GATE_CONT:
2167                         link->dai_fmt |= SND_SOC_DAIFMT_CONT;
2168                         break;
2169
2170                 default:
2171                         /* ignore the value */
2172                         break;
2173                 }
2174
2175                 /* clock signal polarity */
2176                 invert_bclk = hw_config->invert_bclk;
2177                 invert_fsync = hw_config->invert_fsync;
2178                 if (!invert_bclk && !invert_fsync)
2179                         link->dai_fmt |= SND_SOC_DAIFMT_NB_NF;
2180                 else if (!invert_bclk && invert_fsync)
2181                         link->dai_fmt |= SND_SOC_DAIFMT_NB_IF;
2182                 else if (invert_bclk && !invert_fsync)
2183                         link->dai_fmt |= SND_SOC_DAIFMT_IB_NF;
2184                 else
2185                         link->dai_fmt |= SND_SOC_DAIFMT_IB_IF;
2186
2187                 /* clock masters */
2188                 bclk_master = (hw_config->bclk_master ==
2189                                SND_SOC_TPLG_BCLK_CM);
2190                 fsync_master = (hw_config->fsync_master ==
2191                                 SND_SOC_TPLG_FSYNC_CM);
2192                 if (bclk_master && fsync_master)
2193                         link->dai_fmt |= SND_SOC_DAIFMT_CBM_CFM;
2194                 else if (!bclk_master && fsync_master)
2195                         link->dai_fmt |= SND_SOC_DAIFMT_CBS_CFM;
2196                 else if (bclk_master && !fsync_master)
2197                         link->dai_fmt |= SND_SOC_DAIFMT_CBM_CFS;
2198                 else
2199                         link->dai_fmt |= SND_SOC_DAIFMT_CBS_CFS;
2200         }
2201 }
2202
2203 /**
2204  * link_new_ver - Create a new physical link config from the old
2205  * version of source.
2206  * @tplg: topology context
2207  * @src: old version of phyical link config as a source
2208  * @link: latest version of physical link config created from the source
2209  *
2210  * Support from vesion 4. User need free the returned link config manually.
2211  */
2212 static int link_new_ver(struct soc_tplg *tplg,
2213                         struct snd_soc_tplg_link_config *src,
2214                         struct snd_soc_tplg_link_config **link)
2215 {
2216         struct snd_soc_tplg_link_config *dest;
2217         struct snd_soc_tplg_link_config_v4 *src_v4;
2218         int i;
2219
2220         *link = NULL;
2221
2222         if (le32_to_cpu(src->size) !=
2223             sizeof(struct snd_soc_tplg_link_config_v4)) {
2224                 dev_err(tplg->dev, "ASoC: invalid physical link config size\n");
2225                 return -EINVAL;
2226         }
2227
2228         dev_warn(tplg->dev, "ASoC: old version of physical link config\n");
2229
2230         src_v4 = (struct snd_soc_tplg_link_config_v4 *)src;
2231         dest = kzalloc(sizeof(*dest), GFP_KERNEL);
2232         if (!dest)
2233                 return -ENOMEM;
2234
2235         dest->size = cpu_to_le32(sizeof(*dest));
2236         dest->id = src_v4->id;
2237         dest->num_streams = src_v4->num_streams;
2238         for (i = 0; i < le32_to_cpu(dest->num_streams); i++)
2239                 memcpy(&dest->stream[i], &src_v4->stream[i],
2240                        sizeof(struct snd_soc_tplg_stream));
2241
2242         *link = dest;
2243         return 0;
2244 }
2245
2246 /* Find and configure an existing physical DAI link */
2247 static int soc_tplg_link_config(struct soc_tplg *tplg,
2248         struct snd_soc_tplg_link_config *cfg)
2249 {
2250         struct snd_soc_dai_link *link;
2251         const char *name, *stream_name;
2252         size_t len;
2253         int ret;
2254
2255         len = strnlen(cfg->name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN);
2256         if (len == SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
2257                 return -EINVAL;
2258         else if (len)
2259                 name = cfg->name;
2260         else
2261                 name = NULL;
2262
2263         len = strnlen(cfg->stream_name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN);
2264         if (len == SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
2265                 return -EINVAL;
2266         else if (len)
2267                 stream_name = cfg->stream_name;
2268         else
2269                 stream_name = NULL;
2270
2271         link = snd_soc_find_dai_link(tplg->comp->card, le32_to_cpu(cfg->id),
2272                                      name, stream_name);
2273         if (!link) {
2274                 dev_err(tplg->dev, "ASoC: physical link %s (id %d) not exist\n",
2275                         name, cfg->id);
2276                 return -EINVAL;
2277         }
2278
2279         /* hw format */
2280         if (cfg->num_hw_configs)
2281                 set_link_hw_format(link, cfg);
2282
2283         /* flags */
2284         if (cfg->flag_mask)
2285                 set_link_flags(link,
2286                                le32_to_cpu(cfg->flag_mask),
2287                                le32_to_cpu(cfg->flags));
2288
2289         /* pass control to component driver for optional further init */
2290         ret = soc_tplg_dai_link_load(tplg, link, cfg);
2291         if (ret < 0) {
2292                 dev_err(tplg->dev, "ASoC: physical link loading failed\n");
2293                 return ret;
2294         }
2295
2296         /* for unloading it in snd_soc_tplg_component_remove */
2297         link->dobj.index = tplg->index;
2298         link->dobj.ops = tplg->ops;
2299         link->dobj.type = SND_SOC_DOBJ_BACKEND_LINK;
2300         list_add(&link->dobj.list, &tplg->comp->dobj_list);
2301
2302         return 0;
2303 }
2304
2305
2306 /* Load physical link config elements from the topology context */
2307 static int soc_tplg_link_elems_load(struct soc_tplg *tplg,
2308         struct snd_soc_tplg_hdr *hdr)
2309 {
2310         struct snd_soc_tplg_link_config *link, *_link;
2311         int count;
2312         int size;
2313         int i, ret;
2314         bool abi_match;
2315
2316         count = le32_to_cpu(hdr->count);
2317
2318         if (tplg->pass != SOC_TPLG_PASS_LINK) {
2319                 tplg->pos += le32_to_cpu(hdr->size) +
2320                         le32_to_cpu(hdr->payload_size);
2321                 return 0;
2322         };
2323
2324         /* check the element size and count */
2325         link = (struct snd_soc_tplg_link_config *)tplg->pos;
2326         size = le32_to_cpu(link->size);
2327         if (size > sizeof(struct snd_soc_tplg_link_config)
2328                 || size < sizeof(struct snd_soc_tplg_link_config_v4)) {
2329                 dev_err(tplg->dev, "ASoC: invalid size %d for physical link elems\n",
2330                         size);
2331                 return -EINVAL;
2332         }
2333
2334         if (soc_tplg_check_elem_count(tplg,
2335                                       size, count,
2336                                       le32_to_cpu(hdr->payload_size),
2337                                       "physical link config")) {
2338                 dev_err(tplg->dev, "ASoC: invalid count %d for physical link elems\n",
2339                         count);
2340                 return -EINVAL;
2341         }
2342
2343         /* config physical DAI links */
2344         for (i = 0; i < count; i++) {
2345                 link = (struct snd_soc_tplg_link_config *)tplg->pos;
2346                 size = le32_to_cpu(link->size);
2347                 if (size == sizeof(*link)) {
2348                         abi_match = true;
2349                         _link = link;
2350                 } else {
2351                         abi_match = false;
2352                         ret = link_new_ver(tplg, link, &_link);
2353                         if (ret < 0)
2354                                 return ret;
2355                 }
2356
2357                 ret = soc_tplg_link_config(tplg, _link);
2358                 if (ret < 0) {
2359                         if (!abi_match)
2360                                 kfree(_link);
2361                         return ret;
2362                 }
2363
2364                 /* offset by version-specific struct size and
2365                  * real priv data size
2366                  */
2367                 tplg->pos += size + le32_to_cpu(_link->priv.size);
2368
2369                 if (!abi_match)
2370                         kfree(_link); /* free the duplicated one */
2371         }
2372
2373         return 0;
2374 }
2375
2376 /**
2377  * soc_tplg_dai_config - Find and configure an existing physical DAI.
2378  * @tplg: topology context
2379  * @d: physical DAI configs.
2380  *
2381  * The physical dai should already be registered by the platform driver.
2382  * The platform driver should specify the DAI name and ID for matching.
2383  */
2384 static int soc_tplg_dai_config(struct soc_tplg *tplg,
2385                                struct snd_soc_tplg_dai *d)
2386 {
2387         struct snd_soc_dai_link_component dai_component;
2388         struct snd_soc_dai *dai;
2389         struct snd_soc_dai_driver *dai_drv;
2390         struct snd_soc_pcm_stream *stream;
2391         struct snd_soc_tplg_stream_caps *caps;
2392         int ret;
2393
2394         memset(&dai_component, 0, sizeof(dai_component));
2395
2396         dai_component.dai_name = d->dai_name;
2397         dai = snd_soc_find_dai(&dai_component);
2398         if (!dai) {
2399                 dev_err(tplg->dev, "ASoC: physical DAI %s not registered\n",
2400                         d->dai_name);
2401                 return -EINVAL;
2402         }
2403
2404         if (le32_to_cpu(d->dai_id) != dai->id) {
2405                 dev_err(tplg->dev, "ASoC: physical DAI %s id mismatch\n",
2406                         d->dai_name);
2407                 return -EINVAL;
2408         }
2409
2410         dai_drv = dai->driver;
2411         if (!dai_drv)
2412                 return -EINVAL;
2413
2414         if (d->playback) {
2415                 stream = &dai_drv->playback;
2416                 caps = &d->caps[SND_SOC_TPLG_STREAM_PLAYBACK];
2417                 set_stream_info(stream, caps);
2418         }
2419
2420         if (d->capture) {
2421                 stream = &dai_drv->capture;
2422                 caps = &d->caps[SND_SOC_TPLG_STREAM_CAPTURE];
2423                 set_stream_info(stream, caps);
2424         }
2425
2426         if (d->flag_mask)
2427                 set_dai_flags(dai_drv,
2428                               le32_to_cpu(d->flag_mask),
2429                               le32_to_cpu(d->flags));
2430
2431         /* pass control to component driver for optional further init */
2432         ret = soc_tplg_dai_load(tplg, dai_drv, NULL, dai);
2433         if (ret < 0) {
2434                 dev_err(tplg->comp->dev, "ASoC: DAI loading failed\n");
2435                 return ret;
2436         }
2437
2438         return 0;
2439 }
2440
2441 /* load physical DAI elements */
2442 static int soc_tplg_dai_elems_load(struct soc_tplg *tplg,
2443                                    struct snd_soc_tplg_hdr *hdr)
2444 {
2445         struct snd_soc_tplg_dai *dai;
2446         int count;
2447         int i, ret;
2448
2449         count = le32_to_cpu(hdr->count);
2450
2451         if (tplg->pass != SOC_TPLG_PASS_BE_DAI)
2452                 return 0;
2453
2454         /* config the existing BE DAIs */
2455         for (i = 0; i < count; i++) {
2456                 dai = (struct snd_soc_tplg_dai *)tplg->pos;
2457                 if (le32_to_cpu(dai->size) != sizeof(*dai)) {
2458                         dev_err(tplg->dev, "ASoC: invalid physical DAI size\n");
2459                         return -EINVAL;
2460                 }
2461
2462                 ret = soc_tplg_dai_config(tplg, dai);
2463                 if (ret < 0) {
2464                         dev_err(tplg->dev, "ASoC: failed to configure DAI\n");
2465                         return ret;
2466                 }
2467
2468                 tplg->pos += (sizeof(*dai) + le32_to_cpu(dai->priv.size));
2469         }
2470
2471         dev_dbg(tplg->dev, "ASoC: Configure %d BE DAIs\n", count);
2472         return 0;
2473 }
2474
2475 /**
2476  * manifest_new_ver - Create a new version of manifest from the old version
2477  * of source.
2478  * @tplg: topology context
2479  * @src: old version of manifest as a source
2480  * @manifest: latest version of manifest created from the source
2481  *
2482  * Support from vesion 4. Users need free the returned manifest manually.
2483  */
2484 static int manifest_new_ver(struct soc_tplg *tplg,
2485                             struct snd_soc_tplg_manifest *src,
2486                             struct snd_soc_tplg_manifest **manifest)
2487 {
2488         struct snd_soc_tplg_manifest *dest;
2489         struct snd_soc_tplg_manifest_v4 *src_v4;
2490         int size;
2491
2492         *manifest = NULL;
2493
2494         size = le32_to_cpu(src->size);
2495         if (size != sizeof(*src_v4)) {
2496                 dev_warn(tplg->dev, "ASoC: invalid manifest size %d\n",
2497                          size);
2498                 if (size)
2499                         return -EINVAL;
2500                 src->size = cpu_to_le32(sizeof(*src_v4));
2501         }
2502
2503         dev_warn(tplg->dev, "ASoC: old version of manifest\n");
2504
2505         src_v4 = (struct snd_soc_tplg_manifest_v4 *)src;
2506         dest = kzalloc(sizeof(*dest) + le32_to_cpu(src_v4->priv.size),
2507                        GFP_KERNEL);
2508         if (!dest)
2509                 return -ENOMEM;
2510
2511         dest->size = cpu_to_le32(sizeof(*dest)); /* size of latest abi version */
2512         dest->control_elems = src_v4->control_elems;
2513         dest->widget_elems = src_v4->widget_elems;
2514         dest->graph_elems = src_v4->graph_elems;
2515         dest->pcm_elems = src_v4->pcm_elems;
2516         dest->dai_link_elems = src_v4->dai_link_elems;
2517         dest->priv.size = src_v4->priv.size;
2518         if (dest->priv.size)
2519                 memcpy(dest->priv.data, src_v4->priv.data,
2520                        le32_to_cpu(src_v4->priv.size));
2521
2522         *manifest = dest;
2523         return 0;
2524 }
2525
2526 static int soc_tplg_manifest_load(struct soc_tplg *tplg,
2527                                   struct snd_soc_tplg_hdr *hdr)
2528 {
2529         struct snd_soc_tplg_manifest *manifest, *_manifest;
2530         bool abi_match;
2531         int ret = 0;
2532
2533         if (tplg->pass != SOC_TPLG_PASS_MANIFEST)
2534                 return 0;
2535
2536         manifest = (struct snd_soc_tplg_manifest *)tplg->pos;
2537
2538         /* check ABI version by size, create a new manifest if abi not match */
2539         if (le32_to_cpu(manifest->size) == sizeof(*manifest)) {
2540                 abi_match = true;
2541                 _manifest = manifest;
2542         } else {
2543                 abi_match = false;
2544                 ret = manifest_new_ver(tplg, manifest, &_manifest);
2545                 if (ret < 0)
2546                         return ret;
2547         }
2548
2549         /* pass control to component driver for optional further init */
2550         if (tplg->comp && tplg->ops && tplg->ops->manifest)
2551                 ret = tplg->ops->manifest(tplg->comp, tplg->index, _manifest);
2552
2553         if (!abi_match) /* free the duplicated one */
2554                 kfree(_manifest);
2555
2556         return ret;
2557 }
2558
2559 /* validate header magic, size and type */
2560 static int soc_valid_header(struct soc_tplg *tplg,
2561         struct snd_soc_tplg_hdr *hdr)
2562 {
2563         if (soc_tplg_get_hdr_offset(tplg) >= tplg->fw->size)
2564                 return 0;
2565
2566         if (le32_to_cpu(hdr->size) != sizeof(*hdr)) {
2567                 dev_err(tplg->dev,
2568                         "ASoC: invalid header size for type %d at offset 0x%lx size 0x%zx.\n",
2569                         le32_to_cpu(hdr->type), soc_tplg_get_hdr_offset(tplg),
2570                         tplg->fw->size);
2571                 return -EINVAL;
2572         }
2573
2574         /* big endian firmware objects not supported atm */
2575         if (le32_to_cpu(hdr->magic) == SOC_TPLG_MAGIC_BIG_ENDIAN) {
2576                 dev_err(tplg->dev,
2577                         "ASoC: pass %d big endian not supported header got %x at offset 0x%lx size 0x%zx.\n",
2578                         tplg->pass, hdr->magic,
2579                         soc_tplg_get_hdr_offset(tplg), tplg->fw->size);
2580                 return -EINVAL;
2581         }
2582
2583         if (le32_to_cpu(hdr->magic) != SND_SOC_TPLG_MAGIC) {
2584                 dev_err(tplg->dev,
2585                         "ASoC: pass %d does not have a valid header got %x at offset 0x%lx size 0x%zx.\n",
2586                         tplg->pass, hdr->magic,
2587                         soc_tplg_get_hdr_offset(tplg), tplg->fw->size);
2588                 return -EINVAL;
2589         }
2590
2591         /* Support ABI from version 4 */
2592         if (le32_to_cpu(hdr->abi) > SND_SOC_TPLG_ABI_VERSION ||
2593             le32_to_cpu(hdr->abi) < SND_SOC_TPLG_ABI_VERSION_MIN) {
2594                 dev_err(tplg->dev,
2595                         "ASoC: pass %d invalid ABI version got 0x%x need 0x%x at offset 0x%lx size 0x%zx.\n",
2596                         tplg->pass, hdr->abi,
2597                         SND_SOC_TPLG_ABI_VERSION, soc_tplg_get_hdr_offset(tplg),
2598                         tplg->fw->size);
2599                 return -EINVAL;
2600         }
2601
2602         if (hdr->payload_size == 0) {
2603                 dev_err(tplg->dev, "ASoC: header has 0 size at offset 0x%lx.\n",
2604                         soc_tplg_get_hdr_offset(tplg));
2605                 return -EINVAL;
2606         }
2607
2608         if (tplg->pass == le32_to_cpu(hdr->type))
2609                 dev_dbg(tplg->dev,
2610                         "ASoC: Got 0x%x bytes of type %d version %d vendor %d at pass %d\n",
2611                         hdr->payload_size, hdr->type, hdr->version,
2612                         hdr->vendor_type, tplg->pass);
2613
2614         return 1;
2615 }
2616
2617 /* check header type and call appropriate handler */
2618 static int soc_tplg_load_header(struct soc_tplg *tplg,
2619         struct snd_soc_tplg_hdr *hdr)
2620 {
2621         tplg->pos = tplg->hdr_pos + sizeof(struct snd_soc_tplg_hdr);
2622
2623         /* check for matching ID */
2624         if (le32_to_cpu(hdr->index) != tplg->req_index &&
2625                 tplg->req_index != SND_SOC_TPLG_INDEX_ALL)
2626                 return 0;
2627
2628         tplg->index = le32_to_cpu(hdr->index);
2629
2630         switch (le32_to_cpu(hdr->type)) {
2631         case SND_SOC_TPLG_TYPE_MIXER:
2632         case SND_SOC_TPLG_TYPE_ENUM:
2633         case SND_SOC_TPLG_TYPE_BYTES:
2634                 return soc_tplg_kcontrol_elems_load(tplg, hdr);
2635         case SND_SOC_TPLG_TYPE_DAPM_GRAPH:
2636                 return soc_tplg_dapm_graph_elems_load(tplg, hdr);
2637         case SND_SOC_TPLG_TYPE_DAPM_WIDGET:
2638                 return soc_tplg_dapm_widget_elems_load(tplg, hdr);
2639         case SND_SOC_TPLG_TYPE_PCM:
2640                 return soc_tplg_pcm_elems_load(tplg, hdr);
2641         case SND_SOC_TPLG_TYPE_DAI:
2642                 return soc_tplg_dai_elems_load(tplg, hdr);
2643         case SND_SOC_TPLG_TYPE_DAI_LINK:
2644         case SND_SOC_TPLG_TYPE_BACKEND_LINK:
2645                 /* physical link configurations */
2646                 return soc_tplg_link_elems_load(tplg, hdr);
2647         case SND_SOC_TPLG_TYPE_MANIFEST:
2648                 return soc_tplg_manifest_load(tplg, hdr);
2649         default:
2650                 /* bespoke vendor data object */
2651                 return soc_tplg_vendor_load(tplg, hdr);
2652         }
2653
2654         return 0;
2655 }
2656
2657 /* process the topology file headers */
2658 static int soc_tplg_process_headers(struct soc_tplg *tplg)
2659 {
2660         struct snd_soc_tplg_hdr *hdr;
2661         int ret;
2662
2663         tplg->pass = SOC_TPLG_PASS_START;
2664
2665         /* process the header types from start to end */
2666         while (tplg->pass <= SOC_TPLG_PASS_END) {
2667
2668                 tplg->hdr_pos = tplg->fw->data;
2669                 hdr = (struct snd_soc_tplg_hdr *)tplg->hdr_pos;
2670
2671                 while (!soc_tplg_is_eof(tplg)) {
2672
2673                         /* make sure header is valid before loading */
2674                         ret = soc_valid_header(tplg, hdr);
2675                         if (ret < 0)
2676                                 return ret;
2677                         else if (ret == 0)
2678                                 break;
2679
2680                         /* load the header object */
2681                         ret = soc_tplg_load_header(tplg, hdr);
2682                         if (ret < 0)
2683                                 return ret;
2684
2685                         /* goto next header */
2686                         tplg->hdr_pos += le32_to_cpu(hdr->payload_size) +
2687                                 sizeof(struct snd_soc_tplg_hdr);
2688                         hdr = (struct snd_soc_tplg_hdr *)tplg->hdr_pos;
2689                 }
2690
2691                 /* next data type pass */
2692                 tplg->pass++;
2693         }
2694
2695         /* signal DAPM we are complete */
2696         ret = soc_tplg_dapm_complete(tplg);
2697         if (ret < 0)
2698                 dev_err(tplg->dev,
2699                         "ASoC: failed to initialise DAPM from Firmware\n");
2700
2701         return ret;
2702 }
2703
2704 static int soc_tplg_load(struct soc_tplg *tplg)
2705 {
2706         int ret;
2707
2708         ret = soc_tplg_process_headers(tplg);
2709         if (ret == 0)
2710                 soc_tplg_complete(tplg);
2711
2712         return ret;
2713 }
2714
2715 /* load audio component topology from "firmware" file */
2716 int snd_soc_tplg_component_load(struct snd_soc_component *comp,
2717         struct snd_soc_tplg_ops *ops, const struct firmware *fw, u32 id)
2718 {
2719         struct soc_tplg tplg;
2720         int ret;
2721
2722         /* setup parsing context */
2723         memset(&tplg, 0, sizeof(tplg));
2724         tplg.fw = fw;
2725         tplg.dev = comp->dev;
2726         tplg.comp = comp;
2727         tplg.ops = ops;
2728         tplg.req_index = id;
2729         tplg.io_ops = ops->io_ops;
2730         tplg.io_ops_count = ops->io_ops_count;
2731         tplg.bytes_ext_ops = ops->bytes_ext_ops;
2732         tplg.bytes_ext_ops_count = ops->bytes_ext_ops_count;
2733
2734         ret = soc_tplg_load(&tplg);
2735         /* free the created components if fail to load topology */
2736         if (ret)
2737                 snd_soc_tplg_component_remove(comp, SND_SOC_TPLG_INDEX_ALL);
2738
2739         return ret;
2740 }
2741 EXPORT_SYMBOL_GPL(snd_soc_tplg_component_load);
2742
2743 /* remove this dynamic widget */
2744 void snd_soc_tplg_widget_remove(struct snd_soc_dapm_widget *w)
2745 {
2746         /* make sure we are a widget */
2747         if (w->dobj.type != SND_SOC_DOBJ_WIDGET)
2748                 return;
2749
2750         remove_widget(w->dapm->component, &w->dobj, SOC_TPLG_PASS_WIDGET);
2751 }
2752 EXPORT_SYMBOL_GPL(snd_soc_tplg_widget_remove);
2753
2754 /* remove all dynamic widgets from this DAPM context */
2755 void snd_soc_tplg_widget_remove_all(struct snd_soc_dapm_context *dapm,
2756         u32 index)
2757 {
2758         struct snd_soc_dapm_widget *w, *next_w;
2759
2760         list_for_each_entry_safe(w, next_w, &dapm->card->widgets, list) {
2761
2762                 /* make sure we are a widget with correct context */
2763                 if (w->dobj.type != SND_SOC_DOBJ_WIDGET || w->dapm != dapm)
2764                         continue;
2765
2766                 /* match ID */
2767                 if (w->dobj.index != index &&
2768                         w->dobj.index != SND_SOC_TPLG_INDEX_ALL)
2769                         continue;
2770                 /* check and free and dynamic widget kcontrols */
2771                 snd_soc_tplg_widget_remove(w);
2772                 snd_soc_dapm_free_widget(w);
2773         }
2774         snd_soc_dapm_reset_cache(dapm);
2775 }
2776 EXPORT_SYMBOL_GPL(snd_soc_tplg_widget_remove_all);
2777
2778 /* remove dynamic controls from the component driver */
2779 int snd_soc_tplg_component_remove(struct snd_soc_component *comp, u32 index)
2780 {
2781         struct snd_card *card = comp->card->snd_card;
2782         struct snd_soc_dobj *dobj, *next_dobj;
2783         int pass = SOC_TPLG_PASS_END;
2784
2785         /* process the header types from end to start */
2786         while (pass >= SOC_TPLG_PASS_START) {
2787
2788                 /* remove mixer controls */
2789                 down_write(&card->controls_rwsem);
2790                 list_for_each_entry_safe(dobj, next_dobj, &comp->dobj_list,
2791                         list) {
2792
2793                         /* match index */
2794                         if (dobj->index != index &&
2795                                 index != SND_SOC_TPLG_INDEX_ALL)
2796                                 continue;
2797
2798                         switch (dobj->type) {
2799                         case SND_SOC_DOBJ_MIXER:
2800                                 remove_mixer(comp, dobj, pass);
2801                                 break;
2802                         case SND_SOC_DOBJ_ENUM:
2803                                 remove_enum(comp, dobj, pass);
2804                                 break;
2805                         case SND_SOC_DOBJ_BYTES:
2806                                 remove_bytes(comp, dobj, pass);
2807                                 break;
2808                         case SND_SOC_DOBJ_GRAPH:
2809                                 remove_route(comp, dobj, pass);
2810                                 break;
2811                         case SND_SOC_DOBJ_WIDGET:
2812                                 remove_widget(comp, dobj, pass);
2813                                 break;
2814                         case SND_SOC_DOBJ_PCM:
2815                                 remove_dai(comp, dobj, pass);
2816                                 break;
2817                         case SND_SOC_DOBJ_DAI_LINK:
2818                                 remove_link(comp, dobj, pass);
2819                                 break;
2820                         case SND_SOC_DOBJ_BACKEND_LINK:
2821                                 /*
2822                                  * call link_unload ops if extra
2823                                  * deinitialization is needed.
2824                                  */
2825                                 remove_backend_link(comp, dobj, pass);
2826                                 break;
2827                         default:
2828                                 dev_err(comp->dev, "ASoC: invalid component type %d for removal\n",
2829                                         dobj->type);
2830                                 break;
2831                         }
2832                 }
2833                 up_write(&card->controls_rwsem);
2834                 pass--;
2835         }
2836
2837         /* let caller know if FW can be freed when no objects are left */
2838         return !list_empty(&comp->dobj_list);
2839 }
2840 EXPORT_SYMBOL_GPL(snd_soc_tplg_component_remove);