cris: define __fls
[linux-2.6/x86.git] / include / sound / soc.h
blobf86e455d3828b222e6cab7331d6cbfda5fef0456
1 /*
2 * linux/sound/soc.h -- ALSA SoC Layer
4 * Author: Liam Girdwood
5 * Created: Aug 11th 2005
6 * Copyright: Wolfson Microelectronics. PLC.
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.
13 #ifndef __LINUX_SND_SOC_H
14 #define __LINUX_SND_SOC_H
16 #include <linux/platform_device.h>
17 #include <linux/types.h>
18 #include <linux/workqueue.h>
19 #include <sound/core.h>
20 #include <sound/pcm.h>
21 #include <sound/control.h>
22 #include <sound/ac97_codec.h>
25 * Convenience kcontrol builders
27 #define SOC_SINGLE_VALUE(xreg, xshift, xmax, xinvert) \
28 ((unsigned long)&(struct soc_mixer_control) \
29 {.reg = xreg, .shift = xshift, .rshift = xshift, .max = xmax, \
30 .invert = xinvert})
31 #define SOC_SINGLE_VALUE_EXT(xreg, xmax, xinvert) \
32 ((unsigned long)&(struct soc_mixer_control) \
33 {.reg = xreg, .max = xmax, .invert = xinvert})
34 #define SOC_SINGLE(xname, reg, shift, max, invert) \
35 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
36 .info = snd_soc_info_volsw, .get = snd_soc_get_volsw,\
37 .put = snd_soc_put_volsw, \
38 .private_value = SOC_SINGLE_VALUE(reg, shift, max, invert) }
39 #define SOC_SINGLE_TLV(xname, reg, shift, max, invert, tlv_array) \
40 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
41 .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ |\
42 SNDRV_CTL_ELEM_ACCESS_READWRITE,\
43 .tlv.p = (tlv_array), \
44 .info = snd_soc_info_volsw, .get = snd_soc_get_volsw,\
45 .put = snd_soc_put_volsw, \
46 .private_value = SOC_SINGLE_VALUE(reg, shift, max, invert) }
47 #define SOC_DOUBLE(xname, xreg, shift_left, shift_right, xmax, xinvert) \
48 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname),\
49 .info = snd_soc_info_volsw, .get = snd_soc_get_volsw, \
50 .put = snd_soc_put_volsw, \
51 .private_value = (unsigned long)&(struct soc_mixer_control) \
52 {.reg = xreg, .shift = shift_left, .rshift = shift_right, \
53 .max = xmax, .invert = xinvert} }
54 #define SOC_DOUBLE_R(xname, reg_left, reg_right, xshift, xmax, xinvert) \
55 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname), \
56 .info = snd_soc_info_volsw_2r, \
57 .get = snd_soc_get_volsw_2r, .put = snd_soc_put_volsw_2r, \
58 .private_value = (unsigned long)&(struct soc_mixer_control) \
59 {.reg = reg_left, .rreg = reg_right, .shift = xshift, \
60 .max = xmax, .invert = xinvert} }
61 #define SOC_DOUBLE_TLV(xname, xreg, shift_left, shift_right, xmax, xinvert, tlv_array) \
62 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname),\
63 .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ |\
64 SNDRV_CTL_ELEM_ACCESS_READWRITE,\
65 .tlv.p = (tlv_array), \
66 .info = snd_soc_info_volsw, .get = snd_soc_get_volsw, \
67 .put = snd_soc_put_volsw, \
68 .private_value = (unsigned long)&(struct soc_mixer_control) \
69 {.reg = xreg, .shift = shift_left, .rshift = shift_right,\
70 .max = xmax, .invert = xinvert} }
71 #define SOC_DOUBLE_R_TLV(xname, reg_left, reg_right, xshift, xmax, xinvert, tlv_array) \
72 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname),\
73 .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ |\
74 SNDRV_CTL_ELEM_ACCESS_READWRITE,\
75 .tlv.p = (tlv_array), \
76 .info = snd_soc_info_volsw_2r, \
77 .get = snd_soc_get_volsw_2r, .put = snd_soc_put_volsw_2r, \
78 .private_value = (unsigned long)&(struct soc_mixer_control) \
79 {.reg = reg_left, .rreg = reg_right, .shift = xshift, \
80 .max = xmax, .invert = xinvert} }
81 #define SOC_DOUBLE_S8_TLV(xname, xreg, xmin, xmax, tlv_array) \
82 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname), \
83 .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ | \
84 SNDRV_CTL_ELEM_ACCESS_READWRITE, \
85 .tlv.p = (tlv_array), \
86 .info = snd_soc_info_volsw_s8, .get = snd_soc_get_volsw_s8, \
87 .put = snd_soc_put_volsw_s8, \
88 .private_value = (unsigned long)&(struct soc_mixer_control) \
89 {.reg = xreg, .min = xmin, .max = xmax} }
90 #define SOC_ENUM_DOUBLE(xreg, xshift_l, xshift_r, xmax, xtexts) \
91 { .reg = xreg, .shift_l = xshift_l, .shift_r = xshift_r, \
92 .max = xmax, .texts = xtexts }
93 #define SOC_ENUM_SINGLE(xreg, xshift, xmax, xtexts) \
94 SOC_ENUM_DOUBLE(xreg, xshift, xshift, xmax, xtexts)
95 #define SOC_ENUM_SINGLE_EXT(xmax, xtexts) \
96 { .max = xmax, .texts = xtexts }
97 #define SOC_ENUM(xname, xenum) \
98 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname,\
99 .info = snd_soc_info_enum_double, \
100 .get = snd_soc_get_enum_double, .put = snd_soc_put_enum_double, \
101 .private_value = (unsigned long)&xenum }
102 #define SOC_SINGLE_EXT(xname, xreg, xshift, xmax, xinvert,\
103 xhandler_get, xhandler_put) \
104 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
105 .info = snd_soc_info_volsw, \
106 .get = xhandler_get, .put = xhandler_put, \
107 .private_value = SOC_SINGLE_VALUE(xreg, xshift, xmax, xinvert) }
108 #define SOC_SINGLE_EXT_TLV(xname, xreg, xshift, xmax, xinvert,\
109 xhandler_get, xhandler_put, tlv_array) \
110 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
111 .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ |\
112 SNDRV_CTL_ELEM_ACCESS_READWRITE,\
113 .tlv.p = (tlv_array), \
114 .info = snd_soc_info_volsw, \
115 .get = xhandler_get, .put = xhandler_put, \
116 .private_value = SOC_SINGLE_VALUE(xreg, xshift, xmax, xinvert) }
117 #define SOC_SINGLE_BOOL_EXT(xname, xdata, xhandler_get, xhandler_put) \
118 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
119 .info = snd_soc_info_bool_ext, \
120 .get = xhandler_get, .put = xhandler_put, \
121 .private_value = xdata }
122 #define SOC_ENUM_EXT(xname, xenum, xhandler_get, xhandler_put) \
123 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
124 .info = snd_soc_info_enum_ext, \
125 .get = xhandler_get, .put = xhandler_put, \
126 .private_value = (unsigned long)&xenum }
129 * Bias levels
131 * @ON: Bias is fully on for audio playback and capture operations.
132 * @PREPARE: Prepare for audio operations. Called before DAPM switching for
133 * stream start and stop operations.
134 * @STANDBY: Low power standby state when no playback/capture operations are
135 * in progress. NOTE: The transition time between STANDBY and ON
136 * should be as fast as possible and no longer than 10ms.
137 * @OFF: Power Off. No restrictions on transition times.
139 enum snd_soc_bias_level {
140 SND_SOC_BIAS_ON,
141 SND_SOC_BIAS_PREPARE,
142 SND_SOC_BIAS_STANDBY,
143 SND_SOC_BIAS_OFF,
146 struct snd_soc_device;
147 struct snd_soc_pcm_stream;
148 struct snd_soc_ops;
149 struct snd_soc_dai_mode;
150 struct snd_soc_pcm_runtime;
151 struct snd_soc_dai;
152 struct snd_soc_platform;
153 struct snd_soc_codec;
154 struct soc_enum;
155 struct snd_soc_ac97_ops;
157 typedef int (*hw_write_t)(void *,const char* ,int);
158 typedef int (*hw_read_t)(void *,char* ,int);
160 extern struct snd_ac97_bus_ops soc_ac97_ops;
162 int snd_soc_register_platform(struct snd_soc_platform *platform);
163 void snd_soc_unregister_platform(struct snd_soc_platform *platform);
164 int snd_soc_register_codec(struct snd_soc_codec *codec);
165 void snd_soc_unregister_codec(struct snd_soc_codec *codec);
167 /* pcm <-> DAI connect */
168 void snd_soc_free_pcms(struct snd_soc_device *socdev);
169 int snd_soc_new_pcms(struct snd_soc_device *socdev, int idx, const char *xid);
170 int snd_soc_init_card(struct snd_soc_device *socdev);
172 /* set runtime hw params */
173 int snd_soc_set_runtime_hwparams(struct snd_pcm_substream *substream,
174 const struct snd_pcm_hardware *hw);
176 /* codec IO */
177 #define snd_soc_read(codec, reg) codec->read(codec, reg)
178 #define snd_soc_write(codec, reg, value) codec->write(codec, reg, value)
180 /* codec register bit access */
181 int snd_soc_update_bits(struct snd_soc_codec *codec, unsigned short reg,
182 unsigned short mask, unsigned short value);
183 int snd_soc_test_bits(struct snd_soc_codec *codec, unsigned short reg,
184 unsigned short mask, unsigned short value);
186 int snd_soc_new_ac97_codec(struct snd_soc_codec *codec,
187 struct snd_ac97_bus_ops *ops, int num);
188 void snd_soc_free_ac97_codec(struct snd_soc_codec *codec);
191 *Controls
193 struct snd_kcontrol *snd_soc_cnew(const struct snd_kcontrol_new *_template,
194 void *data, char *long_name);
195 int snd_soc_info_enum_double(struct snd_kcontrol *kcontrol,
196 struct snd_ctl_elem_info *uinfo);
197 int snd_soc_info_enum_ext(struct snd_kcontrol *kcontrol,
198 struct snd_ctl_elem_info *uinfo);
199 int snd_soc_get_enum_double(struct snd_kcontrol *kcontrol,
200 struct snd_ctl_elem_value *ucontrol);
201 int snd_soc_put_enum_double(struct snd_kcontrol *kcontrol,
202 struct snd_ctl_elem_value *ucontrol);
203 int snd_soc_info_volsw(struct snd_kcontrol *kcontrol,
204 struct snd_ctl_elem_info *uinfo);
205 int snd_soc_info_volsw_ext(struct snd_kcontrol *kcontrol,
206 struct snd_ctl_elem_info *uinfo);
207 #define snd_soc_info_bool_ext snd_ctl_boolean_mono_info
208 int snd_soc_get_volsw(struct snd_kcontrol *kcontrol,
209 struct snd_ctl_elem_value *ucontrol);
210 int snd_soc_put_volsw(struct snd_kcontrol *kcontrol,
211 struct snd_ctl_elem_value *ucontrol);
212 int snd_soc_info_volsw_2r(struct snd_kcontrol *kcontrol,
213 struct snd_ctl_elem_info *uinfo);
214 int snd_soc_get_volsw_2r(struct snd_kcontrol *kcontrol,
215 struct snd_ctl_elem_value *ucontrol);
216 int snd_soc_put_volsw_2r(struct snd_kcontrol *kcontrol,
217 struct snd_ctl_elem_value *ucontrol);
218 int snd_soc_info_volsw_s8(struct snd_kcontrol *kcontrol,
219 struct snd_ctl_elem_info *uinfo);
220 int snd_soc_get_volsw_s8(struct snd_kcontrol *kcontrol,
221 struct snd_ctl_elem_value *ucontrol);
222 int snd_soc_put_volsw_s8(struct snd_kcontrol *kcontrol,
223 struct snd_ctl_elem_value *ucontrol);
225 /* SoC PCM stream information */
226 struct snd_soc_pcm_stream {
227 char *stream_name;
228 u64 formats; /* SNDRV_PCM_FMTBIT_* */
229 unsigned int rates; /* SNDRV_PCM_RATE_* */
230 unsigned int rate_min; /* min rate */
231 unsigned int rate_max; /* max rate */
232 unsigned int channels_min; /* min channels */
233 unsigned int channels_max; /* max channels */
234 unsigned int active:1; /* stream is in use */
237 /* SoC audio ops */
238 struct snd_soc_ops {
239 int (*startup)(struct snd_pcm_substream *);
240 void (*shutdown)(struct snd_pcm_substream *);
241 int (*hw_params)(struct snd_pcm_substream *, struct snd_pcm_hw_params *);
242 int (*hw_free)(struct snd_pcm_substream *);
243 int (*prepare)(struct snd_pcm_substream *);
244 int (*trigger)(struct snd_pcm_substream *, int);
247 /* SoC Audio Codec */
248 struct snd_soc_codec {
249 char *name;
250 struct module *owner;
251 struct mutex mutex;
252 struct device *dev;
254 struct list_head list;
256 /* callbacks */
257 int (*set_bias_level)(struct snd_soc_codec *,
258 enum snd_soc_bias_level level);
260 /* runtime */
261 struct snd_card *card;
262 struct snd_ac97 *ac97; /* for ad-hoc ac97 devices */
263 unsigned int active;
264 unsigned int pcm_devs;
265 void *private_data;
267 /* codec IO */
268 void *control_data; /* codec control (i2c/3wire) data */
269 unsigned int (*read)(struct snd_soc_codec *, unsigned int);
270 int (*write)(struct snd_soc_codec *, unsigned int, unsigned int);
271 int (*display_register)(struct snd_soc_codec *, char *,
272 size_t, unsigned int);
273 hw_write_t hw_write;
274 hw_read_t hw_read;
275 void *reg_cache;
276 short reg_cache_size;
277 short reg_cache_step;
279 /* dapm */
280 u32 pop_time;
281 struct list_head dapm_widgets;
282 struct list_head dapm_paths;
283 enum snd_soc_bias_level bias_level;
284 enum snd_soc_bias_level suspend_bias_level;
285 struct delayed_work delayed_work;
287 /* codec DAI's */
288 struct snd_soc_dai *dai;
289 unsigned int num_dai;
291 #ifdef CONFIG_DEBUG_FS
292 struct dentry *debugfs_reg;
293 struct dentry *debugfs_pop_time;
294 #endif
297 /* codec device */
298 struct snd_soc_codec_device {
299 int (*probe)(struct platform_device *pdev);
300 int (*remove)(struct platform_device *pdev);
301 int (*suspend)(struct platform_device *pdev, pm_message_t state);
302 int (*resume)(struct platform_device *pdev);
305 /* SoC platform interface */
306 struct snd_soc_platform {
307 char *name;
308 struct list_head list;
310 int (*probe)(struct platform_device *pdev);
311 int (*remove)(struct platform_device *pdev);
312 int (*suspend)(struct snd_soc_dai *dai);
313 int (*resume)(struct snd_soc_dai *dai);
315 /* pcm creation and destruction */
316 int (*pcm_new)(struct snd_card *, struct snd_soc_dai *,
317 struct snd_pcm *);
318 void (*pcm_free)(struct snd_pcm *);
320 /* platform stream ops */
321 struct snd_pcm_ops *pcm_ops;
324 /* SoC machine DAI configuration, glues a codec and cpu DAI together */
325 struct snd_soc_dai_link {
326 char *name; /* Codec name */
327 char *stream_name; /* Stream name */
329 /* DAI */
330 struct snd_soc_dai *codec_dai;
331 struct snd_soc_dai *cpu_dai;
333 /* machine stream operations */
334 struct snd_soc_ops *ops;
336 /* codec/machine specific init - e.g. add machine controls */
337 int (*init)(struct snd_soc_codec *codec);
339 /* DAI pcm */
340 struct snd_pcm *pcm;
343 /* SoC card */
344 struct snd_soc_card {
345 char *name;
346 struct device *dev;
348 struct list_head list;
350 int instantiated;
352 int (*probe)(struct platform_device *pdev);
353 int (*remove)(struct platform_device *pdev);
355 /* the pre and post PM functions are used to do any PM work before and
356 * after the codec and DAI's do any PM work. */
357 int (*suspend_pre)(struct platform_device *pdev, pm_message_t state);
358 int (*suspend_post)(struct platform_device *pdev, pm_message_t state);
359 int (*resume_pre)(struct platform_device *pdev);
360 int (*resume_post)(struct platform_device *pdev);
362 /* callbacks */
363 int (*set_bias_level)(struct snd_soc_card *,
364 enum snd_soc_bias_level level);
366 /* CPU <--> Codec DAI links */
367 struct snd_soc_dai_link *dai_link;
368 int num_links;
370 struct snd_soc_device *socdev;
372 struct snd_soc_platform *platform;
373 struct delayed_work delayed_work;
374 struct work_struct deferred_resume_work;
377 /* SoC Device - the audio subsystem */
378 struct snd_soc_device {
379 struct device *dev;
380 struct snd_soc_card *card;
381 struct snd_soc_codec *codec;
382 struct snd_soc_codec_device *codec_dev;
383 void *codec_data;
386 /* runtime channel data */
387 struct snd_soc_pcm_runtime {
388 struct snd_soc_dai_link *dai;
389 struct snd_soc_device *socdev;
392 /* mixer control */
393 struct soc_mixer_control {
394 int min, max;
395 unsigned int reg, rreg, shift, rshift, invert;
398 /* enumerated kcontrol */
399 struct soc_enum {
400 unsigned short reg;
401 unsigned short reg2;
402 unsigned char shift_l;
403 unsigned char shift_r;
404 unsigned int max;
405 const char **texts;
406 void *dapm;
409 #include <sound/soc-dai.h>
411 #endif