blob: f8bd406c619898f600f73662cd22363410a92c16 [file] [log] [blame]
Kuninori Morimotof2b6a1b2018-07-02 06:24:45 +00001// 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.
Liam Girdwood8a978232015-05-29 19:06:14 +010022
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>
Mengdong Lin28a87ee2015-08-05 14:41:13 +010031#include <sound/tlv.h>
Liam Girdwood8a978232015-05-29 19:06:14 +010032
Pierre-Louis Bossart21141712019-04-04 14:13:58 -050033#define SOC_TPLG_MAGIC_BIG_ENDIAN 0x436F5341 /* ASoC in reverse */
34
Liam Girdwood8a978232015-05-29 19:06:14 +010035/*
36 * We make several passes over the data (since it wont necessarily be ordered)
37 * and process objects in the following order. This guarantees the component
38 * drivers will be ready with any vendor data before the mixers and DAPM objects
39 * are loaded (that may make use of the vendor data).
40 */
41#define SOC_TPLG_PASS_MANIFEST 0
42#define SOC_TPLG_PASS_VENDOR 1
43#define SOC_TPLG_PASS_MIXER 2
44#define SOC_TPLG_PASS_WIDGET 3
Mengdong Lin1a8e7fa2015-08-10 22:48:30 +080045#define SOC_TPLG_PASS_PCM_DAI 4
46#define SOC_TPLG_PASS_GRAPH 5
47#define SOC_TPLG_PASS_PINS 6
Mengdong Lin0038be92016-07-26 14:32:37 +080048#define SOC_TPLG_PASS_BE_DAI 7
Mengdong Lin593d9e52016-11-03 01:04:27 +080049#define SOC_TPLG_PASS_LINK 8
Liam Girdwood8a978232015-05-29 19:06:14 +010050
51#define SOC_TPLG_PASS_START SOC_TPLG_PASS_MANIFEST
Mengdong Lin593d9e52016-11-03 01:04:27 +080052#define SOC_TPLG_PASS_END SOC_TPLG_PASS_LINK
Liam Girdwood8a978232015-05-29 19:06:14 +010053
Mengdong Lin583958f2016-10-11 14:36:42 +080054/* topology context */
Liam Girdwood8a978232015-05-29 19:06:14 +010055struct soc_tplg {
56 const struct firmware *fw;
57
58 /* runtime FW parsing */
59 const u8 *pos; /* read postion */
60 const u8 *hdr_pos; /* header position */
61 unsigned int pass; /* pass number */
62
63 /* component caller */
64 struct device *dev;
65 struct snd_soc_component *comp;
66 u32 index; /* current block index */
67 u32 req_index; /* required index, only loaded/free matching blocks */
68
Mengdong Lin88a17d82015-08-18 18:11:51 +080069 /* vendor specific kcontrol operations */
Liam Girdwood8a978232015-05-29 19:06:14 +010070 const struct snd_soc_tplg_kcontrol_ops *io_ops;
71 int io_ops_count;
72
Mengdong Lin1a3232d2015-08-18 18:12:20 +080073 /* vendor specific bytes ext handlers, for TLV bytes controls */
74 const struct snd_soc_tplg_bytes_ext_ops *bytes_ext_ops;
75 int bytes_ext_ops_count;
76
Liam Girdwood8a978232015-05-29 19:06:14 +010077 /* optional fw loading callbacks to component drivers */
78 struct snd_soc_tplg_ops *ops;
79};
80
81static int soc_tplg_process_headers(struct soc_tplg *tplg);
82static void soc_tplg_complete(struct soc_tplg *tplg);
Amadeusz Sławiński3cde8182019-06-17 13:36:43 +020083static void soc_tplg_denum_remove_texts(struct soc_enum *se);
84static void soc_tplg_denum_remove_values(struct soc_enum *se);
Liam Girdwood8a978232015-05-29 19:06:14 +010085
86/* check we dont overflow the data for this control chunk */
87static int soc_tplg_check_elem_count(struct soc_tplg *tplg, size_t elem_size,
88 unsigned int count, size_t bytes, const char *elem_type)
89{
90 const u8 *end = tplg->pos + elem_size * count;
91
92 if (end > tplg->fw->data + tplg->fw->size) {
93 dev_err(tplg->dev, "ASoC: %s overflow end of data\n",
94 elem_type);
95 return -EINVAL;
96 }
97
98 /* check there is enough room in chunk for control.
99 extra bytes at the end of control are for vendor data here */
100 if (elem_size * count > bytes) {
101 dev_err(tplg->dev,
102 "ASoC: %s count %d of size %zu is bigger than chunk %zu\n",
103 elem_type, count, elem_size, bytes);
104 return -EINVAL;
105 }
106
107 return 0;
108}
109
110static inline int soc_tplg_is_eof(struct soc_tplg *tplg)
111{
112 const u8 *end = tplg->hdr_pos;
113
114 if (end >= tplg->fw->data + tplg->fw->size)
115 return 1;
116 return 0;
117}
118
119static inline unsigned long soc_tplg_get_hdr_offset(struct soc_tplg *tplg)
120{
121 return (unsigned long)(tplg->hdr_pos - tplg->fw->data);
122}
123
124static inline unsigned long soc_tplg_get_offset(struct soc_tplg *tplg)
125{
126 return (unsigned long)(tplg->pos - tplg->fw->data);
127}
128
129/* mapping of Kcontrol types and associated operations. */
130static const struct snd_soc_tplg_kcontrol_ops io_ops[] = {
131 {SND_SOC_TPLG_CTL_VOLSW, snd_soc_get_volsw,
132 snd_soc_put_volsw, snd_soc_info_volsw},
133 {SND_SOC_TPLG_CTL_VOLSW_SX, snd_soc_get_volsw_sx,
134 snd_soc_put_volsw_sx, NULL},
135 {SND_SOC_TPLG_CTL_ENUM, snd_soc_get_enum_double,
136 snd_soc_put_enum_double, snd_soc_info_enum_double},
137 {SND_SOC_TPLG_CTL_ENUM_VALUE, snd_soc_get_enum_double,
138 snd_soc_put_enum_double, NULL},
139 {SND_SOC_TPLG_CTL_BYTES, snd_soc_bytes_get,
140 snd_soc_bytes_put, snd_soc_bytes_info},
141 {SND_SOC_TPLG_CTL_RANGE, snd_soc_get_volsw_range,
142 snd_soc_put_volsw_range, snd_soc_info_volsw_range},
143 {SND_SOC_TPLG_CTL_VOLSW_XR_SX, snd_soc_get_xr_sx,
144 snd_soc_put_xr_sx, snd_soc_info_xr_sx},
145 {SND_SOC_TPLG_CTL_STROBE, snd_soc_get_strobe,
146 snd_soc_put_strobe, NULL},
147 {SND_SOC_TPLG_DAPM_CTL_VOLSW, snd_soc_dapm_get_volsw,
Jeeja KP2c57d4782015-07-14 13:10:47 +0530148 snd_soc_dapm_put_volsw, snd_soc_info_volsw},
Liam Girdwood8a978232015-05-29 19:06:14 +0100149 {SND_SOC_TPLG_DAPM_CTL_ENUM_DOUBLE, snd_soc_dapm_get_enum_double,
150 snd_soc_dapm_put_enum_double, snd_soc_info_enum_double},
151 {SND_SOC_TPLG_DAPM_CTL_ENUM_VIRT, snd_soc_dapm_get_enum_double,
152 snd_soc_dapm_put_enum_double, NULL},
153 {SND_SOC_TPLG_DAPM_CTL_ENUM_VALUE, snd_soc_dapm_get_enum_double,
154 snd_soc_dapm_put_enum_double, NULL},
155 {SND_SOC_TPLG_DAPM_CTL_PIN, snd_soc_dapm_get_pin_switch,
156 snd_soc_dapm_put_pin_switch, snd_soc_dapm_info_pin_switch},
157};
158
159struct soc_tplg_map {
160 int uid;
161 int kid;
162};
163
164/* mapping of widget types from UAPI IDs to kernel IDs */
165static const struct soc_tplg_map dapm_map[] = {
166 {SND_SOC_TPLG_DAPM_INPUT, snd_soc_dapm_input},
167 {SND_SOC_TPLG_DAPM_OUTPUT, snd_soc_dapm_output},
168 {SND_SOC_TPLG_DAPM_MUX, snd_soc_dapm_mux},
169 {SND_SOC_TPLG_DAPM_MIXER, snd_soc_dapm_mixer},
170 {SND_SOC_TPLG_DAPM_PGA, snd_soc_dapm_pga},
171 {SND_SOC_TPLG_DAPM_OUT_DRV, snd_soc_dapm_out_drv},
172 {SND_SOC_TPLG_DAPM_ADC, snd_soc_dapm_adc},
173 {SND_SOC_TPLG_DAPM_DAC, snd_soc_dapm_dac},
174 {SND_SOC_TPLG_DAPM_SWITCH, snd_soc_dapm_switch},
175 {SND_SOC_TPLG_DAPM_PRE, snd_soc_dapm_pre},
176 {SND_SOC_TPLG_DAPM_POST, snd_soc_dapm_post},
177 {SND_SOC_TPLG_DAPM_AIF_IN, snd_soc_dapm_aif_in},
178 {SND_SOC_TPLG_DAPM_AIF_OUT, snd_soc_dapm_aif_out},
179 {SND_SOC_TPLG_DAPM_DAI_IN, snd_soc_dapm_dai_in},
180 {SND_SOC_TPLG_DAPM_DAI_OUT, snd_soc_dapm_dai_out},
181 {SND_SOC_TPLG_DAPM_DAI_LINK, snd_soc_dapm_dai_link},
Liam Girdwood8a70b452017-06-29 14:22:24 +0100182 {SND_SOC_TPLG_DAPM_BUFFER, snd_soc_dapm_buffer},
183 {SND_SOC_TPLG_DAPM_SCHEDULER, snd_soc_dapm_scheduler},
184 {SND_SOC_TPLG_DAPM_EFFECT, snd_soc_dapm_effect},
185 {SND_SOC_TPLG_DAPM_SIGGEN, snd_soc_dapm_siggen},
186 {SND_SOC_TPLG_DAPM_SRC, snd_soc_dapm_src},
187 {SND_SOC_TPLG_DAPM_ASRC, snd_soc_dapm_asrc},
188 {SND_SOC_TPLG_DAPM_ENCODER, snd_soc_dapm_encoder},
189 {SND_SOC_TPLG_DAPM_DECODER, snd_soc_dapm_decoder},
Liam Girdwood8a978232015-05-29 19:06:14 +0100190};
191
192static int tplc_chan_get_reg(struct soc_tplg *tplg,
193 struct snd_soc_tplg_channel *chan, int map)
194{
195 int i;
196
197 for (i = 0; i < SND_SOC_TPLG_MAX_CHAN; i++) {
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500198 if (le32_to_cpu(chan[i].id) == map)
199 return le32_to_cpu(chan[i].reg);
Liam Girdwood8a978232015-05-29 19:06:14 +0100200 }
201
202 return -EINVAL;
203}
204
205static int tplc_chan_get_shift(struct soc_tplg *tplg,
206 struct snd_soc_tplg_channel *chan, int map)
207{
208 int i;
209
210 for (i = 0; i < SND_SOC_TPLG_MAX_CHAN; i++) {
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500211 if (le32_to_cpu(chan[i].id) == map)
212 return le32_to_cpu(chan[i].shift);
Liam Girdwood8a978232015-05-29 19:06:14 +0100213 }
214
215 return -EINVAL;
216}
217
218static int get_widget_id(int tplg_type)
219{
220 int i;
221
222 for (i = 0; i < ARRAY_SIZE(dapm_map); i++) {
223 if (tplg_type == dapm_map[i].uid)
224 return dapm_map[i].kid;
225 }
226
227 return -EINVAL;
228}
229
Liam Girdwood8a978232015-05-29 19:06:14 +0100230static inline void soc_bind_err(struct soc_tplg *tplg,
231 struct snd_soc_tplg_ctl_hdr *hdr, int index)
232{
233 dev_err(tplg->dev,
234 "ASoC: invalid control type (g,p,i) %d:%d:%d index %d at 0x%lx\n",
235 hdr->ops.get, hdr->ops.put, hdr->ops.info, index,
236 soc_tplg_get_offset(tplg));
237}
238
239static inline void soc_control_err(struct soc_tplg *tplg,
240 struct snd_soc_tplg_ctl_hdr *hdr, const char *name)
241{
242 dev_err(tplg->dev,
243 "ASoC: no complete mixer IO handler for %s type (g,p,i) %d:%d:%d at 0x%lx\n",
244 name, hdr->ops.get, hdr->ops.put, hdr->ops.info,
245 soc_tplg_get_offset(tplg));
246}
247
248/* pass vendor data to component driver for processing */
249static int soc_tplg_vendor_load_(struct soc_tplg *tplg,
250 struct snd_soc_tplg_hdr *hdr)
251{
252 int ret = 0;
253
254 if (tplg->comp && tplg->ops && tplg->ops->vendor_load)
Liam Girdwoodc60b6132018-06-14 20:50:37 +0100255 ret = tplg->ops->vendor_load(tplg->comp, tplg->index, hdr);
Liam Girdwood8a978232015-05-29 19:06:14 +0100256 else {
257 dev_err(tplg->dev, "ASoC: no vendor load callback for ID %d\n",
258 hdr->vendor_type);
259 return -EINVAL;
260 }
261
262 if (ret < 0)
263 dev_err(tplg->dev,
264 "ASoC: vendor load failed at hdr offset %ld/0x%lx for type %d:%d\n",
265 soc_tplg_get_hdr_offset(tplg),
266 soc_tplg_get_hdr_offset(tplg),
267 hdr->type, hdr->vendor_type);
268 return ret;
269}
270
271/* pass vendor data to component driver for processing */
272static int soc_tplg_vendor_load(struct soc_tplg *tplg,
273 struct snd_soc_tplg_hdr *hdr)
274{
275 if (tplg->pass != SOC_TPLG_PASS_VENDOR)
276 return 0;
277
278 return soc_tplg_vendor_load_(tplg, hdr);
279}
280
281/* optionally pass new dynamic widget to component driver. This is mainly for
282 * external widgets where we can assign private data/ops */
283static int soc_tplg_widget_load(struct soc_tplg *tplg,
284 struct snd_soc_dapm_widget *w, struct snd_soc_tplg_dapm_widget *tplg_w)
285{
286 if (tplg->comp && tplg->ops && tplg->ops->widget_load)
Liam Girdwoodc60b6132018-06-14 20:50:37 +0100287 return tplg->ops->widget_load(tplg->comp, tplg->index, w,
288 tplg_w);
Liam Girdwood8a978232015-05-29 19:06:14 +0100289
290 return 0;
291}
292
Liam Girdwoodebd259d2017-06-09 15:43:23 +0100293/* optionally pass new dynamic widget to component driver. This is mainly for
294 * external widgets where we can assign private data/ops */
295static int soc_tplg_widget_ready(struct soc_tplg *tplg,
296 struct snd_soc_dapm_widget *w, struct snd_soc_tplg_dapm_widget *tplg_w)
297{
298 if (tplg->comp && tplg->ops && tplg->ops->widget_ready)
Liam Girdwoodc60b6132018-06-14 20:50:37 +0100299 return tplg->ops->widget_ready(tplg->comp, tplg->index, w,
300 tplg_w);
Liam Girdwoodebd259d2017-06-09 15:43:23 +0100301
302 return 0;
303}
304
Masahiro Yamada183b8022017-02-27 14:29:20 -0800305/* pass DAI configurations to component driver for extra initialization */
Mengdong Lin64527e82016-01-15 16:13:28 +0800306static int soc_tplg_dai_load(struct soc_tplg *tplg,
Liam Girdwoodc60b6132018-06-14 20:50:37 +0100307 struct snd_soc_dai_driver *dai_drv,
308 struct snd_soc_tplg_pcm *pcm, struct snd_soc_dai *dai)
Liam Girdwood8a978232015-05-29 19:06:14 +0100309{
Mengdong Lin64527e82016-01-15 16:13:28 +0800310 if (tplg->comp && tplg->ops && tplg->ops->dai_load)
Liam Girdwoodc60b6132018-06-14 20:50:37 +0100311 return tplg->ops->dai_load(tplg->comp, tplg->index, dai_drv,
312 pcm, dai);
Liam Girdwood8a978232015-05-29 19:06:14 +0100313
314 return 0;
315}
316
Masahiro Yamada183b8022017-02-27 14:29:20 -0800317/* pass link configurations to component driver for extra initialization */
Mengdong Linacfc7d42016-01-15 16:13:37 +0800318static int soc_tplg_dai_link_load(struct soc_tplg *tplg,
Liam Girdwoodc60b6132018-06-14 20:50:37 +0100319 struct snd_soc_dai_link *link, struct snd_soc_tplg_link_config *cfg)
Mengdong Linacfc7d42016-01-15 16:13:37 +0800320{
321 if (tplg->comp && tplg->ops && tplg->ops->link_load)
Liam Girdwoodc60b6132018-06-14 20:50:37 +0100322 return tplg->ops->link_load(tplg->comp, tplg->index, link, cfg);
Mengdong Linacfc7d42016-01-15 16:13:37 +0800323
324 return 0;
325}
326
Liam Girdwood8a978232015-05-29 19:06:14 +0100327/* tell the component driver that all firmware has been loaded in this request */
328static void soc_tplg_complete(struct soc_tplg *tplg)
329{
330 if (tplg->comp && tplg->ops && tplg->ops->complete)
331 tplg->ops->complete(tplg->comp);
332}
333
334/* add a dynamic kcontrol */
335static int soc_tplg_add_dcontrol(struct snd_card *card, struct device *dev,
336 const struct snd_kcontrol_new *control_new, const char *prefix,
337 void *data, struct snd_kcontrol **kcontrol)
338{
339 int err;
340
341 *kcontrol = snd_soc_cnew(control_new, data, control_new->name, prefix);
342 if (*kcontrol == NULL) {
343 dev_err(dev, "ASoC: Failed to create new kcontrol %s\n",
344 control_new->name);
345 return -ENOMEM;
346 }
347
348 err = snd_ctl_add(card, *kcontrol);
349 if (err < 0) {
350 dev_err(dev, "ASoC: Failed to add %s: %d\n",
351 control_new->name, err);
352 return err;
353 }
354
355 return 0;
356}
357
358/* add a dynamic kcontrol for component driver */
359static int soc_tplg_add_kcontrol(struct soc_tplg *tplg,
360 struct snd_kcontrol_new *k, struct snd_kcontrol **kcontrol)
361{
362 struct snd_soc_component *comp = tplg->comp;
363
364 return soc_tplg_add_dcontrol(comp->card->snd_card,
365 comp->dev, k, NULL, comp, kcontrol);
366}
367
368/* remove a mixer kcontrol */
369static void remove_mixer(struct snd_soc_component *comp,
370 struct snd_soc_dobj *dobj, int pass)
371{
372 struct snd_card *card = comp->card->snd_card;
373 struct soc_mixer_control *sm =
374 container_of(dobj, struct soc_mixer_control, dobj);
375 const unsigned int *p = NULL;
376
377 if (pass != SOC_TPLG_PASS_MIXER)
378 return;
379
380 if (dobj->ops && dobj->ops->control_unload)
381 dobj->ops->control_unload(comp, dobj);
382
Amadeusz Sławiński33ae6ae2019-01-25 14:06:42 -0600383 if (dobj->control.kcontrol->tlv.p)
384 p = dobj->control.kcontrol->tlv.p;
385 snd_ctl_remove(card, dobj->control.kcontrol);
386 list_del(&dobj->list);
Liam Girdwood8a978232015-05-29 19:06:14 +0100387 kfree(sm);
388 kfree(p);
389}
390
391/* remove an enum kcontrol */
392static void remove_enum(struct snd_soc_component *comp,
393 struct snd_soc_dobj *dobj, int pass)
394{
395 struct snd_card *card = comp->card->snd_card;
396 struct soc_enum *se = container_of(dobj, struct soc_enum, dobj);
Liam Girdwood8a978232015-05-29 19:06:14 +0100397
398 if (pass != SOC_TPLG_PASS_MIXER)
399 return;
400
401 if (dobj->ops && dobj->ops->control_unload)
402 dobj->ops->control_unload(comp, dobj);
403
Amadeusz Sławiński33ae6ae2019-01-25 14:06:42 -0600404 snd_ctl_remove(card, dobj->control.kcontrol);
405 list_del(&dobj->list);
Liam Girdwood8a978232015-05-29 19:06:14 +0100406
Amadeusz Sławiński3cde8182019-06-17 13:36:43 +0200407 soc_tplg_denum_remove_values(se);
408 soc_tplg_denum_remove_texts(se);
Liam Girdwood8a978232015-05-29 19:06:14 +0100409 kfree(se);
410}
411
412/* remove a byte kcontrol */
413static void remove_bytes(struct snd_soc_component *comp,
414 struct snd_soc_dobj *dobj, int pass)
415{
416 struct snd_card *card = comp->card->snd_card;
417 struct soc_bytes_ext *sb =
418 container_of(dobj, struct soc_bytes_ext, dobj);
419
420 if (pass != SOC_TPLG_PASS_MIXER)
421 return;
422
423 if (dobj->ops && dobj->ops->control_unload)
424 dobj->ops->control_unload(comp, dobj);
425
Amadeusz Sławiński33ae6ae2019-01-25 14:06:42 -0600426 snd_ctl_remove(card, dobj->control.kcontrol);
427 list_del(&dobj->list);
Liam Girdwood8a978232015-05-29 19:06:14 +0100428 kfree(sb);
429}
430
Ranjani Sridharan7df04ea2019-01-25 14:06:47 -0600431/* remove a route */
432static void remove_route(struct snd_soc_component *comp,
433 struct snd_soc_dobj *dobj, int pass)
434{
435 struct snd_soc_dapm_route *route =
436 container_of(dobj, struct snd_soc_dapm_route, dobj);
437
438 if (pass != SOC_TPLG_PASS_GRAPH)
439 return;
440
441 if (dobj->ops && dobj->ops->dapm_route_unload)
442 dobj->ops->dapm_route_unload(comp, dobj);
443
444 list_del(&dobj->list);
445 kfree(route);
446}
447
Liam Girdwood8a978232015-05-29 19:06:14 +0100448/* remove a widget and it's kcontrols - routes must be removed first */
449static void remove_widget(struct snd_soc_component *comp,
450 struct snd_soc_dobj *dobj, int pass)
451{
452 struct snd_card *card = comp->card->snd_card;
453 struct snd_soc_dapm_widget *w =
454 container_of(dobj, struct snd_soc_dapm_widget, dobj);
455 int i;
456
457 if (pass != SOC_TPLG_PASS_WIDGET)
458 return;
459
460 if (dobj->ops && dobj->ops->widget_unload)
461 dobj->ops->widget_unload(comp, dobj);
462
Liam Girdwood05bdcf12018-03-14 20:42:40 +0000463 if (!w->kcontrols)
464 goto free_news;
465
Liam Girdwood8a978232015-05-29 19:06:14 +0100466 /*
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +0800467 * Dynamic Widgets either have 1..N enum kcontrols or mixers.
Liam Girdwood8a978232015-05-29 19:06:14 +0100468 * The enum may either have an array of values or strings.
469 */
Mengdong Lineea3dd42016-11-25 16:09:17 +0800470 if (dobj->widget.kcontrol_type == SND_SOC_TPLG_TYPE_ENUM) {
Liam Girdwood8a978232015-05-29 19:06:14 +0100471 /* enumerated widget mixer */
Liam Girdwoodf53c4c22018-03-27 14:30:44 +0100472 for (i = 0; w->kcontrols != NULL && i < w->num_kcontrols; i++) {
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +0800473 struct snd_kcontrol *kcontrol = w->kcontrols[i];
474 struct soc_enum *se =
475 (struct soc_enum *)kcontrol->private_value;
Liam Girdwood8a978232015-05-29 19:06:14 +0100476
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +0800477 snd_ctl_remove(card, kcontrol);
Liam Girdwood8a978232015-05-29 19:06:14 +0100478
Ranjani Sridharan54f88442019-04-04 19:48:33 -0700479 /* free enum kcontrol's dvalues and dtexts */
Amadeusz Sławiński3cde8182019-06-17 13:36:43 +0200480 soc_tplg_denum_remove_values(se);
481 soc_tplg_denum_remove_texts(se);
Liam Girdwood8a978232015-05-29 19:06:14 +0100482
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +0800483 kfree(se);
Liam Girdwood267e2c62018-03-27 12:04:04 +0100484 kfree(w->kcontrol_news[i].name);
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +0800485 }
Liam Girdwood8a978232015-05-29 19:06:14 +0100486 } else {
Mengdong Lineea3dd42016-11-25 16:09:17 +0800487 /* volume mixer or bytes controls */
Liam Girdwoodf53c4c22018-03-27 14:30:44 +0100488 for (i = 0; w->kcontrols != NULL && i < w->num_kcontrols; i++) {
Liam Girdwood8a978232015-05-29 19:06:14 +0100489 struct snd_kcontrol *kcontrol = w->kcontrols[i];
Liam Girdwood8a978232015-05-29 19:06:14 +0100490
Mengdong Lineea3dd42016-11-25 16:09:17 +0800491 if (dobj->widget.kcontrol_type
492 == SND_SOC_TPLG_TYPE_MIXER)
493 kfree(kcontrol->tlv.p);
Liam Girdwood8a978232015-05-29 19:06:14 +0100494
Mengdong Lineea3dd42016-11-25 16:09:17 +0800495 /* Private value is used as struct soc_mixer_control
496 * for volume mixers or soc_bytes_ext for bytes
497 * controls.
498 */
499 kfree((void *)kcontrol->private_value);
Colin Ian Kingc2b36122016-12-09 14:17:47 +0000500 snd_ctl_remove(card, kcontrol);
Liam Girdwood267e2c62018-03-27 12:04:04 +0100501 kfree(w->kcontrol_news[i].name);
Liam Girdwood8a978232015-05-29 19:06:14 +0100502 }
Liam Girdwood8a978232015-05-29 19:06:14 +0100503 }
Liam Girdwood05bdcf12018-03-14 20:42:40 +0000504
505free_news:
506 kfree(w->kcontrol_news);
507
Amadeusz Sławińskia46e8392019-01-25 14:06:43 -0600508 list_del(&dobj->list);
509
Liam Girdwood8a978232015-05-29 19:06:14 +0100510 /* widget w is freed by soc-dapm.c */
511}
512
Mengdong Lin64527e82016-01-15 16:13:28 +0800513/* remove DAI configurations */
514static void remove_dai(struct snd_soc_component *comp,
Liam Girdwood8a978232015-05-29 19:06:14 +0100515 struct snd_soc_dobj *dobj, int pass)
516{
Mengdong Lin64527e82016-01-15 16:13:28 +0800517 struct snd_soc_dai_driver *dai_drv =
518 container_of(dobj, struct snd_soc_dai_driver, dobj);
Guennadi Liakhovetski52abe6c2019-02-01 11:05:13 -0600519 struct snd_soc_dai *dai;
Mengdong Lin64527e82016-01-15 16:13:28 +0800520
Liam Girdwood8a978232015-05-29 19:06:14 +0100521 if (pass != SOC_TPLG_PASS_PCM_DAI)
522 return;
523
Mengdong Lin64527e82016-01-15 16:13:28 +0800524 if (dobj->ops && dobj->ops->dai_unload)
525 dobj->ops->dai_unload(comp, dobj);
Liam Girdwood8a978232015-05-29 19:06:14 +0100526
Kuninori Morimoto43ca5da2019-08-20 14:05:32 +0900527 for_each_component_dais(comp, dai)
Guennadi Liakhovetski52abe6c2019-02-01 11:05:13 -0600528 if (dai->driver == dai_drv)
529 dai->driver = NULL;
530
Bard liao7b6f68a2019-03-05 23:57:52 +0800531 kfree(dai_drv->playback.stream_name);
532 kfree(dai_drv->capture.stream_name);
Mengdong Lin8f27c4a2016-11-03 01:02:59 +0800533 kfree(dai_drv->name);
Liam Girdwood8a978232015-05-29 19:06:14 +0100534 list_del(&dobj->list);
Mengdong Lin64527e82016-01-15 16:13:28 +0800535 kfree(dai_drv);
Liam Girdwood8a978232015-05-29 19:06:14 +0100536}
537
Mengdong Linacfc7d42016-01-15 16:13:37 +0800538/* remove link configurations */
539static void remove_link(struct snd_soc_component *comp,
540 struct snd_soc_dobj *dobj, int pass)
541{
542 struct snd_soc_dai_link *link =
543 container_of(dobj, struct snd_soc_dai_link, dobj);
544
545 if (pass != SOC_TPLG_PASS_PCM_DAI)
546 return;
547
548 if (dobj->ops && dobj->ops->link_unload)
549 dobj->ops->link_unload(comp, dobj);
550
Mengdong Lin8f27c4a2016-11-03 01:02:59 +0800551 kfree(link->name);
552 kfree(link->stream_name);
Kuninori Morimoto23b946c2019-06-06 13:19:14 +0900553 kfree(link->cpus->dai_name);
Mengdong Lin8f27c4a2016-11-03 01:02:59 +0800554
Mengdong Linacfc7d42016-01-15 16:13:37 +0800555 list_del(&dobj->list);
Kuninori Morimoto50cd9b52019-12-10 09:34:23 +0900556
557 snd_soc_remove_pcm_runtime(comp->card,
558 snd_soc_get_pcm_runtime(comp->card, link));
Mengdong Linacfc7d42016-01-15 16:13:37 +0800559 kfree(link);
560}
561
Bard liaoadfebb52019-02-01 11:07:40 -0600562/* unload dai link */
563static void remove_backend_link(struct snd_soc_component *comp,
564 struct snd_soc_dobj *dobj, int pass)
565{
566 if (pass != SOC_TPLG_PASS_LINK)
567 return;
568
569 if (dobj->ops && dobj->ops->link_unload)
570 dobj->ops->link_unload(comp, dobj);
571
572 /*
573 * We don't free the link here as what remove_link() do since BE
574 * links are not allocated by topology.
575 * We however need to reset the dobj type to its initial values
576 */
577 dobj->type = SND_SOC_DOBJ_NONE;
578 list_del(&dobj->list);
579}
580
Liam Girdwood8a978232015-05-29 19:06:14 +0100581/* bind a kcontrol to it's IO handlers */
582static int soc_tplg_kcontrol_bind_io(struct snd_soc_tplg_ctl_hdr *hdr,
583 struct snd_kcontrol_new *k,
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800584 const struct soc_tplg *tplg)
Liam Girdwood8a978232015-05-29 19:06:14 +0100585{
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800586 const struct snd_soc_tplg_kcontrol_ops *ops;
Mengdong Lin1a3232d2015-08-18 18:12:20 +0800587 const struct snd_soc_tplg_bytes_ext_ops *ext_ops;
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800588 int num_ops, i;
Liam Girdwood8a978232015-05-29 19:06:14 +0100589
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500590 if (le32_to_cpu(hdr->ops.info) == SND_SOC_TPLG_CTL_BYTES
Mengdong Lin1a3232d2015-08-18 18:12:20 +0800591 && k->iface & SNDRV_CTL_ELEM_IFACE_MIXER
592 && k->access & SNDRV_CTL_ELEM_ACCESS_TLV_READWRITE
593 && k->access & SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK) {
594 struct soc_bytes_ext *sbe;
595 struct snd_soc_tplg_bytes_control *be;
596
597 sbe = (struct soc_bytes_ext *)k->private_value;
598 be = container_of(hdr, struct snd_soc_tplg_bytes_control, hdr);
599
600 /* TLV bytes controls need standard kcontrol info handler,
601 * TLV callback and extended put/get handlers.
602 */
Omair M Abdullahf4be9782015-11-09 23:20:01 +0530603 k->info = snd_soc_bytes_info_ext;
Mengdong Lin1a3232d2015-08-18 18:12:20 +0800604 k->tlv.c = snd_soc_bytes_tlv_callback;
605
606 ext_ops = tplg->bytes_ext_ops;
607 num_ops = tplg->bytes_ext_ops_count;
608 for (i = 0; i < num_ops; i++) {
609 if (!sbe->put && ext_ops[i].id == be->ext_ops.put)
610 sbe->put = ext_ops[i].put;
611 if (!sbe->get && ext_ops[i].id == be->ext_ops.get)
612 sbe->get = ext_ops[i].get;
613 }
614
615 if (sbe->put && sbe->get)
616 return 0;
617 else
618 return -EINVAL;
619 }
620
Mengdong Lin88a17d82015-08-18 18:11:51 +0800621 /* try and map vendor specific kcontrol handlers first */
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800622 ops = tplg->io_ops;
623 num_ops = tplg->io_ops_count;
Liam Girdwood8a978232015-05-29 19:06:14 +0100624 for (i = 0; i < num_ops; i++) {
625
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800626 if (k->put == NULL && ops[i].id == hdr->ops.put)
Liam Girdwood8a978232015-05-29 19:06:14 +0100627 k->put = ops[i].put;
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800628 if (k->get == NULL && ops[i].id == hdr->ops.get)
Liam Girdwood8a978232015-05-29 19:06:14 +0100629 k->get = ops[i].get;
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800630 if (k->info == NULL && ops[i].id == hdr->ops.info)
631 k->info = ops[i].info;
Liam Girdwood8a978232015-05-29 19:06:14 +0100632 }
633
Mengdong Lin88a17d82015-08-18 18:11:51 +0800634 /* vendor specific handlers found ? */
635 if (k->put && k->get && k->info)
636 return 0;
637
638 /* none found so try standard kcontrol handlers */
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800639 ops = io_ops;
640 num_ops = ARRAY_SIZE(io_ops);
Mengdong Lin88a17d82015-08-18 18:11:51 +0800641 for (i = 0; i < num_ops; i++) {
642
643 if (k->put == NULL && ops[i].id == hdr->ops.put)
644 k->put = ops[i].put;
645 if (k->get == NULL && ops[i].id == hdr->ops.get)
646 k->get = ops[i].get;
647 if (k->info == NULL && ops[i].id == hdr->ops.info)
Liam Girdwood8a978232015-05-29 19:06:14 +0100648 k->info = ops[i].info;
649 }
650
651 /* standard handlers found ? */
652 if (k->put && k->get && k->info)
653 return 0;
654
Liam Girdwood8a978232015-05-29 19:06:14 +0100655 /* nothing to bind */
656 return -EINVAL;
657}
658
659/* bind a widgets to it's evnt handlers */
660int snd_soc_tplg_widget_bind_event(struct snd_soc_dapm_widget *w,
661 const struct snd_soc_tplg_widget_events *events,
662 int num_events, u16 event_type)
663{
664 int i;
665
666 w->event = NULL;
667
668 for (i = 0; i < num_events; i++) {
669 if (event_type == events[i].type) {
670
671 /* found - so assign event */
672 w->event = events[i].event_handler;
673 return 0;
674 }
675 }
676
677 /* not found */
678 return -EINVAL;
679}
680EXPORT_SYMBOL_GPL(snd_soc_tplg_widget_bind_event);
681
682/* optionally pass new dynamic kcontrol to component driver. */
683static int soc_tplg_init_kcontrol(struct soc_tplg *tplg,
684 struct snd_kcontrol_new *k, struct snd_soc_tplg_ctl_hdr *hdr)
685{
686 if (tplg->comp && tplg->ops && tplg->ops->control_load)
Liam Girdwoodc60b6132018-06-14 20:50:37 +0100687 return tplg->ops->control_load(tplg->comp, tplg->index, k,
688 hdr);
Liam Girdwood8a978232015-05-29 19:06:14 +0100689
690 return 0;
691}
692
Mengdong Lin28a87ee2015-08-05 14:41:13 +0100693
694static int soc_tplg_create_tlv_db_scale(struct soc_tplg *tplg,
695 struct snd_kcontrol_new *kc, struct snd_soc_tplg_tlv_dbscale *scale)
Liam Girdwood8a978232015-05-29 19:06:14 +0100696{
Mengdong Lin28a87ee2015-08-05 14:41:13 +0100697 unsigned int item_len = 2 * sizeof(unsigned int);
698 unsigned int *p;
Liam Girdwood8a978232015-05-29 19:06:14 +0100699
Mengdong Lin28a87ee2015-08-05 14:41:13 +0100700 p = kzalloc(item_len + 2 * sizeof(unsigned int), GFP_KERNEL);
701 if (!p)
Liam Girdwood8a978232015-05-29 19:06:14 +0100702 return -ENOMEM;
703
Mengdong Lin28a87ee2015-08-05 14:41:13 +0100704 p[0] = SNDRV_CTL_TLVT_DB_SCALE;
705 p[1] = item_len;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500706 p[2] = le32_to_cpu(scale->min);
707 p[3] = (le32_to_cpu(scale->step) & TLV_DB_SCALE_MASK)
708 | (le32_to_cpu(scale->mute) ? TLV_DB_SCALE_MUTE : 0);
Liam Girdwood8a978232015-05-29 19:06:14 +0100709
Mengdong Lin28a87ee2015-08-05 14:41:13 +0100710 kc->tlv.p = (void *)p;
711 return 0;
712}
713
714static int soc_tplg_create_tlv(struct soc_tplg *tplg,
715 struct snd_kcontrol_new *kc, struct snd_soc_tplg_ctl_hdr *tc)
716{
717 struct snd_soc_tplg_ctl_tlv *tplg_tlv;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500718 u32 access = le32_to_cpu(tc->access);
Mengdong Lin28a87ee2015-08-05 14:41:13 +0100719
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500720 if (!(access & SNDRV_CTL_ELEM_ACCESS_TLV_READWRITE))
Mengdong Lin28a87ee2015-08-05 14:41:13 +0100721 return 0;
722
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500723 if (!(access & SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK)) {
Mengdong Lin28a87ee2015-08-05 14:41:13 +0100724 tplg_tlv = &tc->tlv;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500725 switch (le32_to_cpu(tplg_tlv->type)) {
Mengdong Lin28a87ee2015-08-05 14:41:13 +0100726 case SNDRV_CTL_TLVT_DB_SCALE:
727 return soc_tplg_create_tlv_db_scale(tplg, kc,
728 &tplg_tlv->scale);
729
730 /* TODO: add support for other TLV types */
731 default:
732 dev_dbg(tplg->dev, "Unsupported TLV type %d\n",
733 tplg_tlv->type);
734 return -EINVAL;
735 }
736 }
Liam Girdwood8a978232015-05-29 19:06:14 +0100737
738 return 0;
739}
740
741static inline void soc_tplg_free_tlv(struct soc_tplg *tplg,
742 struct snd_kcontrol_new *kc)
743{
744 kfree(kc->tlv.p);
745}
746
747static int soc_tplg_dbytes_create(struct soc_tplg *tplg, unsigned int count,
748 size_t size)
749{
750 struct snd_soc_tplg_bytes_control *be;
751 struct soc_bytes_ext *sbe;
752 struct snd_kcontrol_new kc;
753 int i, err;
754
755 if (soc_tplg_check_elem_count(tplg,
756 sizeof(struct snd_soc_tplg_bytes_control), count,
757 size, "mixer bytes")) {
758 dev_err(tplg->dev, "ASoC: Invalid count %d for byte control\n",
759 count);
760 return -EINVAL;
761 }
762
763 for (i = 0; i < count; i++) {
764 be = (struct snd_soc_tplg_bytes_control *)tplg->pos;
765
766 /* validate kcontrol */
767 if (strnlen(be->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
768 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
769 return -EINVAL;
770
771 sbe = kzalloc(sizeof(*sbe), GFP_KERNEL);
772 if (sbe == NULL)
773 return -ENOMEM;
774
775 tplg->pos += (sizeof(struct snd_soc_tplg_bytes_control) +
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500776 le32_to_cpu(be->priv.size));
Liam Girdwood8a978232015-05-29 19:06:14 +0100777
778 dev_dbg(tplg->dev,
779 "ASoC: adding bytes kcontrol %s with access 0x%x\n",
780 be->hdr.name, be->hdr.access);
781
782 memset(&kc, 0, sizeof(kc));
783 kc.name = be->hdr.name;
784 kc.private_value = (long)sbe;
785 kc.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500786 kc.access = le32_to_cpu(be->hdr.access);
Liam Girdwood8a978232015-05-29 19:06:14 +0100787
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500788 sbe->max = le32_to_cpu(be->max);
Liam Girdwood8a978232015-05-29 19:06:14 +0100789 sbe->dobj.type = SND_SOC_DOBJ_BYTES;
790 sbe->dobj.ops = tplg->ops;
791 INIT_LIST_HEAD(&sbe->dobj.list);
792
793 /* map io handlers */
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800794 err = soc_tplg_kcontrol_bind_io(&be->hdr, &kc, tplg);
Liam Girdwood8a978232015-05-29 19:06:14 +0100795 if (err) {
796 soc_control_err(tplg, &be->hdr, be->hdr.name);
797 kfree(sbe);
798 continue;
799 }
800
801 /* pass control to driver for optional further init */
802 err = soc_tplg_init_kcontrol(tplg, &kc,
803 (struct snd_soc_tplg_ctl_hdr *)be);
804 if (err < 0) {
805 dev_err(tplg->dev, "ASoC: failed to init %s\n",
806 be->hdr.name);
807 kfree(sbe);
808 continue;
809 }
810
811 /* register control here */
812 err = soc_tplg_add_kcontrol(tplg, &kc,
813 &sbe->dobj.control.kcontrol);
814 if (err < 0) {
815 dev_err(tplg->dev, "ASoC: failed to add %s\n",
816 be->hdr.name);
817 kfree(sbe);
818 continue;
819 }
820
821 list_add(&sbe->dobj.list, &tplg->comp->dobj_list);
822 }
823 return 0;
824
825}
826
827static int soc_tplg_dmixer_create(struct soc_tplg *tplg, unsigned int count,
828 size_t size)
829{
830 struct snd_soc_tplg_mixer_control *mc;
831 struct soc_mixer_control *sm;
832 struct snd_kcontrol_new kc;
833 int i, err;
834
835 if (soc_tplg_check_elem_count(tplg,
836 sizeof(struct snd_soc_tplg_mixer_control),
837 count, size, "mixers")) {
838
839 dev_err(tplg->dev, "ASoC: invalid count %d for controls\n",
840 count);
841 return -EINVAL;
842 }
843
844 for (i = 0; i < count; i++) {
845 mc = (struct snd_soc_tplg_mixer_control *)tplg->pos;
846
847 /* validate kcontrol */
848 if (strnlen(mc->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
849 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
850 return -EINVAL;
851
852 sm = kzalloc(sizeof(*sm), GFP_KERNEL);
853 if (sm == NULL)
854 return -ENOMEM;
855 tplg->pos += (sizeof(struct snd_soc_tplg_mixer_control) +
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500856 le32_to_cpu(mc->priv.size));
Liam Girdwood8a978232015-05-29 19:06:14 +0100857
858 dev_dbg(tplg->dev,
859 "ASoC: adding mixer kcontrol %s with access 0x%x\n",
860 mc->hdr.name, mc->hdr.access);
861
862 memset(&kc, 0, sizeof(kc));
863 kc.name = mc->hdr.name;
864 kc.private_value = (long)sm;
865 kc.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500866 kc.access = le32_to_cpu(mc->hdr.access);
Liam Girdwood8a978232015-05-29 19:06:14 +0100867
868 /* we only support FL/FR channel mapping atm */
869 sm->reg = tplc_chan_get_reg(tplg, mc->channel,
870 SNDRV_CHMAP_FL);
871 sm->rreg = tplc_chan_get_reg(tplg, mc->channel,
872 SNDRV_CHMAP_FR);
873 sm->shift = tplc_chan_get_shift(tplg, mc->channel,
874 SNDRV_CHMAP_FL);
875 sm->rshift = tplc_chan_get_shift(tplg, mc->channel,
876 SNDRV_CHMAP_FR);
877
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500878 sm->max = le32_to_cpu(mc->max);
879 sm->min = le32_to_cpu(mc->min);
880 sm->invert = le32_to_cpu(mc->invert);
881 sm->platform_max = le32_to_cpu(mc->platform_max);
Liam Girdwood8a978232015-05-29 19:06:14 +0100882 sm->dobj.index = tplg->index;
883 sm->dobj.ops = tplg->ops;
884 sm->dobj.type = SND_SOC_DOBJ_MIXER;
885 INIT_LIST_HEAD(&sm->dobj.list);
886
887 /* map io handlers */
Mengdong Lin2b5cdb92015-08-18 18:12:01 +0800888 err = soc_tplg_kcontrol_bind_io(&mc->hdr, &kc, tplg);
Liam Girdwood8a978232015-05-29 19:06:14 +0100889 if (err) {
890 soc_control_err(tplg, &mc->hdr, mc->hdr.name);
891 kfree(sm);
892 continue;
893 }
894
Bard liao3789deb2019-03-13 21:49:43 +0800895 /* create any TLV data */
896 soc_tplg_create_tlv(tplg, &kc, &mc->hdr);
897
Liam Girdwood8a978232015-05-29 19:06:14 +0100898 /* pass control to driver for optional further init */
899 err = soc_tplg_init_kcontrol(tplg, &kc,
900 (struct snd_soc_tplg_ctl_hdr *) mc);
901 if (err < 0) {
902 dev_err(tplg->dev, "ASoC: failed to init %s\n",
903 mc->hdr.name);
Bard liao3789deb2019-03-13 21:49:43 +0800904 soc_tplg_free_tlv(tplg, &kc);
Liam Girdwood8a978232015-05-29 19:06:14 +0100905 kfree(sm);
906 continue;
907 }
908
Liam Girdwood8a978232015-05-29 19:06:14 +0100909 /* register control here */
910 err = soc_tplg_add_kcontrol(tplg, &kc,
911 &sm->dobj.control.kcontrol);
912 if (err < 0) {
913 dev_err(tplg->dev, "ASoC: failed to add %s\n",
914 mc->hdr.name);
915 soc_tplg_free_tlv(tplg, &kc);
916 kfree(sm);
917 continue;
918 }
919
920 list_add(&sm->dobj.list, &tplg->comp->dobj_list);
921 }
922
923 return 0;
924}
925
926static int soc_tplg_denum_create_texts(struct soc_enum *se,
927 struct snd_soc_tplg_enum_control *ec)
928{
929 int i, ret;
930
931 se->dobj.control.dtexts =
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500932 kcalloc(le32_to_cpu(ec->items), sizeof(char *), GFP_KERNEL);
Liam Girdwood8a978232015-05-29 19:06:14 +0100933 if (se->dobj.control.dtexts == NULL)
934 return -ENOMEM;
935
936 for (i = 0; i < ec->items; i++) {
937
938 if (strnlen(ec->texts[i], SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
939 SNDRV_CTL_ELEM_ID_NAME_MAXLEN) {
940 ret = -EINVAL;
941 goto err;
942 }
943
944 se->dobj.control.dtexts[i] = kstrdup(ec->texts[i], GFP_KERNEL);
945 if (!se->dobj.control.dtexts[i]) {
946 ret = -ENOMEM;
947 goto err;
948 }
949 }
950
Amadeusz Sławiński3cde8182019-06-17 13:36:43 +0200951 se->items = le32_to_cpu(ec->items);
Mousumi Janab6e38b22017-04-11 13:06:22 +0530952 se->texts = (const char * const *)se->dobj.control.dtexts;
Liam Girdwood8a978232015-05-29 19:06:14 +0100953 return 0;
954
955err:
Amadeusz Sławiński3cde8182019-06-17 13:36:43 +0200956 se->items = i;
957 soc_tplg_denum_remove_texts(se);
958 return ret;
959}
960
961static inline void soc_tplg_denum_remove_texts(struct soc_enum *se)
962{
963 int i = se->items;
964
Liam Girdwood8a978232015-05-29 19:06:14 +0100965 for (--i; i >= 0; i--)
966 kfree(se->dobj.control.dtexts[i]);
967 kfree(se->dobj.control.dtexts);
Liam Girdwood8a978232015-05-29 19:06:14 +0100968}
969
970static int soc_tplg_denum_create_values(struct soc_enum *se,
971 struct snd_soc_tplg_enum_control *ec)
972{
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500973 int i;
974
975 if (le32_to_cpu(ec->items) > sizeof(*ec->values))
Liam Girdwood8a978232015-05-29 19:06:14 +0100976 return -EINVAL;
977
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500978 se->dobj.control.dvalues = kzalloc(le32_to_cpu(ec->items) *
979 sizeof(u32),
Andrzej Hajda376c0af2015-08-07 09:59:37 +0200980 GFP_KERNEL);
Liam Girdwood8a978232015-05-29 19:06:14 +0100981 if (!se->dobj.control.dvalues)
982 return -ENOMEM;
983
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -0500984 /* convert from little-endian */
985 for (i = 0; i < le32_to_cpu(ec->items); i++) {
986 se->dobj.control.dvalues[i] = le32_to_cpu(ec->values[i]);
987 }
988
Liam Girdwood8a978232015-05-29 19:06:14 +0100989 return 0;
990}
991
Amadeusz Sławiński3cde8182019-06-17 13:36:43 +0200992static inline void soc_tplg_denum_remove_values(struct soc_enum *se)
993{
994 kfree(se->dobj.control.dvalues);
995}
996
Liam Girdwood8a978232015-05-29 19:06:14 +0100997static int soc_tplg_denum_create(struct soc_tplg *tplg, unsigned int count,
998 size_t size)
999{
1000 struct snd_soc_tplg_enum_control *ec;
1001 struct soc_enum *se;
1002 struct snd_kcontrol_new kc;
1003 int i, ret, err;
1004
1005 if (soc_tplg_check_elem_count(tplg,
1006 sizeof(struct snd_soc_tplg_enum_control),
1007 count, size, "enums")) {
1008
1009 dev_err(tplg->dev, "ASoC: invalid count %d for enum controls\n",
1010 count);
1011 return -EINVAL;
1012 }
1013
1014 for (i = 0; i < count; i++) {
1015 ec = (struct snd_soc_tplg_enum_control *)tplg->pos;
Liam Girdwood8a978232015-05-29 19:06:14 +01001016
1017 /* validate kcontrol */
1018 if (strnlen(ec->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1019 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
1020 return -EINVAL;
1021
1022 se = kzalloc((sizeof(*se)), GFP_KERNEL);
1023 if (se == NULL)
1024 return -ENOMEM;
1025
Liam Girdwood02b64242019-03-01 19:08:52 -06001026 tplg->pos += (sizeof(struct snd_soc_tplg_enum_control) +
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001027 le32_to_cpu(ec->priv.size));
Liam Girdwood02b64242019-03-01 19:08:52 -06001028
Liam Girdwood8a978232015-05-29 19:06:14 +01001029 dev_dbg(tplg->dev, "ASoC: adding enum kcontrol %s size %d\n",
1030 ec->hdr.name, ec->items);
1031
1032 memset(&kc, 0, sizeof(kc));
1033 kc.name = ec->hdr.name;
1034 kc.private_value = (long)se;
1035 kc.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001036 kc.access = le32_to_cpu(ec->hdr.access);
Liam Girdwood8a978232015-05-29 19:06:14 +01001037
1038 se->reg = tplc_chan_get_reg(tplg, ec->channel, SNDRV_CHMAP_FL);
1039 se->shift_l = tplc_chan_get_shift(tplg, ec->channel,
1040 SNDRV_CHMAP_FL);
1041 se->shift_r = tplc_chan_get_shift(tplg, ec->channel,
1042 SNDRV_CHMAP_FL);
1043
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001044 se->mask = le32_to_cpu(ec->mask);
Liam Girdwood8a978232015-05-29 19:06:14 +01001045 se->dobj.index = tplg->index;
1046 se->dobj.type = SND_SOC_DOBJ_ENUM;
1047 se->dobj.ops = tplg->ops;
1048 INIT_LIST_HEAD(&se->dobj.list);
1049
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001050 switch (le32_to_cpu(ec->hdr.ops.info)) {
Liam Girdwood8a978232015-05-29 19:06:14 +01001051 case SND_SOC_TPLG_DAPM_CTL_ENUM_VALUE:
1052 case SND_SOC_TPLG_CTL_ENUM_VALUE:
1053 err = soc_tplg_denum_create_values(se, ec);
1054 if (err < 0) {
1055 dev_err(tplg->dev,
1056 "ASoC: could not create values for %s\n",
1057 ec->hdr.name);
1058 kfree(se);
1059 continue;
1060 }
Takashi Iwai9c6c4d92018-10-04 20:30:06 +02001061 /* fall through */
Liam Girdwood8a978232015-05-29 19:06:14 +01001062 case SND_SOC_TPLG_CTL_ENUM:
1063 case SND_SOC_TPLG_DAPM_CTL_ENUM_DOUBLE:
1064 case SND_SOC_TPLG_DAPM_CTL_ENUM_VIRT:
1065 err = soc_tplg_denum_create_texts(se, ec);
1066 if (err < 0) {
1067 dev_err(tplg->dev,
1068 "ASoC: could not create texts for %s\n",
1069 ec->hdr.name);
1070 kfree(se);
1071 continue;
1072 }
1073 break;
1074 default:
1075 dev_err(tplg->dev,
1076 "ASoC: invalid enum control type %d for %s\n",
1077 ec->hdr.ops.info, ec->hdr.name);
1078 kfree(se);
1079 continue;
1080 }
1081
1082 /* map io handlers */
Mengdong Lin2b5cdb92015-08-18 18:12:01 +08001083 err = soc_tplg_kcontrol_bind_io(&ec->hdr, &kc, tplg);
Liam Girdwood8a978232015-05-29 19:06:14 +01001084 if (err) {
1085 soc_control_err(tplg, &ec->hdr, ec->hdr.name);
1086 kfree(se);
1087 continue;
1088 }
1089
1090 /* pass control to driver for optional further init */
1091 err = soc_tplg_init_kcontrol(tplg, &kc,
1092 (struct snd_soc_tplg_ctl_hdr *) ec);
1093 if (err < 0) {
1094 dev_err(tplg->dev, "ASoC: failed to init %s\n",
1095 ec->hdr.name);
1096 kfree(se);
1097 continue;
1098 }
1099
1100 /* register control here */
1101 ret = soc_tplg_add_kcontrol(tplg,
1102 &kc, &se->dobj.control.kcontrol);
1103 if (ret < 0) {
1104 dev_err(tplg->dev, "ASoC: could not add kcontrol %s\n",
1105 ec->hdr.name);
1106 kfree(se);
1107 continue;
1108 }
1109
1110 list_add(&se->dobj.list, &tplg->comp->dobj_list);
1111 }
1112
1113 return 0;
1114}
1115
1116static int soc_tplg_kcontrol_elems_load(struct soc_tplg *tplg,
1117 struct snd_soc_tplg_hdr *hdr)
1118{
1119 struct snd_soc_tplg_ctl_hdr *control_hdr;
1120 int i;
1121
1122 if (tplg->pass != SOC_TPLG_PASS_MIXER) {
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001123 tplg->pos += le32_to_cpu(hdr->size) +
1124 le32_to_cpu(hdr->payload_size);
Liam Girdwood8a978232015-05-29 19:06:14 +01001125 return 0;
1126 }
1127
1128 dev_dbg(tplg->dev, "ASoC: adding %d kcontrols at 0x%lx\n", hdr->count,
1129 soc_tplg_get_offset(tplg));
1130
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001131 for (i = 0; i < le32_to_cpu(hdr->count); i++) {
Liam Girdwood8a978232015-05-29 19:06:14 +01001132
1133 control_hdr = (struct snd_soc_tplg_ctl_hdr *)tplg->pos;
1134
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001135 if (le32_to_cpu(control_hdr->size) != sizeof(*control_hdr)) {
Mengdong Lin06eb49f2016-04-27 14:52:56 +08001136 dev_err(tplg->dev, "ASoC: invalid control size\n");
1137 return -EINVAL;
1138 }
1139
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001140 switch (le32_to_cpu(control_hdr->ops.info)) {
Liam Girdwood8a978232015-05-29 19:06:14 +01001141 case SND_SOC_TPLG_CTL_VOLSW:
1142 case SND_SOC_TPLG_CTL_STROBE:
1143 case SND_SOC_TPLG_CTL_VOLSW_SX:
1144 case SND_SOC_TPLG_CTL_VOLSW_XR_SX:
1145 case SND_SOC_TPLG_CTL_RANGE:
1146 case SND_SOC_TPLG_DAPM_CTL_VOLSW:
1147 case SND_SOC_TPLG_DAPM_CTL_PIN:
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001148 soc_tplg_dmixer_create(tplg, 1,
1149 le32_to_cpu(hdr->payload_size));
Liam Girdwood8a978232015-05-29 19:06:14 +01001150 break;
1151 case SND_SOC_TPLG_CTL_ENUM:
1152 case SND_SOC_TPLG_CTL_ENUM_VALUE:
1153 case SND_SOC_TPLG_DAPM_CTL_ENUM_DOUBLE:
1154 case SND_SOC_TPLG_DAPM_CTL_ENUM_VIRT:
1155 case SND_SOC_TPLG_DAPM_CTL_ENUM_VALUE:
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001156 soc_tplg_denum_create(tplg, 1,
1157 le32_to_cpu(hdr->payload_size));
Liam Girdwood8a978232015-05-29 19:06:14 +01001158 break;
1159 case SND_SOC_TPLG_CTL_BYTES:
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001160 soc_tplg_dbytes_create(tplg, 1,
1161 le32_to_cpu(hdr->payload_size));
Liam Girdwood8a978232015-05-29 19:06:14 +01001162 break;
1163 default:
1164 soc_bind_err(tplg, control_hdr, i);
1165 return -EINVAL;
1166 }
1167 }
1168
1169 return 0;
1170}
1171
Liam Girdwood503e79b2018-06-14 20:53:59 +01001172/* optionally pass new dynamic kcontrol to component driver. */
1173static int soc_tplg_add_route(struct soc_tplg *tplg,
1174 struct snd_soc_dapm_route *route)
1175{
1176 if (tplg->comp && tplg->ops && tplg->ops->dapm_route_load)
1177 return tplg->ops->dapm_route_load(tplg->comp, tplg->index,
1178 route);
1179
1180 return 0;
1181}
1182
Liam Girdwood8a978232015-05-29 19:06:14 +01001183static int soc_tplg_dapm_graph_elems_load(struct soc_tplg *tplg,
1184 struct snd_soc_tplg_hdr *hdr)
1185{
1186 struct snd_soc_dapm_context *dapm = &tplg->comp->dapm;
Liam Girdwood8a978232015-05-29 19:06:14 +01001187 struct snd_soc_tplg_dapm_graph_elem *elem;
Ranjani Sridharan7df04ea2019-01-25 14:06:47 -06001188 struct snd_soc_dapm_route **routes;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001189 int count, i, j;
Ranjani Sridharan7df04ea2019-01-25 14:06:47 -06001190 int ret = 0;
Liam Girdwood8a978232015-05-29 19:06:14 +01001191
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001192 count = le32_to_cpu(hdr->count);
1193
Liam Girdwood8a978232015-05-29 19:06:14 +01001194 if (tplg->pass != SOC_TPLG_PASS_GRAPH) {
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001195 tplg->pos +=
1196 le32_to_cpu(hdr->size) +
1197 le32_to_cpu(hdr->payload_size);
1198
Liam Girdwood8a978232015-05-29 19:06:14 +01001199 return 0;
1200 }
1201
1202 if (soc_tplg_check_elem_count(tplg,
1203 sizeof(struct snd_soc_tplg_dapm_graph_elem),
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001204 count, le32_to_cpu(hdr->payload_size), "graph")) {
Liam Girdwood8a978232015-05-29 19:06:14 +01001205
1206 dev_err(tplg->dev, "ASoC: invalid count %d for DAPM routes\n",
1207 count);
1208 return -EINVAL;
1209 }
1210
Liam Girdwoodb75a6512017-06-29 14:22:26 +01001211 dev_dbg(tplg->dev, "ASoC: adding %d DAPM routes for index %d\n", count,
1212 hdr->index);
Liam Girdwood8a978232015-05-29 19:06:14 +01001213
Ranjani Sridharan7df04ea2019-01-25 14:06:47 -06001214 /* allocate memory for pointer to array of dapm routes */
1215 routes = kcalloc(count, sizeof(struct snd_soc_dapm_route *),
1216 GFP_KERNEL);
1217 if (!routes)
1218 return -ENOMEM;
1219
1220 /*
1221 * allocate memory for each dapm route in the array.
1222 * This needs to be done individually so that
1223 * each route can be freed when it is removed in remove_route().
1224 */
1225 for (i = 0; i < count; i++) {
1226 routes[i] = kzalloc(sizeof(*routes[i]), GFP_KERNEL);
1227 if (!routes[i]) {
1228 /* free previously allocated memory */
1229 for (j = 0; j < i; j++)
1230 kfree(routes[j]);
1231
1232 kfree(routes);
1233 return -ENOMEM;
1234 }
1235 }
1236
Liam Girdwood8a978232015-05-29 19:06:14 +01001237 for (i = 0; i < count; i++) {
1238 elem = (struct snd_soc_tplg_dapm_graph_elem *)tplg->pos;
1239 tplg->pos += sizeof(struct snd_soc_tplg_dapm_graph_elem);
1240
1241 /* validate routes */
1242 if (strnlen(elem->source, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
Ranjani Sridharan7df04ea2019-01-25 14:06:47 -06001243 SNDRV_CTL_ELEM_ID_NAME_MAXLEN) {
1244 ret = -EINVAL;
1245 break;
1246 }
Liam Girdwood8a978232015-05-29 19:06:14 +01001247 if (strnlen(elem->sink, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
Ranjani Sridharan7df04ea2019-01-25 14:06:47 -06001248 SNDRV_CTL_ELEM_ID_NAME_MAXLEN) {
1249 ret = -EINVAL;
1250 break;
1251 }
Liam Girdwood8a978232015-05-29 19:06:14 +01001252 if (strnlen(elem->control, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
Ranjani Sridharan7df04ea2019-01-25 14:06:47 -06001253 SNDRV_CTL_ELEM_ID_NAME_MAXLEN) {
1254 ret = -EINVAL;
1255 break;
1256 }
Liam Girdwood8a978232015-05-29 19:06:14 +01001257
Ranjani Sridharan7df04ea2019-01-25 14:06:47 -06001258 routes[i]->source = elem->source;
1259 routes[i]->sink = elem->sink;
1260
1261 /* set to NULL atm for tplg users */
1262 routes[i]->connected = NULL;
Liam Girdwood8a978232015-05-29 19:06:14 +01001263 if (strnlen(elem->control, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) == 0)
Ranjani Sridharan7df04ea2019-01-25 14:06:47 -06001264 routes[i]->control = NULL;
Liam Girdwood8a978232015-05-29 19:06:14 +01001265 else
Ranjani Sridharan7df04ea2019-01-25 14:06:47 -06001266 routes[i]->control = elem->control;
Liam Girdwood8a978232015-05-29 19:06:14 +01001267
Ranjani Sridharan7df04ea2019-01-25 14:06:47 -06001268 /* add route dobj to dobj_list */
1269 routes[i]->dobj.type = SND_SOC_DOBJ_GRAPH;
1270 routes[i]->dobj.ops = tplg->ops;
1271 routes[i]->dobj.index = tplg->index;
1272 list_add(&routes[i]->dobj.list, &tplg->comp->dobj_list);
1273
1274 soc_tplg_add_route(tplg, routes[i]);
Liam Girdwood503e79b2018-06-14 20:53:59 +01001275
Liam Girdwood8a978232015-05-29 19:06:14 +01001276 /* add route, but keep going if some fail */
Ranjani Sridharan7df04ea2019-01-25 14:06:47 -06001277 snd_soc_dapm_add_routes(dapm, routes[i], 1);
Liam Girdwood8a978232015-05-29 19:06:14 +01001278 }
1279
Ranjani Sridharan7df04ea2019-01-25 14:06:47 -06001280 /* free memory allocated for all dapm routes in case of error */
1281 if (ret < 0)
1282 for (i = 0; i < count ; i++)
1283 kfree(routes[i]);
1284
1285 /*
1286 * free pointer to array of dapm routes as this is no longer needed.
1287 * The memory allocated for each dapm route will be freed
1288 * when it is removed in remove_route().
1289 */
1290 kfree(routes);
1291
1292 return ret;
Liam Girdwood8a978232015-05-29 19:06:14 +01001293}
1294
1295static struct snd_kcontrol_new *soc_tplg_dapm_widget_dmixer_create(
1296 struct soc_tplg *tplg, int num_kcontrols)
1297{
1298 struct snd_kcontrol_new *kc;
1299 struct soc_mixer_control *sm;
1300 struct snd_soc_tplg_mixer_control *mc;
1301 int i, err;
1302
Axel Lin4ca7deb2015-08-05 22:34:22 +08001303 kc = kcalloc(num_kcontrols, sizeof(*kc), GFP_KERNEL);
Liam Girdwood8a978232015-05-29 19:06:14 +01001304 if (kc == NULL)
1305 return NULL;
1306
1307 for (i = 0; i < num_kcontrols; i++) {
1308 mc = (struct snd_soc_tplg_mixer_control *)tplg->pos;
Liam Girdwood8a978232015-05-29 19:06:14 +01001309
Liam Girdwood8a978232015-05-29 19:06:14 +01001310 /* validate kcontrol */
1311 if (strnlen(mc->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1312 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
Amadeusz Sławiński9f90af32019-06-17 13:36:44 +02001313 goto err_sm;
1314
1315 sm = kzalloc(sizeof(*sm), GFP_KERNEL);
1316 if (sm == NULL)
1317 goto err_sm;
Liam Girdwood8a978232015-05-29 19:06:14 +01001318
Liam Girdwood02b64242019-03-01 19:08:52 -06001319 tplg->pos += (sizeof(struct snd_soc_tplg_mixer_control) +
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001320 le32_to_cpu(mc->priv.size));
Liam Girdwood02b64242019-03-01 19:08:52 -06001321
Liam Girdwood8a978232015-05-29 19:06:14 +01001322 dev_dbg(tplg->dev, " adding DAPM widget mixer control %s at %d\n",
1323 mc->hdr.name, i);
1324
Colin Ian King1ad741d2019-06-27 14:32:08 +01001325 kc[i].private_value = (long)sm;
Liam Girdwood267e2c62018-03-27 12:04:04 +01001326 kc[i].name = kstrdup(mc->hdr.name, GFP_KERNEL);
1327 if (kc[i].name == NULL)
Amadeusz Sławiński9f90af32019-06-17 13:36:44 +02001328 goto err_sm;
Liam Girdwood8a978232015-05-29 19:06:14 +01001329 kc[i].iface = SNDRV_CTL_ELEM_IFACE_MIXER;
1330 kc[i].access = mc->hdr.access;
1331
1332 /* we only support FL/FR channel mapping atm */
1333 sm->reg = tplc_chan_get_reg(tplg, mc->channel,
1334 SNDRV_CHMAP_FL);
1335 sm->rreg = tplc_chan_get_reg(tplg, mc->channel,
1336 SNDRV_CHMAP_FR);
1337 sm->shift = tplc_chan_get_shift(tplg, mc->channel,
1338 SNDRV_CHMAP_FL);
1339 sm->rshift = tplc_chan_get_shift(tplg, mc->channel,
1340 SNDRV_CHMAP_FR);
1341
1342 sm->max = mc->max;
1343 sm->min = mc->min;
1344 sm->invert = mc->invert;
1345 sm->platform_max = mc->platform_max;
1346 sm->dobj.index = tplg->index;
1347 INIT_LIST_HEAD(&sm->dobj.list);
1348
1349 /* map io handlers */
Mengdong Lin2b5cdb92015-08-18 18:12:01 +08001350 err = soc_tplg_kcontrol_bind_io(&mc->hdr, &kc[i], tplg);
Liam Girdwood8a978232015-05-29 19:06:14 +01001351 if (err) {
1352 soc_control_err(tplg, &mc->hdr, mc->hdr.name);
Amadeusz Sławiński9f90af32019-06-17 13:36:44 +02001353 goto err_sm;
Liam Girdwood8a978232015-05-29 19:06:14 +01001354 }
1355
Bard liao3789deb2019-03-13 21:49:43 +08001356 /* create any TLV data */
1357 soc_tplg_create_tlv(tplg, &kc[i], &mc->hdr);
1358
Liam Girdwood8a978232015-05-29 19:06:14 +01001359 /* pass control to driver for optional further init */
1360 err = soc_tplg_init_kcontrol(tplg, &kc[i],
1361 (struct snd_soc_tplg_ctl_hdr *)mc);
1362 if (err < 0) {
1363 dev_err(tplg->dev, "ASoC: failed to init %s\n",
1364 mc->hdr.name);
Bard liao3789deb2019-03-13 21:49:43 +08001365 soc_tplg_free_tlv(tplg, &kc[i]);
Amadeusz Sławiński9f90af32019-06-17 13:36:44 +02001366 goto err_sm;
Liam Girdwood8a978232015-05-29 19:06:14 +01001367 }
1368 }
1369 return kc;
1370
Amadeusz Sławiński9f90af32019-06-17 13:36:44 +02001371err_sm:
1372 for (; i >= 0; i--) {
1373 sm = (struct soc_mixer_control *)kc[i].private_value;
1374 kfree(sm);
Liam Girdwood267e2c62018-03-27 12:04:04 +01001375 kfree(kc[i].name);
1376 }
Liam Girdwood8a978232015-05-29 19:06:14 +01001377 kfree(kc);
Amadeusz Sławiński9f90af32019-06-17 13:36:44 +02001378
Liam Girdwood8a978232015-05-29 19:06:14 +01001379 return NULL;
1380}
1381
1382static struct snd_kcontrol_new *soc_tplg_dapm_widget_denum_create(
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001383 struct soc_tplg *tplg, int num_kcontrols)
Liam Girdwood8a978232015-05-29 19:06:14 +01001384{
1385 struct snd_kcontrol_new *kc;
1386 struct snd_soc_tplg_enum_control *ec;
1387 struct soc_enum *se;
Amadeusz Sławiński3cde8182019-06-17 13:36:43 +02001388 int i, err;
Liam Girdwood8a978232015-05-29 19:06:14 +01001389
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001390 kc = kcalloc(num_kcontrols, sizeof(*kc), GFP_KERNEL);
Liam Girdwood8a978232015-05-29 19:06:14 +01001391 if (kc == NULL)
1392 return NULL;
1393
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001394 for (i = 0; i < num_kcontrols; i++) {
1395 ec = (struct snd_soc_tplg_enum_control *)tplg->pos;
1396 /* validate kcontrol */
1397 if (strnlen(ec->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1398 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
Amadeusz Sławiński9f90af32019-06-17 13:36:44 +02001399 goto err_se;
Liam Girdwood8a978232015-05-29 19:06:14 +01001400
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001401 se = kzalloc(sizeof(*se), GFP_KERNEL);
1402 if (se == NULL)
Amadeusz Sławiński9f90af32019-06-17 13:36:44 +02001403 goto err_se;
Liam Girdwood8a978232015-05-29 19:06:14 +01001404
Liam Girdwood02b64242019-03-01 19:08:52 -06001405 tplg->pos += (sizeof(struct snd_soc_tplg_enum_control) +
1406 ec->priv.size);
1407
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001408 dev_dbg(tplg->dev, " adding DAPM widget enum control %s\n",
Liam Girdwood8a978232015-05-29 19:06:14 +01001409 ec->hdr.name);
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001410
Colin Ian King1ad741d2019-06-27 14:32:08 +01001411 kc[i].private_value = (long)se;
Liam Girdwood267e2c62018-03-27 12:04:04 +01001412 kc[i].name = kstrdup(ec->hdr.name, GFP_KERNEL);
Amadeusz Sławiński9f90af32019-06-17 13:36:44 +02001413 if (kc[i].name == NULL)
Liam Girdwood267e2c62018-03-27 12:04:04 +01001414 goto err_se;
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001415 kc[i].iface = SNDRV_CTL_ELEM_IFACE_MIXER;
1416 kc[i].access = ec->hdr.access;
1417
1418 /* we only support FL/FR channel mapping atm */
1419 se->reg = tplc_chan_get_reg(tplg, ec->channel, SNDRV_CHMAP_FL);
1420 se->shift_l = tplc_chan_get_shift(tplg, ec->channel,
1421 SNDRV_CHMAP_FL);
1422 se->shift_r = tplc_chan_get_shift(tplg, ec->channel,
1423 SNDRV_CHMAP_FR);
1424
1425 se->items = ec->items;
1426 se->mask = ec->mask;
1427 se->dobj.index = tplg->index;
1428
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001429 switch (le32_to_cpu(ec->hdr.ops.info)) {
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001430 case SND_SOC_TPLG_CTL_ENUM_VALUE:
1431 case SND_SOC_TPLG_DAPM_CTL_ENUM_VALUE:
1432 err = soc_tplg_denum_create_values(se, ec);
1433 if (err < 0) {
1434 dev_err(tplg->dev, "ASoC: could not create values for %s\n",
1435 ec->hdr.name);
1436 goto err_se;
1437 }
Takashi Iwai9c6c4d92018-10-04 20:30:06 +02001438 /* fall through */
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001439 case SND_SOC_TPLG_CTL_ENUM:
1440 case SND_SOC_TPLG_DAPM_CTL_ENUM_DOUBLE:
1441 case SND_SOC_TPLG_DAPM_CTL_ENUM_VIRT:
1442 err = soc_tplg_denum_create_texts(se, ec);
1443 if (err < 0) {
1444 dev_err(tplg->dev, "ASoC: could not create texts for %s\n",
1445 ec->hdr.name);
1446 goto err_se;
1447 }
1448 break;
1449 default:
1450 dev_err(tplg->dev, "ASoC: invalid enum control type %d for %s\n",
1451 ec->hdr.ops.info, ec->hdr.name);
1452 goto err_se;
1453 }
1454
1455 /* map io handlers */
1456 err = soc_tplg_kcontrol_bind_io(&ec->hdr, &kc[i], tplg);
1457 if (err) {
1458 soc_control_err(tplg, &ec->hdr, ec->hdr.name);
1459 goto err_se;
1460 }
1461
1462 /* pass control to driver for optional further init */
1463 err = soc_tplg_init_kcontrol(tplg, &kc[i],
1464 (struct snd_soc_tplg_ctl_hdr *)ec);
1465 if (err < 0) {
1466 dev_err(tplg->dev, "ASoC: failed to init %s\n",
1467 ec->hdr.name);
1468 goto err_se;
1469 }
Liam Girdwood8a978232015-05-29 19:06:14 +01001470 }
1471
1472 return kc;
1473
1474err_se:
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001475 for (; i >= 0; i--) {
1476 /* free values and texts */
1477 se = (struct soc_enum *)kc[i].private_value;
Christophe JAILLET6d5574e2017-09-14 22:44:12 +02001478
Amadeusz Sławiński9f90af32019-06-17 13:36:44 +02001479 if (se) {
1480 soc_tplg_denum_remove_values(se);
1481 soc_tplg_denum_remove_texts(se);
1482 }
Liam Girdwood8a978232015-05-29 19:06:14 +01001483
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001484 kfree(se);
Liam Girdwood267e2c62018-03-27 12:04:04 +01001485 kfree(kc[i].name);
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001486 }
Liam Girdwood8a978232015-05-29 19:06:14 +01001487 kfree(kc);
1488
1489 return NULL;
1490}
1491
1492static struct snd_kcontrol_new *soc_tplg_dapm_widget_dbytes_create(
Amadeusz Sławiński9f90af32019-06-17 13:36:44 +02001493 struct soc_tplg *tplg, int num_kcontrols)
Liam Girdwood8a978232015-05-29 19:06:14 +01001494{
1495 struct snd_soc_tplg_bytes_control *be;
Amadeusz Sławiński9f90af32019-06-17 13:36:44 +02001496 struct soc_bytes_ext *sbe;
Liam Girdwood8a978232015-05-29 19:06:14 +01001497 struct snd_kcontrol_new *kc;
1498 int i, err;
1499
Amadeusz Sławiński9f90af32019-06-17 13:36:44 +02001500 kc = kcalloc(num_kcontrols, sizeof(*kc), GFP_KERNEL);
Liam Girdwood8a978232015-05-29 19:06:14 +01001501 if (!kc)
1502 return NULL;
1503
Amadeusz Sławiński9f90af32019-06-17 13:36:44 +02001504 for (i = 0; i < num_kcontrols; i++) {
Liam Girdwood8a978232015-05-29 19:06:14 +01001505 be = (struct snd_soc_tplg_bytes_control *)tplg->pos;
1506
1507 /* validate kcontrol */
1508 if (strnlen(be->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1509 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
Amadeusz Sławiński9f90af32019-06-17 13:36:44 +02001510 goto err_sbe;
Liam Girdwood8a978232015-05-29 19:06:14 +01001511
1512 sbe = kzalloc(sizeof(*sbe), GFP_KERNEL);
1513 if (sbe == NULL)
Amadeusz Sławiński9f90af32019-06-17 13:36:44 +02001514 goto err_sbe;
Liam Girdwood8a978232015-05-29 19:06:14 +01001515
1516 tplg->pos += (sizeof(struct snd_soc_tplg_bytes_control) +
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001517 le32_to_cpu(be->priv.size));
Liam Girdwood8a978232015-05-29 19:06:14 +01001518
1519 dev_dbg(tplg->dev,
1520 "ASoC: adding bytes kcontrol %s with access 0x%x\n",
1521 be->hdr.name, be->hdr.access);
1522
Colin Ian King1ad741d2019-06-27 14:32:08 +01001523 kc[i].private_value = (long)sbe;
Liam Girdwood267e2c62018-03-27 12:04:04 +01001524 kc[i].name = kstrdup(be->hdr.name, GFP_KERNEL);
Amadeusz Sławiński9f90af32019-06-17 13:36:44 +02001525 if (kc[i].name == NULL)
1526 goto err_sbe;
Liam Girdwood8a978232015-05-29 19:06:14 +01001527 kc[i].iface = SNDRV_CTL_ELEM_IFACE_MIXER;
1528 kc[i].access = be->hdr.access;
1529
1530 sbe->max = be->max;
1531 INIT_LIST_HEAD(&sbe->dobj.list);
1532
1533 /* map standard io handlers and check for external handlers */
Mengdong Lin2b5cdb92015-08-18 18:12:01 +08001534 err = soc_tplg_kcontrol_bind_io(&be->hdr, &kc[i], tplg);
Liam Girdwood8a978232015-05-29 19:06:14 +01001535 if (err) {
1536 soc_control_err(tplg, &be->hdr, be->hdr.name);
Amadeusz Sławiński9f90af32019-06-17 13:36:44 +02001537 goto err_sbe;
Liam Girdwood8a978232015-05-29 19:06:14 +01001538 }
1539
1540 /* pass control to driver for optional further init */
1541 err = soc_tplg_init_kcontrol(tplg, &kc[i],
1542 (struct snd_soc_tplg_ctl_hdr *)be);
1543 if (err < 0) {
1544 dev_err(tplg->dev, "ASoC: failed to init %s\n",
1545 be->hdr.name);
Amadeusz Sławiński9f90af32019-06-17 13:36:44 +02001546 goto err_sbe;
Liam Girdwood8a978232015-05-29 19:06:14 +01001547 }
1548 }
1549
1550 return kc;
1551
Amadeusz Sławiński9f90af32019-06-17 13:36:44 +02001552err_sbe:
1553 for (; i >= 0; i--) {
1554 sbe = (struct soc_bytes_ext *)kc[i].private_value;
1555 kfree(sbe);
Liam Girdwood267e2c62018-03-27 12:04:04 +01001556 kfree(kc[i].name);
1557 }
Liam Girdwood8a978232015-05-29 19:06:14 +01001558 kfree(kc);
Amadeusz Sławiński9f90af32019-06-17 13:36:44 +02001559
Liam Girdwood8a978232015-05-29 19:06:14 +01001560 return NULL;
1561}
1562
1563static int soc_tplg_dapm_widget_create(struct soc_tplg *tplg,
1564 struct snd_soc_tplg_dapm_widget *w)
1565{
1566 struct snd_soc_dapm_context *dapm = &tplg->comp->dapm;
1567 struct snd_soc_dapm_widget template, *widget;
1568 struct snd_soc_tplg_ctl_hdr *control_hdr;
1569 struct snd_soc_card *card = tplg->comp->card;
Mengdong Lineea3dd42016-11-25 16:09:17 +08001570 unsigned int kcontrol_type;
Liam Girdwood8a978232015-05-29 19:06:14 +01001571 int ret = 0;
1572
1573 if (strnlen(w->name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1574 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
1575 return -EINVAL;
1576 if (strnlen(w->sname, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
1577 SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
1578 return -EINVAL;
1579
1580 dev_dbg(tplg->dev, "ASoC: creating DAPM widget %s id %d\n",
1581 w->name, w->id);
1582
1583 memset(&template, 0, sizeof(template));
1584
1585 /* map user to kernel widget ID */
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001586 template.id = get_widget_id(le32_to_cpu(w->id));
Dan Carpenter752c9382019-09-25 14:06:24 +03001587 if ((int)template.id < 0)
Liam Girdwood8a978232015-05-29 19:06:14 +01001588 return template.id;
1589
Liam Girdwoodc3421a62017-06-06 15:45:09 +01001590 /* strings are allocated here, but used and freed by the widget */
Liam Girdwood8a978232015-05-29 19:06:14 +01001591 template.name = kstrdup(w->name, GFP_KERNEL);
1592 if (!template.name)
1593 return -ENOMEM;
1594 template.sname = kstrdup(w->sname, GFP_KERNEL);
1595 if (!template.sname) {
1596 ret = -ENOMEM;
1597 goto err;
1598 }
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001599 template.reg = le32_to_cpu(w->reg);
1600 template.shift = le32_to_cpu(w->shift);
1601 template.mask = le32_to_cpu(w->mask);
1602 template.subseq = le32_to_cpu(w->subseq);
Liam Girdwood8a978232015-05-29 19:06:14 +01001603 template.on_val = w->invert ? 0 : 1;
1604 template.off_val = w->invert ? 1 : 0;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001605 template.ignore_suspend = le32_to_cpu(w->ignore_suspend);
1606 template.event_flags = le16_to_cpu(w->event_flags);
Liam Girdwood8a978232015-05-29 19:06:14 +01001607 template.dobj.index = tplg->index;
1608
1609 tplg->pos +=
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001610 (sizeof(struct snd_soc_tplg_dapm_widget) +
1611 le32_to_cpu(w->priv.size));
1612
Liam Girdwood8a978232015-05-29 19:06:14 +01001613 if (w->num_kcontrols == 0) {
Arnd Bergmanndd5abb72016-12-09 12:51:46 +01001614 kcontrol_type = 0;
Liam Girdwood8a978232015-05-29 19:06:14 +01001615 template.num_kcontrols = 0;
1616 goto widget;
1617 }
1618
1619 control_hdr = (struct snd_soc_tplg_ctl_hdr *)tplg->pos;
1620 dev_dbg(tplg->dev, "ASoC: template %s has %d controls of type %x\n",
1621 w->name, w->num_kcontrols, control_hdr->type);
1622
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001623 switch (le32_to_cpu(control_hdr->ops.info)) {
Liam Girdwood8a978232015-05-29 19:06:14 +01001624 case SND_SOC_TPLG_CTL_VOLSW:
1625 case SND_SOC_TPLG_CTL_STROBE:
1626 case SND_SOC_TPLG_CTL_VOLSW_SX:
1627 case SND_SOC_TPLG_CTL_VOLSW_XR_SX:
1628 case SND_SOC_TPLG_CTL_RANGE:
1629 case SND_SOC_TPLG_DAPM_CTL_VOLSW:
Mengdong Lineea3dd42016-11-25 16:09:17 +08001630 kcontrol_type = SND_SOC_TPLG_TYPE_MIXER; /* volume mixer */
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001631 template.num_kcontrols = le32_to_cpu(w->num_kcontrols);
Liam Girdwood8a978232015-05-29 19:06:14 +01001632 template.kcontrol_news =
1633 soc_tplg_dapm_widget_dmixer_create(tplg,
1634 template.num_kcontrols);
1635 if (!template.kcontrol_news) {
1636 ret = -ENOMEM;
1637 goto hdr_err;
1638 }
1639 break;
1640 case SND_SOC_TPLG_CTL_ENUM:
1641 case SND_SOC_TPLG_CTL_ENUM_VALUE:
1642 case SND_SOC_TPLG_DAPM_CTL_ENUM_DOUBLE:
1643 case SND_SOC_TPLG_DAPM_CTL_ENUM_VIRT:
1644 case SND_SOC_TPLG_DAPM_CTL_ENUM_VALUE:
Mengdong Lineea3dd42016-11-25 16:09:17 +08001645 kcontrol_type = SND_SOC_TPLG_TYPE_ENUM; /* enumerated mixer */
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001646 template.num_kcontrols = le32_to_cpu(w->num_kcontrols);
Liam Girdwood8a978232015-05-29 19:06:14 +01001647 template.kcontrol_news =
Mengdong Lin1a7dd6e2016-11-25 16:09:10 +08001648 soc_tplg_dapm_widget_denum_create(tplg,
1649 template.num_kcontrols);
Liam Girdwood8a978232015-05-29 19:06:14 +01001650 if (!template.kcontrol_news) {
1651 ret = -ENOMEM;
1652 goto hdr_err;
1653 }
1654 break;
1655 case SND_SOC_TPLG_CTL_BYTES:
Mengdong Lineea3dd42016-11-25 16:09:17 +08001656 kcontrol_type = SND_SOC_TPLG_TYPE_BYTES; /* bytes control */
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001657 template.num_kcontrols = le32_to_cpu(w->num_kcontrols);
Liam Girdwood8a978232015-05-29 19:06:14 +01001658 template.kcontrol_news =
1659 soc_tplg_dapm_widget_dbytes_create(tplg,
1660 template.num_kcontrols);
1661 if (!template.kcontrol_news) {
1662 ret = -ENOMEM;
1663 goto hdr_err;
1664 }
1665 break;
1666 default:
1667 dev_err(tplg->dev, "ASoC: invalid widget control type %d:%d:%d\n",
1668 control_hdr->ops.get, control_hdr->ops.put,
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001669 le32_to_cpu(control_hdr->ops.info));
Liam Girdwood8a978232015-05-29 19:06:14 +01001670 ret = -EINVAL;
1671 goto hdr_err;
1672 }
1673
1674widget:
1675 ret = soc_tplg_widget_load(tplg, &template, w);
1676 if (ret < 0)
1677 goto hdr_err;
1678
1679 /* card dapm mutex is held by the core if we are loading topology
1680 * data during sound card init. */
1681 if (card->instantiated)
1682 widget = snd_soc_dapm_new_control(dapm, &template);
1683 else
1684 widget = snd_soc_dapm_new_control_unlocked(dapm, &template);
Linus Walleij37e1df82017-01-13 10:23:52 +01001685 if (IS_ERR(widget)) {
1686 ret = PTR_ERR(widget);
Liam Girdwood8a978232015-05-29 19:06:14 +01001687 goto hdr_err;
1688 }
1689
1690 widget->dobj.type = SND_SOC_DOBJ_WIDGET;
Mengdong Lineea3dd42016-11-25 16:09:17 +08001691 widget->dobj.widget.kcontrol_type = kcontrol_type;
Liam Girdwood8a978232015-05-29 19:06:14 +01001692 widget->dobj.ops = tplg->ops;
1693 widget->dobj.index = tplg->index;
1694 list_add(&widget->dobj.list, &tplg->comp->dobj_list);
Liam Girdwoodebd259d2017-06-09 15:43:23 +01001695
1696 ret = soc_tplg_widget_ready(tplg, widget, w);
1697 if (ret < 0)
1698 goto ready_err;
1699
Bard liao7620fe92019-01-25 14:06:45 -06001700 kfree(template.sname);
1701 kfree(template.name);
1702
Liam Girdwood8a978232015-05-29 19:06:14 +01001703 return 0;
1704
Liam Girdwoodebd259d2017-06-09 15:43:23 +01001705ready_err:
1706 snd_soc_tplg_widget_remove(widget);
1707 snd_soc_dapm_free_widget(widget);
Liam Girdwood8a978232015-05-29 19:06:14 +01001708hdr_err:
1709 kfree(template.sname);
1710err:
1711 kfree(template.name);
1712 return ret;
1713}
1714
1715static int soc_tplg_dapm_widget_elems_load(struct soc_tplg *tplg,
1716 struct snd_soc_tplg_hdr *hdr)
1717{
1718 struct snd_soc_tplg_dapm_widget *widget;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001719 int ret, count, i;
1720
1721 count = le32_to_cpu(hdr->count);
Liam Girdwood8a978232015-05-29 19:06:14 +01001722
1723 if (tplg->pass != SOC_TPLG_PASS_WIDGET)
1724 return 0;
1725
1726 dev_dbg(tplg->dev, "ASoC: adding %d DAPM widgets\n", count);
1727
1728 for (i = 0; i < count; i++) {
1729 widget = (struct snd_soc_tplg_dapm_widget *) tplg->pos;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001730 if (le32_to_cpu(widget->size) != sizeof(*widget)) {
Mengdong Lin06eb49f2016-04-27 14:52:56 +08001731 dev_err(tplg->dev, "ASoC: invalid widget size\n");
1732 return -EINVAL;
1733 }
1734
Liam Girdwood8a978232015-05-29 19:06:14 +01001735 ret = soc_tplg_dapm_widget_create(tplg, widget);
Mengdong Lin7de76b62016-04-27 14:52:38 +08001736 if (ret < 0) {
Liam Girdwood8a978232015-05-29 19:06:14 +01001737 dev_err(tplg->dev, "ASoC: failed to load widget %s\n",
1738 widget->name);
Mengdong Lin7de76b62016-04-27 14:52:38 +08001739 return ret;
1740 }
Liam Girdwood8a978232015-05-29 19:06:14 +01001741 }
1742
1743 return 0;
1744}
1745
1746static int soc_tplg_dapm_complete(struct soc_tplg *tplg)
1747{
1748 struct snd_soc_card *card = tplg->comp->card;
1749 int ret;
1750
1751 /* Card might not have been registered at this point.
1752 * If so, just return success.
1753 */
1754 if (!card || !card->instantiated) {
1755 dev_warn(tplg->dev, "ASoC: Parent card not yet available,"
Liam Girdwoodcc9d4712017-06-06 15:45:08 +01001756 " widget card binding deferred\n");
Liam Girdwood8a978232015-05-29 19:06:14 +01001757 return 0;
1758 }
1759
1760 ret = snd_soc_dapm_new_widgets(card);
1761 if (ret < 0)
1762 dev_err(tplg->dev, "ASoC: failed to create new widgets %d\n",
1763 ret);
1764
1765 return 0;
1766}
1767
Mengdong Linb6b6e4d2016-02-22 16:29:19 +08001768static void set_stream_info(struct snd_soc_pcm_stream *stream,
1769 struct snd_soc_tplg_stream_caps *caps)
1770{
1771 stream->stream_name = kstrdup(caps->name, GFP_KERNEL);
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001772 stream->channels_min = le32_to_cpu(caps->channels_min);
1773 stream->channels_max = le32_to_cpu(caps->channels_max);
1774 stream->rates = le32_to_cpu(caps->rates);
1775 stream->rate_min = le32_to_cpu(caps->rate_min);
1776 stream->rate_max = le32_to_cpu(caps->rate_max);
1777 stream->formats = le64_to_cpu(caps->formats);
1778 stream->sig_bits = le32_to_cpu(caps->sig_bits);
Mengdong Linb6b6e4d2016-02-22 16:29:19 +08001779}
1780
Mengdong Lin0038be92016-07-26 14:32:37 +08001781static void set_dai_flags(struct snd_soc_dai_driver *dai_drv,
1782 unsigned int flag_mask, unsigned int flags)
1783{
1784 if (flag_mask & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_RATES)
1785 dai_drv->symmetric_rates =
1786 flags & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_RATES ? 1 : 0;
1787
1788 if (flag_mask & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_CHANNELS)
1789 dai_drv->symmetric_channels =
1790 flags & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_CHANNELS ?
1791 1 : 0;
1792
1793 if (flag_mask & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_SAMPLEBITS)
1794 dai_drv->symmetric_samplebits =
1795 flags & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_SAMPLEBITS ?
1796 1 : 0;
1797}
1798
Mengdong Lin64527e82016-01-15 16:13:28 +08001799static int soc_tplg_dai_create(struct soc_tplg *tplg,
1800 struct snd_soc_tplg_pcm *pcm)
1801{
1802 struct snd_soc_dai_driver *dai_drv;
1803 struct snd_soc_pcm_stream *stream;
1804 struct snd_soc_tplg_stream_caps *caps;
Kuninori Morimotoe443c202019-11-05 15:47:14 +09001805 struct snd_soc_dai *dai;
1806 struct snd_soc_dapm_context *dapm =
1807 snd_soc_component_get_dapm(tplg->comp);
Mengdong Lin64527e82016-01-15 16:13:28 +08001808 int ret;
1809
1810 dai_drv = kzalloc(sizeof(struct snd_soc_dai_driver), GFP_KERNEL);
1811 if (dai_drv == NULL)
1812 return -ENOMEM;
1813
Mengdong Lin8f27c4a2016-11-03 01:02:59 +08001814 if (strlen(pcm->dai_name))
1815 dai_drv->name = kstrdup(pcm->dai_name, GFP_KERNEL);
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001816 dai_drv->id = le32_to_cpu(pcm->dai_id);
Mengdong Lin64527e82016-01-15 16:13:28 +08001817
1818 if (pcm->playback) {
1819 stream = &dai_drv->playback;
1820 caps = &pcm->caps[SND_SOC_TPLG_STREAM_PLAYBACK];
Mengdong Linb6b6e4d2016-02-22 16:29:19 +08001821 set_stream_info(stream, caps);
Mengdong Lin64527e82016-01-15 16:13:28 +08001822 }
1823
1824 if (pcm->capture) {
1825 stream = &dai_drv->capture;
1826 caps = &pcm->caps[SND_SOC_TPLG_STREAM_CAPTURE];
Mengdong Linb6b6e4d2016-02-22 16:29:19 +08001827 set_stream_info(stream, caps);
Mengdong Lin64527e82016-01-15 16:13:28 +08001828 }
1829
Liam Girdwood5db6aab2018-03-27 14:30:45 +01001830 if (pcm->compress)
1831 dai_drv->compress_new = snd_soc_new_compress;
1832
Mengdong Lin64527e82016-01-15 16:13:28 +08001833 /* pass control to component driver for optional further init */
Liam Girdwoodc60b6132018-06-14 20:50:37 +01001834 ret = soc_tplg_dai_load(tplg, dai_drv, pcm, NULL);
Mengdong Lin64527e82016-01-15 16:13:28 +08001835 if (ret < 0) {
1836 dev_err(tplg->comp->dev, "ASoC: DAI loading failed\n");
Bard liao7b6f68a2019-03-05 23:57:52 +08001837 kfree(dai_drv->playback.stream_name);
1838 kfree(dai_drv->capture.stream_name);
1839 kfree(dai_drv->name);
Mengdong Lin64527e82016-01-15 16:13:28 +08001840 kfree(dai_drv);
1841 return ret;
1842 }
1843
1844 dai_drv->dobj.index = tplg->index;
1845 dai_drv->dobj.ops = tplg->ops;
1846 dai_drv->dobj.type = SND_SOC_DOBJ_PCM;
1847 list_add(&dai_drv->dobj.list, &tplg->comp->dobj_list);
1848
1849 /* register the DAI to the component */
Kuninori Morimotoe443c202019-11-05 15:47:14 +09001850 dai = snd_soc_register_dai(tplg->comp, dai_drv, false);
1851 if (!dai)
1852 return -ENOMEM;
1853
1854 /* Create the DAI widgets here */
1855 ret = snd_soc_dapm_new_dai_widgets(dapm, dai);
1856 if (ret != 0) {
1857 dev_err(dai->dev, "Failed to create DAI widgets %d\n", ret);
1858 snd_soc_unregister_dai(dai);
1859 return ret;
1860 }
1861
1862 return ret;
Mengdong Lin64527e82016-01-15 16:13:28 +08001863}
1864
Mengdong Lin717a8e72016-11-03 01:03:34 +08001865static void set_link_flags(struct snd_soc_dai_link *link,
1866 unsigned int flag_mask, unsigned int flags)
1867{
1868 if (flag_mask & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_RATES)
1869 link->symmetric_rates =
1870 flags & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_RATES ? 1 : 0;
1871
1872 if (flag_mask & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_CHANNELS)
1873 link->symmetric_channels =
1874 flags & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_CHANNELS ?
1875 1 : 0;
1876
1877 if (flag_mask & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_SAMPLEBITS)
1878 link->symmetric_samplebits =
1879 flags & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_SAMPLEBITS ?
1880 1 : 0;
Mengdong Lin6ff67cc2016-11-03 01:05:32 +08001881
1882 if (flag_mask & SND_SOC_TPLG_LNK_FLGBIT_VOICE_WAKEUP)
1883 link->ignore_suspend =
1884 flags & SND_SOC_TPLG_LNK_FLGBIT_VOICE_WAKEUP ?
1885 1 : 0;
Mengdong Lin717a8e72016-11-03 01:03:34 +08001886}
1887
Guneshwor Singh67d1c212016-04-19 13:12:50 +08001888/* create the FE DAI link */
Mengdong Linab4bc5e2016-11-03 01:04:42 +08001889static int soc_tplg_fe_link_create(struct soc_tplg *tplg,
Mengdong Linacfc7d42016-01-15 16:13:37 +08001890 struct snd_soc_tplg_pcm *pcm)
1891{
1892 struct snd_soc_dai_link *link;
Kuninori Morimoto23b946c2019-06-06 13:19:14 +09001893 struct snd_soc_dai_link_component *dlc;
Mengdong Linacfc7d42016-01-15 16:13:37 +08001894 int ret;
1895
Pierre-Louis Bossart3e6de892019-06-12 11:38:45 -05001896 /* link + cpu + codec + platform */
1897 link = kzalloc(sizeof(*link) + (3 * sizeof(*dlc)), GFP_KERNEL);
Mengdong Linacfc7d42016-01-15 16:13:37 +08001898 if (link == NULL)
1899 return -ENOMEM;
1900
Kuninori Morimoto23b946c2019-06-06 13:19:14 +09001901 dlc = (struct snd_soc_dai_link_component *)(link + 1);
1902
1903 link->cpus = &dlc[0];
1904 link->codecs = &dlc[1];
Pierre-Louis Bossart3e6de892019-06-12 11:38:45 -05001905 link->platforms = &dlc[2];
Kuninori Morimoto23b946c2019-06-06 13:19:14 +09001906
1907 link->num_cpus = 1;
1908 link->num_codecs = 1;
Pierre-Louis Bossart3e6de892019-06-12 11:38:45 -05001909 link->num_platforms = 1;
Kuninori Morimoto23b946c2019-06-06 13:19:14 +09001910
Mengdong Lin8f27c4a2016-11-03 01:02:59 +08001911 if (strlen(pcm->pcm_name)) {
1912 link->name = kstrdup(pcm->pcm_name, GFP_KERNEL);
1913 link->stream_name = kstrdup(pcm->pcm_name, GFP_KERNEL);
1914 }
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001915 link->id = le32_to_cpu(pcm->pcm_id);
Mengdong Linacfc7d42016-01-15 16:13:37 +08001916
Mengdong Lin8f27c4a2016-11-03 01:02:59 +08001917 if (strlen(pcm->dai_name))
Kuninori Morimoto23b946c2019-06-06 13:19:14 +09001918 link->cpus->dai_name = kstrdup(pcm->dai_name, GFP_KERNEL);
Mengdong Lin8f27c4a2016-11-03 01:02:59 +08001919
Kuninori Morimoto23b946c2019-06-06 13:19:14 +09001920 link->codecs->name = "snd-soc-dummy";
1921 link->codecs->dai_name = "snd-soc-dummy-dai";
Guneshwor Singh67d1c212016-04-19 13:12:50 +08001922
Pierre-Louis Bossart3e6de892019-06-12 11:38:45 -05001923 link->platforms->name = "snd-soc-dummy";
1924
Guneshwor Singh67d1c212016-04-19 13:12:50 +08001925 /* enable DPCM */
1926 link->dynamic = 1;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001927 link->dpcm_playback = le32_to_cpu(pcm->playback);
1928 link->dpcm_capture = le32_to_cpu(pcm->capture);
Mengdong Lin717a8e72016-11-03 01:03:34 +08001929 if (pcm->flag_mask)
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001930 set_link_flags(link,
1931 le32_to_cpu(pcm->flag_mask),
1932 le32_to_cpu(pcm->flags));
Guneshwor Singh67d1c212016-04-19 13:12:50 +08001933
Mengdong Linacfc7d42016-01-15 16:13:37 +08001934 /* pass control to component driver for optional further init */
Liam Girdwoodc60b6132018-06-14 20:50:37 +01001935 ret = soc_tplg_dai_link_load(tplg, link, NULL);
Mengdong Linacfc7d42016-01-15 16:13:37 +08001936 if (ret < 0) {
1937 dev_err(tplg->comp->dev, "ASoC: FE link loading failed\n");
Dragos Tarcatu76d27032019-12-09 18:39:38 -06001938 goto err;
1939 }
1940
Mark Brown2acf6ce2019-12-10 13:27:14 +00001941 ret = snd_soc_add_pcm_runtime(tplg->comp->card, link);
Dragos Tarcatu76d27032019-12-09 18:39:38 -06001942 if (ret < 0) {
1943 dev_err(tplg->comp->dev, "ASoC: adding FE link failed\n");
1944 goto err;
Mengdong Linacfc7d42016-01-15 16:13:37 +08001945 }
1946
1947 link->dobj.index = tplg->index;
1948 link->dobj.ops = tplg->ops;
1949 link->dobj.type = SND_SOC_DOBJ_DAI_LINK;
1950 list_add(&link->dobj.list, &tplg->comp->dobj_list);
1951
Mengdong Linacfc7d42016-01-15 16:13:37 +08001952 return 0;
Dragos Tarcatu76d27032019-12-09 18:39:38 -06001953err:
1954 kfree(link->name);
1955 kfree(link->stream_name);
1956 kfree(link->cpus->dai_name);
1957 kfree(link);
1958 return ret;
Mengdong Linacfc7d42016-01-15 16:13:37 +08001959}
1960
1961/* create a FE DAI and DAI link from the PCM object */
Mengdong Lin64527e82016-01-15 16:13:28 +08001962static int soc_tplg_pcm_create(struct soc_tplg *tplg,
1963 struct snd_soc_tplg_pcm *pcm)
1964{
Mengdong Linacfc7d42016-01-15 16:13:37 +08001965 int ret;
1966
1967 ret = soc_tplg_dai_create(tplg, pcm);
1968 if (ret < 0)
1969 return ret;
1970
Mengdong Linab4bc5e2016-11-03 01:04:42 +08001971 return soc_tplg_fe_link_create(tplg, pcm);
Mengdong Lin64527e82016-01-15 16:13:28 +08001972}
1973
Mengdong Lin55726dc2016-11-03 01:00:16 +08001974/* copy stream caps from the old version 4 of source */
1975static void stream_caps_new_ver(struct snd_soc_tplg_stream_caps *dest,
1976 struct snd_soc_tplg_stream_caps_v4 *src)
1977{
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05001978 dest->size = cpu_to_le32(sizeof(*dest));
Mengdong Lin55726dc2016-11-03 01:00:16 +08001979 memcpy(dest->name, src->name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN);
1980 dest->formats = src->formats;
1981 dest->rates = src->rates;
1982 dest->rate_min = src->rate_min;
1983 dest->rate_max = src->rate_max;
1984 dest->channels_min = src->channels_min;
1985 dest->channels_max = src->channels_max;
1986 dest->periods_min = src->periods_min;
1987 dest->periods_max = src->periods_max;
1988 dest->period_size_min = src->period_size_min;
1989 dest->period_size_max = src->period_size_max;
1990 dest->buffer_size_min = src->buffer_size_min;
1991 dest->buffer_size_max = src->buffer_size_max;
1992}
1993
1994/**
1995 * pcm_new_ver - Create the new version of PCM from the old version.
1996 * @tplg: topology context
1997 * @src: older version of pcm as a source
1998 * @pcm: latest version of pcm created from the source
1999 *
2000 * Support from vesion 4. User should free the returned pcm manually.
2001 */
2002static int pcm_new_ver(struct soc_tplg *tplg,
2003 struct snd_soc_tplg_pcm *src,
2004 struct snd_soc_tplg_pcm **pcm)
2005{
2006 struct snd_soc_tplg_pcm *dest;
2007 struct snd_soc_tplg_pcm_v4 *src_v4;
2008 int i;
2009
2010 *pcm = NULL;
2011
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002012 if (le32_to_cpu(src->size) != sizeof(*src_v4)) {
Mengdong Lin55726dc2016-11-03 01:00:16 +08002013 dev_err(tplg->dev, "ASoC: invalid PCM size\n");
2014 return -EINVAL;
2015 }
2016
2017 dev_warn(tplg->dev, "ASoC: old version of PCM\n");
2018 src_v4 = (struct snd_soc_tplg_pcm_v4 *)src;
2019 dest = kzalloc(sizeof(*dest), GFP_KERNEL);
2020 if (!dest)
2021 return -ENOMEM;
2022
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002023 dest->size = cpu_to_le32(sizeof(*dest)); /* size of latest abi version */
Mengdong Lin55726dc2016-11-03 01:00:16 +08002024 memcpy(dest->pcm_name, src_v4->pcm_name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN);
2025 memcpy(dest->dai_name, src_v4->dai_name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN);
2026 dest->pcm_id = src_v4->pcm_id;
2027 dest->dai_id = src_v4->dai_id;
2028 dest->playback = src_v4->playback;
2029 dest->capture = src_v4->capture;
2030 dest->compress = src_v4->compress;
2031 dest->num_streams = src_v4->num_streams;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002032 for (i = 0; i < le32_to_cpu(dest->num_streams); i++)
Mengdong Lin55726dc2016-11-03 01:00:16 +08002033 memcpy(&dest->stream[i], &src_v4->stream[i],
2034 sizeof(struct snd_soc_tplg_stream));
2035
2036 for (i = 0; i < 2; i++)
2037 stream_caps_new_ver(&dest->caps[i], &src_v4->caps[i]);
2038
2039 *pcm = dest;
2040 return 0;
2041}
2042
Mengdong Lin64527e82016-01-15 16:13:28 +08002043static int soc_tplg_pcm_elems_load(struct soc_tplg *tplg,
Liam Girdwood8a978232015-05-29 19:06:14 +01002044 struct snd_soc_tplg_hdr *hdr)
2045{
Mengdong Lin55726dc2016-11-03 01:00:16 +08002046 struct snd_soc_tplg_pcm *pcm, *_pcm;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002047 int count;
2048 int size;
Vinod Koulfd340452016-12-08 23:01:27 +05302049 int i;
Mengdong Lin55726dc2016-11-03 01:00:16 +08002050 bool abi_match;
Dragos Tarcatua3039ae2019-12-09 18:39:39 -06002051 int ret;
Liam Girdwood8a978232015-05-29 19:06:14 +01002052
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002053 count = le32_to_cpu(hdr->count);
2054
Liam Girdwood8a978232015-05-29 19:06:14 +01002055 if (tplg->pass != SOC_TPLG_PASS_PCM_DAI)
2056 return 0;
2057
Mengdong Lin55726dc2016-11-03 01:00:16 +08002058 /* check the element size and count */
2059 pcm = (struct snd_soc_tplg_pcm *)tplg->pos;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002060 size = le32_to_cpu(pcm->size);
2061 if (size > sizeof(struct snd_soc_tplg_pcm)
2062 || size < sizeof(struct snd_soc_tplg_pcm_v4)) {
Mengdong Lin55726dc2016-11-03 01:00:16 +08002063 dev_err(tplg->dev, "ASoC: invalid size %d for PCM elems\n",
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002064 size);
Mengdong Lin55726dc2016-11-03 01:00:16 +08002065 return -EINVAL;
2066 }
2067
Liam Girdwood8a978232015-05-29 19:06:14 +01002068 if (soc_tplg_check_elem_count(tplg,
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002069 size, count,
2070 le32_to_cpu(hdr->payload_size),
2071 "PCM DAI")) {
Liam Girdwood8a978232015-05-29 19:06:14 +01002072 dev_err(tplg->dev, "ASoC: invalid count %d for PCM DAI elems\n",
2073 count);
2074 return -EINVAL;
2075 }
2076
Mengdong Lin64527e82016-01-15 16:13:28 +08002077 for (i = 0; i < count; i++) {
Mengdong Lin55726dc2016-11-03 01:00:16 +08002078 pcm = (struct snd_soc_tplg_pcm *)tplg->pos;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002079 size = le32_to_cpu(pcm->size);
Mengdong Lin55726dc2016-11-03 01:00:16 +08002080
2081 /* check ABI version by size, create a new version of pcm
2082 * if abi not match.
2083 */
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002084 if (size == sizeof(*pcm)) {
Mengdong Lin55726dc2016-11-03 01:00:16 +08002085 abi_match = true;
2086 _pcm = pcm;
2087 } else {
2088 abi_match = false;
Vinod Koulfd340452016-12-08 23:01:27 +05302089 pcm_new_ver(tplg, pcm, &_pcm);
Mengdong Lin06eb49f2016-04-27 14:52:56 +08002090 }
2091
Mengdong Lin55726dc2016-11-03 01:00:16 +08002092 /* create the FE DAIs and DAI links */
Dragos Tarcatua3039ae2019-12-09 18:39:39 -06002093 ret = soc_tplg_pcm_create(tplg, _pcm);
2094 if (ret < 0) {
2095 if (!abi_match)
2096 kfree(_pcm);
2097 return ret;
2098 }
Mengdong Lin55726dc2016-11-03 01:00:16 +08002099
Mengdong Lin717a8e72016-11-03 01:03:34 +08002100 /* offset by version-specific struct size and
2101 * real priv data size
2102 */
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002103 tplg->pos += size + le32_to_cpu(_pcm->priv.size);
Mengdong Lin717a8e72016-11-03 01:03:34 +08002104
Mengdong Lin55726dc2016-11-03 01:00:16 +08002105 if (!abi_match)
2106 kfree(_pcm); /* free the duplicated one */
Mengdong Lin64527e82016-01-15 16:13:28 +08002107 }
2108
Liam Girdwood8a978232015-05-29 19:06:14 +01002109 dev_dbg(tplg->dev, "ASoC: adding %d PCM DAIs\n", count);
Liam Girdwood8a978232015-05-29 19:06:14 +01002110
Liam Girdwood8a978232015-05-29 19:06:14 +01002111 return 0;
Liam Girdwood8a978232015-05-29 19:06:14 +01002112}
2113
Mengdong Lin593d9e52016-11-03 01:04:27 +08002114/**
2115 * set_link_hw_format - Set the HW audio format of the physical DAI link.
Charles Keepax8abab352017-01-12 11:38:15 +00002116 * @link: &snd_soc_dai_link which should be updated
Mengdong Lin593d9e52016-11-03 01:04:27 +08002117 * @cfg: physical link configs.
2118 *
2119 * Topology context contains a list of supported HW formats (configs) and
2120 * a default format ID for the physical link. This function will use this
2121 * default ID to choose the HW format to set the link's DAI format for init.
2122 */
2123static void set_link_hw_format(struct snd_soc_dai_link *link,
2124 struct snd_soc_tplg_link_config *cfg)
2125{
2126 struct snd_soc_tplg_hw_config *hw_config;
2127 unsigned char bclk_master, fsync_master;
2128 unsigned char invert_bclk, invert_fsync;
2129 int i;
2130
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002131 for (i = 0; i < le32_to_cpu(cfg->num_hw_configs); i++) {
Mengdong Lin593d9e52016-11-03 01:04:27 +08002132 hw_config = &cfg->hw_config[i];
2133 if (hw_config->id != cfg->default_hw_config_id)
2134 continue;
2135
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002136 link->dai_fmt = le32_to_cpu(hw_config->fmt) &
2137 SND_SOC_DAIFMT_FORMAT_MASK;
Mengdong Lin593d9e52016-11-03 01:04:27 +08002138
Kirill Marinushkin933e1c42018-04-04 06:19:38 +02002139 /* clock gating */
Kirill Marinushkinfbeabd02018-04-16 19:56:44 +02002140 switch (hw_config->clock_gated) {
2141 case SND_SOC_TPLG_DAI_CLK_GATE_GATED:
Kirill Marinushkin933e1c42018-04-04 06:19:38 +02002142 link->dai_fmt |= SND_SOC_DAIFMT_GATED;
Kirill Marinushkinfbeabd02018-04-16 19:56:44 +02002143 break;
2144
2145 case SND_SOC_TPLG_DAI_CLK_GATE_CONT:
Kirill Marinushkin933e1c42018-04-04 06:19:38 +02002146 link->dai_fmt |= SND_SOC_DAIFMT_CONT;
Kirill Marinushkinfbeabd02018-04-16 19:56:44 +02002147 break;
2148
2149 default:
2150 /* ignore the value */
2151 break;
2152 }
Kirill Marinushkin933e1c42018-04-04 06:19:38 +02002153
Mengdong Lin593d9e52016-11-03 01:04:27 +08002154 /* clock signal polarity */
2155 invert_bclk = hw_config->invert_bclk;
2156 invert_fsync = hw_config->invert_fsync;
2157 if (!invert_bclk && !invert_fsync)
2158 link->dai_fmt |= SND_SOC_DAIFMT_NB_NF;
2159 else if (!invert_bclk && invert_fsync)
2160 link->dai_fmt |= SND_SOC_DAIFMT_NB_IF;
2161 else if (invert_bclk && !invert_fsync)
2162 link->dai_fmt |= SND_SOC_DAIFMT_IB_NF;
2163 else
2164 link->dai_fmt |= SND_SOC_DAIFMT_IB_IF;
2165
2166 /* clock masters */
Kirill Marinushkina941e2f2018-04-04 06:19:37 +02002167 bclk_master = (hw_config->bclk_master ==
2168 SND_SOC_TPLG_BCLK_CM);
2169 fsync_master = (hw_config->fsync_master ==
2170 SND_SOC_TPLG_FSYNC_CM);
2171 if (bclk_master && fsync_master)
Mengdong Lin593d9e52016-11-03 01:04:27 +08002172 link->dai_fmt |= SND_SOC_DAIFMT_CBM_CFM;
Mengdong Lin593d9e52016-11-03 01:04:27 +08002173 else if (!bclk_master && fsync_master)
Kirill Marinushkina941e2f2018-04-04 06:19:37 +02002174 link->dai_fmt |= SND_SOC_DAIFMT_CBS_CFM;
2175 else if (bclk_master && !fsync_master)
Mengdong Lin593d9e52016-11-03 01:04:27 +08002176 link->dai_fmt |= SND_SOC_DAIFMT_CBM_CFS;
2177 else
2178 link->dai_fmt |= SND_SOC_DAIFMT_CBS_CFS;
2179 }
2180}
2181
2182/**
2183 * link_new_ver - Create a new physical link config from the old
2184 * version of source.
Charles Keepax8abab352017-01-12 11:38:15 +00002185 * @tplg: topology context
Mengdong Lin593d9e52016-11-03 01:04:27 +08002186 * @src: old version of phyical link config as a source
2187 * @link: latest version of physical link config created from the source
2188 *
2189 * Support from vesion 4. User need free the returned link config manually.
2190 */
2191static int link_new_ver(struct soc_tplg *tplg,
2192 struct snd_soc_tplg_link_config *src,
2193 struct snd_soc_tplg_link_config **link)
2194{
2195 struct snd_soc_tplg_link_config *dest;
2196 struct snd_soc_tplg_link_config_v4 *src_v4;
2197 int i;
2198
2199 *link = NULL;
2200
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002201 if (le32_to_cpu(src->size) !=
2202 sizeof(struct snd_soc_tplg_link_config_v4)) {
Mengdong Lin593d9e52016-11-03 01:04:27 +08002203 dev_err(tplg->dev, "ASoC: invalid physical link config size\n");
2204 return -EINVAL;
2205 }
2206
2207 dev_warn(tplg->dev, "ASoC: old version of physical link config\n");
2208
2209 src_v4 = (struct snd_soc_tplg_link_config_v4 *)src;
2210 dest = kzalloc(sizeof(*dest), GFP_KERNEL);
2211 if (!dest)
2212 return -ENOMEM;
2213
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002214 dest->size = cpu_to_le32(sizeof(*dest));
Mengdong Lin593d9e52016-11-03 01:04:27 +08002215 dest->id = src_v4->id;
2216 dest->num_streams = src_v4->num_streams;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002217 for (i = 0; i < le32_to_cpu(dest->num_streams); i++)
Mengdong Lin593d9e52016-11-03 01:04:27 +08002218 memcpy(&dest->stream[i], &src_v4->stream[i],
2219 sizeof(struct snd_soc_tplg_stream));
2220
2221 *link = dest;
2222 return 0;
2223}
2224
Kuninori Morimotod6f31e02019-12-10 09:34:14 +09002225/**
2226 * snd_soc_find_dai_link - Find a DAI link
2227 *
2228 * @card: soc card
2229 * @id: DAI link ID to match
2230 * @name: DAI link name to match, optional
2231 * @stream_name: DAI link stream name to match, optional
2232 *
2233 * This function will search all existing DAI links of the soc card to
2234 * find the link of the same ID. Since DAI links may not have their
2235 * unique ID, so name and stream name should also match if being
2236 * specified.
2237 *
2238 * Return: pointer of DAI link, or NULL if not found.
2239 */
2240static struct snd_soc_dai_link *snd_soc_find_dai_link(struct snd_soc_card *card,
2241 int id, const char *name,
2242 const char *stream_name)
2243{
2244 struct snd_soc_pcm_runtime *rtd;
2245 struct snd_soc_dai_link *link;
2246
2247 for_each_card_rtds(card, rtd) {
2248 link = rtd->dai_link;
2249
2250 if (link->id != id)
2251 continue;
2252
2253 if (name && (!link->name || strcmp(name, link->name)))
2254 continue;
2255
2256 if (stream_name && (!link->stream_name
2257 || strcmp(stream_name, link->stream_name)))
2258 continue;
2259
2260 return link;
2261 }
2262
2263 return NULL;
2264}
2265
Mengdong Lin593d9e52016-11-03 01:04:27 +08002266/* Find and configure an existing physical DAI link */
2267static int soc_tplg_link_config(struct soc_tplg *tplg,
2268 struct snd_soc_tplg_link_config *cfg)
2269{
2270 struct snd_soc_dai_link *link;
2271 const char *name, *stream_name;
Mengdong Lindbab1cb2016-11-05 08:42:14 +08002272 size_t len;
Mengdong Lin593d9e52016-11-03 01:04:27 +08002273 int ret;
2274
Mengdong Lindbab1cb2016-11-05 08:42:14 +08002275 len = strnlen(cfg->name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN);
2276 if (len == SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
2277 return -EINVAL;
2278 else if (len)
2279 name = cfg->name;
2280 else
2281 name = NULL;
2282
2283 len = strnlen(cfg->stream_name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN);
2284 if (len == SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
2285 return -EINVAL;
2286 else if (len)
2287 stream_name = cfg->stream_name;
2288 else
2289 stream_name = NULL;
Mengdong Lin593d9e52016-11-03 01:04:27 +08002290
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002291 link = snd_soc_find_dai_link(tplg->comp->card, le32_to_cpu(cfg->id),
Mengdong Lin593d9e52016-11-03 01:04:27 +08002292 name, stream_name);
2293 if (!link) {
2294 dev_err(tplg->dev, "ASoC: physical link %s (id %d) not exist\n",
2295 name, cfg->id);
2296 return -EINVAL;
2297 }
2298
2299 /* hw format */
2300 if (cfg->num_hw_configs)
2301 set_link_hw_format(link, cfg);
2302
2303 /* flags */
2304 if (cfg->flag_mask)
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002305 set_link_flags(link,
2306 le32_to_cpu(cfg->flag_mask),
2307 le32_to_cpu(cfg->flags));
Mengdong Lin593d9e52016-11-03 01:04:27 +08002308
2309 /* pass control to component driver for optional further init */
Liam Girdwoodc60b6132018-06-14 20:50:37 +01002310 ret = soc_tplg_dai_link_load(tplg, link, cfg);
Mengdong Lin593d9e52016-11-03 01:04:27 +08002311 if (ret < 0) {
2312 dev_err(tplg->dev, "ASoC: physical link loading failed\n");
2313 return ret;
2314 }
2315
Bard liaoadfebb52019-02-01 11:07:40 -06002316 /* for unloading it in snd_soc_tplg_component_remove */
2317 link->dobj.index = tplg->index;
2318 link->dobj.ops = tplg->ops;
2319 link->dobj.type = SND_SOC_DOBJ_BACKEND_LINK;
2320 list_add(&link->dobj.list, &tplg->comp->dobj_list);
2321
Mengdong Lin593d9e52016-11-03 01:04:27 +08002322 return 0;
2323}
2324
2325
2326/* Load physical link config elements from the topology context */
2327static int soc_tplg_link_elems_load(struct soc_tplg *tplg,
2328 struct snd_soc_tplg_hdr *hdr)
2329{
2330 struct snd_soc_tplg_link_config *link, *_link;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002331 int count;
2332 int size;
Mengdong Lin593d9e52016-11-03 01:04:27 +08002333 int i, ret;
2334 bool abi_match;
2335
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002336 count = le32_to_cpu(hdr->count);
2337
Mengdong Lin593d9e52016-11-03 01:04:27 +08002338 if (tplg->pass != SOC_TPLG_PASS_LINK) {
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002339 tplg->pos += le32_to_cpu(hdr->size) +
2340 le32_to_cpu(hdr->payload_size);
Mengdong Lin593d9e52016-11-03 01:04:27 +08002341 return 0;
2342 };
2343
2344 /* check the element size and count */
2345 link = (struct snd_soc_tplg_link_config *)tplg->pos;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002346 size = le32_to_cpu(link->size);
2347 if (size > sizeof(struct snd_soc_tplg_link_config)
2348 || size < sizeof(struct snd_soc_tplg_link_config_v4)) {
Mengdong Lin593d9e52016-11-03 01:04:27 +08002349 dev_err(tplg->dev, "ASoC: invalid size %d for physical link elems\n",
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002350 size);
Mengdong Lin593d9e52016-11-03 01:04:27 +08002351 return -EINVAL;
2352 }
2353
2354 if (soc_tplg_check_elem_count(tplg,
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002355 size, count,
2356 le32_to_cpu(hdr->payload_size),
2357 "physical link config")) {
Mengdong Lin593d9e52016-11-03 01:04:27 +08002358 dev_err(tplg->dev, "ASoC: invalid count %d for physical link elems\n",
2359 count);
2360 return -EINVAL;
2361 }
2362
2363 /* config physical DAI links */
2364 for (i = 0; i < count; i++) {
2365 link = (struct snd_soc_tplg_link_config *)tplg->pos;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002366 size = le32_to_cpu(link->size);
2367 if (size == sizeof(*link)) {
Mengdong Lin593d9e52016-11-03 01:04:27 +08002368 abi_match = true;
2369 _link = link;
2370 } else {
2371 abi_match = false;
2372 ret = link_new_ver(tplg, link, &_link);
2373 if (ret < 0)
2374 return ret;
2375 }
2376
2377 ret = soc_tplg_link_config(tplg, _link);
2378 if (ret < 0)
2379 return ret;
2380
2381 /* offset by version-specific struct size and
2382 * real priv data size
2383 */
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002384 tplg->pos += size + le32_to_cpu(_link->priv.size);
Mengdong Lin593d9e52016-11-03 01:04:27 +08002385
2386 if (!abi_match)
2387 kfree(_link); /* free the duplicated one */
2388 }
2389
2390 return 0;
2391}
2392
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002393/**
2394 * soc_tplg_dai_config - Find and configure an existing physical DAI.
Mengdong Lin0038be92016-07-26 14:32:37 +08002395 * @tplg: topology context
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002396 * @d: physical DAI configs.
Mengdong Lin0038be92016-07-26 14:32:37 +08002397 *
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002398 * The physical dai should already be registered by the platform driver.
2399 * The platform driver should specify the DAI name and ID for matching.
Mengdong Lin0038be92016-07-26 14:32:37 +08002400 */
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002401static int soc_tplg_dai_config(struct soc_tplg *tplg,
2402 struct snd_soc_tplg_dai *d)
Mengdong Lin0038be92016-07-26 14:32:37 +08002403{
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002404 struct snd_soc_dai_link_component dai_component;
Mengdong Lin0038be92016-07-26 14:32:37 +08002405 struct snd_soc_dai *dai;
2406 struct snd_soc_dai_driver *dai_drv;
2407 struct snd_soc_pcm_stream *stream;
2408 struct snd_soc_tplg_stream_caps *caps;
2409 int ret;
2410
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002411 memset(&dai_component, 0, sizeof(dai_component));
2412
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002413 dai_component.dai_name = d->dai_name;
Mengdong Lin0038be92016-07-26 14:32:37 +08002414 dai = snd_soc_find_dai(&dai_component);
2415 if (!dai) {
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002416 dev_err(tplg->dev, "ASoC: physical DAI %s not registered\n",
2417 d->dai_name);
Mengdong Lin0038be92016-07-26 14:32:37 +08002418 return -EINVAL;
2419 }
2420
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002421 if (le32_to_cpu(d->dai_id) != dai->id) {
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002422 dev_err(tplg->dev, "ASoC: physical DAI %s id mismatch\n",
2423 d->dai_name);
Mengdong Lin0038be92016-07-26 14:32:37 +08002424 return -EINVAL;
2425 }
2426
2427 dai_drv = dai->driver;
2428 if (!dai_drv)
2429 return -EINVAL;
2430
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002431 if (d->playback) {
Mengdong Lin0038be92016-07-26 14:32:37 +08002432 stream = &dai_drv->playback;
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002433 caps = &d->caps[SND_SOC_TPLG_STREAM_PLAYBACK];
Mengdong Lin0038be92016-07-26 14:32:37 +08002434 set_stream_info(stream, caps);
2435 }
2436
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002437 if (d->capture) {
Mengdong Lin0038be92016-07-26 14:32:37 +08002438 stream = &dai_drv->capture;
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002439 caps = &d->caps[SND_SOC_TPLG_STREAM_CAPTURE];
Mengdong Lin0038be92016-07-26 14:32:37 +08002440 set_stream_info(stream, caps);
2441 }
2442
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002443 if (d->flag_mask)
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002444 set_dai_flags(dai_drv,
2445 le32_to_cpu(d->flag_mask),
2446 le32_to_cpu(d->flags));
Mengdong Lin0038be92016-07-26 14:32:37 +08002447
2448 /* pass control to component driver for optional further init */
Liam Girdwoodc60b6132018-06-14 20:50:37 +01002449 ret = soc_tplg_dai_load(tplg, dai_drv, NULL, dai);
Mengdong Lin0038be92016-07-26 14:32:37 +08002450 if (ret < 0) {
2451 dev_err(tplg->comp->dev, "ASoC: DAI loading failed\n");
2452 return ret;
2453 }
2454
2455 return 0;
2456}
2457
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002458/* load physical DAI elements */
2459static int soc_tplg_dai_elems_load(struct soc_tplg *tplg,
2460 struct snd_soc_tplg_hdr *hdr)
Mengdong Lin0038be92016-07-26 14:32:37 +08002461{
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002462 struct snd_soc_tplg_dai *dai;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002463 int count;
Mengdong Lin0038be92016-07-26 14:32:37 +08002464 int i;
2465
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002466 count = le32_to_cpu(hdr->count);
2467
Mengdong Lin0038be92016-07-26 14:32:37 +08002468 if (tplg->pass != SOC_TPLG_PASS_BE_DAI)
2469 return 0;
2470
2471 /* config the existing BE DAIs */
2472 for (i = 0; i < count; i++) {
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002473 dai = (struct snd_soc_tplg_dai *)tplg->pos;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002474 if (le32_to_cpu(dai->size) != sizeof(*dai)) {
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002475 dev_err(tplg->dev, "ASoC: invalid physical DAI size\n");
Mengdong Lin0038be92016-07-26 14:32:37 +08002476 return -EINVAL;
2477 }
2478
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002479 soc_tplg_dai_config(tplg, dai);
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002480 tplg->pos += (sizeof(*dai) + le32_to_cpu(dai->priv.size));
Mengdong Lin0038be92016-07-26 14:32:37 +08002481 }
2482
2483 dev_dbg(tplg->dev, "ASoC: Configure %d BE DAIs\n", count);
2484 return 0;
2485}
2486
Mengdong Lin583958f2016-10-11 14:36:42 +08002487/**
2488 * manifest_new_ver - Create a new version of manifest from the old version
2489 * of source.
Charles Keepax8abab352017-01-12 11:38:15 +00002490 * @tplg: topology context
Mengdong Lin583958f2016-10-11 14:36:42 +08002491 * @src: old version of manifest as a source
2492 * @manifest: latest version of manifest created from the source
2493 *
2494 * Support from vesion 4. Users need free the returned manifest manually.
2495 */
2496static int manifest_new_ver(struct soc_tplg *tplg,
2497 struct snd_soc_tplg_manifest *src,
2498 struct snd_soc_tplg_manifest **manifest)
2499{
2500 struct snd_soc_tplg_manifest *dest;
2501 struct snd_soc_tplg_manifest_v4 *src_v4;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002502 int size;
Mengdong Lin583958f2016-10-11 14:36:42 +08002503
2504 *manifest = NULL;
2505
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002506 size = le32_to_cpu(src->size);
2507 if (size != sizeof(*src_v4)) {
Guenter Roeckac9391d2018-05-24 12:49:21 -07002508 dev_warn(tplg->dev, "ASoC: invalid manifest size %d\n",
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002509 size);
2510 if (size)
Guenter Roeckac9391d2018-05-24 12:49:21 -07002511 return -EINVAL;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002512 src->size = cpu_to_le32(sizeof(*src_v4));
Mengdong Lin583958f2016-10-11 14:36:42 +08002513 }
2514
2515 dev_warn(tplg->dev, "ASoC: old version of manifest\n");
2516
2517 src_v4 = (struct snd_soc_tplg_manifest_v4 *)src;
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002518 dest = kzalloc(sizeof(*dest) + le32_to_cpu(src_v4->priv.size),
2519 GFP_KERNEL);
Mengdong Lin583958f2016-10-11 14:36:42 +08002520 if (!dest)
2521 return -ENOMEM;
2522
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002523 dest->size = cpu_to_le32(sizeof(*dest)); /* size of latest abi version */
Mengdong Lin583958f2016-10-11 14:36:42 +08002524 dest->control_elems = src_v4->control_elems;
2525 dest->widget_elems = src_v4->widget_elems;
2526 dest->graph_elems = src_v4->graph_elems;
2527 dest->pcm_elems = src_v4->pcm_elems;
2528 dest->dai_link_elems = src_v4->dai_link_elems;
2529 dest->priv.size = src_v4->priv.size;
2530 if (dest->priv.size)
2531 memcpy(dest->priv.data, src_v4->priv.data,
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002532 le32_to_cpu(src_v4->priv.size));
Mengdong Lin583958f2016-10-11 14:36:42 +08002533
2534 *manifest = dest;
2535 return 0;
2536}
Mengdong Lin0038be92016-07-26 14:32:37 +08002537
Liam Girdwood8a978232015-05-29 19:06:14 +01002538static int soc_tplg_manifest_load(struct soc_tplg *tplg,
Mengdong Lin0038be92016-07-26 14:32:37 +08002539 struct snd_soc_tplg_hdr *hdr)
Liam Girdwood8a978232015-05-29 19:06:14 +01002540{
Mengdong Lin583958f2016-10-11 14:36:42 +08002541 struct snd_soc_tplg_manifest *manifest, *_manifest;
2542 bool abi_match;
2543 int err;
Liam Girdwood8a978232015-05-29 19:06:14 +01002544
2545 if (tplg->pass != SOC_TPLG_PASS_MANIFEST)
2546 return 0;
2547
2548 manifest = (struct snd_soc_tplg_manifest *)tplg->pos;
Mengdong Lin583958f2016-10-11 14:36:42 +08002549
2550 /* check ABI version by size, create a new manifest if abi not match */
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002551 if (le32_to_cpu(manifest->size) == sizeof(*manifest)) {
Mengdong Lin583958f2016-10-11 14:36:42 +08002552 abi_match = true;
2553 _manifest = manifest;
2554 } else {
2555 abi_match = false;
2556 err = manifest_new_ver(tplg, manifest, &_manifest);
2557 if (err < 0)
2558 return err;
Mengdong Lin06eb49f2016-04-27 14:52:56 +08002559 }
2560
Mengdong Lin583958f2016-10-11 14:36:42 +08002561 /* pass control to component driver for optional further init */
Liam Girdwood8a978232015-05-29 19:06:14 +01002562 if (tplg->comp && tplg->ops && tplg->ops->manifest)
Liam Girdwoodc60b6132018-06-14 20:50:37 +01002563 return tplg->ops->manifest(tplg->comp, tplg->index, _manifest);
Liam Girdwood8a978232015-05-29 19:06:14 +01002564
Mengdong Lin583958f2016-10-11 14:36:42 +08002565 if (!abi_match) /* free the duplicated one */
2566 kfree(_manifest);
2567
Liam Girdwood8a978232015-05-29 19:06:14 +01002568 return 0;
2569}
2570
2571/* validate header magic, size and type */
2572static int soc_valid_header(struct soc_tplg *tplg,
2573 struct snd_soc_tplg_hdr *hdr)
2574{
2575 if (soc_tplg_get_hdr_offset(tplg) >= tplg->fw->size)
2576 return 0;
2577
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002578 if (le32_to_cpu(hdr->size) != sizeof(*hdr)) {
Mengdong Lin06eb49f2016-04-27 14:52:56 +08002579 dev_err(tplg->dev,
2580 "ASoC: invalid header size for type %d at offset 0x%lx size 0x%zx.\n",
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002581 le32_to_cpu(hdr->type), soc_tplg_get_hdr_offset(tplg),
Mengdong Lin06eb49f2016-04-27 14:52:56 +08002582 tplg->fw->size);
2583 return -EINVAL;
2584 }
2585
Liam Girdwood8a978232015-05-29 19:06:14 +01002586 /* big endian firmware objects not supported atm */
Pierre-Louis Bossart21141712019-04-04 14:13:58 -05002587 if (hdr->magic == SOC_TPLG_MAGIC_BIG_ENDIAN) {
Liam Girdwood8a978232015-05-29 19:06:14 +01002588 dev_err(tplg->dev,
2589 "ASoC: pass %d big endian not supported header got %x at offset 0x%lx size 0x%zx.\n",
2590 tplg->pass, hdr->magic,
2591 soc_tplg_get_hdr_offset(tplg), tplg->fw->size);
2592 return -EINVAL;
2593 }
2594
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002595 if (le32_to_cpu(hdr->magic) != SND_SOC_TPLG_MAGIC) {
Liam Girdwood8a978232015-05-29 19:06:14 +01002596 dev_err(tplg->dev,
2597 "ASoC: pass %d does not have a valid header got %x at offset 0x%lx size 0x%zx.\n",
2598 tplg->pass, hdr->magic,
2599 soc_tplg_get_hdr_offset(tplg), tplg->fw->size);
2600 return -EINVAL;
2601 }
2602
Mengdong Lin288b8da2016-11-03 01:03:17 +08002603 /* Support ABI from version 4 */
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002604 if (le32_to_cpu(hdr->abi) > SND_SOC_TPLG_ABI_VERSION ||
2605 le32_to_cpu(hdr->abi) < SND_SOC_TPLG_ABI_VERSION_MIN) {
Liam Girdwood8a978232015-05-29 19:06:14 +01002606 dev_err(tplg->dev,
2607 "ASoC: pass %d invalid ABI version got 0x%x need 0x%x at offset 0x%lx size 0x%zx.\n",
2608 tplg->pass, hdr->abi,
2609 SND_SOC_TPLG_ABI_VERSION, soc_tplg_get_hdr_offset(tplg),
2610 tplg->fw->size);
2611 return -EINVAL;
2612 }
2613
2614 if (hdr->payload_size == 0) {
2615 dev_err(tplg->dev, "ASoC: header has 0 size at offset 0x%lx.\n",
2616 soc_tplg_get_hdr_offset(tplg));
2617 return -EINVAL;
2618 }
2619
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002620 if (tplg->pass == le32_to_cpu(hdr->type))
Liam Girdwood8a978232015-05-29 19:06:14 +01002621 dev_dbg(tplg->dev,
2622 "ASoC: Got 0x%x bytes of type %d version %d vendor %d at pass %d\n",
2623 hdr->payload_size, hdr->type, hdr->version,
2624 hdr->vendor_type, tplg->pass);
2625
2626 return 1;
2627}
2628
2629/* check header type and call appropriate handler */
2630static int soc_tplg_load_header(struct soc_tplg *tplg,
2631 struct snd_soc_tplg_hdr *hdr)
2632{
2633 tplg->pos = tplg->hdr_pos + sizeof(struct snd_soc_tplg_hdr);
2634
2635 /* check for matching ID */
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002636 if (le32_to_cpu(hdr->index) != tplg->req_index &&
Liam Girdwoodbb971422017-06-29 14:22:25 +01002637 tplg->req_index != SND_SOC_TPLG_INDEX_ALL)
Liam Girdwood8a978232015-05-29 19:06:14 +01002638 return 0;
2639
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002640 tplg->index = le32_to_cpu(hdr->index);
Liam Girdwood8a978232015-05-29 19:06:14 +01002641
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002642 switch (le32_to_cpu(hdr->type)) {
Liam Girdwood8a978232015-05-29 19:06:14 +01002643 case SND_SOC_TPLG_TYPE_MIXER:
2644 case SND_SOC_TPLG_TYPE_ENUM:
2645 case SND_SOC_TPLG_TYPE_BYTES:
2646 return soc_tplg_kcontrol_elems_load(tplg, hdr);
2647 case SND_SOC_TPLG_TYPE_DAPM_GRAPH:
2648 return soc_tplg_dapm_graph_elems_load(tplg, hdr);
2649 case SND_SOC_TPLG_TYPE_DAPM_WIDGET:
2650 return soc_tplg_dapm_widget_elems_load(tplg, hdr);
2651 case SND_SOC_TPLG_TYPE_PCM:
Mengdong Lin64527e82016-01-15 16:13:28 +08002652 return soc_tplg_pcm_elems_load(tplg, hdr);
Mengdong Lin3fbf7932016-11-03 01:05:01 +08002653 case SND_SOC_TPLG_TYPE_DAI:
Mengdong Lin9aa3f032016-11-03 01:05:15 +08002654 return soc_tplg_dai_elems_load(tplg, hdr);
Mengdong Lin593d9e52016-11-03 01:04:27 +08002655 case SND_SOC_TPLG_TYPE_DAI_LINK:
2656 case SND_SOC_TPLG_TYPE_BACKEND_LINK:
2657 /* physical link configurations */
2658 return soc_tplg_link_elems_load(tplg, hdr);
Liam Girdwood8a978232015-05-29 19:06:14 +01002659 case SND_SOC_TPLG_TYPE_MANIFEST:
2660 return soc_tplg_manifest_load(tplg, hdr);
2661 default:
2662 /* bespoke vendor data object */
2663 return soc_tplg_vendor_load(tplg, hdr);
2664 }
2665
2666 return 0;
2667}
2668
2669/* process the topology file headers */
2670static int soc_tplg_process_headers(struct soc_tplg *tplg)
2671{
2672 struct snd_soc_tplg_hdr *hdr;
2673 int ret;
2674
2675 tplg->pass = SOC_TPLG_PASS_START;
2676
2677 /* process the header types from start to end */
2678 while (tplg->pass <= SOC_TPLG_PASS_END) {
2679
2680 tplg->hdr_pos = tplg->fw->data;
2681 hdr = (struct snd_soc_tplg_hdr *)tplg->hdr_pos;
2682
2683 while (!soc_tplg_is_eof(tplg)) {
2684
2685 /* make sure header is valid before loading */
2686 ret = soc_valid_header(tplg, hdr);
2687 if (ret < 0)
2688 return ret;
2689 else if (ret == 0)
2690 break;
2691
2692 /* load the header object */
2693 ret = soc_tplg_load_header(tplg, hdr);
2694 if (ret < 0)
2695 return ret;
2696
2697 /* goto next header */
Pierre-Louis Bossart5aebe7c2019-04-04 14:13:57 -05002698 tplg->hdr_pos += le32_to_cpu(hdr->payload_size) +
Liam Girdwood8a978232015-05-29 19:06:14 +01002699 sizeof(struct snd_soc_tplg_hdr);
2700 hdr = (struct snd_soc_tplg_hdr *)tplg->hdr_pos;
2701 }
2702
2703 /* next data type pass */
2704 tplg->pass++;
2705 }
2706
2707 /* signal DAPM we are complete */
2708 ret = soc_tplg_dapm_complete(tplg);
2709 if (ret < 0)
2710 dev_err(tplg->dev,
2711 "ASoC: failed to initialise DAPM from Firmware\n");
2712
2713 return ret;
2714}
2715
2716static int soc_tplg_load(struct soc_tplg *tplg)
2717{
2718 int ret;
2719
2720 ret = soc_tplg_process_headers(tplg);
2721 if (ret == 0)
2722 soc_tplg_complete(tplg);
2723
2724 return ret;
2725}
2726
2727/* load audio component topology from "firmware" file */
2728int snd_soc_tplg_component_load(struct snd_soc_component *comp,
2729 struct snd_soc_tplg_ops *ops, const struct firmware *fw, u32 id)
2730{
2731 struct soc_tplg tplg;
Bard liao304017d2019-02-17 21:23:47 +08002732 int ret;
Liam Girdwood8a978232015-05-29 19:06:14 +01002733
2734 /* setup parsing context */
2735 memset(&tplg, 0, sizeof(tplg));
2736 tplg.fw = fw;
2737 tplg.dev = comp->dev;
2738 tplg.comp = comp;
2739 tplg.ops = ops;
2740 tplg.req_index = id;
2741 tplg.io_ops = ops->io_ops;
2742 tplg.io_ops_count = ops->io_ops_count;
Mengdong Lin1a3232d2015-08-18 18:12:20 +08002743 tplg.bytes_ext_ops = ops->bytes_ext_ops;
2744 tplg.bytes_ext_ops_count = ops->bytes_ext_ops_count;
Liam Girdwood8a978232015-05-29 19:06:14 +01002745
Bard liao304017d2019-02-17 21:23:47 +08002746 ret = soc_tplg_load(&tplg);
2747 /* free the created components if fail to load topology */
2748 if (ret)
2749 snd_soc_tplg_component_remove(comp, SND_SOC_TPLG_INDEX_ALL);
2750
2751 return ret;
Liam Girdwood8a978232015-05-29 19:06:14 +01002752}
2753EXPORT_SYMBOL_GPL(snd_soc_tplg_component_load);
2754
2755/* remove this dynamic widget */
2756void snd_soc_tplg_widget_remove(struct snd_soc_dapm_widget *w)
2757{
2758 /* make sure we are a widget */
2759 if (w->dobj.type != SND_SOC_DOBJ_WIDGET)
2760 return;
2761
2762 remove_widget(w->dapm->component, &w->dobj, SOC_TPLG_PASS_WIDGET);
2763}
2764EXPORT_SYMBOL_GPL(snd_soc_tplg_widget_remove);
2765
2766/* remove all dynamic widgets from this DAPM context */
2767void snd_soc_tplg_widget_remove_all(struct snd_soc_dapm_context *dapm,
2768 u32 index)
2769{
2770 struct snd_soc_dapm_widget *w, *next_w;
Liam Girdwood8a978232015-05-29 19:06:14 +01002771
2772 list_for_each_entry_safe(w, next_w, &dapm->card->widgets, list) {
2773
2774 /* make sure we are a widget with correct context */
2775 if (w->dobj.type != SND_SOC_DOBJ_WIDGET || w->dapm != dapm)
2776 continue;
2777
2778 /* match ID */
2779 if (w->dobj.index != index &&
2780 w->dobj.index != SND_SOC_TPLG_INDEX_ALL)
2781 continue;
Liam Girdwood8a978232015-05-29 19:06:14 +01002782 /* check and free and dynamic widget kcontrols */
2783 snd_soc_tplg_widget_remove(w);
Lars-Peter Clausenb97e2692015-07-21 18:11:07 +02002784 snd_soc_dapm_free_widget(w);
Liam Girdwood8a978232015-05-29 19:06:14 +01002785 }
Jyri Sarhafd589a12015-11-10 18:12:42 +02002786 snd_soc_dapm_reset_cache(dapm);
Liam Girdwood8a978232015-05-29 19:06:14 +01002787}
2788EXPORT_SYMBOL_GPL(snd_soc_tplg_widget_remove_all);
2789
2790/* remove dynamic controls from the component driver */
2791int snd_soc_tplg_component_remove(struct snd_soc_component *comp, u32 index)
2792{
2793 struct snd_soc_dobj *dobj, *next_dobj;
2794 int pass = SOC_TPLG_PASS_END;
2795
2796 /* process the header types from end to start */
2797 while (pass >= SOC_TPLG_PASS_START) {
2798
2799 /* remove mixer controls */
2800 list_for_each_entry_safe(dobj, next_dobj, &comp->dobj_list,
2801 list) {
2802
2803 /* match index */
2804 if (dobj->index != index &&
Yan Wangfeb12f02018-03-26 16:48:00 +01002805 index != SND_SOC_TPLG_INDEX_ALL)
Liam Girdwood8a978232015-05-29 19:06:14 +01002806 continue;
2807
2808 switch (dobj->type) {
2809 case SND_SOC_DOBJ_MIXER:
2810 remove_mixer(comp, dobj, pass);
2811 break;
2812 case SND_SOC_DOBJ_ENUM:
2813 remove_enum(comp, dobj, pass);
2814 break;
2815 case SND_SOC_DOBJ_BYTES:
2816 remove_bytes(comp, dobj, pass);
2817 break;
Ranjani Sridharan7df04ea2019-01-25 14:06:47 -06002818 case SND_SOC_DOBJ_GRAPH:
2819 remove_route(comp, dobj, pass);
2820 break;
Liam Girdwood8a978232015-05-29 19:06:14 +01002821 case SND_SOC_DOBJ_WIDGET:
2822 remove_widget(comp, dobj, pass);
2823 break;
2824 case SND_SOC_DOBJ_PCM:
Mengdong Lin64527e82016-01-15 16:13:28 +08002825 remove_dai(comp, dobj, pass);
Liam Girdwood8a978232015-05-29 19:06:14 +01002826 break;
Mengdong Linacfc7d42016-01-15 16:13:37 +08002827 case SND_SOC_DOBJ_DAI_LINK:
2828 remove_link(comp, dobj, pass);
2829 break;
Bard liaoadfebb52019-02-01 11:07:40 -06002830 case SND_SOC_DOBJ_BACKEND_LINK:
2831 /*
2832 * call link_unload ops if extra
2833 * deinitialization is needed.
2834 */
2835 remove_backend_link(comp, dobj, pass);
2836 break;
Liam Girdwood8a978232015-05-29 19:06:14 +01002837 default:
2838 dev_err(comp->dev, "ASoC: invalid component type %d for removal\n",
2839 dobj->type);
2840 break;
2841 }
2842 }
2843 pass--;
2844 }
2845
2846 /* let caller know if FW can be freed when no objects are left */
2847 return !list_empty(&comp->dobj_list);
2848}
2849EXPORT_SYMBOL_GPL(snd_soc_tplg_component_remove);