1 // SPDX-License-Identifier: GPL-2.0+
3 // soc-topology.c -- ALSA SoC Topology
5 // Copyright (C) 2012 Texas Instruments Inc.
6 // Copyright (C) 2015 Intel Corporation.
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>
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.
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.
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>
33 #define SOC_TPLG_MAGIC_BIG_ENDIAN 0x436F5341 /* ASoC in reverse */
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).
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
51 #define SOC_TPLG_PASS_START SOC_TPLG_PASS_MANIFEST
52 #define SOC_TPLG_PASS_END SOC_TPLG_PASS_LINK
54 /* topology context */
56 const struct firmware
*fw
;
58 /* runtime FW parsing */
59 const u8
*pos
; /* read postion */
60 const u8
*hdr_pos
; /* header position */
61 unsigned int pass
; /* pass number */
63 /* component caller */
65 struct snd_soc_component
*comp
;
66 u32 index
; /* current block index */
68 /* vendor specific kcontrol operations */
69 const struct snd_soc_tplg_kcontrol_ops
*io_ops
;
72 /* vendor specific bytes ext handlers, for TLV bytes controls */
73 const struct snd_soc_tplg_bytes_ext_ops
*bytes_ext_ops
;
74 int bytes_ext_ops_count
;
76 /* optional fw loading callbacks to component drivers */
77 struct snd_soc_tplg_ops
*ops
;
80 static int soc_tplg_process_headers(struct soc_tplg
*tplg
);
81 static void soc_tplg_complete(struct soc_tplg
*tplg
);
83 /* check we dont overflow the data for this control chunk */
84 static int soc_tplg_check_elem_count(struct soc_tplg
*tplg
, size_t elem_size
,
85 unsigned int count
, size_t bytes
, const char *elem_type
)
87 const u8
*end
= tplg
->pos
+ elem_size
* count
;
89 if (end
> tplg
->fw
->data
+ tplg
->fw
->size
) {
90 dev_err(tplg
->dev
, "ASoC: %s overflow end of data\n",
95 /* check there is enough room in chunk for control.
96 extra bytes at the end of control are for vendor data here */
97 if (elem_size
* count
> bytes
) {
99 "ASoC: %s count %d of size %zu is bigger than chunk %zu\n",
100 elem_type
, count
, elem_size
, bytes
);
107 static inline int soc_tplg_is_eof(struct soc_tplg
*tplg
)
109 const u8
*end
= tplg
->hdr_pos
;
111 if (end
>= tplg
->fw
->data
+ tplg
->fw
->size
)
116 static inline unsigned long soc_tplg_get_hdr_offset(struct soc_tplg
*tplg
)
118 return (unsigned long)(tplg
->hdr_pos
- tplg
->fw
->data
);
121 static inline unsigned long soc_tplg_get_offset(struct soc_tplg
*tplg
)
123 return (unsigned long)(tplg
->pos
- tplg
->fw
->data
);
126 /* mapping of Kcontrol types and associated operations. */
127 static const struct snd_soc_tplg_kcontrol_ops io_ops
[] = {
128 {SND_SOC_TPLG_CTL_VOLSW
, snd_soc_get_volsw
,
129 snd_soc_put_volsw
, snd_soc_info_volsw
},
130 {SND_SOC_TPLG_CTL_VOLSW_SX
, snd_soc_get_volsw_sx
,
131 snd_soc_put_volsw_sx
, NULL
},
132 {SND_SOC_TPLG_CTL_ENUM
, snd_soc_get_enum_double
,
133 snd_soc_put_enum_double
, snd_soc_info_enum_double
},
134 {SND_SOC_TPLG_CTL_ENUM_VALUE
, snd_soc_get_enum_double
,
135 snd_soc_put_enum_double
, NULL
},
136 {SND_SOC_TPLG_CTL_BYTES
, snd_soc_bytes_get
,
137 snd_soc_bytes_put
, snd_soc_bytes_info
},
138 {SND_SOC_TPLG_CTL_RANGE
, snd_soc_get_volsw_range
,
139 snd_soc_put_volsw_range
, snd_soc_info_volsw_range
},
140 {SND_SOC_TPLG_CTL_VOLSW_XR_SX
, snd_soc_get_xr_sx
,
141 snd_soc_put_xr_sx
, snd_soc_info_xr_sx
},
142 {SND_SOC_TPLG_CTL_STROBE
, snd_soc_get_strobe
,
143 snd_soc_put_strobe
, NULL
},
144 {SND_SOC_TPLG_DAPM_CTL_VOLSW
, snd_soc_dapm_get_volsw
,
145 snd_soc_dapm_put_volsw
, snd_soc_info_volsw
},
146 {SND_SOC_TPLG_DAPM_CTL_ENUM_DOUBLE
, snd_soc_dapm_get_enum_double
,
147 snd_soc_dapm_put_enum_double
, snd_soc_info_enum_double
},
148 {SND_SOC_TPLG_DAPM_CTL_ENUM_VIRT
, snd_soc_dapm_get_enum_double
,
149 snd_soc_dapm_put_enum_double
, NULL
},
150 {SND_SOC_TPLG_DAPM_CTL_ENUM_VALUE
, snd_soc_dapm_get_enum_double
,
151 snd_soc_dapm_put_enum_double
, NULL
},
152 {SND_SOC_TPLG_DAPM_CTL_PIN
, snd_soc_dapm_get_pin_switch
,
153 snd_soc_dapm_put_pin_switch
, snd_soc_dapm_info_pin_switch
},
156 struct soc_tplg_map
{
161 /* mapping of widget types from UAPI IDs to kernel IDs */
162 static const struct soc_tplg_map dapm_map
[] = {
163 {SND_SOC_TPLG_DAPM_INPUT
, snd_soc_dapm_input
},
164 {SND_SOC_TPLG_DAPM_OUTPUT
, snd_soc_dapm_output
},
165 {SND_SOC_TPLG_DAPM_MUX
, snd_soc_dapm_mux
},
166 {SND_SOC_TPLG_DAPM_MIXER
, snd_soc_dapm_mixer
},
167 {SND_SOC_TPLG_DAPM_PGA
, snd_soc_dapm_pga
},
168 {SND_SOC_TPLG_DAPM_OUT_DRV
, snd_soc_dapm_out_drv
},
169 {SND_SOC_TPLG_DAPM_ADC
, snd_soc_dapm_adc
},
170 {SND_SOC_TPLG_DAPM_DAC
, snd_soc_dapm_dac
},
171 {SND_SOC_TPLG_DAPM_SWITCH
, snd_soc_dapm_switch
},
172 {SND_SOC_TPLG_DAPM_PRE
, snd_soc_dapm_pre
},
173 {SND_SOC_TPLG_DAPM_POST
, snd_soc_dapm_post
},
174 {SND_SOC_TPLG_DAPM_AIF_IN
, snd_soc_dapm_aif_in
},
175 {SND_SOC_TPLG_DAPM_AIF_OUT
, snd_soc_dapm_aif_out
},
176 {SND_SOC_TPLG_DAPM_DAI_IN
, snd_soc_dapm_dai_in
},
177 {SND_SOC_TPLG_DAPM_DAI_OUT
, snd_soc_dapm_dai_out
},
178 {SND_SOC_TPLG_DAPM_DAI_LINK
, snd_soc_dapm_dai_link
},
179 {SND_SOC_TPLG_DAPM_BUFFER
, snd_soc_dapm_buffer
},
180 {SND_SOC_TPLG_DAPM_SCHEDULER
, snd_soc_dapm_scheduler
},
181 {SND_SOC_TPLG_DAPM_EFFECT
, snd_soc_dapm_effect
},
182 {SND_SOC_TPLG_DAPM_SIGGEN
, snd_soc_dapm_siggen
},
183 {SND_SOC_TPLG_DAPM_SRC
, snd_soc_dapm_src
},
184 {SND_SOC_TPLG_DAPM_ASRC
, snd_soc_dapm_asrc
},
185 {SND_SOC_TPLG_DAPM_ENCODER
, snd_soc_dapm_encoder
},
186 {SND_SOC_TPLG_DAPM_DECODER
, snd_soc_dapm_decoder
},
189 static int tplc_chan_get_reg(struct soc_tplg
*tplg
,
190 struct snd_soc_tplg_channel
*chan
, int map
)
194 for (i
= 0; i
< SND_SOC_TPLG_MAX_CHAN
; i
++) {
195 if (le32_to_cpu(chan
[i
].id
) == map
)
196 return le32_to_cpu(chan
[i
].reg
);
202 static int tplc_chan_get_shift(struct soc_tplg
*tplg
,
203 struct snd_soc_tplg_channel
*chan
, int map
)
207 for (i
= 0; i
< SND_SOC_TPLG_MAX_CHAN
; i
++) {
208 if (le32_to_cpu(chan
[i
].id
) == map
)
209 return le32_to_cpu(chan
[i
].shift
);
215 static int get_widget_id(int tplg_type
)
219 for (i
= 0; i
< ARRAY_SIZE(dapm_map
); i
++) {
220 if (tplg_type
== dapm_map
[i
].uid
)
221 return dapm_map
[i
].kid
;
227 static inline void soc_bind_err(struct soc_tplg
*tplg
,
228 struct snd_soc_tplg_ctl_hdr
*hdr
, int index
)
231 "ASoC: invalid control type (g,p,i) %d:%d:%d index %d at 0x%lx\n",
232 hdr
->ops
.get
, hdr
->ops
.put
, hdr
->ops
.info
, index
,
233 soc_tplg_get_offset(tplg
));
236 static inline void soc_control_err(struct soc_tplg
*tplg
,
237 struct snd_soc_tplg_ctl_hdr
*hdr
, const char *name
)
240 "ASoC: no complete mixer IO handler for %s type (g,p,i) %d:%d:%d at 0x%lx\n",
241 name
, hdr
->ops
.get
, hdr
->ops
.put
, hdr
->ops
.info
,
242 soc_tplg_get_offset(tplg
));
245 /* pass vendor data to component driver for processing */
246 static int soc_tplg_vendor_load(struct soc_tplg
*tplg
,
247 struct snd_soc_tplg_hdr
*hdr
)
251 if (tplg
->ops
&& tplg
->ops
->vendor_load
)
252 ret
= tplg
->ops
->vendor_load(tplg
->comp
, tplg
->index
, hdr
);
254 dev_err(tplg
->dev
, "ASoC: no vendor load callback for ID %d\n",
261 "ASoC: vendor load failed at hdr offset %ld/0x%lx for type %d:%d\n",
262 soc_tplg_get_hdr_offset(tplg
),
263 soc_tplg_get_hdr_offset(tplg
),
264 hdr
->type
, hdr
->vendor_type
);
268 /* optionally pass new dynamic widget to component driver. This is mainly for
269 * external widgets where we can assign private data/ops */
270 static int soc_tplg_widget_load(struct soc_tplg
*tplg
,
271 struct snd_soc_dapm_widget
*w
, struct snd_soc_tplg_dapm_widget
*tplg_w
)
273 if (tplg
->ops
&& tplg
->ops
->widget_load
)
274 return tplg
->ops
->widget_load(tplg
->comp
, tplg
->index
, w
,
280 /* optionally pass new dynamic widget to component driver. This is mainly for
281 * external widgets where we can assign private data/ops */
282 static int soc_tplg_widget_ready(struct soc_tplg
*tplg
,
283 struct snd_soc_dapm_widget
*w
, struct snd_soc_tplg_dapm_widget
*tplg_w
)
285 if (tplg
->ops
&& tplg
->ops
->widget_ready
)
286 return tplg
->ops
->widget_ready(tplg
->comp
, tplg
->index
, w
,
292 /* pass DAI configurations to component driver for extra initialization */
293 static int soc_tplg_dai_load(struct soc_tplg
*tplg
,
294 struct snd_soc_dai_driver
*dai_drv
,
295 struct snd_soc_tplg_pcm
*pcm
, struct snd_soc_dai
*dai
)
297 if (tplg
->ops
&& tplg
->ops
->dai_load
)
298 return tplg
->ops
->dai_load(tplg
->comp
, tplg
->index
, dai_drv
,
304 /* pass link configurations to component driver for extra initialization */
305 static int soc_tplg_dai_link_load(struct soc_tplg
*tplg
,
306 struct snd_soc_dai_link
*link
, struct snd_soc_tplg_link_config
*cfg
)
308 if (tplg
->ops
&& tplg
->ops
->link_load
)
309 return tplg
->ops
->link_load(tplg
->comp
, tplg
->index
, link
, cfg
);
314 /* tell the component driver that all firmware has been loaded in this request */
315 static void soc_tplg_complete(struct soc_tplg
*tplg
)
317 if (tplg
->ops
&& tplg
->ops
->complete
)
318 tplg
->ops
->complete(tplg
->comp
);
321 /* add a dynamic kcontrol */
322 static int soc_tplg_add_dcontrol(struct snd_card
*card
, struct device
*dev
,
323 const struct snd_kcontrol_new
*control_new
, const char *prefix
,
324 void *data
, struct snd_kcontrol
**kcontrol
)
328 *kcontrol
= snd_soc_cnew(control_new
, data
, control_new
->name
, prefix
);
329 if (*kcontrol
== NULL
) {
330 dev_err(dev
, "ASoC: Failed to create new kcontrol %s\n",
335 err
= snd_ctl_add(card
, *kcontrol
);
337 dev_err(dev
, "ASoC: Failed to add %s: %d\n",
338 control_new
->name
, err
);
345 /* add a dynamic kcontrol for component driver */
346 static int soc_tplg_add_kcontrol(struct soc_tplg
*tplg
,
347 struct snd_kcontrol_new
*k
, struct snd_kcontrol
**kcontrol
)
349 struct snd_soc_component
*comp
= tplg
->comp
;
351 return soc_tplg_add_dcontrol(comp
->card
->snd_card
,
352 comp
->dev
, k
, comp
->name_prefix
, comp
, kcontrol
);
355 /* remove a mixer kcontrol */
356 static void remove_mixer(struct snd_soc_component
*comp
,
357 struct snd_soc_dobj
*dobj
, int pass
)
359 struct snd_card
*card
= comp
->card
->snd_card
;
361 if (pass
!= SOC_TPLG_PASS_MIXER
)
364 if (dobj
->ops
&& dobj
->ops
->control_unload
)
365 dobj
->ops
->control_unload(comp
, dobj
);
367 snd_ctl_remove(card
, dobj
->control
.kcontrol
);
368 list_del(&dobj
->list
);
371 /* remove an enum kcontrol */
372 static void remove_enum(struct snd_soc_component
*comp
,
373 struct snd_soc_dobj
*dobj
, int pass
)
375 struct snd_card
*card
= comp
->card
->snd_card
;
377 if (pass
!= SOC_TPLG_PASS_MIXER
)
380 if (dobj
->ops
&& dobj
->ops
->control_unload
)
381 dobj
->ops
->control_unload(comp
, dobj
);
383 snd_ctl_remove(card
, dobj
->control
.kcontrol
);
384 list_del(&dobj
->list
);
387 /* remove a byte kcontrol */
388 static void remove_bytes(struct snd_soc_component
*comp
,
389 struct snd_soc_dobj
*dobj
, int pass
)
391 struct snd_card
*card
= comp
->card
->snd_card
;
393 if (pass
!= SOC_TPLG_PASS_MIXER
)
396 if (dobj
->ops
&& dobj
->ops
->control_unload
)
397 dobj
->ops
->control_unload(comp
, dobj
);
399 snd_ctl_remove(card
, dobj
->control
.kcontrol
);
400 list_del(&dobj
->list
);
404 static void remove_route(struct snd_soc_component
*comp
,
405 struct snd_soc_dobj
*dobj
, int pass
)
407 if (pass
!= SOC_TPLG_PASS_GRAPH
)
410 if (dobj
->ops
&& dobj
->ops
->dapm_route_unload
)
411 dobj
->ops
->dapm_route_unload(comp
, dobj
);
413 list_del(&dobj
->list
);
416 /* remove a widget and it's kcontrols - routes must be removed first */
417 static void remove_widget(struct snd_soc_component
*comp
,
418 struct snd_soc_dobj
*dobj
, int pass
)
420 struct snd_card
*card
= comp
->card
->snd_card
;
421 struct snd_soc_dapm_widget
*w
=
422 container_of(dobj
, struct snd_soc_dapm_widget
, dobj
);
425 if (pass
!= SOC_TPLG_PASS_WIDGET
)
428 if (dobj
->ops
&& dobj
->ops
->widget_unload
)
429 dobj
->ops
->widget_unload(comp
, dobj
);
434 for (i
= 0; w
->kcontrols
&& i
< w
->num_kcontrols
; i
++)
435 snd_ctl_remove(card
, w
->kcontrols
[i
]);
439 list_del(&dobj
->list
);
441 /* widget w is freed by soc-dapm.c */
444 /* remove DAI configurations */
445 static void remove_dai(struct snd_soc_component
*comp
,
446 struct snd_soc_dobj
*dobj
, int pass
)
448 struct snd_soc_dai_driver
*dai_drv
=
449 container_of(dobj
, struct snd_soc_dai_driver
, dobj
);
450 struct snd_soc_dai
*dai
;
452 if (pass
!= SOC_TPLG_PASS_PCM_DAI
)
455 if (dobj
->ops
&& dobj
->ops
->dai_unload
)
456 dobj
->ops
->dai_unload(comp
, dobj
);
458 for_each_component_dais(comp
, dai
)
459 if (dai
->driver
== dai_drv
)
462 list_del(&dobj
->list
);
465 /* remove link configurations */
466 static void remove_link(struct snd_soc_component
*comp
,
467 struct snd_soc_dobj
*dobj
, int pass
)
469 struct snd_soc_dai_link
*link
=
470 container_of(dobj
, struct snd_soc_dai_link
, dobj
);
472 if (pass
!= SOC_TPLG_PASS_PCM_DAI
)
475 if (dobj
->ops
&& dobj
->ops
->link_unload
)
476 dobj
->ops
->link_unload(comp
, dobj
);
478 list_del(&dobj
->list
);
479 snd_soc_remove_pcm_runtime(comp
->card
,
480 snd_soc_get_pcm_runtime(comp
->card
, link
));
483 /* unload dai link */
484 static void remove_backend_link(struct snd_soc_component
*comp
,
485 struct snd_soc_dobj
*dobj
, int pass
)
487 if (pass
!= SOC_TPLG_PASS_LINK
)
490 if (dobj
->ops
&& dobj
->ops
->link_unload
)
491 dobj
->ops
->link_unload(comp
, dobj
);
494 * We don't free the link here as what remove_link() do since BE
495 * links are not allocated by topology.
496 * We however need to reset the dobj type to its initial values
498 dobj
->type
= SND_SOC_DOBJ_NONE
;
499 list_del(&dobj
->list
);
502 /* bind a kcontrol to it's IO handlers */
503 static int soc_tplg_kcontrol_bind_io(struct snd_soc_tplg_ctl_hdr
*hdr
,
504 struct snd_kcontrol_new
*k
,
505 const struct soc_tplg
*tplg
)
507 const struct snd_soc_tplg_kcontrol_ops
*ops
;
508 const struct snd_soc_tplg_bytes_ext_ops
*ext_ops
;
511 if (le32_to_cpu(hdr
->ops
.info
) == SND_SOC_TPLG_CTL_BYTES
512 && k
->iface
& SNDRV_CTL_ELEM_IFACE_MIXER
513 && k
->access
& SNDRV_CTL_ELEM_ACCESS_TLV_READWRITE
514 && k
->access
& SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK
) {
515 struct soc_bytes_ext
*sbe
;
516 struct snd_soc_tplg_bytes_control
*be
;
518 sbe
= (struct soc_bytes_ext
*)k
->private_value
;
519 be
= container_of(hdr
, struct snd_soc_tplg_bytes_control
, hdr
);
521 /* TLV bytes controls need standard kcontrol info handler,
522 * TLV callback and extended put/get handlers.
524 k
->info
= snd_soc_bytes_info_ext
;
525 k
->tlv
.c
= snd_soc_bytes_tlv_callback
;
528 * When a topology-based implementation abuses the
529 * control interface and uses bytes_ext controls of
530 * more than 512 bytes, we need to disable the size
531 * checks, otherwise accesses to such controls will
532 * return an -EINVAL error and prevent the card from
535 if (IS_ENABLED(CONFIG_SND_CTL_VALIDATION
) && sbe
->max
> 512)
536 k
->access
|= SNDRV_CTL_ELEM_ACCESS_SKIP_CHECK
;
538 ext_ops
= tplg
->bytes_ext_ops
;
539 num_ops
= tplg
->bytes_ext_ops_count
;
540 for (i
= 0; i
< num_ops
; i
++) {
542 ext_ops
[i
].id
== le32_to_cpu(be
->ext_ops
.put
))
543 sbe
->put
= ext_ops
[i
].put
;
545 ext_ops
[i
].id
== le32_to_cpu(be
->ext_ops
.get
))
546 sbe
->get
= ext_ops
[i
].get
;
549 if ((k
->access
& SNDRV_CTL_ELEM_ACCESS_TLV_READ
) && !sbe
->get
)
551 if ((k
->access
& SNDRV_CTL_ELEM_ACCESS_TLV_WRITE
) && !sbe
->put
)
556 /* try and map vendor specific kcontrol handlers first */
558 num_ops
= tplg
->io_ops_count
;
559 for (i
= 0; i
< num_ops
; i
++) {
561 if (k
->put
== NULL
&& ops
[i
].id
== le32_to_cpu(hdr
->ops
.put
))
563 if (k
->get
== NULL
&& ops
[i
].id
== le32_to_cpu(hdr
->ops
.get
))
565 if (k
->info
== NULL
&& ops
[i
].id
== le32_to_cpu(hdr
->ops
.info
))
566 k
->info
= ops
[i
].info
;
569 /* vendor specific handlers found ? */
570 if (k
->put
&& k
->get
&& k
->info
)
573 /* none found so try standard kcontrol handlers */
575 num_ops
= ARRAY_SIZE(io_ops
);
576 for (i
= 0; i
< num_ops
; i
++) {
578 if (k
->put
== NULL
&& ops
[i
].id
== le32_to_cpu(hdr
->ops
.put
))
580 if (k
->get
== NULL
&& ops
[i
].id
== le32_to_cpu(hdr
->ops
.get
))
582 if (k
->info
== NULL
&& ops
[i
].id
== le32_to_cpu(hdr
->ops
.info
))
583 k
->info
= ops
[i
].info
;
586 /* standard handlers found ? */
587 if (k
->put
&& k
->get
&& k
->info
)
590 /* nothing to bind */
594 /* bind a widgets to it's evnt handlers */
595 int snd_soc_tplg_widget_bind_event(struct snd_soc_dapm_widget
*w
,
596 const struct snd_soc_tplg_widget_events
*events
,
597 int num_events
, u16 event_type
)
603 for (i
= 0; i
< num_events
; i
++) {
604 if (event_type
== events
[i
].type
) {
606 /* found - so assign event */
607 w
->event
= events
[i
].event_handler
;
615 EXPORT_SYMBOL_GPL(snd_soc_tplg_widget_bind_event
);
617 /* optionally pass new dynamic kcontrol to component driver. */
618 static int soc_tplg_init_kcontrol(struct soc_tplg
*tplg
,
619 struct snd_kcontrol_new
*k
, struct snd_soc_tplg_ctl_hdr
*hdr
)
621 if (tplg
->ops
&& tplg
->ops
->control_load
)
622 return tplg
->ops
->control_load(tplg
->comp
, tplg
->index
, k
,
629 static int soc_tplg_create_tlv_db_scale(struct soc_tplg
*tplg
,
630 struct snd_kcontrol_new
*kc
, struct snd_soc_tplg_tlv_dbscale
*scale
)
632 unsigned int item_len
= 2 * sizeof(unsigned int);
635 p
= devm_kzalloc(tplg
->dev
, item_len
+ 2 * sizeof(unsigned int), GFP_KERNEL
);
639 p
[0] = SNDRV_CTL_TLVT_DB_SCALE
;
641 p
[2] = le32_to_cpu(scale
->min
);
642 p
[3] = (le32_to_cpu(scale
->step
) & TLV_DB_SCALE_MASK
)
643 | (le32_to_cpu(scale
->mute
) ? TLV_DB_SCALE_MUTE
: 0);
645 kc
->tlv
.p
= (void *)p
;
649 static int soc_tplg_create_tlv(struct soc_tplg
*tplg
,
650 struct snd_kcontrol_new
*kc
, struct snd_soc_tplg_ctl_hdr
*tc
)
652 struct snd_soc_tplg_ctl_tlv
*tplg_tlv
;
653 u32 access
= le32_to_cpu(tc
->access
);
655 if (!(access
& SNDRV_CTL_ELEM_ACCESS_TLV_READWRITE
))
658 if (!(access
& SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK
)) {
660 switch (le32_to_cpu(tplg_tlv
->type
)) {
661 case SNDRV_CTL_TLVT_DB_SCALE
:
662 return soc_tplg_create_tlv_db_scale(tplg
, kc
,
665 /* TODO: add support for other TLV types */
667 dev_dbg(tplg
->dev
, "Unsupported TLV type %d\n",
676 static int soc_tplg_dbytes_create(struct soc_tplg
*tplg
, unsigned int count
,
679 struct snd_soc_tplg_bytes_control
*be
;
680 struct soc_bytes_ext
*sbe
;
681 struct snd_kcontrol_new kc
;
685 if (soc_tplg_check_elem_count(tplg
,
686 sizeof(struct snd_soc_tplg_bytes_control
), count
,
687 size
, "mixer bytes")) {
688 dev_err(tplg
->dev
, "ASoC: Invalid count %d for byte control\n",
693 for (i
= 0; i
< count
; i
++) {
694 be
= (struct snd_soc_tplg_bytes_control
*)tplg
->pos
;
696 /* validate kcontrol */
697 if (strnlen(be
->hdr
.name
, SNDRV_CTL_ELEM_ID_NAME_MAXLEN
) ==
698 SNDRV_CTL_ELEM_ID_NAME_MAXLEN
)
701 sbe
= devm_kzalloc(tplg
->dev
, sizeof(*sbe
), GFP_KERNEL
);
705 tplg
->pos
+= (sizeof(struct snd_soc_tplg_bytes_control
) +
706 le32_to_cpu(be
->priv
.size
));
709 "ASoC: adding bytes kcontrol %s with access 0x%x\n",
710 be
->hdr
.name
, be
->hdr
.access
);
712 memset(&kc
, 0, sizeof(kc
));
713 kc
.name
= be
->hdr
.name
;
714 kc
.private_value
= (long)sbe
;
715 kc
.iface
= SNDRV_CTL_ELEM_IFACE_MIXER
;
716 kc
.access
= le32_to_cpu(be
->hdr
.access
);
718 sbe
->max
= le32_to_cpu(be
->max
);
719 sbe
->dobj
.type
= SND_SOC_DOBJ_BYTES
;
720 sbe
->dobj
.ops
= tplg
->ops
;
721 INIT_LIST_HEAD(&sbe
->dobj
.list
);
723 /* map io handlers */
724 err
= soc_tplg_kcontrol_bind_io(&be
->hdr
, &kc
, tplg
);
726 soc_control_err(tplg
, &be
->hdr
, be
->hdr
.name
);
730 /* pass control to driver for optional further init */
731 err
= soc_tplg_init_kcontrol(tplg
, &kc
,
732 (struct snd_soc_tplg_ctl_hdr
*)be
);
734 dev_err(tplg
->dev
, "ASoC: failed to init %s\n",
739 /* register control here */
740 err
= soc_tplg_add_kcontrol(tplg
, &kc
,
741 &sbe
->dobj
.control
.kcontrol
);
743 dev_err(tplg
->dev
, "ASoC: failed to add %s\n",
748 list_add(&sbe
->dobj
.list
, &tplg
->comp
->dobj_list
);
754 static int soc_tplg_dmixer_create(struct soc_tplg
*tplg
, unsigned int count
,
757 struct snd_soc_tplg_mixer_control
*mc
;
758 struct soc_mixer_control
*sm
;
759 struct snd_kcontrol_new kc
;
763 if (soc_tplg_check_elem_count(tplg
,
764 sizeof(struct snd_soc_tplg_mixer_control
),
765 count
, size
, "mixers")) {
767 dev_err(tplg
->dev
, "ASoC: invalid count %d for controls\n",
772 for (i
= 0; i
< count
; i
++) {
773 mc
= (struct snd_soc_tplg_mixer_control
*)tplg
->pos
;
775 /* validate kcontrol */
776 if (strnlen(mc
->hdr
.name
, SNDRV_CTL_ELEM_ID_NAME_MAXLEN
) ==
777 SNDRV_CTL_ELEM_ID_NAME_MAXLEN
)
780 sm
= devm_kzalloc(tplg
->dev
, sizeof(*sm
), GFP_KERNEL
);
783 tplg
->pos
+= (sizeof(struct snd_soc_tplg_mixer_control
) +
784 le32_to_cpu(mc
->priv
.size
));
787 "ASoC: adding mixer kcontrol %s with access 0x%x\n",
788 mc
->hdr
.name
, mc
->hdr
.access
);
790 memset(&kc
, 0, sizeof(kc
));
791 kc
.name
= mc
->hdr
.name
;
792 kc
.private_value
= (long)sm
;
793 kc
.iface
= SNDRV_CTL_ELEM_IFACE_MIXER
;
794 kc
.access
= le32_to_cpu(mc
->hdr
.access
);
796 /* we only support FL/FR channel mapping atm */
797 sm
->reg
= tplc_chan_get_reg(tplg
, mc
->channel
,
799 sm
->rreg
= tplc_chan_get_reg(tplg
, mc
->channel
,
801 sm
->shift
= tplc_chan_get_shift(tplg
, mc
->channel
,
803 sm
->rshift
= tplc_chan_get_shift(tplg
, mc
->channel
,
806 sm
->max
= le32_to_cpu(mc
->max
);
807 sm
->min
= le32_to_cpu(mc
->min
);
808 sm
->invert
= le32_to_cpu(mc
->invert
);
809 sm
->platform_max
= le32_to_cpu(mc
->platform_max
);
810 sm
->dobj
.index
= tplg
->index
;
811 sm
->dobj
.ops
= tplg
->ops
;
812 sm
->dobj
.type
= SND_SOC_DOBJ_MIXER
;
813 INIT_LIST_HEAD(&sm
->dobj
.list
);
815 /* map io handlers */
816 err
= soc_tplg_kcontrol_bind_io(&mc
->hdr
, &kc
, tplg
);
818 soc_control_err(tplg
, &mc
->hdr
, mc
->hdr
.name
);
822 /* create any TLV data */
823 err
= soc_tplg_create_tlv(tplg
, &kc
, &mc
->hdr
);
825 dev_err(tplg
->dev
, "ASoC: failed to create TLV %s\n",
830 /* pass control to driver for optional further init */
831 err
= soc_tplg_init_kcontrol(tplg
, &kc
,
832 (struct snd_soc_tplg_ctl_hdr
*) mc
);
834 dev_err(tplg
->dev
, "ASoC: failed to init %s\n",
839 /* register control here */
840 err
= soc_tplg_add_kcontrol(tplg
, &kc
,
841 &sm
->dobj
.control
.kcontrol
);
843 dev_err(tplg
->dev
, "ASoC: failed to add %s\n",
848 list_add(&sm
->dobj
.list
, &tplg
->comp
->dobj_list
);
854 static int soc_tplg_denum_create_texts(struct soc_tplg
*tplg
, struct soc_enum
*se
,
855 struct snd_soc_tplg_enum_control
*ec
)
859 if (le32_to_cpu(ec
->items
) > ARRAY_SIZE(ec
->texts
))
862 se
->dobj
.control
.dtexts
=
863 devm_kcalloc(tplg
->dev
, le32_to_cpu(ec
->items
), sizeof(char *), GFP_KERNEL
);
864 if (se
->dobj
.control
.dtexts
== NULL
)
867 for (i
= 0; i
< le32_to_cpu(ec
->items
); i
++) {
869 if (strnlen(ec
->texts
[i
], SNDRV_CTL_ELEM_ID_NAME_MAXLEN
) ==
870 SNDRV_CTL_ELEM_ID_NAME_MAXLEN
) {
875 se
->dobj
.control
.dtexts
[i
] = devm_kstrdup(tplg
->dev
, ec
->texts
[i
], GFP_KERNEL
);
876 if (!se
->dobj
.control
.dtexts
[i
]) {
882 se
->items
= le32_to_cpu(ec
->items
);
883 se
->texts
= (const char * const *)se
->dobj
.control
.dtexts
;
890 static int soc_tplg_denum_create_values(struct soc_tplg
*tplg
, struct soc_enum
*se
,
891 struct snd_soc_tplg_enum_control
*ec
)
896 * Following "if" checks if we have at most SND_SOC_TPLG_NUM_TEXTS
897 * values instead of using ARRAY_SIZE(ec->values) due to the fact that
898 * it is oversized for its purpose. Additionally it is done so because
899 * it is defined in UAPI header where it can't be easily changed.
901 if (le32_to_cpu(ec
->items
) > SND_SOC_TPLG_NUM_TEXTS
)
904 se
->dobj
.control
.dvalues
= devm_kcalloc(tplg
->dev
, le32_to_cpu(ec
->items
),
907 if (!se
->dobj
.control
.dvalues
)
910 /* convert from little-endian */
911 for (i
= 0; i
< le32_to_cpu(ec
->items
); i
++) {
912 se
->dobj
.control
.dvalues
[i
] = le32_to_cpu(ec
->values
[i
]);
918 static int soc_tplg_denum_create(struct soc_tplg
*tplg
, unsigned int count
,
921 struct snd_soc_tplg_enum_control
*ec
;
923 struct snd_kcontrol_new kc
;
927 if (soc_tplg_check_elem_count(tplg
,
928 sizeof(struct snd_soc_tplg_enum_control
),
929 count
, size
, "enums")) {
931 dev_err(tplg
->dev
, "ASoC: invalid count %d for enum controls\n",
936 for (i
= 0; i
< count
; i
++) {
937 ec
= (struct snd_soc_tplg_enum_control
*)tplg
->pos
;
939 /* validate kcontrol */
940 if (strnlen(ec
->hdr
.name
, SNDRV_CTL_ELEM_ID_NAME_MAXLEN
) ==
941 SNDRV_CTL_ELEM_ID_NAME_MAXLEN
)
944 se
= devm_kzalloc(tplg
->dev
, (sizeof(*se
)), GFP_KERNEL
);
948 tplg
->pos
+= (sizeof(struct snd_soc_tplg_enum_control
) +
949 le32_to_cpu(ec
->priv
.size
));
951 dev_dbg(tplg
->dev
, "ASoC: adding enum kcontrol %s size %d\n",
952 ec
->hdr
.name
, ec
->items
);
954 memset(&kc
, 0, sizeof(kc
));
955 kc
.name
= ec
->hdr
.name
;
956 kc
.private_value
= (long)se
;
957 kc
.iface
= SNDRV_CTL_ELEM_IFACE_MIXER
;
958 kc
.access
= le32_to_cpu(ec
->hdr
.access
);
960 se
->reg
= tplc_chan_get_reg(tplg
, ec
->channel
, SNDRV_CHMAP_FL
);
961 se
->shift_l
= tplc_chan_get_shift(tplg
, ec
->channel
,
963 se
->shift_r
= tplc_chan_get_shift(tplg
, ec
->channel
,
966 se
->mask
= le32_to_cpu(ec
->mask
);
967 se
->dobj
.index
= tplg
->index
;
968 se
->dobj
.type
= SND_SOC_DOBJ_ENUM
;
969 se
->dobj
.ops
= tplg
->ops
;
970 INIT_LIST_HEAD(&se
->dobj
.list
);
972 switch (le32_to_cpu(ec
->hdr
.ops
.info
)) {
973 case SND_SOC_TPLG_DAPM_CTL_ENUM_VALUE
:
974 case SND_SOC_TPLG_CTL_ENUM_VALUE
:
975 err
= soc_tplg_denum_create_values(tplg
, se
, ec
);
978 "ASoC: could not create values for %s\n",
983 case SND_SOC_TPLG_CTL_ENUM
:
984 case SND_SOC_TPLG_DAPM_CTL_ENUM_DOUBLE
:
985 case SND_SOC_TPLG_DAPM_CTL_ENUM_VIRT
:
986 err
= soc_tplg_denum_create_texts(tplg
, se
, ec
);
989 "ASoC: could not create texts for %s\n",
997 "ASoC: invalid enum control type %d for %s\n",
998 ec
->hdr
.ops
.info
, ec
->hdr
.name
);
1002 /* map io handlers */
1003 err
= soc_tplg_kcontrol_bind_io(&ec
->hdr
, &kc
, tplg
);
1005 soc_control_err(tplg
, &ec
->hdr
, ec
->hdr
.name
);
1009 /* pass control to driver for optional further init */
1010 err
= soc_tplg_init_kcontrol(tplg
, &kc
,
1011 (struct snd_soc_tplg_ctl_hdr
*) ec
);
1013 dev_err(tplg
->dev
, "ASoC: failed to init %s\n",
1018 /* register control here */
1019 err
= soc_tplg_add_kcontrol(tplg
,
1020 &kc
, &se
->dobj
.control
.kcontrol
);
1022 dev_err(tplg
->dev
, "ASoC: could not add kcontrol %s\n",
1027 list_add(&se
->dobj
.list
, &tplg
->comp
->dobj_list
);
1035 static int soc_tplg_kcontrol_elems_load(struct soc_tplg
*tplg
,
1036 struct snd_soc_tplg_hdr
*hdr
)
1038 struct snd_soc_tplg_ctl_hdr
*control_hdr
;
1042 dev_dbg(tplg
->dev
, "ASoC: adding %d kcontrols at 0x%lx\n", hdr
->count
,
1043 soc_tplg_get_offset(tplg
));
1045 for (i
= 0; i
< le32_to_cpu(hdr
->count
); i
++) {
1047 control_hdr
= (struct snd_soc_tplg_ctl_hdr
*)tplg
->pos
;
1049 if (le32_to_cpu(control_hdr
->size
) != sizeof(*control_hdr
)) {
1050 dev_err(tplg
->dev
, "ASoC: invalid control size\n");
1054 switch (le32_to_cpu(control_hdr
->ops
.info
)) {
1055 case SND_SOC_TPLG_CTL_VOLSW
:
1056 case SND_SOC_TPLG_CTL_STROBE
:
1057 case SND_SOC_TPLG_CTL_VOLSW_SX
:
1058 case SND_SOC_TPLG_CTL_VOLSW_XR_SX
:
1059 case SND_SOC_TPLG_CTL_RANGE
:
1060 case SND_SOC_TPLG_DAPM_CTL_VOLSW
:
1061 case SND_SOC_TPLG_DAPM_CTL_PIN
:
1062 ret
= soc_tplg_dmixer_create(tplg
, 1,
1063 le32_to_cpu(hdr
->payload_size
));
1065 case SND_SOC_TPLG_CTL_ENUM
:
1066 case SND_SOC_TPLG_CTL_ENUM_VALUE
:
1067 case SND_SOC_TPLG_DAPM_CTL_ENUM_DOUBLE
:
1068 case SND_SOC_TPLG_DAPM_CTL_ENUM_VIRT
:
1069 case SND_SOC_TPLG_DAPM_CTL_ENUM_VALUE
:
1070 ret
= soc_tplg_denum_create(tplg
, 1,
1071 le32_to_cpu(hdr
->payload_size
));
1073 case SND_SOC_TPLG_CTL_BYTES
:
1074 ret
= soc_tplg_dbytes_create(tplg
, 1,
1075 le32_to_cpu(hdr
->payload_size
));
1078 soc_bind_err(tplg
, control_hdr
, i
);
1082 dev_err(tplg
->dev
, "ASoC: invalid control\n");
1091 /* optionally pass new dynamic kcontrol to component driver. */
1092 static int soc_tplg_add_route(struct soc_tplg
*tplg
,
1093 struct snd_soc_dapm_route
*route
)
1095 if (tplg
->ops
&& tplg
->ops
->dapm_route_load
)
1096 return tplg
->ops
->dapm_route_load(tplg
->comp
, tplg
->index
,
1102 static int soc_tplg_dapm_graph_elems_load(struct soc_tplg
*tplg
,
1103 struct snd_soc_tplg_hdr
*hdr
)
1105 struct snd_soc_dapm_context
*dapm
= &tplg
->comp
->dapm
;
1106 struct snd_soc_tplg_dapm_graph_elem
*elem
;
1107 struct snd_soc_dapm_route
**routes
;
1111 count
= le32_to_cpu(hdr
->count
);
1113 if (soc_tplg_check_elem_count(tplg
,
1114 sizeof(struct snd_soc_tplg_dapm_graph_elem
),
1115 count
, le32_to_cpu(hdr
->payload_size
), "graph")) {
1117 dev_err(tplg
->dev
, "ASoC: invalid count %d for DAPM routes\n",
1122 dev_dbg(tplg
->dev
, "ASoC: adding %d DAPM routes for index %d\n", count
,
1125 /* allocate memory for pointer to array of dapm routes */
1126 routes
= kcalloc(count
, sizeof(struct snd_soc_dapm_route
*),
1132 * allocate memory for each dapm route in the array.
1133 * This needs to be done individually so that
1134 * each route can be freed when it is removed in remove_route().
1136 for (i
= 0; i
< count
; i
++) {
1137 routes
[i
] = devm_kzalloc(tplg
->dev
, sizeof(*routes
[i
]), GFP_KERNEL
);
1142 for (i
= 0; i
< count
; i
++) {
1143 elem
= (struct snd_soc_tplg_dapm_graph_elem
*)tplg
->pos
;
1144 tplg
->pos
+= sizeof(struct snd_soc_tplg_dapm_graph_elem
);
1146 /* validate routes */
1147 if (strnlen(elem
->source
, SNDRV_CTL_ELEM_ID_NAME_MAXLEN
) ==
1148 SNDRV_CTL_ELEM_ID_NAME_MAXLEN
) {
1152 if (strnlen(elem
->sink
, SNDRV_CTL_ELEM_ID_NAME_MAXLEN
) ==
1153 SNDRV_CTL_ELEM_ID_NAME_MAXLEN
) {
1157 if (strnlen(elem
->control
, SNDRV_CTL_ELEM_ID_NAME_MAXLEN
) ==
1158 SNDRV_CTL_ELEM_ID_NAME_MAXLEN
) {
1163 routes
[i
]->source
= elem
->source
;
1164 routes
[i
]->sink
= elem
->sink
;
1166 /* set to NULL atm for tplg users */
1167 routes
[i
]->connected
= NULL
;
1168 if (strnlen(elem
->control
, SNDRV_CTL_ELEM_ID_NAME_MAXLEN
) == 0)
1169 routes
[i
]->control
= NULL
;
1171 routes
[i
]->control
= elem
->control
;
1173 /* add route dobj to dobj_list */
1174 routes
[i
]->dobj
.type
= SND_SOC_DOBJ_GRAPH
;
1175 routes
[i
]->dobj
.ops
= tplg
->ops
;
1176 routes
[i
]->dobj
.index
= tplg
->index
;
1177 list_add(&routes
[i
]->dobj
.list
, &tplg
->comp
->dobj_list
);
1179 ret
= soc_tplg_add_route(tplg
, routes
[i
]);
1181 dev_err(tplg
->dev
, "ASoC: topology: add_route failed: %d\n", ret
);
1183 * this route was added to the list, it will
1184 * be freed in remove_route() so increment the
1185 * counter to skip it in the error handling
1192 /* add route, but keep going if some fail */
1193 snd_soc_dapm_add_routes(dapm
, routes
[i
], 1);
1197 * free pointer to array of dapm routes as this is no longer needed.
1198 * The memory allocated for each dapm route will be freed
1199 * when it is removed in remove_route().
1206 static struct snd_kcontrol_new
*soc_tplg_dapm_widget_dmixer_create(
1207 struct soc_tplg
*tplg
, int num_kcontrols
)
1209 struct snd_kcontrol_new
*kc
;
1210 struct soc_mixer_control
*sm
;
1211 struct snd_soc_tplg_mixer_control
*mc
;
1214 kc
= devm_kcalloc(tplg
->dev
, num_kcontrols
, sizeof(*kc
), GFP_KERNEL
);
1218 for (i
= 0; i
< num_kcontrols
; i
++) {
1219 mc
= (struct snd_soc_tplg_mixer_control
*)tplg
->pos
;
1221 /* validate kcontrol */
1222 if (strnlen(mc
->hdr
.name
, SNDRV_CTL_ELEM_ID_NAME_MAXLEN
) ==
1223 SNDRV_CTL_ELEM_ID_NAME_MAXLEN
)
1226 sm
= devm_kzalloc(tplg
->dev
, sizeof(*sm
), GFP_KERNEL
);
1230 tplg
->pos
+= (sizeof(struct snd_soc_tplg_mixer_control
) +
1231 le32_to_cpu(mc
->priv
.size
));
1233 dev_dbg(tplg
->dev
, " adding DAPM widget mixer control %s at %d\n",
1236 kc
[i
].private_value
= (long)sm
;
1237 kc
[i
].name
= devm_kstrdup(tplg
->dev
, mc
->hdr
.name
, GFP_KERNEL
);
1238 if (kc
[i
].name
== NULL
)
1240 kc
[i
].iface
= SNDRV_CTL_ELEM_IFACE_MIXER
;
1241 kc
[i
].access
= le32_to_cpu(mc
->hdr
.access
);
1243 /* we only support FL/FR channel mapping atm */
1244 sm
->reg
= tplc_chan_get_reg(tplg
, mc
->channel
,
1246 sm
->rreg
= tplc_chan_get_reg(tplg
, mc
->channel
,
1248 sm
->shift
= tplc_chan_get_shift(tplg
, mc
->channel
,
1250 sm
->rshift
= tplc_chan_get_shift(tplg
, mc
->channel
,
1253 sm
->max
= le32_to_cpu(mc
->max
);
1254 sm
->min
= le32_to_cpu(mc
->min
);
1255 sm
->invert
= le32_to_cpu(mc
->invert
);
1256 sm
->platform_max
= le32_to_cpu(mc
->platform_max
);
1257 sm
->dobj
.index
= tplg
->index
;
1258 INIT_LIST_HEAD(&sm
->dobj
.list
);
1260 /* map io handlers */
1261 err
= soc_tplg_kcontrol_bind_io(&mc
->hdr
, &kc
[i
], tplg
);
1263 soc_control_err(tplg
, &mc
->hdr
, mc
->hdr
.name
);
1267 /* create any TLV data */
1268 err
= soc_tplg_create_tlv(tplg
, &kc
[i
], &mc
->hdr
);
1270 dev_err(tplg
->dev
, "ASoC: failed to create TLV %s\n",
1275 /* pass control to driver for optional further init */
1276 err
= soc_tplg_init_kcontrol(tplg
, &kc
[i
],
1277 (struct snd_soc_tplg_ctl_hdr
*)mc
);
1279 dev_err(tplg
->dev
, "ASoC: failed to init %s\n",
1290 static struct snd_kcontrol_new
*soc_tplg_dapm_widget_denum_create(
1291 struct soc_tplg
*tplg
, int num_kcontrols
)
1293 struct snd_kcontrol_new
*kc
;
1294 struct snd_soc_tplg_enum_control
*ec
;
1295 struct soc_enum
*se
;
1298 kc
= devm_kcalloc(tplg
->dev
, num_kcontrols
, sizeof(*kc
), GFP_KERNEL
);
1302 for (i
= 0; i
< num_kcontrols
; i
++) {
1303 ec
= (struct snd_soc_tplg_enum_control
*)tplg
->pos
;
1304 /* validate kcontrol */
1305 if (strnlen(ec
->hdr
.name
, SNDRV_CTL_ELEM_ID_NAME_MAXLEN
) ==
1306 SNDRV_CTL_ELEM_ID_NAME_MAXLEN
)
1309 se
= devm_kzalloc(tplg
->dev
, sizeof(*se
), GFP_KERNEL
);
1313 tplg
->pos
+= (sizeof(struct snd_soc_tplg_enum_control
) +
1314 le32_to_cpu(ec
->priv
.size
));
1316 dev_dbg(tplg
->dev
, " adding DAPM widget enum control %s\n",
1319 kc
[i
].private_value
= (long)se
;
1320 kc
[i
].name
= devm_kstrdup(tplg
->dev
, ec
->hdr
.name
, GFP_KERNEL
);
1321 if (kc
[i
].name
== NULL
)
1323 kc
[i
].iface
= SNDRV_CTL_ELEM_IFACE_MIXER
;
1324 kc
[i
].access
= le32_to_cpu(ec
->hdr
.access
);
1326 /* we only support FL/FR channel mapping atm */
1327 se
->reg
= tplc_chan_get_reg(tplg
, ec
->channel
, SNDRV_CHMAP_FL
);
1328 se
->shift_l
= tplc_chan_get_shift(tplg
, ec
->channel
,
1330 se
->shift_r
= tplc_chan_get_shift(tplg
, ec
->channel
,
1333 se
->items
= le32_to_cpu(ec
->items
);
1334 se
->mask
= le32_to_cpu(ec
->mask
);
1335 se
->dobj
.index
= tplg
->index
;
1337 switch (le32_to_cpu(ec
->hdr
.ops
.info
)) {
1338 case SND_SOC_TPLG_CTL_ENUM_VALUE
:
1339 case SND_SOC_TPLG_DAPM_CTL_ENUM_VALUE
:
1340 err
= soc_tplg_denum_create_values(tplg
, se
, ec
);
1342 dev_err(tplg
->dev
, "ASoC: could not create values for %s\n",
1347 case SND_SOC_TPLG_CTL_ENUM
:
1348 case SND_SOC_TPLG_DAPM_CTL_ENUM_DOUBLE
:
1349 case SND_SOC_TPLG_DAPM_CTL_ENUM_VIRT
:
1350 err
= soc_tplg_denum_create_texts(tplg
, se
, ec
);
1352 dev_err(tplg
->dev
, "ASoC: could not create texts for %s\n",
1358 dev_err(tplg
->dev
, "ASoC: invalid enum control type %d for %s\n",
1359 ec
->hdr
.ops
.info
, ec
->hdr
.name
);
1363 /* map io handlers */
1364 err
= soc_tplg_kcontrol_bind_io(&ec
->hdr
, &kc
[i
], tplg
);
1366 soc_control_err(tplg
, &ec
->hdr
, ec
->hdr
.name
);
1370 /* pass control to driver for optional further init */
1371 err
= soc_tplg_init_kcontrol(tplg
, &kc
[i
],
1372 (struct snd_soc_tplg_ctl_hdr
*)ec
);
1374 dev_err(tplg
->dev
, "ASoC: failed to init %s\n",
1386 static struct snd_kcontrol_new
*soc_tplg_dapm_widget_dbytes_create(
1387 struct soc_tplg
*tplg
, int num_kcontrols
)
1389 struct snd_soc_tplg_bytes_control
*be
;
1390 struct soc_bytes_ext
*sbe
;
1391 struct snd_kcontrol_new
*kc
;
1394 kc
= devm_kcalloc(tplg
->dev
, num_kcontrols
, sizeof(*kc
), GFP_KERNEL
);
1398 for (i
= 0; i
< num_kcontrols
; i
++) {
1399 be
= (struct snd_soc_tplg_bytes_control
*)tplg
->pos
;
1401 /* validate kcontrol */
1402 if (strnlen(be
->hdr
.name
, SNDRV_CTL_ELEM_ID_NAME_MAXLEN
) ==
1403 SNDRV_CTL_ELEM_ID_NAME_MAXLEN
)
1406 sbe
= devm_kzalloc(tplg
->dev
, sizeof(*sbe
), GFP_KERNEL
);
1410 tplg
->pos
+= (sizeof(struct snd_soc_tplg_bytes_control
) +
1411 le32_to_cpu(be
->priv
.size
));
1414 "ASoC: adding bytes kcontrol %s with access 0x%x\n",
1415 be
->hdr
.name
, be
->hdr
.access
);
1417 kc
[i
].private_value
= (long)sbe
;
1418 kc
[i
].name
= devm_kstrdup(tplg
->dev
, be
->hdr
.name
, GFP_KERNEL
);
1419 if (kc
[i
].name
== NULL
)
1421 kc
[i
].iface
= SNDRV_CTL_ELEM_IFACE_MIXER
;
1422 kc
[i
].access
= le32_to_cpu(be
->hdr
.access
);
1424 sbe
->max
= le32_to_cpu(be
->max
);
1425 INIT_LIST_HEAD(&sbe
->dobj
.list
);
1427 /* map standard io handlers and check for external handlers */
1428 err
= soc_tplg_kcontrol_bind_io(&be
->hdr
, &kc
[i
], tplg
);
1430 soc_control_err(tplg
, &be
->hdr
, be
->hdr
.name
);
1434 /* pass control to driver for optional further init */
1435 err
= soc_tplg_init_kcontrol(tplg
, &kc
[i
],
1436 (struct snd_soc_tplg_ctl_hdr
*)be
);
1438 dev_err(tplg
->dev
, "ASoC: failed to init %s\n",
1451 static int soc_tplg_dapm_widget_create(struct soc_tplg
*tplg
,
1452 struct snd_soc_tplg_dapm_widget
*w
)
1454 struct snd_soc_dapm_context
*dapm
= &tplg
->comp
->dapm
;
1455 struct snd_soc_dapm_widget
template, *widget
;
1456 struct snd_soc_tplg_ctl_hdr
*control_hdr
;
1457 struct snd_soc_card
*card
= tplg
->comp
->card
;
1458 unsigned int kcontrol_type
;
1461 if (strnlen(w
->name
, SNDRV_CTL_ELEM_ID_NAME_MAXLEN
) ==
1462 SNDRV_CTL_ELEM_ID_NAME_MAXLEN
)
1464 if (strnlen(w
->sname
, SNDRV_CTL_ELEM_ID_NAME_MAXLEN
) ==
1465 SNDRV_CTL_ELEM_ID_NAME_MAXLEN
)
1468 dev_dbg(tplg
->dev
, "ASoC: creating DAPM widget %s id %d\n",
1471 memset(&template, 0, sizeof(template));
1473 /* map user to kernel widget ID */
1474 template.id
= get_widget_id(le32_to_cpu(w
->id
));
1475 if ((int)template.id
< 0)
1478 /* strings are allocated here, but used and freed by the widget */
1479 template.name
= kstrdup(w
->name
, GFP_KERNEL
);
1482 template.sname
= kstrdup(w
->sname
, GFP_KERNEL
);
1483 if (!template.sname
) {
1487 template.reg
= le32_to_cpu(w
->reg
);
1488 template.shift
= le32_to_cpu(w
->shift
);
1489 template.mask
= le32_to_cpu(w
->mask
);
1490 template.subseq
= le32_to_cpu(w
->subseq
);
1491 template.on_val
= w
->invert
? 0 : 1;
1492 template.off_val
= w
->invert
? 1 : 0;
1493 template.ignore_suspend
= le32_to_cpu(w
->ignore_suspend
);
1494 template.event_flags
= le16_to_cpu(w
->event_flags
);
1495 template.dobj
.index
= tplg
->index
;
1498 (sizeof(struct snd_soc_tplg_dapm_widget
) +
1499 le32_to_cpu(w
->priv
.size
));
1501 if (w
->num_kcontrols
== 0) {
1503 template.num_kcontrols
= 0;
1507 control_hdr
= (struct snd_soc_tplg_ctl_hdr
*)tplg
->pos
;
1508 dev_dbg(tplg
->dev
, "ASoC: template %s has %d controls of type %x\n",
1509 w
->name
, w
->num_kcontrols
, control_hdr
->type
);
1511 switch (le32_to_cpu(control_hdr
->ops
.info
)) {
1512 case SND_SOC_TPLG_CTL_VOLSW
:
1513 case SND_SOC_TPLG_CTL_STROBE
:
1514 case SND_SOC_TPLG_CTL_VOLSW_SX
:
1515 case SND_SOC_TPLG_CTL_VOLSW_XR_SX
:
1516 case SND_SOC_TPLG_CTL_RANGE
:
1517 case SND_SOC_TPLG_DAPM_CTL_VOLSW
:
1518 kcontrol_type
= SND_SOC_TPLG_TYPE_MIXER
; /* volume mixer */
1519 template.num_kcontrols
= le32_to_cpu(w
->num_kcontrols
);
1520 template.kcontrol_news
=
1521 soc_tplg_dapm_widget_dmixer_create(tplg
,
1522 template.num_kcontrols
);
1523 if (!template.kcontrol_news
) {
1528 case SND_SOC_TPLG_CTL_ENUM
:
1529 case SND_SOC_TPLG_CTL_ENUM_VALUE
:
1530 case SND_SOC_TPLG_DAPM_CTL_ENUM_DOUBLE
:
1531 case SND_SOC_TPLG_DAPM_CTL_ENUM_VIRT
:
1532 case SND_SOC_TPLG_DAPM_CTL_ENUM_VALUE
:
1533 kcontrol_type
= SND_SOC_TPLG_TYPE_ENUM
; /* enumerated mixer */
1534 template.num_kcontrols
= le32_to_cpu(w
->num_kcontrols
);
1535 template.kcontrol_news
=
1536 soc_tplg_dapm_widget_denum_create(tplg
,
1537 template.num_kcontrols
);
1538 if (!template.kcontrol_news
) {
1543 case SND_SOC_TPLG_CTL_BYTES
:
1544 kcontrol_type
= SND_SOC_TPLG_TYPE_BYTES
; /* bytes control */
1545 template.num_kcontrols
= le32_to_cpu(w
->num_kcontrols
);
1546 template.kcontrol_news
=
1547 soc_tplg_dapm_widget_dbytes_create(tplg
,
1548 template.num_kcontrols
);
1549 if (!template.kcontrol_news
) {
1555 dev_err(tplg
->dev
, "ASoC: invalid widget control type %d:%d:%d\n",
1556 control_hdr
->ops
.get
, control_hdr
->ops
.put
,
1557 le32_to_cpu(control_hdr
->ops
.info
));
1563 ret
= soc_tplg_widget_load(tplg
, &template, w
);
1567 /* card dapm mutex is held by the core if we are loading topology
1568 * data during sound card init. */
1569 if (card
->instantiated
)
1570 widget
= snd_soc_dapm_new_control(dapm
, &template);
1572 widget
= snd_soc_dapm_new_control_unlocked(dapm
, &template);
1573 if (IS_ERR(widget
)) {
1574 ret
= PTR_ERR(widget
);
1578 widget
->dobj
.type
= SND_SOC_DOBJ_WIDGET
;
1579 widget
->dobj
.widget
.kcontrol_type
= kcontrol_type
;
1580 widget
->dobj
.ops
= tplg
->ops
;
1581 widget
->dobj
.index
= tplg
->index
;
1582 list_add(&widget
->dobj
.list
, &tplg
->comp
->dobj_list
);
1584 ret
= soc_tplg_widget_ready(tplg
, widget
, w
);
1588 kfree(template.sname
);
1589 kfree(template.name
);
1594 remove_widget(widget
->dapm
->component
, &widget
->dobj
, SOC_TPLG_PASS_WIDGET
);
1595 snd_soc_dapm_free_widget(widget
);
1597 kfree(template.sname
);
1599 kfree(template.name
);
1603 static int soc_tplg_dapm_widget_elems_load(struct soc_tplg
*tplg
,
1604 struct snd_soc_tplg_hdr
*hdr
)
1606 struct snd_soc_tplg_dapm_widget
*widget
;
1609 count
= le32_to_cpu(hdr
->count
);
1611 dev_dbg(tplg
->dev
, "ASoC: adding %d DAPM widgets\n", count
);
1613 for (i
= 0; i
< count
; i
++) {
1614 widget
= (struct snd_soc_tplg_dapm_widget
*) tplg
->pos
;
1615 if (le32_to_cpu(widget
->size
) != sizeof(*widget
)) {
1616 dev_err(tplg
->dev
, "ASoC: invalid widget size\n");
1620 ret
= soc_tplg_dapm_widget_create(tplg
, widget
);
1622 dev_err(tplg
->dev
, "ASoC: failed to load widget %s\n",
1631 static int soc_tplg_dapm_complete(struct soc_tplg
*tplg
)
1633 struct snd_soc_card
*card
= tplg
->comp
->card
;
1636 /* Card might not have been registered at this point.
1637 * If so, just return success.
1639 if (!card
|| !card
->instantiated
) {
1640 dev_warn(tplg
->dev
, "ASoC: Parent card not yet available,"
1641 " widget card binding deferred\n");
1645 ret
= snd_soc_dapm_new_widgets(card
);
1647 dev_err(tplg
->dev
, "ASoC: failed to create new widgets %d\n",
1653 static int set_stream_info(struct soc_tplg
*tplg
, struct snd_soc_pcm_stream
*stream
,
1654 struct snd_soc_tplg_stream_caps
*caps
)
1656 stream
->stream_name
= devm_kstrdup(tplg
->dev
, caps
->name
, GFP_KERNEL
);
1657 if (!stream
->stream_name
)
1660 stream
->channels_min
= le32_to_cpu(caps
->channels_min
);
1661 stream
->channels_max
= le32_to_cpu(caps
->channels_max
);
1662 stream
->rates
= le32_to_cpu(caps
->rates
);
1663 stream
->rate_min
= le32_to_cpu(caps
->rate_min
);
1664 stream
->rate_max
= le32_to_cpu(caps
->rate_max
);
1665 stream
->formats
= le64_to_cpu(caps
->formats
);
1666 stream
->sig_bits
= le32_to_cpu(caps
->sig_bits
);
1671 static void set_dai_flags(struct snd_soc_dai_driver
*dai_drv
,
1672 unsigned int flag_mask
, unsigned int flags
)
1674 if (flag_mask
& SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_RATES
)
1675 dai_drv
->symmetric_rates
=
1676 flags
& SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_RATES
? 1 : 0;
1678 if (flag_mask
& SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_CHANNELS
)
1679 dai_drv
->symmetric_channels
=
1680 flags
& SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_CHANNELS
?
1683 if (flag_mask
& SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_SAMPLEBITS
)
1684 dai_drv
->symmetric_samplebits
=
1685 flags
& SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_SAMPLEBITS
?
1689 static int soc_tplg_dai_create(struct soc_tplg
*tplg
,
1690 struct snd_soc_tplg_pcm
*pcm
)
1692 struct snd_soc_dai_driver
*dai_drv
;
1693 struct snd_soc_pcm_stream
*stream
;
1694 struct snd_soc_tplg_stream_caps
*caps
;
1695 struct snd_soc_dai
*dai
;
1696 struct snd_soc_dapm_context
*dapm
=
1697 snd_soc_component_get_dapm(tplg
->comp
);
1700 dai_drv
= devm_kzalloc(tplg
->dev
, sizeof(struct snd_soc_dai_driver
), GFP_KERNEL
);
1701 if (dai_drv
== NULL
)
1704 if (strlen(pcm
->dai_name
)) {
1705 dai_drv
->name
= devm_kstrdup(tplg
->dev
, pcm
->dai_name
, GFP_KERNEL
);
1706 if (!dai_drv
->name
) {
1711 dai_drv
->id
= le32_to_cpu(pcm
->dai_id
);
1713 if (pcm
->playback
) {
1714 stream
= &dai_drv
->playback
;
1715 caps
= &pcm
->caps
[SND_SOC_TPLG_STREAM_PLAYBACK
];
1716 ret
= set_stream_info(tplg
, stream
, caps
);
1722 stream
= &dai_drv
->capture
;
1723 caps
= &pcm
->caps
[SND_SOC_TPLG_STREAM_CAPTURE
];
1724 ret
= set_stream_info(tplg
, stream
, caps
);
1730 dai_drv
->compress_new
= snd_soc_new_compress
;
1732 /* pass control to component driver for optional further init */
1733 ret
= soc_tplg_dai_load(tplg
, dai_drv
, pcm
, NULL
);
1735 dev_err(tplg
->dev
, "ASoC: DAI loading failed\n");
1739 dai_drv
->dobj
.index
= tplg
->index
;
1740 dai_drv
->dobj
.ops
= tplg
->ops
;
1741 dai_drv
->dobj
.type
= SND_SOC_DOBJ_PCM
;
1742 list_add(&dai_drv
->dobj
.list
, &tplg
->comp
->dobj_list
);
1744 /* register the DAI to the component */
1745 dai
= devm_snd_soc_register_dai(tplg
->dev
, tplg
->comp
, dai_drv
, false);
1749 /* Create the DAI widgets here */
1750 ret
= snd_soc_dapm_new_dai_widgets(dapm
, dai
);
1752 dev_err(dai
->dev
, "Failed to create DAI widgets %d\n", ret
);
1762 static void set_link_flags(struct snd_soc_dai_link
*link
,
1763 unsigned int flag_mask
, unsigned int flags
)
1765 if (flag_mask
& SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_RATES
)
1766 link
->symmetric_rates
=
1767 flags
& SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_RATES
? 1 : 0;
1769 if (flag_mask
& SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_CHANNELS
)
1770 link
->symmetric_channels
=
1771 flags
& SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_CHANNELS
?
1774 if (flag_mask
& SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_SAMPLEBITS
)
1775 link
->symmetric_samplebits
=
1776 flags
& SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_SAMPLEBITS
?
1779 if (flag_mask
& SND_SOC_TPLG_LNK_FLGBIT_VOICE_WAKEUP
)
1780 link
->ignore_suspend
=
1781 flags
& SND_SOC_TPLG_LNK_FLGBIT_VOICE_WAKEUP
?
1785 /* create the FE DAI link */
1786 static int soc_tplg_fe_link_create(struct soc_tplg
*tplg
,
1787 struct snd_soc_tplg_pcm
*pcm
)
1789 struct snd_soc_dai_link
*link
;
1790 struct snd_soc_dai_link_component
*dlc
;
1793 /* link + cpu + codec + platform */
1794 link
= devm_kzalloc(tplg
->dev
, sizeof(*link
) + (3 * sizeof(*dlc
)), GFP_KERNEL
);
1798 dlc
= (struct snd_soc_dai_link_component
*)(link
+ 1);
1800 link
->cpus
= &dlc
[0];
1801 link
->codecs
= &dlc
[1];
1802 link
->platforms
= &dlc
[2];
1805 link
->num_codecs
= 1;
1806 link
->num_platforms
= 1;
1808 link
->dobj
.index
= tplg
->index
;
1809 link
->dobj
.ops
= tplg
->ops
;
1810 link
->dobj
.type
= SND_SOC_DOBJ_DAI_LINK
;
1812 if (strlen(pcm
->pcm_name
)) {
1813 link
->name
= devm_kstrdup(tplg
->dev
, pcm
->pcm_name
, GFP_KERNEL
);
1814 link
->stream_name
= devm_kstrdup(tplg
->dev
, pcm
->pcm_name
, GFP_KERNEL
);
1815 if (!link
->name
|| !link
->stream_name
) {
1820 link
->id
= le32_to_cpu(pcm
->pcm_id
);
1822 if (strlen(pcm
->dai_name
)) {
1823 link
->cpus
->dai_name
= devm_kstrdup(tplg
->dev
, pcm
->dai_name
, GFP_KERNEL
);
1824 if (!link
->cpus
->dai_name
) {
1830 link
->codecs
->name
= "snd-soc-dummy";
1831 link
->codecs
->dai_name
= "snd-soc-dummy-dai";
1833 link
->platforms
->name
= "snd-soc-dummy";
1837 link
->dpcm_playback
= le32_to_cpu(pcm
->playback
);
1838 link
->dpcm_capture
= le32_to_cpu(pcm
->capture
);
1840 set_link_flags(link
,
1841 le32_to_cpu(pcm
->flag_mask
),
1842 le32_to_cpu(pcm
->flags
));
1844 /* pass control to component driver for optional further init */
1845 ret
= soc_tplg_dai_link_load(tplg
, link
, NULL
);
1847 dev_err(tplg
->dev
, "ASoC: FE link loading failed\n");
1851 ret
= snd_soc_add_pcm_runtime(tplg
->comp
->card
, link
);
1853 dev_err(tplg
->dev
, "ASoC: adding FE link failed\n");
1857 list_add(&link
->dobj
.list
, &tplg
->comp
->dobj_list
);
1864 /* create a FE DAI and DAI link from the PCM object */
1865 static int soc_tplg_pcm_create(struct soc_tplg
*tplg
,
1866 struct snd_soc_tplg_pcm
*pcm
)
1870 ret
= soc_tplg_dai_create(tplg
, pcm
);
1874 return soc_tplg_fe_link_create(tplg
, pcm
);
1877 /* copy stream caps from the old version 4 of source */
1878 static void stream_caps_new_ver(struct snd_soc_tplg_stream_caps
*dest
,
1879 struct snd_soc_tplg_stream_caps_v4
*src
)
1881 dest
->size
= cpu_to_le32(sizeof(*dest
));
1882 memcpy(dest
->name
, src
->name
, SNDRV_CTL_ELEM_ID_NAME_MAXLEN
);
1883 dest
->formats
= src
->formats
;
1884 dest
->rates
= src
->rates
;
1885 dest
->rate_min
= src
->rate_min
;
1886 dest
->rate_max
= src
->rate_max
;
1887 dest
->channels_min
= src
->channels_min
;
1888 dest
->channels_max
= src
->channels_max
;
1889 dest
->periods_min
= src
->periods_min
;
1890 dest
->periods_max
= src
->periods_max
;
1891 dest
->period_size_min
= src
->period_size_min
;
1892 dest
->period_size_max
= src
->period_size_max
;
1893 dest
->buffer_size_min
= src
->buffer_size_min
;
1894 dest
->buffer_size_max
= src
->buffer_size_max
;
1898 * pcm_new_ver - Create the new version of PCM from the old version.
1899 * @tplg: topology context
1900 * @src: older version of pcm as a source
1901 * @pcm: latest version of pcm created from the source
1903 * Support from vesion 4. User should free the returned pcm manually.
1905 static int pcm_new_ver(struct soc_tplg
*tplg
,
1906 struct snd_soc_tplg_pcm
*src
,
1907 struct snd_soc_tplg_pcm
**pcm
)
1909 struct snd_soc_tplg_pcm
*dest
;
1910 struct snd_soc_tplg_pcm_v4
*src_v4
;
1915 if (le32_to_cpu(src
->size
) != sizeof(*src_v4
)) {
1916 dev_err(tplg
->dev
, "ASoC: invalid PCM size\n");
1920 dev_warn(tplg
->dev
, "ASoC: old version of PCM\n");
1921 src_v4
= (struct snd_soc_tplg_pcm_v4
*)src
;
1922 dest
= kzalloc(sizeof(*dest
), GFP_KERNEL
);
1926 dest
->size
= cpu_to_le32(sizeof(*dest
)); /* size of latest abi version */
1927 memcpy(dest
->pcm_name
, src_v4
->pcm_name
, SNDRV_CTL_ELEM_ID_NAME_MAXLEN
);
1928 memcpy(dest
->dai_name
, src_v4
->dai_name
, SNDRV_CTL_ELEM_ID_NAME_MAXLEN
);
1929 dest
->pcm_id
= src_v4
->pcm_id
;
1930 dest
->dai_id
= src_v4
->dai_id
;
1931 dest
->playback
= src_v4
->playback
;
1932 dest
->capture
= src_v4
->capture
;
1933 dest
->compress
= src_v4
->compress
;
1934 dest
->num_streams
= src_v4
->num_streams
;
1935 for (i
= 0; i
< le32_to_cpu(dest
->num_streams
); i
++)
1936 memcpy(&dest
->stream
[i
], &src_v4
->stream
[i
],
1937 sizeof(struct snd_soc_tplg_stream
));
1939 for (i
= 0; i
< 2; i
++)
1940 stream_caps_new_ver(&dest
->caps
[i
], &src_v4
->caps
[i
]);
1946 static int soc_tplg_pcm_elems_load(struct soc_tplg
*tplg
,
1947 struct snd_soc_tplg_hdr
*hdr
)
1949 struct snd_soc_tplg_pcm
*pcm
, *_pcm
;
1956 count
= le32_to_cpu(hdr
->count
);
1958 /* check the element size and count */
1959 pcm
= (struct snd_soc_tplg_pcm
*)tplg
->pos
;
1960 size
= le32_to_cpu(pcm
->size
);
1961 if (size
> sizeof(struct snd_soc_tplg_pcm
)
1962 || size
< sizeof(struct snd_soc_tplg_pcm_v4
)) {
1963 dev_err(tplg
->dev
, "ASoC: invalid size %d for PCM elems\n",
1968 if (soc_tplg_check_elem_count(tplg
,
1970 le32_to_cpu(hdr
->payload_size
),
1972 dev_err(tplg
->dev
, "ASoC: invalid count %d for PCM DAI elems\n",
1977 for (i
= 0; i
< count
; i
++) {
1978 pcm
= (struct snd_soc_tplg_pcm
*)tplg
->pos
;
1979 size
= le32_to_cpu(pcm
->size
);
1981 /* check ABI version by size, create a new version of pcm
1984 if (size
== sizeof(*pcm
)) {
1989 ret
= pcm_new_ver(tplg
, pcm
, &_pcm
);
1994 /* create the FE DAIs and DAI links */
1995 ret
= soc_tplg_pcm_create(tplg
, _pcm
);
2002 /* offset by version-specific struct size and
2003 * real priv data size
2005 tplg
->pos
+= size
+ le32_to_cpu(_pcm
->priv
.size
);
2008 kfree(_pcm
); /* free the duplicated one */
2011 dev_dbg(tplg
->dev
, "ASoC: adding %d PCM DAIs\n", count
);
2017 * set_link_hw_format - Set the HW audio format of the physical DAI link.
2018 * @link: &snd_soc_dai_link which should be updated
2019 * @cfg: physical link configs.
2021 * Topology context contains a list of supported HW formats (configs) and
2022 * a default format ID for the physical link. This function will use this
2023 * default ID to choose the HW format to set the link's DAI format for init.
2025 static void set_link_hw_format(struct snd_soc_dai_link
*link
,
2026 struct snd_soc_tplg_link_config
*cfg
)
2028 struct snd_soc_tplg_hw_config
*hw_config
;
2029 unsigned char bclk_provider
, fsync_provider
;
2030 unsigned char invert_bclk
, invert_fsync
;
2033 for (i
= 0; i
< le32_to_cpu(cfg
->num_hw_configs
); i
++) {
2034 hw_config
= &cfg
->hw_config
[i
];
2035 if (hw_config
->id
!= cfg
->default_hw_config_id
)
2038 link
->dai_fmt
= le32_to_cpu(hw_config
->fmt
) &
2039 SND_SOC_DAIFMT_FORMAT_MASK
;
2042 switch (hw_config
->clock_gated
) {
2043 case SND_SOC_TPLG_DAI_CLK_GATE_GATED
:
2044 link
->dai_fmt
|= SND_SOC_DAIFMT_GATED
;
2047 case SND_SOC_TPLG_DAI_CLK_GATE_CONT
:
2048 link
->dai_fmt
|= SND_SOC_DAIFMT_CONT
;
2052 /* ignore the value */
2056 /* clock signal polarity */
2057 invert_bclk
= hw_config
->invert_bclk
;
2058 invert_fsync
= hw_config
->invert_fsync
;
2059 if (!invert_bclk
&& !invert_fsync
)
2060 link
->dai_fmt
|= SND_SOC_DAIFMT_NB_NF
;
2061 else if (!invert_bclk
&& invert_fsync
)
2062 link
->dai_fmt
|= SND_SOC_DAIFMT_NB_IF
;
2063 else if (invert_bclk
&& !invert_fsync
)
2064 link
->dai_fmt
|= SND_SOC_DAIFMT_IB_NF
;
2066 link
->dai_fmt
|= SND_SOC_DAIFMT_IB_IF
;
2069 bclk_provider
= (hw_config
->bclk_provider
==
2070 SND_SOC_TPLG_BCLK_CP
);
2071 fsync_provider
= (hw_config
->fsync_provider
==
2072 SND_SOC_TPLG_FSYNC_CP
);
2073 if (bclk_provider
&& fsync_provider
)
2074 link
->dai_fmt
|= SND_SOC_DAIFMT_CBP_CFP
;
2075 else if (!bclk_provider
&& fsync_provider
)
2076 link
->dai_fmt
|= SND_SOC_DAIFMT_CBC_CFP
;
2077 else if (bclk_provider
&& !fsync_provider
)
2078 link
->dai_fmt
|= SND_SOC_DAIFMT_CBP_CFC
;
2080 link
->dai_fmt
|= SND_SOC_DAIFMT_CBC_CFC
;
2085 * link_new_ver - Create a new physical link config from the old
2086 * version of source.
2087 * @tplg: topology context
2088 * @src: old version of phyical link config as a source
2089 * @link: latest version of physical link config created from the source
2091 * Support from vesion 4. User need free the returned link config manually.
2093 static int link_new_ver(struct soc_tplg
*tplg
,
2094 struct snd_soc_tplg_link_config
*src
,
2095 struct snd_soc_tplg_link_config
**link
)
2097 struct snd_soc_tplg_link_config
*dest
;
2098 struct snd_soc_tplg_link_config_v4
*src_v4
;
2103 if (le32_to_cpu(src
->size
) !=
2104 sizeof(struct snd_soc_tplg_link_config_v4
)) {
2105 dev_err(tplg
->dev
, "ASoC: invalid physical link config size\n");
2109 dev_warn(tplg
->dev
, "ASoC: old version of physical link config\n");
2111 src_v4
= (struct snd_soc_tplg_link_config_v4
*)src
;
2112 dest
= kzalloc(sizeof(*dest
), GFP_KERNEL
);
2116 dest
->size
= cpu_to_le32(sizeof(*dest
));
2117 dest
->id
= src_v4
->id
;
2118 dest
->num_streams
= src_v4
->num_streams
;
2119 for (i
= 0; i
< le32_to_cpu(dest
->num_streams
); i
++)
2120 memcpy(&dest
->stream
[i
], &src_v4
->stream
[i
],
2121 sizeof(struct snd_soc_tplg_stream
));
2128 * snd_soc_find_dai_link - Find a DAI link
2131 * @id: DAI link ID to match
2132 * @name: DAI link name to match, optional
2133 * @stream_name: DAI link stream name to match, optional
2135 * This function will search all existing DAI links of the soc card to
2136 * find the link of the same ID. Since DAI links may not have their
2137 * unique ID, so name and stream name should also match if being
2140 * Return: pointer of DAI link, or NULL if not found.
2142 static struct snd_soc_dai_link
*snd_soc_find_dai_link(struct snd_soc_card
*card
,
2143 int id
, const char *name
,
2144 const char *stream_name
)
2146 struct snd_soc_pcm_runtime
*rtd
;
2147 struct snd_soc_dai_link
*link
;
2149 for_each_card_rtds(card
, rtd
) {
2150 link
= rtd
->dai_link
;
2155 if (name
&& (!link
->name
|| strcmp(name
, link
->name
)))
2158 if (stream_name
&& (!link
->stream_name
2159 || strcmp(stream_name
, link
->stream_name
)))
2168 /* Find and configure an existing physical DAI link */
2169 static int soc_tplg_link_config(struct soc_tplg
*tplg
,
2170 struct snd_soc_tplg_link_config
*cfg
)
2172 struct snd_soc_dai_link
*link
;
2173 const char *name
, *stream_name
;
2177 len
= strnlen(cfg
->name
, SNDRV_CTL_ELEM_ID_NAME_MAXLEN
);
2178 if (len
== SNDRV_CTL_ELEM_ID_NAME_MAXLEN
)
2185 len
= strnlen(cfg
->stream_name
, SNDRV_CTL_ELEM_ID_NAME_MAXLEN
);
2186 if (len
== SNDRV_CTL_ELEM_ID_NAME_MAXLEN
)
2189 stream_name
= cfg
->stream_name
;
2193 link
= snd_soc_find_dai_link(tplg
->comp
->card
, le32_to_cpu(cfg
->id
),
2196 dev_err(tplg
->dev
, "ASoC: physical link %s (id %d) not exist\n",
2202 if (cfg
->num_hw_configs
)
2203 set_link_hw_format(link
, cfg
);
2207 set_link_flags(link
,
2208 le32_to_cpu(cfg
->flag_mask
),
2209 le32_to_cpu(cfg
->flags
));
2211 /* pass control to component driver for optional further init */
2212 ret
= soc_tplg_dai_link_load(tplg
, link
, cfg
);
2214 dev_err(tplg
->dev
, "ASoC: physical link loading failed\n");
2218 /* for unloading it in snd_soc_tplg_component_remove */
2219 link
->dobj
.index
= tplg
->index
;
2220 link
->dobj
.ops
= tplg
->ops
;
2221 link
->dobj
.type
= SND_SOC_DOBJ_BACKEND_LINK
;
2222 list_add(&link
->dobj
.list
, &tplg
->comp
->dobj_list
);
2228 /* Load physical link config elements from the topology context */
2229 static int soc_tplg_link_elems_load(struct soc_tplg
*tplg
,
2230 struct snd_soc_tplg_hdr
*hdr
)
2232 struct snd_soc_tplg_link_config
*link
, *_link
;
2238 count
= le32_to_cpu(hdr
->count
);
2240 /* check the element size and count */
2241 link
= (struct snd_soc_tplg_link_config
*)tplg
->pos
;
2242 size
= le32_to_cpu(link
->size
);
2243 if (size
> sizeof(struct snd_soc_tplg_link_config
)
2244 || size
< sizeof(struct snd_soc_tplg_link_config_v4
)) {
2245 dev_err(tplg
->dev
, "ASoC: invalid size %d for physical link elems\n",
2250 if (soc_tplg_check_elem_count(tplg
,
2252 le32_to_cpu(hdr
->payload_size
),
2253 "physical link config")) {
2254 dev_err(tplg
->dev
, "ASoC: invalid count %d for physical link elems\n",
2259 /* config physical DAI links */
2260 for (i
= 0; i
< count
; i
++) {
2261 link
= (struct snd_soc_tplg_link_config
*)tplg
->pos
;
2262 size
= le32_to_cpu(link
->size
);
2263 if (size
== sizeof(*link
)) {
2268 ret
= link_new_ver(tplg
, link
, &_link
);
2273 ret
= soc_tplg_link_config(tplg
, _link
);
2280 /* offset by version-specific struct size and
2281 * real priv data size
2283 tplg
->pos
+= size
+ le32_to_cpu(_link
->priv
.size
);
2286 kfree(_link
); /* free the duplicated one */
2293 * soc_tplg_dai_config - Find and configure an existing physical DAI.
2294 * @tplg: topology context
2295 * @d: physical DAI configs.
2297 * The physical dai should already be registered by the platform driver.
2298 * The platform driver should specify the DAI name and ID for matching.
2300 static int soc_tplg_dai_config(struct soc_tplg
*tplg
,
2301 struct snd_soc_tplg_dai
*d
)
2303 struct snd_soc_dai_link_component dai_component
;
2304 struct snd_soc_dai
*dai
;
2305 struct snd_soc_dai_driver
*dai_drv
;
2306 struct snd_soc_pcm_stream
*stream
;
2307 struct snd_soc_tplg_stream_caps
*caps
;
2310 memset(&dai_component
, 0, sizeof(dai_component
));
2312 dai_component
.dai_name
= d
->dai_name
;
2313 dai
= snd_soc_find_dai(&dai_component
);
2315 dev_err(tplg
->dev
, "ASoC: physical DAI %s not registered\n",
2320 if (le32_to_cpu(d
->dai_id
) != dai
->id
) {
2321 dev_err(tplg
->dev
, "ASoC: physical DAI %s id mismatch\n",
2326 dai_drv
= dai
->driver
;
2331 stream
= &dai_drv
->playback
;
2332 caps
= &d
->caps
[SND_SOC_TPLG_STREAM_PLAYBACK
];
2333 ret
= set_stream_info(tplg
, stream
, caps
);
2339 stream
= &dai_drv
->capture
;
2340 caps
= &d
->caps
[SND_SOC_TPLG_STREAM_CAPTURE
];
2341 ret
= set_stream_info(tplg
, stream
, caps
);
2347 set_dai_flags(dai_drv
,
2348 le32_to_cpu(d
->flag_mask
),
2349 le32_to_cpu(d
->flags
));
2351 /* pass control to component driver for optional further init */
2352 ret
= soc_tplg_dai_load(tplg
, dai_drv
, NULL
, dai
);
2354 dev_err(tplg
->dev
, "ASoC: DAI loading failed\n");
2364 /* load physical DAI elements */
2365 static int soc_tplg_dai_elems_load(struct soc_tplg
*tplg
,
2366 struct snd_soc_tplg_hdr
*hdr
)
2368 struct snd_soc_tplg_dai
*dai
;
2372 count
= le32_to_cpu(hdr
->count
);
2374 /* config the existing BE DAIs */
2375 for (i
= 0; i
< count
; i
++) {
2376 dai
= (struct snd_soc_tplg_dai
*)tplg
->pos
;
2377 if (le32_to_cpu(dai
->size
) != sizeof(*dai
)) {
2378 dev_err(tplg
->dev
, "ASoC: invalid physical DAI size\n");
2382 ret
= soc_tplg_dai_config(tplg
, dai
);
2384 dev_err(tplg
->dev
, "ASoC: failed to configure DAI\n");
2388 tplg
->pos
+= (sizeof(*dai
) + le32_to_cpu(dai
->priv
.size
));
2391 dev_dbg(tplg
->dev
, "ASoC: Configure %d BE DAIs\n", count
);
2396 * manifest_new_ver - Create a new version of manifest from the old version
2398 * @tplg: topology context
2399 * @src: old version of manifest as a source
2400 * @manifest: latest version of manifest created from the source
2402 * Support from vesion 4. Users need free the returned manifest manually.
2404 static int manifest_new_ver(struct soc_tplg
*tplg
,
2405 struct snd_soc_tplg_manifest
*src
,
2406 struct snd_soc_tplg_manifest
**manifest
)
2408 struct snd_soc_tplg_manifest
*dest
;
2409 struct snd_soc_tplg_manifest_v4
*src_v4
;
2414 size
= le32_to_cpu(src
->size
);
2415 if (size
!= sizeof(*src_v4
)) {
2416 dev_warn(tplg
->dev
, "ASoC: invalid manifest size %d\n",
2420 src
->size
= cpu_to_le32(sizeof(*src_v4
));
2423 dev_warn(tplg
->dev
, "ASoC: old version of manifest\n");
2425 src_v4
= (struct snd_soc_tplg_manifest_v4
*)src
;
2426 dest
= kzalloc(sizeof(*dest
) + le32_to_cpu(src_v4
->priv
.size
),
2431 dest
->size
= cpu_to_le32(sizeof(*dest
)); /* size of latest abi version */
2432 dest
->control_elems
= src_v4
->control_elems
;
2433 dest
->widget_elems
= src_v4
->widget_elems
;
2434 dest
->graph_elems
= src_v4
->graph_elems
;
2435 dest
->pcm_elems
= src_v4
->pcm_elems
;
2436 dest
->dai_link_elems
= src_v4
->dai_link_elems
;
2437 dest
->priv
.size
= src_v4
->priv
.size
;
2438 if (dest
->priv
.size
)
2439 memcpy(dest
->priv
.data
, src_v4
->priv
.data
,
2440 le32_to_cpu(src_v4
->priv
.size
));
2446 static int soc_tplg_manifest_load(struct soc_tplg
*tplg
,
2447 struct snd_soc_tplg_hdr
*hdr
)
2449 struct snd_soc_tplg_manifest
*manifest
, *_manifest
;
2453 manifest
= (struct snd_soc_tplg_manifest
*)tplg
->pos
;
2455 /* check ABI version by size, create a new manifest if abi not match */
2456 if (le32_to_cpu(manifest
->size
) == sizeof(*manifest
)) {
2458 _manifest
= manifest
;
2461 ret
= manifest_new_ver(tplg
, manifest
, &_manifest
);
2466 /* pass control to component driver for optional further init */
2467 if (tplg
->ops
&& tplg
->ops
->manifest
)
2468 ret
= tplg
->ops
->manifest(tplg
->comp
, tplg
->index
, _manifest
);
2470 if (!abi_match
) /* free the duplicated one */
2476 /* validate header magic, size and type */
2477 static int soc_valid_header(struct soc_tplg
*tplg
,
2478 struct snd_soc_tplg_hdr
*hdr
)
2480 if (soc_tplg_get_hdr_offset(tplg
) >= tplg
->fw
->size
)
2483 if (le32_to_cpu(hdr
->size
) != sizeof(*hdr
)) {
2485 "ASoC: invalid header size for type %d at offset 0x%lx size 0x%zx.\n",
2486 le32_to_cpu(hdr
->type
), soc_tplg_get_hdr_offset(tplg
),
2491 /* big endian firmware objects not supported atm */
2492 if (le32_to_cpu(hdr
->magic
) == SOC_TPLG_MAGIC_BIG_ENDIAN
) {
2494 "ASoC: pass %d big endian not supported header got %x at offset 0x%lx size 0x%zx.\n",
2495 tplg
->pass
, hdr
->magic
,
2496 soc_tplg_get_hdr_offset(tplg
), tplg
->fw
->size
);
2500 if (le32_to_cpu(hdr
->magic
) != SND_SOC_TPLG_MAGIC
) {
2502 "ASoC: pass %d does not have a valid header got %x at offset 0x%lx size 0x%zx.\n",
2503 tplg
->pass
, hdr
->magic
,
2504 soc_tplg_get_hdr_offset(tplg
), tplg
->fw
->size
);
2508 /* Support ABI from version 4 */
2509 if (le32_to_cpu(hdr
->abi
) > SND_SOC_TPLG_ABI_VERSION
||
2510 le32_to_cpu(hdr
->abi
) < SND_SOC_TPLG_ABI_VERSION_MIN
) {
2512 "ASoC: pass %d invalid ABI version got 0x%x need 0x%x at offset 0x%lx size 0x%zx.\n",
2513 tplg
->pass
, hdr
->abi
,
2514 SND_SOC_TPLG_ABI_VERSION
, soc_tplg_get_hdr_offset(tplg
),
2519 if (hdr
->payload_size
== 0) {
2520 dev_err(tplg
->dev
, "ASoC: header has 0 size at offset 0x%lx.\n",
2521 soc_tplg_get_hdr_offset(tplg
));
2528 /* check header type and call appropriate handler */
2529 static int soc_tplg_load_header(struct soc_tplg
*tplg
,
2530 struct snd_soc_tplg_hdr
*hdr
)
2532 int (*elem_load
)(struct soc_tplg
*tplg
,
2533 struct snd_soc_tplg_hdr
*hdr
);
2534 unsigned int hdr_pass
;
2536 tplg
->pos
= tplg
->hdr_pos
+ sizeof(struct snd_soc_tplg_hdr
);
2538 tplg
->index
= le32_to_cpu(hdr
->index
);
2540 switch (le32_to_cpu(hdr
->type
)) {
2541 case SND_SOC_TPLG_TYPE_MIXER
:
2542 case SND_SOC_TPLG_TYPE_ENUM
:
2543 case SND_SOC_TPLG_TYPE_BYTES
:
2544 hdr_pass
= SOC_TPLG_PASS_MIXER
;
2545 elem_load
= soc_tplg_kcontrol_elems_load
;
2547 case SND_SOC_TPLG_TYPE_DAPM_GRAPH
:
2548 hdr_pass
= SOC_TPLG_PASS_GRAPH
;
2549 elem_load
= soc_tplg_dapm_graph_elems_load
;
2551 case SND_SOC_TPLG_TYPE_DAPM_WIDGET
:
2552 hdr_pass
= SOC_TPLG_PASS_WIDGET
;
2553 elem_load
= soc_tplg_dapm_widget_elems_load
;
2555 case SND_SOC_TPLG_TYPE_PCM
:
2556 hdr_pass
= SOC_TPLG_PASS_PCM_DAI
;
2557 elem_load
= soc_tplg_pcm_elems_load
;
2559 case SND_SOC_TPLG_TYPE_DAI
:
2560 hdr_pass
= SOC_TPLG_PASS_BE_DAI
;
2561 elem_load
= soc_tplg_dai_elems_load
;
2563 case SND_SOC_TPLG_TYPE_DAI_LINK
:
2564 case SND_SOC_TPLG_TYPE_BACKEND_LINK
:
2565 /* physical link configurations */
2566 hdr_pass
= SOC_TPLG_PASS_LINK
;
2567 elem_load
= soc_tplg_link_elems_load
;
2569 case SND_SOC_TPLG_TYPE_MANIFEST
:
2570 hdr_pass
= SOC_TPLG_PASS_MANIFEST
;
2571 elem_load
= soc_tplg_manifest_load
;
2574 /* bespoke vendor data object */
2575 hdr_pass
= SOC_TPLG_PASS_VENDOR
;
2576 elem_load
= soc_tplg_vendor_load
;
2580 if (tplg
->pass
== hdr_pass
) {
2582 "ASoC: Got 0x%x bytes of type %d version %d vendor %d at pass %d\n",
2583 hdr
->payload_size
, hdr
->type
, hdr
->version
,
2584 hdr
->vendor_type
, tplg
->pass
);
2585 return elem_load(tplg
, hdr
);
2591 /* process the topology file headers */
2592 static int soc_tplg_process_headers(struct soc_tplg
*tplg
)
2594 struct snd_soc_tplg_hdr
*hdr
;
2597 tplg
->pass
= SOC_TPLG_PASS_START
;
2599 /* process the header types from start to end */
2600 while (tplg
->pass
<= SOC_TPLG_PASS_END
) {
2602 tplg
->hdr_pos
= tplg
->fw
->data
;
2603 hdr
= (struct snd_soc_tplg_hdr
*)tplg
->hdr_pos
;
2605 while (!soc_tplg_is_eof(tplg
)) {
2607 /* make sure header is valid before loading */
2608 ret
= soc_valid_header(tplg
, hdr
);
2611 "ASoC: topology: invalid header: %d\n", ret
);
2613 } else if (ret
== 0) {
2617 /* load the header object */
2618 ret
= soc_tplg_load_header(tplg
, hdr
);
2621 "ASoC: topology: could not load header: %d\n", ret
);
2625 /* goto next header */
2626 tplg
->hdr_pos
+= le32_to_cpu(hdr
->payload_size
) +
2627 sizeof(struct snd_soc_tplg_hdr
);
2628 hdr
= (struct snd_soc_tplg_hdr
*)tplg
->hdr_pos
;
2631 /* next data type pass */
2635 /* signal DAPM we are complete */
2636 ret
= soc_tplg_dapm_complete(tplg
);
2639 "ASoC: failed to initialise DAPM from Firmware\n");
2644 static int soc_tplg_load(struct soc_tplg
*tplg
)
2648 ret
= soc_tplg_process_headers(tplg
);
2650 soc_tplg_complete(tplg
);
2655 /* load audio component topology from "firmware" file */
2656 int snd_soc_tplg_component_load(struct snd_soc_component
*comp
,
2657 struct snd_soc_tplg_ops
*ops
, const struct firmware
*fw
)
2659 struct soc_tplg tplg
;
2662 /* component needs to exist to keep and reference data while parsing */
2666 /* setup parsing context */
2667 memset(&tplg
, 0, sizeof(tplg
));
2669 tplg
.dev
= comp
->dev
;
2672 tplg
.io_ops
= ops
->io_ops
;
2673 tplg
.io_ops_count
= ops
->io_ops_count
;
2674 tplg
.bytes_ext_ops
= ops
->bytes_ext_ops
;
2675 tplg
.bytes_ext_ops_count
= ops
->bytes_ext_ops_count
;
2677 ret
= soc_tplg_load(&tplg
);
2678 /* free the created components if fail to load topology */
2680 snd_soc_tplg_component_remove(comp
);
2684 EXPORT_SYMBOL_GPL(snd_soc_tplg_component_load
);
2686 /* remove dynamic controls from the component driver */
2687 int snd_soc_tplg_component_remove(struct snd_soc_component
*comp
)
2689 struct snd_soc_dobj
*dobj
, *next_dobj
;
2690 int pass
= SOC_TPLG_PASS_END
;
2692 /* process the header types from end to start */
2693 while (pass
>= SOC_TPLG_PASS_START
) {
2695 /* remove mixer controls */
2696 list_for_each_entry_safe(dobj
, next_dobj
, &comp
->dobj_list
,
2699 switch (dobj
->type
) {
2700 case SND_SOC_DOBJ_MIXER
:
2701 remove_mixer(comp
, dobj
, pass
);
2703 case SND_SOC_DOBJ_ENUM
:
2704 remove_enum(comp
, dobj
, pass
);
2706 case SND_SOC_DOBJ_BYTES
:
2707 remove_bytes(comp
, dobj
, pass
);
2709 case SND_SOC_DOBJ_GRAPH
:
2710 remove_route(comp
, dobj
, pass
);
2712 case SND_SOC_DOBJ_WIDGET
:
2713 remove_widget(comp
, dobj
, pass
);
2715 case SND_SOC_DOBJ_PCM
:
2716 remove_dai(comp
, dobj
, pass
);
2718 case SND_SOC_DOBJ_DAI_LINK
:
2719 remove_link(comp
, dobj
, pass
);
2721 case SND_SOC_DOBJ_BACKEND_LINK
:
2723 * call link_unload ops if extra
2724 * deinitialization is needed.
2726 remove_backend_link(comp
, dobj
, pass
);
2729 dev_err(comp
->dev
, "ASoC: invalid component type %d for removal\n",
2737 /* let caller know if FW can be freed when no objects are left */
2738 return !list_empty(&comp
->dobj_list
);
2740 EXPORT_SYMBOL_GPL(snd_soc_tplg_component_remove
);