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