xref: /openbmc/linux/sound/soc/sof/sof-audio.h (revision 27c2100b)
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) 2019 Intel Corporation. All rights reserved.
7  *
8  * Author: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
9  */
10 
11 #ifndef __SOUND_SOC_SOF_AUDIO_H
12 #define __SOUND_SOC_SOF_AUDIO_H
13 
14 #include <linux/workqueue.h>
15 
16 #include <sound/soc.h>
17 #include <sound/control.h>
18 #include <sound/sof/stream.h> /* needs to be included before control.h */
19 #include <sound/sof/control.h>
20 #include <sound/sof/dai.h>
21 #include <sound/sof/topology.h>
22 #include "sof-priv.h"
23 
24 #define SOF_AUDIO_PCM_DRV_NAME	"sof-audio-component"
25 
26 /*
27  * The ipc4 firmware only supports up to 8 sink or source pins
28  * per widget, because only 3 bits are used for queue(pin) ID
29  * in ipc4 protocol.
30  */
31 #define SOF_WIDGET_MAX_NUM_PINS	8
32 
33 /* The type of a widget pin is either sink or source */
34 #define SOF_PIN_TYPE_SINK	0
35 #define SOF_PIN_TYPE_SOURCE	1
36 
37 /* max number of FE PCMs before BEs */
38 #define SOF_BE_PCM_BASE		16
39 
40 #define DMA_CHAN_INVALID	0xFFFFFFFF
41 
42 #define WIDGET_IS_DAI(id) ((id) == snd_soc_dapm_dai_in || (id) == snd_soc_dapm_dai_out)
43 #define WIDGET_IS_AIF(id) ((id) == snd_soc_dapm_aif_in || (id) == snd_soc_dapm_aif_out)
44 #define WIDGET_IS_AIF_OR_DAI(id) (WIDGET_IS_DAI(id) || WIDGET_IS_AIF(id))
45 
46 #define SOF_DAI_CLK_INTEL_SSP_MCLK	0
47 #define SOF_DAI_CLK_INTEL_SSP_BCLK	1
48 
49 enum sof_widget_op {
50 	SOF_WIDGET_PREPARE,
51 	SOF_WIDGET_SETUP,
52 	SOF_WIDGET_FREE,
53 	SOF_WIDGET_UNPREPARE,
54 };
55 
56 /*
57  * Volume fractional word length define to 16 sets
58  * the volume linear gain value to use Qx.16 format
59  */
60 #define VOLUME_FWL	16
61 
62 #define SOF_TLV_ITEMS 3
63 
64 static inline u32 mixer_to_ipc(unsigned int value, u32 *volume_map, int size)
65 {
66 	if (value >= size)
67 		return volume_map[size - 1];
68 
69 	return volume_map[value];
70 }
71 
72 static inline u32 ipc_to_mixer(u32 value, u32 *volume_map, int size)
73 {
74 	int i;
75 
76 	for (i = 0; i < size; i++) {
77 		if (volume_map[i] >= value)
78 			return i;
79 	}
80 
81 	return i - 1;
82 }
83 
84 struct snd_sof_widget;
85 struct snd_sof_route;
86 struct snd_sof_control;
87 struct snd_sof_dai;
88 struct snd_sof_pcm;
89 
90 struct snd_sof_dai_config_data {
91 	int dai_index;
92 	int dai_data; /* contains DAI-specific information */
93 };
94 
95 /**
96  * struct sof_ipc_pcm_ops - IPC-specific PCM ops
97  * @hw_params: Function pointer for hw_params
98  * @hw_free: Function pointer for hw_free
99  * @trigger: Function pointer for trigger
100  * @dai_link_fixup: Function pointer for DAI link fixup
101  * @pcm_setup: Function pointer for IPC-specific PCM set up that can be used for allocating
102  *	       additional memory in the SOF PCM stream structure
103  * @pcm_free: Function pointer for PCM free that can be used for freeing any
104  *	       additional memory in the SOF PCM stream structure
105  * @delay: Function pointer for pcm delay calculation
106  */
107 struct sof_ipc_pcm_ops {
108 	int (*hw_params)(struct snd_soc_component *component, struct snd_pcm_substream *substream,
109 			 struct snd_pcm_hw_params *params,
110 			 struct snd_sof_platform_stream_params *platform_params);
111 	int (*hw_free)(struct snd_soc_component *component, struct snd_pcm_substream *substream);
112 	int (*trigger)(struct snd_soc_component *component,  struct snd_pcm_substream *substream,
113 		       int cmd);
114 	int (*dai_link_fixup)(struct snd_soc_pcm_runtime *rtd, struct snd_pcm_hw_params *params);
115 	int (*pcm_setup)(struct snd_sof_dev *sdev, struct snd_sof_pcm *spcm);
116 	void (*pcm_free)(struct snd_sof_dev *sdev, struct snd_sof_pcm *spcm);
117 	snd_pcm_sframes_t (*delay)(struct snd_soc_component *component,
118 				   struct snd_pcm_substream *substream);
119 };
120 
121 /**
122  * struct sof_ipc_tplg_control_ops - IPC-specific ops for topology kcontrol IO
123  */
124 struct sof_ipc_tplg_control_ops {
125 	bool (*volume_put)(struct snd_sof_control *scontrol, struct snd_ctl_elem_value *ucontrol);
126 	int (*volume_get)(struct snd_sof_control *scontrol, struct snd_ctl_elem_value *ucontrol);
127 	bool (*switch_put)(struct snd_sof_control *scontrol, struct snd_ctl_elem_value *ucontrol);
128 	int (*switch_get)(struct snd_sof_control *scontrol, struct snd_ctl_elem_value *ucontrol);
129 	bool (*enum_put)(struct snd_sof_control *scontrol, struct snd_ctl_elem_value *ucontrol);
130 	int (*enum_get)(struct snd_sof_control *scontrol, struct snd_ctl_elem_value *ucontrol);
131 	int (*bytes_put)(struct snd_sof_control *scontrol, struct snd_ctl_elem_value *ucontrol);
132 	int (*bytes_get)(struct snd_sof_control *scontrol, struct snd_ctl_elem_value *ucontrol);
133 	int (*bytes_ext_get)(struct snd_sof_control *scontrol,
134 			     const unsigned int __user *binary_data, unsigned int size);
135 	int (*bytes_ext_volatile_get)(struct snd_sof_control *scontrol,
136 				      const unsigned int __user *binary_data, unsigned int size);
137 	int (*bytes_ext_put)(struct snd_sof_control *scontrol,
138 			     const unsigned int __user *binary_data, unsigned int size);
139 	/* update control data based on notification from the DSP */
140 	void (*update)(struct snd_sof_dev *sdev, void *ipc_control_message);
141 	/* Optional callback to setup kcontrols associated with an swidget */
142 	int (*widget_kcontrol_setup)(struct snd_sof_dev *sdev, struct snd_sof_widget *swidget);
143 	/* mandatory callback to set up volume table for volume kcontrols */
144 	int (*set_up_volume_table)(struct snd_sof_control *scontrol, int tlv[SOF_TLV_ITEMS],
145 				   int size);
146 };
147 
148 /**
149  * struct sof_ipc_tplg_widget_ops - IPC-specific ops for topology widgets
150  * @ipc_setup: Function pointer for setting up widget IPC params
151  * @ipc_free: Function pointer for freeing widget IPC params
152  * @token_list: List of token ID's that should be parsed for the widget
153  * @token_list_size: number of elements in token_list
154  * @bind_event: Function pointer for binding events to the widget
155  * @ipc_prepare: Optional op for preparing a widget for set up
156  * @ipc_unprepare: Optional op for unpreparing a widget
157  */
158 struct sof_ipc_tplg_widget_ops {
159 	int (*ipc_setup)(struct snd_sof_widget *swidget);
160 	void (*ipc_free)(struct snd_sof_widget *swidget);
161 	enum sof_tokens *token_list;
162 	int token_list_size;
163 	int (*bind_event)(struct snd_soc_component *scomp, struct snd_sof_widget *swidget,
164 			  u16 event_type);
165 	int (*ipc_prepare)(struct snd_sof_widget *swidget,
166 			   struct snd_pcm_hw_params *fe_params,
167 			   struct snd_sof_platform_stream_params *platform_params,
168 			   struct snd_pcm_hw_params *source_params, int dir);
169 	void (*ipc_unprepare)(struct snd_sof_widget *swidget);
170 };
171 
172 /**
173  * struct sof_ipc_tplg_ops - IPC-specific topology ops
174  * @widget: Array of pointers to IPC-specific ops for widgets. This should always be of size
175  *	    SND_SOF_DAPM_TYPE_COUNT i.e one per widget type. Unsupported widget types will be
176  *	    initialized to 0.
177  * @control: Pointer to the IPC-specific ops for topology kcontrol IO
178  * @route_setup: Function pointer for setting up pipeline connections
179  * @route_free: Function pointer for freeing pipeline connections.
180  * @token_list: List of all tokens supported by the IPC version. The size of the token_list
181  *		array should be SOF_TOKEN_COUNT. The unused elements in the array will be
182  *		initialized to 0.
183  * @control_setup: Function pointer for setting up kcontrol IPC-specific data
184  * @control_free: Function pointer for freeing kcontrol IPC-specific data
185  * @pipeline_complete: Function pointer for pipeline complete IPC
186  * @widget_setup: Function pointer for setting up setup in the DSP
187  * @widget_free: Function pointer for freeing widget in the DSP
188  * @dai_config: Function pointer for sending DAI config IPC to the DSP
189  * @dai_get_clk: Function pointer for getting the DAI clock setting
190  * @set_up_all_pipelines: Function pointer for setting up all topology pipelines
191  * @tear_down_all_pipelines: Function pointer for tearing down all topology pipelines
192  * @parse_manifest: Function pointer for ipc4 specific parsing of topology manifest
193  * @link_setup: Function pointer for IPC-specific DAI link set up
194  *
195  * Note: function pointers (ops) are optional
196  */
197 struct sof_ipc_tplg_ops {
198 	const struct sof_ipc_tplg_widget_ops *widget;
199 	const struct sof_ipc_tplg_control_ops *control;
200 	int (*route_setup)(struct snd_sof_dev *sdev, struct snd_sof_route *sroute);
201 	int (*route_free)(struct snd_sof_dev *sdev, struct snd_sof_route *sroute);
202 	const struct sof_token_info *token_list;
203 	int (*control_setup)(struct snd_sof_dev *sdev, struct snd_sof_control *scontrol);
204 	int (*control_free)(struct snd_sof_dev *sdev, struct snd_sof_control *scontrol);
205 	int (*pipeline_complete)(struct snd_sof_dev *sdev, struct snd_sof_widget *swidget);
206 	int (*widget_setup)(struct snd_sof_dev *sdev, struct snd_sof_widget *swidget);
207 	int (*widget_free)(struct snd_sof_dev *sdev, struct snd_sof_widget *swidget);
208 	int (*dai_config)(struct snd_sof_dev *sdev, struct snd_sof_widget *swidget,
209 			  unsigned int flags, struct snd_sof_dai_config_data *data);
210 	int (*dai_get_clk)(struct snd_sof_dev *sdev, struct snd_sof_dai *dai, int clk_type);
211 	int (*set_up_all_pipelines)(struct snd_sof_dev *sdev, bool verify);
212 	int (*tear_down_all_pipelines)(struct snd_sof_dev *sdev, bool verify);
213 	int (*parse_manifest)(struct snd_soc_component *scomp, int index,
214 			      struct snd_soc_tplg_manifest *man);
215 	int (*link_setup)(struct snd_sof_dev *sdev, struct snd_soc_dai_link *link);
216 };
217 
218 /** struct snd_sof_tuple - Tuple info
219  * @token:	Token ID
220  * @value:	union of a string or a u32 values
221  */
222 struct snd_sof_tuple {
223 	u32 token;
224 	union {
225 		u32 v;
226 		const char *s;
227 	} value;
228 };
229 
230 /*
231  * List of SOF token ID's. The order of ID's does not matter as token arrays are looked up based on
232  * the ID.
233  */
234 enum sof_tokens {
235 	SOF_PCM_TOKENS,
236 	SOF_PIPELINE_TOKENS,
237 	SOF_SCHED_TOKENS,
238 	SOF_ASRC_TOKENS,
239 	SOF_SRC_TOKENS,
240 	SOF_COMP_TOKENS,
241 	SOF_BUFFER_TOKENS,
242 	SOF_VOLUME_TOKENS,
243 	SOF_PROCESS_TOKENS,
244 	SOF_DAI_TOKENS,
245 	SOF_DAI_LINK_TOKENS,
246 	SOF_HDA_TOKENS,
247 	SOF_SSP_TOKENS,
248 	SOF_ALH_TOKENS,
249 	SOF_DMIC_TOKENS,
250 	SOF_DMIC_PDM_TOKENS,
251 	SOF_ESAI_TOKENS,
252 	SOF_SAI_TOKENS,
253 	SOF_AFE_TOKENS,
254 	SOF_CORE_TOKENS,
255 	SOF_COMP_EXT_TOKENS,
256 	SOF_IN_AUDIO_FORMAT_TOKENS,
257 	SOF_OUT_AUDIO_FORMAT_TOKENS,
258 	SOF_AUDIO_FORMAT_BUFFER_SIZE_TOKENS,
259 	SOF_COPIER_GATEWAY_CFG_TOKENS,
260 	SOF_COPIER_TOKENS,
261 	SOF_AUDIO_FMT_NUM_TOKENS,
262 	SOF_COPIER_FORMAT_TOKENS,
263 	SOF_GAIN_TOKENS,
264 	SOF_ACPDMIC_TOKENS,
265 	SOF_ACPI2S_TOKENS,
266 
267 	/* this should be the last */
268 	SOF_TOKEN_COUNT,
269 };
270 
271 /**
272  * struct sof_topology_token - SOF topology token definition
273  * @token:		Token number
274  * @type:		Token type
275  * @get_token:		Function pointer to parse the token value and save it in a object
276  * @offset:		Offset within an object to save the token value into
277  */
278 struct sof_topology_token {
279 	u32 token;
280 	u32 type;
281 	int (*get_token)(void *elem, void *object, u32 offset);
282 	u32 offset;
283 };
284 
285 struct sof_token_info {
286 	const char *name;
287 	const struct sof_topology_token *tokens;
288 	int count;
289 };
290 
291 /**
292  * struct snd_sof_pcm_stream_pipeline_list - List of pipelines associated with a PCM stream
293  * @count: number of pipeline widgets in the @pipe_widgets array
294  * @pipelines: array of pipelines
295  */
296 struct snd_sof_pcm_stream_pipeline_list {
297 	u32 count;
298 	struct snd_sof_pipeline **pipelines;
299 };
300 
301 /* PCM stream, mapped to FW component  */
302 struct snd_sof_pcm_stream {
303 	u32 comp_id;
304 	struct snd_dma_buffer page_table;
305 	struct sof_ipc_stream_posn posn;
306 	struct snd_pcm_substream *substream;
307 	struct snd_compr_stream *cstream;
308 	struct work_struct period_elapsed_work;
309 	struct snd_soc_dapm_widget_list *list; /* list of connected DAPM widgets */
310 	bool d0i3_compatible; /* DSP can be in D0I3 when this pcm is opened */
311 	/*
312 	 * flag to indicate that the DSP pipelines should be kept
313 	 * active or not while suspending the stream
314 	 */
315 	bool suspend_ignored;
316 	struct snd_sof_pcm_stream_pipeline_list pipeline_list;
317 
318 	/* used by IPC implementation and core does not touch it */
319 	void *private;
320 };
321 
322 /* ALSA SOF PCM device */
323 struct snd_sof_pcm {
324 	struct snd_soc_component *scomp;
325 	struct snd_soc_tplg_pcm pcm;
326 	struct snd_sof_pcm_stream stream[2];
327 	struct list_head list;	/* list in sdev pcm list */
328 	struct snd_pcm_hw_params params[2];
329 	bool prepared[2]; /* PCM_PARAMS set successfully */
330 };
331 
332 struct snd_sof_led_control {
333 	unsigned int use_led;
334 	unsigned int direction;
335 	int led_value;
336 };
337 
338 /* ALSA SOF Kcontrol device */
339 struct snd_sof_control {
340 	struct snd_soc_component *scomp;
341 	const char *name;
342 	int comp_id;
343 	int min_volume_step; /* min volume step for volume_table */
344 	int max_volume_step; /* max volume step for volume_table */
345 	int num_channels;
346 	unsigned int access;
347 	int info_type;
348 	int index; /* pipeline ID */
349 	void *priv; /* private data copied from topology */
350 	size_t priv_size; /* size of private data */
351 	size_t max_size;
352 	void *ipc_control_data;
353 	int max; /* applicable to volume controls */
354 	u32 size;	/* cdata size */
355 	u32 *volume_table; /* volume table computed from tlv data*/
356 
357 	struct list_head list;	/* list in sdev control list */
358 
359 	struct snd_sof_led_control led_ctl;
360 
361 	/* if true, the control's data needs to be updated from Firmware */
362 	bool comp_data_dirty;
363 };
364 
365 /** struct snd_sof_dai_link - DAI link info
366  * @tuples: array of parsed tuples
367  * @num_tuples: number of tuples in the tuples array
368  * @link: Pointer to snd_soc_dai_link
369  * @hw_configs: Pointer to hw configs in topology
370  * @num_hw_configs: Number of hw configs in topology
371  * @default_hw_cfg_id: Default hw config ID
372  * @type: DAI type
373  * @list: item in snd_sof_dev dai_link list
374  */
375 struct snd_sof_dai_link {
376 	struct snd_sof_tuple *tuples;
377 	int num_tuples;
378 	struct snd_soc_dai_link *link;
379 	struct snd_soc_tplg_hw_config *hw_configs;
380 	int num_hw_configs;
381 	int default_hw_cfg_id;
382 	int type;
383 	struct list_head list;
384 };
385 
386 /* ASoC SOF DAPM widget */
387 struct snd_sof_widget {
388 	struct snd_soc_component *scomp;
389 	int comp_id;
390 	int pipeline_id;
391 	/*
392 	 * the prepared flag is used to indicate that a widget has been prepared for getting set
393 	 * up in the DSP.
394 	 */
395 	bool prepared;
396 
397 	struct mutex setup_mutex; /* to protect the swidget setup and free operations */
398 
399 	/*
400 	 * use_count is protected by the PCM mutex held by the core and the
401 	 * setup_mutex against non stream domain races (kcontrol access for
402 	 * example)
403 	 */
404 	int use_count;
405 
406 	int core;
407 	int id; /* id is the DAPM widget type */
408 	/*
409 	 * Instance ID is set dynamically when the widget gets set up in the FW. It should be
410 	 * unique for each module type across all pipelines. This will not be used in SOF_IPC.
411 	 */
412 	int instance_id;
413 
414 	/*
415 	 * Flag indicating if the widget should be set up dynamically when a PCM is opened.
416 	 * This flag is only set for the scheduler type widget in topology. During topology
417 	 * loading, this flag is propagated to all the widgets belonging to the same pipeline.
418 	 * When this flag is not set, a widget is set up at the time of topology loading
419 	 * and retained until the DSP enters D3. It will need to be set up again when resuming
420 	 * from D3.
421 	 */
422 	bool dynamic_pipeline_widget;
423 
424 	struct snd_soc_dapm_widget *widget;
425 	struct list_head list;	/* list in sdev widget list */
426 	struct snd_sof_pipeline *spipe;
427 	void *module_info;
428 
429 	const guid_t uuid;
430 
431 	int num_tuples;
432 	struct snd_sof_tuple *tuples;
433 
434 	/*
435 	 * The allowed range for num_sink/source_pins is [0, SOF_WIDGET_MAX_NUM_PINS].
436 	 * Widgets may have zero sink or source pins, for example the tone widget has
437 	 * zero sink pins.
438 	 */
439 	u32 num_sink_pins;
440 	u32 num_source_pins;
441 
442 	/*
443 	 * The sink/source pin binding array, it takes the form of
444 	 * [widget_name_connected_to_pin0, widget_name_connected_to_pin1, ...],
445 	 * with the index as the queue ID.
446 	 *
447 	 * The array is used for special pin binding. Note that even if there
448 	 * is only one sink/source pin requires special pin binding, pin binding
449 	 * should be defined for all sink/source pins in topology, for pin(s) that
450 	 * are not used, give the value "NotConnected".
451 	 *
452 	 * If pin binding is not defined in topology, nothing to parse in the kernel,
453 	 * sink_pin_binding and src_pin_binding shall be NULL.
454 	 */
455 	char **sink_pin_binding;
456 	char **src_pin_binding;
457 
458 	struct ida src_queue_ida;
459 	struct ida sink_queue_ida;
460 
461 	void *private;		/* core does not touch this */
462 };
463 
464 /** struct snd_sof_pipeline - ASoC SOF pipeline
465  * @pipe_widget: Pointer to the pipeline widget
466  * @started_count: Count of number of PCM's that have started this pipeline
467  * @paused_count: Count of number of PCM's that have started and have currently paused this
468 		  pipeline
469  * @complete: flag used to indicate that pipeline set up is complete.
470  * @list: List item in sdev pipeline_list
471  */
472 struct snd_sof_pipeline {
473 	struct snd_sof_widget *pipe_widget;
474 	int started_count;
475 	int paused_count;
476 	int complete;
477 	struct list_head list;
478 };
479 
480 /* ASoC SOF DAPM route */
481 struct snd_sof_route {
482 	struct snd_soc_component *scomp;
483 
484 	struct snd_soc_dapm_route *route;
485 	struct list_head list;	/* list in sdev route list */
486 	struct snd_sof_widget *src_widget;
487 	struct snd_sof_widget *sink_widget;
488 	bool setup;
489 
490 	int src_queue_id;
491 	int dst_queue_id;
492 
493 	void *private;
494 };
495 
496 /* ASoC DAI device */
497 struct snd_sof_dai {
498 	struct snd_soc_component *scomp;
499 	const char *name;
500 
501 	int number_configs;
502 	int current_config;
503 	struct list_head list;	/* list in sdev dai list */
504 	void *private;
505 };
506 
507 /*
508  * Kcontrols.
509  */
510 
511 int snd_sof_volume_get(struct snd_kcontrol *kcontrol,
512 		       struct snd_ctl_elem_value *ucontrol);
513 int snd_sof_volume_put(struct snd_kcontrol *kcontrol,
514 		       struct snd_ctl_elem_value *ucontrol);
515 int snd_sof_volume_info(struct snd_kcontrol *kcontrol,
516 			struct snd_ctl_elem_info *uinfo);
517 int snd_sof_switch_get(struct snd_kcontrol *kcontrol,
518 		       struct snd_ctl_elem_value *ucontrol);
519 int snd_sof_switch_put(struct snd_kcontrol *kcontrol,
520 		       struct snd_ctl_elem_value *ucontrol);
521 int snd_sof_enum_get(struct snd_kcontrol *kcontrol,
522 		     struct snd_ctl_elem_value *ucontrol);
523 int snd_sof_enum_put(struct snd_kcontrol *kcontrol,
524 		     struct snd_ctl_elem_value *ucontrol);
525 int snd_sof_bytes_get(struct snd_kcontrol *kcontrol,
526 		      struct snd_ctl_elem_value *ucontrol);
527 int snd_sof_bytes_put(struct snd_kcontrol *kcontrol,
528 		      struct snd_ctl_elem_value *ucontrol);
529 int snd_sof_bytes_ext_put(struct snd_kcontrol *kcontrol,
530 			  const unsigned int __user *binary_data,
531 			  unsigned int size);
532 int snd_sof_bytes_ext_get(struct snd_kcontrol *kcontrol,
533 			  unsigned int __user *binary_data,
534 			  unsigned int size);
535 int snd_sof_bytes_ext_volatile_get(struct snd_kcontrol *kcontrol, unsigned int __user *binary_data,
536 				   unsigned int size);
537 void snd_sof_control_notify(struct snd_sof_dev *sdev,
538 			    struct sof_ipc_ctrl_data *cdata);
539 
540 /*
541  * Topology.
542  * There is no snd_sof_free_topology since topology components will
543  * be freed by snd_soc_unregister_component,
544  */
545 int snd_sof_load_topology(struct snd_soc_component *scomp, const char *file);
546 
547 /*
548  * Stream IPC
549  */
550 int snd_sof_ipc_stream_posn(struct snd_soc_component *scomp,
551 			    struct snd_sof_pcm *spcm, int direction,
552 			    struct sof_ipc_stream_posn *posn);
553 
554 struct snd_sof_widget *snd_sof_find_swidget(struct snd_soc_component *scomp,
555 					    const char *name);
556 struct snd_sof_widget *
557 snd_sof_find_swidget_sname(struct snd_soc_component *scomp,
558 			   const char *pcm_name, int dir);
559 struct snd_sof_dai *snd_sof_find_dai(struct snd_soc_component *scomp,
560 				     const char *name);
561 
562 static inline
563 struct snd_sof_pcm *snd_sof_find_spcm_dai(struct snd_soc_component *scomp,
564 					  struct snd_soc_pcm_runtime *rtd)
565 {
566 	struct snd_sof_dev *sdev = snd_soc_component_get_drvdata(scomp);
567 	struct snd_sof_pcm *spcm;
568 
569 	list_for_each_entry(spcm, &sdev->pcm_list, list) {
570 		if (le32_to_cpu(spcm->pcm.dai_id) == rtd->dai_link->id)
571 			return spcm;
572 	}
573 
574 	return NULL;
575 }
576 
577 struct snd_sof_pcm *snd_sof_find_spcm_name(struct snd_soc_component *scomp,
578 					   const char *name);
579 struct snd_sof_pcm *snd_sof_find_spcm_comp(struct snd_soc_component *scomp,
580 					   unsigned int comp_id,
581 					   int *direction);
582 void snd_sof_pcm_period_elapsed(struct snd_pcm_substream *substream);
583 void snd_sof_pcm_init_elapsed_work(struct work_struct *work);
584 
585 #if IS_ENABLED(CONFIG_SND_SOC_SOF_COMPRESS)
586 void snd_sof_compr_fragment_elapsed(struct snd_compr_stream *cstream);
587 void snd_sof_compr_init_elapsed_work(struct work_struct *work);
588 #else
589 static inline void snd_sof_compr_fragment_elapsed(struct snd_compr_stream *cstream) { }
590 static inline void snd_sof_compr_init_elapsed_work(struct work_struct *work) { }
591 #endif
592 
593 /* DAI link fixup */
594 int sof_pcm_dai_link_fixup(struct snd_soc_pcm_runtime *rtd, struct snd_pcm_hw_params *params);
595 
596 /* PM */
597 bool snd_sof_stream_suspend_ignored(struct snd_sof_dev *sdev);
598 bool snd_sof_dsp_only_d0i3_compatible_stream_active(struct snd_sof_dev *sdev);
599 
600 /* Machine driver enumeration */
601 int sof_machine_register(struct snd_sof_dev *sdev, void *pdata);
602 void sof_machine_unregister(struct snd_sof_dev *sdev, void *pdata);
603 
604 int sof_widget_setup(struct snd_sof_dev *sdev, struct snd_sof_widget *swidget);
605 int sof_widget_free(struct snd_sof_dev *sdev, struct snd_sof_widget *swidget);
606 int sof_route_setup(struct snd_sof_dev *sdev, struct snd_soc_dapm_widget *wsource,
607 		    struct snd_soc_dapm_widget *wsink);
608 
609 /* PCM */
610 int sof_widget_list_setup(struct snd_sof_dev *sdev, struct snd_sof_pcm *spcm,
611 			  struct snd_pcm_hw_params *fe_params,
612 			  struct snd_sof_platform_stream_params *platform_params,
613 			  int dir);
614 int sof_widget_list_free(struct snd_sof_dev *sdev, struct snd_sof_pcm *spcm, int dir);
615 int sof_pcm_dsp_pcm_free(struct snd_pcm_substream *substream, struct snd_sof_dev *sdev,
616 			 struct snd_sof_pcm *spcm);
617 int sof_pcm_stream_free(struct snd_sof_dev *sdev, struct snd_pcm_substream *substream,
618 			struct snd_sof_pcm *spcm, int dir, bool free_widget_list);
619 int get_token_u32(void *elem, void *object, u32 offset);
620 int get_token_u16(void *elem, void *object, u32 offset);
621 int get_token_comp_format(void *elem, void *object, u32 offset);
622 int get_token_dai_type(void *elem, void *object, u32 offset);
623 int get_token_uuid(void *elem, void *object, u32 offset);
624 int get_token_string(void *elem, void *object, u32 offset);
625 int sof_update_ipc_object(struct snd_soc_component *scomp, void *object, enum sof_tokens token_id,
626 			  struct snd_sof_tuple *tuples, int num_tuples,
627 			  size_t object_size, int token_instance_num);
628 u32 vol_compute_gain(u32 value, int *tlv);
629 #endif
630