ASoC: Change 2nd argument of soc_bind_dai_link() to DAI link pointer
[deliverable/linux.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>
8a978234 30#include <sound/soc-topology.h>
808db4a4 31
808db4a4
RP
32/*
33 * Convenience kcontrol builders
34 */
57295073 35#define SOC_DOUBLE_VALUE(xreg, shift_left, shift_right, xmax, xinvert, xautodisable) \
4eaa9819 36 ((unsigned long)&(struct soc_mixer_control) \
30d86ba4
PU
37 {.reg = xreg, .rreg = xreg, .shift = shift_left, \
38 .rshift = shift_right, .max = xmax, .platform_max = xmax, \
57295073 39 .invert = xinvert, .autodisable = xautodisable})
c1b4d1c7
LPC
40#define SOC_DOUBLE_S_VALUE(xreg, shift_left, shift_right, xmin, xmax, xsign_bit, xinvert, xautodisable) \
41 ((unsigned long)&(struct soc_mixer_control) \
42 {.reg = xreg, .rreg = xreg, .shift = shift_left, \
43 .rshift = shift_right, .min = xmin, .max = xmax, .platform_max = xmax, \
44 .sign_bit = xsign_bit, .invert = xinvert, .autodisable = xautodisable})
57295073
LPC
45#define SOC_SINGLE_VALUE(xreg, xshift, xmax, xinvert, xautodisable) \
46 SOC_DOUBLE_VALUE(xreg, xshift, xshift, xmax, xinvert, xautodisable)
4eaa9819
JS
47#define SOC_SINGLE_VALUE_EXT(xreg, xmax, xinvert) \
48 ((unsigned long)&(struct soc_mixer_control) \
d11bb4a9 49 {.reg = xreg, .max = xmax, .platform_max = xmax, .invert = xinvert})
cdffa775
PU
50#define SOC_DOUBLE_R_VALUE(xlreg, xrreg, xshift, xmax, xinvert) \
51 ((unsigned long)&(struct soc_mixer_control) \
52 {.reg = xlreg, .rreg = xrreg, .shift = xshift, .rshift = xshift, \
53 .max = xmax, .platform_max = xmax, .invert = xinvert})
cd21b123
MP
54#define SOC_DOUBLE_R_S_VALUE(xlreg, xrreg, xshift, xmin, xmax, xsign_bit, xinvert) \
55 ((unsigned long)&(struct soc_mixer_control) \
56 {.reg = xlreg, .rreg = xrreg, .shift = xshift, .rshift = xshift, \
57 .max = xmax, .min = xmin, .platform_max = xmax, .sign_bit = xsign_bit, \
58 .invert = xinvert})
229e3fdc
MB
59#define SOC_DOUBLE_R_RANGE_VALUE(xlreg, xrreg, xshift, xmin, xmax, xinvert) \
60 ((unsigned long)&(struct soc_mixer_control) \
61 {.reg = xlreg, .rreg = xrreg, .shift = xshift, .rshift = xshift, \
62 .min = xmin, .max = xmax, .platform_max = xmax, .invert = xinvert})
a7a4ac86 63#define SOC_SINGLE(xname, reg, shift, max, invert) \
808db4a4
RP
64{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
65 .info = snd_soc_info_volsw, .get = snd_soc_get_volsw,\
66 .put = snd_soc_put_volsw, \
57295073 67 .private_value = SOC_SINGLE_VALUE(reg, shift, max, invert, 0) }
6c9d8cf6
AT
68#define SOC_SINGLE_RANGE(xname, xreg, xshift, xmin, xmax, xinvert) \
69{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname),\
70 .info = snd_soc_info_volsw_range, .get = snd_soc_get_volsw_range, \
71 .put = snd_soc_put_volsw_range, \
72 .private_value = (unsigned long)&(struct soc_mixer_control) \
9bde4f0b
MB
73 {.reg = xreg, .rreg = xreg, .shift = xshift, \
74 .rshift = xshift, .min = xmin, .max = xmax, \
75 .platform_max = xmax, .invert = xinvert} }
a7a4ac86
PZ
76#define SOC_SINGLE_TLV(xname, reg, shift, max, invert, tlv_array) \
77{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
78 .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ |\
79 SNDRV_CTL_ELEM_ACCESS_READWRITE,\
80 .tlv.p = (tlv_array), \
81 .info = snd_soc_info_volsw, .get = snd_soc_get_volsw,\
82 .put = snd_soc_put_volsw, \
57295073 83 .private_value = SOC_SINGLE_VALUE(reg, shift, max, invert, 0) }
1d99f243
BA
84#define SOC_SINGLE_SX_TLV(xname, xreg, xshift, xmin, xmax, tlv_array) \
85{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
86 .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ | \
87 SNDRV_CTL_ELEM_ACCESS_READWRITE, \
88 .tlv.p = (tlv_array),\
34198710 89 .info = snd_soc_info_volsw_sx, \
1d99f243
BA
90 .get = snd_soc_get_volsw_sx,\
91 .put = snd_soc_put_volsw_sx, \
92 .private_value = (unsigned long)&(struct soc_mixer_control) \
93 {.reg = xreg, .rreg = xreg, \
94 .shift = xshift, .rshift = xshift, \
95 .max = xmax, .min = xmin} }
6c9d8cf6
AT
96#define SOC_SINGLE_RANGE_TLV(xname, xreg, xshift, xmin, xmax, xinvert, tlv_array) \
97{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname),\
98 .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ |\
99 SNDRV_CTL_ELEM_ACCESS_READWRITE,\
100 .tlv.p = (tlv_array), \
101 .info = snd_soc_info_volsw_range, \
102 .get = snd_soc_get_volsw_range, .put = snd_soc_put_volsw_range, \
103 .private_value = (unsigned long)&(struct soc_mixer_control) \
9bde4f0b
MB
104 {.reg = xreg, .rreg = xreg, .shift = xshift, \
105 .rshift = xshift, .min = xmin, .max = xmax, \
106 .platform_max = xmax, .invert = xinvert} }
460acbec 107#define SOC_DOUBLE(xname, reg, shift_left, shift_right, max, invert) \
808db4a4
RP
108{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname),\
109 .info = snd_soc_info_volsw, .get = snd_soc_get_volsw, \
110 .put = snd_soc_put_volsw, \
460acbec 111 .private_value = SOC_DOUBLE_VALUE(reg, shift_left, shift_right, \
57295073 112 max, invert, 0) }
4eaa9819 113#define SOC_DOUBLE_R(xname, reg_left, reg_right, xshift, xmax, xinvert) \
808db4a4 114{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname), \
e8f5a103 115 .info = snd_soc_info_volsw, \
974815ba 116 .get = snd_soc_get_volsw, .put = snd_soc_put_volsw, \
cdffa775
PU
117 .private_value = SOC_DOUBLE_R_VALUE(reg_left, reg_right, xshift, \
118 xmax, xinvert) }
229e3fdc
MB
119#define SOC_DOUBLE_R_RANGE(xname, reg_left, reg_right, xshift, xmin, \
120 xmax, xinvert) \
121{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname),\
122 .info = snd_soc_info_volsw_range, \
123 .get = snd_soc_get_volsw_range, .put = snd_soc_put_volsw_range, \
124 .private_value = SOC_DOUBLE_R_RANGE_VALUE(reg_left, reg_right, \
125 xshift, xmin, xmax, xinvert) }
460acbec 126#define SOC_DOUBLE_TLV(xname, reg, shift_left, shift_right, max, invert, tlv_array) \
a7a4ac86
PZ
127{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname),\
128 .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ |\
129 SNDRV_CTL_ELEM_ACCESS_READWRITE,\
130 .tlv.p = (tlv_array), \
131 .info = snd_soc_info_volsw, .get = snd_soc_get_volsw, \
132 .put = snd_soc_put_volsw, \
460acbec 133 .private_value = SOC_DOUBLE_VALUE(reg, shift_left, shift_right, \
57295073 134 max, invert, 0) }
4eaa9819 135#define SOC_DOUBLE_R_TLV(xname, reg_left, reg_right, xshift, xmax, xinvert, tlv_array) \
a7a4ac86
PZ
136{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname),\
137 .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ |\
138 SNDRV_CTL_ELEM_ACCESS_READWRITE,\
139 .tlv.p = (tlv_array), \
e8f5a103 140 .info = snd_soc_info_volsw, \
974815ba 141 .get = snd_soc_get_volsw, .put = snd_soc_put_volsw, \
cdffa775
PU
142 .private_value = SOC_DOUBLE_R_VALUE(reg_left, reg_right, xshift, \
143 xmax, xinvert) }
229e3fdc
MB
144#define SOC_DOUBLE_R_RANGE_TLV(xname, reg_left, reg_right, xshift, xmin, \
145 xmax, xinvert, tlv_array) \
146{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname),\
147 .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ |\
148 SNDRV_CTL_ELEM_ACCESS_READWRITE,\
149 .tlv.p = (tlv_array), \
150 .info = snd_soc_info_volsw_range, \
151 .get = snd_soc_get_volsw_range, .put = snd_soc_put_volsw_range, \
152 .private_value = SOC_DOUBLE_R_RANGE_VALUE(reg_left, reg_right, \
153 xshift, xmin, xmax, xinvert) }
1d99f243
BA
154#define SOC_DOUBLE_R_SX_TLV(xname, xreg, xrreg, xshift, xmin, xmax, tlv_array) \
155{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname), \
156 .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ | \
157 SNDRV_CTL_ELEM_ACCESS_READWRITE, \
158 .tlv.p = (tlv_array), \
34198710 159 .info = snd_soc_info_volsw_sx, \
1d99f243
BA
160 .get = snd_soc_get_volsw_sx, \
161 .put = snd_soc_put_volsw_sx, \
162 .private_value = (unsigned long)&(struct soc_mixer_control) \
163 {.reg = xreg, .rreg = xrreg, \
164 .shift = xshift, .rshift = xshift, \
165 .max = xmax, .min = xmin} }
cd21b123
MP
166#define SOC_DOUBLE_R_S_TLV(xname, reg_left, reg_right, xshift, xmin, xmax, xsign_bit, xinvert, tlv_array) \
167{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname),\
168 .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ |\
169 SNDRV_CTL_ELEM_ACCESS_READWRITE,\
170 .tlv.p = (tlv_array), \
171 .info = snd_soc_info_volsw, \
172 .get = snd_soc_get_volsw, .put = snd_soc_put_volsw, \
173 .private_value = SOC_DOUBLE_R_S_VALUE(reg_left, reg_right, xshift, \
174 xmin, xmax, xsign_bit, xinvert) }
4eaa9819 175#define SOC_DOUBLE_S8_TLV(xname, xreg, xmin, xmax, tlv_array) \
e13ac2e9
MB
176{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname), \
177 .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ | \
178 SNDRV_CTL_ELEM_ACCESS_READWRITE, \
179 .tlv.p = (tlv_array), \
c1b4d1c7
LPC
180 .info = snd_soc_info_volsw, .get = snd_soc_get_volsw,\
181 .put = snd_soc_put_volsw, \
182 .private_value = SOC_DOUBLE_S_VALUE(xreg, 0, 8, xmin, xmax, 7, 0, 0) }
9a8d38db 183#define SOC_ENUM_DOUBLE(xreg, xshift_l, xshift_r, xitems, xtexts) \
808db4a4 184{ .reg = xreg, .shift_l = xshift_l, .shift_r = xshift_r, \
9a8d38db
TI
185 .items = xitems, .texts = xtexts, \
186 .mask = xitems ? roundup_pow_of_two(xitems) - 1 : 0}
187#define SOC_ENUM_SINGLE(xreg, xshift, xitems, xtexts) \
188 SOC_ENUM_DOUBLE(xreg, xshift, xshift, xitems, xtexts)
189#define SOC_ENUM_SINGLE_EXT(xitems, xtexts) \
190{ .items = xitems, .texts = xtexts }
191#define SOC_VALUE_ENUM_DOUBLE(xreg, xshift_l, xshift_r, xmask, xitems, xtexts, xvalues) \
2e72f8e3 192{ .reg = xreg, .shift_l = xshift_l, .shift_r = xshift_r, \
9a8d38db 193 .mask = xmask, .items = xitems, .texts = xtexts, .values = xvalues}
5967cb3d
CK
194#define SOC_VALUE_ENUM_SINGLE(xreg, xshift, xmask, xitems, xtexts, xvalues) \
195 SOC_VALUE_ENUM_DOUBLE(xreg, xshift, xshift, xmask, xitems, xtexts, xvalues)
561ed680
CK
196#define SOC_VALUE_ENUM_SINGLE_AUTODISABLE(xreg, xshift, xmask, xitems, xtexts, xvalues) \
197{ .reg = xreg, .shift_l = xshift, .shift_r = xshift, \
198 .mask = xmask, .items = xitems, .texts = xtexts, \
199 .values = xvalues, .autodisable = 1}
b948837a
LPC
200#define SOC_ENUM_SINGLE_VIRT(xitems, xtexts) \
201 SOC_ENUM_SINGLE(SND_SOC_NOPM, 0, xitems, xtexts)
808db4a4
RP
202#define SOC_ENUM(xname, xenum) \
203{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname,\
204 .info = snd_soc_info_enum_double, \
205 .get = snd_soc_get_enum_double, .put = snd_soc_put_enum_double, \
206 .private_value = (unsigned long)&xenum }
f8ba0b7b 207#define SOC_SINGLE_EXT(xname, xreg, xshift, xmax, xinvert,\
808db4a4
RP
208 xhandler_get, xhandler_put) \
209{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
1c433fbd 210 .info = snd_soc_info_volsw, \
808db4a4 211 .get = xhandler_get, .put = xhandler_put, \
57295073 212 .private_value = SOC_SINGLE_VALUE(xreg, xshift, xmax, xinvert, 0) }
460acbec 213#define SOC_DOUBLE_EXT(xname, reg, shift_left, shift_right, max, invert,\
7629ad24
DM
214 xhandler_get, xhandler_put) \
215{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname),\
216 .info = snd_soc_info_volsw, \
217 .get = xhandler_get, .put = xhandler_put, \
460acbec 218 .private_value = \
57295073 219 SOC_DOUBLE_VALUE(reg, shift_left, shift_right, max, invert, 0) }
c25c79b4
AT
220#define SOC_DOUBLE_R_EXT(xname, reg_left, reg_right, xshift, xmax, xinvert,\
221 xhandler_get, xhandler_put) \
222{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname), \
223 .info = snd_soc_info_volsw, \
224 .get = xhandler_get, .put = xhandler_put, \
225 .private_value = SOC_DOUBLE_R_VALUE(reg_left, reg_right, xshift, \
226 xmax, xinvert) }
f8ba0b7b 227#define SOC_SINGLE_EXT_TLV(xname, xreg, xshift, xmax, xinvert,\
10144c09
MM
228 xhandler_get, xhandler_put, tlv_array) \
229{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
230 .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ |\
231 SNDRV_CTL_ELEM_ACCESS_READWRITE,\
232 .tlv.p = (tlv_array), \
233 .info = snd_soc_info_volsw, \
234 .get = xhandler_get, .put = xhandler_put, \
57295073 235 .private_value = SOC_SINGLE_VALUE(xreg, xshift, xmax, xinvert, 0) }
a54e22f4
CK
236#define SOC_SINGLE_RANGE_EXT_TLV(xname, xreg, xshift, xmin, xmax, xinvert, \
237 xhandler_get, xhandler_put, tlv_array) \
238{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname),\
239 .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ |\
240 SNDRV_CTL_ELEM_ACCESS_READWRITE,\
241 .tlv.p = (tlv_array), \
242 .info = snd_soc_info_volsw_range, \
243 .get = xhandler_get, .put = xhandler_put, \
244 .private_value = (unsigned long)&(struct soc_mixer_control) \
245 {.reg = xreg, .rreg = xreg, .shift = xshift, \
246 .rshift = xshift, .min = xmin, .max = xmax, \
247 .platform_max = xmax, .invert = xinvert} }
d0af93db
JS
248#define SOC_DOUBLE_EXT_TLV(xname, xreg, shift_left, shift_right, xmax, xinvert,\
249 xhandler_get, xhandler_put, tlv_array) \
250{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname), \
251 .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ | \
252 SNDRV_CTL_ELEM_ACCESS_READWRITE, \
253 .tlv.p = (tlv_array), \
254 .info = snd_soc_info_volsw, \
255 .get = xhandler_get, .put = xhandler_put, \
460acbec 256 .private_value = SOC_DOUBLE_VALUE(xreg, shift_left, shift_right, \
57295073 257 xmax, xinvert, 0) }
3ce91d5a
JS
258#define SOC_DOUBLE_R_EXT_TLV(xname, reg_left, reg_right, xshift, xmax, xinvert,\
259 xhandler_get, xhandler_put, tlv_array) \
260{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname), \
261 .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ | \
262 SNDRV_CTL_ELEM_ACCESS_READWRITE, \
263 .tlv.p = (tlv_array), \
e8f5a103 264 .info = snd_soc_info_volsw, \
3ce91d5a 265 .get = xhandler_get, .put = xhandler_put, \
cdffa775
PU
266 .private_value = SOC_DOUBLE_R_VALUE(reg_left, reg_right, xshift, \
267 xmax, xinvert) }
808db4a4
RP
268#define SOC_SINGLE_BOOL_EXT(xname, xdata, xhandler_get, xhandler_put) \
269{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
270 .info = snd_soc_info_bool_ext, \
271 .get = xhandler_get, .put = xhandler_put, \
272 .private_value = xdata }
273#define SOC_ENUM_EXT(xname, xenum, xhandler_get, xhandler_put) \
274{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
9a953e6f 275 .info = snd_soc_info_enum_double, \
808db4a4
RP
276 .get = xhandler_get, .put = xhandler_put, \
277 .private_value = (unsigned long)&xenum }
1e4c0d7c
RF
278#define SOC_VALUE_ENUM_EXT(xname, xenum, xhandler_get, xhandler_put) \
279 SOC_ENUM_EXT(xname, xenum, xhandler_get, xhandler_put)
808db4a4 280
71d08516
MB
281#define SND_SOC_BYTES(xname, xbase, xregs) \
282{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
283 .info = snd_soc_bytes_info, .get = snd_soc_bytes_get, \
284 .put = snd_soc_bytes_put, .private_value = \
285 ((unsigned long)&(struct soc_bytes) \
286 {.base = xbase, .num_regs = xregs }) }
b6f4bb38 287
f831b055
MB
288#define SND_SOC_BYTES_MASK(xname, xbase, xregs, xmask) \
289{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
290 .info = snd_soc_bytes_info, .get = snd_soc_bytes_get, \
291 .put = snd_soc_bytes_put, .private_value = \
292 ((unsigned long)&(struct soc_bytes) \
293 {.base = xbase, .num_regs = xregs, \
294 .mask = xmask }) }
295
d9881208
VK
296#define SND_SOC_BYTES_EXT(xname, xcount, xhandler_get, xhandler_put) \
297{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
298 .info = snd_soc_bytes_info_ext, \
299 .get = xhandler_get, .put = xhandler_put, \
300 .private_value = (unsigned long)&(struct soc_bytes_ext) \
301 {.max = xcount} }
7523a271
OMA
302#define SND_SOC_BYTES_TLV(xname, xcount, xhandler_get, xhandler_put) \
303{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
304 .access = SNDRV_CTL_ELEM_ACCESS_TLV_READWRITE | \
305 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK, \
306 .tlv.c = (snd_soc_bytes_tlv_callback), \
4d61b39b 307 .info = snd_soc_bytes_info_ext, \
7523a271
OMA
308 .private_value = (unsigned long)&(struct soc_bytes_ext) \
309 {.max = xcount, .get = xhandler_get, .put = xhandler_put, } }
4183eed2
KK
310#define SOC_SINGLE_XR_SX(xname, xregbase, xregcount, xnbits, \
311 xmin, xmax, xinvert) \
312{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname), \
313 .info = snd_soc_info_xr_sx, .get = snd_soc_get_xr_sx, \
314 .put = snd_soc_put_xr_sx, \
315 .private_value = (unsigned long)&(struct soc_mreg_control) \
316 {.regbase = xregbase, .regcount = xregcount, .nbits = xnbits, \
317 .invert = xinvert, .min = xmin, .max = xmax} }
318
dd7b10b3
KK
319#define SOC_SINGLE_STROBE(xname, xreg, xshift, xinvert) \
320 SOC_SINGLE_EXT(xname, xreg, xshift, 1, xinvert, \
321 snd_soc_get_strobe, snd_soc_put_strobe)
322
6c2fb6a8
GL
323/*
324 * Simplified versions of above macros, declaring a struct and calculating
325 * ARRAY_SIZE internally
326 */
327#define SOC_ENUM_DOUBLE_DECL(name, xreg, xshift_l, xshift_r, xtexts) \
2e7e1993 328 const struct soc_enum name = SOC_ENUM_DOUBLE(xreg, xshift_l, xshift_r, \
6c2fb6a8
GL
329 ARRAY_SIZE(xtexts), xtexts)
330#define SOC_ENUM_SINGLE_DECL(name, xreg, xshift, xtexts) \
331 SOC_ENUM_DOUBLE_DECL(name, xreg, xshift, xshift, xtexts)
332#define SOC_ENUM_SINGLE_EXT_DECL(name, xtexts) \
2e7e1993 333 const struct soc_enum name = SOC_ENUM_SINGLE_EXT(ARRAY_SIZE(xtexts), xtexts)
6c2fb6a8 334#define SOC_VALUE_ENUM_DOUBLE_DECL(name, xreg, xshift_l, xshift_r, xmask, xtexts, xvalues) \
2e7e1993 335 const struct soc_enum name = SOC_VALUE_ENUM_DOUBLE(xreg, xshift_l, xshift_r, xmask, \
6c2fb6a8
GL
336 ARRAY_SIZE(xtexts), xtexts, xvalues)
337#define SOC_VALUE_ENUM_SINGLE_DECL(name, xreg, xshift, xmask, xtexts, xvalues) \
338 SOC_VALUE_ENUM_DOUBLE_DECL(name, xreg, xshift, xshift, xmask, xtexts, xvalues)
561ed680
CK
339
340#define SOC_VALUE_ENUM_SINGLE_AUTODISABLE_DECL(name, xreg, xshift, xmask, xtexts, xvalues) \
341 const struct soc_enum name = SOC_VALUE_ENUM_SINGLE_AUTODISABLE(xreg, \
342 xshift, xmask, ARRAY_SIZE(xtexts), xtexts, xvalues)
343
b948837a
LPC
344#define SOC_ENUM_SINGLE_VIRT_DECL(name, xtexts) \
345 const struct soc_enum name = SOC_ENUM_SINGLE_VIRT(ARRAY_SIZE(xtexts), xtexts)
6c2fb6a8 346
0168bf0d
LG
347/*
348 * Component probe and remove ordering levels for components with runtime
349 * dependencies.
350 */
351#define SND_SOC_COMP_ORDER_FIRST -2
352#define SND_SOC_COMP_ORDER_EARLY -1
353#define SND_SOC_COMP_ORDER_NORMAL 0
354#define SND_SOC_COMP_ORDER_LATE 1
355#define SND_SOC_COMP_ORDER_LAST 2
356
0be9898a
MB
357/*
358 * Bias levels
359 *
360 * @ON: Bias is fully on for audio playback and capture operations.
361 * @PREPARE: Prepare for audio operations. Called before DAPM switching for
362 * stream start and stop operations.
363 * @STANDBY: Low power standby state when no playback/capture operations are
364 * in progress. NOTE: The transition time between STANDBY and ON
365 * should be as fast as possible and no longer than 10ms.
366 * @OFF: Power Off. No restrictions on transition times.
367 */
368enum snd_soc_bias_level {
56fba41f
MB
369 SND_SOC_BIAS_OFF = 0,
370 SND_SOC_BIAS_STANDBY = 1,
371 SND_SOC_BIAS_PREPARE = 2,
372 SND_SOC_BIAS_ON = 3,
0be9898a
MB
373};
374
5a504963 375struct device_node;
8a2cd618
MB
376struct snd_jack;
377struct snd_soc_card;
808db4a4
RP
378struct snd_soc_pcm_stream;
379struct snd_soc_ops;
808db4a4 380struct snd_soc_pcm_runtime;
3c4b266f 381struct snd_soc_dai;
f0fba2ad 382struct snd_soc_dai_driver;
12a48a8c 383struct snd_soc_platform;
d273ebe7 384struct snd_soc_dai_link;
f0fba2ad 385struct snd_soc_platform_driver;
808db4a4 386struct snd_soc_codec;
f0fba2ad 387struct snd_soc_codec_driver;
030e79f6
KM
388struct snd_soc_component;
389struct snd_soc_component_driver;
808db4a4 390struct soc_enum;
8a2cd618 391struct snd_soc_jack;
fa9879ed 392struct snd_soc_jack_zone;
8a2cd618 393struct snd_soc_jack_pin;
ce6120cc 394#include <sound/soc-dapm.h>
01d7584c 395#include <sound/soc-dpcm.h>
f0fba2ad 396
ec67624d 397struct snd_soc_jack_gpio;
808db4a4
RP
398
399typedef int (*hw_write_t)(void *,const char* ,int);
808db4a4 400
b8c0dab9
LG
401enum snd_soc_pcm_subclass {
402 SND_SOC_PCM_CLASS_PCM = 0,
403 SND_SOC_PCM_CLASS_BE = 1,
404};
405
01b9d99a 406enum snd_soc_card_subclass {
6874a918
LG
407 SND_SOC_CARD_CLASS_INIT = 0,
408 SND_SOC_CARD_CLASS_RUNTIME = 1,
01b9d99a
LG
409};
410
ec4ee52a 411int snd_soc_codec_set_sysclk(struct snd_soc_codec *codec, int clk_id,
da1c6ea6 412 int source, unsigned int freq, int dir);
ec4ee52a
MB
413int snd_soc_codec_set_pll(struct snd_soc_codec *codec, int pll_id, int source,
414 unsigned int freq_in, unsigned int freq_out);
415
70a7ca34
VK
416int snd_soc_register_card(struct snd_soc_card *card);
417int snd_soc_unregister_card(struct snd_soc_card *card);
0e4ff5c8 418int devm_snd_soc_register_card(struct device *dev, struct snd_soc_card *card);
aae013d6 419#ifdef CONFIG_PM_SLEEP
6f8ab4ac
MB
420int snd_soc_suspend(struct device *dev);
421int snd_soc_resume(struct device *dev);
aae013d6
JY
422#else
423static inline int snd_soc_suspend(struct device *dev)
424{
425 return 0;
426}
427
428static inline int snd_soc_resume(struct device *dev)
429{
430 return 0;
431}
432#endif
6f8ab4ac 433int snd_soc_poweroff(struct device *dev);
f0fba2ad 434int snd_soc_register_platform(struct device *dev,
d79e57db 435 const struct snd_soc_platform_driver *platform_drv);
8931bf62
PU
436int devm_snd_soc_register_platform(struct device *dev,
437 const struct snd_soc_platform_driver *platform_drv);
f0fba2ad 438void snd_soc_unregister_platform(struct device *dev);
71a45cda
LPC
439int snd_soc_add_platform(struct device *dev, struct snd_soc_platform *platform,
440 const struct snd_soc_platform_driver *platform_drv);
441void snd_soc_remove_platform(struct snd_soc_platform *platform);
442struct snd_soc_platform *snd_soc_lookup_platform(struct device *dev);
f0fba2ad 443int snd_soc_register_codec(struct device *dev,
001ae4c0 444 const struct snd_soc_codec_driver *codec_drv,
f0fba2ad
LG
445 struct snd_soc_dai_driver *dai_drv, int num_dai);
446void snd_soc_unregister_codec(struct device *dev);
030e79f6
KM
447int snd_soc_register_component(struct device *dev,
448 const struct snd_soc_component_driver *cmpnt_drv,
449 struct snd_soc_dai_driver *dai_drv, int num_dai);
a0b03a61
MB
450int devm_snd_soc_register_component(struct device *dev,
451 const struct snd_soc_component_driver *cmpnt_drv,
452 struct snd_soc_dai_driver *dai_drv, int num_dai);
030e79f6 453void snd_soc_unregister_component(struct device *dev);
7a30a3db
DP
454int snd_soc_cache_init(struct snd_soc_codec *codec);
455int snd_soc_cache_exit(struct snd_soc_codec *codec);
427d204c 456
f1442bc1
LG
457int snd_soc_platform_read(struct snd_soc_platform *platform,
458 unsigned int reg);
459int snd_soc_platform_write(struct snd_soc_platform *platform,
460 unsigned int reg, unsigned int val);
354a2142 461int soc_new_pcm(struct snd_soc_pcm_runtime *rtd, int num);
6f0c4226
JY
462#ifdef CONFIG_SND_SOC_COMPRESS
463int snd_soc_new_compress(struct snd_soc_pcm_runtime *rtd, int num);
464#endif
12a48a8c 465
47c88fff
LG
466struct snd_pcm_substream *snd_soc_get_dai_substream(struct snd_soc_card *card,
467 const char *dai_link, int stream);
468struct snd_soc_pcm_runtime *snd_soc_get_pcm_runtime(struct snd_soc_card *card,
469 const char *dai_link);
470
208a1589 471bool snd_soc_runtime_ignore_pmdown_time(struct snd_soc_pcm_runtime *rtd);
24894b76
LPC
472void snd_soc_runtime_activate(struct snd_soc_pcm_runtime *rtd, int stream);
473void snd_soc_runtime_deactivate(struct snd_soc_pcm_runtime *rtd, int stream);
208a1589 474
ce64c8b9
LPC
475int snd_soc_runtime_set_dai_fmt(struct snd_soc_pcm_runtime *rtd,
476 unsigned int dai_fmt);
477
7aae816d
MB
478/* Utility functions to get clock rates from various things */
479int snd_soc_calc_frame_size(int sample_size, int channels, int tdm_slots);
480int snd_soc_params_to_frame_size(struct snd_pcm_hw_params *params);
c0fa59df 481int snd_soc_calc_bclk(int fs, int sample_size, int channels, int tdm_slots);
7aae816d
MB
482int snd_soc_params_to_bclk(struct snd_pcm_hw_params *parms);
483
808db4a4
RP
484/* set runtime hw params */
485int snd_soc_set_runtime_hwparams(struct snd_pcm_substream *substream,
486 const struct snd_pcm_hardware *hw);
808db4a4 487
07bf84aa
LG
488int snd_soc_platform_trigger(struct snd_pcm_substream *substream,
489 int cmd, struct snd_soc_platform *platform);
490
93e6958a
BC
491int soc_dai_hw_params(struct snd_pcm_substream *substream,
492 struct snd_pcm_hw_params *params,
493 struct snd_soc_dai *dai);
494
8a2cd618 495/* Jack reporting */
97093996
LPC
496int snd_soc_card_jack_new(struct snd_soc_card *card, const char *id, int type,
497 struct snd_soc_jack *jack, struct snd_soc_jack_pin *pins,
498 unsigned int num_pins);
499
8a2cd618
MB
500void snd_soc_jack_report(struct snd_soc_jack *jack, int status, int mask);
501int snd_soc_jack_add_pins(struct snd_soc_jack *jack, int count,
502 struct snd_soc_jack_pin *pins);
d5021ec9
MB
503void snd_soc_jack_notifier_register(struct snd_soc_jack *jack,
504 struct notifier_block *nb);
505void snd_soc_jack_notifier_unregister(struct snd_soc_jack *jack,
506 struct notifier_block *nb);
fa9879ed
VK
507int snd_soc_jack_add_zones(struct snd_soc_jack *jack, int count,
508 struct snd_soc_jack_zone *zones);
509int snd_soc_jack_get_type(struct snd_soc_jack *jack, int micbias_voltage);
ec67624d
LCM
510#ifdef CONFIG_GPIOLIB
511int snd_soc_jack_add_gpios(struct snd_soc_jack *jack, int count,
512 struct snd_soc_jack_gpio *gpios);
f025d3b9
JN
513int snd_soc_jack_add_gpiods(struct device *gpiod_dev,
514 struct snd_soc_jack *jack,
515 int count, struct snd_soc_jack_gpio *gpios);
ec67624d
LCM
516void snd_soc_jack_free_gpios(struct snd_soc_jack *jack, int count,
517 struct snd_soc_jack_gpio *gpios);
8778ac6b
TI
518#else
519static inline int snd_soc_jack_add_gpios(struct snd_soc_jack *jack, int count,
520 struct snd_soc_jack_gpio *gpios)
521{
522 return 0;
523}
524
e667487b
JN
525static inline int snd_soc_jack_add_gpiods(struct device *gpiod_dev,
526 struct snd_soc_jack *jack,
527 int count,
528 struct snd_soc_jack_gpio *gpios)
f025d3b9
JN
529{
530 return 0;
531}
532
8778ac6b
TI
533static inline void snd_soc_jack_free_gpios(struct snd_soc_jack *jack, int count,
534 struct snd_soc_jack_gpio *gpios)
535{
536}
ec67624d 537#endif
8a2cd618 538
808db4a4 539/* codec register bit access */
1a39019e 540int snd_soc_update_bits(struct snd_soc_codec *codec, unsigned int reg,
46f5822f 541 unsigned int mask, unsigned int value);
dd1b3d53 542int snd_soc_update_bits_locked(struct snd_soc_codec *codec,
1a39019e 543 unsigned int reg, unsigned int mask,
dd1b3d53 544 unsigned int value);
1a39019e 545int snd_soc_test_bits(struct snd_soc_codec *codec, unsigned int reg,
46f5822f 546 unsigned int mask, unsigned int value);
808db4a4 547
336b8423 548#ifdef CONFIG_SND_SOC_AC97_BUS
47e03941 549struct snd_ac97 *snd_soc_alloc_ac97_codec(struct snd_soc_codec *codec);
7361fbea
LPC
550struct snd_ac97 *snd_soc_new_ac97_codec(struct snd_soc_codec *codec,
551 unsigned int id, unsigned int id_mask);
358a8bb5 552void snd_soc_free_ac97_codec(struct snd_ac97 *ac97);
808db4a4 553
b047e1cc 554int snd_soc_set_ac97_ops(struct snd_ac97_bus_ops *ops);
741a509f
MP
555int snd_soc_set_ac97_ops_of_reset(struct snd_ac97_bus_ops *ops,
556 struct platform_device *pdev);
b047e1cc 557
336b8423 558extern struct snd_ac97_bus_ops *soc_ac97_ops;
336b8423 559#else
336b8423
LPC
560static inline int snd_soc_set_ac97_ops_of_reset(struct snd_ac97_bus_ops *ops,
561 struct platform_device *pdev)
562{
563 return 0;
564}
565
566static inline int snd_soc_set_ac97_ops(struct snd_ac97_bus_ops *ops)
567{
568 return 0;
569}
570#endif
571
808db4a4
RP
572/*
573 *Controls
574 */
575struct snd_kcontrol *snd_soc_cnew(const struct snd_kcontrol_new *_template,
3056557f 576 void *data, const char *long_name,
efb7ac3f 577 const char *prefix);
4fefd698
DP
578struct snd_kcontrol *snd_soc_card_get_kcontrol(struct snd_soc_card *soc_card,
579 const char *name);
0f2780ad
LPC
580int snd_soc_add_component_controls(struct snd_soc_component *component,
581 const struct snd_kcontrol_new *controls, unsigned int num_controls);
022658be 582int snd_soc_add_codec_controls(struct snd_soc_codec *codec,
0f2780ad 583 const struct snd_kcontrol_new *controls, unsigned int num_controls);
a491a5c8 584int snd_soc_add_platform_controls(struct snd_soc_platform *platform,
0f2780ad 585 const struct snd_kcontrol_new *controls, unsigned int num_controls);
022658be
LG
586int snd_soc_add_card_controls(struct snd_soc_card *soc_card,
587 const struct snd_kcontrol_new *controls, int num_controls);
588int snd_soc_add_dai_controls(struct snd_soc_dai *dai,
589 const struct snd_kcontrol_new *controls, int num_controls);
808db4a4
RP
590int snd_soc_info_enum_double(struct snd_kcontrol *kcontrol,
591 struct snd_ctl_elem_info *uinfo);
808db4a4
RP
592int snd_soc_get_enum_double(struct snd_kcontrol *kcontrol,
593 struct snd_ctl_elem_value *ucontrol);
594int snd_soc_put_enum_double(struct snd_kcontrol *kcontrol,
595 struct snd_ctl_elem_value *ucontrol);
596int snd_soc_info_volsw(struct snd_kcontrol *kcontrol,
808db4a4 597 struct snd_ctl_elem_info *uinfo);
34198710
CK
598int snd_soc_info_volsw_sx(struct snd_kcontrol *kcontrol,
599 struct snd_ctl_elem_info *uinfo);
392abe9c 600#define snd_soc_info_bool_ext snd_ctl_boolean_mono_info
808db4a4
RP
601int snd_soc_get_volsw(struct snd_kcontrol *kcontrol,
602 struct snd_ctl_elem_value *ucontrol);
603int snd_soc_put_volsw(struct snd_kcontrol *kcontrol,
604 struct snd_ctl_elem_value *ucontrol);
a92f1394
PU
605#define snd_soc_get_volsw_2r snd_soc_get_volsw
606#define snd_soc_put_volsw_2r snd_soc_put_volsw
1d99f243
BA
607int snd_soc_get_volsw_sx(struct snd_kcontrol *kcontrol,
608 struct snd_ctl_elem_value *ucontrol);
609int snd_soc_put_volsw_sx(struct snd_kcontrol *kcontrol,
610 struct snd_ctl_elem_value *ucontrol);
6c9d8cf6
AT
611int snd_soc_info_volsw_range(struct snd_kcontrol *kcontrol,
612 struct snd_ctl_elem_info *uinfo);
613int snd_soc_put_volsw_range(struct snd_kcontrol *kcontrol,
614 struct snd_ctl_elem_value *ucontrol);
615int snd_soc_get_volsw_range(struct snd_kcontrol *kcontrol,
616 struct snd_ctl_elem_value *ucontrol);
26d9ca34 617int snd_soc_limit_volume(struct snd_soc_card *card,
637d3847 618 const char *name, int max);
71d08516
MB
619int snd_soc_bytes_info(struct snd_kcontrol *kcontrol,
620 struct snd_ctl_elem_info *uinfo);
621int snd_soc_bytes_get(struct snd_kcontrol *kcontrol,
622 struct snd_ctl_elem_value *ucontrol);
623int snd_soc_bytes_put(struct snd_kcontrol *kcontrol,
624 struct snd_ctl_elem_value *ucontrol);
d9881208
VK
625int snd_soc_bytes_info_ext(struct snd_kcontrol *kcontrol,
626 struct snd_ctl_elem_info *ucontrol);
7523a271
OMA
627int snd_soc_bytes_tlv_callback(struct snd_kcontrol *kcontrol, int op_flag,
628 unsigned int size, unsigned int __user *tlv);
4183eed2
KK
629int snd_soc_info_xr_sx(struct snd_kcontrol *kcontrol,
630 struct snd_ctl_elem_info *uinfo);
631int snd_soc_get_xr_sx(struct snd_kcontrol *kcontrol,
632 struct snd_ctl_elem_value *ucontrol);
633int snd_soc_put_xr_sx(struct snd_kcontrol *kcontrol,
634 struct snd_ctl_elem_value *ucontrol);
dd7b10b3
KK
635int snd_soc_get_strobe(struct snd_kcontrol *kcontrol,
636 struct snd_ctl_elem_value *ucontrol);
637int snd_soc_put_strobe(struct snd_kcontrol *kcontrol,
638 struct snd_ctl_elem_value *ucontrol);
808db4a4 639
8a2cd618
MB
640/**
641 * struct snd_soc_jack_pin - Describes a pin to update based on jack detection
642 *
643 * @pin: name of the pin to update
644 * @mask: bits to check for in reported jack status
645 * @invert: if non-zero then pin is enabled when status is not reported
628536ea 646 * @list: internal list entry
8a2cd618
MB
647 */
648struct snd_soc_jack_pin {
649 struct list_head list;
650 const char *pin;
651 int mask;
652 bool invert;
653};
654
fa9879ed
VK
655/**
656 * struct snd_soc_jack_zone - Describes voltage zones of jack detection
657 *
658 * @min_mv: start voltage in mv
659 * @max_mv: end voltage in mv
660 * @jack_type: type of jack that is expected for this voltage
661 * @debounce_time: debounce_time for jack, codec driver should wait for this
662 * duration before reading the adc for voltages
628536ea 663 * @list: internal list entry
fa9879ed
VK
664 */
665struct snd_soc_jack_zone {
666 unsigned int min_mv;
667 unsigned int max_mv;
668 unsigned int jack_type;
669 unsigned int debounce_time;
670 struct list_head list;
671};
672
ec67624d
LCM
673/**
674 * struct snd_soc_jack_gpio - Describes a gpio pin for jack detection
675 *
f025d3b9 676 * @gpio: legacy gpio number
83ad152d
JN
677 * @idx: gpio descriptor index within the function of the GPIO
678 * consumer device
628536ea 679 * @gpiod_dev: GPIO consumer device
83ad152d
JN
680 * @name: gpio name. Also as connection ID for the GPIO consumer
681 * device function name lookup
ec67624d
LCM
682 * @report: value to report when jack detected
683 * @invert: report presence in low state
628536ea 684 * @debounce_time: debounce time in ms
7887ab3a 685 * @wake: enable as wake source
fadddc87
MB
686 * @jack_status_check: callback function which overrides the detection
687 * to provide more complex checks (eg, reading an
688 * ADC).
ec67624d 689 */
ec67624d
LCM
690struct snd_soc_jack_gpio {
691 unsigned int gpio;
f025d3b9
JN
692 unsigned int idx;
693 struct device *gpiod_dev;
ec67624d
LCM
694 const char *name;
695 int report;
696 int invert;
697 int debounce_time;
7887ab3a
MB
698 bool wake;
699
628536ea 700 /* private: */
ec67624d 701 struct snd_soc_jack *jack;
4c14d78e 702 struct delayed_work work;
50dfb69d 703 struct gpio_desc *desc;
c871a053 704
cb29d7b9 705 void *data;
628536ea 706 /* public: */
cb29d7b9 707 int (*jack_status_check)(void *data);
ec67624d 708};
ec67624d 709
8a2cd618 710struct snd_soc_jack {
2667b4b8 711 struct mutex mutex;
8a2cd618 712 struct snd_jack *jack;
97093996 713 struct snd_soc_card *card;
8a2cd618
MB
714 struct list_head pins;
715 int status;
d5021ec9 716 struct blocking_notifier_head notifier;
fa9879ed 717 struct list_head jack_zones;
8a2cd618
MB
718};
719
808db4a4
RP
720/* SoC PCM stream information */
721struct snd_soc_pcm_stream {
f0fba2ad 722 const char *stream_name;
1c433fbd
GG
723 u64 formats; /* SNDRV_PCM_FMTBIT_* */
724 unsigned int rates; /* SNDRV_PCM_RATE_* */
808db4a4
RP
725 unsigned int rate_min; /* min rate */
726 unsigned int rate_max; /* max rate */
727 unsigned int channels_min; /* min channels */
728 unsigned int channels_max; /* max channels */
58ba9b25 729 unsigned int sig_bits; /* number of bits of content */
808db4a4
RP
730};
731
732/* SoC audio ops */
733struct snd_soc_ops {
734 int (*startup)(struct snd_pcm_substream *);
735 void (*shutdown)(struct snd_pcm_substream *);
736 int (*hw_params)(struct snd_pcm_substream *, struct snd_pcm_hw_params *);
737 int (*hw_free)(struct snd_pcm_substream *);
738 int (*prepare)(struct snd_pcm_substream *);
739 int (*trigger)(struct snd_pcm_substream *, int);
740};
741
49681077
VK
742struct snd_soc_compr_ops {
743 int (*startup)(struct snd_compr_stream *);
744 void (*shutdown)(struct snd_compr_stream *);
745 int (*set_params)(struct snd_compr_stream *);
746 int (*trigger)(struct snd_compr_stream *);
747};
748
d191bd8d
KM
749/* component interface */
750struct snd_soc_component_driver {
751 const char *name;
cb470087 752
61aca564
LPC
753 /* Default control and setup, added after probe() is run */
754 const struct snd_kcontrol_new *controls;
755 unsigned int num_controls;
756 const struct snd_soc_dapm_widget *dapm_widgets;
757 unsigned int num_dapm_widgets;
758 const struct snd_soc_dapm_route *dapm_routes;
759 unsigned int num_dapm_routes;
760
761 int (*probe)(struct snd_soc_component *);
762 void (*remove)(struct snd_soc_component *);
763
cb470087
KM
764 /* DT */
765 int (*of_xlate_dai_name)(struct snd_soc_component *component,
766 struct of_phandle_args *args,
767 const char **dai_name);
14e8bdeb
LPC
768 void (*seq_notifier)(struct snd_soc_component *, enum snd_soc_dapm_type,
769 int subseq);
770 int (*stream_event)(struct snd_soc_component *, int event);
f1d45cc3
LPC
771
772 /* probe ordering - for components with runtime dependencies */
773 int probe_order;
774 int remove_order;
d191bd8d
KM
775};
776
777struct snd_soc_component {
778 const char *name;
779 int id;
94f99c87 780 const char *name_prefix;
d191bd8d 781 struct device *dev;
00200107 782 struct snd_soc_card *card;
cdde4ccb
LPC
783
784 unsigned int active;
785
3d59400f 786 unsigned int ignore_pmdown_time:1; /* pmdown_time is ignored at stop */
98e639fb 787 unsigned int registered_as_component:1;
3d59400f 788
d191bd8d
KM
789 struct list_head list;
790
6833c452
KM
791 struct snd_soc_dai_driver *dai_drv;
792 int num_dai;
793
d191bd8d 794 const struct snd_soc_component_driver *driver;
1438c2f6
LPC
795
796 struct list_head dai_list;
e2c330b9
LPC
797
798 int (*read)(struct snd_soc_component *, unsigned int, unsigned int *);
799 int (*write)(struct snd_soc_component *, unsigned int, unsigned int);
800
801 struct regmap *regmap;
802 int val_bytes;
803
804 struct mutex io_mutex;
ce0fc93a 805
8a978234
LG
806 /* attached dynamic objects */
807 struct list_head dobj_list;
808
81c7cfd1
LPC
809#ifdef CONFIG_DEBUG_FS
810 struct dentry *debugfs_root;
811#endif
812
813 /*
814 * DO NOT use any of the fields below in drivers, they are temporary and
815 * are going to be removed again soon. If you use them in driver code the
816 * driver will be marked as BROKEN when these fields are removed.
817 */
818
ce0fc93a
LPC
819 /* Don't use these, use snd_soc_component_get_dapm() */
820 struct snd_soc_dapm_context dapm;
81c7cfd1 821
f1d45cc3
LPC
822 const struct snd_kcontrol_new *controls;
823 unsigned int num_controls;
824 const struct snd_soc_dapm_widget *dapm_widgets;
825 unsigned int num_dapm_widgets;
826 const struct snd_soc_dapm_route *dapm_routes;
827 unsigned int num_dapm_routes;
f1d45cc3
LPC
828 struct snd_soc_codec *codec;
829
830 int (*probe)(struct snd_soc_component *);
831 void (*remove)(struct snd_soc_component *);
832
81c7cfd1
LPC
833#ifdef CONFIG_DEBUG_FS
834 void (*init_debugfs)(struct snd_soc_component *component);
835 const char *debugfs_prefix;
836#endif
d191bd8d
KM
837};
838
f0fba2ad 839/* SoC Audio Codec device */
808db4a4 840struct snd_soc_codec {
0d0cf00a 841 struct device *dev;
001ae4c0 842 const struct snd_soc_codec_driver *driver;
0d0cf00a
MB
843
844 struct list_head list;
f0fba2ad 845 struct list_head card_list;
808db4a4
RP
846
847 /* runtime */
dad8e7ae 848 unsigned int cache_bypass:1; /* Suppress access to the cache */
f0fba2ad 849 unsigned int suspended:1; /* Codec is in suspend PM state */
fdf0f54d 850 unsigned int cache_init:1; /* codec cache has been initialized */
808db4a4
RP
851
852 /* codec IO */
853 void *control_data; /* codec control (i2c/3wire) data */
808db4a4 854 hw_write_t hw_write;
808db4a4 855 void *reg_cache;
a96ca338 856
d191bd8d
KM
857 /* component */
858 struct snd_soc_component component;
859
384c89e2
MB
860#ifdef CONFIG_DEBUG_FS
861 struct dentry *debugfs_reg;
384c89e2 862#endif
808db4a4
RP
863};
864
f0fba2ad
LG
865/* codec driver */
866struct snd_soc_codec_driver {
867
868 /* driver ops */
869 int (*probe)(struct snd_soc_codec *);
870 int (*remove)(struct snd_soc_codec *);
84b315ee 871 int (*suspend)(struct snd_soc_codec *);
f0fba2ad 872 int (*resume)(struct snd_soc_codec *);
d191bd8d 873 struct snd_soc_component_driver component_driver;
f0fba2ad 874
b7af1daf
MB
875 /* Default control and setup, added after probe() is run */
876 const struct snd_kcontrol_new *controls;
877 int num_controls;
89b95ac0
MB
878 const struct snd_soc_dapm_widget *dapm_widgets;
879 int num_dapm_widgets;
880 const struct snd_soc_dapm_route *dapm_routes;
881 int num_dapm_routes;
882
ec4ee52a
MB
883 /* codec wide operations */
884 int (*set_sysclk)(struct snd_soc_codec *codec,
da1c6ea6 885 int clk_id, int source, unsigned int freq, int dir);
ec4ee52a
MB
886 int (*set_pll)(struct snd_soc_codec *codec, int pll_id, int source,
887 unsigned int freq_in, unsigned int freq_out);
888
f0fba2ad 889 /* codec IO */
a39f75f7 890 struct regmap *(*get_regmap)(struct device *);
f0fba2ad
LG
891 unsigned int (*read)(struct snd_soc_codec *, unsigned int);
892 int (*write)(struct snd_soc_codec *, unsigned int, unsigned int);
4a8923ba 893 unsigned int reg_cache_size;
f0fba2ad
LG
894 short reg_cache_step;
895 short reg_word_size;
896 const void *reg_cache_default;
897
898 /* codec bias level */
899 int (*set_bias_level)(struct snd_soc_codec *,
900 enum snd_soc_bias_level level);
33c5f969 901 bool idle_bias_off;
86dbf2ac 902 bool suspend_bias_off;
474b62d6
MB
903
904 void (*seq_notifier)(struct snd_soc_dapm_context *,
f85a9e0d 905 enum snd_soc_dapm_type, int);
0168bf0d 906
5124e69e 907 bool ignore_pmdown_time; /* Doesn't benefit from pmdown delay */
808db4a4
RP
908};
909
910/* SoC platform interface */
f0fba2ad 911struct snd_soc_platform_driver {
808db4a4 912
f0fba2ad
LG
913 int (*probe)(struct snd_soc_platform *);
914 int (*remove)(struct snd_soc_platform *);
b37f1d12 915 struct snd_soc_component_driver component_driver;
808db4a4
RP
916
917 /* pcm creation and destruction */
552d1ef6 918 int (*pcm_new)(struct snd_soc_pcm_runtime *);
808db4a4
RP
919 void (*pcm_free)(struct snd_pcm *);
920
258020d0
PU
921 /*
922 * For platform caused delay reporting.
923 * Optional.
924 */
925 snd_pcm_sframes_t (*delay)(struct snd_pcm_substream *,
926 struct snd_soc_dai *);
927
49681077 928 /* platform stream pcm ops */
1f03f55b 929 const struct snd_pcm_ops *ops;
0168bf0d 930
49681077 931 /* platform stream compress ops */
ef03c9ae 932 const struct snd_compr_ops *compr_ops;
49681077 933
07bf84aa 934 int (*bespoke_trigger)(struct snd_pcm_substream *, int);
808db4a4
RP
935};
936
88bd870f
BC
937struct snd_soc_dai_link_component {
938 const char *name;
c362effe 939 struct device_node *of_node;
88bd870f
BC
940 const char *dai_name;
941};
942
f0fba2ad 943struct snd_soc_platform {
f0fba2ad 944 struct device *dev;
d79e57db 945 const struct snd_soc_platform_driver *driver;
808db4a4 946
f0fba2ad 947 struct list_head list;
b7950641 948
b37f1d12 949 struct snd_soc_component component;
f0fba2ad 950};
808db4a4 951
f0fba2ad
LG
952struct snd_soc_dai_link {
953 /* config - must be set by machine driver */
954 const char *name; /* Codec name */
955 const char *stream_name; /* Stream name */
bc92657a
SW
956 /*
957 * You MAY specify the link's CPU-side device, either by device name,
958 * or by DT/OF node, but not both. If this information is omitted,
959 * the CPU-side DAI is matched using .cpu_dai_name only, which hence
960 * must be globally unique. These fields are currently typically used
961 * only for codec to codec links, or systems using device tree.
962 */
963 const char *cpu_name;
8ad9f9ef 964 struct device_node *cpu_of_node;
bc92657a
SW
965 /*
966 * You MAY specify the DAI name of the CPU DAI. If this information is
967 * omitted, the CPU-side DAI is matched using .cpu_name/.cpu_of_node
968 * only, which only works well when that device exposes a single DAI.
969 */
f0fba2ad 970 const char *cpu_dai_name;
bc92657a
SW
971 /*
972 * You MUST specify the link's codec, either by device name, or by
973 * DT/OF node, but not both.
974 */
975 const char *codec_name;
8ad9f9ef 976 struct device_node *codec_of_node;
bc92657a 977 /* You MUST specify the DAI name within the codec */
f0fba2ad 978 const char *codec_dai_name;
88bd870f
BC
979
980 struct snd_soc_dai_link_component *codecs;
981 unsigned int num_codecs;
982
bc92657a
SW
983 /*
984 * You MAY specify the link's platform/PCM/DMA driver, either by
985 * device name, or by DT/OF node, but not both. Some forms of link
986 * do not need a platform.
987 */
988 const char *platform_name;
8ad9f9ef 989 struct device_node *platform_of_node;
01d7584c 990 int be_id; /* optional ID for machine driver BE identification */
4ccab3e7 991
c74184ed 992 const struct snd_soc_pcm_stream *params;
c6615082 993 unsigned int num_params;
c74184ed 994
75d9ac46
MB
995 unsigned int dai_fmt; /* format to set on init */
996
01d7584c
LG
997 enum snd_soc_dpcm_trigger trigger[2]; /* trigger type for DPCM */
998
2dc0f16b
KM
999 /* codec/machine specific init - e.g. add machine controls */
1000 int (*init)(struct snd_soc_pcm_runtime *rtd);
1001
1002 /* optional hw_params re-writing for BE and FE sync */
1003 int (*be_hw_params_fixup)(struct snd_soc_pcm_runtime *rtd,
1004 struct snd_pcm_hw_params *params);
1005
1006 /* machine stream operations */
1007 const struct snd_soc_ops *ops;
1008 const struct snd_soc_compr_ops *compr_ops;
1009
1010 /* For unidirectional dai links */
1011 bool playback_only;
1012 bool capture_only;
1013
1014 /* Mark this pcm with non atomic ops */
1015 bool nonatomic;
1016
3efab7dc
MB
1017 /* Keep DAI active over suspend */
1018 unsigned int ignore_suspend:1;
1019
06f409d7
MB
1020 /* Symmetry requirements */
1021 unsigned int symmetric_rates:1;
3635bf09
NC
1022 unsigned int symmetric_channels:1;
1023 unsigned int symmetric_samplebits:1;
06f409d7 1024
01d7584c
LG
1025 /* Do not create a PCM for this DAI link (Backend link) */
1026 unsigned int no_pcm:1;
1027
1028 /* This DAI link can route to other DAI links at runtime (Frontend)*/
1029 unsigned int dynamic:1;
1030
1e9de42f
LG
1031 /* DPCM capture and Playback support */
1032 unsigned int dpcm_capture:1;
1033 unsigned int dpcm_playback:1;
1034
b073ed4e
KM
1035 /* DPCM used FE & BE merged format */
1036 unsigned int dpcm_merged_format:1;
1037
e50fad4f 1038 /* pmdown_time is ignored at stop */
1039 unsigned int ignore_pmdown_time:1;
808db4a4
RP
1040};
1041
ff819b83 1042struct snd_soc_codec_conf {
3ca041ed
SR
1043 /*
1044 * specify device either by device name, or by
1045 * DT/OF node, but not both.
1046 */
ead9b919 1047 const char *dev_name;
c362effe 1048 struct device_node *of_node;
ff819b83
DP
1049
1050 /*
1051 * optional map of kcontrol, widget and path name prefixes that are
1052 * associated per device
1053 */
ead9b919
JN
1054 const char *name_prefix;
1055};
1056
2eea392d
JN
1057struct snd_soc_aux_dev {
1058 const char *name; /* Codec name */
3ca041ed
SR
1059
1060 /*
1061 * specify multi-codec either by device name, or by
1062 * DT/OF node, but not both.
1063 */
1064 const char *codec_name;
c362effe 1065 struct device_node *codec_of_node;
2eea392d
JN
1066
1067 /* codec/machine specific init - e.g. add machine controls */
57bf7726 1068 int (*init)(struct snd_soc_component *component);
2eea392d
JN
1069};
1070
87506549
MB
1071/* SoC card */
1072struct snd_soc_card {
f0fba2ad 1073 const char *name;
22de71ba
LG
1074 const char *long_name;
1075 const char *driver_name;
c5af3a2e 1076 struct device *dev;
f0fba2ad
LG
1077 struct snd_card *snd_card;
1078 struct module *owner;
c5af3a2e 1079
f0fba2ad 1080 struct mutex mutex;
a73fb2df 1081 struct mutex dapm_mutex;
c5af3a2e 1082
f0fba2ad 1083 bool instantiated;
808db4a4 1084
e7361ec4 1085 int (*probe)(struct snd_soc_card *card);
28e9ad92 1086 int (*late_probe)(struct snd_soc_card *card);
e7361ec4 1087 int (*remove)(struct snd_soc_card *card);
808db4a4
RP
1088
1089 /* the pre and post PM functions are used to do any PM work before and
1090 * after the codec and DAI's do any PM work. */
70b2ac12
MB
1091 int (*suspend_pre)(struct snd_soc_card *card);
1092 int (*suspend_post)(struct snd_soc_card *card);
1093 int (*resume_pre)(struct snd_soc_card *card);
1094 int (*resume_post)(struct snd_soc_card *card);
808db4a4 1095
0b4d221b 1096 /* callbacks */
87506549 1097 int (*set_bias_level)(struct snd_soc_card *,
d4c6005f 1098 struct snd_soc_dapm_context *dapm,
0be9898a 1099 enum snd_soc_bias_level level);
1badabd9 1100 int (*set_bias_level_post)(struct snd_soc_card *,
d4c6005f 1101 struct snd_soc_dapm_context *dapm,
1badabd9 1102 enum snd_soc_bias_level level);
0b4d221b 1103
6c5f1fed 1104 long pmdown_time;
96dd3622 1105
808db4a4
RP
1106 /* CPU <--> Codec DAI links */
1107 struct snd_soc_dai_link *dai_link;
1108 int num_links;
1a497983 1109 struct list_head rtd_list;
f0fba2ad 1110 int num_rtd;
6308419a 1111
ff819b83
DP
1112 /* optional codec specific configuration */
1113 struct snd_soc_codec_conf *codec_conf;
1114 int num_configs;
ead9b919 1115
2eea392d
JN
1116 /*
1117 * optional auxiliary devices such as amplifiers or codecs with DAI
1118 * link unused
1119 */
1120 struct snd_soc_aux_dev *aux_dev;
1121 int num_aux_devs;
1122 struct snd_soc_pcm_runtime *rtd_aux;
1123 int num_aux_rtd;
1124
b7af1daf
MB
1125 const struct snd_kcontrol_new *controls;
1126 int num_controls;
1127
b8ad29de
MB
1128 /*
1129 * Card-specific routes and widgets.
f23e860e 1130 * Note: of_dapm_xxx for Device Tree; Otherwise for driver build-in.
b8ad29de 1131 */
d06e48db 1132 const struct snd_soc_dapm_widget *dapm_widgets;
b8ad29de 1133 int num_dapm_widgets;
d06e48db 1134 const struct snd_soc_dapm_route *dapm_routes;
b8ad29de 1135 int num_dapm_routes;
f23e860e
NC
1136 const struct snd_soc_dapm_widget *of_dapm_widgets;
1137 int num_of_dapm_widgets;
1138 const struct snd_soc_dapm_route *of_dapm_routes;
1139 int num_of_dapm_routes;
1633281b 1140 bool fully_routed;
b8ad29de 1141
6308419a 1142 struct work_struct deferred_resume_work;
f0fba2ad
LG
1143
1144 /* lists of probed devices belonging to this card */
1145 struct list_head codec_dev_list;
a6052154 1146
97c866de 1147 struct list_head widgets;
8ddab3f5 1148 struct list_head paths;
7be31be8 1149 struct list_head dapm_list;
db432b41 1150 struct list_head dapm_dirty;
8ddab3f5 1151
8a978234
LG
1152 /* attached dynamic objects */
1153 struct list_head dobj_list;
1154
e37a4970
MB
1155 /* Generic DAPM context for the card */
1156 struct snd_soc_dapm_context dapm;
de02d078 1157 struct snd_soc_dapm_stats dapm_stats;
564c6504 1158 struct snd_soc_dapm_update *update;
e37a4970 1159
a6052154
JN
1160#ifdef CONFIG_DEBUG_FS
1161 struct dentry *debugfs_card_root;
3a45b867 1162 struct dentry *debugfs_pop_time;
a6052154 1163#endif
3a45b867 1164 u32 pop_time;
dddf3e4c
MB
1165
1166 void *drvdata;
808db4a4
RP
1167};
1168
f0fba2ad 1169/* SoC machine DAI configuration, glues a codec and cpu DAI together */
d66a327d 1170struct snd_soc_pcm_runtime {
36ae1a96 1171 struct device *dev;
87506549 1172 struct snd_soc_card *card;
f0fba2ad 1173 struct snd_soc_dai_link *dai_link;
b8c0dab9
LG
1174 struct mutex pcm_mutex;
1175 enum snd_soc_pcm_subclass pcm_subclass;
1176 struct snd_pcm_ops ops;
f0fba2ad 1177
f0fba2ad 1178 unsigned int dev_registered:1;
808db4a4 1179
01d7584c
LG
1180 /* Dynamic PCM BE runtime data */
1181 struct snd_soc_dpcm_runtime dpcm[2];
2a99ef0f 1182 int fe_compr;
01d7584c 1183
f0fba2ad 1184 long pmdown_time;
9bffb1fb 1185 unsigned char pop_wait:1;
f0fba2ad
LG
1186
1187 /* runtime devices */
1188 struct snd_pcm *pcm;
49681077 1189 struct snd_compr *compr;
f0fba2ad
LG
1190 struct snd_soc_codec *codec;
1191 struct snd_soc_platform *platform;
1192 struct snd_soc_dai *codec_dai;
1193 struct snd_soc_dai *cpu_dai;
65d9361f 1194 struct snd_soc_component *component; /* Only valid for AUX dev rtds */
f0fba2ad 1195
88bd870f
BC
1196 struct snd_soc_dai **codec_dais;
1197 unsigned int num_codecs;
1198
f0fba2ad 1199 struct delayed_work delayed_work;
f86dcef8
LG
1200#ifdef CONFIG_DEBUG_FS
1201 struct dentry *debugfs_dpcm_root;
1202 struct dentry *debugfs_dpcm_state;
1203#endif
1a497983
ML
1204
1205 unsigned int num; /* 0-based and monotonic increasing */
1206 struct list_head list; /* rtd list of the soc card */
808db4a4
RP
1207};
1208
4eaa9819
JS
1209/* mixer control */
1210struct soc_mixer_control {
d11bb4a9 1211 int min, max, platform_max;
249ce138
LPC
1212 int reg, rreg;
1213 unsigned int shift, rshift;
f227b88f 1214 unsigned int sign_bit;
57295073
LPC
1215 unsigned int invert:1;
1216 unsigned int autodisable:1;
8a978234 1217 struct snd_soc_dobj dobj;
4eaa9819
JS
1218};
1219
71d08516
MB
1220struct soc_bytes {
1221 int base;
1222 int num_regs;
f831b055 1223 u32 mask;
71d08516
MB
1224};
1225
d9881208
VK
1226struct soc_bytes_ext {
1227 int max;
8a978234
LG
1228 struct snd_soc_dobj dobj;
1229
7523a271
OMA
1230 /* used for TLV byte control */
1231 int (*get)(unsigned int __user *bytes, unsigned int size);
1232 int (*put)(const unsigned int __user *bytes, unsigned int size);
d9881208
VK
1233};
1234
4183eed2
KK
1235/* multi register control */
1236struct soc_mreg_control {
1237 long min, max;
1238 unsigned int regbase, regcount, nbits, invert;
1239};
1240
808db4a4
RP
1241/* enumerated kcontrol */
1242struct soc_enum {
b948837a 1243 int reg;
2e72f8e3
PU
1244 unsigned char shift_l;
1245 unsigned char shift_r;
9a8d38db 1246 unsigned int items;
2e72f8e3 1247 unsigned int mask;
87023ff7 1248 const char * const *texts;
2e72f8e3 1249 const unsigned int *values;
561ed680 1250 unsigned int autodisable:1;
8a978234 1251 struct snd_soc_dobj dobj;
2e72f8e3
PU
1252};
1253
28d6d175
LPC
1254/**
1255 * snd_soc_component_to_codec() - Casts a component to the CODEC it is embedded in
1256 * @component: The component to cast to a CODEC
1257 *
1258 * This function must only be used on components that are known to be CODECs.
1259 * Otherwise the behavior is undefined.
1260 */
1261static inline struct snd_soc_codec *snd_soc_component_to_codec(
1262 struct snd_soc_component *component)
1263{
1264 return container_of(component, struct snd_soc_codec, component);
1265}
1266
b37f1d12
LPC
1267/**
1268 * snd_soc_component_to_platform() - Casts a component to the platform it is embedded in
1269 * @component: The component to cast to a platform
1270 *
1271 * This function must only be used on components that are known to be platforms.
1272 * Otherwise the behavior is undefined.
1273 */
1274static inline struct snd_soc_platform *snd_soc_component_to_platform(
1275 struct snd_soc_component *component)
1276{
1277 return container_of(component, struct snd_soc_platform, component);
1278}
1279
ce0fc93a
LPC
1280/**
1281 * snd_soc_dapm_to_component() - Casts a DAPM context to the component it is
1282 * embedded in
1283 * @dapm: The DAPM context to cast to the component
1284 *
1285 * This function must only be used on DAPM contexts that are known to be part of
1286 * a component (e.g. in a component driver). Otherwise the behavior is
1287 * undefined.
1288 */
1289static inline struct snd_soc_component *snd_soc_dapm_to_component(
1290 struct snd_soc_dapm_context *dapm)
1291{
1292 return container_of(dapm, struct snd_soc_component, dapm);
1293}
1294
24089e04
LPC
1295/**
1296 * snd_soc_dapm_to_codec() - Casts a DAPM context to the CODEC it is embedded in
1297 * @dapm: The DAPM context to cast to the CODEC
1298 *
1299 * This function must only be used on DAPM contexts that are known to be part of
1300 * a CODEC (e.g. in a CODEC driver). Otherwise the behavior is undefined.
1301 */
1302static inline struct snd_soc_codec *snd_soc_dapm_to_codec(
1303 struct snd_soc_dapm_context *dapm)
1304{
4890140f 1305 return snd_soc_component_to_codec(snd_soc_dapm_to_component(dapm));
24089e04
LPC
1306}
1307
1308/**
1309 * snd_soc_dapm_to_platform() - Casts a DAPM context to the platform it is
1310 * embedded in
1311 * @dapm: The DAPM context to cast to the platform.
1312 *
1313 * This function must only be used on DAPM contexts that are known to be part of
1314 * a platform (e.g. in a platform driver). Otherwise the behavior is undefined.
1315 */
1316static inline struct snd_soc_platform *snd_soc_dapm_to_platform(
1317 struct snd_soc_dapm_context *dapm)
1318{
bc9af9fa 1319 return snd_soc_component_to_platform(snd_soc_dapm_to_component(dapm));
24089e04
LPC
1320}
1321
ce0fc93a
LPC
1322/**
1323 * snd_soc_component_get_dapm() - Returns the DAPM context associated with a
1324 * component
1325 * @component: The component for which to get the DAPM context
1326 */
1327static inline struct snd_soc_dapm_context *snd_soc_component_get_dapm(
1328 struct snd_soc_component *component)
1329{
4890140f 1330 return &component->dapm;
ce0fc93a
LPC
1331}
1332
39ed68c8
LPC
1333/**
1334 * snd_soc_codec_get_dapm() - Returns the DAPM context for the CODEC
1335 * @codec: The CODEC for which to get the DAPM context
1336 *
1337 * Note: Use this function instead of directly accessing the CODEC's dapm field
1338 */
1339static inline struct snd_soc_dapm_context *snd_soc_codec_get_dapm(
1340 struct snd_soc_codec *codec)
1341{
4890140f 1342 return snd_soc_component_get_dapm(&codec->component);
39ed68c8
LPC
1343}
1344
fa880775
LPC
1345/**
1346 * snd_soc_dapm_init_bias_level() - Initialize CODEC DAPM bias level
628536ea 1347 * @codec: The CODEC for which to initialize the DAPM bias level
fa880775
LPC
1348 * @level: The DAPM level to initialize to
1349 *
1350 * Initializes the CODEC DAPM bias level. See snd_soc_dapm_init_bias_level().
1351 */
1352static inline void snd_soc_codec_init_bias_level(struct snd_soc_codec *codec,
1353 enum snd_soc_bias_level level)
1354{
1355 snd_soc_dapm_init_bias_level(snd_soc_codec_get_dapm(codec), level);
1356}
1357
1358/**
1359 * snd_soc_dapm_get_bias_level() - Get current CODEC DAPM bias level
1360 * @codec: The CODEC for which to get the DAPM bias level
1361 *
1362 * Returns: The current DAPM bias level of the CODEC.
1363 */
1364static inline enum snd_soc_bias_level snd_soc_codec_get_bias_level(
1365 struct snd_soc_codec *codec)
1366{
1367 return snd_soc_dapm_get_bias_level(snd_soc_codec_get_dapm(codec));
1368}
1369
1370/**
1371 * snd_soc_codec_force_bias_level() - Set the CODEC DAPM bias level
1372 * @codec: The CODEC for which to set the level
1373 * @level: The level to set to
1374 *
1375 * Forces the CODEC bias level to a specific state. See
1376 * snd_soc_dapm_force_bias_level().
1377 */
1378static inline int snd_soc_codec_force_bias_level(struct snd_soc_codec *codec,
1379 enum snd_soc_bias_level level)
1380{
1381 return snd_soc_dapm_force_bias_level(snd_soc_codec_get_dapm(codec),
1382 level);
1383}
1384
6b5b042d
LPC
1385/**
1386 * snd_soc_dapm_kcontrol_codec() - Returns the codec associated to a kcontrol
1387 * @kcontrol: The kcontrol
1388 *
1389 * This function must only be used on DAPM contexts that are known to be part of
1390 * a CODEC (e.g. in a CODEC driver). Otherwise the behavior is undefined.
1391 */
1392static inline struct snd_soc_codec *snd_soc_dapm_kcontrol_codec(
1393 struct snd_kcontrol *kcontrol)
1394{
1395 return snd_soc_dapm_to_codec(snd_soc_dapm_kcontrol_dapm(kcontrol));
1396}
1397
5c82f567 1398/* codec IO */
c3753707 1399unsigned int snd_soc_read(struct snd_soc_codec *codec, unsigned int reg);
ab2874a8
LPC
1400int snd_soc_write(struct snd_soc_codec *codec, unsigned int reg,
1401 unsigned int val);
5c82f567 1402
427d204c
LPC
1403/**
1404 * snd_soc_cache_sync() - Sync the register cache with the hardware
1405 * @codec: CODEC to sync
1406 *
1407 * Note: This function will call regcache_sync()
1408 */
1409static inline int snd_soc_cache_sync(struct snd_soc_codec *codec)
1410{
1411 return regcache_sync(codec->component.regmap);
1412}
1413
e2c330b9
LPC
1414/* component IO */
1415int snd_soc_component_read(struct snd_soc_component *component,
1416 unsigned int reg, unsigned int *val);
1417int snd_soc_component_write(struct snd_soc_component *component,
1418 unsigned int reg, unsigned int val);
1419int snd_soc_component_update_bits(struct snd_soc_component *component,
1420 unsigned int reg, unsigned int mask, unsigned int val);
1421int snd_soc_component_update_bits_async(struct snd_soc_component *component,
1422 unsigned int reg, unsigned int mask, unsigned int val);
1423void snd_soc_component_async_complete(struct snd_soc_component *component);
1424int snd_soc_component_test_bits(struct snd_soc_component *component,
1425 unsigned int reg, unsigned int mask, unsigned int value);
1426
e874bf5f
LPC
1427#ifdef CONFIG_REGMAP
1428
20feb881
LPC
1429void snd_soc_component_init_regmap(struct snd_soc_component *component,
1430 struct regmap *regmap);
1431void snd_soc_component_exit_regmap(struct snd_soc_component *component);
1432
1433/**
1434 * snd_soc_codec_init_regmap() - Initialize regmap instance for the CODEC
1435 * @codec: The CODEC for which to initialize the regmap instance
1436 * @regmap: The regmap instance that should be used by the CODEC
1437 *
1438 * This function allows deferred assignment of the regmap instance that is
1439 * associated with the CODEC. Only use this if the regmap instance is not yet
1440 * ready when the CODEC is registered. The function must also be called before
1441 * the first IO attempt of the CODEC.
1442 */
1443static inline void snd_soc_codec_init_regmap(struct snd_soc_codec *codec,
1444 struct regmap *regmap)
1445{
1446 snd_soc_component_init_regmap(&codec->component, regmap);
1447}
1448
1449/**
1450 * snd_soc_codec_exit_regmap() - De-initialize regmap instance for the CODEC
1451 * @codec: The CODEC for which to de-initialize the regmap instance
1452 *
1453 * Calls regmap_exit() on the regmap instance associated to the CODEC and
1454 * removes the regmap instance from the CODEC.
1455 *
1456 * This function should only be used if snd_soc_codec_init_regmap() was used to
1457 * initialize the regmap instance.
1458 */
1459static inline void snd_soc_codec_exit_regmap(struct snd_soc_codec *codec)
1460{
1461 snd_soc_component_exit_regmap(&codec->component);
1462}
1463
e874bf5f
LPC
1464#endif
1465
f0fba2ad
LG
1466/* device driver data */
1467
dddf3e4c
MB
1468static inline void snd_soc_card_set_drvdata(struct snd_soc_card *card,
1469 void *data)
1470{
1471 card->drvdata = data;
1472}
1473
1474static inline void *snd_soc_card_get_drvdata(struct snd_soc_card *card)
1475{
1476 return card->drvdata;
1477}
1478
c815dbb4
LPC
1479static inline void snd_soc_component_set_drvdata(struct snd_soc_component *c,
1480 void *data)
1481{
1482 dev_set_drvdata(c->dev, data);
1483}
1484
1485static inline void *snd_soc_component_get_drvdata(struct snd_soc_component *c)
1486{
1487 return dev_get_drvdata(c->dev);
1488}
1489
b2c812e2 1490static inline void snd_soc_codec_set_drvdata(struct snd_soc_codec *codec,
f0fba2ad 1491 void *data)
b2c812e2 1492{
c815dbb4 1493 snd_soc_component_set_drvdata(&codec->component, data);
b2c812e2
MB
1494}
1495
1496static inline void *snd_soc_codec_get_drvdata(struct snd_soc_codec *codec)
1497{
c815dbb4 1498 return snd_soc_component_get_drvdata(&codec->component);
f0fba2ad
LG
1499}
1500
1501static inline void snd_soc_platform_set_drvdata(struct snd_soc_platform *platform,
1502 void *data)
1503{
c815dbb4 1504 snd_soc_component_set_drvdata(&platform->component, data);
f0fba2ad
LG
1505}
1506
1507static inline void *snd_soc_platform_get_drvdata(struct snd_soc_platform *platform)
1508{
c815dbb4 1509 return snd_soc_component_get_drvdata(&platform->component);
f0fba2ad
LG
1510}
1511
1512static inline void snd_soc_pcm_set_drvdata(struct snd_soc_pcm_runtime *rtd,
1513 void *data)
1514{
36ae1a96 1515 dev_set_drvdata(rtd->dev, data);
f0fba2ad
LG
1516}
1517
1518static inline void *snd_soc_pcm_get_drvdata(struct snd_soc_pcm_runtime *rtd)
1519{
36ae1a96 1520 return dev_get_drvdata(rtd->dev);
b2c812e2
MB
1521}
1522
4e10bda0
VK
1523static inline void snd_soc_initialize_card_lists(struct snd_soc_card *card)
1524{
4e10bda0 1525 INIT_LIST_HEAD(&card->codec_dev_list);
4e10bda0
VK
1526 INIT_LIST_HEAD(&card->widgets);
1527 INIT_LIST_HEAD(&card->paths);
1528 INIT_LIST_HEAD(&card->dapm_list);
1529}
1530
30d86ba4
PU
1531static inline bool snd_soc_volsw_is_stereo(struct soc_mixer_control *mc)
1532{
1533 if (mc->reg == mc->rreg && mc->shift == mc->rshift)
1534 return 0;
1535 /*
1536 * mc->reg == mc->rreg && mc->shift != mc->rshift, or
1537 * mc->reg != mc->rreg means that the control is
1538 * stereo (bits in one register or in two registers)
1539 */
1540 return 1;
1541}
1542
29ae2fa5
LPC
1543static inline unsigned int snd_soc_enum_val_to_item(struct soc_enum *e,
1544 unsigned int val)
1545{
1546 unsigned int i;
1547
1548 if (!e->values)
1549 return val;
1550
1551 for (i = 0; i < e->items; i++)
1552 if (val == e->values[i])
1553 return i;
1554
1555 return 0;
1556}
1557
1558static inline unsigned int snd_soc_enum_item_to_val(struct soc_enum *e,
1559 unsigned int item)
1560{
1561 if (!e->values)
1562 return item;
1563
1564 return e->values[item];
1565}
1566
cdde4ccb
LPC
1567static inline bool snd_soc_component_is_active(
1568 struct snd_soc_component *component)
1569{
1570 return component->active != 0;
1571}
1572
5c898e74
LPC
1573static inline bool snd_soc_codec_is_active(struct snd_soc_codec *codec)
1574{
cdde4ccb 1575 return snd_soc_component_is_active(&codec->component);
5c898e74
LPC
1576}
1577
907fe36a
LPC
1578/**
1579 * snd_soc_kcontrol_component() - Returns the component that registered the
1580 * control
1581 * @kcontrol: The control for which to get the component
1582 *
1583 * Note: This function will work correctly if the control has been registered
1584 * for a component. Either with snd_soc_add_codec_controls() or
1585 * snd_soc_add_platform_controls() or via table based setup for either a
1586 * CODEC, a platform or component driver. Otherwise the behavior is undefined.
1587 */
1588static inline struct snd_soc_component *snd_soc_kcontrol_component(
1589 struct snd_kcontrol *kcontrol)
1590{
1591 return snd_kcontrol_chip(kcontrol);
1592}
1593
ea53bf77
LPC
1594/**
1595 * snd_soc_kcontrol_codec() - Returns the CODEC that registered the control
1596 * @kcontrol: The control for which to get the CODEC
1597 *
1598 * Note: This function will only work correctly if the control has been
1599 * registered with snd_soc_add_codec_controls() or via table based setup of
1600 * snd_soc_codec_driver. Otherwise the behavior is undefined.
1601 */
1602static inline struct snd_soc_codec *snd_soc_kcontrol_codec(
1603 struct snd_kcontrol *kcontrol)
1604{
907fe36a 1605 return snd_soc_component_to_codec(snd_soc_kcontrol_component(kcontrol));
ea53bf77
LPC
1606}
1607
f6272ff8 1608/**
1a6ab46f 1609 * snd_soc_kcontrol_platform() - Returns the platform that registered the control
f6272ff8
LPC
1610 * @kcontrol: The control for which to get the platform
1611 *
1612 * Note: This function will only work correctly if the control has been
1613 * registered with snd_soc_add_platform_controls() or via table based setup of
1614 * a snd_soc_platform_driver. Otherwise the behavior is undefined.
1615 */
66097ca7 1616static inline struct snd_soc_platform *snd_soc_kcontrol_platform(
f6272ff8
LPC
1617 struct snd_kcontrol *kcontrol)
1618{
907fe36a 1619 return snd_soc_component_to_platform(snd_soc_kcontrol_component(kcontrol));
f6272ff8
LPC
1620}
1621
fb257897
MB
1622int snd_soc_util_init(void);
1623void snd_soc_util_exit(void);
1624
bec4fa05
SW
1625int snd_soc_of_parse_card_name(struct snd_soc_card *card,
1626 const char *propname);
9a6d4860
XL
1627int snd_soc_of_parse_audio_simple_widgets(struct snd_soc_card *card,
1628 const char *propname);
89c67857 1629int snd_soc_of_parse_tdm_slot(struct device_node *np,
6131084a
JS
1630 unsigned int *tx_mask,
1631 unsigned int *rx_mask,
89c67857
XL
1632 unsigned int *slots,
1633 unsigned int *slot_width);
5e3cdaa2
KM
1634void snd_soc_of_parse_audio_prefix(struct snd_soc_card *card,
1635 struct snd_soc_codec_conf *codec_conf,
1636 struct device_node *of_node,
1637 const char *propname);
a4a54dd5
SW
1638int snd_soc_of_parse_audio_routing(struct snd_soc_card *card,
1639 const char *propname);
a7930ed4 1640unsigned int snd_soc_of_parse_daifmt(struct device_node *np,
389cb834
JS
1641 const char *prefix,
1642 struct device_node **bitclkmaster,
1643 struct device_node **framemaster);
cb470087
KM
1644int snd_soc_of_get_dai_name(struct device_node *of_node,
1645 const char **dai_name);
93b0f3ee
JFM
1646int snd_soc_of_get_dai_link_codecs(struct device *dev,
1647 struct device_node *of_node,
1648 struct snd_soc_dai_link *dai_link);
bec4fa05 1649
a47cbe72
MB
1650#include <sound/soc-dai.h>
1651
faff4bb0 1652#ifdef CONFIG_DEBUG_FS
8a9dab1a 1653extern struct dentry *snd_soc_debugfs_root;
faff4bb0
SW
1654#endif
1655
6f8ab4ac
MB
1656extern const struct dev_pm_ops snd_soc_pm_ops;
1657
f6d5e586
CK
1658/* Helper functions */
1659static inline void snd_soc_dapm_mutex_lock(struct snd_soc_dapm_context *dapm)
1660{
1661 mutex_lock(&dapm->card->dapm_mutex);
1662}
1663
1664static inline void snd_soc_dapm_mutex_unlock(struct snd_soc_dapm_context *dapm)
1665{
1666 mutex_unlock(&dapm->card->dapm_mutex);
1667}
1668
808db4a4 1669#endif
This page took 0.933065 seconds and 5 git commands to generate.