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> |
Mark Brown | d5021ec | 2010-03-22 12:06:30 +0000 | [diff] [blame] | 18 | #include <linux/notifier.h> |
Andrew Morton | 4484bb2 | 2006-12-15 09:30:07 +0100 | [diff] [blame] | 19 | #include <linux/workqueue.h> |
Lopez Cruz, Misael | ec67624 | 2009-03-03 15:25:04 -0600 | [diff] [blame] | 20 | #include <linux/interrupt.h> |
| 21 | #include <linux/kernel.h> |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 22 | #include <sound/core.h> |
| 23 | #include <sound/pcm.h> |
| 24 | #include <sound/control.h> |
| 25 | #include <sound/ac97_codec.h> |
| 26 | |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 27 | /* |
| 28 | * Convenience kcontrol builders |
| 29 | */ |
Jon Smirl | 4eaa981 | 2008-07-29 11:42:26 +0100 | [diff] [blame] | 30 | #define SOC_SINGLE_VALUE(xreg, xshift, xmax, xinvert) \ |
| 31 | ((unsigned long)&(struct soc_mixer_control) \ |
Mark Brown | 762b8df | 2008-10-30 12:37:08 +0000 | [diff] [blame] | 32 | {.reg = xreg, .shift = xshift, .rshift = xshift, .max = xmax, \ |
Peter Ujfalusi | d11bb4a | 2010-05-10 14:39:24 +0300 | [diff] [blame] | 33 | .platform_max = xmax, .invert = xinvert}) |
Jon Smirl | 4eaa981 | 2008-07-29 11:42:26 +0100 | [diff] [blame] | 34 | #define SOC_SINGLE_VALUE_EXT(xreg, xmax, xinvert) \ |
| 35 | ((unsigned long)&(struct soc_mixer_control) \ |
Peter Ujfalusi | d11bb4a | 2010-05-10 14:39:24 +0300 | [diff] [blame] | 36 | {.reg = xreg, .max = xmax, .platform_max = xmax, .invert = xinvert}) |
Philipp Zabel | a7a4ac8 | 2008-01-10 14:37:42 +0100 | [diff] [blame] | 37 | #define SOC_SINGLE(xname, reg, shift, max, invert) \ |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 38 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \ |
| 39 | .info = snd_soc_info_volsw, .get = snd_soc_get_volsw,\ |
| 40 | .put = snd_soc_put_volsw, \ |
Philipp Zabel | a7a4ac8 | 2008-01-10 14:37:42 +0100 | [diff] [blame] | 41 | .private_value = SOC_SINGLE_VALUE(reg, shift, max, invert) } |
| 42 | #define SOC_SINGLE_TLV(xname, reg, shift, max, invert, tlv_array) \ |
| 43 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \ |
| 44 | .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ |\ |
| 45 | SNDRV_CTL_ELEM_ACCESS_READWRITE,\ |
| 46 | .tlv.p = (tlv_array), \ |
| 47 | .info = snd_soc_info_volsw, .get = snd_soc_get_volsw,\ |
| 48 | .put = snd_soc_put_volsw, \ |
| 49 | .private_value = SOC_SINGLE_VALUE(reg, shift, max, invert) } |
Jon Smirl | 4eaa981 | 2008-07-29 11:42:26 +0100 | [diff] [blame] | 50 | #define SOC_DOUBLE(xname, xreg, shift_left, shift_right, xmax, xinvert) \ |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 51 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname),\ |
| 52 | .info = snd_soc_info_volsw, .get = snd_soc_get_volsw, \ |
| 53 | .put = snd_soc_put_volsw, \ |
Jon Smirl | 4eaa981 | 2008-07-29 11:42:26 +0100 | [diff] [blame] | 54 | .private_value = (unsigned long)&(struct soc_mixer_control) \ |
| 55 | {.reg = xreg, .shift = shift_left, .rshift = shift_right, \ |
Peter Ujfalusi | d11bb4a | 2010-05-10 14:39:24 +0300 | [diff] [blame] | 56 | .max = xmax, .platform_max = xmax, .invert = xinvert} } |
Jon Smirl | 4eaa981 | 2008-07-29 11:42:26 +0100 | [diff] [blame] | 57 | #define SOC_DOUBLE_R(xname, reg_left, reg_right, xshift, xmax, xinvert) \ |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 58 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname), \ |
| 59 | .info = snd_soc_info_volsw_2r, \ |
| 60 | .get = snd_soc_get_volsw_2r, .put = snd_soc_put_volsw_2r, \ |
Jon Smirl | 4eaa981 | 2008-07-29 11:42:26 +0100 | [diff] [blame] | 61 | .private_value = (unsigned long)&(struct soc_mixer_control) \ |
| 62 | {.reg = reg_left, .rreg = reg_right, .shift = xshift, \ |
Peter Ujfalusi | d11bb4a | 2010-05-10 14:39:24 +0300 | [diff] [blame] | 63 | .max = xmax, .platform_max = xmax, .invert = xinvert} } |
Jon Smirl | 4eaa981 | 2008-07-29 11:42:26 +0100 | [diff] [blame] | 64 | #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] | 65 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname),\ |
| 66 | .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ |\ |
| 67 | SNDRV_CTL_ELEM_ACCESS_READWRITE,\ |
| 68 | .tlv.p = (tlv_array), \ |
| 69 | .info = snd_soc_info_volsw, .get = snd_soc_get_volsw, \ |
| 70 | .put = snd_soc_put_volsw, \ |
Jon Smirl | 4eaa981 | 2008-07-29 11:42:26 +0100 | [diff] [blame] | 71 | .private_value = (unsigned long)&(struct soc_mixer_control) \ |
| 72 | {.reg = xreg, .shift = shift_left, .rshift = shift_right,\ |
Peter Ujfalusi | d11bb4a | 2010-05-10 14:39:24 +0300 | [diff] [blame] | 73 | .max = xmax, .platform_max = xmax, .invert = xinvert} } |
Jon Smirl | 4eaa981 | 2008-07-29 11:42:26 +0100 | [diff] [blame] | 74 | #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] | 75 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname),\ |
| 76 | .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ |\ |
| 77 | SNDRV_CTL_ELEM_ACCESS_READWRITE,\ |
| 78 | .tlv.p = (tlv_array), \ |
| 79 | .info = snd_soc_info_volsw_2r, \ |
| 80 | .get = snd_soc_get_volsw_2r, .put = snd_soc_put_volsw_2r, \ |
Jon Smirl | 4eaa981 | 2008-07-29 11:42:26 +0100 | [diff] [blame] | 81 | .private_value = (unsigned long)&(struct soc_mixer_control) \ |
| 82 | {.reg = reg_left, .rreg = reg_right, .shift = xshift, \ |
Peter Ujfalusi | d11bb4a | 2010-05-10 14:39:24 +0300 | [diff] [blame] | 83 | .max = xmax, .platform_max = xmax, .invert = xinvert} } |
Jon Smirl | 4eaa981 | 2008-07-29 11:42:26 +0100 | [diff] [blame] | 84 | #define SOC_DOUBLE_S8_TLV(xname, xreg, xmin, xmax, tlv_array) \ |
Mark Brown | e13ac2e | 2008-05-28 17:58:05 +0100 | [diff] [blame] | 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), \ |
| 89 | .info = snd_soc_info_volsw_s8, .get = snd_soc_get_volsw_s8, \ |
| 90 | .put = snd_soc_put_volsw_s8, \ |
Jon Smirl | 4eaa981 | 2008-07-29 11:42:26 +0100 | [diff] [blame] | 91 | .private_value = (unsigned long)&(struct soc_mixer_control) \ |
Peter Ujfalusi | d11bb4a | 2010-05-10 14:39:24 +0300 | [diff] [blame] | 92 | {.reg = xreg, .min = xmin, .max = xmax, \ |
| 93 | .platform_max = xmax} } |
Jon Smirl | f8ba0b7 | 2008-07-29 11:42:27 +0100 | [diff] [blame] | 94 | #define SOC_ENUM_DOUBLE(xreg, xshift_l, xshift_r, xmax, xtexts) \ |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 95 | { .reg = xreg, .shift_l = xshift_l, .shift_r = xshift_r, \ |
Jon Smirl | f8ba0b7 | 2008-07-29 11:42:27 +0100 | [diff] [blame] | 96 | .max = xmax, .texts = xtexts } |
| 97 | #define SOC_ENUM_SINGLE(xreg, xshift, xmax, xtexts) \ |
| 98 | SOC_ENUM_DOUBLE(xreg, xshift, xshift, xmax, xtexts) |
| 99 | #define SOC_ENUM_SINGLE_EXT(xmax, xtexts) \ |
| 100 | { .max = xmax, .texts = xtexts } |
Peter Ujfalusi | 2e72f8e | 2009-01-05 09:54:57 +0200 | [diff] [blame] | 101 | #define SOC_VALUE_ENUM_DOUBLE(xreg, xshift_l, xshift_r, xmask, xmax, xtexts, xvalues) \ |
| 102 | { .reg = xreg, .shift_l = xshift_l, .shift_r = xshift_r, \ |
| 103 | .mask = xmask, .max = xmax, .texts = xtexts, .values = xvalues} |
| 104 | #define SOC_VALUE_ENUM_SINGLE(xreg, xshift, xmask, xmax, xtexts, xvalues) \ |
| 105 | SOC_VALUE_ENUM_DOUBLE(xreg, xshift, xshift, xmask, xmax, xtexts, xvalues) |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 106 | #define SOC_ENUM(xname, xenum) \ |
| 107 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname,\ |
| 108 | .info = snd_soc_info_enum_double, \ |
| 109 | .get = snd_soc_get_enum_double, .put = snd_soc_put_enum_double, \ |
| 110 | .private_value = (unsigned long)&xenum } |
Peter Ujfalusi | 2e72f8e | 2009-01-05 09:54:57 +0200 | [diff] [blame] | 111 | #define SOC_VALUE_ENUM(xname, xenum) \ |
| 112 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname,\ |
Peter Ujfalusi | 7415555 | 2009-01-08 13:34:29 +0200 | [diff] [blame] | 113 | .info = snd_soc_info_enum_double, \ |
Peter Ujfalusi | 2e72f8e | 2009-01-05 09:54:57 +0200 | [diff] [blame] | 114 | .get = snd_soc_get_value_enum_double, \ |
| 115 | .put = snd_soc_put_value_enum_double, \ |
| 116 | .private_value = (unsigned long)&xenum } |
Jon Smirl | f8ba0b7 | 2008-07-29 11:42:27 +0100 | [diff] [blame] | 117 | #define SOC_SINGLE_EXT(xname, xreg, xshift, xmax, xinvert,\ |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 118 | xhandler_get, xhandler_put) \ |
| 119 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \ |
Graeme Gregory | 1c433fb | 2007-02-02 17:13:05 +0100 | [diff] [blame] | 120 | .info = snd_soc_info_volsw, \ |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 121 | .get = xhandler_get, .put = xhandler_put, \ |
Jon Smirl | f8ba0b7 | 2008-07-29 11:42:27 +0100 | [diff] [blame] | 122 | .private_value = SOC_SINGLE_VALUE(xreg, xshift, xmax, xinvert) } |
Daniel Mack | 7629ad2 | 2009-04-24 16:37:44 +0200 | [diff] [blame] | 123 | #define SOC_DOUBLE_EXT(xname, xreg, shift_left, shift_right, xmax, xinvert,\ |
| 124 | xhandler_get, xhandler_put) \ |
| 125 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname),\ |
| 126 | .info = snd_soc_info_volsw, \ |
| 127 | .get = xhandler_get, .put = xhandler_put, \ |
| 128 | .private_value = (unsigned long)&(struct soc_mixer_control) \ |
| 129 | {.reg = xreg, .shift = shift_left, .rshift = shift_right, \ |
Peter Ujfalusi | d11bb4a | 2010-05-10 14:39:24 +0300 | [diff] [blame] | 130 | .max = xmax, .platform_max = xmax, .invert = xinvert} } |
Jon Smirl | f8ba0b7 | 2008-07-29 11:42:27 +0100 | [diff] [blame] | 131 | #define SOC_SINGLE_EXT_TLV(xname, xreg, xshift, xmax, xinvert,\ |
Mike Montour | 10144c0 | 2008-06-11 13:47:13 +0100 | [diff] [blame] | 132 | xhandler_get, xhandler_put, tlv_array) \ |
| 133 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \ |
| 134 | .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ |\ |
| 135 | SNDRV_CTL_ELEM_ACCESS_READWRITE,\ |
| 136 | .tlv.p = (tlv_array), \ |
| 137 | .info = snd_soc_info_volsw, \ |
| 138 | .get = xhandler_get, .put = xhandler_put, \ |
Jon Smirl | f8ba0b7 | 2008-07-29 11:42:27 +0100 | [diff] [blame] | 139 | .private_value = SOC_SINGLE_VALUE(xreg, xshift, xmax, xinvert) } |
Joonyoung Shim | d0af93d | 2009-07-15 20:33:47 +0900 | [diff] [blame] | 140 | #define SOC_DOUBLE_EXT_TLV(xname, xreg, shift_left, shift_right, xmax, xinvert,\ |
| 141 | xhandler_get, xhandler_put, tlv_array) \ |
| 142 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname), \ |
| 143 | .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ | \ |
| 144 | SNDRV_CTL_ELEM_ACCESS_READWRITE, \ |
| 145 | .tlv.p = (tlv_array), \ |
| 146 | .info = snd_soc_info_volsw, \ |
| 147 | .get = xhandler_get, .put = xhandler_put, \ |
| 148 | .private_value = (unsigned long)&(struct soc_mixer_control) \ |
| 149 | {.reg = xreg, .shift = shift_left, .rshift = shift_right, \ |
Peter Ujfalusi | d11bb4a | 2010-05-10 14:39:24 +0300 | [diff] [blame] | 150 | .max = xmax, .platform_max = xmax, .invert = xinvert} } |
Joonyoung Shim | 3ce91d5 | 2009-07-15 20:33:50 +0900 | [diff] [blame] | 151 | #define SOC_DOUBLE_R_EXT_TLV(xname, reg_left, reg_right, xshift, xmax, xinvert,\ |
| 152 | xhandler_get, xhandler_put, tlv_array) \ |
| 153 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname), \ |
| 154 | .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ | \ |
| 155 | SNDRV_CTL_ELEM_ACCESS_READWRITE, \ |
| 156 | .tlv.p = (tlv_array), \ |
| 157 | .info = snd_soc_info_volsw_2r, \ |
| 158 | .get = xhandler_get, .put = xhandler_put, \ |
| 159 | .private_value = (unsigned long)&(struct soc_mixer_control) \ |
| 160 | {.reg = reg_left, .rreg = reg_right, .shift = xshift, \ |
Peter Ujfalusi | d11bb4a | 2010-05-10 14:39:24 +0300 | [diff] [blame] | 161 | .max = xmax, .platform_max = xmax, .invert = xinvert} } |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 162 | #define SOC_SINGLE_BOOL_EXT(xname, xdata, xhandler_get, xhandler_put) \ |
| 163 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \ |
| 164 | .info = snd_soc_info_bool_ext, \ |
| 165 | .get = xhandler_get, .put = xhandler_put, \ |
| 166 | .private_value = xdata } |
| 167 | #define SOC_ENUM_EXT(xname, xenum, xhandler_get, xhandler_put) \ |
| 168 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \ |
| 169 | .info = snd_soc_info_enum_ext, \ |
| 170 | .get = xhandler_get, .put = xhandler_put, \ |
| 171 | .private_value = (unsigned long)&xenum } |
| 172 | |
apatard@mandriva.com | b6f4bb3 | 2010-05-15 17:30:01 +0200 | [diff] [blame] | 173 | #define SOC_DOUBLE_R_SX_TLV(xname, xreg_left, xreg_right, xshift,\ |
| 174 | xmin, xmax, tlv_array) \ |
| 175 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname), \ |
| 176 | .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ | \ |
| 177 | SNDRV_CTL_ELEM_ACCESS_READWRITE, \ |
| 178 | .tlv.p = (tlv_array), \ |
| 179 | .info = snd_soc_info_volsw_2r_sx, \ |
| 180 | .get = snd_soc_get_volsw_2r_sx, \ |
| 181 | .put = snd_soc_put_volsw_2r_sx, \ |
| 182 | .private_value = (unsigned long)&(struct soc_mixer_control) \ |
| 183 | {.reg = xreg_left, \ |
| 184 | .rreg = xreg_right, .shift = xshift, \ |
| 185 | .min = xmin, .max = xmax} } |
| 186 | |
| 187 | |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 188 | /* |
Guennadi Liakhovetski | 6c2fb6a | 2010-01-21 22:04:03 +0100 | [diff] [blame] | 189 | * Simplified versions of above macros, declaring a struct and calculating |
| 190 | * ARRAY_SIZE internally |
| 191 | */ |
| 192 | #define SOC_ENUM_DOUBLE_DECL(name, xreg, xshift_l, xshift_r, xtexts) \ |
| 193 | struct soc_enum name = SOC_ENUM_DOUBLE(xreg, xshift_l, xshift_r, \ |
| 194 | ARRAY_SIZE(xtexts), xtexts) |
| 195 | #define SOC_ENUM_SINGLE_DECL(name, xreg, xshift, xtexts) \ |
| 196 | SOC_ENUM_DOUBLE_DECL(name, xreg, xshift, xshift, xtexts) |
| 197 | #define SOC_ENUM_SINGLE_EXT_DECL(name, xtexts) \ |
| 198 | struct soc_enum name = SOC_ENUM_SINGLE_EXT(ARRAY_SIZE(xtexts), xtexts) |
| 199 | #define SOC_VALUE_ENUM_DOUBLE_DECL(name, xreg, xshift_l, xshift_r, xmask, xtexts, xvalues) \ |
| 200 | struct soc_enum name = SOC_VALUE_ENUM_DOUBLE(xreg, xshift_l, xshift_r, xmask, \ |
| 201 | ARRAY_SIZE(xtexts), xtexts, xvalues) |
| 202 | #define SOC_VALUE_ENUM_SINGLE_DECL(name, xreg, xshift, xmask, xtexts, xvalues) \ |
| 203 | SOC_VALUE_ENUM_DOUBLE_DECL(name, xreg, xshift, xshift, xmask, xtexts, xvalues) |
| 204 | |
Liam Girdwood | a8f13d8 | 2011-05-18 18:39:21 +0100 | [diff] [blame] | 205 | |
| 206 | /* DAI Link Host Mode Support */ |
| 207 | #define SND_SOC_DAI_LINK_NO_HOST 0x1 |
| 208 | #define SND_SOC_DAI_LINK_OPT_HOST 0x2 |
| 209 | |
| 210 | #define snd_soc_get_enum_text(soc_enum, idx) \ |
| 211 | (soc_enum->texts ? soc_enum->texts[idx] : soc_enum->dtexts[idx]) |
| 212 | |
Liam Girdwood | f320fdd | 2011-02-01 21:31:50 +0000 | [diff] [blame^] | 213 | |
Guennadi Liakhovetski | 6c2fb6a | 2010-01-21 22:04:03 +0100 | [diff] [blame] | 214 | /* |
Mark Brown | 0be9898 | 2008-05-19 12:31:28 +0200 | [diff] [blame] | 215 | * Bias levels |
| 216 | * |
| 217 | * @ON: Bias is fully on for audio playback and capture operations. |
| 218 | * @PREPARE: Prepare for audio operations. Called before DAPM switching for |
| 219 | * stream start and stop operations. |
| 220 | * @STANDBY: Low power standby state when no playback/capture operations are |
| 221 | * in progress. NOTE: The transition time between STANDBY and ON |
| 222 | * should be as fast as possible and no longer than 10ms. |
| 223 | * @OFF: Power Off. No restrictions on transition times. |
| 224 | */ |
| 225 | enum snd_soc_bias_level { |
Mark Brown | 0be9898 | 2008-05-19 12:31:28 +0200 | [diff] [blame] | 226 | SND_SOC_BIAS_OFF, |
Jarkko Nikula | 4e48541 | 2010-08-31 14:52:35 +0300 | [diff] [blame] | 227 | SND_SOC_BIAS_STANDBY, |
| 228 | SND_SOC_BIAS_PREPARE, |
| 229 | SND_SOC_BIAS_ON, |
Mark Brown | 0be9898 | 2008-05-19 12:31:28 +0200 | [diff] [blame] | 230 | }; |
| 231 | |
Mark Brown | 8a2cd61 | 2009-01-07 17:31:10 +0000 | [diff] [blame] | 232 | struct snd_jack; |
| 233 | struct snd_soc_card; |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 234 | struct snd_soc_pcm_stream; |
| 235 | struct snd_soc_ops; |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 236 | struct snd_soc_pcm_runtime; |
Liam Girdwood | 3c4b266 | 2008-07-07 16:07:17 +0100 | [diff] [blame] | 237 | struct snd_soc_dai; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 238 | struct snd_soc_dai_driver; |
Mark Brown | 12a48a8c | 2008-12-03 19:40:30 +0000 | [diff] [blame] | 239 | struct snd_soc_platform; |
jassi brar | d273ebe | 2010-02-22 15:58:04 +0900 | [diff] [blame] | 240 | struct snd_soc_dai_link; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 241 | struct snd_soc_platform_driver; |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 242 | struct snd_soc_codec; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 243 | struct snd_soc_codec_driver; |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 244 | struct soc_enum; |
Mark Brown | 8a2cd61 | 2009-01-07 17:31:10 +0000 | [diff] [blame] | 245 | struct snd_soc_jack; |
Vinod Koul | fa9879e | 2011-02-09 14:44:17 +0530 | [diff] [blame] | 246 | struct snd_soc_jack_zone; |
Mark Brown | 8a2cd61 | 2009-01-07 17:31:10 +0000 | [diff] [blame] | 247 | struct snd_soc_jack_pin; |
Dimitris Papastamos | 7a30a3d | 2010-11-11 10:04:57 +0000 | [diff] [blame] | 248 | struct snd_soc_cache_ops; |
Liam Girdwood | bfe7dc4 | 2011-01-31 21:26:35 +0000 | [diff] [blame] | 249 | struct snd_soc_dsp_link; |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 250 | #include <sound/soc-dapm.h> |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 251 | |
Lopez Cruz, Misael | ec67624 | 2009-03-03 15:25:04 -0600 | [diff] [blame] | 252 | #ifdef CONFIG_GPIOLIB |
| 253 | struct snd_soc_jack_gpio; |
| 254 | #endif |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 255 | |
| 256 | typedef int (*hw_write_t)(void *,const char* ,int); |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 257 | |
| 258 | extern struct snd_ac97_bus_ops soc_ac97_ops; |
| 259 | |
Mark Brown | 7084a42 | 2009-07-10 22:24:27 +0100 | [diff] [blame] | 260 | enum snd_soc_control_type { |
Mark Brown | e9c0390 | 2011-06-13 19:05:58 +0100 | [diff] [blame] | 261 | SND_SOC_I2C = 1, |
Mark Brown | 7084a42 | 2009-07-10 22:24:27 +0100 | [diff] [blame] | 262 | SND_SOC_SPI, |
| 263 | }; |
| 264 | |
Dimitris Papastamos | 7a30a3d | 2010-11-11 10:04:57 +0000 | [diff] [blame] | 265 | enum snd_soc_compress_type { |
Dimitris Papastamos | 119bd78 | 2010-12-02 14:53:02 +0000 | [diff] [blame] | 266 | SND_SOC_FLAT_COMPRESSION = 1, |
Dimitris Papastamos | a7f387d | 2010-11-11 10:04:59 +0000 | [diff] [blame] | 267 | SND_SOC_LZO_COMPRESSION, |
| 268 | SND_SOC_RBTREE_COMPRESSION |
Dimitris Papastamos | 7a30a3d | 2010-11-11 10:04:57 +0000 | [diff] [blame] | 269 | }; |
| 270 | |
Liam Girdwood | 0f8bae9 | 2011-01-27 19:35:01 +0000 | [diff] [blame] | 271 | enum snd_soc_pcm_subclass { |
| 272 | SND_SOC_MUTEX_FE = 0, |
| 273 | SND_SOC_MUTEX_BE = 1, |
| 274 | }; |
| 275 | |
Mark Brown | ec4ee52 | 2011-03-07 20:58:11 +0000 | [diff] [blame] | 276 | int snd_soc_codec_set_sysclk(struct snd_soc_codec *codec, int clk_id, |
| 277 | unsigned int freq, int dir); |
| 278 | int snd_soc_codec_set_pll(struct snd_soc_codec *codec, int pll_id, int source, |
| 279 | unsigned int freq_in, unsigned int freq_out); |
| 280 | |
Vinod Koul | 70a7ca3 | 2011-01-14 19:22:48 +0530 | [diff] [blame] | 281 | int snd_soc_register_card(struct snd_soc_card *card); |
| 282 | int snd_soc_unregister_card(struct snd_soc_card *card); |
Mark Brown | 6f8ab4a | 2011-01-26 14:59:27 +0000 | [diff] [blame] | 283 | int snd_soc_suspend(struct device *dev); |
| 284 | int snd_soc_resume(struct device *dev); |
| 285 | int snd_soc_poweroff(struct device *dev); |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 286 | int snd_soc_register_platform(struct device *dev, |
| 287 | struct snd_soc_platform_driver *platform_drv); |
| 288 | void snd_soc_unregister_platform(struct device *dev); |
| 289 | int snd_soc_register_codec(struct device *dev, |
Mark Brown | 001ae4c | 2010-12-02 16:21:08 +0000 | [diff] [blame] | 290 | const struct snd_soc_codec_driver *codec_drv, |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 291 | struct snd_soc_dai_driver *dai_drv, int num_dai); |
| 292 | void snd_soc_unregister_codec(struct device *dev); |
Mark Brown | 181e055 | 2011-01-24 14:05:25 +0000 | [diff] [blame] | 293 | int snd_soc_codec_volatile_register(struct snd_soc_codec *codec, |
| 294 | unsigned int reg); |
Dimitris Papastamos | 239c970 | 2011-03-24 13:45:18 +0000 | [diff] [blame] | 295 | int snd_soc_codec_readable_register(struct snd_soc_codec *codec, |
| 296 | unsigned int reg); |
| 297 | int snd_soc_codec_writable_register(struct snd_soc_codec *codec, |
| 298 | unsigned int reg); |
Mark Brown | 17a52fd | 2009-07-05 17:24:50 +0100 | [diff] [blame] | 299 | int snd_soc_codec_set_cache_io(struct snd_soc_codec *codec, |
Mark Brown | 7084a42 | 2009-07-10 22:24:27 +0100 | [diff] [blame] | 300 | int addr_bits, int data_bits, |
| 301 | enum snd_soc_control_type control); |
Dimitris Papastamos | 7a30a3d | 2010-11-11 10:04:57 +0000 | [diff] [blame] | 302 | int snd_soc_cache_sync(struct snd_soc_codec *codec); |
| 303 | int snd_soc_cache_init(struct snd_soc_codec *codec); |
| 304 | int snd_soc_cache_exit(struct snd_soc_codec *codec); |
| 305 | int snd_soc_cache_write(struct snd_soc_codec *codec, |
| 306 | unsigned int reg, unsigned int value); |
| 307 | int snd_soc_cache_read(struct snd_soc_codec *codec, |
| 308 | unsigned int reg, unsigned int *value); |
Dimitris Papastamos | 066d16c | 2011-01-13 12:20:36 +0000 | [diff] [blame] | 309 | int snd_soc_default_volatile_register(struct snd_soc_codec *codec, |
| 310 | unsigned int reg); |
| 311 | int snd_soc_default_readable_register(struct snd_soc_codec *codec, |
| 312 | unsigned int reg); |
Dimitris Papastamos | 8020454 | 2011-03-24 13:45:17 +0000 | [diff] [blame] | 313 | int snd_soc_default_writable_register(struct snd_soc_codec *codec, |
| 314 | unsigned int reg); |
Liam Girdwood | 7987a11 | 2011-01-31 19:52:42 +0000 | [diff] [blame] | 315 | unsigned int snd_soc_platform_read(struct snd_soc_platform *platform, |
| 316 | unsigned int reg); |
| 317 | unsigned int snd_soc_platform_write(struct snd_soc_platform *platform, |
| 318 | unsigned int reg, unsigned int val); |
Mark Brown | 12a48a8c | 2008-12-03 19:40:30 +0000 | [diff] [blame] | 319 | |
Liam Girdwood | bfe7dc4 | 2011-01-31 21:26:35 +0000 | [diff] [blame] | 320 | struct snd_pcm_substream *snd_soc_get_dai_substream(struct snd_soc_card *card, |
| 321 | const char *dai_link, int stream); |
| 322 | struct snd_soc_pcm_runtime *snd_soc_get_pcm_runtime(struct snd_soc_card *card, |
| 323 | const char *dai_link); |
| 324 | |
Mark Brown | 7aae816 | 2009-11-10 16:08:04 +0000 | [diff] [blame] | 325 | /* Utility functions to get clock rates from various things */ |
| 326 | int snd_soc_calc_frame_size(int sample_size, int channels, int tdm_slots); |
| 327 | int snd_soc_params_to_frame_size(struct snd_pcm_hw_params *params); |
Mark Brown | c0fa59d | 2009-11-19 11:36:10 +0000 | [diff] [blame] | 328 | int snd_soc_calc_bclk(int fs, int sample_size, int channels, int tdm_slots); |
Mark Brown | 7aae816 | 2009-11-10 16:08:04 +0000 | [diff] [blame] | 329 | int snd_soc_params_to_bclk(struct snd_pcm_hw_params *parms); |
| 330 | |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 331 | /* set runtime hw params */ |
| 332 | int snd_soc_set_runtime_hwparams(struct snd_pcm_substream *substream, |
| 333 | const struct snd_pcm_hardware *hw); |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 334 | |
Mark Brown | 8a2cd61 | 2009-01-07 17:31:10 +0000 | [diff] [blame] | 335 | /* Jack reporting */ |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 336 | int snd_soc_jack_new(struct snd_soc_codec *codec, const char *id, int type, |
Mark Brown | 8a2cd61 | 2009-01-07 17:31:10 +0000 | [diff] [blame] | 337 | struct snd_soc_jack *jack); |
| 338 | void snd_soc_jack_report(struct snd_soc_jack *jack, int status, int mask); |
| 339 | int snd_soc_jack_add_pins(struct snd_soc_jack *jack, int count, |
| 340 | struct snd_soc_jack_pin *pins); |
Mark Brown | d5021ec | 2010-03-22 12:06:30 +0000 | [diff] [blame] | 341 | void snd_soc_jack_notifier_register(struct snd_soc_jack *jack, |
| 342 | struct notifier_block *nb); |
| 343 | void snd_soc_jack_notifier_unregister(struct snd_soc_jack *jack, |
| 344 | struct notifier_block *nb); |
Vinod Koul | fa9879e | 2011-02-09 14:44:17 +0530 | [diff] [blame] | 345 | int snd_soc_jack_add_zones(struct snd_soc_jack *jack, int count, |
| 346 | struct snd_soc_jack_zone *zones); |
| 347 | int snd_soc_jack_get_type(struct snd_soc_jack *jack, int micbias_voltage); |
Lopez Cruz, Misael | ec67624 | 2009-03-03 15:25:04 -0600 | [diff] [blame] | 348 | #ifdef CONFIG_GPIOLIB |
| 349 | int snd_soc_jack_add_gpios(struct snd_soc_jack *jack, int count, |
| 350 | struct snd_soc_jack_gpio *gpios); |
| 351 | void snd_soc_jack_free_gpios(struct snd_soc_jack *jack, int count, |
| 352 | struct snd_soc_jack_gpio *gpios); |
| 353 | #endif |
Mark Brown | 8a2cd61 | 2009-01-07 17:31:10 +0000 | [diff] [blame] | 354 | |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 355 | /* codec register bit access */ |
| 356 | int snd_soc_update_bits(struct snd_soc_codec *codec, unsigned short reg, |
Daniel Ribeiro | 46f5822 | 2009-06-07 02:49:11 -0300 | [diff] [blame] | 357 | unsigned int mask, unsigned int value); |
Mark Brown | dd1b3d5 | 2009-12-04 14:22:03 +0000 | [diff] [blame] | 358 | int snd_soc_update_bits_locked(struct snd_soc_codec *codec, |
| 359 | unsigned short reg, unsigned int mask, |
| 360 | unsigned int value); |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 361 | int snd_soc_test_bits(struct snd_soc_codec *codec, unsigned short reg, |
Daniel Ribeiro | 46f5822 | 2009-06-07 02:49:11 -0300 | [diff] [blame] | 362 | unsigned int mask, unsigned int value); |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 363 | |
| 364 | int snd_soc_new_ac97_codec(struct snd_soc_codec *codec, |
| 365 | struct snd_ac97_bus_ops *ops, int num); |
| 366 | void snd_soc_free_ac97_codec(struct snd_soc_codec *codec); |
| 367 | |
| 368 | /* |
| 369 | *Controls |
| 370 | */ |
| 371 | struct snd_kcontrol *snd_soc_cnew(const struct snd_kcontrol_new *_template, |
Mark Brown | efb7ac3 | 2011-03-08 17:23:24 +0000 | [diff] [blame] | 372 | void *data, char *long_name, |
| 373 | const char *prefix); |
Ian Molton | 3e8e195 | 2009-01-09 00:23:21 +0000 | [diff] [blame] | 374 | int snd_soc_add_controls(struct snd_soc_codec *codec, |
| 375 | const struct snd_kcontrol_new *controls, int num_controls); |
Liam Girdwood | 7987a11 | 2011-01-31 19:52:42 +0000 | [diff] [blame] | 376 | int snd_soc_add_platform_controls(struct snd_soc_platform *platform, |
| 377 | const struct snd_kcontrol_new *controls, int num_controls); |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 378 | int snd_soc_info_enum_double(struct snd_kcontrol *kcontrol, |
| 379 | struct snd_ctl_elem_info *uinfo); |
| 380 | int snd_soc_info_enum_ext(struct snd_kcontrol *kcontrol, |
| 381 | struct snd_ctl_elem_info *uinfo); |
| 382 | int snd_soc_get_enum_double(struct snd_kcontrol *kcontrol, |
| 383 | struct snd_ctl_elem_value *ucontrol); |
| 384 | int snd_soc_put_enum_double(struct snd_kcontrol *kcontrol, |
| 385 | struct snd_ctl_elem_value *ucontrol); |
Peter Ujfalusi | 2e72f8e | 2009-01-05 09:54:57 +0200 | [diff] [blame] | 386 | int snd_soc_get_value_enum_double(struct snd_kcontrol *kcontrol, |
| 387 | struct snd_ctl_elem_value *ucontrol); |
| 388 | int snd_soc_put_value_enum_double(struct snd_kcontrol *kcontrol, |
| 389 | struct snd_ctl_elem_value *ucontrol); |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 390 | int snd_soc_info_volsw(struct snd_kcontrol *kcontrol, |
| 391 | struct snd_ctl_elem_info *uinfo); |
| 392 | int snd_soc_info_volsw_ext(struct snd_kcontrol *kcontrol, |
| 393 | struct snd_ctl_elem_info *uinfo); |
Philipp Zabel | 392abe9 | 2008-05-13 14:03:40 +0200 | [diff] [blame] | 394 | #define snd_soc_info_bool_ext snd_ctl_boolean_mono_info |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 395 | int snd_soc_get_volsw(struct snd_kcontrol *kcontrol, |
| 396 | struct snd_ctl_elem_value *ucontrol); |
| 397 | int snd_soc_put_volsw(struct snd_kcontrol *kcontrol, |
| 398 | struct snd_ctl_elem_value *ucontrol); |
| 399 | int snd_soc_info_volsw_2r(struct snd_kcontrol *kcontrol, |
| 400 | struct snd_ctl_elem_info *uinfo); |
| 401 | int snd_soc_get_volsw_2r(struct snd_kcontrol *kcontrol, |
| 402 | struct snd_ctl_elem_value *ucontrol); |
| 403 | int snd_soc_put_volsw_2r(struct snd_kcontrol *kcontrol, |
| 404 | struct snd_ctl_elem_value *ucontrol); |
Mark Brown | e13ac2e | 2008-05-28 17:58:05 +0100 | [diff] [blame] | 405 | int snd_soc_info_volsw_s8(struct snd_kcontrol *kcontrol, |
| 406 | struct snd_ctl_elem_info *uinfo); |
| 407 | int snd_soc_get_volsw_s8(struct snd_kcontrol *kcontrol, |
| 408 | struct snd_ctl_elem_value *ucontrol); |
| 409 | int snd_soc_put_volsw_s8(struct snd_kcontrol *kcontrol, |
| 410 | struct snd_ctl_elem_value *ucontrol); |
Peter Ujfalusi | 637d384 | 2010-05-07 14:05:49 +0300 | [diff] [blame] | 411 | int snd_soc_limit_volume(struct snd_soc_codec *codec, |
| 412 | const char *name, int max); |
apatard@mandriva.com | b6f4bb3 | 2010-05-15 17:30:01 +0200 | [diff] [blame] | 413 | int snd_soc_info_volsw_2r_sx(struct snd_kcontrol *kcontrol, |
| 414 | struct snd_ctl_elem_info *uinfo); |
| 415 | int snd_soc_get_volsw_2r_sx(struct snd_kcontrol *kcontrol, |
| 416 | struct snd_ctl_elem_value *ucontrol); |
| 417 | int snd_soc_put_volsw_2r_sx(struct snd_kcontrol *kcontrol, |
| 418 | struct snd_ctl_elem_value *ucontrol); |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 419 | |
Mark Brown | 8a2cd61 | 2009-01-07 17:31:10 +0000 | [diff] [blame] | 420 | /** |
Dimitris Papastamos | 066d16c | 2011-01-13 12:20:36 +0000 | [diff] [blame] | 421 | * struct snd_soc_reg_access - Describes whether a given register is |
| 422 | * readable, writable or volatile. |
| 423 | * |
| 424 | * @reg: the register number |
| 425 | * @read: whether this register is readable |
| 426 | * @write: whether this register is writable |
| 427 | * @vol: whether this register is volatile |
| 428 | */ |
| 429 | struct snd_soc_reg_access { |
| 430 | u16 reg; |
| 431 | u16 read; |
| 432 | u16 write; |
| 433 | u16 vol; |
| 434 | }; |
| 435 | |
| 436 | /** |
Mark Brown | 8a2cd61 | 2009-01-07 17:31:10 +0000 | [diff] [blame] | 437 | * struct snd_soc_jack_pin - Describes a pin to update based on jack detection |
| 438 | * |
| 439 | * @pin: name of the pin to update |
| 440 | * @mask: bits to check for in reported jack status |
| 441 | * @invert: if non-zero then pin is enabled when status is not reported |
| 442 | */ |
| 443 | struct snd_soc_jack_pin { |
| 444 | struct list_head list; |
| 445 | const char *pin; |
| 446 | int mask; |
| 447 | bool invert; |
| 448 | }; |
| 449 | |
Lopez Cruz, Misael | ec67624 | 2009-03-03 15:25:04 -0600 | [diff] [blame] | 450 | /** |
Vinod Koul | fa9879e | 2011-02-09 14:44:17 +0530 | [diff] [blame] | 451 | * struct snd_soc_jack_zone - Describes voltage zones of jack detection |
| 452 | * |
| 453 | * @min_mv: start voltage in mv |
| 454 | * @max_mv: end voltage in mv |
| 455 | * @jack_type: type of jack that is expected for this voltage |
| 456 | * @debounce_time: debounce_time for jack, codec driver should wait for this |
| 457 | * duration before reading the adc for voltages |
| 458 | * @:list: list container |
| 459 | */ |
| 460 | struct snd_soc_jack_zone { |
| 461 | unsigned int min_mv; |
| 462 | unsigned int max_mv; |
| 463 | unsigned int jack_type; |
| 464 | unsigned int debounce_time; |
| 465 | struct list_head list; |
| 466 | }; |
| 467 | |
| 468 | /** |
Lopez Cruz, Misael | ec67624 | 2009-03-03 15:25:04 -0600 | [diff] [blame] | 469 | * struct snd_soc_jack_gpio - Describes a gpio pin for jack detection |
| 470 | * |
| 471 | * @gpio: gpio number |
| 472 | * @name: gpio name |
| 473 | * @report: value to report when jack detected |
| 474 | * @invert: report presence in low state |
| 475 | * @debouce_time: debouce time in ms |
Mark Brown | 7887ab3 | 2011-02-17 16:35:55 -0800 | [diff] [blame] | 476 | * @wake: enable as wake source |
Mark Brown | fadddc8 | 2011-02-17 16:41:42 -0800 | [diff] [blame] | 477 | * @jack_status_check: callback function which overrides the detection |
| 478 | * to provide more complex checks (eg, reading an |
| 479 | * ADC). |
Lopez Cruz, Misael | ec67624 | 2009-03-03 15:25:04 -0600 | [diff] [blame] | 480 | */ |
| 481 | #ifdef CONFIG_GPIOLIB |
| 482 | struct snd_soc_jack_gpio { |
| 483 | unsigned int gpio; |
| 484 | const char *name; |
| 485 | int report; |
| 486 | int invert; |
| 487 | int debounce_time; |
Mark Brown | 7887ab3 | 2011-02-17 16:35:55 -0800 | [diff] [blame] | 488 | bool wake; |
| 489 | |
Lopez Cruz, Misael | ec67624 | 2009-03-03 15:25:04 -0600 | [diff] [blame] | 490 | struct snd_soc_jack *jack; |
Mark Brown | 4c14d78 | 2010-10-06 15:54:28 -0700 | [diff] [blame] | 491 | struct delayed_work work; |
Joonyoung Shim | c871a05 | 2009-11-12 17:14:04 +0900 | [diff] [blame] | 492 | |
| 493 | int (*jack_status_check)(void); |
Lopez Cruz, Misael | ec67624 | 2009-03-03 15:25:04 -0600 | [diff] [blame] | 494 | }; |
| 495 | #endif |
| 496 | |
Mark Brown | 8a2cd61 | 2009-01-07 17:31:10 +0000 | [diff] [blame] | 497 | struct snd_soc_jack { |
| 498 | struct snd_jack *jack; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 499 | struct snd_soc_codec *codec; |
Mark Brown | 8a2cd61 | 2009-01-07 17:31:10 +0000 | [diff] [blame] | 500 | struct list_head pins; |
| 501 | int status; |
Mark Brown | d5021ec | 2010-03-22 12:06:30 +0000 | [diff] [blame] | 502 | struct blocking_notifier_head notifier; |
Vinod Koul | fa9879e | 2011-02-09 14:44:17 +0530 | [diff] [blame] | 503 | struct list_head jack_zones; |
Mark Brown | 8a2cd61 | 2009-01-07 17:31:10 +0000 | [diff] [blame] | 504 | }; |
| 505 | |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 506 | /* SoC PCM stream information */ |
| 507 | struct snd_soc_pcm_stream { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 508 | const char *stream_name; |
Graeme Gregory | 1c433fb | 2007-02-02 17:13:05 +0100 | [diff] [blame] | 509 | u64 formats; /* SNDRV_PCM_FMTBIT_* */ |
| 510 | unsigned int rates; /* SNDRV_PCM_RATE_* */ |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 511 | unsigned int rate_min; /* min rate */ |
| 512 | unsigned int rate_max; /* max rate */ |
| 513 | unsigned int channels_min; /* min channels */ |
| 514 | unsigned int channels_max; /* max channels */ |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 515 | }; |
| 516 | |
| 517 | /* SoC audio ops */ |
| 518 | struct snd_soc_ops { |
| 519 | int (*startup)(struct snd_pcm_substream *); |
| 520 | void (*shutdown)(struct snd_pcm_substream *); |
| 521 | int (*hw_params)(struct snd_pcm_substream *, struct snd_pcm_hw_params *); |
| 522 | int (*hw_free)(struct snd_pcm_substream *); |
| 523 | int (*prepare)(struct snd_pcm_substream *); |
| 524 | int (*trigger)(struct snd_pcm_substream *, int); |
| 525 | }; |
| 526 | |
Dimitris Papastamos | 7a30a3d | 2010-11-11 10:04:57 +0000 | [diff] [blame] | 527 | /* SoC cache ops */ |
| 528 | struct snd_soc_cache_ops { |
Dimitris Papastamos | 0d735ea | 2010-12-06 09:51:57 +0000 | [diff] [blame] | 529 | const char *name; |
Dimitris Papastamos | 7a30a3d | 2010-11-11 10:04:57 +0000 | [diff] [blame] | 530 | enum snd_soc_compress_type id; |
| 531 | int (*init)(struct snd_soc_codec *codec); |
| 532 | int (*exit)(struct snd_soc_codec *codec); |
| 533 | int (*read)(struct snd_soc_codec *codec, unsigned int reg, |
| 534 | unsigned int *value); |
| 535 | int (*write)(struct snd_soc_codec *codec, unsigned int reg, |
| 536 | unsigned int value); |
| 537 | int (*sync)(struct snd_soc_codec *codec); |
| 538 | }; |
| 539 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 540 | /* SoC Audio Codec device */ |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 541 | struct snd_soc_codec { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 542 | const char *name; |
Jarkko Nikula | ead9b91 | 2010-11-13 20:40:44 +0200 | [diff] [blame] | 543 | const char *name_prefix; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 544 | int id; |
Mark Brown | 0d0cf00 | 2008-12-10 14:32:45 +0000 | [diff] [blame] | 545 | struct device *dev; |
Mark Brown | 001ae4c | 2010-12-02 16:21:08 +0000 | [diff] [blame] | 546 | const struct snd_soc_codec_driver *driver; |
Mark Brown | 0d0cf00 | 2008-12-10 14:32:45 +0000 | [diff] [blame] | 547 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 548 | struct mutex mutex; |
| 549 | struct snd_soc_card *card; |
Mark Brown | 0d0cf00 | 2008-12-10 14:32:45 +0000 | [diff] [blame] | 550 | struct list_head list; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 551 | struct list_head card_list; |
| 552 | int num_dai; |
Dimitris Papastamos | 23bbce3 | 2010-12-02 14:53:01 +0000 | [diff] [blame] | 553 | enum snd_soc_compress_type compress_type; |
Dimitris Papastamos | aea170a | 2011-01-12 10:38:58 +0000 | [diff] [blame] | 554 | size_t reg_size; /* reg_cache_size * reg_word_size */ |
Dimitris Papastamos | 1500b7b | 2011-01-13 12:20:38 +0000 | [diff] [blame] | 555 | int (*volatile_register)(struct snd_soc_codec *, unsigned int); |
| 556 | int (*readable_register)(struct snd_soc_codec *, unsigned int); |
Dimitris Papastamos | 8020454 | 2011-03-24 13:45:17 +0000 | [diff] [blame] | 557 | int (*writable_register)(struct snd_soc_codec *, unsigned int); |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 558 | |
| 559 | /* runtime */ |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 560 | struct snd_ac97 *ac97; /* for ad-hoc ac97 devices */ |
| 561 | unsigned int active; |
Dimitris Papastamos | dad8e7a | 2011-01-19 14:53:36 +0000 | [diff] [blame] | 562 | unsigned int cache_bypass:1; /* Suppress access to the cache */ |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 563 | unsigned int suspended:1; /* Codec is in suspend PM state */ |
| 564 | unsigned int probed:1; /* Codec has been probed */ |
| 565 | unsigned int ac97_registered:1; /* Codec has been AC97 registered */ |
Mika Westerberg | 0562f78 | 2010-10-13 11:30:32 +0300 | [diff] [blame] | 566 | unsigned int ac97_created:1; /* Codec has been created by SoC */ |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 567 | unsigned int sysfs_registered:1; /* codec has been sysfs registered */ |
Dimitris Papastamos | fdf0f54 | 2010-12-02 16:11:06 +0000 | [diff] [blame] | 568 | unsigned int cache_init:1; /* codec cache has been initialized */ |
Mark Brown | aaee8ef | 2011-01-26 20:53:50 +0000 | [diff] [blame] | 569 | u32 cache_only; /* Suppress writes to hardware */ |
| 570 | u32 cache_sync; /* Cache needs to be synced to hardware */ |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 571 | |
| 572 | /* codec IO */ |
| 573 | void *control_data; /* codec control (i2c/3wire) data */ |
Dimitris Papastamos | 67850a8 | 2011-03-22 10:36:57 +0000 | [diff] [blame] | 574 | enum snd_soc_control_type control_type; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 575 | hw_write_t hw_write; |
| 576 | unsigned int (*hw_read)(struct snd_soc_codec *, unsigned int); |
Mark Brown | c3acec2 | 2010-12-02 16:15:29 +0000 | [diff] [blame] | 577 | unsigned int (*read)(struct snd_soc_codec *, unsigned int); |
| 578 | int (*write)(struct snd_soc_codec *, unsigned int, unsigned int); |
Dimitris Papastamos | 5fb609d | 2011-03-22 10:37:03 +0000 | [diff] [blame] | 579 | int (*bulk_write_raw)(struct snd_soc_codec *, unsigned int, const void *, size_t); |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 580 | void *reg_cache; |
Dimitris Papastamos | 3335ddc | 2010-12-02 16:11:05 +0000 | [diff] [blame] | 581 | const void *reg_def_copy; |
Dimitris Papastamos | 7a30a3d | 2010-11-11 10:04:57 +0000 | [diff] [blame] | 582 | const struct snd_soc_cache_ops *cache_ops; |
| 583 | struct mutex cache_rw_mutex; |
Mark Brown | a96ca33 | 2010-01-19 22:49:43 +0000 | [diff] [blame] | 584 | |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 585 | /* dapm */ |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 586 | struct snd_soc_dapm_context dapm; |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 587 | |
Mark Brown | 384c89e | 2008-12-03 17:34:03 +0000 | [diff] [blame] | 588 | #ifdef CONFIG_DEBUG_FS |
Peter Ujfalusi | 88439ac | 2009-10-01 10:32:47 +0300 | [diff] [blame] | 589 | struct dentry *debugfs_codec_root; |
Mark Brown | 384c89e | 2008-12-03 17:34:03 +0000 | [diff] [blame] | 590 | struct dentry *debugfs_reg; |
Mark Brown | 79fb938 | 2009-08-21 16:38:13 +0100 | [diff] [blame] | 591 | struct dentry *debugfs_dapm; |
Mark Brown | 384c89e | 2008-12-03 17:34:03 +0000 | [diff] [blame] | 592 | #endif |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 593 | }; |
| 594 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 595 | /* codec driver */ |
| 596 | struct snd_soc_codec_driver { |
| 597 | |
| 598 | /* driver ops */ |
| 599 | int (*probe)(struct snd_soc_codec *); |
| 600 | int (*remove)(struct snd_soc_codec *); |
| 601 | int (*suspend)(struct snd_soc_codec *, |
| 602 | pm_message_t state); |
| 603 | int (*resume)(struct snd_soc_codec *); |
| 604 | |
Mark Brown | b7af1da | 2011-04-07 19:18:44 +0900 | [diff] [blame] | 605 | /* Default control and setup, added after probe() is run */ |
| 606 | const struct snd_kcontrol_new *controls; |
| 607 | int num_controls; |
Mark Brown | 89b95ac | 2011-03-07 16:38:44 +0000 | [diff] [blame] | 608 | const struct snd_soc_dapm_widget *dapm_widgets; |
| 609 | int num_dapm_widgets; |
| 610 | const struct snd_soc_dapm_route *dapm_routes; |
| 611 | int num_dapm_routes; |
| 612 | |
Mark Brown | ec4ee52 | 2011-03-07 20:58:11 +0000 | [diff] [blame] | 613 | /* codec wide operations */ |
| 614 | int (*set_sysclk)(struct snd_soc_codec *codec, |
| 615 | int clk_id, unsigned int freq, int dir); |
| 616 | int (*set_pll)(struct snd_soc_codec *codec, int pll_id, int source, |
| 617 | unsigned int freq_in, unsigned int freq_out); |
| 618 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 619 | /* codec IO */ |
| 620 | unsigned int (*read)(struct snd_soc_codec *, unsigned int); |
| 621 | int (*write)(struct snd_soc_codec *, unsigned int, unsigned int); |
| 622 | int (*display_register)(struct snd_soc_codec *, char *, |
| 623 | size_t, unsigned int); |
Dimitris Papastamos | d4754ec | 2011-01-13 12:20:37 +0000 | [diff] [blame] | 624 | int (*volatile_register)(struct snd_soc_codec *, unsigned int); |
| 625 | int (*readable_register)(struct snd_soc_codec *, unsigned int); |
Dimitris Papastamos | 8020454 | 2011-03-24 13:45:17 +0000 | [diff] [blame] | 626 | int (*writable_register)(struct snd_soc_codec *, unsigned int); |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 627 | short reg_cache_size; |
| 628 | short reg_cache_step; |
| 629 | short reg_word_size; |
| 630 | const void *reg_cache_default; |
Dimitris Papastamos | 066d16c | 2011-01-13 12:20:36 +0000 | [diff] [blame] | 631 | short reg_access_size; |
| 632 | const struct snd_soc_reg_access *reg_access_default; |
Dimitris Papastamos | 7a30a3d | 2010-11-11 10:04:57 +0000 | [diff] [blame] | 633 | enum snd_soc_compress_type compress_type; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 634 | |
| 635 | /* codec bias level */ |
| 636 | int (*set_bias_level)(struct snd_soc_codec *, |
| 637 | enum snd_soc_bias_level level); |
Mark Brown | 474b62d | 2011-01-18 16:14:44 +0000 | [diff] [blame] | 638 | |
| 639 | void (*seq_notifier)(struct snd_soc_dapm_context *, |
Mark Brown | f85a9e0 | 2011-01-26 21:41:28 +0000 | [diff] [blame] | 640 | enum snd_soc_dapm_type, int); |
Liam Girdwood | 0218408 | 2011-03-30 23:26:53 +0100 | [diff] [blame] | 641 | |
| 642 | /* probe ordering - for components with runtime dependencies */ |
| 643 | bool late_probe; |
| 644 | bool early_remove; |
Liam Girdwood | 670ff44 | 2011-03-30 23:27:27 +0100 | [diff] [blame] | 645 | |
| 646 | /* codec stream completion event */ |
| 647 | int (*stream_event)(struct snd_soc_dapm_context *dapm); |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 648 | }; |
| 649 | |
| 650 | /* SoC platform interface */ |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 651 | struct snd_soc_platform_driver { |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 652 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 653 | int (*probe)(struct snd_soc_platform *); |
| 654 | int (*remove)(struct snd_soc_platform *); |
| 655 | int (*suspend)(struct snd_soc_dai *dai); |
| 656 | int (*resume)(struct snd_soc_dai *dai); |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 657 | |
| 658 | /* pcm creation and destruction */ |
Liam Girdwood | c6ac984 | 2011-02-04 22:12:30 +0000 | [diff] [blame] | 659 | int (*pcm_new)(struct snd_soc_pcm_runtime *); |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 660 | void (*pcm_free)(struct snd_pcm *); |
| 661 | |
Peter Ujfalusi | 258020d | 2010-03-03 15:08:07 +0200 | [diff] [blame] | 662 | /* |
| 663 | * For platform caused delay reporting. |
| 664 | * Optional. |
| 665 | */ |
| 666 | snd_pcm_sframes_t (*delay)(struct snd_pcm_substream *, |
| 667 | struct snd_soc_dai *); |
| 668 | |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 669 | /* platform stream ops */ |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 670 | struct snd_pcm_ops *ops; |
Liam Girdwood | 0218408 | 2011-03-30 23:26:53 +0100 | [diff] [blame] | 671 | |
| 672 | /* probe ordering - for components with runtime dependencies */ |
| 673 | bool late_probe; |
| 674 | bool early_remove; |
Liam Girdwood | 670ff44 | 2011-03-30 23:27:27 +0100 | [diff] [blame] | 675 | |
| 676 | int (*stream_event)(struct snd_soc_dapm_context *dapm); |
Liam Girdwood | 7987a11 | 2011-01-31 19:52:42 +0000 | [diff] [blame] | 677 | /* platform DAPM IO TODO: refactor this */ |
| 678 | unsigned int (*read)(struct snd_soc_platform *, unsigned int); |
| 679 | int (*write)(struct snd_soc_platform *, unsigned int, unsigned int); |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 680 | }; |
| 681 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 682 | struct snd_soc_platform { |
| 683 | const char *name; |
| 684 | int id; |
| 685 | struct device *dev; |
| 686 | struct snd_soc_platform_driver *driver; |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 687 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 688 | unsigned int suspended:1; /* platform is suspended */ |
| 689 | unsigned int probed:1; |
Graeme Gregory | 1c433fb | 2007-02-02 17:13:05 +0100 | [diff] [blame] | 690 | |
Liam Girdwood | 7987a11 | 2011-01-31 19:52:42 +0000 | [diff] [blame] | 691 | struct snd_card *snd_card; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 692 | struct snd_soc_card *card; |
| 693 | struct list_head list; |
| 694 | struct list_head card_list; |
Liam Girdwood | bfe7dc4 | 2011-01-31 21:26:35 +0000 | [diff] [blame] | 695 | int num_dai; |
| 696 | |
| 697 | /* dapm */ |
| 698 | struct snd_soc_dapm_context dapm; |
| 699 | |
| 700 | #ifdef CONFIG_DEBUG_FS |
| 701 | struct dentry *debugfs_platform_root; |
| 702 | struct dentry *debugfs_dapm; |
| 703 | #endif |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 704 | }; |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 705 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 706 | struct snd_soc_dai_link { |
| 707 | /* config - must be set by machine driver */ |
| 708 | const char *name; /* Codec name */ |
| 709 | const char *stream_name; /* Stream name */ |
| 710 | const char *codec_name; /* for multi-codec */ |
| 711 | const char *platform_name; /* for multi-platform */ |
| 712 | const char *cpu_dai_name; |
| 713 | const char *codec_dai_name; |
Liam Girdwood | 4ccab3e | 2008-01-10 14:39:01 +0100 | [diff] [blame] | 714 | |
Liam Girdwood | bfe7dc4 | 2011-01-31 21:26:35 +0000 | [diff] [blame] | 715 | struct snd_soc_dsp_link *dsp_link; |
Mark Brown | 3efab7d | 2010-05-09 13:25:43 +0100 | [diff] [blame] | 716 | /* Keep DAI active over suspend */ |
| 717 | unsigned int ignore_suspend:1; |
| 718 | |
Mark Brown | 06f409d | 2009-04-07 18:10:13 +0100 | [diff] [blame] | 719 | /* Symmetry requirements */ |
| 720 | unsigned int symmetric_rates:1; |
Liam Girdwood | bfe7dc4 | 2011-01-31 21:26:35 +0000 | [diff] [blame] | 721 | /* No PCM created for this DAI link */ |
| 722 | unsigned int no_pcm:1; |
| 723 | /* This DAI link can change CODEC and platform at runtime*/ |
| 724 | unsigned int dynamic:1; |
| 725 | /* This DAI link has no codec side driver*/ |
| 726 | unsigned int no_codec:1; |
| 727 | /* This DAI has a Backend ID */ |
| 728 | unsigned int be_id; |
Liam Girdwood | f320fdd | 2011-02-01 21:31:50 +0000 | [diff] [blame^] | 729 | /* This DAI can support no host IO (no pcm data is copied to from host) */ |
| 730 | unsigned int no_host_mode:2; |
Mark Brown | 06f409d | 2009-04-07 18:10:13 +0100 | [diff] [blame] | 731 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 732 | /* codec/machine specific init - e.g. add machine controls */ |
| 733 | int (*init)(struct snd_soc_pcm_runtime *rtd); |
Mark Brown | 06f409d | 2009-04-07 18:10:13 +0100 | [diff] [blame] | 734 | |
Liam Girdwood | bfe7dc4 | 2011-01-31 21:26:35 +0000 | [diff] [blame] | 735 | /* hw_params re-writing for BE and FE sync */ |
| 736 | int (*be_hw_params_fixup)(struct snd_soc_pcm_runtime *rtd, |
| 737 | struct snd_pcm_hw_params *params); |
| 738 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 739 | /* machine stream operations */ |
| 740 | struct snd_soc_ops *ops; |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 741 | }; |
| 742 | |
Dimitris Papastamos | ff819b8 | 2010-12-02 14:53:03 +0000 | [diff] [blame] | 743 | struct snd_soc_codec_conf { |
Jarkko Nikula | ead9b91 | 2010-11-13 20:40:44 +0200 | [diff] [blame] | 744 | const char *dev_name; |
Dimitris Papastamos | ff819b8 | 2010-12-02 14:53:03 +0000 | [diff] [blame] | 745 | |
| 746 | /* |
| 747 | * optional map of kcontrol, widget and path name prefixes that are |
| 748 | * associated per device |
| 749 | */ |
Jarkko Nikula | ead9b91 | 2010-11-13 20:40:44 +0200 | [diff] [blame] | 750 | const char *name_prefix; |
Dimitris Papastamos | ff819b8 | 2010-12-02 14:53:03 +0000 | [diff] [blame] | 751 | |
| 752 | /* |
| 753 | * set this to the desired compression type if you want to |
| 754 | * override the one supplied in codec->driver->compress_type |
| 755 | */ |
| 756 | enum snd_soc_compress_type compress_type; |
Jarkko Nikula | ead9b91 | 2010-11-13 20:40:44 +0200 | [diff] [blame] | 757 | }; |
| 758 | |
Jarkko Nikula | 2eea392 | 2010-11-25 17:47:38 +0200 | [diff] [blame] | 759 | struct snd_soc_aux_dev { |
| 760 | const char *name; /* Codec name */ |
| 761 | const char *codec_name; /* for multi-codec */ |
| 762 | |
| 763 | /* codec/machine specific init - e.g. add machine controls */ |
| 764 | int (*init)(struct snd_soc_dapm_context *dapm); |
| 765 | }; |
| 766 | |
Mark Brown | 8750654 | 2008-11-18 20:50:34 +0000 | [diff] [blame] | 767 | /* SoC card */ |
| 768 | struct snd_soc_card { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 769 | const char *name; |
Liam Girdwood | 22de71b | 2011-05-12 16:14:04 +0100 | [diff] [blame] | 770 | const char *long_name; |
| 771 | const char *driver_name; |
Mark Brown | c5af3a2 | 2008-11-28 13:29:45 +0000 | [diff] [blame] | 772 | struct device *dev; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 773 | struct snd_card *snd_card; |
| 774 | struct module *owner; |
Mark Brown | c5af3a2 | 2008-11-28 13:29:45 +0000 | [diff] [blame] | 775 | |
| 776 | struct list_head list; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 777 | struct mutex mutex; |
Liam Girdwood | ecc1a0d | 2011-02-16 16:24:17 +0000 | [diff] [blame] | 778 | struct mutex dapm_mutex; |
Liam Girdwood | bfe7dc4 | 2011-01-31 21:26:35 +0000 | [diff] [blame] | 779 | struct mutex dsp_mutex; |
Mark Brown | c5af3a2 | 2008-11-28 13:29:45 +0000 | [diff] [blame] | 780 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 781 | bool instantiated; |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 782 | |
Mark Brown | e7361ec | 2011-01-26 14:17:20 +0000 | [diff] [blame] | 783 | int (*probe)(struct snd_soc_card *card); |
Mark Brown | 28e9ad9 | 2011-03-02 18:36:34 +0000 | [diff] [blame] | 784 | int (*late_probe)(struct snd_soc_card *card); |
Mark Brown | e7361ec | 2011-01-26 14:17:20 +0000 | [diff] [blame] | 785 | int (*remove)(struct snd_soc_card *card); |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 786 | |
| 787 | /* the pre and post PM functions are used to do any PM work before and |
| 788 | * after the codec and DAI's do any PM work. */ |
Mark Brown | 70b2ac1 | 2011-01-26 14:05:25 +0000 | [diff] [blame] | 789 | int (*suspend_pre)(struct snd_soc_card *card); |
| 790 | int (*suspend_post)(struct snd_soc_card *card); |
| 791 | int (*resume_pre)(struct snd_soc_card *card); |
| 792 | int (*resume_post)(struct snd_soc_card *card); |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 793 | |
Liam Girdwood | 0b4d221 | 2008-01-10 14:36:20 +0100 | [diff] [blame] | 794 | /* callbacks */ |
Mark Brown | 8750654 | 2008-11-18 20:50:34 +0000 | [diff] [blame] | 795 | int (*set_bias_level)(struct snd_soc_card *, |
Mark Brown | 0be9898 | 2008-05-19 12:31:28 +0200 | [diff] [blame] | 796 | enum snd_soc_bias_level level); |
Mark Brown | 1badabd | 2010-12-04 12:41:04 +0000 | [diff] [blame] | 797 | int (*set_bias_level_post)(struct snd_soc_card *, |
| 798 | enum snd_soc_bias_level level); |
Liam Girdwood | 0b4d221 | 2008-01-10 14:36:20 +0100 | [diff] [blame] | 799 | |
Mark Brown | 6c5f1fe | 2010-02-17 14:30:44 +0000 | [diff] [blame] | 800 | long pmdown_time; |
Mark Brown | 96dd362 | 2010-02-12 11:05:44 +0000 | [diff] [blame] | 801 | |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 802 | /* CPU <--> Codec DAI links */ |
| 803 | struct snd_soc_dai_link *dai_link; |
| 804 | int num_links; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 805 | struct snd_soc_pcm_runtime *rtd; |
| 806 | int num_rtd; |
Mark Brown | 6308419 | 2008-12-02 15:08:03 +0000 | [diff] [blame] | 807 | |
Dimitris Papastamos | ff819b8 | 2010-12-02 14:53:03 +0000 | [diff] [blame] | 808 | /* optional codec specific configuration */ |
| 809 | struct snd_soc_codec_conf *codec_conf; |
| 810 | int num_configs; |
Jarkko Nikula | ead9b91 | 2010-11-13 20:40:44 +0200 | [diff] [blame] | 811 | |
Jarkko Nikula | 2eea392 | 2010-11-25 17:47:38 +0200 | [diff] [blame] | 812 | /* |
| 813 | * optional auxiliary devices such as amplifiers or codecs with DAI |
| 814 | * link unused |
| 815 | */ |
| 816 | struct snd_soc_aux_dev *aux_dev; |
| 817 | int num_aux_devs; |
| 818 | struct snd_soc_pcm_runtime *rtd_aux; |
| 819 | int num_aux_rtd; |
| 820 | |
Mark Brown | b7af1da | 2011-04-07 19:18:44 +0900 | [diff] [blame] | 821 | const struct snd_kcontrol_new *controls; |
| 822 | int num_controls; |
| 823 | |
Mark Brown | b8ad29d | 2011-03-02 18:35:51 +0000 | [diff] [blame] | 824 | /* |
| 825 | * Card-specific routes and widgets. |
| 826 | */ |
Lars-Peter Clausen | d06e48d | 2011-04-12 19:31:01 +0200 | [diff] [blame] | 827 | const struct snd_soc_dapm_widget *dapm_widgets; |
Mark Brown | b8ad29d | 2011-03-02 18:35:51 +0000 | [diff] [blame] | 828 | int num_dapm_widgets; |
Lars-Peter Clausen | d06e48d | 2011-04-12 19:31:01 +0200 | [diff] [blame] | 829 | const struct snd_soc_dapm_route *dapm_routes; |
Mark Brown | b8ad29d | 2011-03-02 18:35:51 +0000 | [diff] [blame] | 830 | int num_dapm_routes; |
| 831 | |
Mark Brown | 6308419 | 2008-12-02 15:08:03 +0000 | [diff] [blame] | 832 | struct work_struct deferred_resume_work; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 833 | |
| 834 | /* lists of probed devices belonging to this card */ |
| 835 | struct list_head codec_dev_list; |
| 836 | struct list_head platform_dev_list; |
| 837 | struct list_head dai_dev_list; |
Jarkko Nikula | a605215 | 2010-11-05 20:35:19 +0200 | [diff] [blame] | 838 | |
Jarkko Nikula | 97c866d | 2010-12-14 12:18:31 +0200 | [diff] [blame] | 839 | struct list_head widgets; |
Jarkko Nikula | 8ddab3f | 2010-12-14 12:18:30 +0200 | [diff] [blame] | 840 | struct list_head paths; |
Jarkko Nikula | 7be31be8 | 2010-12-14 12:18:32 +0200 | [diff] [blame] | 841 | struct list_head dapm_list; |
Jarkko Nikula | 8ddab3f | 2010-12-14 12:18:30 +0200 | [diff] [blame] | 842 | |
Mark Brown | e37a497 | 2011-03-02 18:21:57 +0000 | [diff] [blame] | 843 | /* Generic DAPM context for the card */ |
| 844 | struct snd_soc_dapm_context dapm; |
| 845 | |
Jarkko Nikula | a605215 | 2010-11-05 20:35:19 +0200 | [diff] [blame] | 846 | #ifdef CONFIG_DEBUG_FS |
| 847 | struct dentry *debugfs_card_root; |
Jarkko Nikula | 3a45b86 | 2010-11-05 20:35:21 +0200 | [diff] [blame] | 848 | struct dentry *debugfs_pop_time; |
Jarkko Nikula | a605215 | 2010-11-05 20:35:19 +0200 | [diff] [blame] | 849 | #endif |
Jarkko Nikula | 3a45b86 | 2010-11-05 20:35:21 +0200 | [diff] [blame] | 850 | u32 pop_time; |
Mark Brown | dddf3e4 | 2011-01-28 13:11:47 +0000 | [diff] [blame] | 851 | |
| 852 | void *drvdata; |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 853 | }; |
| 854 | |
Liam Girdwood | bfe7dc4 | 2011-01-31 21:26:35 +0000 | [diff] [blame] | 855 | /* DSP runtime data */ |
| 856 | struct snd_soc_dsp_runtime { |
| 857 | struct list_head be_clients; |
| 858 | struct list_head fe_clients; |
| 859 | int users; |
| 860 | struct snd_pcm_runtime *runtime; |
| 861 | struct snd_pcm_hw_params params; |
| 862 | int runtime_update; |
| 863 | }; |
| 864 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 865 | /* SoC machine DAI configuration, glues a codec and cpu DAI together */ |
| 866 | struct snd_soc_pcm_runtime { |
| 867 | struct device dev; |
Mark Brown | 8750654 | 2008-11-18 20:50:34 +0000 | [diff] [blame] | 868 | struct snd_soc_card *card; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 869 | struct snd_soc_dai_link *dai_link; |
Liam Girdwood | 0f8bae9 | 2011-01-27 19:35:01 +0000 | [diff] [blame] | 870 | struct mutex pcm_mutex; |
| 871 | enum snd_soc_pcm_subclass pcm_subclass; |
| 872 | struct snd_pcm_ops ops; |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 873 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 874 | unsigned int complete:1; |
| 875 | unsigned int dev_registered:1; |
| 876 | |
Liam Girdwood | bfe7dc4 | 2011-01-31 21:26:35 +0000 | [diff] [blame] | 877 | /* DSP runtime data */ |
| 878 | struct snd_soc_dsp_runtime dsp[2]; |
| 879 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 880 | /* Symmetry data - only valid if symmetry is being enforced */ |
| 881 | unsigned int rate; |
| 882 | long pmdown_time; |
| 883 | |
| 884 | /* runtime devices */ |
| 885 | struct snd_pcm *pcm; |
| 886 | struct snd_soc_codec *codec; |
| 887 | struct snd_soc_platform *platform; |
| 888 | struct snd_soc_dai *codec_dai; |
| 889 | struct snd_soc_dai *cpu_dai; |
| 890 | |
| 891 | struct delayed_work delayed_work; |
Liam Girdwood | bfe7dc4 | 2011-01-31 21:26:35 +0000 | [diff] [blame] | 892 | |
| 893 | #ifdef CONFIG_DEBUG_FS |
| 894 | struct dentry *debugfs_dsp_root; |
| 895 | #endif |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 896 | }; |
| 897 | |
Jon Smirl | 4eaa981 | 2008-07-29 11:42:26 +0100 | [diff] [blame] | 898 | /* mixer control */ |
| 899 | struct soc_mixer_control { |
Peter Ujfalusi | d11bb4a | 2010-05-10 14:39:24 +0300 | [diff] [blame] | 900 | int min, max, platform_max; |
Jon Smirl | 815ecf8 | 2008-07-29 10:22:24 -0400 | [diff] [blame] | 901 | unsigned int reg, rreg, shift, rshift, invert; |
Jon Smirl | 4eaa981 | 2008-07-29 11:42:26 +0100 | [diff] [blame] | 902 | }; |
| 903 | |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 904 | /* enumerated kcontrol */ |
| 905 | struct soc_enum { |
| 906 | unsigned short reg; |
| 907 | unsigned short reg2; |
| 908 | unsigned char shift_l; |
| 909 | unsigned char shift_r; |
Jon Smirl | f8ba0b7 | 2008-07-29 11:42:27 +0100 | [diff] [blame] | 910 | unsigned int max; |
Peter Ujfalusi | 2e72f8e | 2009-01-05 09:54:57 +0200 | [diff] [blame] | 911 | unsigned int mask; |
Takashi Iwai | 87023ff | 2011-05-03 12:50:29 +0200 | [diff] [blame] | 912 | const char * const *texts; |
Liam Girdwood | a8f13d8 | 2011-05-18 18:39:21 +0100 | [diff] [blame] | 913 | char **dtexts; |
Peter Ujfalusi | 2e72f8e | 2009-01-05 09:54:57 +0200 | [diff] [blame] | 914 | const unsigned int *values; |
| 915 | void *dapm; |
| 916 | }; |
| 917 | |
Mark Brown | 5c82f56 | 2009-05-22 09:41:30 +0100 | [diff] [blame] | 918 | /* codec IO */ |
Mark Brown | c375370 | 2010-11-01 15:41:57 -0400 | [diff] [blame] | 919 | unsigned int snd_soc_read(struct snd_soc_codec *codec, unsigned int reg); |
| 920 | unsigned int snd_soc_write(struct snd_soc_codec *codec, |
| 921 | unsigned int reg, unsigned int val); |
Dimitris Papastamos | 5fb609d | 2011-03-22 10:37:03 +0000 | [diff] [blame] | 922 | unsigned int snd_soc_bulk_write_raw(struct snd_soc_codec *codec, |
| 923 | unsigned int reg, const void *data, size_t len); |
Mark Brown | 5c82f56 | 2009-05-22 09:41:30 +0100 | [diff] [blame] | 924 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 925 | /* device driver data */ |
| 926 | |
Mark Brown | dddf3e4 | 2011-01-28 13:11:47 +0000 | [diff] [blame] | 927 | static inline void snd_soc_card_set_drvdata(struct snd_soc_card *card, |
| 928 | void *data) |
| 929 | { |
| 930 | card->drvdata = data; |
| 931 | } |
| 932 | |
| 933 | static inline void *snd_soc_card_get_drvdata(struct snd_soc_card *card) |
| 934 | { |
| 935 | return card->drvdata; |
| 936 | } |
| 937 | |
Mark Brown | b2c812e | 2010-04-14 15:35:19 +0900 | [diff] [blame] | 938 | static inline void snd_soc_codec_set_drvdata(struct snd_soc_codec *codec, |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 939 | void *data) |
Mark Brown | b2c812e | 2010-04-14 15:35:19 +0900 | [diff] [blame] | 940 | { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 941 | dev_set_drvdata(codec->dev, data); |
Mark Brown | b2c812e | 2010-04-14 15:35:19 +0900 | [diff] [blame] | 942 | } |
| 943 | |
| 944 | static inline void *snd_soc_codec_get_drvdata(struct snd_soc_codec *codec) |
| 945 | { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 946 | return dev_get_drvdata(codec->dev); |
| 947 | } |
| 948 | |
| 949 | static inline void snd_soc_platform_set_drvdata(struct snd_soc_platform *platform, |
| 950 | void *data) |
| 951 | { |
| 952 | dev_set_drvdata(platform->dev, data); |
| 953 | } |
| 954 | |
| 955 | static inline void *snd_soc_platform_get_drvdata(struct snd_soc_platform *platform) |
| 956 | { |
| 957 | return dev_get_drvdata(platform->dev); |
| 958 | } |
| 959 | |
| 960 | static inline void snd_soc_pcm_set_drvdata(struct snd_soc_pcm_runtime *rtd, |
| 961 | void *data) |
| 962 | { |
| 963 | dev_set_drvdata(&rtd->dev, data); |
| 964 | } |
| 965 | |
| 966 | static inline void *snd_soc_pcm_get_drvdata(struct snd_soc_pcm_runtime *rtd) |
| 967 | { |
| 968 | return dev_get_drvdata(&rtd->dev); |
Mark Brown | b2c812e | 2010-04-14 15:35:19 +0900 | [diff] [blame] | 969 | } |
| 970 | |
Vinod Koul | 4e10bda | 2011-01-13 22:48:52 +0530 | [diff] [blame] | 971 | static inline void snd_soc_initialize_card_lists(struct snd_soc_card *card) |
| 972 | { |
| 973 | INIT_LIST_HEAD(&card->dai_dev_list); |
| 974 | INIT_LIST_HEAD(&card->codec_dev_list); |
| 975 | INIT_LIST_HEAD(&card->platform_dev_list); |
| 976 | INIT_LIST_HEAD(&card->widgets); |
| 977 | INIT_LIST_HEAD(&card->paths); |
| 978 | INIT_LIST_HEAD(&card->dapm_list); |
| 979 | } |
| 980 | |
Mark Brown | fb25789 | 2011-04-28 10:57:54 +0100 | [diff] [blame] | 981 | int snd_soc_util_init(void); |
| 982 | void snd_soc_util_exit(void); |
| 983 | |
Mark Brown | a47cbe7 | 2008-07-23 14:03:07 +0100 | [diff] [blame] | 984 | #include <sound/soc-dai.h> |
| 985 | |
Stephen Warren | faff4bb | 2011-01-07 22:36:11 -0700 | [diff] [blame] | 986 | #ifdef CONFIG_DEBUG_FS |
Mark Brown | 8a9dab1 | 2011-01-10 22:25:21 +0000 | [diff] [blame] | 987 | extern struct dentry *snd_soc_debugfs_root; |
Stephen Warren | faff4bb | 2011-01-07 22:36:11 -0700 | [diff] [blame] | 988 | #endif |
| 989 | |
Mark Brown | 6f8ab4a | 2011-01-26 14:59:27 +0000 | [diff] [blame] | 990 | extern const struct dev_pm_ops snd_soc_pm_ops; |
| 991 | |
Richard Purdie | 808db4a | 2006-10-06 18:20:14 +0200 | [diff] [blame] | 992 | #endif |