xref: /linux/sound/soc/sof/topology.c (revision 99a15348d5842b3c1f95220dc9b119ee0fe0d81b)
1 // SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause)
2 //
3 // This file is provided under a dual BSD/GPLv2 license.  When using or
4 // redistributing this file, you may do so under either license.
5 //
6 // Copyright(c) 2018 Intel Corporation. All rights reserved.
7 //
8 // Author: Liam Girdwood <liam.r.girdwood@linux.intel.com>
9 //
10 
11 #include <linux/bits.h>
12 #include <linux/device.h>
13 #include <linux/errno.h>
14 #include <linux/firmware.h>
15 #include <linux/workqueue.h>
16 #include <sound/tlv.h>
17 #include <uapi/sound/sof/tokens.h>
18 #include "sof-priv.h"
19 #include "sof-audio.h"
20 #include "ops.h"
21 
22 #define COMP_ID_UNASSIGNED		0xffffffff
23 /*
24  * Constants used in the computation of linear volume gain
25  * from dB gain 20th root of 10 in Q1.16 fixed-point notation
26  */
27 #define VOL_TWENTIETH_ROOT_OF_TEN	73533
28 /* 40th root of 10 in Q1.16 fixed-point notation*/
29 #define VOL_FORTIETH_ROOT_OF_TEN	69419
30 
31 /* 0.5 dB step value in topology TLV */
32 #define VOL_HALF_DB_STEP	50
33 
34 /* TLV data items */
35 #define TLV_ITEMS	3
36 #define TLV_MIN		0
37 #define TLV_STEP	1
38 #define TLV_MUTE	2
39 
40 /* size of tplg abi in byte */
41 #define SOF_TPLG_ABI_SIZE 3
42 
43 /**
44  * sof_update_ipc_object - Parse multiple sets of tokens within the token array associated with the
45  *			    token ID.
46  * @scomp: pointer to SOC component
47  * @object: target IPC struct to save the parsed values
48  * @token_id: token ID for the token array to be searched
49  * @tuples: pointer to the tuples array
50  * @num_tuples: number of tuples in the tuples array
51  * @object_size: size of the object
52  * @token_instance_num: number of times the same @token_id needs to be parsed i.e. the function
53  *			looks for @token_instance_num of each token in the token array associated
54  *			with the @token_id
55  */
56 int sof_update_ipc_object(struct snd_soc_component *scomp, void *object, enum sof_tokens token_id,
57 			  struct snd_sof_tuple *tuples, int num_tuples,
58 			  size_t object_size, int token_instance_num)
59 {
60 	struct snd_sof_dev *sdev = snd_soc_component_get_drvdata(scomp);
61 	const struct sof_ipc_tplg_ops *ipc_tplg_ops = sdev->ipc->ops->tplg;
62 	const struct sof_token_info *token_list = ipc_tplg_ops->token_list;
63 	const struct sof_topology_token *tokens;
64 	int i, j;
65 
66 	if (token_list[token_id].count < 0) {
67 		dev_err(scomp->dev, "Invalid token count for token ID: %d\n", token_id);
68 		return -EINVAL;
69 	}
70 
71 	/* No tokens to match */
72 	if (!token_list[token_id].count)
73 		return 0;
74 
75 	tokens = token_list[token_id].tokens;
76 	if (!tokens) {
77 		dev_err(scomp->dev, "Invalid tokens for token id: %d\n", token_id);
78 		return -EINVAL;
79 	}
80 
81 	for (i = 0; i < token_list[token_id].count; i++) {
82 		int offset = 0;
83 		int num_tokens_matched = 0;
84 
85 		for (j = 0; j < num_tuples; j++) {
86 			if (tokens[i].token == tuples[j].token) {
87 				switch (tokens[i].type) {
88 				case SND_SOC_TPLG_TUPLE_TYPE_WORD:
89 				{
90 					u32 *val = (u32 *)((u8 *)object + tokens[i].offset +
91 							   offset);
92 
93 					*val = tuples[j].value.v;
94 					break;
95 				}
96 				case SND_SOC_TPLG_TUPLE_TYPE_SHORT:
97 				case SND_SOC_TPLG_TUPLE_TYPE_BOOL:
98 				{
99 					u16 *val = (u16 *)((u8 *)object + tokens[i].offset +
100 							    offset);
101 
102 					*val = (u16)tuples[j].value.v;
103 					break;
104 				}
105 				case SND_SOC_TPLG_TUPLE_TYPE_STRING:
106 				{
107 					if (!tokens[i].get_token) {
108 						dev_err(scomp->dev,
109 							"get_token not defined for token %d in %s\n",
110 							tokens[i].token, token_list[token_id].name);
111 						return -EINVAL;
112 					}
113 
114 					tokens[i].get_token((void *)tuples[j].value.s, object,
115 							    tokens[i].offset + offset);
116 					break;
117 				}
118 				default:
119 					break;
120 				}
121 
122 				num_tokens_matched++;
123 
124 				/* found all required sets of current token. Move to the next one */
125 				if (!(num_tokens_matched % token_instance_num))
126 					break;
127 
128 				/* move to the next object */
129 				offset += object_size;
130 			}
131 		}
132 	}
133 
134 	return 0;
135 }
136 
137 static inline int get_tlv_data(const int *p, int tlv[TLV_ITEMS])
138 {
139 	/* we only support dB scale TLV type at the moment */
140 	if ((int)p[SNDRV_CTL_TLVO_TYPE] != SNDRV_CTL_TLVT_DB_SCALE)
141 		return -EINVAL;
142 
143 	/* min value in topology tlv data is multiplied by 100 */
144 	tlv[TLV_MIN] = (int)p[SNDRV_CTL_TLVO_DB_SCALE_MIN] / 100;
145 
146 	/* volume steps */
147 	tlv[TLV_STEP] = (int)(p[SNDRV_CTL_TLVO_DB_SCALE_MUTE_AND_STEP] &
148 				TLV_DB_SCALE_MASK);
149 
150 	/* mute ON/OFF */
151 	if ((p[SNDRV_CTL_TLVO_DB_SCALE_MUTE_AND_STEP] &
152 		TLV_DB_SCALE_MUTE) == 0)
153 		tlv[TLV_MUTE] = 0;
154 	else
155 		tlv[TLV_MUTE] = 1;
156 
157 	return 0;
158 }
159 
160 /*
161  * Function to truncate an unsigned 64-bit number
162  * by x bits and return 32-bit unsigned number. This
163  * function also takes care of rounding while truncating
164  */
165 static inline u32 vol_shift_64(u64 i, u32 x)
166 {
167 	/* do not truncate more than 32 bits */
168 	if (x > 32)
169 		x = 32;
170 
171 	if (x == 0)
172 		return (u32)i;
173 
174 	return (u32)(((i >> (x - 1)) + 1) >> 1);
175 }
176 
177 /*
178  * Function to compute a ^ exp where,
179  * a is a fractional number represented by a fixed-point
180  * integer with a fractional world length of "fwl"
181  * exp is an integer
182  * fwl is the fractional word length
183  * Return value is a fractional number represented by a
184  * fixed-point integer with a fractional word length of "fwl"
185  */
186 static u32 vol_pow32(u32 a, int exp, u32 fwl)
187 {
188 	int i, iter;
189 	u32 power = 1 << fwl;
190 	u64 numerator;
191 
192 	/* if exponent is 0, return 1 */
193 	if (exp == 0)
194 		return power;
195 
196 	/* determine the number of iterations based on the exponent */
197 	if (exp < 0)
198 		iter = exp * -1;
199 	else
200 		iter = exp;
201 
202 	/* mutiply a "iter" times to compute power */
203 	for (i = 0; i < iter; i++) {
204 		/*
205 		 * Product of 2 Qx.fwl fixed-point numbers yields a Q2*x.2*fwl
206 		 * Truncate product back to fwl fractional bits with rounding
207 		 */
208 		power = vol_shift_64((u64)power * a, fwl);
209 	}
210 
211 	if (exp > 0) {
212 		/* if exp is positive, return the result */
213 		return power;
214 	}
215 
216 	/* if exp is negative, return the multiplicative inverse */
217 	numerator = (u64)1 << (fwl << 1);
218 	do_div(numerator, power);
219 
220 	return (u32)numerator;
221 }
222 
223 /*
224  * Function to calculate volume gain from TLV data.
225  * This function can only handle gain steps that are multiples of 0.5 dB
226  */
227 static u32 vol_compute_gain(u32 value, int *tlv)
228 {
229 	int dB_gain;
230 	u32 linear_gain;
231 	int f_step;
232 
233 	/* mute volume */
234 	if (value == 0 && tlv[TLV_MUTE])
235 		return 0;
236 
237 	/*
238 	 * compute dB gain from tlv. tlv_step
239 	 * in topology is multiplied by 100
240 	 */
241 	dB_gain = tlv[TLV_MIN] + (value * tlv[TLV_STEP]) / 100;
242 
243 	/*
244 	 * compute linear gain represented by fixed-point
245 	 * int with VOLUME_FWL fractional bits
246 	 */
247 	linear_gain = vol_pow32(VOL_TWENTIETH_ROOT_OF_TEN, dB_gain, VOLUME_FWL);
248 
249 	/* extract the fractional part of volume step */
250 	f_step = tlv[TLV_STEP] - (tlv[TLV_STEP] / 100);
251 
252 	/* if volume step is an odd multiple of 0.5 dB */
253 	if (f_step == VOL_HALF_DB_STEP && (value & 1))
254 		linear_gain = vol_shift_64((u64)linear_gain *
255 						  VOL_FORTIETH_ROOT_OF_TEN,
256 						  VOLUME_FWL);
257 
258 	return linear_gain;
259 }
260 
261 /*
262  * Set up volume table for kcontrols from tlv data
263  * "size" specifies the number of entries in the table
264  */
265 static int set_up_volume_table(struct snd_sof_control *scontrol,
266 			       int tlv[TLV_ITEMS], int size)
267 {
268 	int j;
269 
270 	/* init the volume table */
271 	scontrol->volume_table = kcalloc(size, sizeof(u32), GFP_KERNEL);
272 	if (!scontrol->volume_table)
273 		return -ENOMEM;
274 
275 	/* populate the volume table */
276 	for (j = 0; j < size ; j++)
277 		scontrol->volume_table[j] = vol_compute_gain(j, tlv);
278 
279 	return 0;
280 }
281 
282 struct sof_dai_types {
283 	const char *name;
284 	enum sof_ipc_dai_type type;
285 };
286 
287 static const struct sof_dai_types sof_dais[] = {
288 	{"SSP", SOF_DAI_INTEL_SSP},
289 	{"HDA", SOF_DAI_INTEL_HDA},
290 	{"DMIC", SOF_DAI_INTEL_DMIC},
291 	{"ALH", SOF_DAI_INTEL_ALH},
292 	{"SAI", SOF_DAI_IMX_SAI},
293 	{"ESAI", SOF_DAI_IMX_ESAI},
294 	{"ACP", SOF_DAI_AMD_BT},
295 	{"ACPSP", SOF_DAI_AMD_SP},
296 	{"ACPDMIC", SOF_DAI_AMD_DMIC},
297 	{"AFE", SOF_DAI_MEDIATEK_AFE},
298 };
299 
300 static enum sof_ipc_dai_type find_dai(const char *name)
301 {
302 	int i;
303 
304 	for (i = 0; i < ARRAY_SIZE(sof_dais); i++) {
305 		if (strcmp(name, sof_dais[i].name) == 0)
306 			return sof_dais[i].type;
307 	}
308 
309 	return SOF_DAI_INTEL_NONE;
310 }
311 
312 /*
313  * Supported Frame format types and lookup, add new ones to end of list.
314  */
315 
316 struct sof_frame_types {
317 	const char *name;
318 	enum sof_ipc_frame frame;
319 };
320 
321 static const struct sof_frame_types sof_frames[] = {
322 	{"s16le", SOF_IPC_FRAME_S16_LE},
323 	{"s24le", SOF_IPC_FRAME_S24_4LE},
324 	{"s32le", SOF_IPC_FRAME_S32_LE},
325 	{"float", SOF_IPC_FRAME_FLOAT},
326 };
327 
328 static enum sof_ipc_frame find_format(const char *name)
329 {
330 	int i;
331 
332 	for (i = 0; i < ARRAY_SIZE(sof_frames); i++) {
333 		if (strcmp(name, sof_frames[i].name) == 0)
334 			return sof_frames[i].frame;
335 	}
336 
337 	/* use s32le if nothing is specified */
338 	return SOF_IPC_FRAME_S32_LE;
339 }
340 
341 int get_token_u32(void *elem, void *object, u32 offset)
342 {
343 	struct snd_soc_tplg_vendor_value_elem *velem = elem;
344 	u32 *val = (u32 *)((u8 *)object + offset);
345 
346 	*val = le32_to_cpu(velem->value);
347 	return 0;
348 }
349 
350 int get_token_u16(void *elem, void *object, u32 offset)
351 {
352 	struct snd_soc_tplg_vendor_value_elem *velem = elem;
353 	u16 *val = (u16 *)((u8 *)object + offset);
354 
355 	*val = (u16)le32_to_cpu(velem->value);
356 	return 0;
357 }
358 
359 int get_token_uuid(void *elem, void *object, u32 offset)
360 {
361 	struct snd_soc_tplg_vendor_uuid_elem *velem = elem;
362 	u8 *dst = (u8 *)object + offset;
363 
364 	memcpy(dst, velem->uuid, UUID_SIZE);
365 
366 	return 0;
367 }
368 
369 int get_token_comp_format(void *elem, void *object, u32 offset)
370 {
371 	u32 *val = (u32 *)((u8 *)object + offset);
372 
373 	*val = find_format((const char *)elem);
374 	return 0;
375 }
376 
377 int get_token_dai_type(void *elem, void *object, u32 offset)
378 {
379 	u32 *val = (u32 *)((u8 *)object + offset);
380 
381 	*val = find_dai((const char *)elem);
382 	return 0;
383 }
384 
385 /* PCM */
386 static const struct sof_topology_token stream_tokens[] = {
387 	{SOF_TKN_STREAM_PLAYBACK_COMPATIBLE_D0I3, SND_SOC_TPLG_TUPLE_TYPE_BOOL, get_token_u16,
388 		offsetof(struct snd_sof_pcm, stream[0].d0i3_compatible)},
389 	{SOF_TKN_STREAM_CAPTURE_COMPATIBLE_D0I3, SND_SOC_TPLG_TUPLE_TYPE_BOOL, get_token_u16,
390 		offsetof(struct snd_sof_pcm, stream[1].d0i3_compatible)},
391 };
392 
393 /* Leds */
394 static const struct sof_topology_token led_tokens[] = {
395 	{SOF_TKN_MUTE_LED_USE, SND_SOC_TPLG_TUPLE_TYPE_WORD, get_token_u32,
396 		offsetof(struct snd_sof_led_control, use_led)},
397 	{SOF_TKN_MUTE_LED_DIRECTION, SND_SOC_TPLG_TUPLE_TYPE_WORD, get_token_u32,
398 		offsetof(struct snd_sof_led_control, direction)},
399 };
400 
401 /**
402  * sof_parse_uuid_tokens - Parse multiple sets of UUID tokens
403  * @scomp: pointer to soc component
404  * @object: target ipc struct for parsed values
405  * @offset: offset within the object pointer
406  * @tokens: array of struct sof_topology_token containing the tokens to be matched
407  * @num_tokens: number of tokens in tokens array
408  * @array: source pointer to consecutive vendor arrays in topology
409  *
410  * This function parses multiple sets of string type tokens in vendor arrays
411  */
412 static int sof_parse_uuid_tokens(struct snd_soc_component *scomp,
413 				  void *object, size_t offset,
414 				  const struct sof_topology_token *tokens, int num_tokens,
415 				  struct snd_soc_tplg_vendor_array *array)
416 {
417 	struct snd_soc_tplg_vendor_uuid_elem *elem;
418 	int found = 0;
419 	int i, j;
420 
421 	/* parse element by element */
422 	for (i = 0; i < le32_to_cpu(array->num_elems); i++) {
423 		elem = &array->uuid[i];
424 
425 		/* search for token */
426 		for (j = 0; j < num_tokens; j++) {
427 			/* match token type */
428 			if (tokens[j].type != SND_SOC_TPLG_TUPLE_TYPE_UUID)
429 				continue;
430 
431 			/* match token id */
432 			if (tokens[j].token != le32_to_cpu(elem->token))
433 				continue;
434 
435 			/* matched - now load token */
436 			tokens[j].get_token(elem, object,
437 					    offset + tokens[j].offset);
438 
439 			found++;
440 		}
441 	}
442 
443 	return found;
444 }
445 
446 /**
447  * sof_copy_tuples - Parse tokens and copy them to the @tuples array
448  * @sdev: pointer to struct snd_sof_dev
449  * @array: source pointer to consecutive vendor arrays in topology
450  * @array_size: size of @array
451  * @token_id: Token ID associated with a token array
452  * @token_instance_num: number of times the same @token_id needs to be parsed i.e. the function
453  *			looks for @token_instance_num of each token in the token array associated
454  *			with the @token_id
455  * @tuples: tuples array to copy the matched tuples to
456  * @tuples_size: size of @tuples
457  * @num_copied_tuples: pointer to the number of copied tuples in the tuples array
458  *
459  */
460 static int sof_copy_tuples(struct snd_sof_dev *sdev, struct snd_soc_tplg_vendor_array *array,
461 			   int array_size, u32 token_id, int token_instance_num,
462 			   struct snd_sof_tuple *tuples, int tuples_size, int *num_copied_tuples)
463 {
464 	const struct sof_ipc_tplg_ops *ipc_tplg_ops = sdev->ipc->ops->tplg;
465 	const struct sof_token_info *token_list = ipc_tplg_ops->token_list;
466 	const struct sof_topology_token *tokens;
467 	int found = 0;
468 	int num_tokens, asize;
469 	int i, j;
470 
471 	/* nothing to do if token_list is NULL */
472 	if (!token_list)
473 		return 0;
474 
475 	if (!tuples || !num_copied_tuples) {
476 		dev_err(sdev->dev, "Invalid tuples array\n");
477 		return -EINVAL;
478 	}
479 
480 	tokens = token_list[token_id].tokens;
481 	num_tokens = token_list[token_id].count;
482 
483 	if (!tokens) {
484 		dev_err(sdev->dev, "No token array defined for token ID: %d\n", token_id);
485 		return -EINVAL;
486 	}
487 
488 	/* check if there's space in the tuples array for new tokens */
489 	if (*num_copied_tuples >= tuples_size) {
490 		dev_err(sdev->dev, "No space in tuples array for new tokens from %s",
491 			token_list[token_id].name);
492 		return -EINVAL;
493 	}
494 
495 	while (array_size > 0 && found < num_tokens * token_instance_num) {
496 		asize = le32_to_cpu(array->size);
497 
498 		/* validate asize */
499 		if (asize < 0) {
500 			dev_err(sdev->dev, "Invalid array size 0x%x\n", asize);
501 			return -EINVAL;
502 		}
503 
504 		/* make sure there is enough data before parsing */
505 		array_size -= asize;
506 		if (array_size < 0) {
507 			dev_err(sdev->dev, "Invalid array size 0x%x\n", asize);
508 			return -EINVAL;
509 		}
510 
511 		/* parse element by element */
512 		for (i = 0; i < le32_to_cpu(array->num_elems); i++) {
513 			/* search for token */
514 			for (j = 0; j < num_tokens; j++) {
515 				/* match token type */
516 				if (!(tokens[j].type == SND_SOC_TPLG_TUPLE_TYPE_WORD ||
517 				      tokens[j].type == SND_SOC_TPLG_TUPLE_TYPE_SHORT ||
518 				      tokens[j].type == SND_SOC_TPLG_TUPLE_TYPE_BYTE ||
519 				      tokens[j].type == SND_SOC_TPLG_TUPLE_TYPE_BOOL ||
520 				      tokens[j].type == SND_SOC_TPLG_TUPLE_TYPE_STRING))
521 					continue;
522 
523 				if (tokens[j].type == SND_SOC_TPLG_TUPLE_TYPE_STRING) {
524 					struct snd_soc_tplg_vendor_string_elem *elem;
525 
526 					elem = &array->string[i];
527 
528 					/* match token id */
529 					if (tokens[j].token != le32_to_cpu(elem->token))
530 						continue;
531 
532 					tuples[*num_copied_tuples].token = tokens[j].token;
533 					tuples[*num_copied_tuples].value.s = elem->string;
534 				} else {
535 					struct snd_soc_tplg_vendor_value_elem *elem;
536 
537 					elem = &array->value[i];
538 
539 					/* match token id */
540 					if (tokens[j].token != le32_to_cpu(elem->token))
541 						continue;
542 
543 					tuples[*num_copied_tuples].token = tokens[j].token;
544 					tuples[*num_copied_tuples].value.v =
545 						le32_to_cpu(elem->value);
546 				}
547 				found++;
548 				(*num_copied_tuples)++;
549 
550 				/* stop if there's no space for any more new tuples */
551 				if (*num_copied_tuples == tuples_size)
552 					return 0;
553 			}
554 		}
555 
556 		/* next array */
557 		array = (struct snd_soc_tplg_vendor_array *)((u8 *)array + asize);
558 	}
559 
560 	return 0;
561 }
562 
563 /**
564  * sof_parse_string_tokens - Parse multiple sets of tokens
565  * @scomp: pointer to soc component
566  * @object: target ipc struct for parsed values
567  * @offset: offset within the object pointer
568  * @tokens: array of struct sof_topology_token containing the tokens to be matched
569  * @num_tokens: number of tokens in tokens array
570  * @array: source pointer to consecutive vendor arrays in topology
571  *
572  * This function parses multiple sets of string type tokens in vendor arrays
573  */
574 static int sof_parse_string_tokens(struct snd_soc_component *scomp,
575 				   void *object, int offset,
576 				   const struct sof_topology_token *tokens, int num_tokens,
577 				   struct snd_soc_tplg_vendor_array *array)
578 {
579 	struct snd_soc_tplg_vendor_string_elem *elem;
580 	int found = 0;
581 	int i, j;
582 
583 	/* parse element by element */
584 	for (i = 0; i < le32_to_cpu(array->num_elems); i++) {
585 		elem = &array->string[i];
586 
587 		/* search for token */
588 		for (j = 0; j < num_tokens; j++) {
589 			/* match token type */
590 			if (tokens[j].type != SND_SOC_TPLG_TUPLE_TYPE_STRING)
591 				continue;
592 
593 			/* match token id */
594 			if (tokens[j].token != le32_to_cpu(elem->token))
595 				continue;
596 
597 			/* matched - now load token */
598 			tokens[j].get_token(elem->string, object, offset + tokens[j].offset);
599 
600 			found++;
601 		}
602 	}
603 
604 	return found;
605 }
606 
607 /**
608  * sof_parse_word_tokens - Parse multiple sets of tokens
609  * @scomp: pointer to soc component
610  * @object: target ipc struct for parsed values
611  * @offset: offset within the object pointer
612  * @tokens: array of struct sof_topology_token containing the tokens to be matched
613  * @num_tokens: number of tokens in tokens array
614  * @array: source pointer to consecutive vendor arrays in topology
615  *
616  * This function parses multiple sets of word type tokens in vendor arrays
617  */
618 static int sof_parse_word_tokens(struct snd_soc_component *scomp,
619 				  void *object, int offset,
620 				  const struct sof_topology_token *tokens, int num_tokens,
621 				  struct snd_soc_tplg_vendor_array *array)
622 {
623 	struct snd_soc_tplg_vendor_value_elem *elem;
624 	int found = 0;
625 	int i, j;
626 
627 	/* parse element by element */
628 	for (i = 0; i < le32_to_cpu(array->num_elems); i++) {
629 		elem = &array->value[i];
630 
631 		/* search for token */
632 		for (j = 0; j < num_tokens; j++) {
633 			/* match token type */
634 			if (!(tokens[j].type == SND_SOC_TPLG_TUPLE_TYPE_WORD ||
635 			      tokens[j].type == SND_SOC_TPLG_TUPLE_TYPE_SHORT ||
636 			      tokens[j].type == SND_SOC_TPLG_TUPLE_TYPE_BYTE ||
637 			      tokens[j].type == SND_SOC_TPLG_TUPLE_TYPE_BOOL))
638 				continue;
639 
640 			/* match token id */
641 			if (tokens[j].token != le32_to_cpu(elem->token))
642 				continue;
643 
644 			/* load token */
645 			tokens[j].get_token(elem, object, offset + tokens[j].offset);
646 
647 			found++;
648 		}
649 	}
650 
651 	return found;
652 }
653 
654 /**
655  * sof_parse_token_sets - Parse multiple sets of tokens
656  * @scomp: pointer to soc component
657  * @object: target ipc struct for parsed values
658  * @tokens: token definition array describing what tokens to parse
659  * @count: number of tokens in definition array
660  * @array: source pointer to consecutive vendor arrays in topology
661  * @array_size: total size of @array
662  * @token_instance_num: number of times the same tokens needs to be parsed i.e. the function
663  *			looks for @token_instance_num of each token in the @tokens
664  * @object_size: offset to next target ipc struct with multiple sets
665  *
666  * This function parses multiple sets of tokens in vendor arrays into
667  * consecutive ipc structs.
668  */
669 static int sof_parse_token_sets(struct snd_soc_component *scomp,
670 				void *object, const struct sof_topology_token *tokens,
671 				int count, struct snd_soc_tplg_vendor_array *array,
672 				int array_size, int token_instance_num, size_t object_size)
673 {
674 	size_t offset = 0;
675 	int found = 0;
676 	int total = 0;
677 	int asize;
678 
679 	while (array_size > 0 && total < count * token_instance_num) {
680 		asize = le32_to_cpu(array->size);
681 
682 		/* validate asize */
683 		if (asize < 0) { /* FIXME: A zero-size array makes no sense */
684 			dev_err(scomp->dev, "error: invalid array size 0x%x\n",
685 				asize);
686 			return -EINVAL;
687 		}
688 
689 		/* make sure there is enough data before parsing */
690 		array_size -= asize;
691 		if (array_size < 0) {
692 			dev_err(scomp->dev, "error: invalid array size 0x%x\n",
693 				asize);
694 			return -EINVAL;
695 		}
696 
697 		/* call correct parser depending on type */
698 		switch (le32_to_cpu(array->type)) {
699 		case SND_SOC_TPLG_TUPLE_TYPE_UUID:
700 			found += sof_parse_uuid_tokens(scomp, object, offset, tokens, count,
701 						       array);
702 			break;
703 		case SND_SOC_TPLG_TUPLE_TYPE_STRING:
704 			found += sof_parse_string_tokens(scomp, object, offset, tokens, count,
705 							 array);
706 			break;
707 		case SND_SOC_TPLG_TUPLE_TYPE_BOOL:
708 		case SND_SOC_TPLG_TUPLE_TYPE_BYTE:
709 		case SND_SOC_TPLG_TUPLE_TYPE_WORD:
710 		case SND_SOC_TPLG_TUPLE_TYPE_SHORT:
711 			found += sof_parse_word_tokens(scomp, object, offset, tokens, count,
712 						       array);
713 			break;
714 		default:
715 			dev_err(scomp->dev, "error: unknown token type %d\n",
716 				array->type);
717 			return -EINVAL;
718 		}
719 
720 		/* next array */
721 		array = (struct snd_soc_tplg_vendor_array *)((u8 *)array
722 			+ asize);
723 
724 		/* move to next target struct */
725 		if (found >= count) {
726 			offset += object_size;
727 			total += found;
728 			found = 0;
729 		}
730 	}
731 
732 	return 0;
733 }
734 
735 /**
736  * sof_parse_tokens - Parse one set of tokens
737  * @scomp: pointer to soc component
738  * @object: target ipc struct for parsed values
739  * @tokens: token definition array describing what tokens to parse
740  * @num_tokens: number of tokens in definition array
741  * @array: source pointer to consecutive vendor arrays in topology
742  * @array_size: total size of @array
743  *
744  * This function parses a single set of tokens in vendor arrays into
745  * consecutive ipc structs.
746  */
747 static int sof_parse_tokens(struct snd_soc_component *scomp,  void *object,
748 			    const struct sof_topology_token *tokens, int num_tokens,
749 			    struct snd_soc_tplg_vendor_array *array,
750 			    int array_size)
751 
752 {
753 	/*
754 	 * sof_parse_tokens is used when topology contains only a single set of
755 	 * identical tuples arrays. So additional parameters to
756 	 * sof_parse_token_sets are sets = 1 (only 1 set) and
757 	 * object_size = 0 (irrelevant).
758 	 */
759 	return sof_parse_token_sets(scomp, object, tokens, num_tokens, array,
760 				    array_size, 1, 0);
761 }
762 
763 /*
764  * Standard Kcontrols.
765  */
766 
767 static int sof_control_load_volume(struct snd_soc_component *scomp,
768 				   struct snd_sof_control *scontrol,
769 				   struct snd_kcontrol_new *kc,
770 				   struct snd_soc_tplg_ctl_hdr *hdr)
771 {
772 	struct snd_sof_dev *sdev = snd_soc_component_get_drvdata(scomp);
773 	struct snd_soc_tplg_mixer_control *mc =
774 		container_of(hdr, struct snd_soc_tplg_mixer_control, hdr);
775 	int tlv[TLV_ITEMS];
776 	unsigned int mask;
777 	int ret;
778 
779 	/* validate topology data */
780 	if (le32_to_cpu(mc->num_channels) > SND_SOC_TPLG_MAX_CHAN)
781 		return -EINVAL;
782 
783 	/*
784 	 * If control has more than 2 channels we need to override the info. This is because even if
785 	 * ASoC layer has defined topology's max channel count to SND_SOC_TPLG_MAX_CHAN = 8, the
786 	 * pre-defined dapm control types (and related functions) creating the actual control
787 	 * restrict the channels only to mono or stereo.
788 	 */
789 	if (le32_to_cpu(mc->num_channels) > 2)
790 		kc->info = snd_sof_volume_info;
791 
792 	scontrol->comp_id = sdev->next_comp_id;
793 	scontrol->min_volume_step = le32_to_cpu(mc->min);
794 	scontrol->max_volume_step = le32_to_cpu(mc->max);
795 	scontrol->num_channels = le32_to_cpu(mc->num_channels);
796 
797 	scontrol->max = le32_to_cpu(mc->max);
798 	if (le32_to_cpu(mc->max) == 1)
799 		goto skip;
800 
801 	/* extract tlv data */
802 	if (!kc->tlv.p || get_tlv_data(kc->tlv.p, tlv) < 0) {
803 		dev_err(scomp->dev, "error: invalid TLV data\n");
804 		return -EINVAL;
805 	}
806 
807 	/* set up volume table */
808 	ret = set_up_volume_table(scontrol, tlv, le32_to_cpu(mc->max) + 1);
809 	if (ret < 0) {
810 		dev_err(scomp->dev, "error: setting up volume table\n");
811 		return ret;
812 	}
813 
814 skip:
815 	/* set up possible led control from mixer private data */
816 	ret = sof_parse_tokens(scomp, &scontrol->led_ctl, led_tokens,
817 			       ARRAY_SIZE(led_tokens), mc->priv.array,
818 			       le32_to_cpu(mc->priv.size));
819 	if (ret != 0) {
820 		dev_err(scomp->dev, "error: parse led tokens failed %d\n",
821 			le32_to_cpu(mc->priv.size));
822 		goto err;
823 	}
824 
825 	if (scontrol->led_ctl.use_led) {
826 		mask = scontrol->led_ctl.direction ? SNDRV_CTL_ELEM_ACCESS_MIC_LED :
827 							SNDRV_CTL_ELEM_ACCESS_SPK_LED;
828 		scontrol->access &= ~SNDRV_CTL_ELEM_ACCESS_LED_MASK;
829 		scontrol->access |= mask;
830 		kc->access &= ~SNDRV_CTL_ELEM_ACCESS_LED_MASK;
831 		kc->access |= mask;
832 		sdev->led_present = true;
833 	}
834 
835 	dev_dbg(scomp->dev, "tplg: load kcontrol index %d chans %d\n",
836 		scontrol->comp_id, scontrol->num_channels);
837 
838 	return 0;
839 
840 err:
841 	if (le32_to_cpu(mc->max) > 1)
842 		kfree(scontrol->volume_table);
843 
844 	return ret;
845 }
846 
847 static int sof_control_load_enum(struct snd_soc_component *scomp,
848 				 struct snd_sof_control *scontrol,
849 				 struct snd_kcontrol_new *kc,
850 				 struct snd_soc_tplg_ctl_hdr *hdr)
851 {
852 	struct snd_sof_dev *sdev = snd_soc_component_get_drvdata(scomp);
853 	struct snd_soc_tplg_enum_control *ec =
854 		container_of(hdr, struct snd_soc_tplg_enum_control, hdr);
855 
856 	/* validate topology data */
857 	if (le32_to_cpu(ec->num_channels) > SND_SOC_TPLG_MAX_CHAN)
858 		return -EINVAL;
859 
860 	scontrol->comp_id = sdev->next_comp_id;
861 	scontrol->num_channels = le32_to_cpu(ec->num_channels);
862 
863 	dev_dbg(scomp->dev, "tplg: load kcontrol index %d chans %d comp_id %d\n",
864 		scontrol->comp_id, scontrol->num_channels, scontrol->comp_id);
865 
866 	return 0;
867 }
868 
869 static int sof_control_load_bytes(struct snd_soc_component *scomp,
870 				  struct snd_sof_control *scontrol,
871 				  struct snd_kcontrol_new *kc,
872 				  struct snd_soc_tplg_ctl_hdr *hdr)
873 {
874 	struct snd_sof_dev *sdev = snd_soc_component_get_drvdata(scomp);
875 	struct snd_soc_tplg_bytes_control *control =
876 		container_of(hdr, struct snd_soc_tplg_bytes_control, hdr);
877 	struct soc_bytes_ext *sbe = (struct soc_bytes_ext *)kc->private_value;
878 	size_t priv_size = le32_to_cpu(control->priv.size);
879 
880 	scontrol->max_size = sbe->max;
881 	scontrol->comp_id = sdev->next_comp_id;
882 
883 	dev_dbg(scomp->dev, "tplg: load kcontrol index %d\n", scontrol->comp_id);
884 
885 	/* copy the private data */
886 	if (priv_size > 0) {
887 		scontrol->priv = kmemdup(control->priv.data, priv_size, GFP_KERNEL);
888 		if (!scontrol->priv)
889 			return -ENOMEM;
890 
891 		scontrol->priv_size = priv_size;
892 	}
893 
894 	return 0;
895 }
896 
897 /* external kcontrol init - used for any driver specific init */
898 static int sof_control_load(struct snd_soc_component *scomp, int index,
899 			    struct snd_kcontrol_new *kc,
900 			    struct snd_soc_tplg_ctl_hdr *hdr)
901 {
902 	struct soc_mixer_control *sm;
903 	struct soc_bytes_ext *sbe;
904 	struct soc_enum *se;
905 	struct snd_sof_dev *sdev = snd_soc_component_get_drvdata(scomp);
906 	struct snd_soc_dobj *dobj;
907 	struct snd_sof_control *scontrol;
908 	int ret;
909 
910 	dev_dbg(scomp->dev, "tplg: load control type %d name : %s\n",
911 		hdr->type, hdr->name);
912 
913 	scontrol = kzalloc(sizeof(*scontrol), GFP_KERNEL);
914 	if (!scontrol)
915 		return -ENOMEM;
916 
917 	scontrol->name = kstrdup(hdr->name, GFP_KERNEL);
918 	if (!scontrol->name) {
919 		kfree(scontrol);
920 		return -ENOMEM;
921 	}
922 
923 	scontrol->scomp = scomp;
924 	scontrol->access = kc->access;
925 	scontrol->info_type = le32_to_cpu(hdr->ops.info);
926 	scontrol->index = kc->index;
927 
928 	switch (le32_to_cpu(hdr->ops.info)) {
929 	case SND_SOC_TPLG_CTL_VOLSW:
930 	case SND_SOC_TPLG_CTL_VOLSW_SX:
931 	case SND_SOC_TPLG_CTL_VOLSW_XR_SX:
932 		sm = (struct soc_mixer_control *)kc->private_value;
933 		dobj = &sm->dobj;
934 		ret = sof_control_load_volume(scomp, scontrol, kc, hdr);
935 		break;
936 	case SND_SOC_TPLG_CTL_BYTES:
937 		sbe = (struct soc_bytes_ext *)kc->private_value;
938 		dobj = &sbe->dobj;
939 		ret = sof_control_load_bytes(scomp, scontrol, kc, hdr);
940 		break;
941 	case SND_SOC_TPLG_CTL_ENUM:
942 	case SND_SOC_TPLG_CTL_ENUM_VALUE:
943 		se = (struct soc_enum *)kc->private_value;
944 		dobj = &se->dobj;
945 		ret = sof_control_load_enum(scomp, scontrol, kc, hdr);
946 		break;
947 	case SND_SOC_TPLG_CTL_RANGE:
948 	case SND_SOC_TPLG_CTL_STROBE:
949 	case SND_SOC_TPLG_DAPM_CTL_VOLSW:
950 	case SND_SOC_TPLG_DAPM_CTL_ENUM_DOUBLE:
951 	case SND_SOC_TPLG_DAPM_CTL_ENUM_VIRT:
952 	case SND_SOC_TPLG_DAPM_CTL_ENUM_VALUE:
953 	case SND_SOC_TPLG_DAPM_CTL_PIN:
954 	default:
955 		dev_warn(scomp->dev, "control type not supported %d:%d:%d\n",
956 			 hdr->ops.get, hdr->ops.put, hdr->ops.info);
957 		kfree(scontrol->name);
958 		kfree(scontrol);
959 		return 0;
960 	}
961 
962 	if (ret < 0) {
963 		kfree(scontrol->name);
964 		kfree(scontrol);
965 		return ret;
966 	}
967 
968 	scontrol->led_ctl.led_value = -1;
969 
970 	dobj->private = scontrol;
971 	list_add(&scontrol->list, &sdev->kcontrol_list);
972 	return 0;
973 }
974 
975 static int sof_control_unload(struct snd_soc_component *scomp,
976 			      struct snd_soc_dobj *dobj)
977 {
978 	struct snd_sof_dev *sdev = snd_soc_component_get_drvdata(scomp);
979 	const struct sof_ipc_tplg_ops *ipc_tplg_ops = sdev->ipc->ops->tplg;
980 	struct snd_sof_control *scontrol = dobj->private;
981 	int ret = 0;
982 
983 	dev_dbg(scomp->dev, "tplg: unload control name : %s\n", scontrol->name);
984 
985 	if (ipc_tplg_ops->control_free) {
986 		ret = ipc_tplg_ops->control_free(sdev, scontrol);
987 		if (ret < 0)
988 			dev_err(scomp->dev, "failed to free control: %s\n", scontrol->name);
989 	}
990 
991 	/* free all data before returning in case of error too */
992 	kfree(scontrol->ipc_control_data);
993 	kfree(scontrol->priv);
994 	kfree(scontrol->name);
995 	list_del(&scontrol->list);
996 	kfree(scontrol);
997 
998 	return ret;
999 }
1000 
1001 /*
1002  * DAI Topology
1003  */
1004 
1005 static int sof_connect_dai_widget(struct snd_soc_component *scomp,
1006 				  struct snd_soc_dapm_widget *w,
1007 				  struct snd_soc_tplg_dapm_widget *tw,
1008 				  struct snd_sof_dai *dai)
1009 {
1010 	struct snd_soc_card *card = scomp->card;
1011 	struct snd_soc_pcm_runtime *rtd;
1012 	struct snd_soc_dai *cpu_dai;
1013 	int i;
1014 
1015 	list_for_each_entry(rtd, &card->rtd_list, list) {
1016 		dev_vdbg(scomp->dev, "tplg: check widget: %s stream: %s dai stream: %s\n",
1017 			 w->name,  w->sname, rtd->dai_link->stream_name);
1018 
1019 		if (!w->sname || !rtd->dai_link->stream_name)
1020 			continue;
1021 
1022 		/* does stream match DAI link ? */
1023 		if (strcmp(w->sname, rtd->dai_link->stream_name))
1024 			continue;
1025 
1026 		switch (w->id) {
1027 		case snd_soc_dapm_dai_out:
1028 			for_each_rtd_cpu_dais(rtd, i, cpu_dai) {
1029 				/*
1030 				 * Please create DAI widget in the right order
1031 				 * to ensure BE will connect to the right DAI
1032 				 * widget.
1033 				 */
1034 				if (!cpu_dai->capture_widget) {
1035 					cpu_dai->capture_widget = w;
1036 					break;
1037 				}
1038 			}
1039 			if (i == rtd->num_cpus) {
1040 				dev_err(scomp->dev, "error: can't find BE for DAI %s\n",
1041 					w->name);
1042 
1043 				return -EINVAL;
1044 			}
1045 			dai->name = rtd->dai_link->name;
1046 			dev_dbg(scomp->dev, "tplg: connected widget %s -> DAI link %s\n",
1047 				w->name, rtd->dai_link->name);
1048 			break;
1049 		case snd_soc_dapm_dai_in:
1050 			for_each_rtd_cpu_dais(rtd, i, cpu_dai) {
1051 				/*
1052 				 * Please create DAI widget in the right order
1053 				 * to ensure BE will connect to the right DAI
1054 				 * widget.
1055 				 */
1056 				if (!cpu_dai->playback_widget) {
1057 					cpu_dai->playback_widget = w;
1058 					break;
1059 				}
1060 			}
1061 			if (i == rtd->num_cpus) {
1062 				dev_err(scomp->dev, "error: can't find BE for DAI %s\n",
1063 					w->name);
1064 
1065 				return -EINVAL;
1066 			}
1067 			dai->name = rtd->dai_link->name;
1068 			dev_dbg(scomp->dev, "tplg: connected widget %s -> DAI link %s\n",
1069 				w->name, rtd->dai_link->name);
1070 			break;
1071 		default:
1072 			break;
1073 		}
1074 	}
1075 
1076 	/* check we have a connection */
1077 	if (!dai->name) {
1078 		dev_err(scomp->dev, "error: can't connect DAI %s stream %s\n",
1079 			w->name, w->sname);
1080 		return -EINVAL;
1081 	}
1082 
1083 	return 0;
1084 }
1085 
1086 static void sof_disconnect_dai_widget(struct snd_soc_component *scomp,
1087 				      struct snd_soc_dapm_widget *w)
1088 {
1089 	struct snd_soc_card *card = scomp->card;
1090 	struct snd_soc_pcm_runtime *rtd;
1091 	struct snd_soc_dai *cpu_dai;
1092 	int i;
1093 
1094 	if (!w->sname)
1095 		return;
1096 
1097 	list_for_each_entry(rtd, &card->rtd_list, list) {
1098 		/* does stream match DAI link ? */
1099 		if (!rtd->dai_link->stream_name ||
1100 		    strcmp(w->sname, rtd->dai_link->stream_name))
1101 			continue;
1102 
1103 		switch (w->id) {
1104 		case snd_soc_dapm_dai_out:
1105 			for_each_rtd_cpu_dais(rtd, i, cpu_dai) {
1106 				if (cpu_dai->capture_widget == w) {
1107 					cpu_dai->capture_widget = NULL;
1108 					break;
1109 				}
1110 			}
1111 			break;
1112 		case snd_soc_dapm_dai_in:
1113 			for_each_rtd_cpu_dais(rtd, i, cpu_dai) {
1114 				if (cpu_dai->playback_widget == w) {
1115 					cpu_dai->playback_widget = NULL;
1116 					break;
1117 				}
1118 			}
1119 			break;
1120 		default:
1121 			break;
1122 		}
1123 	}
1124 }
1125 
1126 /* bind PCM ID to host component ID */
1127 static int spcm_bind(struct snd_soc_component *scomp, struct snd_sof_pcm *spcm,
1128 		     int dir)
1129 {
1130 	struct snd_sof_widget *host_widget;
1131 
1132 	host_widget = snd_sof_find_swidget_sname(scomp,
1133 						 spcm->pcm.caps[dir].name,
1134 						 dir);
1135 	if (!host_widget) {
1136 		dev_err(scomp->dev, "can't find host comp to bind pcm\n");
1137 		return -EINVAL;
1138 	}
1139 
1140 	spcm->stream[dir].comp_id = host_widget->comp_id;
1141 
1142 	return 0;
1143 }
1144 
1145 static int sof_widget_parse_tokens(struct snd_soc_component *scomp, struct snd_sof_widget *swidget,
1146 				   struct snd_soc_tplg_dapm_widget *tw,
1147 				   enum sof_tokens *object_token_list, int count)
1148 {
1149 	struct snd_sof_dev *sdev = snd_soc_component_get_drvdata(scomp);
1150 	const struct sof_ipc_tplg_ops *ipc_tplg_ops = sdev->ipc->ops->tplg;
1151 	const struct sof_token_info *token_list = ipc_tplg_ops->token_list;
1152 	struct snd_soc_tplg_private *private = &tw->priv;
1153 	int num_tuples = 0;
1154 	int ret, i;
1155 
1156 	if (count > 0 && !object_token_list) {
1157 		dev_err(scomp->dev, "No token list for widget %s\n", swidget->widget->name);
1158 		return -EINVAL;
1159 	}
1160 
1161 	/* calculate max size of tuples array */
1162 	for (i = 0; i < count; i++)
1163 		num_tuples += token_list[object_token_list[i]].count;
1164 
1165 	/* allocate memory for tuples array */
1166 	swidget->tuples = kcalloc(num_tuples, sizeof(*swidget->tuples), GFP_KERNEL);
1167 	if (!swidget->tuples)
1168 		return -ENOMEM;
1169 
1170 	/* parse token list for widget */
1171 	for (i = 0; i < count; i++) {
1172 		if (object_token_list[i] >= SOF_TOKEN_COUNT) {
1173 			dev_err(scomp->dev, "Invalid token id %d for widget %s\n",
1174 				object_token_list[i], swidget->widget->name);
1175 			ret = -EINVAL;
1176 			goto err;
1177 		}
1178 
1179 		/* parse and save UUID in swidget */
1180 		if (object_token_list[i] == SOF_COMP_EXT_TOKENS) {
1181 			ret = sof_parse_tokens(scomp, swidget,
1182 					       token_list[object_token_list[i]].tokens,
1183 					       token_list[object_token_list[i]].count,
1184 					       private->array, le32_to_cpu(private->size));
1185 			if (ret < 0) {
1186 				dev_err(scomp->dev, "Failed parsing %s for widget %s\n",
1187 					token_list[object_token_list[i]].name,
1188 					swidget->widget->name);
1189 				goto err;
1190 			}
1191 
1192 			continue;
1193 		}
1194 
1195 		/* copy one set of tuples per token ID into swidget->tuples */
1196 		ret = sof_copy_tuples(sdev, private->array, le32_to_cpu(private->size),
1197 				      object_token_list[i], 1, swidget->tuples,
1198 				      num_tuples, &swidget->num_tuples);
1199 		if (ret < 0) {
1200 			dev_err(scomp->dev, "Failed parsing %s for widget %s err: %d\n",
1201 				token_list[object_token_list[i]].name, swidget->widget->name, ret);
1202 			goto err;
1203 		}
1204 	}
1205 
1206 	return 0;
1207 err:
1208 	kfree(swidget->tuples);
1209 	return ret;
1210 }
1211 
1212 static int sof_get_token_value(u32 token_id, struct snd_sof_tuple *tuples, int num_tuples)
1213 {
1214 	int i;
1215 
1216 	if (!tuples)
1217 		return -EINVAL;
1218 
1219 	for (i = 0; i < num_tuples; i++) {
1220 		if (tuples[i].token == token_id)
1221 			return tuples[i].value.v;
1222 	}
1223 
1224 	return -EINVAL;
1225 }
1226 
1227 /* external widget init - used for any driver specific init */
1228 static int sof_widget_ready(struct snd_soc_component *scomp, int index,
1229 			    struct snd_soc_dapm_widget *w,
1230 			    struct snd_soc_tplg_dapm_widget *tw)
1231 {
1232 	struct snd_sof_dev *sdev = snd_soc_component_get_drvdata(scomp);
1233 	const struct sof_ipc_tplg_ops *ipc_tplg_ops = sdev->ipc->ops->tplg;
1234 	const struct sof_ipc_tplg_widget_ops *widget_ops = ipc_tplg_ops->widget;
1235 	struct snd_sof_widget *swidget;
1236 	struct snd_sof_dai *dai;
1237 	enum sof_tokens *token_list;
1238 	int token_list_size;
1239 	int ret = 0;
1240 
1241 	swidget = kzalloc(sizeof(*swidget), GFP_KERNEL);
1242 	if (!swidget)
1243 		return -ENOMEM;
1244 
1245 	swidget->scomp = scomp;
1246 	swidget->widget = w;
1247 	swidget->comp_id = sdev->next_comp_id++;
1248 	swidget->complete = 0;
1249 	swidget->id = w->id;
1250 	swidget->pipeline_id = index;
1251 	swidget->private = NULL;
1252 
1253 	dev_dbg(scomp->dev, "tplg: ready widget id %d pipe %d type %d name : %s stream %s\n",
1254 		swidget->comp_id, index, swidget->id, tw->name,
1255 		strnlen(tw->sname, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) > 0
1256 			? tw->sname : "none");
1257 
1258 	token_list = widget_ops[w->id].token_list;
1259 	token_list_size = widget_ops[w->id].token_list_size;
1260 
1261 	/* handle any special case widgets */
1262 	switch (w->id) {
1263 	case snd_soc_dapm_dai_in:
1264 	case snd_soc_dapm_dai_out:
1265 		dai = kzalloc(sizeof(*dai), GFP_KERNEL);
1266 		if (!dai) {
1267 			kfree(swidget);
1268 			return -ENOMEM;
1269 
1270 		}
1271 
1272 		ret = sof_widget_parse_tokens(scomp, swidget, tw, token_list, token_list_size);
1273 		if (!ret)
1274 			ret = sof_connect_dai_widget(scomp, w, tw, dai);
1275 		if (ret < 0) {
1276 			kfree(dai);
1277 			break;
1278 		}
1279 		list_add(&dai->list, &sdev->dai_list);
1280 		swidget->private = dai;
1281 		break;
1282 	case snd_soc_dapm_effect:
1283 		/* check we have some tokens - we need at least process type */
1284 		if (le32_to_cpu(tw->priv.size) == 0) {
1285 			dev_err(scomp->dev, "error: process tokens not found\n");
1286 			ret = -EINVAL;
1287 			break;
1288 		}
1289 		ret = sof_widget_parse_tokens(scomp, swidget, tw, token_list, token_list_size);
1290 		break;
1291 	case snd_soc_dapm_pga:
1292 		if (!le32_to_cpu(tw->num_kcontrols)) {
1293 			dev_err(scomp->dev, "invalid kcontrol count %d for volume\n",
1294 				tw->num_kcontrols);
1295 			ret = -EINVAL;
1296 			break;
1297 		}
1298 
1299 		fallthrough;
1300 	case snd_soc_dapm_mixer:
1301 	case snd_soc_dapm_buffer:
1302 	case snd_soc_dapm_scheduler:
1303 	case snd_soc_dapm_aif_out:
1304 	case snd_soc_dapm_aif_in:
1305 	case snd_soc_dapm_src:
1306 	case snd_soc_dapm_asrc:
1307 	case snd_soc_dapm_siggen:
1308 	case snd_soc_dapm_mux:
1309 	case snd_soc_dapm_demux:
1310 		ret = sof_widget_parse_tokens(scomp, swidget, tw,  token_list, token_list_size);
1311 		break;
1312 	case snd_soc_dapm_switch:
1313 	case snd_soc_dapm_dai_link:
1314 	case snd_soc_dapm_kcontrol:
1315 	default:
1316 		dev_dbg(scomp->dev, "widget type %d name %s not handled\n", swidget->id, tw->name);
1317 		break;
1318 	}
1319 
1320 	if (sof_debug_check_flag(SOF_DBG_DISABLE_MULTICORE)) {
1321 		swidget->core = SOF_DSP_PRIMARY_CORE;
1322 	} else {
1323 		int core = sof_get_token_value(SOF_TKN_COMP_CORE_ID, swidget->tuples,
1324 					       swidget->num_tuples);
1325 
1326 		if (core >= 0)
1327 			swidget->core = core;
1328 	}
1329 
1330 	/* check token parsing reply */
1331 	if (ret < 0) {
1332 		dev_err(scomp->dev,
1333 			"error: failed to add widget id %d type %d name : %s stream %s\n",
1334 			tw->shift, swidget->id, tw->name,
1335 			strnlen(tw->sname, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) > 0
1336 				? tw->sname : "none");
1337 		kfree(swidget);
1338 		return ret;
1339 	}
1340 
1341 	/* bind widget to external event */
1342 	if (tw->event_type) {
1343 		if (widget_ops[w->id].bind_event) {
1344 			ret = widget_ops[w->id].bind_event(scomp, swidget,
1345 							   le16_to_cpu(tw->event_type));
1346 			if (ret) {
1347 				dev_err(scomp->dev, "widget event binding failed for %s\n",
1348 					swidget->widget->name);
1349 				kfree(swidget->private);
1350 				kfree(swidget->tuples);
1351 				kfree(swidget);
1352 				return ret;
1353 			}
1354 		}
1355 	}
1356 
1357 	w->dobj.private = swidget;
1358 	list_add(&swidget->list, &sdev->widget_list);
1359 	return ret;
1360 }
1361 
1362 static int sof_route_unload(struct snd_soc_component *scomp,
1363 			    struct snd_soc_dobj *dobj)
1364 {
1365 	struct snd_sof_route *sroute;
1366 
1367 	sroute = dobj->private;
1368 	if (!sroute)
1369 		return 0;
1370 
1371 	/* free sroute and its private data */
1372 	kfree(sroute->private);
1373 	list_del(&sroute->list);
1374 	kfree(sroute);
1375 
1376 	return 0;
1377 }
1378 
1379 static int sof_widget_unload(struct snd_soc_component *scomp,
1380 			     struct snd_soc_dobj *dobj)
1381 {
1382 	struct snd_sof_dev *sdev = snd_soc_component_get_drvdata(scomp);
1383 	const struct sof_ipc_tplg_ops *ipc_tplg_ops = sdev->ipc->ops->tplg;
1384 	const struct sof_ipc_tplg_widget_ops *widget_ops = ipc_tplg_ops->widget;
1385 	const struct snd_kcontrol_new *kc;
1386 	struct snd_soc_dapm_widget *widget;
1387 	struct snd_sof_control *scontrol;
1388 	struct snd_sof_widget *swidget;
1389 	struct soc_mixer_control *sm;
1390 	struct soc_bytes_ext *sbe;
1391 	struct snd_sof_dai *dai;
1392 	struct soc_enum *se;
1393 	int ret = 0;
1394 	int i;
1395 
1396 	swidget = dobj->private;
1397 	if (!swidget)
1398 		return 0;
1399 
1400 	widget = swidget->widget;
1401 
1402 	switch (swidget->id) {
1403 	case snd_soc_dapm_dai_in:
1404 	case snd_soc_dapm_dai_out:
1405 		dai = swidget->private;
1406 
1407 		if (dai)
1408 			list_del(&dai->list);
1409 
1410 		sof_disconnect_dai_widget(scomp, widget);
1411 
1412 		break;
1413 	default:
1414 		break;
1415 	}
1416 	for (i = 0; i < widget->num_kcontrols; i++) {
1417 		kc = &widget->kcontrol_news[i];
1418 		switch (widget->dobj.widget.kcontrol_type[i]) {
1419 		case SND_SOC_TPLG_TYPE_MIXER:
1420 			sm = (struct soc_mixer_control *)kc->private_value;
1421 			scontrol = sm->dobj.private;
1422 			if (sm->max > 1)
1423 				kfree(scontrol->volume_table);
1424 			break;
1425 		case SND_SOC_TPLG_TYPE_ENUM:
1426 			se = (struct soc_enum *)kc->private_value;
1427 			scontrol = se->dobj.private;
1428 			break;
1429 		case SND_SOC_TPLG_TYPE_BYTES:
1430 			sbe = (struct soc_bytes_ext *)kc->private_value;
1431 			scontrol = sbe->dobj.private;
1432 			break;
1433 		default:
1434 			dev_warn(scomp->dev, "unsupported kcontrol_type\n");
1435 			goto out;
1436 		}
1437 		kfree(scontrol->ipc_control_data);
1438 		list_del(&scontrol->list);
1439 		kfree(scontrol->name);
1440 		kfree(scontrol);
1441 	}
1442 
1443 out:
1444 	/* free IPC related data */
1445 	if (widget_ops[swidget->id].ipc_free)
1446 		widget_ops[swidget->id].ipc_free(swidget);
1447 
1448 	kfree(swidget->tuples);
1449 
1450 	/* remove and free swidget object */
1451 	list_del(&swidget->list);
1452 	kfree(swidget);
1453 
1454 	return ret;
1455 }
1456 
1457 /*
1458  * DAI HW configuration.
1459  */
1460 
1461 /* FE DAI - used for any driver specific init */
1462 static int sof_dai_load(struct snd_soc_component *scomp, int index,
1463 			struct snd_soc_dai_driver *dai_drv,
1464 			struct snd_soc_tplg_pcm *pcm, struct snd_soc_dai *dai)
1465 {
1466 	struct snd_sof_dev *sdev = snd_soc_component_get_drvdata(scomp);
1467 	struct snd_soc_tplg_stream_caps *caps;
1468 	struct snd_soc_tplg_private *private = &pcm->priv;
1469 	struct snd_sof_pcm *spcm;
1470 	int stream;
1471 	int ret;
1472 
1473 	/* nothing to do for BEs atm */
1474 	if (!pcm)
1475 		return 0;
1476 
1477 	spcm = kzalloc(sizeof(*spcm), GFP_KERNEL);
1478 	if (!spcm)
1479 		return -ENOMEM;
1480 
1481 	spcm->scomp = scomp;
1482 
1483 	for_each_pcm_streams(stream) {
1484 		spcm->stream[stream].comp_id = COMP_ID_UNASSIGNED;
1485 		if (pcm->compress)
1486 			snd_sof_compr_init_elapsed_work(&spcm->stream[stream].period_elapsed_work);
1487 		else
1488 			snd_sof_pcm_init_elapsed_work(&spcm->stream[stream].period_elapsed_work);
1489 	}
1490 
1491 	spcm->pcm = *pcm;
1492 	dev_dbg(scomp->dev, "tplg: load pcm %s\n", pcm->dai_name);
1493 
1494 	dai_drv->dobj.private = spcm;
1495 	list_add(&spcm->list, &sdev->pcm_list);
1496 
1497 	ret = sof_parse_tokens(scomp, spcm, stream_tokens,
1498 			       ARRAY_SIZE(stream_tokens), private->array,
1499 			       le32_to_cpu(private->size));
1500 	if (ret) {
1501 		dev_err(scomp->dev, "error: parse stream tokens failed %d\n",
1502 			le32_to_cpu(private->size));
1503 		return ret;
1504 	}
1505 
1506 	/* do we need to allocate playback PCM DMA pages */
1507 	if (!spcm->pcm.playback)
1508 		goto capture;
1509 
1510 	stream = SNDRV_PCM_STREAM_PLAYBACK;
1511 
1512 	dev_vdbg(scomp->dev, "tplg: pcm %s stream tokens: playback d0i3:%d\n",
1513 		 spcm->pcm.pcm_name, spcm->stream[stream].d0i3_compatible);
1514 
1515 	caps = &spcm->pcm.caps[stream];
1516 
1517 	/* allocate playback page table buffer */
1518 	ret = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, sdev->dev,
1519 				  PAGE_SIZE, &spcm->stream[stream].page_table);
1520 	if (ret < 0) {
1521 		dev_err(scomp->dev, "error: can't alloc page table for %s %d\n",
1522 			caps->name, ret);
1523 
1524 		return ret;
1525 	}
1526 
1527 	/* bind pcm to host comp */
1528 	ret = spcm_bind(scomp, spcm, stream);
1529 	if (ret) {
1530 		dev_err(scomp->dev,
1531 			"error: can't bind pcm to host\n");
1532 		goto free_playback_tables;
1533 	}
1534 
1535 capture:
1536 	stream = SNDRV_PCM_STREAM_CAPTURE;
1537 
1538 	/* do we need to allocate capture PCM DMA pages */
1539 	if (!spcm->pcm.capture)
1540 		return ret;
1541 
1542 	dev_vdbg(scomp->dev, "tplg: pcm %s stream tokens: capture d0i3:%d\n",
1543 		 spcm->pcm.pcm_name, spcm->stream[stream].d0i3_compatible);
1544 
1545 	caps = &spcm->pcm.caps[stream];
1546 
1547 	/* allocate capture page table buffer */
1548 	ret = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, sdev->dev,
1549 				  PAGE_SIZE, &spcm->stream[stream].page_table);
1550 	if (ret < 0) {
1551 		dev_err(scomp->dev, "error: can't alloc page table for %s %d\n",
1552 			caps->name, ret);
1553 		goto free_playback_tables;
1554 	}
1555 
1556 	/* bind pcm to host comp */
1557 	ret = spcm_bind(scomp, spcm, stream);
1558 	if (ret) {
1559 		dev_err(scomp->dev,
1560 			"error: can't bind pcm to host\n");
1561 		snd_dma_free_pages(&spcm->stream[stream].page_table);
1562 		goto free_playback_tables;
1563 	}
1564 
1565 	return ret;
1566 
1567 free_playback_tables:
1568 	if (spcm->pcm.playback)
1569 		snd_dma_free_pages(&spcm->stream[SNDRV_PCM_STREAM_PLAYBACK].page_table);
1570 
1571 	return ret;
1572 }
1573 
1574 static int sof_dai_unload(struct snd_soc_component *scomp,
1575 			  struct snd_soc_dobj *dobj)
1576 {
1577 	struct snd_sof_pcm *spcm = dobj->private;
1578 
1579 	/* free PCM DMA pages */
1580 	if (spcm->pcm.playback)
1581 		snd_dma_free_pages(&spcm->stream[SNDRV_PCM_STREAM_PLAYBACK].page_table);
1582 
1583 	if (spcm->pcm.capture)
1584 		snd_dma_free_pages(&spcm->stream[SNDRV_PCM_STREAM_CAPTURE].page_table);
1585 
1586 	/* remove from list and free spcm */
1587 	list_del(&spcm->list);
1588 	kfree(spcm);
1589 
1590 	return 0;
1591 }
1592 
1593 static const struct sof_topology_token common_dai_link_tokens[] = {
1594 	{SOF_TKN_DAI_TYPE, SND_SOC_TPLG_TUPLE_TYPE_STRING, get_token_dai_type,
1595 		offsetof(struct snd_sof_dai_link, type)},
1596 };
1597 
1598 /* DAI link - used for any driver specific init */
1599 static int sof_link_load(struct snd_soc_component *scomp, int index, struct snd_soc_dai_link *link,
1600 			 struct snd_soc_tplg_link_config *cfg)
1601 {
1602 	struct snd_sof_dev *sdev = snd_soc_component_get_drvdata(scomp);
1603 	const struct sof_ipc_tplg_ops *ipc_tplg_ops = sdev->ipc->ops->tplg;
1604 	const struct sof_token_info *token_list = ipc_tplg_ops->token_list;
1605 	struct snd_soc_tplg_private *private = &cfg->priv;
1606 	struct snd_sof_dai_link *slink;
1607 	u32 token_id = 0;
1608 	int num_tuples = 0;
1609 	int ret, num_sets;
1610 
1611 	if (!link->platforms) {
1612 		dev_err(scomp->dev, "error: no platforms\n");
1613 		return -EINVAL;
1614 	}
1615 	link->platforms->name = dev_name(scomp->dev);
1616 
1617 	/*
1618 	 * Set nonatomic property for FE dai links as their trigger action
1619 	 * involves IPC's.
1620 	 */
1621 	if (!link->no_pcm) {
1622 		link->nonatomic = true;
1623 
1624 		/*
1625 		 * set default trigger order for all links. Exceptions to
1626 		 * the rule will be handled in sof_pcm_dai_link_fixup()
1627 		 * For playback, the sequence is the following: start FE,
1628 		 * start BE, stop BE, stop FE; for Capture the sequence is
1629 		 * inverted start BE, start FE, stop FE, stop BE
1630 		 */
1631 		link->trigger[SNDRV_PCM_STREAM_PLAYBACK] =
1632 					SND_SOC_DPCM_TRIGGER_PRE;
1633 		link->trigger[SNDRV_PCM_STREAM_CAPTURE] =
1634 					SND_SOC_DPCM_TRIGGER_POST;
1635 
1636 		/* nothing more to do for FE dai links */
1637 		return 0;
1638 	}
1639 
1640 	/* check we have some tokens - we need at least DAI type */
1641 	if (le32_to_cpu(private->size) == 0) {
1642 		dev_err(scomp->dev, "error: expected tokens for DAI, none found\n");
1643 		return -EINVAL;
1644 	}
1645 
1646 	slink = kzalloc(sizeof(*slink), GFP_KERNEL);
1647 	if (!slink)
1648 		return -ENOMEM;
1649 
1650 	slink->num_hw_configs = le32_to_cpu(cfg->num_hw_configs);
1651 	slink->hw_configs = kmemdup(cfg->hw_config,
1652 				    sizeof(*slink->hw_configs) * slink->num_hw_configs,
1653 				    GFP_KERNEL);
1654 	if (!slink->hw_configs) {
1655 		kfree(slink);
1656 		return -ENOMEM;
1657 	}
1658 
1659 	slink->default_hw_cfg_id = le32_to_cpu(cfg->default_hw_config_id);
1660 	slink->link = link;
1661 
1662 	dev_dbg(scomp->dev, "tplg: %d hw_configs found, default id: %d for dai link %s!\n",
1663 		slink->num_hw_configs, slink->default_hw_cfg_id, link->name);
1664 
1665 	ret = sof_parse_tokens(scomp, slink, common_dai_link_tokens,
1666 			       ARRAY_SIZE(common_dai_link_tokens),
1667 			       private->array, le32_to_cpu(private->size));
1668 	if (ret < 0) {
1669 		dev_err(scomp->dev, "Failed tp parse common DAI link tokens\n");
1670 		kfree(slink->hw_configs);
1671 		kfree(slink);
1672 		return ret;
1673 	}
1674 
1675 	if (!token_list)
1676 		goto out;
1677 
1678 	/* calculate size of tuples array */
1679 	num_tuples += token_list[SOF_DAI_LINK_TOKENS].count;
1680 	num_sets = slink->num_hw_configs;
1681 	switch (slink->type) {
1682 	case SOF_DAI_INTEL_SSP:
1683 		token_id = SOF_SSP_TOKENS;
1684 		num_tuples += token_list[SOF_SSP_TOKENS].count * slink->num_hw_configs;
1685 		break;
1686 	case SOF_DAI_INTEL_DMIC:
1687 		token_id = SOF_DMIC_TOKENS;
1688 		num_tuples += token_list[SOF_DMIC_TOKENS].count;
1689 
1690 		/* Allocate memory for max PDM controllers */
1691 		num_tuples += token_list[SOF_DMIC_PDM_TOKENS].count * SOF_DAI_INTEL_DMIC_NUM_CTRL;
1692 		break;
1693 	case SOF_DAI_INTEL_HDA:
1694 		token_id = SOF_HDA_TOKENS;
1695 		num_tuples += token_list[SOF_HDA_TOKENS].count;
1696 		break;
1697 	case SOF_DAI_INTEL_ALH:
1698 		token_id = SOF_ALH_TOKENS;
1699 		num_tuples += token_list[SOF_ALH_TOKENS].count;
1700 		break;
1701 	case SOF_DAI_IMX_SAI:
1702 		token_id = SOF_SAI_TOKENS;
1703 		num_tuples += token_list[SOF_SAI_TOKENS].count;
1704 		break;
1705 	case SOF_DAI_IMX_ESAI:
1706 		token_id = SOF_ESAI_TOKENS;
1707 		num_tuples += token_list[SOF_ESAI_TOKENS].count;
1708 		break;
1709 	case SOF_DAI_MEDIATEK_AFE:
1710 		token_id = SOF_AFE_TOKENS;
1711 		num_tuples += token_list[SOF_AFE_TOKENS].count;
1712 		break;
1713 	default:
1714 		break;
1715 	}
1716 
1717 	/* allocate memory for tuples array */
1718 	slink->tuples = kcalloc(num_tuples, sizeof(*slink->tuples), GFP_KERNEL);
1719 	if (!slink->tuples) {
1720 		kfree(slink->hw_configs);
1721 		kfree(slink);
1722 		return -ENOMEM;
1723 	}
1724 
1725 	/* parse one set of DAI link tokens */
1726 	ret = sof_copy_tuples(sdev, private->array, le32_to_cpu(private->size),
1727 			      SOF_DAI_LINK_TOKENS, 1, slink->tuples,
1728 			      num_tuples, &slink->num_tuples);
1729 	if (ret < 0) {
1730 		dev_err(scomp->dev, "failed to parse %s for dai link %s\n",
1731 			token_list[SOF_DAI_LINK_TOKENS].name, link->name);
1732 		goto err;
1733 	}
1734 
1735 	/* nothing more to do if there are no DAI type-specific tokens defined */
1736 	if (!token_id || !token_list[token_id].tokens)
1737 		goto out;
1738 
1739 	/* parse "num_sets" sets of DAI-specific tokens */
1740 	ret = sof_copy_tuples(sdev, private->array, le32_to_cpu(private->size),
1741 			      token_id, num_sets, slink->tuples, num_tuples, &slink->num_tuples);
1742 	if (ret < 0) {
1743 		dev_err(scomp->dev, "failed to parse %s for dai link %s\n",
1744 			token_list[token_id].name, link->name);
1745 		goto err;
1746 	}
1747 
1748 	/* for DMIC, also parse all sets of DMIC PDM tokens based on active PDM count */
1749 	if (token_id == SOF_DMIC_TOKENS) {
1750 		num_sets = sof_get_token_value(SOF_TKN_INTEL_DMIC_NUM_PDM_ACTIVE,
1751 					       slink->tuples, slink->num_tuples);
1752 
1753 		if (num_sets < 0) {
1754 			dev_err(sdev->dev, "Invalid active PDM count for %s\n", link->name);
1755 			ret = num_sets;
1756 			goto err;
1757 		}
1758 
1759 		ret = sof_copy_tuples(sdev, private->array, le32_to_cpu(private->size),
1760 				      SOF_DMIC_PDM_TOKENS, num_sets, slink->tuples,
1761 				      num_tuples, &slink->num_tuples);
1762 		if (ret < 0) {
1763 			dev_err(scomp->dev, "failed to parse %s for dai link %s\n",
1764 				token_list[SOF_DMIC_PDM_TOKENS].name, link->name);
1765 			goto err;
1766 		}
1767 	}
1768 out:
1769 	link->dobj.private = slink;
1770 	list_add(&slink->list, &sdev->dai_link_list);
1771 
1772 	return 0;
1773 
1774 err:
1775 	kfree(slink->tuples);
1776 	kfree(slink->hw_configs);
1777 	kfree(slink);
1778 
1779 	return ret;
1780 }
1781 
1782 static int sof_link_unload(struct snd_soc_component *scomp, struct snd_soc_dobj *dobj)
1783 {
1784 	struct snd_sof_dai_link *slink = dobj->private;
1785 
1786 	if (!slink)
1787 		return 0;
1788 
1789 	kfree(slink->tuples);
1790 	list_del(&slink->list);
1791 	kfree(slink->hw_configs);
1792 	kfree(slink);
1793 	dobj->private = NULL;
1794 
1795 	return 0;
1796 }
1797 
1798 /* DAI link - used for any driver specific init */
1799 static int sof_route_load(struct snd_soc_component *scomp, int index,
1800 			  struct snd_soc_dapm_route *route)
1801 {
1802 	struct snd_sof_dev *sdev = snd_soc_component_get_drvdata(scomp);
1803 	struct snd_sof_widget *source_swidget, *sink_swidget;
1804 	struct snd_soc_dobj *dobj = &route->dobj;
1805 	struct snd_sof_route *sroute;
1806 	int ret = 0;
1807 
1808 	/* allocate memory for sroute and connect */
1809 	sroute = kzalloc(sizeof(*sroute), GFP_KERNEL);
1810 	if (!sroute)
1811 		return -ENOMEM;
1812 
1813 	sroute->scomp = scomp;
1814 	dev_dbg(scomp->dev, "sink %s control %s source %s\n",
1815 		route->sink, route->control ? route->control : "none",
1816 		route->source);
1817 
1818 	/* source component */
1819 	source_swidget = snd_sof_find_swidget(scomp, (char *)route->source);
1820 	if (!source_swidget) {
1821 		dev_err(scomp->dev, "error: source %s not found\n",
1822 			route->source);
1823 		ret = -EINVAL;
1824 		goto err;
1825 	}
1826 
1827 	/*
1828 	 * Virtual widgets of type output/out_drv may be added in topology
1829 	 * for compatibility. These are not handled by the FW.
1830 	 * So, don't send routes whose source/sink widget is of such types
1831 	 * to the DSP.
1832 	 */
1833 	if (source_swidget->id == snd_soc_dapm_out_drv ||
1834 	    source_swidget->id == snd_soc_dapm_output)
1835 		goto err;
1836 
1837 	/* sink component */
1838 	sink_swidget = snd_sof_find_swidget(scomp, (char *)route->sink);
1839 	if (!sink_swidget) {
1840 		dev_err(scomp->dev, "error: sink %s not found\n",
1841 			route->sink);
1842 		ret = -EINVAL;
1843 		goto err;
1844 	}
1845 
1846 	/*
1847 	 * Don't send routes whose sink widget is of type
1848 	 * output or out_drv to the DSP
1849 	 */
1850 	if (sink_swidget->id == snd_soc_dapm_out_drv ||
1851 	    sink_swidget->id == snd_soc_dapm_output)
1852 		goto err;
1853 
1854 	sroute->route = route;
1855 	dobj->private = sroute;
1856 	sroute->src_widget = source_swidget;
1857 	sroute->sink_widget = sink_swidget;
1858 
1859 	/* add route to route list */
1860 	list_add(&sroute->list, &sdev->route_list);
1861 
1862 	return 0;
1863 err:
1864 	kfree(sroute);
1865 	return ret;
1866 }
1867 
1868 /**
1869  * sof_set_pipe_widget - Set pipe_widget for a component
1870  * @sdev: pointer to struct snd_sof_dev
1871  * @pipe_widget: pointer to struct snd_sof_widget of type snd_soc_dapm_scheduler
1872  * @swidget: pointer to struct snd_sof_widget that has the same pipeline ID as @pipe_widget
1873  *
1874  * Return: 0 if successful, -EINVAL on error.
1875  * The function checks if @swidget is associated with any volatile controls. If so, setting
1876  * the dynamic_pipeline_widget is disallowed.
1877  */
1878 static int sof_set_pipe_widget(struct snd_sof_dev *sdev, struct snd_sof_widget *pipe_widget,
1879 			       struct snd_sof_widget *swidget)
1880 {
1881 	struct snd_sof_control *scontrol;
1882 
1883 	if (pipe_widget->dynamic_pipeline_widget) {
1884 		/* dynamic widgets cannot have volatile kcontrols */
1885 		list_for_each_entry(scontrol, &sdev->kcontrol_list, list)
1886 			if (scontrol->comp_id == swidget->comp_id &&
1887 			    (scontrol->access & SNDRV_CTL_ELEM_ACCESS_VOLATILE)) {
1888 				dev_err(sdev->dev,
1889 					"error: volatile control found for dynamic widget %s\n",
1890 					swidget->widget->name);
1891 				return -EINVAL;
1892 			}
1893 	}
1894 
1895 	/* set the pipe_widget and apply the dynamic_pipeline_widget_flag */
1896 	swidget->pipe_widget = pipe_widget;
1897 	swidget->dynamic_pipeline_widget = pipe_widget->dynamic_pipeline_widget;
1898 
1899 	return 0;
1900 }
1901 
1902 /* completion - called at completion of firmware loading */
1903 static int sof_complete(struct snd_soc_component *scomp)
1904 {
1905 	struct snd_sof_dev *sdev = snd_soc_component_get_drvdata(scomp);
1906 	struct snd_sof_widget *swidget, *comp_swidget;
1907 	const struct sof_ipc_tplg_ops *ipc_tplg_ops = sdev->ipc->ops->tplg;
1908 	const struct sof_ipc_tplg_widget_ops *widget_ops = ipc_tplg_ops->widget;
1909 	struct snd_sof_control *scontrol;
1910 	int ret;
1911 
1912 	/* first update all control IPC structures based on the IPC version */
1913 	if (ipc_tplg_ops->control_setup)
1914 		list_for_each_entry(scontrol, &sdev->kcontrol_list, list) {
1915 			ret = ipc_tplg_ops->control_setup(sdev, scontrol);
1916 			if (ret < 0) {
1917 				dev_err(sdev->dev, "failed updating IPC struct for control %s\n",
1918 					scontrol->name);
1919 				return ret;
1920 			}
1921 		}
1922 
1923 	/*
1924 	 * then update all widget IPC structures. If any of the ipc_setup callbacks fail, the
1925 	 * topology will be removed and all widgets will be unloaded resulting in freeing all
1926 	 * associated memories.
1927 	 */
1928 	list_for_each_entry(swidget, &sdev->widget_list, list) {
1929 		if (widget_ops[swidget->id].ipc_setup) {
1930 			ret = widget_ops[swidget->id].ipc_setup(swidget);
1931 			if (ret < 0) {
1932 				dev_err(sdev->dev, "failed updating IPC struct for %s\n",
1933 					swidget->widget->name);
1934 				return ret;
1935 			}
1936 		}
1937 	}
1938 
1939 	/* set the pipe_widget and apply the dynamic_pipeline_widget_flag */
1940 	list_for_each_entry(swidget, &sdev->widget_list, list) {
1941 		switch (swidget->id) {
1942 		case snd_soc_dapm_scheduler:
1943 			/*
1944 			 * Apply the dynamic_pipeline_widget flag and set the pipe_widget field
1945 			 * for all widgets that have the same pipeline ID as the scheduler widget
1946 			 */
1947 			list_for_each_entry(comp_swidget, &sdev->widget_list, list)
1948 				if (comp_swidget->pipeline_id == swidget->pipeline_id) {
1949 					ret = sof_set_pipe_widget(sdev, swidget, comp_swidget);
1950 					if (ret < 0)
1951 						return ret;
1952 				}
1953 			break;
1954 		default:
1955 			break;
1956 		}
1957 	}
1958 
1959 	/* verify topology components loading including dynamic pipelines */
1960 	if (sof_debug_check_flag(SOF_DBG_VERIFY_TPLG)) {
1961 		if (ipc_tplg_ops->set_up_all_pipelines && ipc_tplg_ops->tear_down_all_pipelines) {
1962 			ret = ipc_tplg_ops->set_up_all_pipelines(sdev, true);
1963 			if (ret < 0) {
1964 				dev_err(sdev->dev, "Failed to set up all topology pipelines: %d\n",
1965 					ret);
1966 				return ret;
1967 			}
1968 
1969 			ret = ipc_tplg_ops->tear_down_all_pipelines(sdev, true);
1970 			if (ret < 0) {
1971 				dev_err(sdev->dev, "Failed to tear down topology pipelines: %d\n",
1972 					ret);
1973 				return ret;
1974 			}
1975 		}
1976 	}
1977 
1978 	/* set up static pipelines */
1979 	if (ipc_tplg_ops->set_up_all_pipelines)
1980 		return ipc_tplg_ops->set_up_all_pipelines(sdev, false);
1981 
1982 	return 0;
1983 }
1984 
1985 /* manifest - optional to inform component of manifest */
1986 static int sof_manifest(struct snd_soc_component *scomp, int index,
1987 			struct snd_soc_tplg_manifest *man)
1988 {
1989 	u32 size;
1990 	u32 abi_version;
1991 
1992 	size = le32_to_cpu(man->priv.size);
1993 
1994 	/* backward compatible with tplg without ABI info */
1995 	if (!size) {
1996 		dev_dbg(scomp->dev, "No topology ABI info\n");
1997 		return 0;
1998 	}
1999 
2000 	if (size != SOF_TPLG_ABI_SIZE) {
2001 		dev_err(scomp->dev, "error: invalid topology ABI size\n");
2002 		return -EINVAL;
2003 	}
2004 
2005 	dev_info(scomp->dev,
2006 		 "Topology: ABI %d:%d:%d Kernel ABI %d:%d:%d\n",
2007 		 man->priv.data[0], man->priv.data[1],
2008 		 man->priv.data[2], SOF_ABI_MAJOR, SOF_ABI_MINOR,
2009 		 SOF_ABI_PATCH);
2010 
2011 	abi_version = SOF_ABI_VER(man->priv.data[0],
2012 				  man->priv.data[1],
2013 				  man->priv.data[2]);
2014 
2015 	if (SOF_ABI_VERSION_INCOMPATIBLE(SOF_ABI_VERSION, abi_version)) {
2016 		dev_err(scomp->dev, "error: incompatible topology ABI version\n");
2017 		return -EINVAL;
2018 	}
2019 
2020 	if (SOF_ABI_VERSION_MINOR(abi_version) > SOF_ABI_MINOR) {
2021 		if (!IS_ENABLED(CONFIG_SND_SOC_SOF_STRICT_ABI_CHECKS)) {
2022 			dev_warn(scomp->dev, "warn: topology ABI is more recent than kernel\n");
2023 		} else {
2024 			dev_err(scomp->dev, "error: topology ABI is more recent than kernel\n");
2025 			return -EINVAL;
2026 		}
2027 	}
2028 
2029 	return 0;
2030 }
2031 
2032 /* vendor specific kcontrol handlers available for binding */
2033 static const struct snd_soc_tplg_kcontrol_ops sof_io_ops[] = {
2034 	{SOF_TPLG_KCTL_VOL_ID, snd_sof_volume_get, snd_sof_volume_put},
2035 	{SOF_TPLG_KCTL_BYTES_ID, snd_sof_bytes_get, snd_sof_bytes_put},
2036 	{SOF_TPLG_KCTL_ENUM_ID, snd_sof_enum_get, snd_sof_enum_put},
2037 	{SOF_TPLG_KCTL_SWITCH_ID, snd_sof_switch_get, snd_sof_switch_put},
2038 };
2039 
2040 /* vendor specific bytes ext handlers available for binding */
2041 static const struct snd_soc_tplg_bytes_ext_ops sof_bytes_ext_ops[] = {
2042 	{SOF_TPLG_KCTL_BYTES_ID, snd_sof_bytes_ext_get, snd_sof_bytes_ext_put},
2043 	{SOF_TPLG_KCTL_BYTES_VOLATILE_RO, snd_sof_bytes_ext_volatile_get},
2044 };
2045 
2046 static struct snd_soc_tplg_ops sof_tplg_ops = {
2047 	/* external kcontrol init - used for any driver specific init */
2048 	.control_load	= sof_control_load,
2049 	.control_unload	= sof_control_unload,
2050 
2051 	/* external kcontrol init - used for any driver specific init */
2052 	.dapm_route_load	= sof_route_load,
2053 	.dapm_route_unload	= sof_route_unload,
2054 
2055 	/* external widget init - used for any driver specific init */
2056 	/* .widget_load is not currently used */
2057 	.widget_ready	= sof_widget_ready,
2058 	.widget_unload	= sof_widget_unload,
2059 
2060 	/* FE DAI - used for any driver specific init */
2061 	.dai_load	= sof_dai_load,
2062 	.dai_unload	= sof_dai_unload,
2063 
2064 	/* DAI link - used for any driver specific init */
2065 	.link_load	= sof_link_load,
2066 	.link_unload	= sof_link_unload,
2067 
2068 	/* completion - called at completion of firmware loading */
2069 	.complete	= sof_complete,
2070 
2071 	/* manifest - optional to inform component of manifest */
2072 	.manifest	= sof_manifest,
2073 
2074 	/* vendor specific kcontrol handlers available for binding */
2075 	.io_ops		= sof_io_ops,
2076 	.io_ops_count	= ARRAY_SIZE(sof_io_ops),
2077 
2078 	/* vendor specific bytes ext handlers available for binding */
2079 	.bytes_ext_ops	= sof_bytes_ext_ops,
2080 	.bytes_ext_ops_count	= ARRAY_SIZE(sof_bytes_ext_ops),
2081 };
2082 
2083 int snd_sof_load_topology(struct snd_soc_component *scomp, const char *file)
2084 {
2085 	struct snd_sof_dev *sdev = snd_soc_component_get_drvdata(scomp);
2086 	const struct firmware *fw;
2087 	int ret;
2088 
2089 	dev_dbg(scomp->dev, "loading topology:%s\n", file);
2090 
2091 	ret = request_firmware(&fw, file, scomp->dev);
2092 	if (ret < 0) {
2093 		dev_err(scomp->dev, "error: tplg request firmware %s failed err: %d\n",
2094 			file, ret);
2095 		dev_err(scomp->dev,
2096 			"you may need to download the firmware from https://github.com/thesofproject/sof-bin/\n");
2097 		return ret;
2098 	}
2099 
2100 	ret = snd_soc_tplg_component_load(scomp, &sof_tplg_ops, fw);
2101 	if (ret < 0) {
2102 		dev_err(scomp->dev, "error: tplg component load failed %d\n",
2103 			ret);
2104 		ret = -EINVAL;
2105 	}
2106 
2107 	release_firmware(fw);
2108 
2109 	if (ret >= 0 && sdev->led_present)
2110 		ret = snd_ctl_led_request();
2111 
2112 	return ret;
2113 }
2114 EXPORT_SYMBOL(snd_sof_load_topology);
2115