Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 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 | |
| 16 | #include <linux/platform_device.h> |
| 17 | #include <linux/types.h> |
Andrew Morton | 4484bb2 | 2006-12-15 09:30:07 +0100 | [diff] [blame] | 18 | #include <linux/workqueue.h> |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 19 | #include <sound/core.h> |
| 20 | #include <sound/pcm.h> |
| 21 | #include <sound/control.h> |
| 22 | #include <sound/ac97_codec.h> |
| 23 | |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 24 | /* |
| 25 | * Convenience kcontrol builders |
| 26 | */ |
Jon Smirl | 4eaa981 | 2008-07-29 11:42:26 +0100 | [diff] [blame] | 27 | #define SOC_SINGLE_VALUE(xreg, xshift, xmax, xinvert) \ |
| 28 | ((unsigned long)&(struct soc_mixer_control) \ |
Mark Brown | 762b8df | 2008-10-30 12:37:08 +0000 | [diff] [blame] | 29 | {.reg = xreg, .shift = xshift, .rshift = xshift, .max = xmax, \ |
| 30 | .invert = xinvert}) |
Jon Smirl | 4eaa981 | 2008-07-29 11:42:26 +0100 | [diff] [blame] | 31 | #define SOC_SINGLE_VALUE_EXT(xreg, xmax, xinvert) \ |
| 32 | ((unsigned long)&(struct soc_mixer_control) \ |
| 33 | {.reg = xreg, .max = xmax, .invert = xinvert}) |
Philipp Zabel | a7a4ac8 | 2008-01-10 14:37:42 +0100 | [diff] [blame] | 34 | #define SOC_SINGLE(xname, reg, shift, max, invert) \ |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 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, \ |
Philipp Zabel | a7a4ac8 | 2008-01-10 14:37:42 +0100 | [diff] [blame] | 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) } |
Jon Smirl | 4eaa981 | 2008-07-29 11:42:26 +0100 | [diff] [blame] | 47 | #define SOC_DOUBLE(xname, xreg, shift_left, shift_right, xmax, xinvert) \ |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 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, \ |
Jon Smirl | 4eaa981 | 2008-07-29 11:42:26 +0100 | [diff] [blame] | 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) \ |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 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, \ |
Jon Smirl | 4eaa981 | 2008-07-29 11:42:26 +0100 | [diff] [blame] | 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) \ |
Philipp Zabel | a7a4ac8 | 2008-01-10 14:37:42 +0100 | [diff] [blame] | 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, \ |
Jon Smirl | 4eaa981 | 2008-07-29 11:42:26 +0100 | [diff] [blame] | 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) \ |
Philipp Zabel | a7a4ac8 | 2008-01-10 14:37:42 +0100 | [diff] [blame] | 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, \ |
Jon Smirl | 4eaa981 | 2008-07-29 11:42:26 +0100 | [diff] [blame] | 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) \ |
Mark Brown | e13ac2e | 2008-05-28 17:58:05 +0100 | [diff] [blame] | 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, \ |
Jon Smirl | 4eaa981 | 2008-07-29 11:42:26 +0100 | [diff] [blame] | 88 | .private_value = (unsigned long)&(struct soc_mixer_control) \ |
| 89 | {.reg = xreg, .min = xmin, .max = xmax} } |
Jon Smirl | f8ba0b7 | 2008-07-29 11:42:27 +0100 | [diff] [blame] | 90 | #define SOC_ENUM_DOUBLE(xreg, xshift_l, xshift_r, xmax, xtexts) \ |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 91 | { .reg = xreg, .shift_l = xshift_l, .shift_r = xshift_r, \ |
Jon Smirl | f8ba0b7 | 2008-07-29 11:42:27 +0100 | [diff] [blame] | 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 } |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 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 } |
Jon Smirl | f8ba0b7 | 2008-07-29 11:42:27 +0100 | [diff] [blame] | 102 | #define SOC_SINGLE_EXT(xname, xreg, xshift, xmax, xinvert,\ |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 103 | xhandler_get, xhandler_put) \ |
| 104 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \ |
Graeme Gregory | 1c433fb | 2007-02-02 17:13:05 +0100 | [diff] [blame] | 105 | .info = snd_soc_info_volsw, \ |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 106 | .get = xhandler_get, .put = xhandler_put, \ |
Jon Smirl | f8ba0b7 | 2008-07-29 11:42:27 +0100 | [diff] [blame] | 107 | .private_value = SOC_SINGLE_VALUE(xreg, xshift, xmax, xinvert) } |
| 108 | #define SOC_SINGLE_EXT_TLV(xname, xreg, xshift, xmax, xinvert,\ |
Mike Montour | 10144c0 | 2008-06-11 13:47:13 +0100 | [diff] [blame] | 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, \ |
Jon Smirl | f8ba0b7 | 2008-07-29 11:42:27 +0100 | [diff] [blame] | 116 | .private_value = SOC_SINGLE_VALUE(xreg, xshift, xmax, xinvert) } |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 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 } |
| 127 | |
| 128 | /* |
Mark Brown | 0be9898 | 2008-05-19 12:31:28 +0200 | [diff] [blame] | 129 | * Bias levels |
| 130 | * |
| 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. |
| 138 | */ |
| 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, |
| 144 | }; |
| 145 | |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 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; |
Liam Girdwood | 3c4b266 | 2008-07-07 16:07:17 +0100 | [diff] [blame] | 151 | struct snd_soc_dai; |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 152 | struct snd_soc_codec; |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 153 | struct soc_enum; |
| 154 | struct snd_soc_ac97_ops; |
| 155 | struct snd_soc_clock_info; |
| 156 | |
| 157 | typedef int (*hw_write_t)(void *,const char* ,int); |
| 158 | typedef int (*hw_read_t)(void *,char* ,int); |
| 159 | |
| 160 | extern struct snd_ac97_bus_ops soc_ac97_ops; |
| 161 | |
| 162 | /* pcm <-> DAI connect */ |
| 163 | void snd_soc_free_pcms(struct snd_soc_device *socdev); |
| 164 | int snd_soc_new_pcms(struct snd_soc_device *socdev, int idx, const char *xid); |
Mark Brown | 968a602 | 2008-11-28 11:49:07 +0000 | [diff] [blame] | 165 | int snd_soc_init_card(struct snd_soc_device *socdev); |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 166 | |
| 167 | /* set runtime hw params */ |
| 168 | int snd_soc_set_runtime_hwparams(struct snd_pcm_substream *substream, |
| 169 | const struct snd_pcm_hardware *hw); |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 170 | |
| 171 | /* codec IO */ |
| 172 | #define snd_soc_read(codec, reg) codec->read(codec, reg) |
| 173 | #define snd_soc_write(codec, reg, value) codec->write(codec, reg, value) |
| 174 | |
| 175 | /* codec register bit access */ |
| 176 | int snd_soc_update_bits(struct snd_soc_codec *codec, unsigned short reg, |
| 177 | unsigned short mask, unsigned short value); |
| 178 | int snd_soc_test_bits(struct snd_soc_codec *codec, unsigned short reg, |
| 179 | unsigned short mask, unsigned short value); |
| 180 | |
| 181 | int snd_soc_new_ac97_codec(struct snd_soc_codec *codec, |
| 182 | struct snd_ac97_bus_ops *ops, int num); |
| 183 | void snd_soc_free_ac97_codec(struct snd_soc_codec *codec); |
| 184 | |
| 185 | /* |
| 186 | *Controls |
| 187 | */ |
| 188 | struct snd_kcontrol *snd_soc_cnew(const struct snd_kcontrol_new *_template, |
| 189 | void *data, char *long_name); |
| 190 | int snd_soc_info_enum_double(struct snd_kcontrol *kcontrol, |
| 191 | struct snd_ctl_elem_info *uinfo); |
| 192 | int snd_soc_info_enum_ext(struct snd_kcontrol *kcontrol, |
| 193 | struct snd_ctl_elem_info *uinfo); |
| 194 | int snd_soc_get_enum_double(struct snd_kcontrol *kcontrol, |
| 195 | struct snd_ctl_elem_value *ucontrol); |
| 196 | int snd_soc_put_enum_double(struct snd_kcontrol *kcontrol, |
| 197 | struct snd_ctl_elem_value *ucontrol); |
| 198 | int snd_soc_info_volsw(struct snd_kcontrol *kcontrol, |
| 199 | struct snd_ctl_elem_info *uinfo); |
| 200 | int snd_soc_info_volsw_ext(struct snd_kcontrol *kcontrol, |
| 201 | struct snd_ctl_elem_info *uinfo); |
Philipp Zabel | 392abe9 | 2008-05-13 14:03:40 +0200 | [diff] [blame] | 202 | #define snd_soc_info_bool_ext snd_ctl_boolean_mono_info |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 203 | int snd_soc_get_volsw(struct snd_kcontrol *kcontrol, |
| 204 | struct snd_ctl_elem_value *ucontrol); |
| 205 | int snd_soc_put_volsw(struct snd_kcontrol *kcontrol, |
| 206 | struct snd_ctl_elem_value *ucontrol); |
| 207 | int snd_soc_info_volsw_2r(struct snd_kcontrol *kcontrol, |
| 208 | struct snd_ctl_elem_info *uinfo); |
| 209 | int snd_soc_get_volsw_2r(struct snd_kcontrol *kcontrol, |
| 210 | struct snd_ctl_elem_value *ucontrol); |
| 211 | int snd_soc_put_volsw_2r(struct snd_kcontrol *kcontrol, |
| 212 | struct snd_ctl_elem_value *ucontrol); |
Mark Brown | e13ac2e | 2008-05-28 17:58:05 +0100 | [diff] [blame] | 213 | int snd_soc_info_volsw_s8(struct snd_kcontrol *kcontrol, |
| 214 | struct snd_ctl_elem_info *uinfo); |
| 215 | int snd_soc_get_volsw_s8(struct snd_kcontrol *kcontrol, |
| 216 | struct snd_ctl_elem_value *ucontrol); |
| 217 | int snd_soc_put_volsw_s8(struct snd_kcontrol *kcontrol, |
| 218 | struct snd_ctl_elem_value *ucontrol); |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 219 | |
| 220 | /* SoC PCM stream information */ |
| 221 | struct snd_soc_pcm_stream { |
| 222 | char *stream_name; |
Graeme Gregory | 1c433fb | 2007-02-02 17:13:05 +0100 | [diff] [blame] | 223 | u64 formats; /* SNDRV_PCM_FMTBIT_* */ |
| 224 | unsigned int rates; /* SNDRV_PCM_RATE_* */ |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 225 | unsigned int rate_min; /* min rate */ |
| 226 | unsigned int rate_max; /* max rate */ |
| 227 | unsigned int channels_min; /* min channels */ |
| 228 | unsigned int channels_max; /* max channels */ |
| 229 | unsigned int active:1; /* stream is in use */ |
| 230 | }; |
| 231 | |
| 232 | /* SoC audio ops */ |
| 233 | struct snd_soc_ops { |
| 234 | int (*startup)(struct snd_pcm_substream *); |
| 235 | void (*shutdown)(struct snd_pcm_substream *); |
| 236 | int (*hw_params)(struct snd_pcm_substream *, struct snd_pcm_hw_params *); |
| 237 | int (*hw_free)(struct snd_pcm_substream *); |
| 238 | int (*prepare)(struct snd_pcm_substream *); |
| 239 | int (*trigger)(struct snd_pcm_substream *, int); |
| 240 | }; |
| 241 | |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 242 | /* SoC Audio Codec */ |
| 243 | struct snd_soc_codec { |
| 244 | char *name; |
| 245 | struct module *owner; |
| 246 | struct mutex mutex; |
| 247 | |
| 248 | /* callbacks */ |
Mark Brown | 0be9898 | 2008-05-19 12:31:28 +0200 | [diff] [blame] | 249 | int (*set_bias_level)(struct snd_soc_codec *, |
| 250 | enum snd_soc_bias_level level); |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 251 | |
| 252 | /* runtime */ |
| 253 | struct snd_card *card; |
| 254 | struct snd_ac97 *ac97; /* for ad-hoc ac97 devices */ |
| 255 | unsigned int active; |
| 256 | unsigned int pcm_devs; |
| 257 | void *private_data; |
| 258 | |
| 259 | /* codec IO */ |
| 260 | void *control_data; /* codec control (i2c/3wire) data */ |
| 261 | unsigned int (*read)(struct snd_soc_codec *, unsigned int); |
| 262 | int (*write)(struct snd_soc_codec *, unsigned int, unsigned int); |
Mark Brown | 58cd33c | 2008-07-29 11:42:25 +0100 | [diff] [blame] | 263 | int (*display_register)(struct snd_soc_codec *, char *, |
| 264 | size_t, unsigned int); |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 265 | hw_write_t hw_write; |
| 266 | hw_read_t hw_read; |
| 267 | void *reg_cache; |
| 268 | short reg_cache_size; |
| 269 | short reg_cache_step; |
| 270 | |
| 271 | /* dapm */ |
Troy Kisky | 12ef193 | 2008-10-13 17:42:14 -0700 | [diff] [blame] | 272 | u32 pop_time; |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 273 | struct list_head dapm_widgets; |
| 274 | struct list_head dapm_paths; |
Mark Brown | 0be9898 | 2008-05-19 12:31:28 +0200 | [diff] [blame] | 275 | enum snd_soc_bias_level bias_level; |
| 276 | enum snd_soc_bias_level suspend_bias_level; |
Takashi Iwai | 1321b16 | 2006-12-21 11:02:06 +0100 | [diff] [blame] | 277 | struct delayed_work delayed_work; |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 278 | |
| 279 | /* codec DAI's */ |
Liam Girdwood | 3c4b266 | 2008-07-07 16:07:17 +0100 | [diff] [blame] | 280 | struct snd_soc_dai *dai; |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 281 | unsigned int num_dai; |
Mark Brown | 384c89e | 2008-12-03 17:34:03 +0000 | [diff] [blame^] | 282 | |
| 283 | #ifdef CONFIG_DEBUG_FS |
| 284 | struct dentry *debugfs_reg; |
| 285 | struct dentry *debugfs_pop_time; |
| 286 | #endif |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 287 | }; |
| 288 | |
| 289 | /* codec device */ |
| 290 | struct snd_soc_codec_device { |
| 291 | int (*probe)(struct platform_device *pdev); |
| 292 | int (*remove)(struct platform_device *pdev); |
| 293 | int (*suspend)(struct platform_device *pdev, pm_message_t state); |
| 294 | int (*resume)(struct platform_device *pdev); |
| 295 | }; |
| 296 | |
| 297 | /* SoC platform interface */ |
| 298 | struct snd_soc_platform { |
| 299 | char *name; |
| 300 | |
| 301 | int (*probe)(struct platform_device *pdev); |
| 302 | int (*remove)(struct platform_device *pdev); |
| 303 | int (*suspend)(struct platform_device *pdev, |
Liam Girdwood | 3c4b266 | 2008-07-07 16:07:17 +0100 | [diff] [blame] | 304 | struct snd_soc_dai *dai); |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 305 | int (*resume)(struct platform_device *pdev, |
Liam Girdwood | 3c4b266 | 2008-07-07 16:07:17 +0100 | [diff] [blame] | 306 | struct snd_soc_dai *dai); |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 307 | |
| 308 | /* pcm creation and destruction */ |
Liam Girdwood | 3c4b266 | 2008-07-07 16:07:17 +0100 | [diff] [blame] | 309 | int (*pcm_new)(struct snd_card *, struct snd_soc_dai *, |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 310 | struct snd_pcm *); |
| 311 | void (*pcm_free)(struct snd_pcm *); |
| 312 | |
| 313 | /* platform stream ops */ |
| 314 | struct snd_pcm_ops *pcm_ops; |
| 315 | }; |
| 316 | |
| 317 | /* SoC machine DAI configuration, glues a codec and cpu DAI together */ |
| 318 | struct snd_soc_dai_link { |
| 319 | char *name; /* Codec name */ |
| 320 | char *stream_name; /* Stream name */ |
| 321 | |
| 322 | /* DAI */ |
Liam Girdwood | 3c4b266 | 2008-07-07 16:07:17 +0100 | [diff] [blame] | 323 | struct snd_soc_dai *codec_dai; |
| 324 | struct snd_soc_dai *cpu_dai; |
Graeme Gregory | 1c433fb | 2007-02-02 17:13:05 +0100 | [diff] [blame] | 325 | |
| 326 | /* machine stream operations */ |
| 327 | struct snd_soc_ops *ops; |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 328 | |
| 329 | /* codec/machine specific init - e.g. add machine controls */ |
| 330 | int (*init)(struct snd_soc_codec *codec); |
Liam Girdwood | 4ccab3e | 2008-01-10 14:39:01 +0100 | [diff] [blame] | 331 | |
| 332 | /* DAI pcm */ |
| 333 | struct snd_pcm *pcm; |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 334 | }; |
| 335 | |
Mark Brown | 8750654 | 2008-11-18 20:50:34 +0000 | [diff] [blame] | 336 | /* SoC card */ |
| 337 | struct snd_soc_card { |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 338 | char *name; |
| 339 | |
| 340 | int (*probe)(struct platform_device *pdev); |
| 341 | int (*remove)(struct platform_device *pdev); |
| 342 | |
| 343 | /* the pre and post PM functions are used to do any PM work before and |
| 344 | * after the codec and DAI's do any PM work. */ |
| 345 | int (*suspend_pre)(struct platform_device *pdev, pm_message_t state); |
| 346 | int (*suspend_post)(struct platform_device *pdev, pm_message_t state); |
| 347 | int (*resume_pre)(struct platform_device *pdev); |
| 348 | int (*resume_post)(struct platform_device *pdev); |
| 349 | |
Liam Girdwood | 0b4d221 | 2008-01-10 14:36:20 +0100 | [diff] [blame] | 350 | /* callbacks */ |
Mark Brown | 8750654 | 2008-11-18 20:50:34 +0000 | [diff] [blame] | 351 | int (*set_bias_level)(struct snd_soc_card *, |
Mark Brown | 0be9898 | 2008-05-19 12:31:28 +0200 | [diff] [blame] | 352 | enum snd_soc_bias_level level); |
Liam Girdwood | 0b4d221 | 2008-01-10 14:36:20 +0100 | [diff] [blame] | 353 | |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 354 | /* CPU <--> Codec DAI links */ |
| 355 | struct snd_soc_dai_link *dai_link; |
| 356 | int num_links; |
Mark Brown | 6308419 | 2008-12-02 15:08:03 +0000 | [diff] [blame] | 357 | |
| 358 | struct snd_soc_device *socdev; |
| 359 | |
Mark Brown | 87689d5 | 2008-12-02 16:01:14 +0000 | [diff] [blame] | 360 | struct snd_soc_platform *platform; |
Mark Brown | 6308419 | 2008-12-02 15:08:03 +0000 | [diff] [blame] | 361 | struct delayed_work delayed_work; |
| 362 | struct work_struct deferred_resume_work; |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 363 | }; |
| 364 | |
| 365 | /* SoC Device - the audio subsystem */ |
| 366 | struct snd_soc_device { |
| 367 | struct device *dev; |
Mark Brown | 8750654 | 2008-11-18 20:50:34 +0000 | [diff] [blame] | 368 | struct snd_soc_card *card; |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 369 | struct snd_soc_codec *codec; |
| 370 | struct snd_soc_codec_device *codec_dev; |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 371 | void *codec_data; |
| 372 | }; |
| 373 | |
| 374 | /* runtime channel data */ |
| 375 | struct snd_soc_pcm_runtime { |
Graeme Gregory | 1c433fb | 2007-02-02 17:13:05 +0100 | [diff] [blame] | 376 | struct snd_soc_dai_link *dai; |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 377 | struct snd_soc_device *socdev; |
| 378 | }; |
| 379 | |
Jon Smirl | 4eaa981 | 2008-07-29 11:42:26 +0100 | [diff] [blame] | 380 | /* mixer control */ |
| 381 | struct soc_mixer_control { |
| 382 | int min, max; |
Jon Smirl | 815ecf8d | 2008-07-29 10:22:24 -0400 | [diff] [blame] | 383 | unsigned int reg, rreg, shift, rshift, invert; |
Jon Smirl | 4eaa981 | 2008-07-29 11:42:26 +0100 | [diff] [blame] | 384 | }; |
| 385 | |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 386 | /* enumerated kcontrol */ |
| 387 | struct soc_enum { |
| 388 | unsigned short reg; |
| 389 | unsigned short reg2; |
| 390 | unsigned char shift_l; |
| 391 | unsigned char shift_r; |
Jon Smirl | f8ba0b7 | 2008-07-29 11:42:27 +0100 | [diff] [blame] | 392 | unsigned int max; |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 393 | const char **texts; |
| 394 | void *dapm; |
| 395 | }; |
| 396 | |
Mark Brown | a47cbe7 | 2008-07-23 14:03:07 +0100 | [diff] [blame] | 397 | #include <sound/soc-dai.h> |
| 398 | |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 399 | #endif |