]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - include/sound/soc-topology.h
Linux 4.5-rc1
[mirror_ubuntu-artful-kernel.git] / include / sound / soc-topology.h
CommitLineData
8a978234
LG
1/*
2 * linux/sound/soc-topology.h -- ALSA SoC Firmware Controls and DAPM
3 *
4 * Copyright (C) 2012 Texas Instruments Inc.
5 * Copyright (C) 2015 Intel Corporation.
6 *
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.
10 *
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.
13 */
14
15#ifndef __LINUX_SND_SOC_TPLG_H
16#define __LINUX_SND_SOC_TPLG_H
17
18#include <sound/asoc.h>
19#include <linux/list.h>
20
21struct firmware;
22struct snd_kcontrol;
23struct snd_soc_tplg_pcm_be;
24struct snd_ctl_elem_value;
25struct snd_ctl_elem_info;
26struct snd_soc_dapm_widget;
27struct snd_soc_component;
28struct snd_soc_tplg_pcm_fe;
29struct snd_soc_dapm_context;
30struct snd_soc_card;
31
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 */
34
35/* dynamic object type */
36enum snd_soc_dobj_type {
37 SND_SOC_DOBJ_NONE = 0, /* object is not dynamic */
38 SND_SOC_DOBJ_MIXER,
39 SND_SOC_DOBJ_ENUM,
40 SND_SOC_DOBJ_BYTES,
41 SND_SOC_DOBJ_PCM,
42 SND_SOC_DOBJ_DAI_LINK,
43 SND_SOC_DOBJ_CODEC_LINK,
44 SND_SOC_DOBJ_WIDGET,
45};
46
47/* dynamic control object */
48struct snd_soc_dobj_control {
49 struct snd_kcontrol *kcontrol;
50 char **dtexts;
51 unsigned long *dvalues;
52};
53
54/* dynamic widget object */
55struct snd_soc_dobj_widget {
56 unsigned int kcontrol_enum:1; /* this widget is an enum kcontrol */
57};
58
59/* dynamic PCM DAI object */
60struct snd_soc_dobj_pcm_dai {
61 struct snd_soc_tplg_pcm_dai *pd;
62 unsigned int count;
63};
64
65/* generic dynamic object - all dynamic objects belong to this struct */
66struct snd_soc_dobj {
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;
71 union {
72 struct snd_soc_dobj_control control;
73 struct snd_soc_dobj_widget widget;
74 struct snd_soc_dobj_pcm_dai pcm_dai;
75 };
76 void *private; /* core does not touch this */
77};
78
79/*
80 * Kcontrol operations - used to map handlers onto firmware based controls.
81 */
82struct snd_soc_tplg_kcontrol_ops {
83 u32 id;
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);
90};
91
1a3232d2
ML
92/* Bytes ext operations, for TLV byte controls */
93struct snd_soc_tplg_bytes_ext_ops {
94 u32 id;
a1e5e7e9
M
95 int (*get)(struct snd_kcontrol *kcontrol, unsigned int __user *bytes,
96 unsigned int size);
97 int (*put)(struct snd_kcontrol *kcontrol,
98 const unsigned int __user *bytes, unsigned int size);
1a3232d2
ML
99};
100
8a978234
LG
101/*
102 * DAPM widget event handlers - used to map handlers onto widgets.
103 */
104struct snd_soc_tplg_widget_events {
105 u16 type;
106 int (*event_handler)(struct snd_soc_dapm_widget *w,
107 struct snd_kcontrol *k, int event);
108};
109
110/*
111 * Public API - Used by component drivers to load and unload dynamic objects
112 * and their resources.
113 */
114struct snd_soc_tplg_ops {
115
116 /* external kcontrol init - used for any driver specific init */
117 int (*control_load)(struct snd_soc_component *,
118 struct snd_kcontrol_new *, struct snd_soc_tplg_ctl_hdr *);
119 int (*control_unload)(struct snd_soc_component *,
120 struct snd_soc_dobj *);
121
122 /* external widget init - used for any driver specific init */
123 int (*widget_load)(struct snd_soc_component *,
124 struct snd_soc_dapm_widget *,
125 struct snd_soc_tplg_dapm_widget *);
126 int (*widget_unload)(struct snd_soc_component *,
127 struct snd_soc_dobj *);
128
129 /* FE - used for any driver specific init */
130 int (*pcm_dai_load)(struct snd_soc_component *,
131 struct snd_soc_tplg_pcm_dai *pcm_dai, int num_fe);
132 int (*pcm_dai_unload)(struct snd_soc_component *,
133 struct snd_soc_dobj *);
134
135 /* callback to handle vendor bespoke data */
136 int (*vendor_load)(struct snd_soc_component *,
137 struct snd_soc_tplg_hdr *);
138 int (*vendor_unload)(struct snd_soc_component *,
139 struct snd_soc_tplg_hdr *);
140
141 /* completion - called at completion of firmware loading */
142 void (*complete)(struct snd_soc_component *);
143
144 /* manifest - optional to inform component of manifest */
145 int (*manifest)(struct snd_soc_component *,
146 struct snd_soc_tplg_manifest *);
147
88a17d8f 148 /* vendor specific kcontrol handlers available for binding */
8a978234
LG
149 const struct snd_soc_tplg_kcontrol_ops *io_ops;
150 int io_ops_count;
1a3232d2
ML
151
152 /* vendor specific bytes ext handlers available for binding */
153 const struct snd_soc_tplg_bytes_ext_ops *bytes_ext_ops;
154 int bytes_ext_ops_count;
8a978234
LG
155};
156
78b50f39
MB
157#ifdef CONFIG_SND_SOC_TOPOLOGY
158
8a978234
LG
159/* gets a pointer to data from the firmware block header */
160static inline const void *snd_soc_tplg_get_data(struct snd_soc_tplg_hdr *hdr)
161{
162 const void *ptr = hdr;
163
164 return ptr + sizeof(*hdr);
165}
166
167/* Dynamic Object loading and removal for component drivers */
168int snd_soc_tplg_component_load(struct snd_soc_component *comp,
169 struct snd_soc_tplg_ops *ops, const struct firmware *fw,
170 u32 index);
171int snd_soc_tplg_component_remove(struct snd_soc_component *comp, u32 index);
172
173/* Widget removal - widgets also removed wth component API */
174void snd_soc_tplg_widget_remove(struct snd_soc_dapm_widget *w);
175void snd_soc_tplg_widget_remove_all(struct snd_soc_dapm_context *dapm,
176 u32 index);
177
178/* Binds event handlers to dynamic widgets */
179int snd_soc_tplg_widget_bind_event(struct snd_soc_dapm_widget *w,
180 const struct snd_soc_tplg_widget_events *events, int num_events,
181 u16 event_type);
182
78b50f39
MB
183#else
184
185static inline int snd_soc_tplg_component_remove(struct snd_soc_component *comp,
186 u32 index)
187{
188 return 0;
189}
190
191#endif
192
8a978234 193#endif