]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - include/sound/soc.h
ASoC: Fix use after free
[mirror_ubuntu-jammy-kernel.git] / include / sound / soc.h
CommitLineData
808db4a4
RP
1/*
2 * linux/sound/soc.h -- ALSA SoC Layer
3 *
4 * Author: Liam Girdwood
5 * Created: Aug 11th 2005
6 * Copyright: Wolfson Microelectronics. PLC.
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
12
13#ifndef __LINUX_SND_SOC_H
14#define __LINUX_SND_SOC_H
15
cb470087 16#include <linux/of.h>
808db4a4
RP
17#include <linux/platform_device.h>
18#include <linux/types.h>
d5021ec9 19#include <linux/notifier.h>
4484bb2e 20#include <linux/workqueue.h>
ec67624d
LCM
21#include <linux/interrupt.h>
22#include <linux/kernel.h>
be3ea3b9 23#include <linux/regmap.h>
86767b7d 24#include <linux/log2.h>
808db4a4
RP
25#include <sound/core.h>
26#include <sound/pcm.h>
49681077 27#include <sound/compress_driver.h>
808db4a4
RP
28#include <sound/control.h>
29#include <sound/ac97_codec.h>
30
808db4a4
RP
31/*
32 * Convenience kcontrol builders
33 */
57295073 34#define SOC_DOUBLE_VALUE(xreg, shift_left, shift_right, xmax, xinvert, xautodisable) \
4eaa9819 35 ((unsigned long)&(struct soc_mixer_control) \
30d86ba4
PU
36 {.reg = xreg, .rreg = xreg, .shift = shift_left, \
37 .rshift = shift_right, .max = xmax, .platform_max = xmax, \
57295073
LPC
38 .invert = xinvert, .autodisable = xautodisable})
39#define SOC_SINGLE_VALUE(xreg, xshift, xmax, xinvert, xautodisable) \
40 SOC_DOUBLE_VALUE(xreg, xshift, xshift, xmax, xinvert, xautodisable)
4eaa9819
JS
41#define SOC_SINGLE_VALUE_EXT(xreg, xmax, xinvert) \
42 ((unsigned long)&(struct soc_mixer_control) \
d11bb4a9 43 {.reg = xreg, .max = xmax, .platform_max = xmax, .invert = xinvert})
cdffa775
PU
44#define SOC_DOUBLE_R_VALUE(xlreg, xrreg, xshift, xmax, xinvert) \
45 ((unsigned long)&(struct soc_mixer_control) \
46 {.reg = xlreg, .rreg = xrreg, .shift = xshift, .rshift = xshift, \
47 .max = xmax, .platform_max = xmax, .invert = xinvert})
229e3fdc
MB
48#define SOC_DOUBLE_R_RANGE_VALUE(xlreg, xrreg, xshift, xmin, xmax, xinvert) \
49 ((unsigned long)&(struct soc_mixer_control) \
50 {.reg = xlreg, .rreg = xrreg, .shift = xshift, .rshift = xshift, \
51 .min = xmin, .max = xmax, .platform_max = xmax, .invert = xinvert})
a7a4ac86 52#define SOC_SINGLE(xname, reg, shift, max, invert) \
808db4a4
RP
53{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
54 .info = snd_soc_info_volsw, .get = snd_soc_get_volsw,\
55 .put = snd_soc_put_volsw, \
57295073 56 .private_value = SOC_SINGLE_VALUE(reg, shift, max, invert, 0) }
6c9d8cf6
AT
57#define SOC_SINGLE_RANGE(xname, xreg, xshift, xmin, xmax, xinvert) \
58{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname),\
59 .info = snd_soc_info_volsw_range, .get = snd_soc_get_volsw_range, \
60 .put = snd_soc_put_volsw_range, \
61 .private_value = (unsigned long)&(struct soc_mixer_control) \
9bde4f0b
MB
62 {.reg = xreg, .rreg = xreg, .shift = xshift, \
63 .rshift = xshift, .min = xmin, .max = xmax, \
64 .platform_max = xmax, .invert = xinvert} }
a7a4ac86
PZ
65#define SOC_SINGLE_TLV(xname, reg, shift, max, invert, tlv_array) \
66{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
67 .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ |\
68 SNDRV_CTL_ELEM_ACCESS_READWRITE,\
69 .tlv.p = (tlv_array), \
70 .info = snd_soc_info_volsw, .get = snd_soc_get_volsw,\
71 .put = snd_soc_put_volsw, \
57295073 72 .private_value = SOC_SINGLE_VALUE(reg, shift, max, invert, 0) }
1d99f243
BA
73#define SOC_SINGLE_SX_TLV(xname, xreg, xshift, xmin, xmax, tlv_array) \
74{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
75 .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ | \
76 SNDRV_CTL_ELEM_ACCESS_READWRITE, \
77 .tlv.p = (tlv_array),\
78 .info = snd_soc_info_volsw, \
79 .get = snd_soc_get_volsw_sx,\
80 .put = snd_soc_put_volsw_sx, \
81 .private_value = (unsigned long)&(struct soc_mixer_control) \
82 {.reg = xreg, .rreg = xreg, \
83 .shift = xshift, .rshift = xshift, \
84 .max = xmax, .min = xmin} }
6c9d8cf6
AT
85#define SOC_SINGLE_RANGE_TLV(xname, xreg, xshift, xmin, xmax, xinvert, tlv_array) \
86{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname),\
87 .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ |\
88 SNDRV_CTL_ELEM_ACCESS_READWRITE,\
89 .tlv.p = (tlv_array), \
90 .info = snd_soc_info_volsw_range, \
91 .get = snd_soc_get_volsw_range, .put = snd_soc_put_volsw_range, \
92 .private_value = (unsigned long)&(struct soc_mixer_control) \
9bde4f0b
MB
93 {.reg = xreg, .rreg = xreg, .shift = xshift, \
94 .rshift = xshift, .min = xmin, .max = xmax, \
95 .platform_max = xmax, .invert = xinvert} }
460acbec 96#define SOC_DOUBLE(xname, reg, shift_left, shift_right, max, invert) \
808db4a4
RP
97{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname),\
98 .info = snd_soc_info_volsw, .get = snd_soc_get_volsw, \
99 .put = snd_soc_put_volsw, \
460acbec 100 .private_value = SOC_DOUBLE_VALUE(reg, shift_left, shift_right, \
57295073 101 max, invert, 0) }
4eaa9819 102#define SOC_DOUBLE_R(xname, reg_left, reg_right, xshift, xmax, xinvert) \
808db4a4 103{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname), \
e8f5a103 104 .info = snd_soc_info_volsw, \
974815ba 105 .get = snd_soc_get_volsw, .put = snd_soc_put_volsw, \
cdffa775
PU
106 .private_value = SOC_DOUBLE_R_VALUE(reg_left, reg_right, xshift, \
107 xmax, xinvert) }
229e3fdc
MB
108#define SOC_DOUBLE_R_RANGE(xname, reg_left, reg_right, xshift, xmin, \
109 xmax, xinvert) \
110{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname),\
111 .info = snd_soc_info_volsw_range, \
112 .get = snd_soc_get_volsw_range, .put = snd_soc_put_volsw_range, \
113 .private_value = SOC_DOUBLE_R_RANGE_VALUE(reg_left, reg_right, \
114 xshift, xmin, xmax, xinvert) }
460acbec 115#define SOC_DOUBLE_TLV(xname, reg, shift_left, shift_right, max, invert, tlv_array) \
a7a4ac86
PZ
116{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname),\
117 .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ |\
118 SNDRV_CTL_ELEM_ACCESS_READWRITE,\
119 .tlv.p = (tlv_array), \
120 .info = snd_soc_info_volsw, .get = snd_soc_get_volsw, \
121 .put = snd_soc_put_volsw, \
460acbec 122 .private_value = SOC_DOUBLE_VALUE(reg, shift_left, shift_right, \
57295073 123 max, invert, 0) }
4eaa9819 124#define SOC_DOUBLE_R_TLV(xname, reg_left, reg_right, xshift, xmax, xinvert, tlv_array) \
a7a4ac86
PZ
125{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname),\
126 .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ |\
127 SNDRV_CTL_ELEM_ACCESS_READWRITE,\
128 .tlv.p = (tlv_array), \
e8f5a103 129 .info = snd_soc_info_volsw, \
974815ba 130 .get = snd_soc_get_volsw, .put = snd_soc_put_volsw, \
cdffa775
PU
131 .private_value = SOC_DOUBLE_R_VALUE(reg_left, reg_right, xshift, \
132 xmax, xinvert) }
229e3fdc
MB
133#define SOC_DOUBLE_R_RANGE_TLV(xname, reg_left, reg_right, xshift, xmin, \
134 xmax, xinvert, tlv_array) \
135{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname),\
136 .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ |\
137 SNDRV_CTL_ELEM_ACCESS_READWRITE,\
138 .tlv.p = (tlv_array), \
139 .info = snd_soc_info_volsw_range, \
140 .get = snd_soc_get_volsw_range, .put = snd_soc_put_volsw_range, \
141 .private_value = SOC_DOUBLE_R_RANGE_VALUE(reg_left, reg_right, \
142 xshift, xmin, xmax, xinvert) }
1d99f243
BA
143#define SOC_DOUBLE_R_SX_TLV(xname, xreg, xrreg, xshift, xmin, xmax, tlv_array) \
144{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname), \
145 .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ | \
146 SNDRV_CTL_ELEM_ACCESS_READWRITE, \
147 .tlv.p = (tlv_array), \
148 .info = snd_soc_info_volsw, \
149 .get = snd_soc_get_volsw_sx, \
150 .put = snd_soc_put_volsw_sx, \
151 .private_value = (unsigned long)&(struct soc_mixer_control) \
152 {.reg = xreg, .rreg = xrreg, \
153 .shift = xshift, .rshift = xshift, \
154 .max = xmax, .min = xmin} }
4eaa9819 155#define SOC_DOUBLE_S8_TLV(xname, xreg, xmin, xmax, tlv_array) \
e13ac2e9
MB
156{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname), \
157 .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ | \
158 SNDRV_CTL_ELEM_ACCESS_READWRITE, \
159 .tlv.p = (tlv_array), \
160 .info = snd_soc_info_volsw_s8, .get = snd_soc_get_volsw_s8, \
161 .put = snd_soc_put_volsw_s8, \
4eaa9819 162 .private_value = (unsigned long)&(struct soc_mixer_control) \
d11bb4a9
PU
163 {.reg = xreg, .min = xmin, .max = xmax, \
164 .platform_max = xmax} }
f8ba0b7b 165#define SOC_ENUM_DOUBLE(xreg, xshift_l, xshift_r, xmax, xtexts) \
808db4a4 166{ .reg = xreg, .shift_l = xshift_l, .shift_r = xshift_r, \
86767b7d
LPC
167 .max = xmax, .texts = xtexts, \
168 .mask = xmax ? roundup_pow_of_two(xmax) - 1 : 0}
f8ba0b7b
JS
169#define SOC_ENUM_SINGLE(xreg, xshift, xmax, xtexts) \
170 SOC_ENUM_DOUBLE(xreg, xshift, xshift, xmax, xtexts)
171#define SOC_ENUM_SINGLE_EXT(xmax, xtexts) \
172{ .max = xmax, .texts = xtexts }
2e72f8e3
PU
173#define SOC_VALUE_ENUM_DOUBLE(xreg, xshift_l, xshift_r, xmask, xmax, xtexts, xvalues) \
174{ .reg = xreg, .shift_l = xshift_l, .shift_r = xshift_r, \
175 .mask = xmask, .max = xmax, .texts = xtexts, .values = xvalues}
176#define SOC_VALUE_ENUM_SINGLE(xreg, xshift, xmask, xmax, xtexts, xvalues) \
177 SOC_VALUE_ENUM_DOUBLE(xreg, xshift, xshift, xmask, xmax, xtexts, xvalues)
808db4a4
RP
178#define SOC_ENUM(xname, xenum) \
179{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname,\
180 .info = snd_soc_info_enum_double, \
181 .get = snd_soc_get_enum_double, .put = snd_soc_put_enum_double, \
182 .private_value = (unsigned long)&xenum }
2e72f8e3
PU
183#define SOC_VALUE_ENUM(xname, xenum) \
184{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname,\
74155556 185 .info = snd_soc_info_enum_double, \
2e72f8e3
PU
186 .get = snd_soc_get_value_enum_double, \
187 .put = snd_soc_put_value_enum_double, \
188 .private_value = (unsigned long)&xenum }
f8ba0b7b 189#define SOC_SINGLE_EXT(xname, xreg, xshift, xmax, xinvert,\
808db4a4
RP
190 xhandler_get, xhandler_put) \
191{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
1c433fbd 192 .info = snd_soc_info_volsw, \
808db4a4 193 .get = xhandler_get, .put = xhandler_put, \
57295073 194 .private_value = SOC_SINGLE_VALUE(xreg, xshift, xmax, xinvert, 0) }
460acbec 195#define SOC_DOUBLE_EXT(xname, reg, shift_left, shift_right, max, invert,\
7629ad24
DM
196 xhandler_get, xhandler_put) \
197{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname),\
198 .info = snd_soc_info_volsw, \
199 .get = xhandler_get, .put = xhandler_put, \
460acbec 200 .private_value = \
57295073 201 SOC_DOUBLE_VALUE(reg, shift_left, shift_right, max, invert, 0) }
f8ba0b7b 202#define SOC_SINGLE_EXT_TLV(xname, xreg, xshift, xmax, xinvert,\
10144c09
MM
203 xhandler_get, xhandler_put, tlv_array) \
204{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
205 .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ |\
206 SNDRV_CTL_ELEM_ACCESS_READWRITE,\
207 .tlv.p = (tlv_array), \
208 .info = snd_soc_info_volsw, \
209 .get = xhandler_get, .put = xhandler_put, \
57295073 210 .private_value = SOC_SINGLE_VALUE(xreg, xshift, xmax, xinvert, 0) }
d0af93db
JS
211#define SOC_DOUBLE_EXT_TLV(xname, xreg, shift_left, shift_right, xmax, xinvert,\
212 xhandler_get, xhandler_put, tlv_array) \
213{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname), \
214 .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ | \
215 SNDRV_CTL_ELEM_ACCESS_READWRITE, \
216 .tlv.p = (tlv_array), \
217 .info = snd_soc_info_volsw, \
218 .get = xhandler_get, .put = xhandler_put, \
460acbec 219 .private_value = SOC_DOUBLE_VALUE(xreg, shift_left, shift_right, \
57295073 220 xmax, xinvert, 0) }
3ce91d5a
JS
221#define SOC_DOUBLE_R_EXT_TLV(xname, reg_left, reg_right, xshift, xmax, xinvert,\
222 xhandler_get, xhandler_put, tlv_array) \
223{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname), \
224 .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ | \
225 SNDRV_CTL_ELEM_ACCESS_READWRITE, \
226 .tlv.p = (tlv_array), \
e8f5a103 227 .info = snd_soc_info_volsw, \
3ce91d5a 228 .get = xhandler_get, .put = xhandler_put, \
cdffa775
PU
229 .private_value = SOC_DOUBLE_R_VALUE(reg_left, reg_right, xshift, \
230 xmax, xinvert) }
808db4a4
RP
231#define SOC_SINGLE_BOOL_EXT(xname, xdata, xhandler_get, xhandler_put) \
232{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
233 .info = snd_soc_info_bool_ext, \
234 .get = xhandler_get, .put = xhandler_put, \
235 .private_value = xdata }
236#define SOC_ENUM_EXT(xname, xenum, xhandler_get, xhandler_put) \
237{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
9a953e6f 238 .info = snd_soc_info_enum_double, \
808db4a4
RP
239 .get = xhandler_get, .put = xhandler_put, \
240 .private_value = (unsigned long)&xenum }
241
71d08516
MB
242#define SND_SOC_BYTES(xname, xbase, xregs) \
243{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
244 .info = snd_soc_bytes_info, .get = snd_soc_bytes_get, \
245 .put = snd_soc_bytes_put, .private_value = \
246 ((unsigned long)&(struct soc_bytes) \
247 {.base = xbase, .num_regs = xregs }) }
b6f4bb38 248
f831b055
MB
249#define SND_SOC_BYTES_MASK(xname, xbase, xregs, xmask) \
250{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
251 .info = snd_soc_bytes_info, .get = snd_soc_bytes_get, \
252 .put = snd_soc_bytes_put, .private_value = \
253 ((unsigned long)&(struct soc_bytes) \
254 {.base = xbase, .num_regs = xregs, \
255 .mask = xmask }) }
256
4183eed2
KK
257#define SOC_SINGLE_XR_SX(xname, xregbase, xregcount, xnbits, \
258 xmin, xmax, xinvert) \
259{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname), \
260 .info = snd_soc_info_xr_sx, .get = snd_soc_get_xr_sx, \
261 .put = snd_soc_put_xr_sx, \
262 .private_value = (unsigned long)&(struct soc_mreg_control) \
263 {.regbase = xregbase, .regcount = xregcount, .nbits = xnbits, \
264 .invert = xinvert, .min = xmin, .max = xmax} }
265
dd7b10b3
KK
266#define SOC_SINGLE_STROBE(xname, xreg, xshift, xinvert) \
267 SOC_SINGLE_EXT(xname, xreg, xshift, 1, xinvert, \
268 snd_soc_get_strobe, snd_soc_put_strobe)
269
6c2fb6a8
GL
270/*
271 * Simplified versions of above macros, declaring a struct and calculating
272 * ARRAY_SIZE internally
273 */
274#define SOC_ENUM_DOUBLE_DECL(name, xreg, xshift_l, xshift_r, xtexts) \
275 struct soc_enum name = SOC_ENUM_DOUBLE(xreg, xshift_l, xshift_r, \
276 ARRAY_SIZE(xtexts), xtexts)
277#define SOC_ENUM_SINGLE_DECL(name, xreg, xshift, xtexts) \
278 SOC_ENUM_DOUBLE_DECL(name, xreg, xshift, xshift, xtexts)
279#define SOC_ENUM_SINGLE_EXT_DECL(name, xtexts) \
280 struct soc_enum name = SOC_ENUM_SINGLE_EXT(ARRAY_SIZE(xtexts), xtexts)
281#define SOC_VALUE_ENUM_DOUBLE_DECL(name, xreg, xshift_l, xshift_r, xmask, xtexts, xvalues) \
282 struct soc_enum name = SOC_VALUE_ENUM_DOUBLE(xreg, xshift_l, xshift_r, xmask, \
283 ARRAY_SIZE(xtexts), xtexts, xvalues)
284#define SOC_VALUE_ENUM_SINGLE_DECL(name, xreg, xshift, xmask, xtexts, xvalues) \
285 SOC_VALUE_ENUM_DOUBLE_DECL(name, xreg, xshift, xshift, xmask, xtexts, xvalues)
286
0168bf0d
LG
287/*
288 * Component probe and remove ordering levels for components with runtime
289 * dependencies.
290 */
291#define SND_SOC_COMP_ORDER_FIRST -2
292#define SND_SOC_COMP_ORDER_EARLY -1
293#define SND_SOC_COMP_ORDER_NORMAL 0
294#define SND_SOC_COMP_ORDER_LATE 1
295#define SND_SOC_COMP_ORDER_LAST 2
296
0be9898a
MB
297/*
298 * Bias levels
299 *
300 * @ON: Bias is fully on for audio playback and capture operations.
301 * @PREPARE: Prepare for audio operations. Called before DAPM switching for
302 * stream start and stop operations.
303 * @STANDBY: Low power standby state when no playback/capture operations are
304 * in progress. NOTE: The transition time between STANDBY and ON
305 * should be as fast as possible and no longer than 10ms.
306 * @OFF: Power Off. No restrictions on transition times.
307 */
308enum snd_soc_bias_level {
56fba41f
MB
309 SND_SOC_BIAS_OFF = 0,
310 SND_SOC_BIAS_STANDBY = 1,
311 SND_SOC_BIAS_PREPARE = 2,
312 SND_SOC_BIAS_ON = 3,
0be9898a
MB
313};
314
5a504963 315struct device_node;
8a2cd618
MB
316struct snd_jack;
317struct snd_soc_card;
808db4a4
RP
318struct snd_soc_pcm_stream;
319struct snd_soc_ops;
808db4a4 320struct snd_soc_pcm_runtime;
3c4b266f 321struct snd_soc_dai;
f0fba2ad 322struct snd_soc_dai_driver;
12a48a8c 323struct snd_soc_platform;
d273ebe7 324struct snd_soc_dai_link;
f0fba2ad 325struct snd_soc_platform_driver;
808db4a4 326struct snd_soc_codec;
f0fba2ad 327struct snd_soc_codec_driver;
030e79f6
KM
328struct snd_soc_component;
329struct snd_soc_component_driver;
808db4a4 330struct soc_enum;
8a2cd618 331struct snd_soc_jack;
fa9879ed 332struct snd_soc_jack_zone;
8a2cd618 333struct snd_soc_jack_pin;
ce6120cc 334#include <sound/soc-dapm.h>
01d7584c 335#include <sound/soc-dpcm.h>
f0fba2ad 336
ec67624d 337struct snd_soc_jack_gpio;
808db4a4
RP
338
339typedef int (*hw_write_t)(void *,const char* ,int);
808db4a4 340
b047e1cc 341extern struct snd_ac97_bus_ops *soc_ac97_ops;
808db4a4 342
7084a42b 343enum snd_soc_control_type {
e9c03905 344 SND_SOC_I2C = 1,
7084a42b 345 SND_SOC_SPI,
0671da18 346 SND_SOC_REGMAP,
7084a42b
MB
347};
348
b8c0dab9
LG
349enum snd_soc_pcm_subclass {
350 SND_SOC_PCM_CLASS_PCM = 0,
351 SND_SOC_PCM_CLASS_BE = 1,
352};
353
01b9d99a 354enum snd_soc_card_subclass {
6874a918
LG
355 SND_SOC_CARD_CLASS_INIT = 0,
356 SND_SOC_CARD_CLASS_RUNTIME = 1,
01b9d99a
LG
357};
358
ec4ee52a 359int snd_soc_codec_set_sysclk(struct snd_soc_codec *codec, int clk_id,
da1c6ea6 360 int source, unsigned int freq, int dir);
ec4ee52a
MB
361int snd_soc_codec_set_pll(struct snd_soc_codec *codec, int pll_id, int source,
362 unsigned int freq_in, unsigned int freq_out);
363
70a7ca34
VK
364int snd_soc_register_card(struct snd_soc_card *card);
365int snd_soc_unregister_card(struct snd_soc_card *card);
0e4ff5c8 366int devm_snd_soc_register_card(struct device *dev, struct snd_soc_card *card);
6f8ab4ac
MB
367int snd_soc_suspend(struct device *dev);
368int snd_soc_resume(struct device *dev);
369int snd_soc_poweroff(struct device *dev);
f0fba2ad 370int snd_soc_register_platform(struct device *dev,
d79e57db 371 const struct snd_soc_platform_driver *platform_drv);
f0fba2ad 372void snd_soc_unregister_platform(struct device *dev);
71a45cda
LPC
373int snd_soc_add_platform(struct device *dev, struct snd_soc_platform *platform,
374 const struct snd_soc_platform_driver *platform_drv);
375void snd_soc_remove_platform(struct snd_soc_platform *platform);
376struct snd_soc_platform *snd_soc_lookup_platform(struct device *dev);
f0fba2ad 377int snd_soc_register_codec(struct device *dev,
001ae4c0 378 const struct snd_soc_codec_driver *codec_drv,
f0fba2ad
LG
379 struct snd_soc_dai_driver *dai_drv, int num_dai);
380void snd_soc_unregister_codec(struct device *dev);
030e79f6
KM
381int snd_soc_register_component(struct device *dev,
382 const struct snd_soc_component_driver *cmpnt_drv,
383 struct snd_soc_dai_driver *dai_drv, int num_dai);
a0b03a61
MB
384int devm_snd_soc_register_component(struct device *dev,
385 const struct snd_soc_component_driver *cmpnt_drv,
386 struct snd_soc_dai_driver *dai_drv, int num_dai);
030e79f6 387void snd_soc_unregister_component(struct device *dev);
181e055e
MB
388int snd_soc_codec_volatile_register(struct snd_soc_codec *codec,
389 unsigned int reg);
239c9706
DP
390int snd_soc_codec_readable_register(struct snd_soc_codec *codec,
391 unsigned int reg);
392int snd_soc_codec_writable_register(struct snd_soc_codec *codec,
393 unsigned int reg);
17a52fd6 394int snd_soc_codec_set_cache_io(struct snd_soc_codec *codec,
7084a42b
MB
395 int addr_bits, int data_bits,
396 enum snd_soc_control_type control);
7a30a3db
DP
397int snd_soc_cache_sync(struct snd_soc_codec *codec);
398int snd_soc_cache_init(struct snd_soc_codec *codec);
399int snd_soc_cache_exit(struct snd_soc_codec *codec);
400int snd_soc_cache_write(struct snd_soc_codec *codec,
401 unsigned int reg, unsigned int value);
402int snd_soc_cache_read(struct snd_soc_codec *codec,
403 unsigned int reg, unsigned int *value);
f1442bc1
LG
404int snd_soc_platform_read(struct snd_soc_platform *platform,
405 unsigned int reg);
406int snd_soc_platform_write(struct snd_soc_platform *platform,
407 unsigned int reg, unsigned int val);
354a2142 408int soc_new_pcm(struct snd_soc_pcm_runtime *rtd, int num);
49681077 409int soc_new_compress(struct snd_soc_pcm_runtime *rtd, int num);
12a48a8c 410
47c88fff
LG
411struct snd_pcm_substream *snd_soc_get_dai_substream(struct snd_soc_card *card,
412 const char *dai_link, int stream);
413struct snd_soc_pcm_runtime *snd_soc_get_pcm_runtime(struct snd_soc_card *card,
414 const char *dai_link);
415
208a1589 416bool snd_soc_runtime_ignore_pmdown_time(struct snd_soc_pcm_runtime *rtd);
24894b76
LPC
417void snd_soc_runtime_activate(struct snd_soc_pcm_runtime *rtd, int stream);
418void snd_soc_runtime_deactivate(struct snd_soc_pcm_runtime *rtd, int stream);
208a1589 419
7aae816d
MB
420/* Utility functions to get clock rates from various things */
421int snd_soc_calc_frame_size(int sample_size, int channels, int tdm_slots);
422int snd_soc_params_to_frame_size(struct snd_pcm_hw_params *params);
c0fa59df 423int snd_soc_calc_bclk(int fs, int sample_size, int channels, int tdm_slots);
7aae816d
MB
424int snd_soc_params_to_bclk(struct snd_pcm_hw_params *parms);
425
808db4a4
RP
426/* set runtime hw params */
427int snd_soc_set_runtime_hwparams(struct snd_pcm_substream *substream,
428 const struct snd_pcm_hardware *hw);
808db4a4 429
07bf84aa
LG
430int snd_soc_platform_trigger(struct snd_pcm_substream *substream,
431 int cmd, struct snd_soc_platform *platform);
432
8a2cd618 433/* Jack reporting */
f0fba2ad 434int snd_soc_jack_new(struct snd_soc_codec *codec, const char *id, int type,
8a2cd618
MB
435 struct snd_soc_jack *jack);
436void snd_soc_jack_report(struct snd_soc_jack *jack, int status, int mask);
437int snd_soc_jack_add_pins(struct snd_soc_jack *jack, int count,
438 struct snd_soc_jack_pin *pins);
d5021ec9
MB
439void snd_soc_jack_notifier_register(struct snd_soc_jack *jack,
440 struct notifier_block *nb);
441void snd_soc_jack_notifier_unregister(struct snd_soc_jack *jack,
442 struct notifier_block *nb);
fa9879ed
VK
443int snd_soc_jack_add_zones(struct snd_soc_jack *jack, int count,
444 struct snd_soc_jack_zone *zones);
445int snd_soc_jack_get_type(struct snd_soc_jack *jack, int micbias_voltage);
ec67624d
LCM
446#ifdef CONFIG_GPIOLIB
447int snd_soc_jack_add_gpios(struct snd_soc_jack *jack, int count,
448 struct snd_soc_jack_gpio *gpios);
449void snd_soc_jack_free_gpios(struct snd_soc_jack *jack, int count,
450 struct snd_soc_jack_gpio *gpios);
8778ac6b
TI
451#else
452static inline int snd_soc_jack_add_gpios(struct snd_soc_jack *jack, int count,
453 struct snd_soc_jack_gpio *gpios)
454{
455 return 0;
456}
457
458static inline void snd_soc_jack_free_gpios(struct snd_soc_jack *jack, int count,
459 struct snd_soc_jack_gpio *gpios)
460{
461}
ec67624d 462#endif
8a2cd618 463
808db4a4
RP
464/* codec register bit access */
465int snd_soc_update_bits(struct snd_soc_codec *codec, unsigned short reg,
46f5822f 466 unsigned int mask, unsigned int value);
dd1b3d53
MB
467int snd_soc_update_bits_locked(struct snd_soc_codec *codec,
468 unsigned short reg, unsigned int mask,
469 unsigned int value);
808db4a4 470int snd_soc_test_bits(struct snd_soc_codec *codec, unsigned short reg,
46f5822f 471 unsigned int mask, unsigned int value);
808db4a4
RP
472
473int snd_soc_new_ac97_codec(struct snd_soc_codec *codec,
474 struct snd_ac97_bus_ops *ops, int num);
475void snd_soc_free_ac97_codec(struct snd_soc_codec *codec);
476
b047e1cc 477int snd_soc_set_ac97_ops(struct snd_ac97_bus_ops *ops);
741a509f
MP
478int snd_soc_set_ac97_ops_of_reset(struct snd_ac97_bus_ops *ops,
479 struct platform_device *pdev);
b047e1cc 480
808db4a4
RP
481/*
482 *Controls
483 */
484struct snd_kcontrol *snd_soc_cnew(const struct snd_kcontrol_new *_template,
3056557f 485 void *data, const char *long_name,
efb7ac3f 486 const char *prefix);
4fefd698
DP
487struct snd_kcontrol *snd_soc_card_get_kcontrol(struct snd_soc_card *soc_card,
488 const char *name);
022658be 489int snd_soc_add_codec_controls(struct snd_soc_codec *codec,
3e8e1952 490 const struct snd_kcontrol_new *controls, int num_controls);
a491a5c8
LG
491int snd_soc_add_platform_controls(struct snd_soc_platform *platform,
492 const struct snd_kcontrol_new *controls, int num_controls);
022658be
LG
493int snd_soc_add_card_controls(struct snd_soc_card *soc_card,
494 const struct snd_kcontrol_new *controls, int num_controls);
495int snd_soc_add_dai_controls(struct snd_soc_dai *dai,
496 const struct snd_kcontrol_new *controls, int num_controls);
808db4a4
RP
497int snd_soc_info_enum_double(struct snd_kcontrol *kcontrol,
498 struct snd_ctl_elem_info *uinfo);
808db4a4
RP
499int snd_soc_get_enum_double(struct snd_kcontrol *kcontrol,
500 struct snd_ctl_elem_value *ucontrol);
501int snd_soc_put_enum_double(struct snd_kcontrol *kcontrol,
502 struct snd_ctl_elem_value *ucontrol);
2e72f8e3
PU
503int snd_soc_get_value_enum_double(struct snd_kcontrol *kcontrol,
504 struct snd_ctl_elem_value *ucontrol);
505int snd_soc_put_value_enum_double(struct snd_kcontrol *kcontrol,
506 struct snd_ctl_elem_value *ucontrol);
808db4a4 507int snd_soc_info_volsw(struct snd_kcontrol *kcontrol,
808db4a4 508 struct snd_ctl_elem_info *uinfo);
392abe9c 509#define snd_soc_info_bool_ext snd_ctl_boolean_mono_info
808db4a4
RP
510int snd_soc_get_volsw(struct snd_kcontrol *kcontrol,
511 struct snd_ctl_elem_value *ucontrol);
512int snd_soc_put_volsw(struct snd_kcontrol *kcontrol,
513 struct snd_ctl_elem_value *ucontrol);
a92f1394
PU
514#define snd_soc_get_volsw_2r snd_soc_get_volsw
515#define snd_soc_put_volsw_2r snd_soc_put_volsw
1d99f243
BA
516int snd_soc_get_volsw_sx(struct snd_kcontrol *kcontrol,
517 struct snd_ctl_elem_value *ucontrol);
518int snd_soc_put_volsw_sx(struct snd_kcontrol *kcontrol,
519 struct snd_ctl_elem_value *ucontrol);
e13ac2e9
MB
520int snd_soc_info_volsw_s8(struct snd_kcontrol *kcontrol,
521 struct snd_ctl_elem_info *uinfo);
522int snd_soc_get_volsw_s8(struct snd_kcontrol *kcontrol,
523 struct snd_ctl_elem_value *ucontrol);
524int snd_soc_put_volsw_s8(struct snd_kcontrol *kcontrol,
525 struct snd_ctl_elem_value *ucontrol);
6c9d8cf6
AT
526int snd_soc_info_volsw_range(struct snd_kcontrol *kcontrol,
527 struct snd_ctl_elem_info *uinfo);
528int snd_soc_put_volsw_range(struct snd_kcontrol *kcontrol,
529 struct snd_ctl_elem_value *ucontrol);
530int snd_soc_get_volsw_range(struct snd_kcontrol *kcontrol,
531 struct snd_ctl_elem_value *ucontrol);
637d3847
PU
532int snd_soc_limit_volume(struct snd_soc_codec *codec,
533 const char *name, int max);
71d08516
MB
534int snd_soc_bytes_info(struct snd_kcontrol *kcontrol,
535 struct snd_ctl_elem_info *uinfo);
536int snd_soc_bytes_get(struct snd_kcontrol *kcontrol,
537 struct snd_ctl_elem_value *ucontrol);
538int snd_soc_bytes_put(struct snd_kcontrol *kcontrol,
539 struct snd_ctl_elem_value *ucontrol);
4183eed2
KK
540int snd_soc_info_xr_sx(struct snd_kcontrol *kcontrol,
541 struct snd_ctl_elem_info *uinfo);
542int snd_soc_get_xr_sx(struct snd_kcontrol *kcontrol,
543 struct snd_ctl_elem_value *ucontrol);
544int snd_soc_put_xr_sx(struct snd_kcontrol *kcontrol,
545 struct snd_ctl_elem_value *ucontrol);
dd7b10b3
KK
546int snd_soc_get_strobe(struct snd_kcontrol *kcontrol,
547 struct snd_ctl_elem_value *ucontrol);
548int snd_soc_put_strobe(struct snd_kcontrol *kcontrol,
549 struct snd_ctl_elem_value *ucontrol);
808db4a4 550
8a2cd618
MB
551/**
552 * struct snd_soc_jack_pin - Describes a pin to update based on jack detection
553 *
554 * @pin: name of the pin to update
555 * @mask: bits to check for in reported jack status
556 * @invert: if non-zero then pin is enabled when status is not reported
557 */
558struct snd_soc_jack_pin {
559 struct list_head list;
560 const char *pin;
561 int mask;
562 bool invert;
563};
564
fa9879ed
VK
565/**
566 * struct snd_soc_jack_zone - Describes voltage zones of jack detection
567 *
568 * @min_mv: start voltage in mv
569 * @max_mv: end voltage in mv
570 * @jack_type: type of jack that is expected for this voltage
571 * @debounce_time: debounce_time for jack, codec driver should wait for this
572 * duration before reading the adc for voltages
573 * @:list: list container
574 */
575struct snd_soc_jack_zone {
576 unsigned int min_mv;
577 unsigned int max_mv;
578 unsigned int jack_type;
579 unsigned int debounce_time;
580 struct list_head list;
581};
582
ec67624d
LCM
583/**
584 * struct snd_soc_jack_gpio - Describes a gpio pin for jack detection
585 *
586 * @gpio: gpio number
587 * @name: gpio name
588 * @report: value to report when jack detected
589 * @invert: report presence in low state
590 * @debouce_time: debouce time in ms
7887ab3a 591 * @wake: enable as wake source
fadddc87
MB
592 * @jack_status_check: callback function which overrides the detection
593 * to provide more complex checks (eg, reading an
594 * ADC).
ec67624d 595 */
ec67624d
LCM
596struct snd_soc_jack_gpio {
597 unsigned int gpio;
598 const char *name;
599 int report;
600 int invert;
601 int debounce_time;
7887ab3a
MB
602 bool wake;
603
ec67624d 604 struct snd_soc_jack *jack;
4c14d78e 605 struct delayed_work work;
c871a053
JS
606
607 int (*jack_status_check)(void);
ec67624d 608};
ec67624d 609
8a2cd618 610struct snd_soc_jack {
2667b4b8 611 struct mutex mutex;
8a2cd618 612 struct snd_jack *jack;
f0fba2ad 613 struct snd_soc_codec *codec;
8a2cd618
MB
614 struct list_head pins;
615 int status;
d5021ec9 616 struct blocking_notifier_head notifier;
fa9879ed 617 struct list_head jack_zones;
8a2cd618
MB
618};
619
808db4a4
RP
620/* SoC PCM stream information */
621struct snd_soc_pcm_stream {
f0fba2ad 622 const char *stream_name;
1c433fbd
GG
623 u64 formats; /* SNDRV_PCM_FMTBIT_* */
624 unsigned int rates; /* SNDRV_PCM_RATE_* */
808db4a4
RP
625 unsigned int rate_min; /* min rate */
626 unsigned int rate_max; /* max rate */
627 unsigned int channels_min; /* min channels */
628 unsigned int channels_max; /* max channels */
58ba9b25 629 unsigned int sig_bits; /* number of bits of content */
808db4a4
RP
630};
631
632/* SoC audio ops */
633struct snd_soc_ops {
634 int (*startup)(struct snd_pcm_substream *);
635 void (*shutdown)(struct snd_pcm_substream *);
636 int (*hw_params)(struct snd_pcm_substream *, struct snd_pcm_hw_params *);
637 int (*hw_free)(struct snd_pcm_substream *);
638 int (*prepare)(struct snd_pcm_substream *);
639 int (*trigger)(struct snd_pcm_substream *, int);
640};
641
49681077
VK
642struct snd_soc_compr_ops {
643 int (*startup)(struct snd_compr_stream *);
644 void (*shutdown)(struct snd_compr_stream *);
645 int (*set_params)(struct snd_compr_stream *);
646 int (*trigger)(struct snd_compr_stream *);
647};
648
d191bd8d
KM
649/* component interface */
650struct snd_soc_component_driver {
651 const char *name;
cb470087
KM
652
653 /* DT */
654 int (*of_xlate_dai_name)(struct snd_soc_component *component,
655 struct of_phandle_args *args,
656 const char **dai_name);
d191bd8d
KM
657};
658
659struct snd_soc_component {
660 const char *name;
661 int id;
d191bd8d 662 struct device *dev;
cdde4ccb
LPC
663
664 unsigned int active;
665
3d59400f
LPC
666 unsigned int ignore_pmdown_time:1; /* pmdown_time is ignored at stop */
667
d191bd8d
KM
668 struct list_head list;
669
6833c452
KM
670 struct snd_soc_dai_driver *dai_drv;
671 int num_dai;
672
d191bd8d 673 const struct snd_soc_component_driver *driver;
1438c2f6
LPC
674
675 struct list_head dai_list;
d191bd8d
KM
676};
677
f0fba2ad 678/* SoC Audio Codec device */
808db4a4 679struct snd_soc_codec {
f0fba2ad 680 const char *name;
ead9b919 681 const char *name_prefix;
f0fba2ad 682 int id;
0d0cf00a 683 struct device *dev;
001ae4c0 684 const struct snd_soc_codec_driver *driver;
0d0cf00a 685
f0fba2ad
LG
686 struct mutex mutex;
687 struct snd_soc_card *card;
0d0cf00a 688 struct list_head list;
f0fba2ad
LG
689 struct list_head card_list;
690 int num_dai;
1500b7b5
DP
691 int (*volatile_register)(struct snd_soc_codec *, unsigned int);
692 int (*readable_register)(struct snd_soc_codec *, unsigned int);
8020454c 693 int (*writable_register)(struct snd_soc_codec *, unsigned int);
808db4a4
RP
694
695 /* runtime */
808db4a4 696 struct snd_ac97 *ac97; /* for ad-hoc ac97 devices */
dad8e7ae 697 unsigned int cache_bypass:1; /* Suppress access to the cache */
f0fba2ad
LG
698 unsigned int suspended:1; /* Codec is in suspend PM state */
699 unsigned int probed:1; /* Codec has been probed */
700 unsigned int ac97_registered:1; /* Codec has been AC97 registered */
0562f788 701 unsigned int ac97_created:1; /* Codec has been created by SoC */
fdf0f54d 702 unsigned int cache_init:1; /* codec cache has been initialized */
8a713da8 703 unsigned int using_regmap:1; /* using regmap access */
aaee8ef1
MB
704 u32 cache_only; /* Suppress writes to hardware */
705 u32 cache_sync; /* Cache needs to be synced to hardware */
808db4a4
RP
706
707 /* codec IO */
708 void *control_data; /* codec control (i2c/3wire) data */
808db4a4 709 hw_write_t hw_write;
afa2f106 710 unsigned int (*hw_read)(struct snd_soc_codec *, unsigned int);
c3acec26
MB
711 unsigned int (*read)(struct snd_soc_codec *, unsigned int);
712 int (*write)(struct snd_soc_codec *, unsigned int, unsigned int);
808db4a4 713 void *reg_cache;
7a30a3db 714 struct mutex cache_rw_mutex;
be3ea3b9 715 int val_bytes;
a96ca338 716
d191bd8d
KM
717 /* component */
718 struct snd_soc_component component;
719
808db4a4 720 /* dapm */
ce6120cc 721 struct snd_soc_dapm_context dapm;
808db4a4 722
384c89e2 723#ifdef CONFIG_DEBUG_FS
88439ac7 724 struct dentry *debugfs_codec_root;
384c89e2 725 struct dentry *debugfs_reg;
384c89e2 726#endif
808db4a4
RP
727};
728
f0fba2ad
LG
729/* codec driver */
730struct snd_soc_codec_driver {
731
732 /* driver ops */
733 int (*probe)(struct snd_soc_codec *);
734 int (*remove)(struct snd_soc_codec *);
84b315ee 735 int (*suspend)(struct snd_soc_codec *);
f0fba2ad 736 int (*resume)(struct snd_soc_codec *);
d191bd8d 737 struct snd_soc_component_driver component_driver;
f0fba2ad 738
b7af1daf
MB
739 /* Default control and setup, added after probe() is run */
740 const struct snd_kcontrol_new *controls;
741 int num_controls;
89b95ac0
MB
742 const struct snd_soc_dapm_widget *dapm_widgets;
743 int num_dapm_widgets;
744 const struct snd_soc_dapm_route *dapm_routes;
745 int num_dapm_routes;
746
ec4ee52a
MB
747 /* codec wide operations */
748 int (*set_sysclk)(struct snd_soc_codec *codec,
da1c6ea6 749 int clk_id, int source, unsigned int freq, int dir);
ec4ee52a
MB
750 int (*set_pll)(struct snd_soc_codec *codec, int pll_id, int source,
751 unsigned int freq_in, unsigned int freq_out);
752
f0fba2ad
LG
753 /* codec IO */
754 unsigned int (*read)(struct snd_soc_codec *, unsigned int);
755 int (*write)(struct snd_soc_codec *, unsigned int, unsigned int);
756 int (*display_register)(struct snd_soc_codec *, char *,
757 size_t, unsigned int);
d4754ec9
DP
758 int (*volatile_register)(struct snd_soc_codec *, unsigned int);
759 int (*readable_register)(struct snd_soc_codec *, unsigned int);
8020454c 760 int (*writable_register)(struct snd_soc_codec *, unsigned int);
4a8923ba 761 unsigned int reg_cache_size;
f0fba2ad
LG
762 short reg_cache_step;
763 short reg_word_size;
764 const void *reg_cache_default;
765
766 /* codec bias level */
767 int (*set_bias_level)(struct snd_soc_codec *,
768 enum snd_soc_bias_level level);
33c5f969 769 bool idle_bias_off;
474b62d6
MB
770
771 void (*seq_notifier)(struct snd_soc_dapm_context *,
f85a9e0d 772 enum snd_soc_dapm_type, int);
0168bf0d 773
64a648c2
LG
774 /* codec stream completion event */
775 int (*stream_event)(struct snd_soc_dapm_context *dapm, int event);
776
5124e69e
MB
777 bool ignore_pmdown_time; /* Doesn't benefit from pmdown delay */
778
0168bf0d
LG
779 /* probe ordering - for components with runtime dependencies */
780 int probe_order;
781 int remove_order;
808db4a4
RP
782};
783
784/* SoC platform interface */
f0fba2ad 785struct snd_soc_platform_driver {
808db4a4 786
f0fba2ad
LG
787 int (*probe)(struct snd_soc_platform *);
788 int (*remove)(struct snd_soc_platform *);
789 int (*suspend)(struct snd_soc_dai *dai);
790 int (*resume)(struct snd_soc_dai *dai);
808db4a4
RP
791
792 /* pcm creation and destruction */
552d1ef6 793 int (*pcm_new)(struct snd_soc_pcm_runtime *);
808db4a4
RP
794 void (*pcm_free)(struct snd_pcm *);
795
cb2cf612
LG
796 /* Default control and setup, added after probe() is run */
797 const struct snd_kcontrol_new *controls;
798 int num_controls;
799 const struct snd_soc_dapm_widget *dapm_widgets;
800 int num_dapm_widgets;
801 const struct snd_soc_dapm_route *dapm_routes;
802 int num_dapm_routes;
803
258020d0
PU
804 /*
805 * For platform caused delay reporting.
806 * Optional.
807 */
808 snd_pcm_sframes_t (*delay)(struct snd_pcm_substream *,
809 struct snd_soc_dai *);
810
49681077 811 /* platform stream pcm ops */
1f03f55b 812 const struct snd_pcm_ops *ops;
0168bf0d 813
49681077 814 /* platform stream compress ops */
ef03c9ae 815 const struct snd_compr_ops *compr_ops;
49681077 816
64a648c2
LG
817 /* platform stream completion event */
818 int (*stream_event)(struct snd_soc_dapm_context *dapm, int event);
819
0168bf0d
LG
820 /* probe ordering - for components with runtime dependencies */
821 int probe_order;
822 int remove_order;
f1442bc1
LG
823
824 /* platform IO - used for platform DAPM */
825 unsigned int (*read)(struct snd_soc_platform *, unsigned int);
826 int (*write)(struct snd_soc_platform *, unsigned int, unsigned int);
07bf84aa 827 int (*bespoke_trigger)(struct snd_pcm_substream *, int);
808db4a4
RP
828};
829
f0fba2ad
LG
830struct snd_soc_platform {
831 const char *name;
832 int id;
833 struct device *dev;
d79e57db 834 const struct snd_soc_platform_driver *driver;
cc22d37e 835 struct mutex mutex;
808db4a4 836
f0fba2ad
LG
837 unsigned int suspended:1; /* platform is suspended */
838 unsigned int probed:1;
1c433fbd 839
f0fba2ad
LG
840 struct snd_soc_card *card;
841 struct list_head list;
842 struct list_head card_list;
b7950641
LG
843
844 struct snd_soc_dapm_context dapm;
731f1ab2
SG
845
846#ifdef CONFIG_DEBUG_FS
847 struct dentry *debugfs_platform_root;
731f1ab2 848#endif
f0fba2ad 849};
808db4a4 850
f0fba2ad
LG
851struct snd_soc_dai_link {
852 /* config - must be set by machine driver */
853 const char *name; /* Codec name */
854 const char *stream_name; /* Stream name */
bc92657a
SW
855 /*
856 * You MAY specify the link's CPU-side device, either by device name,
857 * or by DT/OF node, but not both. If this information is omitted,
858 * the CPU-side DAI is matched using .cpu_dai_name only, which hence
859 * must be globally unique. These fields are currently typically used
860 * only for codec to codec links, or systems using device tree.
861 */
862 const char *cpu_name;
863 const struct device_node *cpu_of_node;
864 /*
865 * You MAY specify the DAI name of the CPU DAI. If this information is
866 * omitted, the CPU-side DAI is matched using .cpu_name/.cpu_of_node
867 * only, which only works well when that device exposes a single DAI.
868 */
f0fba2ad 869 const char *cpu_dai_name;
bc92657a
SW
870 /*
871 * You MUST specify the link's codec, either by device name, or by
872 * DT/OF node, but not both.
873 */
874 const char *codec_name;
875 const struct device_node *codec_of_node;
876 /* You MUST specify the DAI name within the codec */
f0fba2ad 877 const char *codec_dai_name;
bc92657a
SW
878 /*
879 * You MAY specify the link's platform/PCM/DMA driver, either by
880 * device name, or by DT/OF node, but not both. Some forms of link
881 * do not need a platform.
882 */
883 const char *platform_name;
884 const struct device_node *platform_of_node;
01d7584c 885 int be_id; /* optional ID for machine driver BE identification */
4ccab3e7 886
c74184ed
MB
887 const struct snd_soc_pcm_stream *params;
888
75d9ac46
MB
889 unsigned int dai_fmt; /* format to set on init */
890
01d7584c
LG
891 enum snd_soc_dpcm_trigger trigger[2]; /* trigger type for DPCM */
892
3efab7dc
MB
893 /* Keep DAI active over suspend */
894 unsigned int ignore_suspend:1;
895
06f409d7
MB
896 /* Symmetry requirements */
897 unsigned int symmetric_rates:1;
3635bf09
NC
898 unsigned int symmetric_channels:1;
899 unsigned int symmetric_samplebits:1;
06f409d7 900
01d7584c
LG
901 /* Do not create a PCM for this DAI link (Backend link) */
902 unsigned int no_pcm:1;
903
904 /* This DAI link can route to other DAI links at runtime (Frontend)*/
905 unsigned int dynamic:1;
906
1e9de42f
LG
907 /* DPCM capture and Playback support */
908 unsigned int dpcm_capture:1;
909 unsigned int dpcm_playback:1;
910
e50fad4f 911 /* pmdown_time is ignored at stop */
912 unsigned int ignore_pmdown_time:1;
913
f0fba2ad
LG
914 /* codec/machine specific init - e.g. add machine controls */
915 int (*init)(struct snd_soc_pcm_runtime *rtd);
06f409d7 916
01d7584c
LG
917 /* optional hw_params re-writing for BE and FE sync */
918 int (*be_hw_params_fixup)(struct snd_soc_pcm_runtime *rtd,
919 struct snd_pcm_hw_params *params);
920
f0fba2ad 921 /* machine stream operations */
13aec722
LPC
922 const struct snd_soc_ops *ops;
923 const struct snd_soc_compr_ops *compr_ops;
d6bead02
FE
924
925 /* For unidirectional dai links */
926 bool playback_only;
927 bool capture_only;
808db4a4
RP
928};
929
ff819b83 930struct snd_soc_codec_conf {
ead9b919 931 const char *dev_name;
ff819b83
DP
932
933 /*
934 * optional map of kcontrol, widget and path name prefixes that are
935 * associated per device
936 */
ead9b919
JN
937 const char *name_prefix;
938};
939
2eea392d
JN
940struct snd_soc_aux_dev {
941 const char *name; /* Codec name */
942 const char *codec_name; /* for multi-codec */
943
944 /* codec/machine specific init - e.g. add machine controls */
945 int (*init)(struct snd_soc_dapm_context *dapm);
946};
947
87506549
MB
948/* SoC card */
949struct snd_soc_card {
f0fba2ad 950 const char *name;
22de71ba
LG
951 const char *long_name;
952 const char *driver_name;
c5af3a2e 953 struct device *dev;
f0fba2ad
LG
954 struct snd_card *snd_card;
955 struct module *owner;
c5af3a2e
MB
956
957 struct list_head list;
f0fba2ad 958 struct mutex mutex;
a73fb2df 959 struct mutex dapm_mutex;
c5af3a2e 960
f0fba2ad 961 bool instantiated;
808db4a4 962
e7361ec4 963 int (*probe)(struct snd_soc_card *card);
28e9ad92 964 int (*late_probe)(struct snd_soc_card *card);
e7361ec4 965 int (*remove)(struct snd_soc_card *card);
808db4a4
RP
966
967 /* the pre and post PM functions are used to do any PM work before and
968 * after the codec and DAI's do any PM work. */
70b2ac12
MB
969 int (*suspend_pre)(struct snd_soc_card *card);
970 int (*suspend_post)(struct snd_soc_card *card);
971 int (*resume_pre)(struct snd_soc_card *card);
972 int (*resume_post)(struct snd_soc_card *card);
808db4a4 973
0b4d221b 974 /* callbacks */
87506549 975 int (*set_bias_level)(struct snd_soc_card *,
d4c6005f 976 struct snd_soc_dapm_context *dapm,
0be9898a 977 enum snd_soc_bias_level level);
1badabd9 978 int (*set_bias_level_post)(struct snd_soc_card *,
d4c6005f 979 struct snd_soc_dapm_context *dapm,
1badabd9 980 enum snd_soc_bias_level level);
0b4d221b 981
6c5f1fed 982 long pmdown_time;
96dd3622 983
808db4a4
RP
984 /* CPU <--> Codec DAI links */
985 struct snd_soc_dai_link *dai_link;
986 int num_links;
f0fba2ad
LG
987 struct snd_soc_pcm_runtime *rtd;
988 int num_rtd;
6308419a 989
ff819b83
DP
990 /* optional codec specific configuration */
991 struct snd_soc_codec_conf *codec_conf;
992 int num_configs;
ead9b919 993
2eea392d
JN
994 /*
995 * optional auxiliary devices such as amplifiers or codecs with DAI
996 * link unused
997 */
998 struct snd_soc_aux_dev *aux_dev;
999 int num_aux_devs;
1000 struct snd_soc_pcm_runtime *rtd_aux;
1001 int num_aux_rtd;
1002
b7af1daf
MB
1003 const struct snd_kcontrol_new *controls;
1004 int num_controls;
1005
b8ad29de
MB
1006 /*
1007 * Card-specific routes and widgets.
1008 */
d06e48db 1009 const struct snd_soc_dapm_widget *dapm_widgets;
b8ad29de 1010 int num_dapm_widgets;
d06e48db 1011 const struct snd_soc_dapm_route *dapm_routes;
b8ad29de 1012 int num_dapm_routes;
1633281b 1013 bool fully_routed;
b8ad29de 1014
6308419a 1015 struct work_struct deferred_resume_work;
f0fba2ad
LG
1016
1017 /* lists of probed devices belonging to this card */
1018 struct list_head codec_dev_list;
1019 struct list_head platform_dev_list;
1020 struct list_head dai_dev_list;
a6052154 1021
97c866de 1022 struct list_head widgets;
8ddab3f5 1023 struct list_head paths;
7be31be8 1024 struct list_head dapm_list;
db432b41 1025 struct list_head dapm_dirty;
8ddab3f5 1026
e37a4970
MB
1027 /* Generic DAPM context for the card */
1028 struct snd_soc_dapm_context dapm;
de02d078 1029 struct snd_soc_dapm_stats dapm_stats;
564c6504 1030 struct snd_soc_dapm_update *update;
e37a4970 1031
a6052154
JN
1032#ifdef CONFIG_DEBUG_FS
1033 struct dentry *debugfs_card_root;
3a45b867 1034 struct dentry *debugfs_pop_time;
a6052154 1035#endif
3a45b867 1036 u32 pop_time;
dddf3e4c
MB
1037
1038 void *drvdata;
808db4a4
RP
1039};
1040
f0fba2ad 1041/* SoC machine DAI configuration, glues a codec and cpu DAI together */
d66a327d 1042struct snd_soc_pcm_runtime {
36ae1a96 1043 struct device *dev;
87506549 1044 struct snd_soc_card *card;
f0fba2ad 1045 struct snd_soc_dai_link *dai_link;
b8c0dab9
LG
1046 struct mutex pcm_mutex;
1047 enum snd_soc_pcm_subclass pcm_subclass;
1048 struct snd_pcm_ops ops;
f0fba2ad 1049
f0fba2ad 1050 unsigned int dev_registered:1;
808db4a4 1051
01d7584c
LG
1052 /* Dynamic PCM BE runtime data */
1053 struct snd_soc_dpcm_runtime dpcm[2];
2a99ef0f 1054 int fe_compr;
01d7584c 1055
f0fba2ad 1056 long pmdown_time;
9bffb1fb 1057 unsigned char pop_wait:1;
f0fba2ad
LG
1058
1059 /* runtime devices */
1060 struct snd_pcm *pcm;
49681077 1061 struct snd_compr *compr;
f0fba2ad
LG
1062 struct snd_soc_codec *codec;
1063 struct snd_soc_platform *platform;
1064 struct snd_soc_dai *codec_dai;
1065 struct snd_soc_dai *cpu_dai;
1066
1067 struct delayed_work delayed_work;
f86dcef8
LG
1068#ifdef CONFIG_DEBUG_FS
1069 struct dentry *debugfs_dpcm_root;
1070 struct dentry *debugfs_dpcm_state;
1071#endif
808db4a4
RP
1072};
1073
4eaa9819
JS
1074/* mixer control */
1075struct soc_mixer_control {
d11bb4a9 1076 int min, max, platform_max;
249ce138
LPC
1077 int reg, rreg;
1078 unsigned int shift, rshift;
57295073
LPC
1079 unsigned int invert:1;
1080 unsigned int autodisable:1;
4eaa9819
JS
1081};
1082
71d08516
MB
1083struct soc_bytes {
1084 int base;
1085 int num_regs;
f831b055 1086 u32 mask;
71d08516
MB
1087};
1088
4183eed2
KK
1089/* multi register control */
1090struct soc_mreg_control {
1091 long min, max;
1092 unsigned int regbase, regcount, nbits, invert;
1093};
1094
808db4a4
RP
1095/* enumerated kcontrol */
1096struct soc_enum {
2e72f8e3
PU
1097 unsigned short reg;
1098 unsigned short reg2;
1099 unsigned char shift_l;
1100 unsigned char shift_r;
1101 unsigned int max;
1102 unsigned int mask;
87023ff7 1103 const char * const *texts;
2e72f8e3 1104 const unsigned int *values;
2e72f8e3
PU
1105};
1106
5c82f567 1107/* codec IO */
c3753707
MB
1108unsigned int snd_soc_read(struct snd_soc_codec *codec, unsigned int reg);
1109unsigned int snd_soc_write(struct snd_soc_codec *codec,
1110 unsigned int reg, unsigned int val);
5c82f567 1111
f0fba2ad
LG
1112/* device driver data */
1113
dddf3e4c
MB
1114static inline void snd_soc_card_set_drvdata(struct snd_soc_card *card,
1115 void *data)
1116{
1117 card->drvdata = data;
1118}
1119
1120static inline void *snd_soc_card_get_drvdata(struct snd_soc_card *card)
1121{
1122 return card->drvdata;
1123}
1124
b2c812e2 1125static inline void snd_soc_codec_set_drvdata(struct snd_soc_codec *codec,
f0fba2ad 1126 void *data)
b2c812e2 1127{
f0fba2ad 1128 dev_set_drvdata(codec->dev, data);
b2c812e2
MB
1129}
1130
1131static inline void *snd_soc_codec_get_drvdata(struct snd_soc_codec *codec)
1132{
f0fba2ad
LG
1133 return dev_get_drvdata(codec->dev);
1134}
1135
1136static inline void snd_soc_platform_set_drvdata(struct snd_soc_platform *platform,
1137 void *data)
1138{
1139 dev_set_drvdata(platform->dev, data);
1140}
1141
1142static inline void *snd_soc_platform_get_drvdata(struct snd_soc_platform *platform)
1143{
1144 return dev_get_drvdata(platform->dev);
1145}
1146
1147static inline void snd_soc_pcm_set_drvdata(struct snd_soc_pcm_runtime *rtd,
1148 void *data)
1149{
36ae1a96 1150 dev_set_drvdata(rtd->dev, data);
f0fba2ad
LG
1151}
1152
1153static inline void *snd_soc_pcm_get_drvdata(struct snd_soc_pcm_runtime *rtd)
1154{
36ae1a96 1155 return dev_get_drvdata(rtd->dev);
b2c812e2
MB
1156}
1157
4e10bda0
VK
1158static inline void snd_soc_initialize_card_lists(struct snd_soc_card *card)
1159{
1160 INIT_LIST_HEAD(&card->dai_dev_list);
1161 INIT_LIST_HEAD(&card->codec_dev_list);
1162 INIT_LIST_HEAD(&card->platform_dev_list);
1163 INIT_LIST_HEAD(&card->widgets);
1164 INIT_LIST_HEAD(&card->paths);
1165 INIT_LIST_HEAD(&card->dapm_list);
1166}
1167
30d86ba4
PU
1168static inline bool snd_soc_volsw_is_stereo(struct soc_mixer_control *mc)
1169{
1170 if (mc->reg == mc->rreg && mc->shift == mc->rshift)
1171 return 0;
1172 /*
1173 * mc->reg == mc->rreg && mc->shift != mc->rshift, or
1174 * mc->reg != mc->rreg means that the control is
1175 * stereo (bits in one register or in two registers)
1176 */
1177 return 1;
1178}
1179
cdde4ccb
LPC
1180static inline bool snd_soc_component_is_active(
1181 struct snd_soc_component *component)
1182{
1183 return component->active != 0;
1184}
1185
5c898e74
LPC
1186static inline bool snd_soc_codec_is_active(struct snd_soc_codec *codec)
1187{
cdde4ccb 1188 return snd_soc_component_is_active(&codec->component);
5c898e74
LPC
1189}
1190
fb257897
MB
1191int snd_soc_util_init(void);
1192void snd_soc_util_exit(void);
1193
bec4fa05
SW
1194int snd_soc_of_parse_card_name(struct snd_soc_card *card,
1195 const char *propname);
a4a54dd5
SW
1196int snd_soc_of_parse_audio_routing(struct snd_soc_card *card,
1197 const char *propname);
a7930ed4
KM
1198unsigned int snd_soc_of_parse_daifmt(struct device_node *np,
1199 const char *prefix);
cb470087
KM
1200int snd_soc_of_get_dai_name(struct device_node *of_node,
1201 const char **dai_name);
bec4fa05 1202
a47cbe72
MB
1203#include <sound/soc-dai.h>
1204
faff4bb0 1205#ifdef CONFIG_DEBUG_FS
8a9dab1a 1206extern struct dentry *snd_soc_debugfs_root;
faff4bb0
SW
1207#endif
1208
6f8ab4ac
MB
1209extern const struct dev_pm_ops snd_soc_pm_ops;
1210
808db4a4 1211#endif