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 /* generic dynamic object - all dynamic objects belong to this struct */
61 enum snd_soc_dobj_type type
;
62 unsigned int index
; /* objects can belong in different groups */
63 struct list_head list
;
64 struct snd_soc_tplg_ops
*ops
;
66 struct snd_soc_dobj_control control
;
67 struct snd_soc_dobj_widget widget
;
69 void *private; /* core does not touch this */
73 * Kcontrol operations - used to map handlers onto firmware based controls.
75 struct snd_soc_tplg_kcontrol_ops
{
77 int (*get
)(struct snd_kcontrol
*kcontrol
,
78 struct snd_ctl_elem_value
*ucontrol
);
79 int (*put
)(struct snd_kcontrol
*kcontrol
,
80 struct snd_ctl_elem_value
*ucontrol
);
81 int (*info
)(struct snd_kcontrol
*kcontrol
,
82 struct snd_ctl_elem_info
*uinfo
);
85 /* Bytes ext operations, for TLV byte controls */
86 struct snd_soc_tplg_bytes_ext_ops
{
88 int (*get
)(struct snd_kcontrol
*kcontrol
, unsigned int __user
*bytes
,
90 int (*put
)(struct snd_kcontrol
*kcontrol
,
91 const unsigned int __user
*bytes
, unsigned int size
);
95 * DAPM widget event handlers - used to map handlers onto widgets.
97 struct snd_soc_tplg_widget_events
{
99 int (*event_handler
)(struct snd_soc_dapm_widget
*w
,
100 struct snd_kcontrol
*k
, int event
);
104 * Public API - Used by component drivers to load and unload dynamic objects
105 * and their resources.
107 struct snd_soc_tplg_ops
{
109 /* external kcontrol init - used for any driver specific init */
110 int (*control_load
)(struct snd_soc_component
*,
111 struct snd_kcontrol_new
*, struct snd_soc_tplg_ctl_hdr
*);
112 int (*control_unload
)(struct snd_soc_component
*,
113 struct snd_soc_dobj
*);
115 /* external widget init - used for any driver specific init */
116 int (*widget_load
)(struct snd_soc_component
*,
117 struct snd_soc_dapm_widget
*,
118 struct snd_soc_tplg_dapm_widget
*);
119 int (*widget_unload
)(struct snd_soc_component
*,
120 struct snd_soc_dobj
*);
122 /* FE DAI - used for any driver specific init */
123 int (*dai_load
)(struct snd_soc_component
*,
124 struct snd_soc_dai_driver
*dai_drv
);
125 int (*dai_unload
)(struct snd_soc_component
*,
126 struct snd_soc_dobj
*);
128 /* DAI link - used for any driver specific init */
129 int (*link_load
)(struct snd_soc_component
*,
130 struct snd_soc_dai_link
*link
);
131 int (*link_unload
)(struct snd_soc_component
*,
132 struct snd_soc_dobj
*);
134 /* callback to handle vendor bespoke data */
135 int (*vendor_load
)(struct snd_soc_component
*,
136 struct snd_soc_tplg_hdr
*);
137 int (*vendor_unload
)(struct snd_soc_component
*,
138 struct snd_soc_tplg_hdr
*);
140 /* completion - called at completion of firmware loading */
141 void (*complete
)(struct snd_soc_component
*);
143 /* manifest - optional to inform component of manifest */
144 int (*manifest
)(struct snd_soc_component
*,
145 struct snd_soc_tplg_manifest
*);
147 /* vendor specific kcontrol handlers available for binding */
148 const struct snd_soc_tplg_kcontrol_ops
*io_ops
;
151 /* vendor specific bytes ext handlers available for binding */
152 const struct snd_soc_tplg_bytes_ext_ops
*bytes_ext_ops
;
153 int bytes_ext_ops_count
;
156 #ifdef CONFIG_SND_SOC_TOPOLOGY
158 /* gets a pointer to data from the firmware block header */
159 static inline const void *snd_soc_tplg_get_data(struct snd_soc_tplg_hdr
*hdr
)
161 const void *ptr
= hdr
;
163 return ptr
+ sizeof(*hdr
);
166 /* Dynamic Object loading and removal for component drivers */
167 int snd_soc_tplg_component_load(struct snd_soc_component
*comp
,
168 struct snd_soc_tplg_ops
*ops
, const struct firmware
*fw
,
170 int snd_soc_tplg_component_remove(struct snd_soc_component
*comp
, u32 index
);
172 /* Widget removal - widgets also removed wth component API */
173 void snd_soc_tplg_widget_remove(struct snd_soc_dapm_widget
*w
);
174 void snd_soc_tplg_widget_remove_all(struct snd_soc_dapm_context
*dapm
,
177 /* Binds event handlers to dynamic widgets */
178 int snd_soc_tplg_widget_bind_event(struct snd_soc_dapm_widget
*w
,
179 const struct snd_soc_tplg_widget_events
*events
, int num_events
,
184 static inline int snd_soc_tplg_component_remove(struct snd_soc_component
*comp
,