2 * linux/sound/soc-topology.h -- ALSA SoC Firmware Controls and DAPM
4 * Copyright (C) 2012 Texas Instruments Inc.
5 * Copyright (C) 2015 Intel Corporation.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
11 * Simple file API to load FW that includes mixers, coefficients, DAPM graphs,
12 * algorithms, equalisers, DAIs, widgets, FE caps, BE caps, codec link caps etc.
15 #ifndef __LINUX_SND_SOC_TPLG_H
16 #define __LINUX_SND_SOC_TPLG_H
18 #include <sound/asoc.h>
19 #include <linux/list.h>
23 struct snd_soc_tplg_pcm_be
;
24 struct snd_ctl_elem_value
;
25 struct snd_ctl_elem_info
;
26 struct snd_soc_dapm_widget
;
27 struct snd_soc_component
;
28 struct snd_soc_tplg_pcm_fe
;
29 struct snd_soc_dapm_context
;
32 /* object scan be loaded and unloaded in groups with identfying indexes */
33 #define SND_SOC_TPLG_INDEX_ALL 0 /* ID that matches all FW objects */
35 /* dynamic object type */
36 enum snd_soc_dobj_type
{
37 SND_SOC_DOBJ_NONE
= 0, /* object is not dynamic */
42 SND_SOC_DOBJ_DAI_LINK
,
43 SND_SOC_DOBJ_CODEC_LINK
,
47 /* dynamic control object */
48 struct snd_soc_dobj_control
{
49 struct snd_kcontrol
*kcontrol
;
51 unsigned long *dvalues
;
54 /* dynamic widget object */
55 struct snd_soc_dobj_widget
{
56 unsigned int kcontrol_enum
:1; /* this widget is an enum kcontrol */
59 /* dynamic PCM DAI object */
60 struct snd_soc_dobj_pcm_dai
{
61 struct snd_soc_tplg_pcm_dai
*pd
;
65 /* generic dynamic object - all dynamic objects belong to this struct */
67 enum snd_soc_dobj_type type
;
68 unsigned int index
; /* objects can belong in different groups */
69 struct list_head list
;
70 struct snd_soc_tplg_ops
*ops
;
72 struct snd_soc_dobj_control control
;
73 struct snd_soc_dobj_widget widget
;
74 struct snd_soc_dobj_pcm_dai pcm_dai
;
76 void *private; /* core does not touch this */
80 * Kcontrol operations - used to map handlers onto firmware based controls.
82 struct snd_soc_tplg_kcontrol_ops
{
84 int (*get
)(struct snd_kcontrol
*kcontrol
,
85 struct snd_ctl_elem_value
*ucontrol
);
86 int (*put
)(struct snd_kcontrol
*kcontrol
,
87 struct snd_ctl_elem_value
*ucontrol
);
88 int (*info
)(struct snd_kcontrol
*kcontrol
,
89 struct snd_ctl_elem_info
*uinfo
);
93 * DAPM widget event handlers - used to map handlers onto widgets.
95 struct snd_soc_tplg_widget_events
{
97 int (*event_handler
)(struct snd_soc_dapm_widget
*w
,
98 struct snd_kcontrol
*k
, int event
);
102 * Public API - Used by component drivers to load and unload dynamic objects
103 * and their resources.
105 struct snd_soc_tplg_ops
{
107 /* external kcontrol init - used for any driver specific init */
108 int (*control_load
)(struct snd_soc_component
*,
109 struct snd_kcontrol_new
*, struct snd_soc_tplg_ctl_hdr
*);
110 int (*control_unload
)(struct snd_soc_component
*,
111 struct snd_soc_dobj
*);
113 /* external widget init - used for any driver specific init */
114 int (*widget_load
)(struct snd_soc_component
*,
115 struct snd_soc_dapm_widget
*,
116 struct snd_soc_tplg_dapm_widget
*);
117 int (*widget_unload
)(struct snd_soc_component
*,
118 struct snd_soc_dobj
*);
120 /* FE - used for any driver specific init */
121 int (*pcm_dai_load
)(struct snd_soc_component
*,
122 struct snd_soc_tplg_pcm_dai
*pcm_dai
, int num_fe
);
123 int (*pcm_dai_unload
)(struct snd_soc_component
*,
124 struct snd_soc_dobj
*);
126 /* callback to handle vendor bespoke data */
127 int (*vendor_load
)(struct snd_soc_component
*,
128 struct snd_soc_tplg_hdr
*);
129 int (*vendor_unload
)(struct snd_soc_component
*,
130 struct snd_soc_tplg_hdr
*);
132 /* completion - called at completion of firmware loading */
133 void (*complete
)(struct snd_soc_component
*);
135 /* manifest - optional to inform component of manifest */
136 int (*manifest
)(struct snd_soc_component
*,
137 struct snd_soc_tplg_manifest
*);
139 /* bespoke kcontrol handlers available for binding */
140 const struct snd_soc_tplg_kcontrol_ops
*io_ops
;
144 /* gets a pointer to data from the firmware block header */
145 static inline const void *snd_soc_tplg_get_data(struct snd_soc_tplg_hdr
*hdr
)
147 const void *ptr
= hdr
;
149 return ptr
+ sizeof(*hdr
);
152 /* Dynamic Object loading and removal for component drivers */
153 int snd_soc_tplg_component_load(struct snd_soc_component
*comp
,
154 struct snd_soc_tplg_ops
*ops
, const struct firmware
*fw
,
156 int snd_soc_tplg_component_remove(struct snd_soc_component
*comp
, u32 index
);
158 /* Widget removal - widgets also removed wth component API */
159 void snd_soc_tplg_widget_remove(struct snd_soc_dapm_widget
*w
);
160 void snd_soc_tplg_widget_remove_all(struct snd_soc_dapm_context
*dapm
,
163 /* Binds event handlers to dynamic widgets */
164 int snd_soc_tplg_widget_bind_event(struct snd_soc_dapm_widget
*w
,
165 const struct snd_soc_tplg_widget_events
*events
, int num_events
,