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