Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Universal Interface for Intel High Definition Audio Codec |
| 3 | * |
| 4 | * Copyright (c) 2004 Takashi Iwai <tiwai@suse.de> |
| 5 | * |
| 6 | * |
| 7 | * This driver is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License as published by |
| 9 | * the Free Software Foundation; either version 2 of the License, or |
| 10 | * (at your option) any later version. |
| 11 | * |
| 12 | * This driver is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | * GNU General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License |
| 18 | * along with this program; if not, write to the Free Software |
| 19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 20 | */ |
| 21 | |
Takashi Iwai | 18478e8 | 2012-03-09 17:51:10 +0100 | [diff] [blame] | 22 | #include <linux/mm.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include <linux/init.h> |
| 24 | #include <linux/delay.h> |
| 25 | #include <linux/slab.h> |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 26 | #include <linux/mutex.h> |
Paul Gortmaker | da155d5 | 2011-07-15 12:38:28 -0400 | [diff] [blame] | 27 | #include <linux/module.h> |
Takashi Iwai | f4d6a55 | 2013-12-05 11:55:05 +0100 | [diff] [blame] | 28 | #include <linux/async.h> |
Takashi Iwai | cc72da7 | 2015-02-19 16:00:22 +0100 | [diff] [blame] | 29 | #include <linux/pm.h> |
| 30 | #include <linux/pm_runtime.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #include <sound/core.h> |
| 32 | #include "hda_codec.h" |
| 33 | #include <sound/asoundef.h> |
Jaroslav Kysela | 302e9c5 | 2006-07-05 17:39:49 +0200 | [diff] [blame] | 34 | #include <sound/tlv.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #include <sound/initval.h> |
Takashi Iwai | cd372fb | 2011-03-03 14:40:14 +0100 | [diff] [blame] | 36 | #include <sound/jack.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | #include "hda_local.h" |
Jaroslav Kysela | 123c07a | 2009-10-21 14:48:23 +0200 | [diff] [blame] | 38 | #include "hda_beep.h" |
Takashi Iwai | 1835a0f | 2011-10-27 22:12:46 +0200 | [diff] [blame] | 39 | #include "hda_jack.h" |
Takashi Iwai | 2807314 | 2007-07-27 18:58:06 +0200 | [diff] [blame] | 40 | #include <sound/hda_hwdep.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | |
Takashi Iwai | 83012a7 | 2012-08-24 18:38:08 +0200 | [diff] [blame] | 42 | #ifdef CONFIG_PM |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 43 | #define codec_in_pm(codec) atomic_read(&(codec)->core.in_pm) |
Takashi Iwai | cc72da7 | 2015-02-19 16:00:22 +0100 | [diff] [blame] | 44 | #define hda_codec_is_power_on(codec) \ |
| 45 | (!pm_runtime_suspended(hda_codec_dev(codec))) |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 46 | #else |
Takashi Iwai | d846b17 | 2012-11-24 11:58:24 +0100 | [diff] [blame] | 47 | #define codec_in_pm(codec) 0 |
Takashi Iwai | e581f3d | 2011-07-26 10:19:20 +0200 | [diff] [blame] | 48 | #define hda_codec_is_power_on(codec) 1 |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 49 | #endif |
| 50 | |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 51 | #define codec_has_epss(codec) \ |
| 52 | ((codec)->core.power_caps & AC_PWRST_EPSS) |
| 53 | #define codec_has_clkstop(codec) \ |
| 54 | ((codec)->core.power_caps & AC_PWRST_CLKSTOP) |
| 55 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 56 | /** |
| 57 | * snd_hda_get_jack_location - Give a location string of the jack |
| 58 | * @cfg: pin default config value |
| 59 | * |
| 60 | * Parse the pin default config value and returns the string of the |
| 61 | * jack location, e.g. "Rear", "Front", etc. |
| 62 | */ |
Matthew Ranostay | 50a9f79 | 2008-10-25 01:05:45 -0400 | [diff] [blame] | 63 | const char *snd_hda_get_jack_location(u32 cfg) |
| 64 | { |
| 65 | static char *bases[7] = { |
| 66 | "N/A", "Rear", "Front", "Left", "Right", "Top", "Bottom", |
| 67 | }; |
| 68 | static unsigned char specials_idx[] = { |
| 69 | 0x07, 0x08, |
| 70 | 0x17, 0x18, 0x19, |
| 71 | 0x37, 0x38 |
| 72 | }; |
| 73 | static char *specials[] = { |
| 74 | "Rear Panel", "Drive Bar", |
| 75 | "Riser", "HDMI", "ATAPI", |
| 76 | "Mobile-In", "Mobile-Out" |
| 77 | }; |
| 78 | int i; |
| 79 | cfg = (cfg & AC_DEFCFG_LOCATION) >> AC_DEFCFG_LOCATION_SHIFT; |
| 80 | if ((cfg & 0x0f) < 7) |
| 81 | return bases[cfg & 0x0f]; |
| 82 | for (i = 0; i < ARRAY_SIZE(specials_idx); i++) { |
| 83 | if (cfg == specials_idx[i]) |
| 84 | return specials[i]; |
| 85 | } |
| 86 | return "UNKNOWN"; |
| 87 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 88 | EXPORT_SYMBOL_GPL(snd_hda_get_jack_location); |
Matthew Ranostay | 50a9f79 | 2008-10-25 01:05:45 -0400 | [diff] [blame] | 89 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 90 | /** |
| 91 | * snd_hda_get_jack_connectivity - Give a connectivity string of the jack |
| 92 | * @cfg: pin default config value |
| 93 | * |
| 94 | * Parse the pin default config value and returns the string of the |
| 95 | * jack connectivity, i.e. external or internal connection. |
| 96 | */ |
Matthew Ranostay | 50a9f79 | 2008-10-25 01:05:45 -0400 | [diff] [blame] | 97 | const char *snd_hda_get_jack_connectivity(u32 cfg) |
| 98 | { |
| 99 | static char *jack_locations[4] = { "Ext", "Int", "Sep", "Oth" }; |
| 100 | |
| 101 | return jack_locations[(cfg >> (AC_DEFCFG_LOCATION_SHIFT + 4)) & 3]; |
| 102 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 103 | EXPORT_SYMBOL_GPL(snd_hda_get_jack_connectivity); |
Matthew Ranostay | 50a9f79 | 2008-10-25 01:05:45 -0400 | [diff] [blame] | 104 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 105 | /** |
| 106 | * snd_hda_get_jack_type - Give a type string of the jack |
| 107 | * @cfg: pin default config value |
| 108 | * |
| 109 | * Parse the pin default config value and returns the string of the |
| 110 | * jack type, i.e. the purpose of the jack, such as Line-Out or CD. |
| 111 | */ |
Matthew Ranostay | 50a9f79 | 2008-10-25 01:05:45 -0400 | [diff] [blame] | 112 | const char *snd_hda_get_jack_type(u32 cfg) |
| 113 | { |
| 114 | static char *jack_types[16] = { |
| 115 | "Line Out", "Speaker", "HP Out", "CD", |
| 116 | "SPDIF Out", "Digital Out", "Modem Line", "Modem Hand", |
| 117 | "Line In", "Aux", "Mic", "Telephony", |
David Henningsson | aeb3a97 | 2013-04-04 11:47:13 +0200 | [diff] [blame] | 118 | "SPDIF In", "Digital In", "Reserved", "Other" |
Matthew Ranostay | 50a9f79 | 2008-10-25 01:05:45 -0400 | [diff] [blame] | 119 | }; |
| 120 | |
| 121 | return jack_types[(cfg & AC_DEFCFG_DEVICE) |
| 122 | >> AC_DEFCFG_DEVICE_SHIFT]; |
| 123 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 124 | EXPORT_SYMBOL_GPL(snd_hda_get_jack_type); |
Matthew Ranostay | 50a9f79 | 2008-10-25 01:05:45 -0400 | [diff] [blame] | 125 | |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 126 | /* |
Takashi Iwai | 0585244 | 2015-03-03 15:40:08 +0100 | [diff] [blame] | 127 | * Send and receive a verb - passed to exec_verb override for hdac_device |
Takashi Iwai | aa2936f | 2009-05-26 16:07:57 +0200 | [diff] [blame] | 128 | */ |
Takashi Iwai | 0585244 | 2015-03-03 15:40:08 +0100 | [diff] [blame] | 129 | static int codec_exec_verb(struct hdac_device *dev, unsigned int cmd, |
| 130 | unsigned int flags, unsigned int *res) |
Takashi Iwai | aa2936f | 2009-05-26 16:07:57 +0200 | [diff] [blame] | 131 | { |
Takashi Iwai | 0585244 | 2015-03-03 15:40:08 +0100 | [diff] [blame] | 132 | struct hda_codec *codec = container_of(dev, struct hda_codec, core); |
Takashi Iwai | aa2936f | 2009-05-26 16:07:57 +0200 | [diff] [blame] | 133 | struct hda_bus *bus = codec->bus; |
Takashi Iwai | 8dd7833 | 2009-06-02 01:16:07 +0200 | [diff] [blame] | 134 | int err; |
Takashi Iwai | aa2936f | 2009-05-26 16:07:57 +0200 | [diff] [blame] | 135 | |
Wu Fengguang | 6430aee | 2009-07-17 16:49:19 +0800 | [diff] [blame] | 136 | if (cmd == ~0) |
| 137 | return -1; |
| 138 | |
Takashi Iwai | 8dd7833 | 2009-06-02 01:16:07 +0200 | [diff] [blame] | 139 | again: |
Takashi Iwai | 664c715 | 2015-04-08 11:43:14 +0200 | [diff] [blame] | 140 | snd_hda_power_up_pm(codec); |
Takashi Iwai | d068ebc | 2015-03-02 23:22:59 +0100 | [diff] [blame] | 141 | mutex_lock(&bus->core.cmd_mutex); |
Takashi Iwai | 63e51fd | 2013-06-06 14:20:19 +0200 | [diff] [blame] | 142 | if (flags & HDA_RW_NO_RESPONSE_FALLBACK) |
| 143 | bus->no_response_fallback = 1; |
Takashi Iwai | d068ebc | 2015-03-02 23:22:59 +0100 | [diff] [blame] | 144 | err = snd_hdac_bus_exec_verb_unlocked(&bus->core, codec->core.addr, |
| 145 | cmd, res); |
Takashi Iwai | 63e51fd | 2013-06-06 14:20:19 +0200 | [diff] [blame] | 146 | bus->no_response_fallback = 0; |
Takashi Iwai | d068ebc | 2015-03-02 23:22:59 +0100 | [diff] [blame] | 147 | mutex_unlock(&bus->core.cmd_mutex); |
Takashi Iwai | 664c715 | 2015-04-08 11:43:14 +0200 | [diff] [blame] | 148 | snd_hda_power_down_pm(codec); |
Takashi Iwai | cad372f | 2015-03-25 17:57:00 +0100 | [diff] [blame] | 149 | if (!codec_in_pm(codec) && res && err == -EAGAIN) { |
Takashi Iwai | 8dd7833 | 2009-06-02 01:16:07 +0200 | [diff] [blame] | 150 | if (bus->response_reset) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 151 | codec_dbg(codec, |
| 152 | "resetting BUS due to fatal communication error\n"); |
Takashi Iwai | 0a50575 | 2015-04-16 23:25:02 +0200 | [diff] [blame^] | 153 | snd_hda_bus_reset(bus); |
Takashi Iwai | 8dd7833 | 2009-06-02 01:16:07 +0200 | [diff] [blame] | 154 | } |
| 155 | goto again; |
| 156 | } |
| 157 | /* clear reset-flag when the communication gets recovered */ |
Takashi Iwai | d846b17 | 2012-11-24 11:58:24 +0100 | [diff] [blame] | 158 | if (!err || codec_in_pm(codec)) |
Takashi Iwai | 8dd7833 | 2009-06-02 01:16:07 +0200 | [diff] [blame] | 159 | bus->response_reset = 0; |
Takashi Iwai | aa2936f | 2009-05-26 16:07:57 +0200 | [diff] [blame] | 160 | return err; |
| 161 | } |
| 162 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | /** |
| 164 | * snd_hda_codec_read - send a command and get the response |
| 165 | * @codec: the HDA codec |
| 166 | * @nid: NID to send the command |
Takashi Iwai | e7ecc27 | 2013-06-06 14:00:23 +0200 | [diff] [blame] | 167 | * @flags: optional bit flags |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | * @verb: the verb to send |
| 169 | * @parm: the parameter for the verb |
| 170 | * |
| 171 | * Send a single command and read the corresponding response. |
| 172 | * |
| 173 | * Returns the obtained response value, or -1 for an error. |
| 174 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 175 | unsigned int snd_hda_codec_read(struct hda_codec *codec, hda_nid_t nid, |
Takashi Iwai | e7ecc27 | 2013-06-06 14:00:23 +0200 | [diff] [blame] | 176 | int flags, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | unsigned int verb, unsigned int parm) |
| 178 | { |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 179 | unsigned int cmd = snd_hdac_make_cmd(&codec->core, nid, verb, parm); |
Takashi Iwai | aa2936f | 2009-05-26 16:07:57 +0200 | [diff] [blame] | 180 | unsigned int res; |
Takashi Iwai | 0585244 | 2015-03-03 15:40:08 +0100 | [diff] [blame] | 181 | if (snd_hdac_exec_verb(&codec->core, cmd, flags, &res)) |
Greg Thelen | 9857edf | 2011-06-13 07:45:45 -0700 | [diff] [blame] | 182 | return -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | return res; |
| 184 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 185 | EXPORT_SYMBOL_GPL(snd_hda_codec_read); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | |
| 187 | /** |
| 188 | * snd_hda_codec_write - send a single command without waiting for response |
| 189 | * @codec: the HDA codec |
| 190 | * @nid: NID to send the command |
Takashi Iwai | e7ecc27 | 2013-06-06 14:00:23 +0200 | [diff] [blame] | 191 | * @flags: optional bit flags |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | * @verb: the verb to send |
| 193 | * @parm: the parameter for the verb |
| 194 | * |
| 195 | * Send a single command without waiting for response. |
| 196 | * |
| 197 | * Returns 0 if successful, or a negative error code. |
| 198 | */ |
Takashi Iwai | e7ecc27 | 2013-06-06 14:00:23 +0200 | [diff] [blame] | 199 | int snd_hda_codec_write(struct hda_codec *codec, hda_nid_t nid, int flags, |
| 200 | unsigned int verb, unsigned int parm) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | { |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 202 | unsigned int cmd = snd_hdac_make_cmd(&codec->core, nid, verb, parm); |
Takashi Iwai | 0585244 | 2015-03-03 15:40:08 +0100 | [diff] [blame] | 203 | return snd_hdac_exec_verb(&codec->core, cmd, flags, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 205 | EXPORT_SYMBOL_GPL(snd_hda_codec_write); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | |
| 207 | /** |
| 208 | * snd_hda_sequence_write - sequence writes |
| 209 | * @codec: the HDA codec |
| 210 | * @seq: VERB array to send |
| 211 | * |
| 212 | * Send the commands sequentially from the given array. |
| 213 | * The array must be terminated with NID=0. |
| 214 | */ |
| 215 | void snd_hda_sequence_write(struct hda_codec *codec, const struct hda_verb *seq) |
| 216 | { |
| 217 | for (; seq->nid; seq++) |
| 218 | snd_hda_codec_write(codec, seq->nid, 0, seq->verb, seq->param); |
| 219 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 220 | EXPORT_SYMBOL_GPL(snd_hda_sequence_write); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 222 | /* connection list element */ |
| 223 | struct hda_conn_list { |
| 224 | struct list_head list; |
| 225 | int len; |
| 226 | hda_nid_t nid; |
| 227 | hda_nid_t conns[0]; |
| 228 | }; |
| 229 | |
Takashi Iwai | b2f934a | 2011-07-04 16:23:26 +0200 | [diff] [blame] | 230 | /* look up the cached results */ |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 231 | static struct hda_conn_list * |
| 232 | lookup_conn_list(struct hda_codec *codec, hda_nid_t nid) |
Takashi Iwai | b2f934a | 2011-07-04 16:23:26 +0200 | [diff] [blame] | 233 | { |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 234 | struct hda_conn_list *p; |
| 235 | list_for_each_entry(p, &codec->conn_list, list) { |
| 236 | if (p->nid == nid) |
Takashi Iwai | b2f934a | 2011-07-04 16:23:26 +0200 | [diff] [blame] | 237 | return p; |
Takashi Iwai | b2f934a | 2011-07-04 16:23:26 +0200 | [diff] [blame] | 238 | } |
| 239 | return NULL; |
| 240 | } |
Takashi Iwai | a12d3e1 | 2011-04-07 15:55:15 +0200 | [diff] [blame] | 241 | |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 242 | static int add_conn_list(struct hda_codec *codec, hda_nid_t nid, int len, |
| 243 | const hda_nid_t *list) |
| 244 | { |
| 245 | struct hda_conn_list *p; |
| 246 | |
| 247 | p = kmalloc(sizeof(*p) + len * sizeof(hda_nid_t), GFP_KERNEL); |
| 248 | if (!p) |
| 249 | return -ENOMEM; |
| 250 | p->len = len; |
| 251 | p->nid = nid; |
| 252 | memcpy(p->conns, list, len * sizeof(hda_nid_t)); |
| 253 | list_add(&p->list, &codec->conn_list); |
| 254 | return 0; |
| 255 | } |
| 256 | |
| 257 | static void remove_conn_list(struct hda_codec *codec) |
| 258 | { |
| 259 | while (!list_empty(&codec->conn_list)) { |
| 260 | struct hda_conn_list *p; |
| 261 | p = list_first_entry(&codec->conn_list, typeof(*p), list); |
| 262 | list_del(&p->list); |
| 263 | kfree(p); |
| 264 | } |
| 265 | } |
| 266 | |
Takashi Iwai | 09cf03b | 2012-05-19 17:21:25 +0200 | [diff] [blame] | 267 | /* read the connection and add to the cache */ |
| 268 | static int read_and_add_raw_conns(struct hda_codec *codec, hda_nid_t nid) |
Takashi Iwai | a12d3e1 | 2011-04-07 15:55:15 +0200 | [diff] [blame] | 269 | { |
Takashi Iwai | 4eea309 | 2013-02-07 18:18:19 +0100 | [diff] [blame] | 270 | hda_nid_t list[32]; |
| 271 | hda_nid_t *result = list; |
Takashi Iwai | 09cf03b | 2012-05-19 17:21:25 +0200 | [diff] [blame] | 272 | int len; |
Takashi Iwai | a12d3e1 | 2011-04-07 15:55:15 +0200 | [diff] [blame] | 273 | |
Takashi Iwai | 09cf03b | 2012-05-19 17:21:25 +0200 | [diff] [blame] | 274 | len = snd_hda_get_raw_connections(codec, nid, list, ARRAY_SIZE(list)); |
Takashi Iwai | 4eea309 | 2013-02-07 18:18:19 +0100 | [diff] [blame] | 275 | if (len == -ENOSPC) { |
| 276 | len = snd_hda_get_num_raw_conns(codec, nid); |
| 277 | result = kmalloc(sizeof(hda_nid_t) * len, GFP_KERNEL); |
| 278 | if (!result) |
| 279 | return -ENOMEM; |
| 280 | len = snd_hda_get_raw_connections(codec, nid, result, len); |
| 281 | } |
| 282 | if (len >= 0) |
| 283 | len = snd_hda_override_conn_list(codec, nid, len, result); |
| 284 | if (result != list) |
| 285 | kfree(result); |
| 286 | return len; |
Takashi Iwai | a12d3e1 | 2011-04-07 15:55:15 +0200 | [diff] [blame] | 287 | } |
Takashi Iwai | dce2079 | 2011-06-24 14:10:28 +0200 | [diff] [blame] | 288 | |
| 289 | /** |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 290 | * snd_hda_get_conn_list - get connection list |
| 291 | * @codec: the HDA codec |
| 292 | * @nid: NID to parse |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 293 | * @listp: the pointer to store NID list |
| 294 | * |
| 295 | * Parses the connection list of the given widget and stores the pointer |
| 296 | * to the list of NIDs. |
| 297 | * |
| 298 | * Returns the number of connections, or a negative error code. |
| 299 | * |
| 300 | * Note that the returned pointer isn't protected against the list |
| 301 | * modification. If snd_hda_override_conn_list() might be called |
| 302 | * concurrently, protect with a mutex appropriately. |
| 303 | */ |
| 304 | int snd_hda_get_conn_list(struct hda_codec *codec, hda_nid_t nid, |
| 305 | const hda_nid_t **listp) |
| 306 | { |
| 307 | bool added = false; |
| 308 | |
| 309 | for (;;) { |
| 310 | int err; |
| 311 | const struct hda_conn_list *p; |
| 312 | |
| 313 | /* if the connection-list is already cached, read it */ |
| 314 | p = lookup_conn_list(codec, nid); |
| 315 | if (p) { |
| 316 | if (listp) |
| 317 | *listp = p->conns; |
| 318 | return p->len; |
| 319 | } |
| 320 | if (snd_BUG_ON(added)) |
| 321 | return -EINVAL; |
| 322 | |
| 323 | err = read_and_add_raw_conns(codec, nid); |
| 324 | if (err < 0) |
| 325 | return err; |
| 326 | added = true; |
| 327 | } |
| 328 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 329 | EXPORT_SYMBOL_GPL(snd_hda_get_conn_list); |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 330 | |
| 331 | /** |
Takashi Iwai | dce2079 | 2011-06-24 14:10:28 +0200 | [diff] [blame] | 332 | * snd_hda_get_connections - copy connection list |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | * @codec: the HDA codec |
| 334 | * @nid: NID to parse |
Takashi Iwai | 09cf03b | 2012-05-19 17:21:25 +0200 | [diff] [blame] | 335 | * @conn_list: connection list array; when NULL, checks only the size |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | * @max_conns: max. number of connections to store |
| 337 | * |
| 338 | * Parses the connection list of the given widget and stores the list |
| 339 | * of NIDs. |
| 340 | * |
| 341 | * Returns the number of connections, or a negative error code. |
| 342 | */ |
| 343 | int snd_hda_get_connections(struct hda_codec *codec, hda_nid_t nid, |
Takashi Iwai | 09cf03b | 2012-05-19 17:21:25 +0200 | [diff] [blame] | 344 | hda_nid_t *conn_list, int max_conns) |
Takashi Iwai | a12d3e1 | 2011-04-07 15:55:15 +0200 | [diff] [blame] | 345 | { |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 346 | const hda_nid_t *list; |
| 347 | int len = snd_hda_get_conn_list(codec, nid, &list); |
Takashi Iwai | a12d3e1 | 2011-04-07 15:55:15 +0200 | [diff] [blame] | 348 | |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 349 | if (len > 0 && conn_list) { |
| 350 | if (len > max_conns) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 351 | codec_err(codec, "Too many connections %d for NID 0x%x\n", |
Takashi Iwai | 09cf03b | 2012-05-19 17:21:25 +0200 | [diff] [blame] | 352 | len, nid); |
Takashi Iwai | 09cf03b | 2012-05-19 17:21:25 +0200 | [diff] [blame] | 353 | return -EINVAL; |
| 354 | } |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 355 | memcpy(conn_list, list, len * sizeof(hda_nid_t)); |
Takashi Iwai | dce2079 | 2011-06-24 14:10:28 +0200 | [diff] [blame] | 356 | } |
Takashi Iwai | 09cf03b | 2012-05-19 17:21:25 +0200 | [diff] [blame] | 357 | |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 358 | return len; |
Takashi Iwai | a12d3e1 | 2011-04-07 15:55:15 +0200 | [diff] [blame] | 359 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 360 | EXPORT_SYMBOL_GPL(snd_hda_get_connections); |
Takashi Iwai | a12d3e1 | 2011-04-07 15:55:15 +0200 | [diff] [blame] | 361 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | /** |
Takashi Iwai | b2f934a | 2011-07-04 16:23:26 +0200 | [diff] [blame] | 363 | * snd_hda_override_conn_list - add/modify the connection-list to cache |
| 364 | * @codec: the HDA codec |
| 365 | * @nid: NID to parse |
| 366 | * @len: number of connection list entries |
| 367 | * @list: the list of connection entries |
| 368 | * |
| 369 | * Add or modify the given connection-list to the cache. If the corresponding |
| 370 | * cache already exists, invalidate it and append a new one. |
| 371 | * |
| 372 | * Returns zero or a negative error code. |
| 373 | */ |
| 374 | int snd_hda_override_conn_list(struct hda_codec *codec, hda_nid_t nid, int len, |
| 375 | const hda_nid_t *list) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | { |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 377 | struct hda_conn_list *p; |
Takashi Iwai | b2f934a | 2011-07-04 16:23:26 +0200 | [diff] [blame] | 378 | |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 379 | p = lookup_conn_list(codec, nid); |
| 380 | if (p) { |
| 381 | list_del(&p->list); |
| 382 | kfree(p); |
| 383 | } |
Takashi Iwai | b2f934a | 2011-07-04 16:23:26 +0200 | [diff] [blame] | 384 | |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 385 | return add_conn_list(codec, nid, len, list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 387 | EXPORT_SYMBOL_GPL(snd_hda_override_conn_list); |
Takashi Iwai | b2f934a | 2011-07-04 16:23:26 +0200 | [diff] [blame] | 388 | |
| 389 | /** |
Takashi Iwai | 8d087c7 | 2011-06-28 12:45:47 +0200 | [diff] [blame] | 390 | * snd_hda_get_conn_index - get the connection index of the given NID |
| 391 | * @codec: the HDA codec |
| 392 | * @mux: NID containing the list |
| 393 | * @nid: NID to select |
| 394 | * @recursive: 1 when searching NID recursively, otherwise 0 |
| 395 | * |
| 396 | * Parses the connection list of the widget @mux and checks whether the |
| 397 | * widget @nid is present. If it is, return the connection index. |
| 398 | * Otherwise it returns -1. |
| 399 | */ |
| 400 | int snd_hda_get_conn_index(struct hda_codec *codec, hda_nid_t mux, |
| 401 | hda_nid_t nid, int recursive) |
| 402 | { |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 403 | const hda_nid_t *conn; |
Takashi Iwai | 8d087c7 | 2011-06-28 12:45:47 +0200 | [diff] [blame] | 404 | int i, nums; |
| 405 | |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 406 | nums = snd_hda_get_conn_list(codec, mux, &conn); |
Takashi Iwai | 8d087c7 | 2011-06-28 12:45:47 +0200 | [diff] [blame] | 407 | for (i = 0; i < nums; i++) |
| 408 | if (conn[i] == nid) |
| 409 | return i; |
| 410 | if (!recursive) |
| 411 | return -1; |
Takashi Iwai | d94ddd8 | 2012-12-20 14:42:42 +0100 | [diff] [blame] | 412 | if (recursive > 10) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 413 | codec_dbg(codec, "too deep connection for 0x%x\n", nid); |
Takashi Iwai | 8d087c7 | 2011-06-28 12:45:47 +0200 | [diff] [blame] | 414 | return -1; |
| 415 | } |
| 416 | recursive++; |
Takashi Iwai | 99e14c9 | 2011-09-13 10:33:16 +0200 | [diff] [blame] | 417 | for (i = 0; i < nums; i++) { |
| 418 | unsigned int type = get_wcaps_type(get_wcaps(codec, conn[i])); |
| 419 | if (type == AC_WID_PIN || type == AC_WID_AUD_OUT) |
| 420 | continue; |
Takashi Iwai | 8d087c7 | 2011-06-28 12:45:47 +0200 | [diff] [blame] | 421 | if (snd_hda_get_conn_index(codec, conn[i], nid, recursive) >= 0) |
| 422 | return i; |
Takashi Iwai | 99e14c9 | 2011-09-13 10:33:16 +0200 | [diff] [blame] | 423 | } |
Takashi Iwai | 8d087c7 | 2011-06-28 12:45:47 +0200 | [diff] [blame] | 424 | return -1; |
| 425 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 426 | EXPORT_SYMBOL_GPL(snd_hda_get_conn_index); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | |
Mengdong Lin | f1aa068 | 2013-08-26 21:35:21 -0400 | [diff] [blame] | 428 | |
| 429 | /* return DEVLIST_LEN parameter of the given widget */ |
| 430 | static unsigned int get_num_devices(struct hda_codec *codec, hda_nid_t nid) |
| 431 | { |
| 432 | unsigned int wcaps = get_wcaps(codec, nid); |
| 433 | unsigned int parm; |
| 434 | |
| 435 | if (!codec->dp_mst || !(wcaps & AC_WCAP_DIGITAL) || |
| 436 | get_wcaps_type(wcaps) != AC_WID_PIN) |
| 437 | return 0; |
| 438 | |
Takashi Iwai | cad372f | 2015-03-25 17:57:00 +0100 | [diff] [blame] | 439 | if (_snd_hdac_read_parm(&codec->core, nid, AC_PAR_DEVLIST_LEN, &parm)) |
| 440 | return 0; /* error */ |
Mengdong Lin | f1aa068 | 2013-08-26 21:35:21 -0400 | [diff] [blame] | 441 | return parm & AC_DEV_LIST_LEN_MASK; |
| 442 | } |
| 443 | |
| 444 | /** |
| 445 | * snd_hda_get_devices - copy device list without cache |
| 446 | * @codec: the HDA codec |
| 447 | * @nid: NID of the pin to parse |
| 448 | * @dev_list: device list array |
| 449 | * @max_devices: max. number of devices to store |
| 450 | * |
| 451 | * Copy the device list. This info is dynamic and so not cached. |
| 452 | * Currently called only from hda_proc.c, so not exported. |
| 453 | */ |
| 454 | int snd_hda_get_devices(struct hda_codec *codec, hda_nid_t nid, |
| 455 | u8 *dev_list, int max_devices) |
| 456 | { |
| 457 | unsigned int parm; |
| 458 | int i, dev_len, devices; |
| 459 | |
| 460 | parm = get_num_devices(codec, nid); |
| 461 | if (!parm) /* not multi-stream capable */ |
| 462 | return 0; |
| 463 | |
| 464 | dev_len = parm + 1; |
| 465 | dev_len = dev_len < max_devices ? dev_len : max_devices; |
| 466 | |
| 467 | devices = 0; |
| 468 | while (devices < dev_len) { |
Takashi Iwai | cad372f | 2015-03-25 17:57:00 +0100 | [diff] [blame] | 469 | if (snd_hdac_read(&codec->core, nid, |
| 470 | AC_VERB_GET_DEVICE_LIST, devices, &parm)) |
| 471 | break; /* error */ |
Mengdong Lin | f1aa068 | 2013-08-26 21:35:21 -0400 | [diff] [blame] | 472 | |
| 473 | for (i = 0; i < 8; i++) { |
| 474 | dev_list[devices] = (u8)parm; |
| 475 | parm >>= 4; |
| 476 | devices++; |
| 477 | if (devices >= dev_len) |
| 478 | break; |
| 479 | } |
| 480 | } |
| 481 | return devices; |
| 482 | } |
| 483 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | /* |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 485 | * read widget caps for each widget and store in cache |
| 486 | */ |
| 487 | static int read_widget_caps(struct hda_codec *codec, hda_nid_t fg_node) |
| 488 | { |
| 489 | int i; |
| 490 | hda_nid_t nid; |
| 491 | |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 492 | codec->wcaps = kmalloc(codec->core.num_nodes * 4, GFP_KERNEL); |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 493 | if (!codec->wcaps) |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 494 | return -ENOMEM; |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 495 | nid = codec->core.start_nid; |
| 496 | for (i = 0; i < codec->core.num_nodes; i++, nid++) |
Takashi Iwai | 9ba17b4 | 2015-03-03 23:29:47 +0100 | [diff] [blame] | 497 | codec->wcaps[i] = snd_hdac_read_parm_uncached(&codec->core, |
| 498 | nid, AC_PAR_AUDIO_WIDGET_CAP); |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 499 | return 0; |
| 500 | } |
| 501 | |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 502 | /* read all pin default configurations and save codec->init_pins */ |
| 503 | static int read_pin_defaults(struct hda_codec *codec) |
| 504 | { |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 505 | hda_nid_t nid; |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 506 | |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 507 | for_each_hda_codec_node(nid, codec) { |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 508 | struct hda_pincfg *pin; |
| 509 | unsigned int wcaps = get_wcaps(codec, nid); |
Takashi Iwai | a22d543 | 2009-07-27 12:54:26 +0200 | [diff] [blame] | 510 | unsigned int wid_type = get_wcaps_type(wcaps); |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 511 | if (wid_type != AC_WID_PIN) |
| 512 | continue; |
| 513 | pin = snd_array_new(&codec->init_pins); |
| 514 | if (!pin) |
| 515 | return -ENOMEM; |
| 516 | pin->nid = nid; |
| 517 | pin->cfg = snd_hda_codec_read(codec, nid, 0, |
| 518 | AC_VERB_GET_CONFIG_DEFAULT, 0); |
Takashi Iwai | ac0547d | 2010-07-05 16:50:13 +0200 | [diff] [blame] | 519 | pin->ctrl = snd_hda_codec_read(codec, nid, 0, |
| 520 | AC_VERB_GET_PIN_WIDGET_CONTROL, |
| 521 | 0); |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 522 | } |
| 523 | return 0; |
| 524 | } |
| 525 | |
| 526 | /* look up the given pin config list and return the item matching with NID */ |
| 527 | static struct hda_pincfg *look_up_pincfg(struct hda_codec *codec, |
| 528 | struct snd_array *array, |
| 529 | hda_nid_t nid) |
| 530 | { |
| 531 | int i; |
| 532 | for (i = 0; i < array->used; i++) { |
| 533 | struct hda_pincfg *pin = snd_array_elem(array, i); |
| 534 | if (pin->nid == nid) |
| 535 | return pin; |
| 536 | } |
| 537 | return NULL; |
| 538 | } |
| 539 | |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 540 | /* set the current pin config value for the given NID. |
| 541 | * the value is cached, and read via snd_hda_codec_get_pincfg() |
| 542 | */ |
| 543 | int snd_hda_add_pincfg(struct hda_codec *codec, struct snd_array *list, |
| 544 | hda_nid_t nid, unsigned int cfg) |
| 545 | { |
| 546 | struct hda_pincfg *pin; |
| 547 | |
Takashi Iwai | d5657ec | 2013-04-18 09:59:28 +0200 | [diff] [blame] | 548 | /* the check below may be invalid when pins are added by a fixup |
| 549 | * dynamically (e.g. via snd_hda_codec_update_widgets()), so disabled |
| 550 | * for now |
| 551 | */ |
| 552 | /* |
Takashi Iwai | b82855a | 2009-12-27 11:24:56 +0100 | [diff] [blame] | 553 | if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN) |
| 554 | return -EINVAL; |
Takashi Iwai | d5657ec | 2013-04-18 09:59:28 +0200 | [diff] [blame] | 555 | */ |
Takashi Iwai | b82855a | 2009-12-27 11:24:56 +0100 | [diff] [blame] | 556 | |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 557 | pin = look_up_pincfg(codec, list, nid); |
| 558 | if (!pin) { |
| 559 | pin = snd_array_new(list); |
| 560 | if (!pin) |
| 561 | return -ENOMEM; |
| 562 | pin->nid = nid; |
| 563 | } |
| 564 | pin->cfg = cfg; |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 565 | return 0; |
| 566 | } |
| 567 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 568 | /** |
| 569 | * snd_hda_codec_set_pincfg - Override a pin default configuration |
| 570 | * @codec: the HDA codec |
| 571 | * @nid: NID to set the pin config |
| 572 | * @cfg: the pin default config value |
| 573 | * |
| 574 | * Override a pin default configuration value in the cache. |
| 575 | * This value can be read by snd_hda_codec_get_pincfg() in a higher |
| 576 | * priority than the real hardware value. |
| 577 | */ |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 578 | int snd_hda_codec_set_pincfg(struct hda_codec *codec, |
| 579 | hda_nid_t nid, unsigned int cfg) |
| 580 | { |
Takashi Iwai | 346ff70 | 2009-02-23 09:42:57 +0100 | [diff] [blame] | 581 | return snd_hda_add_pincfg(codec, &codec->driver_pins, nid, cfg); |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 582 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 583 | EXPORT_SYMBOL_GPL(snd_hda_codec_set_pincfg); |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 584 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 585 | /** |
| 586 | * snd_hda_codec_get_pincfg - Obtain a pin-default configuration |
| 587 | * @codec: the HDA codec |
| 588 | * @nid: NID to get the pin config |
| 589 | * |
| 590 | * Get the current pin config value of the given pin NID. |
| 591 | * If the pincfg value is cached or overridden via sysfs or driver, |
| 592 | * returns the cached value. |
| 593 | */ |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 594 | unsigned int snd_hda_codec_get_pincfg(struct hda_codec *codec, hda_nid_t nid) |
| 595 | { |
| 596 | struct hda_pincfg *pin; |
| 597 | |
Takashi Iwai | 648a8d2 | 2014-02-25 10:38:13 +0100 | [diff] [blame] | 598 | #ifdef CONFIG_SND_HDA_RECONFIG |
Takashi Iwai | 09b70e8 | 2013-01-10 18:21:56 +0100 | [diff] [blame] | 599 | { |
| 600 | unsigned int cfg = 0; |
| 601 | mutex_lock(&codec->user_mutex); |
| 602 | pin = look_up_pincfg(codec, &codec->user_pins, nid); |
| 603 | if (pin) |
| 604 | cfg = pin->cfg; |
| 605 | mutex_unlock(&codec->user_mutex); |
| 606 | if (cfg) |
| 607 | return cfg; |
| 608 | } |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 609 | #endif |
Takashi Iwai | 5e7b8e0 | 2009-02-23 09:45:59 +0100 | [diff] [blame] | 610 | pin = look_up_pincfg(codec, &codec->driver_pins, nid); |
| 611 | if (pin) |
| 612 | return pin->cfg; |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 613 | pin = look_up_pincfg(codec, &codec->init_pins, nid); |
| 614 | if (pin) |
| 615 | return pin->cfg; |
| 616 | return 0; |
| 617 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 618 | EXPORT_SYMBOL_GPL(snd_hda_codec_get_pincfg); |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 619 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 620 | /** |
| 621 | * snd_hda_codec_set_pin_target - remember the current pinctl target value |
| 622 | * @codec: the HDA codec |
| 623 | * @nid: pin NID |
| 624 | * @val: assigned pinctl value |
| 625 | * |
| 626 | * This function stores the given value to a pinctl target value in the |
| 627 | * pincfg table. This isn't always as same as the actually written value |
| 628 | * but can be referred at any time via snd_hda_codec_get_pin_target(). |
| 629 | */ |
Takashi Iwai | d7fdc00 | 2013-01-10 08:38:04 +0100 | [diff] [blame] | 630 | int snd_hda_codec_set_pin_target(struct hda_codec *codec, hda_nid_t nid, |
| 631 | unsigned int val) |
| 632 | { |
| 633 | struct hda_pincfg *pin; |
| 634 | |
| 635 | pin = look_up_pincfg(codec, &codec->init_pins, nid); |
| 636 | if (!pin) |
| 637 | return -EINVAL; |
| 638 | pin->target = val; |
| 639 | return 0; |
| 640 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 641 | EXPORT_SYMBOL_GPL(snd_hda_codec_set_pin_target); |
Takashi Iwai | d7fdc00 | 2013-01-10 08:38:04 +0100 | [diff] [blame] | 642 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 643 | /** |
| 644 | * snd_hda_codec_get_pin_target - return the current pinctl target value |
| 645 | * @codec: the HDA codec |
| 646 | * @nid: pin NID |
| 647 | */ |
Takashi Iwai | d7fdc00 | 2013-01-10 08:38:04 +0100 | [diff] [blame] | 648 | int snd_hda_codec_get_pin_target(struct hda_codec *codec, hda_nid_t nid) |
| 649 | { |
| 650 | struct hda_pincfg *pin; |
| 651 | |
| 652 | pin = look_up_pincfg(codec, &codec->init_pins, nid); |
| 653 | if (!pin) |
| 654 | return 0; |
| 655 | return pin->target; |
| 656 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 657 | EXPORT_SYMBOL_GPL(snd_hda_codec_get_pin_target); |
Takashi Iwai | d7fdc00 | 2013-01-10 08:38:04 +0100 | [diff] [blame] | 658 | |
Takashi Iwai | 92ee616 | 2009-12-27 11:18:59 +0100 | [diff] [blame] | 659 | /** |
| 660 | * snd_hda_shutup_pins - Shut up all pins |
| 661 | * @codec: the HDA codec |
| 662 | * |
| 663 | * Clear all pin controls to shup up before suspend for avoiding click noise. |
| 664 | * The controls aren't cached so that they can be resumed properly. |
| 665 | */ |
| 666 | void snd_hda_shutup_pins(struct hda_codec *codec) |
| 667 | { |
| 668 | int i; |
Takashi Iwai | ac0547d | 2010-07-05 16:50:13 +0200 | [diff] [blame] | 669 | /* don't shut up pins when unloading the driver; otherwise it breaks |
| 670 | * the default pin setup at the next load of the driver |
| 671 | */ |
| 672 | if (codec->bus->shutdown) |
| 673 | return; |
Takashi Iwai | 92ee616 | 2009-12-27 11:18:59 +0100 | [diff] [blame] | 674 | for (i = 0; i < codec->init_pins.used; i++) { |
| 675 | struct hda_pincfg *pin = snd_array_elem(&codec->init_pins, i); |
| 676 | /* use read here for syncing after issuing each verb */ |
| 677 | snd_hda_codec_read(codec, pin->nid, 0, |
| 678 | AC_VERB_SET_PIN_WIDGET_CONTROL, 0); |
| 679 | } |
Takashi Iwai | ac0547d | 2010-07-05 16:50:13 +0200 | [diff] [blame] | 680 | codec->pins_shutup = 1; |
Takashi Iwai | 92ee616 | 2009-12-27 11:18:59 +0100 | [diff] [blame] | 681 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 682 | EXPORT_SYMBOL_GPL(snd_hda_shutup_pins); |
Takashi Iwai | 92ee616 | 2009-12-27 11:18:59 +0100 | [diff] [blame] | 683 | |
Takashi Iwai | 2a43952 | 2011-07-26 09:52:50 +0200 | [diff] [blame] | 684 | #ifdef CONFIG_PM |
Takashi Iwai | ac0547d | 2010-07-05 16:50:13 +0200 | [diff] [blame] | 685 | /* Restore the pin controls cleared previously via snd_hda_shutup_pins() */ |
| 686 | static void restore_shutup_pins(struct hda_codec *codec) |
| 687 | { |
| 688 | int i; |
| 689 | if (!codec->pins_shutup) |
| 690 | return; |
| 691 | if (codec->bus->shutdown) |
| 692 | return; |
| 693 | for (i = 0; i < codec->init_pins.used; i++) { |
| 694 | struct hda_pincfg *pin = snd_array_elem(&codec->init_pins, i); |
| 695 | snd_hda_codec_write(codec, pin->nid, 0, |
| 696 | AC_VERB_SET_PIN_WIDGET_CONTROL, |
| 697 | pin->ctrl); |
| 698 | } |
| 699 | codec->pins_shutup = 0; |
| 700 | } |
Mike Waychison | 1c7276c | 2011-04-20 12:04:36 -0700 | [diff] [blame] | 701 | #endif |
Takashi Iwai | ac0547d | 2010-07-05 16:50:13 +0200 | [diff] [blame] | 702 | |
David Henningsson | 26a6cb6 | 2012-10-09 15:04:21 +0200 | [diff] [blame] | 703 | static void hda_jackpoll_work(struct work_struct *work) |
| 704 | { |
| 705 | struct hda_codec *codec = |
| 706 | container_of(work, struct hda_codec, jackpoll_work.work); |
David Henningsson | 26a6cb6 | 2012-10-09 15:04:21 +0200 | [diff] [blame] | 707 | |
| 708 | snd_hda_jack_set_dirty_all(codec); |
| 709 | snd_hda_jack_poll_all(codec); |
Wang Xingchao | 18e6062 | 2013-07-25 23:34:45 -0400 | [diff] [blame] | 710 | |
| 711 | if (!codec->jackpoll_interval) |
| 712 | return; |
| 713 | |
Takashi Iwai | 2f35c63 | 2015-02-27 22:43:26 +0100 | [diff] [blame] | 714 | schedule_delayed_work(&codec->jackpoll_work, |
| 715 | codec->jackpoll_interval); |
David Henningsson | 26a6cb6 | 2012-10-09 15:04:21 +0200 | [diff] [blame] | 716 | } |
| 717 | |
Takashi Iwai | 3fdf146 | 2012-11-22 08:16:31 +0100 | [diff] [blame] | 718 | /* release all pincfg lists */ |
| 719 | static void free_init_pincfgs(struct hda_codec *codec) |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 720 | { |
Takashi Iwai | 346ff70 | 2009-02-23 09:42:57 +0100 | [diff] [blame] | 721 | snd_array_free(&codec->driver_pins); |
Takashi Iwai | 648a8d2 | 2014-02-25 10:38:13 +0100 | [diff] [blame] | 722 | #ifdef CONFIG_SND_HDA_RECONFIG |
Takashi Iwai | 346ff70 | 2009-02-23 09:42:57 +0100 | [diff] [blame] | 723 | snd_array_free(&codec->user_pins); |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 724 | #endif |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 725 | snd_array_free(&codec->init_pins); |
| 726 | } |
| 727 | |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 728 | /* |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 729 | * audio-converter setup caches |
| 730 | */ |
| 731 | struct hda_cvt_setup { |
| 732 | hda_nid_t nid; |
| 733 | u8 stream_tag; |
| 734 | u8 channel_id; |
| 735 | u16 format_id; |
| 736 | unsigned char active; /* cvt is currently used */ |
| 737 | unsigned char dirty; /* setups should be cleared */ |
| 738 | }; |
| 739 | |
| 740 | /* get or create a cache entry for the given audio converter NID */ |
| 741 | static struct hda_cvt_setup * |
| 742 | get_hda_cvt_setup(struct hda_codec *codec, hda_nid_t nid) |
| 743 | { |
| 744 | struct hda_cvt_setup *p; |
| 745 | int i; |
| 746 | |
| 747 | for (i = 0; i < codec->cvt_setups.used; i++) { |
| 748 | p = snd_array_elem(&codec->cvt_setups, i); |
| 749 | if (p->nid == nid) |
| 750 | return p; |
| 751 | } |
| 752 | p = snd_array_new(&codec->cvt_setups); |
| 753 | if (p) |
| 754 | p->nid = nid; |
| 755 | return p; |
| 756 | } |
| 757 | |
| 758 | /* |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame] | 759 | * PCM device |
| 760 | */ |
| 761 | static void release_pcm(struct kref *kref) |
| 762 | { |
| 763 | struct hda_pcm *pcm = container_of(kref, struct hda_pcm, kref); |
| 764 | |
| 765 | if (pcm->pcm) |
| 766 | snd_device_free(pcm->codec->card, pcm->pcm); |
| 767 | clear_bit(pcm->device, pcm->codec->bus->pcm_dev_bits); |
| 768 | kfree(pcm->name); |
| 769 | kfree(pcm); |
| 770 | } |
| 771 | |
| 772 | void snd_hda_codec_pcm_put(struct hda_pcm *pcm) |
| 773 | { |
| 774 | kref_put(&pcm->kref, release_pcm); |
| 775 | } |
| 776 | EXPORT_SYMBOL_GPL(snd_hda_codec_pcm_put); |
| 777 | |
| 778 | struct hda_pcm *snd_hda_codec_pcm_new(struct hda_codec *codec, |
| 779 | const char *fmt, ...) |
| 780 | { |
| 781 | struct hda_pcm *pcm; |
| 782 | va_list args; |
| 783 | |
| 784 | va_start(args, fmt); |
| 785 | pcm = kzalloc(sizeof(*pcm), GFP_KERNEL); |
| 786 | if (!pcm) |
| 787 | return NULL; |
| 788 | |
| 789 | pcm->codec = codec; |
| 790 | kref_init(&pcm->kref); |
| 791 | pcm->name = kvasprintf(GFP_KERNEL, fmt, args); |
| 792 | if (!pcm->name) { |
| 793 | kfree(pcm); |
| 794 | return NULL; |
| 795 | } |
| 796 | |
| 797 | list_add_tail(&pcm->list, &codec->pcm_list_head); |
| 798 | return pcm; |
| 799 | } |
| 800 | EXPORT_SYMBOL_GPL(snd_hda_codec_pcm_new); |
| 801 | |
Takashi Iwai | 9a6246f | 2015-02-27 18:17:28 +0100 | [diff] [blame] | 802 | /* |
| 803 | * codec destructor |
| 804 | */ |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame] | 805 | static void codec_release_pcms(struct hda_codec *codec) |
| 806 | { |
| 807 | struct hda_pcm *pcm, *n; |
| 808 | |
| 809 | list_for_each_entry_safe(pcm, n, &codec->pcm_list_head, list) { |
| 810 | list_del_init(&pcm->list); |
Takashi Iwai | 9a6246f | 2015-02-27 18:17:28 +0100 | [diff] [blame] | 811 | if (pcm->pcm) |
| 812 | snd_device_disconnect(codec->card, pcm->pcm); |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame] | 813 | snd_hda_codec_pcm_put(pcm); |
| 814 | } |
| 815 | } |
| 816 | |
Takashi Iwai | 9a6246f | 2015-02-27 18:17:28 +0100 | [diff] [blame] | 817 | void snd_hda_codec_cleanup_for_unbind(struct hda_codec *codec) |
| 818 | { |
Takashi Iwai | c4c2533 | 2015-03-03 17:22:12 +0100 | [diff] [blame] | 819 | if (codec->registered) { |
| 820 | /* pm_runtime_put() is called in snd_hdac_device_exit() */ |
| 821 | pm_runtime_get_noresume(hda_codec_dev(codec)); |
| 822 | pm_runtime_disable(hda_codec_dev(codec)); |
| 823 | codec->registered = 0; |
| 824 | } |
| 825 | |
Takashi Iwai | 9a6246f | 2015-02-27 18:17:28 +0100 | [diff] [blame] | 826 | cancel_delayed_work_sync(&codec->jackpoll_work); |
Takashi Iwai | 9a6246f | 2015-02-27 18:17:28 +0100 | [diff] [blame] | 827 | if (!codec->in_freeing) |
| 828 | snd_hda_ctls_clear(codec); |
| 829 | codec_release_pcms(codec); |
| 830 | snd_hda_detach_beep_device(codec); |
| 831 | memset(&codec->patch_ops, 0, sizeof(codec->patch_ops)); |
| 832 | snd_hda_jack_tbl_clear(codec); |
| 833 | codec->proc_widget_hook = NULL; |
| 834 | codec->spec = NULL; |
| 835 | |
Takashi Iwai | 9a6246f | 2015-02-27 18:17:28 +0100 | [diff] [blame] | 836 | /* free only driver_pins so that init_pins + user_pins are restored */ |
| 837 | snd_array_free(&codec->driver_pins); |
| 838 | snd_array_free(&codec->cvt_setups); |
| 839 | snd_array_free(&codec->spdif_out); |
| 840 | snd_array_free(&codec->verbs); |
| 841 | codec->preset = NULL; |
| 842 | codec->slave_dig_outs = NULL; |
| 843 | codec->spdif_status_reset = 0; |
| 844 | snd_array_free(&codec->mixers); |
| 845 | snd_array_free(&codec->nids); |
| 846 | remove_conn_list(codec); |
Takashi Iwai | 4d75faa0 | 2015-02-25 14:42:38 +0100 | [diff] [blame] | 847 | snd_hdac_regmap_exit(&codec->core); |
Takashi Iwai | 9a6246f | 2015-02-27 18:17:28 +0100 | [diff] [blame] | 848 | } |
| 849 | |
Takashi Iwai | d819387 | 2012-08-31 07:54:38 -0700 | [diff] [blame] | 850 | static unsigned int hda_set_power_state(struct hda_codec *codec, |
Takashi Iwai | bb6ac72 | 2009-03-13 09:02:42 +0100 | [diff] [blame] | 851 | unsigned int power_state); |
| 852 | |
Takashi Iwai | c4c2533 | 2015-03-03 17:22:12 +0100 | [diff] [blame] | 853 | /* also called from hda_bind.c */ |
| 854 | void snd_hda_codec_register(struct hda_codec *codec) |
| 855 | { |
| 856 | if (codec->registered) |
| 857 | return; |
| 858 | if (device_is_registered(hda_codec_dev(codec))) { |
| 859 | snd_hda_register_beep_device(codec); |
| 860 | pm_runtime_enable(hda_codec_dev(codec)); |
| 861 | /* it was powered up in snd_hda_codec_new(), now all done */ |
| 862 | snd_hda_power_down(codec); |
| 863 | codec->registered = 1; |
| 864 | } |
| 865 | } |
| 866 | |
Takashi Iwai | 13aeaf6 | 2014-02-25 07:53:47 +0100 | [diff] [blame] | 867 | static int snd_hda_codec_dev_register(struct snd_device *device) |
| 868 | { |
Takashi Iwai | c4c2533 | 2015-03-03 17:22:12 +0100 | [diff] [blame] | 869 | snd_hda_codec_register(device->device_data); |
Takashi Iwai | d604b39 | 2014-02-28 13:42:09 +0100 | [diff] [blame] | 870 | return 0; |
Takashi Iwai | 13aeaf6 | 2014-02-25 07:53:47 +0100 | [diff] [blame] | 871 | } |
| 872 | |
| 873 | static int snd_hda_codec_dev_disconnect(struct snd_device *device) |
| 874 | { |
| 875 | struct hda_codec *codec = device->device_data; |
| 876 | |
Takashi Iwai | d604b39 | 2014-02-28 13:42:09 +0100 | [diff] [blame] | 877 | snd_hda_detach_beep_device(codec); |
Takashi Iwai | 13aeaf6 | 2014-02-25 07:53:47 +0100 | [diff] [blame] | 878 | return 0; |
| 879 | } |
| 880 | |
Takashi Iwai | 2565c89 | 2014-02-19 11:41:09 +0100 | [diff] [blame] | 881 | static int snd_hda_codec_dev_free(struct snd_device *device) |
| 882 | { |
Takashi Iwai | d56db74 | 2015-02-27 23:25:35 +0100 | [diff] [blame] | 883 | struct hda_codec *codec = device->device_data; |
| 884 | |
| 885 | codec->in_freeing = 1; |
Takashi Iwai | 3256be6 | 2015-02-24 14:59:42 +0100 | [diff] [blame] | 886 | snd_hdac_device_unregister(&codec->core); |
Takashi Iwai | d56db74 | 2015-02-27 23:25:35 +0100 | [diff] [blame] | 887 | put_device(hda_codec_dev(codec)); |
Takashi Iwai | 2565c89 | 2014-02-19 11:41:09 +0100 | [diff] [blame] | 888 | return 0; |
| 889 | } |
| 890 | |
Takashi Iwai | 13aeaf6 | 2014-02-25 07:53:47 +0100 | [diff] [blame] | 891 | static void snd_hda_codec_dev_release(struct device *dev) |
| 892 | { |
Takashi Iwai | d56db74 | 2015-02-27 23:25:35 +0100 | [diff] [blame] | 893 | struct hda_codec *codec = dev_to_hda_codec(dev); |
| 894 | |
| 895 | free_init_pincfgs(codec); |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 896 | snd_hdac_device_exit(&codec->core); |
Takashi Iwai | d56db74 | 2015-02-27 23:25:35 +0100 | [diff] [blame] | 897 | snd_hda_sysfs_clear(codec); |
Takashi Iwai | d56db74 | 2015-02-27 23:25:35 +0100 | [diff] [blame] | 898 | kfree(codec->modelname); |
| 899 | kfree(codec->wcaps); |
Takashi Iwai | d56db74 | 2015-02-27 23:25:35 +0100 | [diff] [blame] | 900 | kfree(codec); |
Takashi Iwai | 13aeaf6 | 2014-02-25 07:53:47 +0100 | [diff] [blame] | 901 | } |
| 902 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 903 | /** |
| 904 | * snd_hda_codec_new - create a HDA codec |
| 905 | * @bus: the bus to assign |
| 906 | * @codec_addr: the codec address |
| 907 | * @codecp: the pointer to store the generated codec |
| 908 | * |
| 909 | * Returns 0 if successful, or a negative error code. |
| 910 | */ |
Takashi Iwai | 6efdd85 | 2015-02-27 16:09:22 +0100 | [diff] [blame] | 911 | int snd_hda_codec_new(struct hda_bus *bus, struct snd_card *card, |
| 912 | unsigned int codec_addr, struct hda_codec **codecp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 913 | { |
| 914 | struct hda_codec *codec; |
Jaroslav Kysela | ba44368 | 2008-08-13 20:55:32 +0200 | [diff] [blame] | 915 | char component[31]; |
Takashi Iwai | d819387 | 2012-08-31 07:54:38 -0700 | [diff] [blame] | 916 | hda_nid_t fg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 917 | int err; |
Takashi Iwai | 2565c89 | 2014-02-19 11:41:09 +0100 | [diff] [blame] | 918 | static struct snd_device_ops dev_ops = { |
Takashi Iwai | 13aeaf6 | 2014-02-25 07:53:47 +0100 | [diff] [blame] | 919 | .dev_register = snd_hda_codec_dev_register, |
| 920 | .dev_disconnect = snd_hda_codec_dev_disconnect, |
Takashi Iwai | 2565c89 | 2014-02-19 11:41:09 +0100 | [diff] [blame] | 921 | .dev_free = snd_hda_codec_dev_free, |
| 922 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 923 | |
Takashi Iwai | da3cec3 | 2008-08-08 17:12:14 +0200 | [diff] [blame] | 924 | if (snd_BUG_ON(!bus)) |
| 925 | return -EINVAL; |
| 926 | if (snd_BUG_ON(codec_addr > HDA_MAX_CODEC_ADDRESS)) |
| 927 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 928 | |
Takashi Iwai | e560d8d | 2005-09-09 14:21:46 +0200 | [diff] [blame] | 929 | codec = kzalloc(sizeof(*codec), GFP_KERNEL); |
Takashi Iwai | f4de8fe | 2015-02-27 16:17:18 +0100 | [diff] [blame] | 930 | if (!codec) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 931 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 932 | |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 933 | sprintf(component, "hdaudioC%dD%d", card->number, codec_addr); |
| 934 | err = snd_hdac_device_init(&codec->core, &bus->core, component, |
| 935 | codec_addr); |
| 936 | if (err < 0) { |
| 937 | kfree(codec); |
| 938 | return err; |
| 939 | } |
Takashi Iwai | d068ebc | 2015-03-02 23:22:59 +0100 | [diff] [blame] | 940 | |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 941 | codec->core.dev.release = snd_hda_codec_dev_release; |
| 942 | codec->core.type = HDA_DEV_LEGACY; |
Takashi Iwai | 0585244 | 2015-03-03 15:40:08 +0100 | [diff] [blame] | 943 | codec->core.exec_verb = codec_exec_verb; |
Takashi Iwai | 13aeaf6 | 2014-02-25 07:53:47 +0100 | [diff] [blame] | 944 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 945 | codec->bus = bus; |
Takashi Iwai | 6efdd85 | 2015-02-27 16:09:22 +0100 | [diff] [blame] | 946 | codec->card = card; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 947 | codec->addr = codec_addr; |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 948 | mutex_init(&codec->spdif_mutex); |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 949 | mutex_init(&codec->control_mutex); |
Jaroslav Kysela | 5b0cb1d | 2009-12-08 16:13:32 +0100 | [diff] [blame] | 950 | snd_array_init(&codec->mixers, sizeof(struct hda_nid_item), 32); |
| 951 | snd_array_init(&codec->nids, sizeof(struct hda_nid_item), 32); |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 952 | snd_array_init(&codec->init_pins, sizeof(struct hda_pincfg), 16); |
Takashi Iwai | 346ff70 | 2009-02-23 09:42:57 +0100 | [diff] [blame] | 953 | snd_array_init(&codec->driver_pins, sizeof(struct hda_pincfg), 16); |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 954 | snd_array_init(&codec->cvt_setups, sizeof(struct hda_cvt_setup), 8); |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 955 | snd_array_init(&codec->spdif_out, sizeof(struct hda_spdif_out), 16); |
Takashi Iwai | 361dab3 | 2012-05-09 14:35:27 +0200 | [diff] [blame] | 956 | snd_array_init(&codec->jacktbl, sizeof(struct hda_jack_tbl), 16); |
Takashi Iwai | c9ce6b2 | 2012-12-18 18:12:44 +0100 | [diff] [blame] | 957 | snd_array_init(&codec->verbs, sizeof(struct hda_verb *), 8); |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 958 | INIT_LIST_HEAD(&codec->conn_list); |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame] | 959 | INIT_LIST_HEAD(&codec->pcm_list_head); |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 960 | |
David Henningsson | 26a6cb6 | 2012-10-09 15:04:21 +0200 | [diff] [blame] | 961 | INIT_DELAYED_WORK(&codec->jackpoll_work, hda_jackpoll_work); |
Mengdong Lin | 7f13292 | 2013-11-29 01:48:45 -0500 | [diff] [blame] | 962 | codec->depop_delay = -1; |
David Henningsson | f5662e1 | 2014-07-22 14:09:34 +0200 | [diff] [blame] | 963 | codec->fixup_id = HDA_FIXUP_ID_NOT_SET; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 964 | |
Takashi Iwai | 83012a7 | 2012-08-24 18:38:08 +0200 | [diff] [blame] | 965 | #ifdef CONFIG_PM |
Takashi Iwai | cc72da7 | 2015-02-19 16:00:22 +0100 | [diff] [blame] | 966 | codec->power_jiffies = jiffies; |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 967 | #endif |
| 968 | |
Takashi Iwai | 648a8d2 | 2014-02-25 10:38:13 +0100 | [diff] [blame] | 969 | snd_hda_sysfs_init(codec); |
| 970 | |
Takashi Iwai | c382a9f | 2012-05-07 15:01:02 +0200 | [diff] [blame] | 971 | if (codec->bus->modelname) { |
| 972 | codec->modelname = kstrdup(codec->bus->modelname, GFP_KERNEL); |
| 973 | if (!codec->modelname) { |
Takashi Iwai | 13aeaf6 | 2014-02-25 07:53:47 +0100 | [diff] [blame] | 974 | err = -ENODEV; |
| 975 | goto error; |
Takashi Iwai | c382a9f | 2012-05-07 15:01:02 +0200 | [diff] [blame] | 976 | } |
| 977 | } |
| 978 | |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 979 | fg = codec->core.afg ? codec->core.afg : codec->core.mfg; |
Takashi Iwai | d819387 | 2012-08-31 07:54:38 -0700 | [diff] [blame] | 980 | err = read_widget_caps(codec, fg); |
Takashi Iwai | f4de8fe | 2015-02-27 16:17:18 +0100 | [diff] [blame] | 981 | if (err < 0) |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 982 | goto error; |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 983 | err = read_pin_defaults(codec); |
| 984 | if (err < 0) |
| 985 | goto error; |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 986 | |
Takashi Iwai | bb6ac72 | 2009-03-13 09:02:42 +0100 | [diff] [blame] | 987 | /* power-up all before initialization */ |
Takashi Iwai | d819387 | 2012-08-31 07:54:38 -0700 | [diff] [blame] | 988 | hda_set_power_state(codec, AC_PWRST_D0); |
Takashi Iwai | bb6ac72 | 2009-03-13 09:02:42 +0100 | [diff] [blame] | 989 | |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 990 | snd_hda_codec_proc_new(codec); |
| 991 | |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 992 | snd_hda_create_hwdep(codec); |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 993 | |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 994 | sprintf(component, "HDA:%08x,%08x,%08x", codec->core.vendor_id, |
| 995 | codec->core.subsystem_id, codec->core.revision_id); |
Takashi Iwai | 6efdd85 | 2015-02-27 16:09:22 +0100 | [diff] [blame] | 996 | snd_component_add(card, component); |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 997 | |
Takashi Iwai | 6efdd85 | 2015-02-27 16:09:22 +0100 | [diff] [blame] | 998 | err = snd_device_new(card, SNDRV_DEV_CODEC, codec, &dev_ops); |
Takashi Iwai | 2565c89 | 2014-02-19 11:41:09 +0100 | [diff] [blame] | 999 | if (err < 0) |
| 1000 | goto error; |
| 1001 | |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1002 | if (codecp) |
| 1003 | *codecp = codec; |
| 1004 | return 0; |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 1005 | |
| 1006 | error: |
Takashi Iwai | d56db74 | 2015-02-27 23:25:35 +0100 | [diff] [blame] | 1007 | put_device(hda_codec_dev(codec)); |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 1008 | return err; |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1009 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1010 | EXPORT_SYMBOL_GPL(snd_hda_codec_new); |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1011 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 1012 | /** |
| 1013 | * snd_hda_codec_update_widgets - Refresh widget caps and pin defaults |
| 1014 | * @codec: the HDA codec |
| 1015 | * |
| 1016 | * Forcibly refresh the all widget caps and the init pin configurations of |
| 1017 | * the given codec. |
| 1018 | */ |
Mengdong Lin | a15d05d | 2013-02-08 17:09:31 -0500 | [diff] [blame] | 1019 | int snd_hda_codec_update_widgets(struct hda_codec *codec) |
| 1020 | { |
| 1021 | hda_nid_t fg; |
| 1022 | int err; |
| 1023 | |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 1024 | err = snd_hdac_refresh_widgets(&codec->core); |
| 1025 | if (err < 0) |
| 1026 | return err; |
| 1027 | |
Mengdong Lin | a15d05d | 2013-02-08 17:09:31 -0500 | [diff] [blame] | 1028 | /* Assume the function group node does not change, |
| 1029 | * only the widget nodes may change. |
| 1030 | */ |
| 1031 | kfree(codec->wcaps); |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 1032 | fg = codec->core.afg ? codec->core.afg : codec->core.mfg; |
Mengdong Lin | a15d05d | 2013-02-08 17:09:31 -0500 | [diff] [blame] | 1033 | err = read_widget_caps(codec, fg); |
Takashi Iwai | f4de8fe | 2015-02-27 16:17:18 +0100 | [diff] [blame] | 1034 | if (err < 0) |
Mengdong Lin | a15d05d | 2013-02-08 17:09:31 -0500 | [diff] [blame] | 1035 | return err; |
Mengdong Lin | a15d05d | 2013-02-08 17:09:31 -0500 | [diff] [blame] | 1036 | |
| 1037 | snd_array_free(&codec->init_pins); |
| 1038 | err = read_pin_defaults(codec); |
| 1039 | |
| 1040 | return err; |
| 1041 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1042 | EXPORT_SYMBOL_GPL(snd_hda_codec_update_widgets); |
Mengdong Lin | a15d05d | 2013-02-08 17:09:31 -0500 | [diff] [blame] | 1043 | |
Takashi Iwai | ed36081 | 2012-08-08 17:12:52 +0200 | [diff] [blame] | 1044 | /* update the stream-id if changed */ |
| 1045 | static void update_pcm_stream_id(struct hda_codec *codec, |
| 1046 | struct hda_cvt_setup *p, hda_nid_t nid, |
| 1047 | u32 stream_tag, int channel_id) |
| 1048 | { |
| 1049 | unsigned int oldval, newval; |
| 1050 | |
| 1051 | if (p->stream_tag != stream_tag || p->channel_id != channel_id) { |
| 1052 | oldval = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_CONV, 0); |
| 1053 | newval = (stream_tag << 4) | channel_id; |
| 1054 | if (oldval != newval) |
| 1055 | snd_hda_codec_write(codec, nid, 0, |
| 1056 | AC_VERB_SET_CHANNEL_STREAMID, |
| 1057 | newval); |
| 1058 | p->stream_tag = stream_tag; |
| 1059 | p->channel_id = channel_id; |
| 1060 | } |
| 1061 | } |
| 1062 | |
| 1063 | /* update the format-id if changed */ |
| 1064 | static void update_pcm_format(struct hda_codec *codec, struct hda_cvt_setup *p, |
| 1065 | hda_nid_t nid, int format) |
| 1066 | { |
| 1067 | unsigned int oldval; |
| 1068 | |
| 1069 | if (p->format_id != format) { |
| 1070 | oldval = snd_hda_codec_read(codec, nid, 0, |
| 1071 | AC_VERB_GET_STREAM_FORMAT, 0); |
| 1072 | if (oldval != format) { |
| 1073 | msleep(1); |
| 1074 | snd_hda_codec_write(codec, nid, 0, |
| 1075 | AC_VERB_SET_STREAM_FORMAT, |
| 1076 | format); |
| 1077 | } |
| 1078 | p->format_id = format; |
| 1079 | } |
| 1080 | } |
| 1081 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1082 | /** |
| 1083 | * snd_hda_codec_setup_stream - set up the codec for streaming |
| 1084 | * @codec: the CODEC to set up |
| 1085 | * @nid: the NID to set up |
| 1086 | * @stream_tag: stream tag to pass, it's between 0x1 and 0xf. |
| 1087 | * @channel_id: channel id to pass, zero based. |
| 1088 | * @format: stream format. |
| 1089 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1090 | void snd_hda_codec_setup_stream(struct hda_codec *codec, hda_nid_t nid, |
| 1091 | u32 stream_tag, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1092 | int channel_id, int format) |
| 1093 | { |
Takashi Iwai | 3f50ac6 | 2010-08-20 09:44:36 +0200 | [diff] [blame] | 1094 | struct hda_codec *c; |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1095 | struct hda_cvt_setup *p; |
Takashi Iwai | 62b7e5e | 2010-10-22 17:15:47 +0200 | [diff] [blame] | 1096 | int type; |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1097 | int i; |
| 1098 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1099 | if (!nid) |
Takashi Iwai | d21b37e | 2005-04-20 13:45:55 +0200 | [diff] [blame] | 1100 | return; |
| 1101 | |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 1102 | codec_dbg(codec, |
| 1103 | "hda_codec_setup_stream: NID=0x%x, stream=0x%x, channel=%d, format=0x%x\n", |
| 1104 | nid, stream_tag, channel_id, format); |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1105 | p = get_hda_cvt_setup(codec, nid); |
Takashi Iwai | 6c35ae3 | 2013-05-10 13:39:50 +0200 | [diff] [blame] | 1106 | if (!p) |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1107 | return; |
Takashi Iwai | ed36081 | 2012-08-08 17:12:52 +0200 | [diff] [blame] | 1108 | |
Takashi Iwai | e6feb5d | 2015-03-16 21:32:11 +0100 | [diff] [blame] | 1109 | if (codec->patch_ops.stream_pm) |
| 1110 | codec->patch_ops.stream_pm(codec, nid, true); |
Takashi Iwai | ed36081 | 2012-08-08 17:12:52 +0200 | [diff] [blame] | 1111 | if (codec->pcm_format_first) |
| 1112 | update_pcm_format(codec, p, nid, format); |
| 1113 | update_pcm_stream_id(codec, p, nid, stream_tag, channel_id); |
| 1114 | if (!codec->pcm_format_first) |
| 1115 | update_pcm_format(codec, p, nid, format); |
| 1116 | |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1117 | p->active = 1; |
| 1118 | p->dirty = 0; |
| 1119 | |
| 1120 | /* make other inactive cvts with the same stream-tag dirty */ |
Takashi Iwai | 62b7e5e | 2010-10-22 17:15:47 +0200 | [diff] [blame] | 1121 | type = get_wcaps_type(get_wcaps(codec, nid)); |
Takashi Iwai | d068ebc | 2015-03-02 23:22:59 +0100 | [diff] [blame] | 1122 | list_for_each_codec(c, codec->bus) { |
Takashi Iwai | 3f50ac6 | 2010-08-20 09:44:36 +0200 | [diff] [blame] | 1123 | for (i = 0; i < c->cvt_setups.used; i++) { |
| 1124 | p = snd_array_elem(&c->cvt_setups, i); |
Takashi Iwai | 62b7e5e | 2010-10-22 17:15:47 +0200 | [diff] [blame] | 1125 | if (!p->active && p->stream_tag == stream_tag && |
David Henningsson | 54c2a89 | 2012-02-01 12:05:41 +0100 | [diff] [blame] | 1126 | get_wcaps_type(get_wcaps(c, p->nid)) == type) |
Takashi Iwai | 3f50ac6 | 2010-08-20 09:44:36 +0200 | [diff] [blame] | 1127 | p->dirty = 1; |
| 1128 | } |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1129 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1130 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1131 | EXPORT_SYMBOL_GPL(snd_hda_codec_setup_stream); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1132 | |
Takashi Iwai | f0cea79 | 2010-08-13 11:56:53 +0200 | [diff] [blame] | 1133 | static void really_cleanup_stream(struct hda_codec *codec, |
| 1134 | struct hda_cvt_setup *q); |
| 1135 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1136 | /** |
Takashi Iwai | f0cea79 | 2010-08-13 11:56:53 +0200 | [diff] [blame] | 1137 | * __snd_hda_codec_cleanup_stream - clean up the codec for closing |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1138 | * @codec: the CODEC to clean up |
| 1139 | * @nid: the NID to clean up |
Takashi Iwai | f0cea79 | 2010-08-13 11:56:53 +0200 | [diff] [blame] | 1140 | * @do_now: really clean up the stream instead of clearing the active flag |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1141 | */ |
Takashi Iwai | f0cea79 | 2010-08-13 11:56:53 +0200 | [diff] [blame] | 1142 | void __snd_hda_codec_cleanup_stream(struct hda_codec *codec, hda_nid_t nid, |
| 1143 | int do_now) |
Takashi Iwai | 888afa1 | 2008-03-18 09:57:50 +0100 | [diff] [blame] | 1144 | { |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1145 | struct hda_cvt_setup *p; |
| 1146 | |
Takashi Iwai | 888afa1 | 2008-03-18 09:57:50 +0100 | [diff] [blame] | 1147 | if (!nid) |
| 1148 | return; |
| 1149 | |
Takashi Iwai | 0e7adbe | 2010-10-25 10:37:11 +0200 | [diff] [blame] | 1150 | if (codec->no_sticky_stream) |
| 1151 | do_now = 1; |
| 1152 | |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 1153 | codec_dbg(codec, "hda_codec_cleanup_stream: NID=0x%x\n", nid); |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1154 | p = get_hda_cvt_setup(codec, nid); |
Takashi Iwai | 6c35ae3 | 2013-05-10 13:39:50 +0200 | [diff] [blame] | 1155 | if (p) { |
Takashi Iwai | f0cea79 | 2010-08-13 11:56:53 +0200 | [diff] [blame] | 1156 | /* here we just clear the active flag when do_now isn't set; |
| 1157 | * actual clean-ups will be done later in |
| 1158 | * purify_inactive_streams() called from snd_hda_codec_prpapre() |
| 1159 | */ |
| 1160 | if (do_now) |
| 1161 | really_cleanup_stream(codec, p); |
| 1162 | else |
| 1163 | p->active = 0; |
| 1164 | } |
Takashi Iwai | 888afa1 | 2008-03-18 09:57:50 +0100 | [diff] [blame] | 1165 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1166 | EXPORT_SYMBOL_GPL(__snd_hda_codec_cleanup_stream); |
Takashi Iwai | 888afa1 | 2008-03-18 09:57:50 +0100 | [diff] [blame] | 1167 | |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1168 | static void really_cleanup_stream(struct hda_codec *codec, |
| 1169 | struct hda_cvt_setup *q) |
| 1170 | { |
| 1171 | hda_nid_t nid = q->nid; |
Takashi Iwai | 218264a | 2011-09-27 17:33:45 +0200 | [diff] [blame] | 1172 | if (q->stream_tag || q->channel_id) |
| 1173 | snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CHANNEL_STREAMID, 0); |
| 1174 | if (q->format_id) |
| 1175 | snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_STREAM_FORMAT, 0 |
| 1176 | ); |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1177 | memset(q, 0, sizeof(*q)); |
| 1178 | q->nid = nid; |
Takashi Iwai | e6feb5d | 2015-03-16 21:32:11 +0100 | [diff] [blame] | 1179 | if (codec->patch_ops.stream_pm) |
| 1180 | codec->patch_ops.stream_pm(codec, nid, false); |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1181 | } |
| 1182 | |
| 1183 | /* clean up the all conflicting obsolete streams */ |
| 1184 | static void purify_inactive_streams(struct hda_codec *codec) |
| 1185 | { |
Takashi Iwai | 3f50ac6 | 2010-08-20 09:44:36 +0200 | [diff] [blame] | 1186 | struct hda_codec *c; |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1187 | int i; |
| 1188 | |
Takashi Iwai | d068ebc | 2015-03-02 23:22:59 +0100 | [diff] [blame] | 1189 | list_for_each_codec(c, codec->bus) { |
Takashi Iwai | 3f50ac6 | 2010-08-20 09:44:36 +0200 | [diff] [blame] | 1190 | for (i = 0; i < c->cvt_setups.used; i++) { |
| 1191 | struct hda_cvt_setup *p; |
| 1192 | p = snd_array_elem(&c->cvt_setups, i); |
| 1193 | if (p->dirty) |
| 1194 | really_cleanup_stream(c, p); |
| 1195 | } |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1196 | } |
| 1197 | } |
| 1198 | |
Takashi Iwai | 2a43952 | 2011-07-26 09:52:50 +0200 | [diff] [blame] | 1199 | #ifdef CONFIG_PM |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1200 | /* clean up all streams; called from suspend */ |
| 1201 | static void hda_cleanup_all_streams(struct hda_codec *codec) |
| 1202 | { |
| 1203 | int i; |
| 1204 | |
| 1205 | for (i = 0; i < codec->cvt_setups.used; i++) { |
| 1206 | struct hda_cvt_setup *p = snd_array_elem(&codec->cvt_setups, i); |
| 1207 | if (p->stream_tag) |
| 1208 | really_cleanup_stream(codec, p); |
| 1209 | } |
| 1210 | } |
Mike Waychison | 1c7276c | 2011-04-20 12:04:36 -0700 | [diff] [blame] | 1211 | #endif |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1212 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1213 | /* |
| 1214 | * amp access functions |
| 1215 | */ |
| 1216 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1217 | /** |
| 1218 | * query_amp_caps - query AMP capabilities |
| 1219 | * @codec: the HD-auio codec |
| 1220 | * @nid: the NID to query |
| 1221 | * @direction: either #HDA_INPUT or #HDA_OUTPUT |
| 1222 | * |
| 1223 | * Query AMP capabilities for the given widget and direction. |
| 1224 | * Returns the obtained capability bits. |
| 1225 | * |
| 1226 | * When cap bits have been already read, this doesn't read again but |
| 1227 | * returns the cached value. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1228 | */ |
Matthew Ranostay | 09a9995 | 2008-01-24 11:49:21 +0100 | [diff] [blame] | 1229 | u32 query_amp_caps(struct hda_codec *codec, hda_nid_t nid, int direction) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1230 | { |
Takashi Iwai | faa75f8 | 2015-02-26 08:54:56 +0100 | [diff] [blame] | 1231 | if (!(get_wcaps(codec, nid) & AC_WCAP_AMP_OVRD)) |
| 1232 | nid = codec->core.afg; |
| 1233 | return snd_hda_param_read(codec, nid, |
| 1234 | direction == HDA_OUTPUT ? |
| 1235 | AC_PAR_AMP_OUT_CAP : AC_PAR_AMP_IN_CAP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1236 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1237 | EXPORT_SYMBOL_GPL(query_amp_caps); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1238 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1239 | /** |
David Henningsson | 861a04e | 2014-09-23 10:38:17 +0200 | [diff] [blame] | 1240 | * snd_hda_check_amp_caps - query AMP capabilities |
| 1241 | * @codec: the HD-audio codec |
| 1242 | * @nid: the NID to query |
| 1243 | * @dir: either #HDA_INPUT or #HDA_OUTPUT |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 1244 | * @bits: bit mask to check the result |
David Henningsson | 861a04e | 2014-09-23 10:38:17 +0200 | [diff] [blame] | 1245 | * |
| 1246 | * Check whether the widget has the given amp capability for the direction. |
| 1247 | */ |
| 1248 | bool snd_hda_check_amp_caps(struct hda_codec *codec, hda_nid_t nid, |
| 1249 | int dir, unsigned int bits) |
| 1250 | { |
| 1251 | if (!nid) |
| 1252 | return false; |
| 1253 | if (get_wcaps(codec, nid) & (1 << (dir + 1))) |
| 1254 | if (query_amp_caps(codec, nid, dir) & bits) |
| 1255 | return true; |
| 1256 | return false; |
| 1257 | } |
| 1258 | EXPORT_SYMBOL_GPL(snd_hda_check_amp_caps); |
| 1259 | |
| 1260 | /** |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1261 | * snd_hda_override_amp_caps - Override the AMP capabilities |
| 1262 | * @codec: the CODEC to clean up |
| 1263 | * @nid: the NID to clean up |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 1264 | * @dir: either #HDA_INPUT or #HDA_OUTPUT |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1265 | * @caps: the capability bits to set |
| 1266 | * |
| 1267 | * Override the cached AMP caps bits value by the given one. |
| 1268 | * This function is useful if the driver needs to adjust the AMP ranges, |
| 1269 | * e.g. limit to 0dB, etc. |
| 1270 | * |
| 1271 | * Returns zero if successful or a negative error code. |
| 1272 | */ |
Takashi Iwai | 897cc18 | 2007-05-29 19:01:37 +0200 | [diff] [blame] | 1273 | int snd_hda_override_amp_caps(struct hda_codec *codec, hda_nid_t nid, int dir, |
| 1274 | unsigned int caps) |
| 1275 | { |
Takashi Iwai | faa75f8 | 2015-02-26 08:54:56 +0100 | [diff] [blame] | 1276 | unsigned int parm; |
| 1277 | |
| 1278 | snd_hda_override_wcaps(codec, nid, |
| 1279 | get_wcaps(codec, nid) | AC_WCAP_AMP_OVRD); |
| 1280 | parm = dir == HDA_OUTPUT ? AC_PAR_AMP_OUT_CAP : AC_PAR_AMP_IN_CAP; |
| 1281 | return snd_hdac_override_parm(&codec->core, nid, parm, caps); |
Takashi Iwai | 897cc18 | 2007-05-29 19:01:37 +0200 | [diff] [blame] | 1282 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1283 | EXPORT_SYMBOL_GPL(snd_hda_override_amp_caps); |
Takashi Iwai | 897cc18 | 2007-05-29 19:01:37 +0200 | [diff] [blame] | 1284 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1285 | /** |
| 1286 | * snd_hda_codec_amp_stereo - update the AMP stereo values |
| 1287 | * @codec: HD-audio codec |
| 1288 | * @nid: NID to read the AMP value |
| 1289 | * @direction: #HDA_INPUT or #HDA_OUTPUT |
| 1290 | * @idx: the index value (only for input direction) |
| 1291 | * @mask: bit mask to set |
| 1292 | * @val: the bits value to set |
| 1293 | * |
| 1294 | * Update the AMP values like snd_hda_codec_amp_update(), but for a |
| 1295 | * stereo widget with the same mask and value. |
Takashi Iwai | 47fd830 | 2007-08-10 17:11:07 +0200 | [diff] [blame] | 1296 | */ |
| 1297 | int snd_hda_codec_amp_stereo(struct hda_codec *codec, hda_nid_t nid, |
| 1298 | int direction, int idx, int mask, int val) |
| 1299 | { |
| 1300 | int ch, ret = 0; |
Takashi Iwai | 46712646 | 2010-03-29 09:19:38 +0200 | [diff] [blame] | 1301 | |
| 1302 | if (snd_BUG_ON(mask & ~0xff)) |
| 1303 | mask &= 0xff; |
Takashi Iwai | 47fd830 | 2007-08-10 17:11:07 +0200 | [diff] [blame] | 1304 | for (ch = 0; ch < 2; ch++) |
| 1305 | ret |= snd_hda_codec_amp_update(codec, nid, ch, direction, |
| 1306 | idx, mask, val); |
| 1307 | return ret; |
| 1308 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1309 | EXPORT_SYMBOL_GPL(snd_hda_codec_amp_stereo); |
Takashi Iwai | 47fd830 | 2007-08-10 17:11:07 +0200 | [diff] [blame] | 1310 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 1311 | /** |
| 1312 | * snd_hda_codec_amp_init - initialize the AMP value |
| 1313 | * @codec: the HDA codec |
| 1314 | * @nid: NID to read the AMP value |
| 1315 | * @ch: channel (left=0 or right=1) |
| 1316 | * @dir: #HDA_INPUT or #HDA_OUTPUT |
| 1317 | * @idx: the index value (only for input direction) |
| 1318 | * @mask: bit mask to set |
| 1319 | * @val: the bits value to set |
| 1320 | * |
| 1321 | * Works like snd_hda_codec_amp_update() but it writes the value only at |
Takashi Iwai | 280e57d | 2012-12-14 10:32:21 +0100 | [diff] [blame] | 1322 | * the first access. If the amp was already initialized / updated beforehand, |
| 1323 | * this does nothing. |
| 1324 | */ |
| 1325 | int snd_hda_codec_amp_init(struct hda_codec *codec, hda_nid_t nid, int ch, |
| 1326 | int dir, int idx, int mask, int val) |
| 1327 | { |
Takashi Iwai | eeecd9d | 2015-02-25 15:18:50 +0100 | [diff] [blame] | 1328 | int orig; |
| 1329 | |
| 1330 | if (!codec->core.regmap) |
| 1331 | return -EINVAL; |
| 1332 | regcache_cache_only(codec->core.regmap, true); |
| 1333 | orig = snd_hda_codec_amp_read(codec, nid, ch, dir, idx); |
| 1334 | regcache_cache_only(codec->core.regmap, false); |
| 1335 | if (orig >= 0) |
| 1336 | return 0; |
| 1337 | return snd_hda_codec_amp_update(codec, nid, ch, dir, idx, mask, val); |
Takashi Iwai | 280e57d | 2012-12-14 10:32:21 +0100 | [diff] [blame] | 1338 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1339 | EXPORT_SYMBOL_GPL(snd_hda_codec_amp_init); |
Takashi Iwai | 280e57d | 2012-12-14 10:32:21 +0100 | [diff] [blame] | 1340 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 1341 | /** |
| 1342 | * snd_hda_codec_amp_init_stereo - initialize the stereo AMP value |
| 1343 | * @codec: the HDA codec |
| 1344 | * @nid: NID to read the AMP value |
| 1345 | * @dir: #HDA_INPUT or #HDA_OUTPUT |
| 1346 | * @idx: the index value (only for input direction) |
| 1347 | * @mask: bit mask to set |
| 1348 | * @val: the bits value to set |
| 1349 | * |
| 1350 | * Call snd_hda_codec_amp_init() for both stereo channels. |
| 1351 | */ |
Takashi Iwai | 280e57d | 2012-12-14 10:32:21 +0100 | [diff] [blame] | 1352 | int snd_hda_codec_amp_init_stereo(struct hda_codec *codec, hda_nid_t nid, |
| 1353 | int dir, int idx, int mask, int val) |
| 1354 | { |
| 1355 | int ch, ret = 0; |
| 1356 | |
| 1357 | if (snd_BUG_ON(mask & ~0xff)) |
| 1358 | mask &= 0xff; |
| 1359 | for (ch = 0; ch < 2; ch++) |
| 1360 | ret |= snd_hda_codec_amp_init(codec, nid, ch, dir, |
| 1361 | idx, mask, val); |
| 1362 | return ret; |
| 1363 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1364 | EXPORT_SYMBOL_GPL(snd_hda_codec_amp_init_stereo); |
Takashi Iwai | 280e57d | 2012-12-14 10:32:21 +0100 | [diff] [blame] | 1365 | |
Takashi Iwai | afbd9b8 | 2010-07-08 18:40:37 +0200 | [diff] [blame] | 1366 | static u32 get_amp_max_value(struct hda_codec *codec, hda_nid_t nid, int dir, |
| 1367 | unsigned int ofs) |
| 1368 | { |
| 1369 | u32 caps = query_amp_caps(codec, nid, dir); |
| 1370 | /* get num steps */ |
| 1371 | caps = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT; |
| 1372 | if (ofs < caps) |
| 1373 | caps -= ofs; |
| 1374 | return caps; |
| 1375 | } |
| 1376 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1377 | /** |
| 1378 | * snd_hda_mixer_amp_volume_info - Info callback for a standard AMP mixer |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 1379 | * @kcontrol: referred ctl element |
| 1380 | * @uinfo: pointer to get/store the data |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1381 | * |
| 1382 | * The control element is supposed to have the private_value field |
| 1383 | * set up via HDA_COMPOSE_AMP_VAL*() or related macros. |
| 1384 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1385 | int snd_hda_mixer_amp_volume_info(struct snd_kcontrol *kcontrol, |
| 1386 | struct snd_ctl_elem_info *uinfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1387 | { |
| 1388 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 1389 | u16 nid = get_amp_nid(kcontrol); |
| 1390 | u8 chs = get_amp_channels(kcontrol); |
| 1391 | int dir = get_amp_direction(kcontrol); |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 1392 | unsigned int ofs = get_amp_offset(kcontrol); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1393 | |
Takashi Iwai | afbd9b8 | 2010-07-08 18:40:37 +0200 | [diff] [blame] | 1394 | uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER; |
| 1395 | uinfo->count = chs == 3 ? 2 : 1; |
| 1396 | uinfo->value.integer.min = 0; |
| 1397 | uinfo->value.integer.max = get_amp_max_value(codec, nid, dir, ofs); |
| 1398 | if (!uinfo->value.integer.max) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 1399 | codec_warn(codec, |
| 1400 | "num_steps = 0 for NID=0x%x (ctl = %s)\n", |
| 1401 | nid, kcontrol->id.name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1402 | return -EINVAL; |
| 1403 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1404 | return 0; |
| 1405 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1406 | EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_volume_info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1407 | |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 1408 | |
| 1409 | static inline unsigned int |
| 1410 | read_amp_value(struct hda_codec *codec, hda_nid_t nid, |
| 1411 | int ch, int dir, int idx, unsigned int ofs) |
| 1412 | { |
| 1413 | unsigned int val; |
| 1414 | val = snd_hda_codec_amp_read(codec, nid, ch, dir, idx); |
| 1415 | val &= HDA_AMP_VOLMASK; |
| 1416 | if (val >= ofs) |
| 1417 | val -= ofs; |
| 1418 | else |
| 1419 | val = 0; |
| 1420 | return val; |
| 1421 | } |
| 1422 | |
| 1423 | static inline int |
| 1424 | update_amp_value(struct hda_codec *codec, hda_nid_t nid, |
| 1425 | int ch, int dir, int idx, unsigned int ofs, |
| 1426 | unsigned int val) |
| 1427 | { |
Takashi Iwai | afbd9b8 | 2010-07-08 18:40:37 +0200 | [diff] [blame] | 1428 | unsigned int maxval; |
| 1429 | |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 1430 | if (val > 0) |
| 1431 | val += ofs; |
Takashi Iwai | 7ccc3ef | 2010-07-26 17:00:15 +0200 | [diff] [blame] | 1432 | /* ofs = 0: raw max value */ |
| 1433 | maxval = get_amp_max_value(codec, nid, dir, 0); |
Takashi Iwai | afbd9b8 | 2010-07-08 18:40:37 +0200 | [diff] [blame] | 1434 | if (val > maxval) |
| 1435 | val = maxval; |
Takashi Iwai | eeecd9d | 2015-02-25 15:18:50 +0100 | [diff] [blame] | 1436 | return snd_hda_codec_amp_update(codec, nid, ch, dir, idx, |
| 1437 | HDA_AMP_VOLMASK, val); |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 1438 | } |
| 1439 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1440 | /** |
| 1441 | * snd_hda_mixer_amp_volume_get - Get callback for a standard AMP mixer volume |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 1442 | * @kcontrol: ctl element |
| 1443 | * @ucontrol: pointer to get/store the data |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1444 | * |
| 1445 | * The control element is supposed to have the private_value field |
| 1446 | * set up via HDA_COMPOSE_AMP_VAL*() or related macros. |
| 1447 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1448 | int snd_hda_mixer_amp_volume_get(struct snd_kcontrol *kcontrol, |
| 1449 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1450 | { |
| 1451 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 1452 | hda_nid_t nid = get_amp_nid(kcontrol); |
| 1453 | int chs = get_amp_channels(kcontrol); |
| 1454 | int dir = get_amp_direction(kcontrol); |
| 1455 | int idx = get_amp_index(kcontrol); |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 1456 | unsigned int ofs = get_amp_offset(kcontrol); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1457 | long *valp = ucontrol->value.integer.value; |
| 1458 | |
| 1459 | if (chs & 1) |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 1460 | *valp++ = read_amp_value(codec, nid, 0, dir, idx, ofs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1461 | if (chs & 2) |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 1462 | *valp = read_amp_value(codec, nid, 1, dir, idx, ofs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1463 | return 0; |
| 1464 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1465 | EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_volume_get); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1466 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1467 | /** |
| 1468 | * snd_hda_mixer_amp_volume_put - Put callback for a standard AMP mixer volume |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 1469 | * @kcontrol: ctl element |
| 1470 | * @ucontrol: pointer to get/store the data |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1471 | * |
| 1472 | * The control element is supposed to have the private_value field |
| 1473 | * set up via HDA_COMPOSE_AMP_VAL*() or related macros. |
| 1474 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1475 | int snd_hda_mixer_amp_volume_put(struct snd_kcontrol *kcontrol, |
| 1476 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1477 | { |
| 1478 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 1479 | hda_nid_t nid = get_amp_nid(kcontrol); |
| 1480 | int chs = get_amp_channels(kcontrol); |
| 1481 | int dir = get_amp_direction(kcontrol); |
| 1482 | int idx = get_amp_index(kcontrol); |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 1483 | unsigned int ofs = get_amp_offset(kcontrol); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1484 | long *valp = ucontrol->value.integer.value; |
| 1485 | int change = 0; |
| 1486 | |
Nicolas Graziano | b9f5a89 | 2005-07-29 12:17:20 +0200 | [diff] [blame] | 1487 | if (chs & 1) { |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 1488 | change = update_amp_value(codec, nid, 0, dir, idx, ofs, *valp); |
Nicolas Graziano | b9f5a89 | 2005-07-29 12:17:20 +0200 | [diff] [blame] | 1489 | valp++; |
| 1490 | } |
Takashi Iwai | 4a19fae | 2005-06-08 14:43:58 +0200 | [diff] [blame] | 1491 | if (chs & 2) |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 1492 | change |= update_amp_value(codec, nid, 1, dir, idx, ofs, *valp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1493 | return change; |
| 1494 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1495 | EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_volume_put); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1496 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1497 | /** |
| 1498 | * snd_hda_mixer_amp_volume_put - TLV callback for a standard AMP mixer volume |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 1499 | * @kcontrol: ctl element |
| 1500 | * @op_flag: operation flag |
| 1501 | * @size: byte size of input TLV |
| 1502 | * @_tlv: TLV data |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1503 | * |
| 1504 | * The control element is supposed to have the private_value field |
| 1505 | * set up via HDA_COMPOSE_AMP_VAL*() or related macros. |
| 1506 | */ |
Jaroslav Kysela | 302e9c5 | 2006-07-05 17:39:49 +0200 | [diff] [blame] | 1507 | int snd_hda_mixer_amp_tlv(struct snd_kcontrol *kcontrol, int op_flag, |
| 1508 | unsigned int size, unsigned int __user *_tlv) |
| 1509 | { |
| 1510 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 1511 | hda_nid_t nid = get_amp_nid(kcontrol); |
| 1512 | int dir = get_amp_direction(kcontrol); |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 1513 | unsigned int ofs = get_amp_offset(kcontrol); |
Clemens Ladisch | de8c85f | 2010-10-15 10:32:50 +0200 | [diff] [blame] | 1514 | bool min_mute = get_amp_min_mute(kcontrol); |
Jaroslav Kysela | 302e9c5 | 2006-07-05 17:39:49 +0200 | [diff] [blame] | 1515 | u32 caps, val1, val2; |
| 1516 | |
| 1517 | if (size < 4 * sizeof(unsigned int)) |
| 1518 | return -ENOMEM; |
| 1519 | caps = query_amp_caps(codec, nid, dir); |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1520 | val2 = (caps & AC_AMPCAP_STEP_SIZE) >> AC_AMPCAP_STEP_SIZE_SHIFT; |
| 1521 | val2 = (val2 + 1) * 25; |
Jaroslav Kysela | 302e9c5 | 2006-07-05 17:39:49 +0200 | [diff] [blame] | 1522 | val1 = -((caps & AC_AMPCAP_OFFSET) >> AC_AMPCAP_OFFSET_SHIFT); |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 1523 | val1 += ofs; |
Jaroslav Kysela | 302e9c5 | 2006-07-05 17:39:49 +0200 | [diff] [blame] | 1524 | val1 = ((int)val1) * ((int)val2); |
Takashi Iwai | 3868137 | 2012-02-27 15:00:58 +0100 | [diff] [blame] | 1525 | if (min_mute || (caps & AC_AMPCAP_MIN_MUTE)) |
Takashi Iwai | c08d916 | 2010-10-17 10:40:53 +0200 | [diff] [blame] | 1526 | val2 |= TLV_DB_SCALE_MUTE; |
Jaroslav Kysela | 302e9c5 | 2006-07-05 17:39:49 +0200 | [diff] [blame] | 1527 | if (put_user(SNDRV_CTL_TLVT_DB_SCALE, _tlv)) |
| 1528 | return -EFAULT; |
| 1529 | if (put_user(2 * sizeof(unsigned int), _tlv + 1)) |
| 1530 | return -EFAULT; |
| 1531 | if (put_user(val1, _tlv + 2)) |
| 1532 | return -EFAULT; |
| 1533 | if (put_user(val2, _tlv + 3)) |
| 1534 | return -EFAULT; |
| 1535 | return 0; |
| 1536 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1537 | EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_tlv); |
Jaroslav Kysela | 302e9c5 | 2006-07-05 17:39:49 +0200 | [diff] [blame] | 1538 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1539 | /** |
| 1540 | * snd_hda_set_vmaster_tlv - Set TLV for a virtual master control |
| 1541 | * @codec: HD-audio codec |
| 1542 | * @nid: NID of a reference widget |
| 1543 | * @dir: #HDA_INPUT or #HDA_OUTPUT |
| 1544 | * @tlv: TLV data to be stored, at least 4 elements |
| 1545 | * |
| 1546 | * Set (static) TLV data for a virtual master volume using the AMP caps |
| 1547 | * obtained from the reference NID. |
| 1548 | * The volume range is recalculated as if the max volume is 0dB. |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1549 | */ |
| 1550 | void snd_hda_set_vmaster_tlv(struct hda_codec *codec, hda_nid_t nid, int dir, |
| 1551 | unsigned int *tlv) |
| 1552 | { |
| 1553 | u32 caps; |
| 1554 | int nums, step; |
| 1555 | |
| 1556 | caps = query_amp_caps(codec, nid, dir); |
| 1557 | nums = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT; |
| 1558 | step = (caps & AC_AMPCAP_STEP_SIZE) >> AC_AMPCAP_STEP_SIZE_SHIFT; |
| 1559 | step = (step + 1) * 25; |
| 1560 | tlv[0] = SNDRV_CTL_TLVT_DB_SCALE; |
| 1561 | tlv[1] = 2 * sizeof(unsigned int); |
| 1562 | tlv[2] = -nums * step; |
| 1563 | tlv[3] = step; |
| 1564 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1565 | EXPORT_SYMBOL_GPL(snd_hda_set_vmaster_tlv); |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1566 | |
| 1567 | /* find a mixer control element with the given name */ |
Takashi Iwai | 09f9970 | 2008-02-04 12:31:13 +0100 | [diff] [blame] | 1568 | static struct snd_kcontrol * |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 1569 | find_mixer_ctl(struct hda_codec *codec, const char *name, int dev, int idx) |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1570 | { |
| 1571 | struct snd_ctl_elem_id id; |
| 1572 | memset(&id, 0, sizeof(id)); |
| 1573 | id.iface = SNDRV_CTL_ELEM_IFACE_MIXER; |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 1574 | id.device = dev; |
Takashi Iwai | 09f9970 | 2008-02-04 12:31:13 +0100 | [diff] [blame] | 1575 | id.index = idx; |
Takashi Iwai | 18cb710 | 2009-04-16 10:22:24 +0200 | [diff] [blame] | 1576 | if (snd_BUG_ON(strlen(name) >= sizeof(id.name))) |
| 1577 | return NULL; |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1578 | strcpy(id.name, name); |
Takashi Iwai | 6efdd85 | 2015-02-27 16:09:22 +0100 | [diff] [blame] | 1579 | return snd_ctl_find_id(codec->card, &id); |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1580 | } |
| 1581 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1582 | /** |
| 1583 | * snd_hda_find_mixer_ctl - Find a mixer control element with the given name |
| 1584 | * @codec: HD-audio codec |
| 1585 | * @name: ctl id name string |
| 1586 | * |
| 1587 | * Get the control element with the given id string and IFACE_MIXER. |
| 1588 | */ |
Takashi Iwai | 09f9970 | 2008-02-04 12:31:13 +0100 | [diff] [blame] | 1589 | struct snd_kcontrol *snd_hda_find_mixer_ctl(struct hda_codec *codec, |
| 1590 | const char *name) |
| 1591 | { |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 1592 | return find_mixer_ctl(codec, name, 0, 0); |
Takashi Iwai | 09f9970 | 2008-02-04 12:31:13 +0100 | [diff] [blame] | 1593 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1594 | EXPORT_SYMBOL_GPL(snd_hda_find_mixer_ctl); |
Takashi Iwai | 09f9970 | 2008-02-04 12:31:13 +0100 | [diff] [blame] | 1595 | |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 1596 | static int find_empty_mixer_ctl_idx(struct hda_codec *codec, const char *name, |
Takashi Iwai | ea9b43a | 2013-02-12 17:02:41 +0100 | [diff] [blame] | 1597 | int start_idx) |
Takashi Iwai | 1afe206 | 2010-12-23 10:17:52 +0100 | [diff] [blame] | 1598 | { |
Takashi Iwai | ea9b43a | 2013-02-12 17:02:41 +0100 | [diff] [blame] | 1599 | int i, idx; |
| 1600 | /* 16 ctlrs should be large enough */ |
| 1601 | for (i = 0, idx = start_idx; i < 16; i++, idx++) { |
| 1602 | if (!find_mixer_ctl(codec, name, 0, idx)) |
Takashi Iwai | 1afe206 | 2010-12-23 10:17:52 +0100 | [diff] [blame] | 1603 | return idx; |
| 1604 | } |
| 1605 | return -EBUSY; |
| 1606 | } |
| 1607 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1608 | /** |
Jaroslav Kysela | 5b0cb1d | 2009-12-08 16:13:32 +0100 | [diff] [blame] | 1609 | * snd_hda_ctl_add - Add a control element and assign to the codec |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1610 | * @codec: HD-audio codec |
| 1611 | * @nid: corresponding NID (optional) |
| 1612 | * @kctl: the control element to assign |
| 1613 | * |
| 1614 | * Add the given control element to an array inside the codec instance. |
| 1615 | * All control elements belonging to a codec are supposed to be added |
| 1616 | * by this function so that a proper clean-up works at the free or |
| 1617 | * reconfiguration time. |
| 1618 | * |
| 1619 | * If non-zero @nid is passed, the NID is assigned to the control element. |
| 1620 | * The assignment is shown in the codec proc file. |
| 1621 | * |
| 1622 | * snd_hda_ctl_add() checks the control subdev id field whether |
| 1623 | * #HDA_SUBDEV_NID_FLAG bit is set. If set (and @nid is zero), the lower |
Jaroslav Kysela | 9e3fd87 | 2009-12-08 17:45:25 +0100 | [diff] [blame] | 1624 | * bits value is taken as the NID to assign. The #HDA_NID_ITEM_AMP bit |
| 1625 | * specifies if kctl->private_value is a HDA amplifier value. |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1626 | */ |
Jaroslav Kysela | 3911a4c | 2009-11-11 13:43:01 +0100 | [diff] [blame] | 1627 | int snd_hda_ctl_add(struct hda_codec *codec, hda_nid_t nid, |
| 1628 | struct snd_kcontrol *kctl) |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1629 | { |
| 1630 | int err; |
Jaroslav Kysela | 9e3fd87 | 2009-12-08 17:45:25 +0100 | [diff] [blame] | 1631 | unsigned short flags = 0; |
Jaroslav Kysela | 3911a4c | 2009-11-11 13:43:01 +0100 | [diff] [blame] | 1632 | struct hda_nid_item *item; |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1633 | |
Jaroslav Kysela | 5e26dfd | 2009-12-10 13:57:01 +0100 | [diff] [blame] | 1634 | if (kctl->id.subdevice & HDA_SUBDEV_AMP_FLAG) { |
Jaroslav Kysela | 9e3fd87 | 2009-12-08 17:45:25 +0100 | [diff] [blame] | 1635 | flags |= HDA_NID_ITEM_AMP; |
Jaroslav Kysela | 5e26dfd | 2009-12-10 13:57:01 +0100 | [diff] [blame] | 1636 | if (nid == 0) |
| 1637 | nid = get_amp_nid_(kctl->private_value); |
| 1638 | } |
Jaroslav Kysela | 9e3fd87 | 2009-12-08 17:45:25 +0100 | [diff] [blame] | 1639 | if ((kctl->id.subdevice & HDA_SUBDEV_NID_FLAG) != 0 && nid == 0) |
| 1640 | nid = kctl->id.subdevice & 0xffff; |
Jaroslav Kysela | 5e26dfd | 2009-12-10 13:57:01 +0100 | [diff] [blame] | 1641 | if (kctl->id.subdevice & (HDA_SUBDEV_NID_FLAG|HDA_SUBDEV_AMP_FLAG)) |
Jaroslav Kysela | 4d02d1b | 2009-11-12 10:15:48 +0100 | [diff] [blame] | 1642 | kctl->id.subdevice = 0; |
Takashi Iwai | 6efdd85 | 2015-02-27 16:09:22 +0100 | [diff] [blame] | 1643 | err = snd_ctl_add(codec->card, kctl); |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1644 | if (err < 0) |
| 1645 | return err; |
Jaroslav Kysela | 3911a4c | 2009-11-11 13:43:01 +0100 | [diff] [blame] | 1646 | item = snd_array_new(&codec->mixers); |
| 1647 | if (!item) |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1648 | return -ENOMEM; |
Jaroslav Kysela | 3911a4c | 2009-11-11 13:43:01 +0100 | [diff] [blame] | 1649 | item->kctl = kctl; |
| 1650 | item->nid = nid; |
Jaroslav Kysela | 9e3fd87 | 2009-12-08 17:45:25 +0100 | [diff] [blame] | 1651 | item->flags = flags; |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1652 | return 0; |
| 1653 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1654 | EXPORT_SYMBOL_GPL(snd_hda_ctl_add); |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1655 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1656 | /** |
Jaroslav Kysela | 5b0cb1d | 2009-12-08 16:13:32 +0100 | [diff] [blame] | 1657 | * snd_hda_add_nid - Assign a NID to a control element |
| 1658 | * @codec: HD-audio codec |
| 1659 | * @nid: corresponding NID (optional) |
| 1660 | * @kctl: the control element to assign |
| 1661 | * @index: index to kctl |
| 1662 | * |
| 1663 | * Add the given control element to an array inside the codec instance. |
| 1664 | * This function is used when #snd_hda_ctl_add cannot be used for 1:1 |
| 1665 | * NID:KCTL mapping - for example "Capture Source" selector. |
| 1666 | */ |
| 1667 | int snd_hda_add_nid(struct hda_codec *codec, struct snd_kcontrol *kctl, |
| 1668 | unsigned int index, hda_nid_t nid) |
| 1669 | { |
| 1670 | struct hda_nid_item *item; |
| 1671 | |
| 1672 | if (nid > 0) { |
| 1673 | item = snd_array_new(&codec->nids); |
| 1674 | if (!item) |
| 1675 | return -ENOMEM; |
| 1676 | item->kctl = kctl; |
| 1677 | item->index = index; |
| 1678 | item->nid = nid; |
| 1679 | return 0; |
| 1680 | } |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 1681 | codec_err(codec, "no NID for mapping control %s:%d:%d\n", |
| 1682 | kctl->id.name, kctl->id.index, index); |
Jaroslav Kysela | 5b0cb1d | 2009-12-08 16:13:32 +0100 | [diff] [blame] | 1683 | return -EINVAL; |
| 1684 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1685 | EXPORT_SYMBOL_GPL(snd_hda_add_nid); |
Jaroslav Kysela | 5b0cb1d | 2009-12-08 16:13:32 +0100 | [diff] [blame] | 1686 | |
| 1687 | /** |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1688 | * snd_hda_ctls_clear - Clear all controls assigned to the given codec |
| 1689 | * @codec: HD-audio codec |
| 1690 | */ |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1691 | void snd_hda_ctls_clear(struct hda_codec *codec) |
| 1692 | { |
| 1693 | int i; |
Jaroslav Kysela | 3911a4c | 2009-11-11 13:43:01 +0100 | [diff] [blame] | 1694 | struct hda_nid_item *items = codec->mixers.list; |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1695 | for (i = 0; i < codec->mixers.used; i++) |
Takashi Iwai | 6efdd85 | 2015-02-27 16:09:22 +0100 | [diff] [blame] | 1696 | snd_ctl_remove(codec->card, items[i].kctl); |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1697 | snd_array_free(&codec->mixers); |
Jaroslav Kysela | 5b0cb1d | 2009-12-08 16:13:32 +0100 | [diff] [blame] | 1698 | snd_array_free(&codec->nids); |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1699 | } |
| 1700 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 1701 | /** |
| 1702 | * snd_hda_lock_devices - pseudo device locking |
| 1703 | * @bus: the BUS |
| 1704 | * |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 1705 | * toggle card->shutdown to allow/disallow the device access (as a hack) |
| 1706 | */ |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 1707 | int snd_hda_lock_devices(struct hda_bus *bus) |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1708 | { |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 1709 | struct snd_card *card = bus->card; |
| 1710 | struct hda_codec *codec; |
| 1711 | |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 1712 | spin_lock(&card->files_lock); |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 1713 | if (card->shutdown) |
| 1714 | goto err_unlock; |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 1715 | card->shutdown = 1; |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 1716 | if (!list_empty(&card->ctl_files)) |
| 1717 | goto err_clear; |
| 1718 | |
Takashi Iwai | d068ebc | 2015-03-02 23:22:59 +0100 | [diff] [blame] | 1719 | list_for_each_codec(codec, bus) { |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame] | 1720 | struct hda_pcm *cpcm; |
| 1721 | list_for_each_entry(cpcm, &codec->pcm_list_head, list) { |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 1722 | if (!cpcm->pcm) |
| 1723 | continue; |
| 1724 | if (cpcm->pcm->streams[0].substream_opened || |
| 1725 | cpcm->pcm->streams[1].substream_opened) |
| 1726 | goto err_clear; |
| 1727 | } |
| 1728 | } |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 1729 | spin_unlock(&card->files_lock); |
| 1730 | return 0; |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 1731 | |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 1732 | err_clear: |
| 1733 | card->shutdown = 0; |
| 1734 | err_unlock: |
| 1735 | spin_unlock(&card->files_lock); |
| 1736 | return -EINVAL; |
| 1737 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1738 | EXPORT_SYMBOL_GPL(snd_hda_lock_devices); |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 1739 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 1740 | /** |
| 1741 | * snd_hda_unlock_devices - pseudo device unlocking |
| 1742 | * @bus: the BUS |
| 1743 | */ |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 1744 | void snd_hda_unlock_devices(struct hda_bus *bus) |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 1745 | { |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 1746 | struct snd_card *card = bus->card; |
| 1747 | |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 1748 | spin_lock(&card->files_lock); |
| 1749 | card->shutdown = 0; |
| 1750 | spin_unlock(&card->files_lock); |
| 1751 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1752 | EXPORT_SYMBOL_GPL(snd_hda_unlock_devices); |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 1753 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1754 | /** |
| 1755 | * snd_hda_codec_reset - Clear all objects assigned to the codec |
| 1756 | * @codec: HD-audio codec |
| 1757 | * |
| 1758 | * This frees the all PCM and control elements assigned to the codec, and |
| 1759 | * clears the caches and restores the pin default configurations. |
| 1760 | * |
| 1761 | * When a device is being used, it returns -EBSY. If successfully freed, |
| 1762 | * returns zero. |
| 1763 | */ |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 1764 | int snd_hda_codec_reset(struct hda_codec *codec) |
| 1765 | { |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 1766 | struct hda_bus *bus = codec->bus; |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 1767 | |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 1768 | if (snd_hda_lock_devices(bus) < 0) |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 1769 | return -EBUSY; |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 1770 | |
| 1771 | /* OK, let it free */ |
Takashi Iwai | 3256be6 | 2015-02-24 14:59:42 +0100 | [diff] [blame] | 1772 | snd_hdac_device_unregister(&codec->core); |
Takashi Iwai | d8a766a | 2015-02-17 15:25:37 +0100 | [diff] [blame] | 1773 | |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 1774 | /* allow device access again */ |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 1775 | snd_hda_unlock_devices(bus); |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 1776 | return 0; |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1777 | } |
| 1778 | |
Takashi Iwai | 6194b99 | 2014-06-06 18:12:16 +0200 | [diff] [blame] | 1779 | typedef int (*map_slave_func_t)(struct hda_codec *, void *, struct snd_kcontrol *); |
Takashi Iwai | aeb4b88 | 2011-11-10 12:28:38 +0100 | [diff] [blame] | 1780 | |
| 1781 | /* apply the function to all matching slave ctls in the mixer list */ |
| 1782 | static int map_slaves(struct hda_codec *codec, const char * const *slaves, |
Takashi Iwai | 9322ca5 | 2012-02-03 14:28:01 +0100 | [diff] [blame] | 1783 | const char *suffix, map_slave_func_t func, void *data) |
Takashi Iwai | aeb4b88 | 2011-11-10 12:28:38 +0100 | [diff] [blame] | 1784 | { |
| 1785 | struct hda_nid_item *items; |
| 1786 | const char * const *s; |
| 1787 | int i, err; |
| 1788 | |
| 1789 | items = codec->mixers.list; |
| 1790 | for (i = 0; i < codec->mixers.used; i++) { |
| 1791 | struct snd_kcontrol *sctl = items[i].kctl; |
Takashi Iwai | ca16ec0 | 2013-10-28 12:00:35 +0100 | [diff] [blame] | 1792 | if (!sctl || sctl->id.iface != SNDRV_CTL_ELEM_IFACE_MIXER) |
Takashi Iwai | aeb4b88 | 2011-11-10 12:28:38 +0100 | [diff] [blame] | 1793 | continue; |
| 1794 | for (s = slaves; *s; s++) { |
Takashi Iwai | 9322ca5 | 2012-02-03 14:28:01 +0100 | [diff] [blame] | 1795 | char tmpname[sizeof(sctl->id.name)]; |
| 1796 | const char *name = *s; |
| 1797 | if (suffix) { |
| 1798 | snprintf(tmpname, sizeof(tmpname), "%s %s", |
| 1799 | name, suffix); |
| 1800 | name = tmpname; |
| 1801 | } |
Takashi Iwai | 9322ca5 | 2012-02-03 14:28:01 +0100 | [diff] [blame] | 1802 | if (!strcmp(sctl->id.name, name)) { |
Takashi Iwai | 6194b99 | 2014-06-06 18:12:16 +0200 | [diff] [blame] | 1803 | err = func(codec, data, sctl); |
Takashi Iwai | aeb4b88 | 2011-11-10 12:28:38 +0100 | [diff] [blame] | 1804 | if (err) |
| 1805 | return err; |
| 1806 | break; |
| 1807 | } |
| 1808 | } |
| 1809 | } |
| 1810 | return 0; |
| 1811 | } |
| 1812 | |
Takashi Iwai | 6194b99 | 2014-06-06 18:12:16 +0200 | [diff] [blame] | 1813 | static int check_slave_present(struct hda_codec *codec, |
| 1814 | void *data, struct snd_kcontrol *sctl) |
Takashi Iwai | aeb4b88 | 2011-11-10 12:28:38 +0100 | [diff] [blame] | 1815 | { |
| 1816 | return 1; |
| 1817 | } |
| 1818 | |
Takashi Iwai | 18478e8 | 2012-03-09 17:51:10 +0100 | [diff] [blame] | 1819 | /* guess the value corresponding to 0dB */ |
Takashi Iwai | 6194b99 | 2014-06-06 18:12:16 +0200 | [diff] [blame] | 1820 | static int get_kctl_0dB_offset(struct hda_codec *codec, |
| 1821 | struct snd_kcontrol *kctl, int *step_to_check) |
Takashi Iwai | 18478e8 | 2012-03-09 17:51:10 +0100 | [diff] [blame] | 1822 | { |
| 1823 | int _tlv[4]; |
| 1824 | const int *tlv = NULL; |
| 1825 | int val = -1; |
| 1826 | |
| 1827 | if (kctl->vd[0].access & SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK) { |
| 1828 | /* FIXME: set_fs() hack for obtaining user-space TLV data */ |
| 1829 | mm_segment_t fs = get_fs(); |
| 1830 | set_fs(get_ds()); |
| 1831 | if (!kctl->tlv.c(kctl, 0, sizeof(_tlv), _tlv)) |
| 1832 | tlv = _tlv; |
| 1833 | set_fs(fs); |
| 1834 | } else if (kctl->vd[0].access & SNDRV_CTL_ELEM_ACCESS_TLV_READ) |
| 1835 | tlv = kctl->tlv.p; |
Takashi Iwai | a4e7a12 | 2013-11-04 15:44:09 +0100 | [diff] [blame] | 1836 | if (tlv && tlv[0] == SNDRV_CTL_TLVT_DB_SCALE) { |
| 1837 | int step = tlv[3]; |
| 1838 | step &= ~TLV_DB_SCALE_MUTE; |
| 1839 | if (!step) |
| 1840 | return -1; |
Takashi Iwai | 485e3e0 | 2013-11-04 15:51:00 +0100 | [diff] [blame] | 1841 | if (*step_to_check && *step_to_check != step) { |
Takashi Iwai | 6194b99 | 2014-06-06 18:12:16 +0200 | [diff] [blame] | 1842 | codec_err(codec, "Mismatching dB step for vmaster slave (%d!=%d)\n", |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 1843 | - *step_to_check, step); |
Takashi Iwai | 485e3e0 | 2013-11-04 15:51:00 +0100 | [diff] [blame] | 1844 | return -1; |
| 1845 | } |
| 1846 | *step_to_check = step; |
Takashi Iwai | a4e7a12 | 2013-11-04 15:44:09 +0100 | [diff] [blame] | 1847 | val = -tlv[2] / step; |
| 1848 | } |
Takashi Iwai | 18478e8 | 2012-03-09 17:51:10 +0100 | [diff] [blame] | 1849 | return val; |
| 1850 | } |
| 1851 | |
| 1852 | /* call kctl->put with the given value(s) */ |
| 1853 | static int put_kctl_with_value(struct snd_kcontrol *kctl, int val) |
| 1854 | { |
| 1855 | struct snd_ctl_elem_value *ucontrol; |
| 1856 | ucontrol = kzalloc(sizeof(*ucontrol), GFP_KERNEL); |
| 1857 | if (!ucontrol) |
| 1858 | return -ENOMEM; |
| 1859 | ucontrol->value.integer.value[0] = val; |
| 1860 | ucontrol->value.integer.value[1] = val; |
| 1861 | kctl->put(kctl, ucontrol); |
| 1862 | kfree(ucontrol); |
| 1863 | return 0; |
| 1864 | } |
| 1865 | |
| 1866 | /* initialize the slave volume with 0dB */ |
Takashi Iwai | 6194b99 | 2014-06-06 18:12:16 +0200 | [diff] [blame] | 1867 | static int init_slave_0dB(struct hda_codec *codec, |
| 1868 | void *data, struct snd_kcontrol *slave) |
Takashi Iwai | 18478e8 | 2012-03-09 17:51:10 +0100 | [diff] [blame] | 1869 | { |
Takashi Iwai | 6194b99 | 2014-06-06 18:12:16 +0200 | [diff] [blame] | 1870 | int offset = get_kctl_0dB_offset(codec, slave, data); |
Takashi Iwai | 18478e8 | 2012-03-09 17:51:10 +0100 | [diff] [blame] | 1871 | if (offset > 0) |
| 1872 | put_kctl_with_value(slave, offset); |
| 1873 | return 0; |
| 1874 | } |
| 1875 | |
| 1876 | /* unmute the slave */ |
Takashi Iwai | 6194b99 | 2014-06-06 18:12:16 +0200 | [diff] [blame] | 1877 | static int init_slave_unmute(struct hda_codec *codec, |
| 1878 | void *data, struct snd_kcontrol *slave) |
Takashi Iwai | 18478e8 | 2012-03-09 17:51:10 +0100 | [diff] [blame] | 1879 | { |
| 1880 | return put_kctl_with_value(slave, 1); |
| 1881 | } |
| 1882 | |
Takashi Iwai | e875094 | 2014-06-30 14:02:39 +0200 | [diff] [blame] | 1883 | static int add_slave(struct hda_codec *codec, |
| 1884 | void *data, struct snd_kcontrol *slave) |
| 1885 | { |
| 1886 | return snd_ctl_add_slave(data, slave); |
| 1887 | } |
| 1888 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1889 | /** |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 1890 | * __snd_hda_add_vmaster - create a virtual master control and add slaves |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1891 | * @codec: HD-audio codec |
| 1892 | * @name: vmaster control name |
| 1893 | * @tlv: TLV data (optional) |
| 1894 | * @slaves: slave control names (optional) |
Takashi Iwai | 9322ca5 | 2012-02-03 14:28:01 +0100 | [diff] [blame] | 1895 | * @suffix: suffix string to each slave name (optional) |
Takashi Iwai | 18478e8 | 2012-03-09 17:51:10 +0100 | [diff] [blame] | 1896 | * @init_slave_vol: initialize slaves to unmute/0dB |
Takashi Iwai | 29e5853 | 2012-03-12 12:25:03 +0100 | [diff] [blame] | 1897 | * @ctl_ret: store the vmaster kcontrol in return |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1898 | * |
| 1899 | * Create a virtual master control with the given name. The TLV data |
| 1900 | * must be either NULL or a valid data. |
| 1901 | * |
| 1902 | * @slaves is a NULL-terminated array of strings, each of which is a |
| 1903 | * slave control name. All controls with these names are assigned to |
| 1904 | * the new virtual master control. |
| 1905 | * |
| 1906 | * This function returns zero if successful or a negative error code. |
| 1907 | */ |
Takashi Iwai | 18478e8 | 2012-03-09 17:51:10 +0100 | [diff] [blame] | 1908 | int __snd_hda_add_vmaster(struct hda_codec *codec, char *name, |
Takashi Iwai | 9322ca5 | 2012-02-03 14:28:01 +0100 | [diff] [blame] | 1909 | unsigned int *tlv, const char * const *slaves, |
Takashi Iwai | 29e5853 | 2012-03-12 12:25:03 +0100 | [diff] [blame] | 1910 | const char *suffix, bool init_slave_vol, |
| 1911 | struct snd_kcontrol **ctl_ret) |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1912 | { |
| 1913 | struct snd_kcontrol *kctl; |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1914 | int err; |
| 1915 | |
Takashi Iwai | 29e5853 | 2012-03-12 12:25:03 +0100 | [diff] [blame] | 1916 | if (ctl_ret) |
| 1917 | *ctl_ret = NULL; |
| 1918 | |
Takashi Iwai | 9322ca5 | 2012-02-03 14:28:01 +0100 | [diff] [blame] | 1919 | err = map_slaves(codec, slaves, suffix, check_slave_present, NULL); |
Takashi Iwai | aeb4b88 | 2011-11-10 12:28:38 +0100 | [diff] [blame] | 1920 | if (err != 1) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 1921 | codec_dbg(codec, "No slave found for %s\n", name); |
Takashi Iwai | 2f08554 | 2008-02-22 18:43:50 +0100 | [diff] [blame] | 1922 | return 0; |
| 1923 | } |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1924 | kctl = snd_ctl_make_virtual_master(name, tlv); |
| 1925 | if (!kctl) |
| 1926 | return -ENOMEM; |
Jaroslav Kysela | 3911a4c | 2009-11-11 13:43:01 +0100 | [diff] [blame] | 1927 | err = snd_hda_ctl_add(codec, 0, kctl); |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1928 | if (err < 0) |
| 1929 | return err; |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 1930 | |
Takashi Iwai | e875094 | 2014-06-30 14:02:39 +0200 | [diff] [blame] | 1931 | err = map_slaves(codec, slaves, suffix, add_slave, kctl); |
Takashi Iwai | aeb4b88 | 2011-11-10 12:28:38 +0100 | [diff] [blame] | 1932 | if (err < 0) |
| 1933 | return err; |
Takashi Iwai | 18478e8 | 2012-03-09 17:51:10 +0100 | [diff] [blame] | 1934 | |
| 1935 | /* init with master mute & zero volume */ |
| 1936 | put_kctl_with_value(kctl, 0); |
Takashi Iwai | 485e3e0 | 2013-11-04 15:51:00 +0100 | [diff] [blame] | 1937 | if (init_slave_vol) { |
| 1938 | int step = 0; |
Takashi Iwai | 18478e8 | 2012-03-09 17:51:10 +0100 | [diff] [blame] | 1939 | map_slaves(codec, slaves, suffix, |
Takashi Iwai | 485e3e0 | 2013-11-04 15:51:00 +0100 | [diff] [blame] | 1940 | tlv ? init_slave_0dB : init_slave_unmute, &step); |
| 1941 | } |
Takashi Iwai | 18478e8 | 2012-03-09 17:51:10 +0100 | [diff] [blame] | 1942 | |
Takashi Iwai | 29e5853 | 2012-03-12 12:25:03 +0100 | [diff] [blame] | 1943 | if (ctl_ret) |
| 1944 | *ctl_ret = kctl; |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1945 | return 0; |
| 1946 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1947 | EXPORT_SYMBOL_GPL(__snd_hda_add_vmaster); |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1948 | |
Takashi Iwai | d2f344b | 2012-03-12 16:59:58 +0100 | [diff] [blame] | 1949 | /* |
| 1950 | * mute-LED control using vmaster |
| 1951 | */ |
| 1952 | static int vmaster_mute_mode_info(struct snd_kcontrol *kcontrol, |
| 1953 | struct snd_ctl_elem_info *uinfo) |
| 1954 | { |
| 1955 | static const char * const texts[] = { |
David Henningsson | c86c2d4 | 2013-01-03 14:12:29 +0100 | [diff] [blame] | 1956 | "On", "Off", "Follow Master" |
Takashi Iwai | d2f344b | 2012-03-12 16:59:58 +0100 | [diff] [blame] | 1957 | }; |
Takashi Iwai | d2f344b | 2012-03-12 16:59:58 +0100 | [diff] [blame] | 1958 | |
Takashi Iwai | 3ff7221 | 2014-10-20 18:17:28 +0200 | [diff] [blame] | 1959 | return snd_ctl_enum_info(uinfo, 1, 3, texts); |
Takashi Iwai | d2f344b | 2012-03-12 16:59:58 +0100 | [diff] [blame] | 1960 | } |
| 1961 | |
| 1962 | static int vmaster_mute_mode_get(struct snd_kcontrol *kcontrol, |
| 1963 | struct snd_ctl_elem_value *ucontrol) |
| 1964 | { |
| 1965 | struct hda_vmaster_mute_hook *hook = snd_kcontrol_chip(kcontrol); |
| 1966 | ucontrol->value.enumerated.item[0] = hook->mute_mode; |
| 1967 | return 0; |
| 1968 | } |
| 1969 | |
| 1970 | static int vmaster_mute_mode_put(struct snd_kcontrol *kcontrol, |
| 1971 | struct snd_ctl_elem_value *ucontrol) |
| 1972 | { |
| 1973 | struct hda_vmaster_mute_hook *hook = snd_kcontrol_chip(kcontrol); |
| 1974 | unsigned int old_mode = hook->mute_mode; |
| 1975 | |
| 1976 | hook->mute_mode = ucontrol->value.enumerated.item[0]; |
| 1977 | if (hook->mute_mode > HDA_VMUTE_FOLLOW_MASTER) |
| 1978 | hook->mute_mode = HDA_VMUTE_FOLLOW_MASTER; |
| 1979 | if (old_mode == hook->mute_mode) |
| 1980 | return 0; |
| 1981 | snd_hda_sync_vmaster_hook(hook); |
| 1982 | return 1; |
| 1983 | } |
| 1984 | |
| 1985 | static struct snd_kcontrol_new vmaster_mute_mode = { |
| 1986 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 1987 | .name = "Mute-LED Mode", |
| 1988 | .info = vmaster_mute_mode_info, |
| 1989 | .get = vmaster_mute_mode_get, |
| 1990 | .put = vmaster_mute_mode_put, |
| 1991 | }; |
| 1992 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 1993 | /** |
| 1994 | * snd_hda_add_vmaster_hook - Add a vmaster hook for mute-LED |
| 1995 | * @codec: the HDA codec |
| 1996 | * @hook: the vmaster hook object |
| 1997 | * @expose_enum_ctl: flag to create an enum ctl |
| 1998 | * |
| 1999 | * Add a mute-LED hook with the given vmaster switch kctl. |
| 2000 | * When @expose_enum_ctl is set, "Mute-LED Mode" control is automatically |
| 2001 | * created and associated with the given hook. |
Takashi Iwai | d2f344b | 2012-03-12 16:59:58 +0100 | [diff] [blame] | 2002 | */ |
| 2003 | int snd_hda_add_vmaster_hook(struct hda_codec *codec, |
Takashi Iwai | f29735c | 2012-03-13 07:55:10 +0100 | [diff] [blame] | 2004 | struct hda_vmaster_mute_hook *hook, |
| 2005 | bool expose_enum_ctl) |
Takashi Iwai | d2f344b | 2012-03-12 16:59:58 +0100 | [diff] [blame] | 2006 | { |
| 2007 | struct snd_kcontrol *kctl; |
| 2008 | |
| 2009 | if (!hook->hook || !hook->sw_kctl) |
| 2010 | return 0; |
| 2011 | snd_ctl_add_vmaster_hook(hook->sw_kctl, hook->hook, codec); |
| 2012 | hook->codec = codec; |
| 2013 | hook->mute_mode = HDA_VMUTE_FOLLOW_MASTER; |
Takashi Iwai | f29735c | 2012-03-13 07:55:10 +0100 | [diff] [blame] | 2014 | if (!expose_enum_ctl) |
| 2015 | return 0; |
Takashi Iwai | d2f344b | 2012-03-12 16:59:58 +0100 | [diff] [blame] | 2016 | kctl = snd_ctl_new1(&vmaster_mute_mode, hook); |
| 2017 | if (!kctl) |
| 2018 | return -ENOMEM; |
| 2019 | return snd_hda_ctl_add(codec, 0, kctl); |
| 2020 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2021 | EXPORT_SYMBOL_GPL(snd_hda_add_vmaster_hook); |
Takashi Iwai | d2f344b | 2012-03-12 16:59:58 +0100 | [diff] [blame] | 2022 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 2023 | /** |
| 2024 | * snd_hda_sync_vmaster_hook - Sync vmaster hook |
| 2025 | * @hook: the vmaster hook |
| 2026 | * |
| 2027 | * Call the hook with the current value for synchronization. |
| 2028 | * Should be called in init callback. |
Takashi Iwai | d2f344b | 2012-03-12 16:59:58 +0100 | [diff] [blame] | 2029 | */ |
| 2030 | void snd_hda_sync_vmaster_hook(struct hda_vmaster_mute_hook *hook) |
| 2031 | { |
| 2032 | if (!hook->hook || !hook->codec) |
| 2033 | return; |
Takashi Iwai | 594813f | 2013-04-17 18:16:05 +0200 | [diff] [blame] | 2034 | /* don't call vmaster hook in the destructor since it might have |
| 2035 | * been already destroyed |
| 2036 | */ |
| 2037 | if (hook->codec->bus->shutdown) |
| 2038 | return; |
Takashi Iwai | d2f344b | 2012-03-12 16:59:58 +0100 | [diff] [blame] | 2039 | switch (hook->mute_mode) { |
| 2040 | case HDA_VMUTE_FOLLOW_MASTER: |
| 2041 | snd_ctl_sync_vmaster_hook(hook->sw_kctl); |
| 2042 | break; |
| 2043 | default: |
| 2044 | hook->hook(hook->codec, hook->mute_mode); |
| 2045 | break; |
| 2046 | } |
| 2047 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2048 | EXPORT_SYMBOL_GPL(snd_hda_sync_vmaster_hook); |
Takashi Iwai | d2f344b | 2012-03-12 16:59:58 +0100 | [diff] [blame] | 2049 | |
| 2050 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2051 | /** |
| 2052 | * snd_hda_mixer_amp_switch_info - Info callback for a standard AMP mixer switch |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 2053 | * @kcontrol: referred ctl element |
| 2054 | * @uinfo: pointer to get/store the data |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2055 | * |
| 2056 | * The control element is supposed to have the private_value field |
| 2057 | * set up via HDA_COMPOSE_AMP_VAL*() or related macros. |
| 2058 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2059 | int snd_hda_mixer_amp_switch_info(struct snd_kcontrol *kcontrol, |
| 2060 | struct snd_ctl_elem_info *uinfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2061 | { |
| 2062 | int chs = get_amp_channels(kcontrol); |
| 2063 | |
| 2064 | uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN; |
| 2065 | uinfo->count = chs == 3 ? 2 : 1; |
| 2066 | uinfo->value.integer.min = 0; |
| 2067 | uinfo->value.integer.max = 1; |
| 2068 | return 0; |
| 2069 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2070 | EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_switch_info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2071 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2072 | /** |
| 2073 | * snd_hda_mixer_amp_switch_get - Get callback for a standard AMP mixer switch |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 2074 | * @kcontrol: ctl element |
| 2075 | * @ucontrol: pointer to get/store the data |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2076 | * |
| 2077 | * The control element is supposed to have the private_value field |
| 2078 | * set up via HDA_COMPOSE_AMP_VAL*() or related macros. |
| 2079 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2080 | int snd_hda_mixer_amp_switch_get(struct snd_kcontrol *kcontrol, |
| 2081 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2082 | { |
| 2083 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2084 | hda_nid_t nid = get_amp_nid(kcontrol); |
| 2085 | int chs = get_amp_channels(kcontrol); |
| 2086 | int dir = get_amp_direction(kcontrol); |
| 2087 | int idx = get_amp_index(kcontrol); |
| 2088 | long *valp = ucontrol->value.integer.value; |
| 2089 | |
| 2090 | if (chs & 1) |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2091 | *valp++ = (snd_hda_codec_amp_read(codec, nid, 0, dir, idx) & |
Takashi Iwai | 47fd830 | 2007-08-10 17:11:07 +0200 | [diff] [blame] | 2092 | HDA_AMP_MUTE) ? 0 : 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2093 | if (chs & 2) |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2094 | *valp = (snd_hda_codec_amp_read(codec, nid, 1, dir, idx) & |
Takashi Iwai | 47fd830 | 2007-08-10 17:11:07 +0200 | [diff] [blame] | 2095 | HDA_AMP_MUTE) ? 0 : 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2096 | return 0; |
| 2097 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2098 | EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_switch_get); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2099 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2100 | /** |
| 2101 | * snd_hda_mixer_amp_switch_put - Put callback for a standard AMP mixer switch |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 2102 | * @kcontrol: ctl element |
| 2103 | * @ucontrol: pointer to get/store the data |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2104 | * |
| 2105 | * The control element is supposed to have the private_value field |
| 2106 | * set up via HDA_COMPOSE_AMP_VAL*() or related macros. |
| 2107 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2108 | int snd_hda_mixer_amp_switch_put(struct snd_kcontrol *kcontrol, |
| 2109 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2110 | { |
| 2111 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2112 | hda_nid_t nid = get_amp_nid(kcontrol); |
| 2113 | int chs = get_amp_channels(kcontrol); |
| 2114 | int dir = get_amp_direction(kcontrol); |
| 2115 | int idx = get_amp_index(kcontrol); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2116 | long *valp = ucontrol->value.integer.value; |
| 2117 | int change = 0; |
| 2118 | |
Nicolas Graziano | b9f5a89 | 2005-07-29 12:17:20 +0200 | [diff] [blame] | 2119 | if (chs & 1) { |
Takashi Iwai | eeecd9d | 2015-02-25 15:18:50 +0100 | [diff] [blame] | 2120 | change = snd_hda_codec_amp_update(codec, nid, 0, dir, idx, |
| 2121 | HDA_AMP_MUTE, |
| 2122 | *valp ? 0 : HDA_AMP_MUTE); |
Nicolas Graziano | b9f5a89 | 2005-07-29 12:17:20 +0200 | [diff] [blame] | 2123 | valp++; |
| 2124 | } |
Takashi Iwai | 4a19fae | 2005-06-08 14:43:58 +0200 | [diff] [blame] | 2125 | if (chs & 2) |
Takashi Iwai | eeecd9d | 2015-02-25 15:18:50 +0100 | [diff] [blame] | 2126 | change |= snd_hda_codec_amp_update(codec, nid, 1, dir, idx, |
| 2127 | HDA_AMP_MUTE, |
| 2128 | *valp ? 0 : HDA_AMP_MUTE); |
Takashi Iwai | 9e5341b | 2010-09-21 09:57:06 +0200 | [diff] [blame] | 2129 | hda_call_check_power_status(codec, nid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2130 | return change; |
| 2131 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2132 | EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_switch_put); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2133 | |
| 2134 | /* |
Takashi Iwai | 985be54 | 2005-11-02 18:26:49 +0100 | [diff] [blame] | 2135 | * bound volume controls |
| 2136 | * |
| 2137 | * bind multiple volumes (# indices, from 0) |
| 2138 | */ |
| 2139 | |
| 2140 | #define AMP_VAL_IDX_SHIFT 19 |
| 2141 | #define AMP_VAL_IDX_MASK (0x0f<<19) |
| 2142 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2143 | /** |
| 2144 | * snd_hda_mixer_bind_switch_get - Get callback for a bound volume control |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 2145 | * @kcontrol: ctl element |
| 2146 | * @ucontrol: pointer to get/store the data |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2147 | * |
| 2148 | * The control element is supposed to have the private_value field |
| 2149 | * set up via HDA_BIND_MUTE*() macros. |
| 2150 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2151 | int snd_hda_mixer_bind_switch_get(struct snd_kcontrol *kcontrol, |
| 2152 | struct snd_ctl_elem_value *ucontrol) |
Takashi Iwai | 985be54 | 2005-11-02 18:26:49 +0100 | [diff] [blame] | 2153 | { |
| 2154 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2155 | unsigned long pval; |
| 2156 | int err; |
| 2157 | |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 2158 | mutex_lock(&codec->control_mutex); |
Takashi Iwai | 985be54 | 2005-11-02 18:26:49 +0100 | [diff] [blame] | 2159 | pval = kcontrol->private_value; |
| 2160 | kcontrol->private_value = pval & ~AMP_VAL_IDX_MASK; /* index 0 */ |
| 2161 | err = snd_hda_mixer_amp_switch_get(kcontrol, ucontrol); |
| 2162 | kcontrol->private_value = pval; |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 2163 | mutex_unlock(&codec->control_mutex); |
Takashi Iwai | 985be54 | 2005-11-02 18:26:49 +0100 | [diff] [blame] | 2164 | return err; |
| 2165 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2166 | EXPORT_SYMBOL_GPL(snd_hda_mixer_bind_switch_get); |
Takashi Iwai | 985be54 | 2005-11-02 18:26:49 +0100 | [diff] [blame] | 2167 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2168 | /** |
| 2169 | * snd_hda_mixer_bind_switch_put - Put callback for a bound volume control |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 2170 | * @kcontrol: ctl element |
| 2171 | * @ucontrol: pointer to get/store the data |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2172 | * |
| 2173 | * The control element is supposed to have the private_value field |
| 2174 | * set up via HDA_BIND_MUTE*() macros. |
| 2175 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2176 | int snd_hda_mixer_bind_switch_put(struct snd_kcontrol *kcontrol, |
| 2177 | struct snd_ctl_elem_value *ucontrol) |
Takashi Iwai | 985be54 | 2005-11-02 18:26:49 +0100 | [diff] [blame] | 2178 | { |
| 2179 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2180 | unsigned long pval; |
| 2181 | int i, indices, err = 0, change = 0; |
| 2182 | |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 2183 | mutex_lock(&codec->control_mutex); |
Takashi Iwai | 985be54 | 2005-11-02 18:26:49 +0100 | [diff] [blame] | 2184 | pval = kcontrol->private_value; |
| 2185 | indices = (pval & AMP_VAL_IDX_MASK) >> AMP_VAL_IDX_SHIFT; |
| 2186 | for (i = 0; i < indices; i++) { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2187 | kcontrol->private_value = (pval & ~AMP_VAL_IDX_MASK) | |
| 2188 | (i << AMP_VAL_IDX_SHIFT); |
Takashi Iwai | 985be54 | 2005-11-02 18:26:49 +0100 | [diff] [blame] | 2189 | err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol); |
| 2190 | if (err < 0) |
| 2191 | break; |
| 2192 | change |= err; |
| 2193 | } |
| 2194 | kcontrol->private_value = pval; |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 2195 | mutex_unlock(&codec->control_mutex); |
Takashi Iwai | 985be54 | 2005-11-02 18:26:49 +0100 | [diff] [blame] | 2196 | return err < 0 ? err : change; |
| 2197 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2198 | EXPORT_SYMBOL_GPL(snd_hda_mixer_bind_switch_put); |
Takashi Iwai | 985be54 | 2005-11-02 18:26:49 +0100 | [diff] [blame] | 2199 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2200 | /** |
| 2201 | * snd_hda_mixer_bind_ctls_info - Info callback for a generic bound control |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 2202 | * @kcontrol: referred ctl element |
| 2203 | * @uinfo: pointer to get/store the data |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2204 | * |
| 2205 | * The control element is supposed to have the private_value field |
| 2206 | * set up via HDA_BIND_VOL() or HDA_BIND_SW() macros. |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2207 | */ |
| 2208 | int snd_hda_mixer_bind_ctls_info(struct snd_kcontrol *kcontrol, |
| 2209 | struct snd_ctl_elem_info *uinfo) |
| 2210 | { |
| 2211 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2212 | struct hda_bind_ctls *c; |
| 2213 | int err; |
| 2214 | |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 2215 | mutex_lock(&codec->control_mutex); |
Serge A. Suchkov | 14c65f9 | 2008-02-22 18:43:16 +0100 | [diff] [blame] | 2216 | c = (struct hda_bind_ctls *)kcontrol->private_value; |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2217 | kcontrol->private_value = *c->values; |
| 2218 | err = c->ops->info(kcontrol, uinfo); |
| 2219 | kcontrol->private_value = (long)c; |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 2220 | mutex_unlock(&codec->control_mutex); |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2221 | return err; |
| 2222 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2223 | EXPORT_SYMBOL_GPL(snd_hda_mixer_bind_ctls_info); |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2224 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2225 | /** |
| 2226 | * snd_hda_mixer_bind_ctls_get - Get callback for a generic bound control |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 2227 | * @kcontrol: ctl element |
| 2228 | * @ucontrol: pointer to get/store the data |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2229 | * |
| 2230 | * The control element is supposed to have the private_value field |
| 2231 | * set up via HDA_BIND_VOL() or HDA_BIND_SW() macros. |
| 2232 | */ |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2233 | int snd_hda_mixer_bind_ctls_get(struct snd_kcontrol *kcontrol, |
| 2234 | struct snd_ctl_elem_value *ucontrol) |
| 2235 | { |
| 2236 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2237 | struct hda_bind_ctls *c; |
| 2238 | int err; |
| 2239 | |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 2240 | mutex_lock(&codec->control_mutex); |
Serge A. Suchkov | 14c65f9 | 2008-02-22 18:43:16 +0100 | [diff] [blame] | 2241 | c = (struct hda_bind_ctls *)kcontrol->private_value; |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2242 | kcontrol->private_value = *c->values; |
| 2243 | err = c->ops->get(kcontrol, ucontrol); |
| 2244 | kcontrol->private_value = (long)c; |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 2245 | mutex_unlock(&codec->control_mutex); |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2246 | return err; |
| 2247 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2248 | EXPORT_SYMBOL_GPL(snd_hda_mixer_bind_ctls_get); |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2249 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2250 | /** |
| 2251 | * snd_hda_mixer_bind_ctls_put - Put callback for a generic bound control |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 2252 | * @kcontrol: ctl element |
| 2253 | * @ucontrol: pointer to get/store the data |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2254 | * |
| 2255 | * The control element is supposed to have the private_value field |
| 2256 | * set up via HDA_BIND_VOL() or HDA_BIND_SW() macros. |
| 2257 | */ |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2258 | int snd_hda_mixer_bind_ctls_put(struct snd_kcontrol *kcontrol, |
| 2259 | struct snd_ctl_elem_value *ucontrol) |
| 2260 | { |
| 2261 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2262 | struct hda_bind_ctls *c; |
| 2263 | unsigned long *vals; |
| 2264 | int err = 0, change = 0; |
| 2265 | |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 2266 | mutex_lock(&codec->control_mutex); |
Serge A. Suchkov | 14c65f9 | 2008-02-22 18:43:16 +0100 | [diff] [blame] | 2267 | c = (struct hda_bind_ctls *)kcontrol->private_value; |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2268 | for (vals = c->values; *vals; vals++) { |
| 2269 | kcontrol->private_value = *vals; |
| 2270 | err = c->ops->put(kcontrol, ucontrol); |
| 2271 | if (err < 0) |
| 2272 | break; |
| 2273 | change |= err; |
| 2274 | } |
| 2275 | kcontrol->private_value = (long)c; |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 2276 | mutex_unlock(&codec->control_mutex); |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2277 | return err < 0 ? err : change; |
| 2278 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2279 | EXPORT_SYMBOL_GPL(snd_hda_mixer_bind_ctls_put); |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2280 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2281 | /** |
| 2282 | * snd_hda_mixer_bind_tlv - TLV callback for a generic bound control |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 2283 | * @kcontrol: ctl element |
| 2284 | * @op_flag: operation flag |
| 2285 | * @size: byte size of input TLV |
| 2286 | * @tlv: TLV data |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2287 | * |
| 2288 | * The control element is supposed to have the private_value field |
| 2289 | * set up via HDA_BIND_VOL() macro. |
| 2290 | */ |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2291 | int snd_hda_mixer_bind_tlv(struct snd_kcontrol *kcontrol, int op_flag, |
| 2292 | unsigned int size, unsigned int __user *tlv) |
| 2293 | { |
| 2294 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2295 | struct hda_bind_ctls *c; |
| 2296 | int err; |
| 2297 | |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 2298 | mutex_lock(&codec->control_mutex); |
Serge A. Suchkov | 14c65f9 | 2008-02-22 18:43:16 +0100 | [diff] [blame] | 2299 | c = (struct hda_bind_ctls *)kcontrol->private_value; |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2300 | kcontrol->private_value = *c->values; |
| 2301 | err = c->ops->tlv(kcontrol, op_flag, size, tlv); |
| 2302 | kcontrol->private_value = (long)c; |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 2303 | mutex_unlock(&codec->control_mutex); |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2304 | return err; |
| 2305 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2306 | EXPORT_SYMBOL_GPL(snd_hda_mixer_bind_tlv); |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2307 | |
| 2308 | struct hda_ctl_ops snd_hda_bind_vol = { |
| 2309 | .info = snd_hda_mixer_amp_volume_info, |
| 2310 | .get = snd_hda_mixer_amp_volume_get, |
| 2311 | .put = snd_hda_mixer_amp_volume_put, |
| 2312 | .tlv = snd_hda_mixer_amp_tlv |
| 2313 | }; |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2314 | EXPORT_SYMBOL_GPL(snd_hda_bind_vol); |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2315 | |
| 2316 | struct hda_ctl_ops snd_hda_bind_sw = { |
| 2317 | .info = snd_hda_mixer_amp_switch_info, |
| 2318 | .get = snd_hda_mixer_amp_switch_get, |
| 2319 | .put = snd_hda_mixer_amp_switch_put, |
| 2320 | .tlv = snd_hda_mixer_amp_tlv |
| 2321 | }; |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2322 | EXPORT_SYMBOL_GPL(snd_hda_bind_sw); |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2323 | |
| 2324 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2325 | * SPDIF out controls |
| 2326 | */ |
| 2327 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2328 | static int snd_hda_spdif_mask_info(struct snd_kcontrol *kcontrol, |
| 2329 | struct snd_ctl_elem_info *uinfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2330 | { |
| 2331 | uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958; |
| 2332 | uinfo->count = 1; |
| 2333 | return 0; |
| 2334 | } |
| 2335 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2336 | static int snd_hda_spdif_cmask_get(struct snd_kcontrol *kcontrol, |
| 2337 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2338 | { |
| 2339 | ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL | |
| 2340 | IEC958_AES0_NONAUDIO | |
| 2341 | IEC958_AES0_CON_EMPHASIS_5015 | |
| 2342 | IEC958_AES0_CON_NOT_COPYRIGHT; |
| 2343 | ucontrol->value.iec958.status[1] = IEC958_AES1_CON_CATEGORY | |
| 2344 | IEC958_AES1_CON_ORIGINAL; |
| 2345 | return 0; |
| 2346 | } |
| 2347 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2348 | static int snd_hda_spdif_pmask_get(struct snd_kcontrol *kcontrol, |
| 2349 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2350 | { |
| 2351 | ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL | |
| 2352 | IEC958_AES0_NONAUDIO | |
| 2353 | IEC958_AES0_PRO_EMPHASIS_5015; |
| 2354 | return 0; |
| 2355 | } |
| 2356 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2357 | static int snd_hda_spdif_default_get(struct snd_kcontrol *kcontrol, |
| 2358 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2359 | { |
| 2360 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 2361 | int idx = kcontrol->private_value; |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 2362 | struct hda_spdif_out *spdif; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2363 | |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 2364 | mutex_lock(&codec->spdif_mutex); |
| 2365 | spdif = snd_array_elem(&codec->spdif_out, idx); |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 2366 | ucontrol->value.iec958.status[0] = spdif->status & 0xff; |
| 2367 | ucontrol->value.iec958.status[1] = (spdif->status >> 8) & 0xff; |
| 2368 | ucontrol->value.iec958.status[2] = (spdif->status >> 16) & 0xff; |
| 2369 | ucontrol->value.iec958.status[3] = (spdif->status >> 24) & 0xff; |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 2370 | mutex_unlock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2371 | |
| 2372 | return 0; |
| 2373 | } |
| 2374 | |
| 2375 | /* convert from SPDIF status bits to HDA SPDIF bits |
| 2376 | * bit 0 (DigEn) is always set zero (to be filled later) |
| 2377 | */ |
| 2378 | static unsigned short convert_from_spdif_status(unsigned int sbits) |
| 2379 | { |
| 2380 | unsigned short val = 0; |
| 2381 | |
| 2382 | if (sbits & IEC958_AES0_PROFESSIONAL) |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2383 | val |= AC_DIG1_PROFESSIONAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2384 | if (sbits & IEC958_AES0_NONAUDIO) |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2385 | val |= AC_DIG1_NONAUDIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2386 | if (sbits & IEC958_AES0_PROFESSIONAL) { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2387 | if ((sbits & IEC958_AES0_PRO_EMPHASIS) == |
| 2388 | IEC958_AES0_PRO_EMPHASIS_5015) |
| 2389 | val |= AC_DIG1_EMPHASIS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2390 | } else { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2391 | if ((sbits & IEC958_AES0_CON_EMPHASIS) == |
| 2392 | IEC958_AES0_CON_EMPHASIS_5015) |
| 2393 | val |= AC_DIG1_EMPHASIS; |
| 2394 | if (!(sbits & IEC958_AES0_CON_NOT_COPYRIGHT)) |
| 2395 | val |= AC_DIG1_COPYRIGHT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2396 | if (sbits & (IEC958_AES1_CON_ORIGINAL << 8)) |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2397 | val |= AC_DIG1_LEVEL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2398 | val |= sbits & (IEC958_AES1_CON_CATEGORY << 8); |
| 2399 | } |
| 2400 | return val; |
| 2401 | } |
| 2402 | |
| 2403 | /* convert to SPDIF status bits from HDA SPDIF bits |
| 2404 | */ |
| 2405 | static unsigned int convert_to_spdif_status(unsigned short val) |
| 2406 | { |
| 2407 | unsigned int sbits = 0; |
| 2408 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2409 | if (val & AC_DIG1_NONAUDIO) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2410 | sbits |= IEC958_AES0_NONAUDIO; |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2411 | if (val & AC_DIG1_PROFESSIONAL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2412 | sbits |= IEC958_AES0_PROFESSIONAL; |
| 2413 | if (sbits & IEC958_AES0_PROFESSIONAL) { |
Takashi Iwai | a686fd1 | 2013-03-20 15:42:00 +0100 | [diff] [blame] | 2414 | if (val & AC_DIG1_EMPHASIS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2415 | sbits |= IEC958_AES0_PRO_EMPHASIS_5015; |
| 2416 | } else { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2417 | if (val & AC_DIG1_EMPHASIS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2418 | sbits |= IEC958_AES0_CON_EMPHASIS_5015; |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2419 | if (!(val & AC_DIG1_COPYRIGHT)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2420 | sbits |= IEC958_AES0_CON_NOT_COPYRIGHT; |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2421 | if (val & AC_DIG1_LEVEL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2422 | sbits |= (IEC958_AES1_CON_ORIGINAL << 8); |
| 2423 | sbits |= val & (0x7f << 8); |
| 2424 | } |
| 2425 | return sbits; |
| 2426 | } |
| 2427 | |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 2428 | /* set digital convert verbs both for the given NID and its slaves */ |
| 2429 | static void set_dig_out(struct hda_codec *codec, hda_nid_t nid, |
Takashi Iwai | a551d91 | 2015-02-26 12:34:49 +0100 | [diff] [blame] | 2430 | int mask, int val) |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 2431 | { |
Takashi Iwai | dda1441 | 2011-05-02 11:29:30 +0200 | [diff] [blame] | 2432 | const hda_nid_t *d; |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 2433 | |
Takashi Iwai | a551d91 | 2015-02-26 12:34:49 +0100 | [diff] [blame] | 2434 | snd_hdac_regmap_update(&codec->core, nid, AC_VERB_SET_DIGI_CONVERT_1, |
| 2435 | mask, val); |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 2436 | d = codec->slave_dig_outs; |
| 2437 | if (!d) |
| 2438 | return; |
| 2439 | for (; *d; d++) |
Takashi Iwai | a551d91 | 2015-02-26 12:34:49 +0100 | [diff] [blame] | 2440 | snd_hdac_regmap_update(&codec->core, nid, |
| 2441 | AC_VERB_SET_DIGI_CONVERT_1, mask, val); |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 2442 | } |
| 2443 | |
| 2444 | static inline void set_dig_out_convert(struct hda_codec *codec, hda_nid_t nid, |
| 2445 | int dig1, int dig2) |
| 2446 | { |
Takashi Iwai | a551d91 | 2015-02-26 12:34:49 +0100 | [diff] [blame] | 2447 | unsigned int mask = 0; |
| 2448 | unsigned int val = 0; |
| 2449 | |
| 2450 | if (dig1 != -1) { |
| 2451 | mask |= 0xff; |
| 2452 | val = dig1; |
| 2453 | } |
| 2454 | if (dig2 != -1) { |
| 2455 | mask |= 0xff00; |
| 2456 | val |= dig2 << 8; |
| 2457 | } |
| 2458 | set_dig_out(codec, nid, mask, val); |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 2459 | } |
| 2460 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2461 | static int snd_hda_spdif_default_put(struct snd_kcontrol *kcontrol, |
| 2462 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2463 | { |
| 2464 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 2465 | int idx = kcontrol->private_value; |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 2466 | struct hda_spdif_out *spdif; |
| 2467 | hda_nid_t nid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2468 | unsigned short val; |
| 2469 | int change; |
| 2470 | |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 2471 | mutex_lock(&codec->spdif_mutex); |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 2472 | spdif = snd_array_elem(&codec->spdif_out, idx); |
| 2473 | nid = spdif->nid; |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 2474 | spdif->status = ucontrol->value.iec958.status[0] | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2475 | ((unsigned int)ucontrol->value.iec958.status[1] << 8) | |
| 2476 | ((unsigned int)ucontrol->value.iec958.status[2] << 16) | |
| 2477 | ((unsigned int)ucontrol->value.iec958.status[3] << 24); |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 2478 | val = convert_from_spdif_status(spdif->status); |
| 2479 | val |= spdif->ctls & 1; |
| 2480 | change = spdif->ctls != val; |
| 2481 | spdif->ctls = val; |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 2482 | if (change && nid != (u16)-1) |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 2483 | set_dig_out_convert(codec, nid, val & 0xff, (val >> 8) & 0xff); |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 2484 | mutex_unlock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2485 | return change; |
| 2486 | } |
| 2487 | |
Takashi Iwai | a5ce889 | 2007-07-23 15:42:26 +0200 | [diff] [blame] | 2488 | #define snd_hda_spdif_out_switch_info snd_ctl_boolean_mono_info |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2489 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2490 | static int snd_hda_spdif_out_switch_get(struct snd_kcontrol *kcontrol, |
| 2491 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2492 | { |
| 2493 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 2494 | int idx = kcontrol->private_value; |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 2495 | struct hda_spdif_out *spdif; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2496 | |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 2497 | mutex_lock(&codec->spdif_mutex); |
| 2498 | spdif = snd_array_elem(&codec->spdif_out, idx); |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 2499 | ucontrol->value.integer.value[0] = spdif->ctls & AC_DIG1_ENABLE; |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 2500 | mutex_unlock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2501 | return 0; |
| 2502 | } |
| 2503 | |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 2504 | static inline void set_spdif_ctls(struct hda_codec *codec, hda_nid_t nid, |
| 2505 | int dig1, int dig2) |
| 2506 | { |
| 2507 | set_dig_out_convert(codec, nid, dig1, dig2); |
| 2508 | /* unmute amp switch (if any) */ |
| 2509 | if ((get_wcaps(codec, nid) & AC_WCAP_OUT_AMP) && |
| 2510 | (dig1 & AC_DIG1_ENABLE)) |
| 2511 | snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0, |
| 2512 | HDA_AMP_MUTE, 0); |
| 2513 | } |
| 2514 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2515 | static int snd_hda_spdif_out_switch_put(struct snd_kcontrol *kcontrol, |
| 2516 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2517 | { |
| 2518 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 2519 | int idx = kcontrol->private_value; |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 2520 | struct hda_spdif_out *spdif; |
| 2521 | hda_nid_t nid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2522 | unsigned short val; |
| 2523 | int change; |
| 2524 | |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 2525 | mutex_lock(&codec->spdif_mutex); |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 2526 | spdif = snd_array_elem(&codec->spdif_out, idx); |
| 2527 | nid = spdif->nid; |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 2528 | val = spdif->ctls & ~AC_DIG1_ENABLE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2529 | if (ucontrol->value.integer.value[0]) |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2530 | val |= AC_DIG1_ENABLE; |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 2531 | change = spdif->ctls != val; |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 2532 | spdif->ctls = val; |
| 2533 | if (change && nid != (u16)-1) |
| 2534 | set_spdif_ctls(codec, nid, val & 0xff, -1); |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 2535 | mutex_unlock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2536 | return change; |
| 2537 | } |
| 2538 | |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 2539 | static struct snd_kcontrol_new dig_mixes[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2540 | { |
| 2541 | .access = SNDRV_CTL_ELEM_ACCESS_READ, |
| 2542 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 2543 | .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, CON_MASK), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2544 | .info = snd_hda_spdif_mask_info, |
| 2545 | .get = snd_hda_spdif_cmask_get, |
| 2546 | }, |
| 2547 | { |
| 2548 | .access = SNDRV_CTL_ELEM_ACCESS_READ, |
| 2549 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 2550 | .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, PRO_MASK), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2551 | .info = snd_hda_spdif_mask_info, |
| 2552 | .get = snd_hda_spdif_pmask_get, |
| 2553 | }, |
| 2554 | { |
| 2555 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 2556 | .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, DEFAULT), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2557 | .info = snd_hda_spdif_mask_info, |
| 2558 | .get = snd_hda_spdif_default_get, |
| 2559 | .put = snd_hda_spdif_default_put, |
| 2560 | }, |
| 2561 | { |
| 2562 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 2563 | .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, SWITCH), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2564 | .info = snd_hda_spdif_out_switch_info, |
| 2565 | .get = snd_hda_spdif_out_switch_get, |
| 2566 | .put = snd_hda_spdif_out_switch_put, |
| 2567 | }, |
| 2568 | { } /* end */ |
| 2569 | }; |
| 2570 | |
| 2571 | /** |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 2572 | * snd_hda_create_dig_out_ctls - create Output SPDIF-related controls |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2573 | * @codec: the HDA codec |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 2574 | * @associated_nid: NID that new ctls associated with |
| 2575 | * @cvt_nid: converter NID |
| 2576 | * @type: HDA_PCM_TYPE_* |
| 2577 | * Creates controls related with the digital output. |
| 2578 | * Called from each patch supporting the digital out. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2579 | * |
| 2580 | * Returns 0 if successful, or a negative error code. |
| 2581 | */ |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 2582 | int snd_hda_create_dig_out_ctls(struct hda_codec *codec, |
| 2583 | hda_nid_t associated_nid, |
| 2584 | hda_nid_t cvt_nid, |
| 2585 | int type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2586 | { |
| 2587 | int err; |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 2588 | struct snd_kcontrol *kctl; |
| 2589 | struct snd_kcontrol_new *dig_mix; |
Takashi Iwai | ea9b43a | 2013-02-12 17:02:41 +0100 | [diff] [blame] | 2590 | int idx = 0; |
Takashi Iwai | a551d91 | 2015-02-26 12:34:49 +0100 | [diff] [blame] | 2591 | int val = 0; |
Takashi Iwai | ea9b43a | 2013-02-12 17:02:41 +0100 | [diff] [blame] | 2592 | const int spdif_index = 16; |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 2593 | struct hda_spdif_out *spdif; |
Takashi Iwai | ea9b43a | 2013-02-12 17:02:41 +0100 | [diff] [blame] | 2594 | struct hda_bus *bus = codec->bus; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2595 | |
Takashi Iwai | ea9b43a | 2013-02-12 17:02:41 +0100 | [diff] [blame] | 2596 | if (bus->primary_dig_out_type == HDA_PCM_TYPE_HDMI && |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 2597 | type == HDA_PCM_TYPE_SPDIF) { |
Takashi Iwai | ea9b43a | 2013-02-12 17:02:41 +0100 | [diff] [blame] | 2598 | idx = spdif_index; |
| 2599 | } else if (bus->primary_dig_out_type == HDA_PCM_TYPE_SPDIF && |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 2600 | type == HDA_PCM_TYPE_HDMI) { |
Takashi Iwai | ea9b43a | 2013-02-12 17:02:41 +0100 | [diff] [blame] | 2601 | /* suppose a single SPDIF device */ |
| 2602 | for (dig_mix = dig_mixes; dig_mix->name; dig_mix++) { |
| 2603 | kctl = find_mixer_ctl(codec, dig_mix->name, 0, 0); |
| 2604 | if (!kctl) |
| 2605 | break; |
| 2606 | kctl->id.index = spdif_index; |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 2607 | } |
Takashi Iwai | ea9b43a | 2013-02-12 17:02:41 +0100 | [diff] [blame] | 2608 | bus->primary_dig_out_type = HDA_PCM_TYPE_HDMI; |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 2609 | } |
Takashi Iwai | ea9b43a | 2013-02-12 17:02:41 +0100 | [diff] [blame] | 2610 | if (!bus->primary_dig_out_type) |
| 2611 | bus->primary_dig_out_type = type; |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 2612 | |
Takashi Iwai | ea9b43a | 2013-02-12 17:02:41 +0100 | [diff] [blame] | 2613 | idx = find_empty_mixer_ctl_idx(codec, "IEC958 Playback Switch", idx); |
Takashi Iwai | 1afe206 | 2010-12-23 10:17:52 +0100 | [diff] [blame] | 2614 | if (idx < 0) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 2615 | codec_err(codec, "too many IEC958 outputs\n"); |
Takashi Iwai | 09f9970 | 2008-02-04 12:31:13 +0100 | [diff] [blame] | 2616 | return -EBUSY; |
| 2617 | } |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 2618 | spdif = snd_array_new(&codec->spdif_out); |
Mengdong Lin | 25336e8 | 2013-03-07 14:10:25 -0500 | [diff] [blame] | 2619 | if (!spdif) |
| 2620 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2621 | for (dig_mix = dig_mixes; dig_mix->name; dig_mix++) { |
| 2622 | kctl = snd_ctl_new1(dig_mix, codec); |
Takashi Iwai | b91f080 | 2008-11-04 08:43:08 +0100 | [diff] [blame] | 2623 | if (!kctl) |
| 2624 | return -ENOMEM; |
Takashi Iwai | 09f9970 | 2008-02-04 12:31:13 +0100 | [diff] [blame] | 2625 | kctl->id.index = idx; |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 2626 | kctl->private_value = codec->spdif_out.used - 1; |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 2627 | err = snd_hda_ctl_add(codec, associated_nid, kctl); |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2628 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2629 | return err; |
| 2630 | } |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 2631 | spdif->nid = cvt_nid; |
Takashi Iwai | a551d91 | 2015-02-26 12:34:49 +0100 | [diff] [blame] | 2632 | snd_hdac_regmap_read(&codec->core, cvt_nid, |
| 2633 | AC_VERB_GET_DIGI_CONVERT_1, &val); |
| 2634 | spdif->ctls = val; |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 2635 | spdif->status = convert_to_spdif_status(spdif->ctls); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2636 | return 0; |
| 2637 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2638 | EXPORT_SYMBOL_GPL(snd_hda_create_dig_out_ctls); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2639 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 2640 | /** |
| 2641 | * snd_hda_spdif_out_of_nid - get the hda_spdif_out entry from the given NID |
| 2642 | * @codec: the HDA codec |
| 2643 | * @nid: widget NID |
| 2644 | * |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 2645 | * call within spdif_mutex lock |
| 2646 | */ |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 2647 | struct hda_spdif_out *snd_hda_spdif_out_of_nid(struct hda_codec *codec, |
| 2648 | hda_nid_t nid) |
| 2649 | { |
| 2650 | int i; |
| 2651 | for (i = 0; i < codec->spdif_out.used; i++) { |
| 2652 | struct hda_spdif_out *spdif = |
| 2653 | snd_array_elem(&codec->spdif_out, i); |
| 2654 | if (spdif->nid == nid) |
| 2655 | return spdif; |
| 2656 | } |
| 2657 | return NULL; |
| 2658 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2659 | EXPORT_SYMBOL_GPL(snd_hda_spdif_out_of_nid); |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 2660 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 2661 | /** |
| 2662 | * snd_hda_spdif_ctls_unassign - Unassign the given SPDIF ctl |
| 2663 | * @codec: the HDA codec |
| 2664 | * @idx: the SPDIF ctl index |
| 2665 | * |
| 2666 | * Unassign the widget from the given SPDIF control. |
| 2667 | */ |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 2668 | void snd_hda_spdif_ctls_unassign(struct hda_codec *codec, int idx) |
| 2669 | { |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 2670 | struct hda_spdif_out *spdif; |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 2671 | |
| 2672 | mutex_lock(&codec->spdif_mutex); |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 2673 | spdif = snd_array_elem(&codec->spdif_out, idx); |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 2674 | spdif->nid = (u16)-1; |
| 2675 | mutex_unlock(&codec->spdif_mutex); |
| 2676 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2677 | EXPORT_SYMBOL_GPL(snd_hda_spdif_ctls_unassign); |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 2678 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 2679 | /** |
| 2680 | * snd_hda_spdif_ctls_assign - Assign the SPDIF controls to the given NID |
| 2681 | * @codec: the HDA codec |
| 2682 | * @idx: the SPDIF ctl idx |
| 2683 | * @nid: widget NID |
| 2684 | * |
| 2685 | * Assign the widget to the SPDIF control with the given index. |
| 2686 | */ |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 2687 | void snd_hda_spdif_ctls_assign(struct hda_codec *codec, int idx, hda_nid_t nid) |
| 2688 | { |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 2689 | struct hda_spdif_out *spdif; |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 2690 | unsigned short val; |
| 2691 | |
| 2692 | mutex_lock(&codec->spdif_mutex); |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 2693 | spdif = snd_array_elem(&codec->spdif_out, idx); |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 2694 | if (spdif->nid != nid) { |
| 2695 | spdif->nid = nid; |
| 2696 | val = spdif->ctls; |
| 2697 | set_spdif_ctls(codec, nid, val & 0xff, (val >> 8) & 0xff); |
| 2698 | } |
| 2699 | mutex_unlock(&codec->spdif_mutex); |
| 2700 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2701 | EXPORT_SYMBOL_GPL(snd_hda_spdif_ctls_assign); |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 2702 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2703 | /* |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 2704 | * SPDIF sharing with analog output |
| 2705 | */ |
| 2706 | static int spdif_share_sw_get(struct snd_kcontrol *kcontrol, |
| 2707 | struct snd_ctl_elem_value *ucontrol) |
| 2708 | { |
| 2709 | struct hda_multi_out *mout = snd_kcontrol_chip(kcontrol); |
| 2710 | ucontrol->value.integer.value[0] = mout->share_spdif; |
| 2711 | return 0; |
| 2712 | } |
| 2713 | |
| 2714 | static int spdif_share_sw_put(struct snd_kcontrol *kcontrol, |
| 2715 | struct snd_ctl_elem_value *ucontrol) |
| 2716 | { |
| 2717 | struct hda_multi_out *mout = snd_kcontrol_chip(kcontrol); |
| 2718 | mout->share_spdif = !!ucontrol->value.integer.value[0]; |
| 2719 | return 0; |
| 2720 | } |
| 2721 | |
| 2722 | static struct snd_kcontrol_new spdif_share_sw = { |
| 2723 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 2724 | .name = "IEC958 Default PCM Playback Switch", |
| 2725 | .info = snd_ctl_boolean_mono_info, |
| 2726 | .get = spdif_share_sw_get, |
| 2727 | .put = spdif_share_sw_put, |
| 2728 | }; |
| 2729 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2730 | /** |
| 2731 | * snd_hda_create_spdif_share_sw - create Default PCM switch |
| 2732 | * @codec: the HDA codec |
| 2733 | * @mout: multi-out instance |
| 2734 | */ |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 2735 | int snd_hda_create_spdif_share_sw(struct hda_codec *codec, |
| 2736 | struct hda_multi_out *mout) |
| 2737 | { |
Mengdong Lin | 4c7a548 | 2013-03-07 14:11:05 -0500 | [diff] [blame] | 2738 | struct snd_kcontrol *kctl; |
| 2739 | |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 2740 | if (!mout->dig_out_nid) |
| 2741 | return 0; |
Mengdong Lin | 4c7a548 | 2013-03-07 14:11:05 -0500 | [diff] [blame] | 2742 | |
| 2743 | kctl = snd_ctl_new1(&spdif_share_sw, mout); |
| 2744 | if (!kctl) |
| 2745 | return -ENOMEM; |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 2746 | /* ATTENTION: here mout is passed as private_data, instead of codec */ |
Mengdong Lin | 4c7a548 | 2013-03-07 14:11:05 -0500 | [diff] [blame] | 2747 | return snd_hda_ctl_add(codec, mout->dig_out_nid, kctl); |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 2748 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2749 | EXPORT_SYMBOL_GPL(snd_hda_create_spdif_share_sw); |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 2750 | |
| 2751 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2752 | * SPDIF input |
| 2753 | */ |
| 2754 | |
| 2755 | #define snd_hda_spdif_in_switch_info snd_hda_spdif_out_switch_info |
| 2756 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2757 | static int snd_hda_spdif_in_switch_get(struct snd_kcontrol *kcontrol, |
| 2758 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2759 | { |
| 2760 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2761 | |
| 2762 | ucontrol->value.integer.value[0] = codec->spdif_in_enable; |
| 2763 | return 0; |
| 2764 | } |
| 2765 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2766 | static int snd_hda_spdif_in_switch_put(struct snd_kcontrol *kcontrol, |
| 2767 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2768 | { |
| 2769 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2770 | hda_nid_t nid = kcontrol->private_value; |
| 2771 | unsigned int val = !!ucontrol->value.integer.value[0]; |
| 2772 | int change; |
| 2773 | |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 2774 | mutex_lock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2775 | change = codec->spdif_in_enable != val; |
Takashi Iwai | 82beb8f | 2007-08-10 17:09:26 +0200 | [diff] [blame] | 2776 | if (change) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2777 | codec->spdif_in_enable = val; |
Takashi Iwai | a551d91 | 2015-02-26 12:34:49 +0100 | [diff] [blame] | 2778 | snd_hdac_regmap_write(&codec->core, nid, |
| 2779 | AC_VERB_SET_DIGI_CONVERT_1, val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2780 | } |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 2781 | mutex_unlock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2782 | return change; |
| 2783 | } |
| 2784 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2785 | static int snd_hda_spdif_in_status_get(struct snd_kcontrol *kcontrol, |
| 2786 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2787 | { |
| 2788 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2789 | hda_nid_t nid = kcontrol->private_value; |
Takashi Iwai | a551d91 | 2015-02-26 12:34:49 +0100 | [diff] [blame] | 2790 | unsigned int val; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2791 | unsigned int sbits; |
| 2792 | |
Takashi Iwai | a551d91 | 2015-02-26 12:34:49 +0100 | [diff] [blame] | 2793 | snd_hdac_regmap_read(&codec->core, nid, |
| 2794 | AC_VERB_GET_DIGI_CONVERT_1, &val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2795 | sbits = convert_to_spdif_status(val); |
| 2796 | ucontrol->value.iec958.status[0] = sbits; |
| 2797 | ucontrol->value.iec958.status[1] = sbits >> 8; |
| 2798 | ucontrol->value.iec958.status[2] = sbits >> 16; |
| 2799 | ucontrol->value.iec958.status[3] = sbits >> 24; |
| 2800 | return 0; |
| 2801 | } |
| 2802 | |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 2803 | static struct snd_kcontrol_new dig_in_ctls[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2804 | { |
| 2805 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 2806 | .name = SNDRV_CTL_NAME_IEC958("", CAPTURE, SWITCH), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2807 | .info = snd_hda_spdif_in_switch_info, |
| 2808 | .get = snd_hda_spdif_in_switch_get, |
| 2809 | .put = snd_hda_spdif_in_switch_put, |
| 2810 | }, |
| 2811 | { |
| 2812 | .access = SNDRV_CTL_ELEM_ACCESS_READ, |
| 2813 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 2814 | .name = SNDRV_CTL_NAME_IEC958("", CAPTURE, DEFAULT), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2815 | .info = snd_hda_spdif_mask_info, |
| 2816 | .get = snd_hda_spdif_in_status_get, |
| 2817 | }, |
| 2818 | { } /* end */ |
| 2819 | }; |
| 2820 | |
| 2821 | /** |
| 2822 | * snd_hda_create_spdif_in_ctls - create Input SPDIF-related controls |
| 2823 | * @codec: the HDA codec |
| 2824 | * @nid: audio in widget NID |
| 2825 | * |
| 2826 | * Creates controls related with the SPDIF input. |
| 2827 | * Called from each patch supporting the SPDIF in. |
| 2828 | * |
| 2829 | * Returns 0 if successful, or a negative error code. |
| 2830 | */ |
Takashi Iwai | 12f288b | 2007-08-02 15:51:59 +0200 | [diff] [blame] | 2831 | int snd_hda_create_spdif_in_ctls(struct hda_codec *codec, hda_nid_t nid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2832 | { |
| 2833 | int err; |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 2834 | struct snd_kcontrol *kctl; |
| 2835 | struct snd_kcontrol_new *dig_mix; |
Takashi Iwai | 09f9970 | 2008-02-04 12:31:13 +0100 | [diff] [blame] | 2836 | int idx; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2837 | |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 2838 | idx = find_empty_mixer_ctl_idx(codec, "IEC958 Capture Switch", 0); |
Takashi Iwai | 1afe206 | 2010-12-23 10:17:52 +0100 | [diff] [blame] | 2839 | if (idx < 0) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 2840 | codec_err(codec, "too many IEC958 inputs\n"); |
Takashi Iwai | 09f9970 | 2008-02-04 12:31:13 +0100 | [diff] [blame] | 2841 | return -EBUSY; |
| 2842 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2843 | for (dig_mix = dig_in_ctls; dig_mix->name; dig_mix++) { |
| 2844 | kctl = snd_ctl_new1(dig_mix, codec); |
Takashi Iwai | c8dcdf8 | 2009-02-06 16:21:20 +0100 | [diff] [blame] | 2845 | if (!kctl) |
| 2846 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2847 | kctl->private_value = nid; |
Jaroslav Kysela | 3911a4c | 2009-11-11 13:43:01 +0100 | [diff] [blame] | 2848 | err = snd_hda_ctl_add(codec, nid, kctl); |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2849 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2850 | return err; |
| 2851 | } |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2852 | codec->spdif_in_enable = |
Andrew Paprocki | 3982d17 | 2007-12-19 12:13:44 +0100 | [diff] [blame] | 2853 | snd_hda_codec_read(codec, nid, 0, |
| 2854 | AC_VERB_GET_DIGI_CONVERT_1, 0) & |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2855 | AC_DIG1_ENABLE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2856 | return 0; |
| 2857 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2858 | EXPORT_SYMBOL_GPL(snd_hda_create_spdif_in_ctls); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2859 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 2860 | /** |
| 2861 | * snd_hda_codec_set_power_to_all - Set the power state to all widgets |
| 2862 | * @codec: the HDA codec |
| 2863 | * @fg: function group (not used now) |
| 2864 | * @power_state: the power state to set (AC_PWRST_*) |
| 2865 | * |
| 2866 | * Set the given power state to all widgets that have the power control. |
| 2867 | * If the codec has power_filter set, it evaluates the power state and |
| 2868 | * filter out if it's unchanged as D3. |
| 2869 | */ |
Takashi Iwai | 4d7fbdb | 2011-07-26 10:33:10 +0200 | [diff] [blame] | 2870 | void snd_hda_codec_set_power_to_all(struct hda_codec *codec, hda_nid_t fg, |
Takashi Iwai | 9419ab6 | 2013-01-24 17:23:35 +0100 | [diff] [blame] | 2871 | unsigned int power_state) |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 2872 | { |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 2873 | hda_nid_t nid; |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 2874 | |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 2875 | for_each_hda_codec_node(nid, codec) { |
Takashi Iwai | 7eba5c9 | 2007-11-14 14:53:42 +0100 | [diff] [blame] | 2876 | unsigned int wcaps = get_wcaps(codec, nid); |
Takashi Iwai | 9419ab6 | 2013-01-24 17:23:35 +0100 | [diff] [blame] | 2877 | unsigned int state = power_state; |
Takashi Iwai | 4d7fbdb | 2011-07-26 10:33:10 +0200 | [diff] [blame] | 2878 | if (!(wcaps & AC_WCAP_POWER)) |
| 2879 | continue; |
Takashi Iwai | 9419ab6 | 2013-01-24 17:23:35 +0100 | [diff] [blame] | 2880 | if (codec->power_filter) { |
| 2881 | state = codec->power_filter(codec, nid, power_state); |
| 2882 | if (state != power_state && power_state == AC_PWRST_D3) |
Takashi Iwai | 4d7fbdb | 2011-07-26 10:33:10 +0200 | [diff] [blame] | 2883 | continue; |
Takashi Iwai | 1194b5b | 2007-10-10 10:04:26 +0200 | [diff] [blame] | 2884 | } |
Takashi Iwai | 4d7fbdb | 2011-07-26 10:33:10 +0200 | [diff] [blame] | 2885 | snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_POWER_STATE, |
Takashi Iwai | 9419ab6 | 2013-01-24 17:23:35 +0100 | [diff] [blame] | 2886 | state); |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 2887 | } |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 2888 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2889 | EXPORT_SYMBOL_GPL(snd_hda_codec_set_power_to_all); |
Takashi Iwai | 4d7fbdb | 2011-07-26 10:33:10 +0200 | [diff] [blame] | 2890 | |
| 2891 | /* |
Takashi Iwai | 432c641 | 2012-08-28 09:59:20 -0700 | [diff] [blame] | 2892 | * wait until the state is reached, returns the current state |
| 2893 | */ |
| 2894 | static unsigned int hda_sync_power_state(struct hda_codec *codec, |
| 2895 | hda_nid_t fg, |
| 2896 | unsigned int power_state) |
| 2897 | { |
| 2898 | unsigned long end_time = jiffies + msecs_to_jiffies(500); |
| 2899 | unsigned int state, actual_state; |
| 2900 | |
| 2901 | for (;;) { |
| 2902 | state = snd_hda_codec_read(codec, fg, 0, |
| 2903 | AC_VERB_GET_POWER_STATE, 0); |
| 2904 | if (state & AC_PWRST_ERROR) |
| 2905 | break; |
| 2906 | actual_state = (state >> 4) & 0x0f; |
| 2907 | if (actual_state == power_state) |
| 2908 | break; |
| 2909 | if (time_after_eq(jiffies, end_time)) |
| 2910 | break; |
| 2911 | /* wait until the codec reachs to the target state */ |
| 2912 | msleep(1); |
| 2913 | } |
| 2914 | return state; |
| 2915 | } |
| 2916 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 2917 | /** |
| 2918 | * snd_hda_codec_eapd_power_filter - A power filter callback for EAPD |
| 2919 | * @codec: the HDA codec |
| 2920 | * @nid: widget NID |
| 2921 | * @power_state: power state to evalue |
| 2922 | * |
| 2923 | * Don't power down the widget if it controls eapd and EAPD_BTLENABLE is set. |
| 2924 | * This can be used a codec power_filter callback. |
| 2925 | */ |
Takashi Iwai | ba615b8 | 2013-03-13 14:47:21 +0100 | [diff] [blame] | 2926 | unsigned int snd_hda_codec_eapd_power_filter(struct hda_codec *codec, |
| 2927 | hda_nid_t nid, |
| 2928 | unsigned int power_state) |
Takashi Iwai | 9419ab6 | 2013-01-24 17:23:35 +0100 | [diff] [blame] | 2929 | { |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 2930 | if (nid == codec->core.afg || nid == codec->core.mfg) |
Takashi Iwai | dfc6e46 | 2014-01-13 16:09:57 +0100 | [diff] [blame] | 2931 | return power_state; |
Takashi Iwai | 9419ab6 | 2013-01-24 17:23:35 +0100 | [diff] [blame] | 2932 | if (power_state == AC_PWRST_D3 && |
| 2933 | get_wcaps_type(get_wcaps(codec, nid)) == AC_WID_PIN && |
| 2934 | (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD)) { |
| 2935 | int eapd = snd_hda_codec_read(codec, nid, 0, |
| 2936 | AC_VERB_GET_EAPD_BTLENABLE, 0); |
| 2937 | if (eapd & 0x02) |
| 2938 | return AC_PWRST_D0; |
| 2939 | } |
| 2940 | return power_state; |
| 2941 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2942 | EXPORT_SYMBOL_GPL(snd_hda_codec_eapd_power_filter); |
Takashi Iwai | 9419ab6 | 2013-01-24 17:23:35 +0100 | [diff] [blame] | 2943 | |
Takashi Iwai | 432c641 | 2012-08-28 09:59:20 -0700 | [diff] [blame] | 2944 | /* |
Takashi Iwai | 08fa20a | 2012-08-31 07:46:56 -0700 | [diff] [blame] | 2945 | * set power state of the codec, and return the power state |
Takashi Iwai | 4d7fbdb | 2011-07-26 10:33:10 +0200 | [diff] [blame] | 2946 | */ |
Takashi Iwai | d819387 | 2012-08-31 07:54:38 -0700 | [diff] [blame] | 2947 | static unsigned int hda_set_power_state(struct hda_codec *codec, |
Takashi Iwai | 08fa20a | 2012-08-31 07:46:56 -0700 | [diff] [blame] | 2948 | unsigned int power_state) |
Takashi Iwai | 4d7fbdb | 2011-07-26 10:33:10 +0200 | [diff] [blame] | 2949 | { |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 2950 | hda_nid_t fg = codec->core.afg ? codec->core.afg : codec->core.mfg; |
Wang Xingchao | 09617ce | 2012-06-08 10:26:08 +0800 | [diff] [blame] | 2951 | int count; |
| 2952 | unsigned int state; |
Takashi Iwai | 63e51fd | 2013-06-06 14:20:19 +0200 | [diff] [blame] | 2953 | int flags = 0; |
Wang Xingchao | 09617ce | 2012-06-08 10:26:08 +0800 | [diff] [blame] | 2954 | |
Takashi Iwai | 4d7fbdb | 2011-07-26 10:33:10 +0200 | [diff] [blame] | 2955 | /* this delay seems necessary to avoid click noise at power-down */ |
Wang Xingchao | 0f4ccbb | 2012-06-07 16:51:33 +0800 | [diff] [blame] | 2956 | if (power_state == AC_PWRST_D3) { |
Mengdong Lin | 7f13292 | 2013-11-29 01:48:45 -0500 | [diff] [blame] | 2957 | if (codec->depop_delay < 0) |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 2958 | msleep(codec_has_epss(codec) ? 10 : 100); |
Mengdong Lin | 7f13292 | 2013-11-29 01:48:45 -0500 | [diff] [blame] | 2959 | else if (codec->depop_delay > 0) |
| 2960 | msleep(codec->depop_delay); |
Takashi Iwai | 63e51fd | 2013-06-06 14:20:19 +0200 | [diff] [blame] | 2961 | flags = HDA_RW_NO_RESPONSE_FALLBACK; |
Wang Xingchao | 0f4ccbb | 2012-06-07 16:51:33 +0800 | [diff] [blame] | 2962 | } |
Wang Xingchao | 09617ce | 2012-06-08 10:26:08 +0800 | [diff] [blame] | 2963 | |
| 2964 | /* repeat power states setting at most 10 times*/ |
| 2965 | for (count = 0; count < 10; count++) { |
Takashi Iwai | 432c641 | 2012-08-28 09:59:20 -0700 | [diff] [blame] | 2966 | if (codec->patch_ops.set_power_state) |
| 2967 | codec->patch_ops.set_power_state(codec, fg, |
| 2968 | power_state); |
| 2969 | else { |
Takashi Iwai | dfc6e46 | 2014-01-13 16:09:57 +0100 | [diff] [blame] | 2970 | state = power_state; |
| 2971 | if (codec->power_filter) |
| 2972 | state = codec->power_filter(codec, fg, state); |
| 2973 | if (state == power_state || power_state != AC_PWRST_D3) |
| 2974 | snd_hda_codec_read(codec, fg, flags, |
| 2975 | AC_VERB_SET_POWER_STATE, |
| 2976 | state); |
Takashi Iwai | 9419ab6 | 2013-01-24 17:23:35 +0100 | [diff] [blame] | 2977 | snd_hda_codec_set_power_to_all(codec, fg, power_state); |
Takashi Iwai | 432c641 | 2012-08-28 09:59:20 -0700 | [diff] [blame] | 2978 | } |
| 2979 | state = hda_sync_power_state(codec, fg, power_state); |
Wang Xingchao | 09617ce | 2012-06-08 10:26:08 +0800 | [diff] [blame] | 2980 | if (!(state & AC_PWRST_ERROR)) |
| 2981 | break; |
| 2982 | } |
Mengdong Lin | b8dfc462 | 2012-08-23 17:32:30 +0800 | [diff] [blame] | 2983 | |
Takashi Iwai | 08fa20a | 2012-08-31 07:46:56 -0700 | [diff] [blame] | 2984 | return state; |
Takashi Iwai | 4d7fbdb | 2011-07-26 10:33:10 +0200 | [diff] [blame] | 2985 | } |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 2986 | |
Takashi Iwai | b9c590b | 2013-01-24 17:27:32 +0100 | [diff] [blame] | 2987 | /* sync power states of all widgets; |
| 2988 | * this is called at the end of codec parsing |
| 2989 | */ |
| 2990 | static void sync_power_up_states(struct hda_codec *codec) |
| 2991 | { |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 2992 | hda_nid_t nid; |
Takashi Iwai | b9c590b | 2013-01-24 17:27:32 +0100 | [diff] [blame] | 2993 | |
Takashi Iwai | ba615b8 | 2013-03-13 14:47:21 +0100 | [diff] [blame] | 2994 | /* don't care if no filter is used */ |
| 2995 | if (!codec->power_filter) |
Takashi Iwai | b9c590b | 2013-01-24 17:27:32 +0100 | [diff] [blame] | 2996 | return; |
| 2997 | |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 2998 | for_each_hda_codec_node(nid, codec) { |
Takashi Iwai | b9c590b | 2013-01-24 17:27:32 +0100 | [diff] [blame] | 2999 | unsigned int wcaps = get_wcaps(codec, nid); |
Takashi Iwai | 9040d10 | 2013-01-24 17:47:17 +0100 | [diff] [blame] | 3000 | unsigned int target; |
Takashi Iwai | b9c590b | 2013-01-24 17:27:32 +0100 | [diff] [blame] | 3001 | if (!(wcaps & AC_WCAP_POWER)) |
| 3002 | continue; |
| 3003 | target = codec->power_filter(codec, nid, AC_PWRST_D0); |
| 3004 | if (target == AC_PWRST_D0) |
| 3005 | continue; |
Takashi Iwai | 9040d10 | 2013-01-24 17:47:17 +0100 | [diff] [blame] | 3006 | if (!snd_hda_check_power_state(codec, nid, target)) |
Takashi Iwai | b9c590b | 2013-01-24 17:27:32 +0100 | [diff] [blame] | 3007 | snd_hda_codec_write(codec, nid, 0, |
| 3008 | AC_VERB_SET_POWER_STATE, target); |
| 3009 | } |
| 3010 | } |
| 3011 | |
Takashi Iwai | 648a8d2 | 2014-02-25 10:38:13 +0100 | [diff] [blame] | 3012 | #ifdef CONFIG_SND_HDA_RECONFIG |
Takashi Iwai | 11aeff0 | 2008-07-30 15:01:46 +0200 | [diff] [blame] | 3013 | /* execute additional init verbs */ |
| 3014 | static void hda_exec_init_verbs(struct hda_codec *codec) |
| 3015 | { |
| 3016 | if (codec->init_verbs.list) |
| 3017 | snd_hda_sequence_write(codec, codec->init_verbs.list); |
| 3018 | } |
| 3019 | #else |
| 3020 | static inline void hda_exec_init_verbs(struct hda_codec *codec) {} |
| 3021 | #endif |
| 3022 | |
Takashi Iwai | 2a43952 | 2011-07-26 09:52:50 +0200 | [diff] [blame] | 3023 | #ifdef CONFIG_PM |
Takashi Iwai | cc72da7 | 2015-02-19 16:00:22 +0100 | [diff] [blame] | 3024 | /* update the power on/off account with the current jiffies */ |
| 3025 | static void update_power_acct(struct hda_codec *codec, bool on) |
| 3026 | { |
| 3027 | unsigned long delta = jiffies - codec->power_jiffies; |
| 3028 | |
| 3029 | if (on) |
| 3030 | codec->power_on_acct += delta; |
| 3031 | else |
| 3032 | codec->power_off_acct += delta; |
| 3033 | codec->power_jiffies += delta; |
| 3034 | } |
| 3035 | |
| 3036 | void snd_hda_update_power_acct(struct hda_codec *codec) |
| 3037 | { |
| 3038 | update_power_acct(codec, hda_codec_is_power_on(codec)); |
| 3039 | } |
| 3040 | |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3041 | /* |
| 3042 | * call suspend and power-down; used both from PM and power-save |
Takashi Iwai | 08fa20a | 2012-08-31 07:46:56 -0700 | [diff] [blame] | 3043 | * this function returns the power state in the end |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3044 | */ |
Takashi Iwai | cc72da7 | 2015-02-19 16:00:22 +0100 | [diff] [blame] | 3045 | static unsigned int hda_call_codec_suspend(struct hda_codec *codec) |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3046 | { |
Takashi Iwai | 08fa20a | 2012-08-31 07:46:56 -0700 | [diff] [blame] | 3047 | unsigned int state; |
| 3048 | |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 3049 | atomic_inc(&codec->core.in_pm); |
Takashi Iwai | 989c318 | 2012-11-19 14:14:58 +0100 | [diff] [blame] | 3050 | |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3051 | if (codec->patch_ops.suspend) |
Takashi Iwai | 68cb2b5 | 2012-07-02 15:20:37 +0200 | [diff] [blame] | 3052 | codec->patch_ops.suspend(codec); |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 3053 | hda_cleanup_all_streams(codec); |
Takashi Iwai | d819387 | 2012-08-31 07:54:38 -0700 | [diff] [blame] | 3054 | state = hda_set_power_state(codec, AC_PWRST_D3); |
Takashi Iwai | cc72da7 | 2015-02-19 16:00:22 +0100 | [diff] [blame] | 3055 | update_power_acct(codec, true); |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 3056 | atomic_dec(&codec->core.in_pm); |
Takashi Iwai | 08fa20a | 2012-08-31 07:46:56 -0700 | [diff] [blame] | 3057 | return state; |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3058 | } |
| 3059 | |
| 3060 | /* |
| 3061 | * kick up codec; used both from PM and power-save |
| 3062 | */ |
| 3063 | static void hda_call_codec_resume(struct hda_codec *codec) |
| 3064 | { |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 3065 | atomic_inc(&codec->core.in_pm); |
Takashi Iwai | 989c318 | 2012-11-19 14:14:58 +0100 | [diff] [blame] | 3066 | |
Takashi Iwai | eeecd9d | 2015-02-25 15:18:50 +0100 | [diff] [blame] | 3067 | if (codec->core.regmap) |
| 3068 | regcache_mark_dirty(codec->core.regmap); |
| 3069 | |
Takashi Iwai | cc72da7 | 2015-02-19 16:00:22 +0100 | [diff] [blame] | 3070 | codec->power_jiffies = jiffies; |
Takashi Iwai | cc72da7 | 2015-02-19 16:00:22 +0100 | [diff] [blame] | 3071 | |
Takashi Iwai | d819387 | 2012-08-31 07:54:38 -0700 | [diff] [blame] | 3072 | hda_set_power_state(codec, AC_PWRST_D0); |
Takashi Iwai | ac0547d | 2010-07-05 16:50:13 +0200 | [diff] [blame] | 3073 | restore_shutup_pins(codec); |
Takashi Iwai | 11aeff0 | 2008-07-30 15:01:46 +0200 | [diff] [blame] | 3074 | hda_exec_init_verbs(codec); |
Takashi Iwai | 31614bb | 2013-01-23 15:58:40 +0100 | [diff] [blame] | 3075 | snd_hda_jack_set_dirty_all(codec); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3076 | if (codec->patch_ops.resume) |
| 3077 | codec->patch_ops.resume(codec); |
| 3078 | else { |
Takashi Iwai | 9d99f31 | 2007-08-14 15:15:52 +0200 | [diff] [blame] | 3079 | if (codec->patch_ops.init) |
| 3080 | codec->patch_ops.init(codec); |
Takashi Iwai | eeecd9d | 2015-02-25 15:18:50 +0100 | [diff] [blame] | 3081 | if (codec->core.regmap) |
| 3082 | regcache_sync(codec->core.regmap); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3083 | } |
David Henningsson | 26a6cb6 | 2012-10-09 15:04:21 +0200 | [diff] [blame] | 3084 | |
| 3085 | if (codec->jackpoll_interval) |
| 3086 | hda_jackpoll_work(&codec->jackpoll_work.work); |
Takashi Iwai | 31614bb | 2013-01-23 15:58:40 +0100 | [diff] [blame] | 3087 | else |
David Henningsson | 26a6cb6 | 2012-10-09 15:04:21 +0200 | [diff] [blame] | 3088 | snd_hda_jack_report_sync(codec); |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 3089 | atomic_dec(&codec->core.in_pm); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3090 | } |
Takashi Iwai | 59ed1ea | 2015-02-18 15:39:59 +0100 | [diff] [blame] | 3091 | |
Takashi Iwai | cc72da7 | 2015-02-19 16:00:22 +0100 | [diff] [blame] | 3092 | static int hda_codec_runtime_suspend(struct device *dev) |
Takashi Iwai | 59ed1ea | 2015-02-18 15:39:59 +0100 | [diff] [blame] | 3093 | { |
| 3094 | struct hda_codec *codec = dev_to_hda_codec(dev); |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame] | 3095 | struct hda_pcm *pcm; |
Takashi Iwai | cc72da7 | 2015-02-19 16:00:22 +0100 | [diff] [blame] | 3096 | unsigned int state; |
Takashi Iwai | 59ed1ea | 2015-02-18 15:39:59 +0100 | [diff] [blame] | 3097 | |
| 3098 | cancel_delayed_work_sync(&codec->jackpoll_work); |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame] | 3099 | list_for_each_entry(pcm, &codec->pcm_list_head, list) |
| 3100 | snd_pcm_suspend_all(pcm->pcm); |
Takashi Iwai | cc72da7 | 2015-02-19 16:00:22 +0100 | [diff] [blame] | 3101 | state = hda_call_codec_suspend(codec); |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 3102 | if (codec_has_clkstop(codec) && codec_has_epss(codec) && |
| 3103 | (state & AC_PWRST_CLK_STOP_OK)) |
| 3104 | snd_hdac_codec_link_down(&codec->core); |
Takashi Iwai | 59ed1ea | 2015-02-18 15:39:59 +0100 | [diff] [blame] | 3105 | return 0; |
| 3106 | } |
| 3107 | |
Takashi Iwai | cc72da7 | 2015-02-19 16:00:22 +0100 | [diff] [blame] | 3108 | static int hda_codec_runtime_resume(struct device *dev) |
Takashi Iwai | 59ed1ea | 2015-02-18 15:39:59 +0100 | [diff] [blame] | 3109 | { |
Takashi Iwai | 55ed9cd | 2015-02-19 17:35:32 +0100 | [diff] [blame] | 3110 | struct hda_codec *codec = dev_to_hda_codec(dev); |
| 3111 | |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 3112 | snd_hdac_codec_link_up(&codec->core); |
Takashi Iwai | 55ed9cd | 2015-02-19 17:35:32 +0100 | [diff] [blame] | 3113 | hda_call_codec_resume(codec); |
Takashi Iwai | cc72da7 | 2015-02-19 16:00:22 +0100 | [diff] [blame] | 3114 | pm_runtime_mark_last_busy(dev); |
Takashi Iwai | 59ed1ea | 2015-02-18 15:39:59 +0100 | [diff] [blame] | 3115 | return 0; |
| 3116 | } |
Takashi Iwai | 2a43952 | 2011-07-26 09:52:50 +0200 | [diff] [blame] | 3117 | #endif /* CONFIG_PM */ |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3118 | |
Takashi Iwai | 59ed1ea | 2015-02-18 15:39:59 +0100 | [diff] [blame] | 3119 | /* referred in hda_bind.c */ |
| 3120 | const struct dev_pm_ops hda_codec_driver_pm = { |
Takashi Iwai | cc72da7 | 2015-02-19 16:00:22 +0100 | [diff] [blame] | 3121 | SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend, |
| 3122 | pm_runtime_force_resume) |
| 3123 | SET_RUNTIME_PM_OPS(hda_codec_runtime_suspend, hda_codec_runtime_resume, |
| 3124 | NULL) |
Takashi Iwai | 59ed1ea | 2015-02-18 15:39:59 +0100 | [diff] [blame] | 3125 | }; |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 3126 | |
Takashi Iwai | 9c9a517 | 2012-07-31 11:35:35 +0200 | [diff] [blame] | 3127 | /* |
| 3128 | * add standard channel maps if not specified |
| 3129 | */ |
| 3130 | static int add_std_chmaps(struct hda_codec *codec) |
| 3131 | { |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame] | 3132 | struct hda_pcm *pcm; |
| 3133 | int str, err; |
Takashi Iwai | 9c9a517 | 2012-07-31 11:35:35 +0200 | [diff] [blame] | 3134 | |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame] | 3135 | list_for_each_entry(pcm, &codec->pcm_list_head, list) { |
Takashi Iwai | 9c9a517 | 2012-07-31 11:35:35 +0200 | [diff] [blame] | 3136 | for (str = 0; str < 2; str++) { |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame] | 3137 | struct hda_pcm_stream *hinfo = &pcm->stream[str]; |
Takashi Iwai | 9c9a517 | 2012-07-31 11:35:35 +0200 | [diff] [blame] | 3138 | struct snd_pcm_chmap *chmap; |
Takashi Iwai | ee81abb | 2012-11-08 17:12:10 +0100 | [diff] [blame] | 3139 | const struct snd_pcm_chmap_elem *elem; |
Takashi Iwai | 9c9a517 | 2012-07-31 11:35:35 +0200 | [diff] [blame] | 3140 | |
Sudip Mukherjee | 751e221 | 2015-04-02 16:51:43 +0530 | [diff] [blame] | 3141 | if (!pcm || pcm->own_chmap || |
| 3142 | !hinfo->substreams) |
Takashi Iwai | 9c9a517 | 2012-07-31 11:35:35 +0200 | [diff] [blame] | 3143 | continue; |
Takashi Iwai | ee81abb | 2012-11-08 17:12:10 +0100 | [diff] [blame] | 3144 | elem = hinfo->chmap ? hinfo->chmap : snd_pcm_std_chmaps; |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame] | 3145 | err = snd_pcm_add_chmap_ctls(pcm->pcm, str, elem, |
Takashi Iwai | 9c9a517 | 2012-07-31 11:35:35 +0200 | [diff] [blame] | 3146 | hinfo->channels_max, |
| 3147 | 0, &chmap); |
| 3148 | if (err < 0) |
| 3149 | return err; |
| 3150 | chmap->channel_mask = SND_PCM_CHMAP_MASK_2468; |
| 3151 | } |
| 3152 | } |
| 3153 | return 0; |
| 3154 | } |
| 3155 | |
Takashi Iwai | ee81abb | 2012-11-08 17:12:10 +0100 | [diff] [blame] | 3156 | /* default channel maps for 2.1 speakers; |
| 3157 | * since HD-audio supports only stereo, odd number channels are omitted |
| 3158 | */ |
| 3159 | const struct snd_pcm_chmap_elem snd_pcm_2_1_chmaps[] = { |
| 3160 | { .channels = 2, |
| 3161 | .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR } }, |
| 3162 | { .channels = 4, |
| 3163 | .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR, |
| 3164 | SNDRV_CHMAP_LFE, SNDRV_CHMAP_LFE } }, |
| 3165 | { } |
| 3166 | }; |
| 3167 | EXPORT_SYMBOL_GPL(snd_pcm_2_1_chmaps); |
| 3168 | |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 3169 | int snd_hda_codec_build_controls(struct hda_codec *codec) |
| 3170 | { |
| 3171 | int err = 0; |
Takashi Iwai | 11aeff0 | 2008-07-30 15:01:46 +0200 | [diff] [blame] | 3172 | hda_exec_init_verbs(codec); |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 3173 | /* continue to initialize... */ |
| 3174 | if (codec->patch_ops.init) |
| 3175 | err = codec->patch_ops.init(codec); |
| 3176 | if (!err && codec->patch_ops.build_controls) |
| 3177 | err = codec->patch_ops.build_controls(codec); |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 3178 | if (err < 0) |
| 3179 | return err; |
Takashi Iwai | 9c9a517 | 2012-07-31 11:35:35 +0200 | [diff] [blame] | 3180 | |
| 3181 | /* we create chmaps here instead of build_pcms */ |
| 3182 | err = add_std_chmaps(codec); |
| 3183 | if (err < 0) |
| 3184 | return err; |
| 3185 | |
David Henningsson | 26a6cb6 | 2012-10-09 15:04:21 +0200 | [diff] [blame] | 3186 | if (codec->jackpoll_interval) |
| 3187 | hda_jackpoll_work(&codec->jackpoll_work.work); |
| 3188 | else |
| 3189 | snd_hda_jack_report_sync(codec); /* call at the last init point */ |
Takashi Iwai | b9c590b | 2013-01-24 17:27:32 +0100 | [diff] [blame] | 3190 | sync_power_up_states(codec); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3191 | return 0; |
| 3192 | } |
| 3193 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3194 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3195 | * PCM stuff |
| 3196 | */ |
| 3197 | static int hda_pcm_default_open_close(struct hda_pcm_stream *hinfo, |
| 3198 | struct hda_codec *codec, |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 3199 | struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3200 | { |
| 3201 | return 0; |
| 3202 | } |
| 3203 | |
| 3204 | static int hda_pcm_default_prepare(struct hda_pcm_stream *hinfo, |
| 3205 | struct hda_codec *codec, |
| 3206 | unsigned int stream_tag, |
| 3207 | unsigned int format, |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 3208 | struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3209 | { |
| 3210 | snd_hda_codec_setup_stream(codec, hinfo->nid, stream_tag, 0, format); |
| 3211 | return 0; |
| 3212 | } |
| 3213 | |
| 3214 | static int hda_pcm_default_cleanup(struct hda_pcm_stream *hinfo, |
| 3215 | struct hda_codec *codec, |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 3216 | struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3217 | { |
Takashi Iwai | 888afa1 | 2008-03-18 09:57:50 +0100 | [diff] [blame] | 3218 | snd_hda_codec_cleanup_stream(codec, hinfo->nid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3219 | return 0; |
| 3220 | } |
| 3221 | |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 3222 | static int set_pcm_default_values(struct hda_codec *codec, |
| 3223 | struct hda_pcm_stream *info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3224 | { |
Jaroslav Kysela | ee50471 | 2009-03-17 14:30:31 +0100 | [diff] [blame] | 3225 | int err; |
| 3226 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3227 | /* query support PCM information from the given NID */ |
| 3228 | if (info->nid && (!info->rates || !info->formats)) { |
Jaroslav Kysela | ee50471 | 2009-03-17 14:30:31 +0100 | [diff] [blame] | 3229 | err = snd_hda_query_supported_pcm(codec, info->nid, |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3230 | info->rates ? NULL : &info->rates, |
| 3231 | info->formats ? NULL : &info->formats, |
| 3232 | info->maxbps ? NULL : &info->maxbps); |
Jaroslav Kysela | ee50471 | 2009-03-17 14:30:31 +0100 | [diff] [blame] | 3233 | if (err < 0) |
| 3234 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3235 | } |
| 3236 | if (info->ops.open == NULL) |
| 3237 | info->ops.open = hda_pcm_default_open_close; |
| 3238 | if (info->ops.close == NULL) |
| 3239 | info->ops.close = hda_pcm_default_open_close; |
| 3240 | if (info->ops.prepare == NULL) { |
Takashi Iwai | da3cec3 | 2008-08-08 17:12:14 +0200 | [diff] [blame] | 3241 | if (snd_BUG_ON(!info->nid)) |
| 3242 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3243 | info->ops.prepare = hda_pcm_default_prepare; |
| 3244 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3245 | if (info->ops.cleanup == NULL) { |
Takashi Iwai | da3cec3 | 2008-08-08 17:12:14 +0200 | [diff] [blame] | 3246 | if (snd_BUG_ON(!info->nid)) |
| 3247 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3248 | info->ops.cleanup = hda_pcm_default_cleanup; |
| 3249 | } |
| 3250 | return 0; |
| 3251 | } |
| 3252 | |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 3253 | /* |
| 3254 | * codec prepare/cleanup entries |
| 3255 | */ |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 3256 | /** |
| 3257 | * snd_hda_codec_prepare - Prepare a stream |
| 3258 | * @codec: the HDA codec |
| 3259 | * @hinfo: PCM information |
| 3260 | * @stream: stream tag to assign |
| 3261 | * @format: format id to assign |
| 3262 | * @substream: PCM substream to assign |
| 3263 | * |
| 3264 | * Calls the prepare callback set by the codec with the given arguments. |
| 3265 | * Clean up the inactive streams when successful. |
| 3266 | */ |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 3267 | int snd_hda_codec_prepare(struct hda_codec *codec, |
| 3268 | struct hda_pcm_stream *hinfo, |
| 3269 | unsigned int stream, |
| 3270 | unsigned int format, |
| 3271 | struct snd_pcm_substream *substream) |
| 3272 | { |
| 3273 | int ret; |
Takashi Iwai | 3f50ac6 | 2010-08-20 09:44:36 +0200 | [diff] [blame] | 3274 | mutex_lock(&codec->bus->prepare_mutex); |
Takashi Iwai | 61ca410 | 2015-02-27 17:57:55 +0100 | [diff] [blame] | 3275 | if (hinfo->ops.prepare) |
| 3276 | ret = hinfo->ops.prepare(hinfo, codec, stream, format, |
| 3277 | substream); |
| 3278 | else |
| 3279 | ret = -ENODEV; |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 3280 | if (ret >= 0) |
| 3281 | purify_inactive_streams(codec); |
Takashi Iwai | 3f50ac6 | 2010-08-20 09:44:36 +0200 | [diff] [blame] | 3282 | mutex_unlock(&codec->bus->prepare_mutex); |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 3283 | return ret; |
| 3284 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3285 | EXPORT_SYMBOL_GPL(snd_hda_codec_prepare); |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 3286 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 3287 | /** |
| 3288 | * snd_hda_codec_cleanup - Prepare a stream |
| 3289 | * @codec: the HDA codec |
| 3290 | * @hinfo: PCM information |
| 3291 | * @substream: PCM substream |
| 3292 | * |
| 3293 | * Calls the cleanup callback set by the codec with the given arguments. |
| 3294 | */ |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 3295 | void snd_hda_codec_cleanup(struct hda_codec *codec, |
| 3296 | struct hda_pcm_stream *hinfo, |
| 3297 | struct snd_pcm_substream *substream) |
| 3298 | { |
Takashi Iwai | 3f50ac6 | 2010-08-20 09:44:36 +0200 | [diff] [blame] | 3299 | mutex_lock(&codec->bus->prepare_mutex); |
Takashi Iwai | 61ca410 | 2015-02-27 17:57:55 +0100 | [diff] [blame] | 3300 | if (hinfo->ops.cleanup) |
| 3301 | hinfo->ops.cleanup(hinfo, codec, substream); |
Takashi Iwai | 3f50ac6 | 2010-08-20 09:44:36 +0200 | [diff] [blame] | 3302 | mutex_unlock(&codec->bus->prepare_mutex); |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 3303 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3304 | EXPORT_SYMBOL_GPL(snd_hda_codec_cleanup); |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 3305 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 3306 | /* global */ |
Jaroslav Kysela | e330323 | 2009-11-10 14:53:02 +0100 | [diff] [blame] | 3307 | const char *snd_hda_pcm_type_name[HDA_PCM_NTYPES] = { |
| 3308 | "Audio", "SPDIF", "HDMI", "Modem" |
| 3309 | }; |
| 3310 | |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 3311 | /* |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 3312 | * get the empty PCM device number to assign |
| 3313 | */ |
Takashi Iwai | 36bb00d | 2013-06-06 12:10:24 +0200 | [diff] [blame] | 3314 | static int get_empty_pcm_device(struct hda_bus *bus, unsigned int type) |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 3315 | { |
Wu Fengguang | f5d6def5 | 2009-10-30 11:38:26 +0100 | [diff] [blame] | 3316 | /* audio device indices; not linear to keep compatibility */ |
Takashi Iwai | 36bb00d | 2013-06-06 12:10:24 +0200 | [diff] [blame] | 3317 | /* assigned to static slots up to dev#10; if more needed, assign |
| 3318 | * the later slot dynamically (when CONFIG_SND_DYNAMIC_MINORS=y) |
| 3319 | */ |
Wu Fengguang | f5d6def5 | 2009-10-30 11:38:26 +0100 | [diff] [blame] | 3320 | static int audio_idx[HDA_PCM_NTYPES][5] = { |
| 3321 | [HDA_PCM_TYPE_AUDIO] = { 0, 2, 4, 5, -1 }, |
| 3322 | [HDA_PCM_TYPE_SPDIF] = { 1, -1 }, |
Wu Fengguang | 92608ba | 2009-10-30 11:40:03 +0100 | [diff] [blame] | 3323 | [HDA_PCM_TYPE_HDMI] = { 3, 7, 8, 9, -1 }, |
Wu Fengguang | f5d6def5 | 2009-10-30 11:38:26 +0100 | [diff] [blame] | 3324 | [HDA_PCM_TYPE_MODEM] = { 6, -1 }, |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 3325 | }; |
Wu Fengguang | f5d6def5 | 2009-10-30 11:38:26 +0100 | [diff] [blame] | 3326 | int i; |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 3327 | |
Wu Fengguang | f5d6def5 | 2009-10-30 11:38:26 +0100 | [diff] [blame] | 3328 | if (type >= HDA_PCM_NTYPES) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 3329 | dev_err(bus->card->dev, "Invalid PCM type %d\n", type); |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 3330 | return -EINVAL; |
| 3331 | } |
Wu Fengguang | f5d6def5 | 2009-10-30 11:38:26 +0100 | [diff] [blame] | 3332 | |
Takashi Iwai | 36bb00d | 2013-06-06 12:10:24 +0200 | [diff] [blame] | 3333 | for (i = 0; audio_idx[type][i] >= 0; i++) { |
| 3334 | #ifndef CONFIG_SND_DYNAMIC_MINORS |
| 3335 | if (audio_idx[type][i] >= 8) |
| 3336 | break; |
| 3337 | #endif |
Wu Fengguang | f5d6def5 | 2009-10-30 11:38:26 +0100 | [diff] [blame] | 3338 | if (!test_and_set_bit(audio_idx[type][i], bus->pcm_dev_bits)) |
| 3339 | return audio_idx[type][i]; |
Takashi Iwai | 36bb00d | 2013-06-06 12:10:24 +0200 | [diff] [blame] | 3340 | } |
Wu Fengguang | f5d6def5 | 2009-10-30 11:38:26 +0100 | [diff] [blame] | 3341 | |
Takashi Iwai | 36bb00d | 2013-06-06 12:10:24 +0200 | [diff] [blame] | 3342 | #ifdef CONFIG_SND_DYNAMIC_MINORS |
Takashi Iwai | 01b65bf | 2011-11-24 14:31:46 +0100 | [diff] [blame] | 3343 | /* non-fixed slots starting from 10 */ |
| 3344 | for (i = 10; i < 32; i++) { |
| 3345 | if (!test_and_set_bit(i, bus->pcm_dev_bits)) |
| 3346 | return i; |
| 3347 | } |
Takashi Iwai | 36bb00d | 2013-06-06 12:10:24 +0200 | [diff] [blame] | 3348 | #endif |
Takashi Iwai | 01b65bf | 2011-11-24 14:31:46 +0100 | [diff] [blame] | 3349 | |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 3350 | dev_warn(bus->card->dev, "Too many %s devices\n", |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 3351 | snd_hda_pcm_type_name[type]); |
Takashi Iwai | 36bb00d | 2013-06-06 12:10:24 +0200 | [diff] [blame] | 3352 | #ifndef CONFIG_SND_DYNAMIC_MINORS |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 3353 | dev_warn(bus->card->dev, |
| 3354 | "Consider building the kernel with CONFIG_SND_DYNAMIC_MINORS=y\n"); |
Takashi Iwai | 36bb00d | 2013-06-06 12:10:24 +0200 | [diff] [blame] | 3355 | #endif |
Wu Fengguang | f5d6def5 | 2009-10-30 11:38:26 +0100 | [diff] [blame] | 3356 | return -EAGAIN; |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 3357 | } |
| 3358 | |
Takashi Iwai | 1a4ba30 | 2015-02-24 11:50:11 +0100 | [diff] [blame] | 3359 | /* call build_pcms ops of the given codec and set up the default parameters */ |
| 3360 | int snd_hda_codec_parse_pcms(struct hda_codec *codec) |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 3361 | { |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame] | 3362 | struct hda_pcm *cpcm; |
Takashi Iwai | 1a4ba30 | 2015-02-24 11:50:11 +0100 | [diff] [blame] | 3363 | int err; |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 3364 | |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame] | 3365 | if (!list_empty(&codec->pcm_list_head)) |
Takashi Iwai | 1a4ba30 | 2015-02-24 11:50:11 +0100 | [diff] [blame] | 3366 | return 0; /* already parsed */ |
| 3367 | |
| 3368 | if (!codec->patch_ops.build_pcms) |
| 3369 | return 0; |
| 3370 | |
| 3371 | err = codec->patch_ops.build_pcms(codec); |
| 3372 | if (err < 0) { |
| 3373 | codec_err(codec, "cannot build PCMs for #%d (error %d)\n", |
Takashi Iwai | d068ebc | 2015-03-02 23:22:59 +0100 | [diff] [blame] | 3374 | codec->core.addr, err); |
Takashi Iwai | 1a4ba30 | 2015-02-24 11:50:11 +0100 | [diff] [blame] | 3375 | return err; |
| 3376 | } |
| 3377 | |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame] | 3378 | list_for_each_entry(cpcm, &codec->pcm_list_head, list) { |
Takashi Iwai | 1a4ba30 | 2015-02-24 11:50:11 +0100 | [diff] [blame] | 3379 | int stream; |
| 3380 | |
| 3381 | for (stream = 0; stream < 2; stream++) { |
| 3382 | struct hda_pcm_stream *info = &cpcm->stream[stream]; |
| 3383 | |
| 3384 | if (!info->substreams) |
| 3385 | continue; |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 3386 | err = set_pcm_default_values(codec, info); |
Takashi Iwai | 1a4ba30 | 2015-02-24 11:50:11 +0100 | [diff] [blame] | 3387 | if (err < 0) { |
| 3388 | codec_warn(codec, |
| 3389 | "fail to setup default for PCM %s\n", |
| 3390 | cpcm->name); |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 3391 | return err; |
Takashi Iwai | 1a4ba30 | 2015-02-24 11:50:11 +0100 | [diff] [blame] | 3392 | } |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 3393 | } |
| 3394 | } |
Takashi Iwai | 1a4ba30 | 2015-02-24 11:50:11 +0100 | [diff] [blame] | 3395 | |
| 3396 | return 0; |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 3397 | } |
| 3398 | |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 3399 | /* assign all PCMs of the given codec */ |
| 3400 | int snd_hda_codec_build_pcms(struct hda_codec *codec) |
| 3401 | { |
Takashi Iwai | 1a4ba30 | 2015-02-24 11:50:11 +0100 | [diff] [blame] | 3402 | struct hda_bus *bus = codec->bus; |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame] | 3403 | struct hda_pcm *cpcm; |
Takashi Iwai | 1a4ba30 | 2015-02-24 11:50:11 +0100 | [diff] [blame] | 3404 | int dev, err; |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 3405 | |
Takashi Iwai | 1a4ba30 | 2015-02-24 11:50:11 +0100 | [diff] [blame] | 3406 | err = snd_hda_codec_parse_pcms(codec); |
| 3407 | if (err < 0) { |
| 3408 | snd_hda_codec_reset(codec); |
| 3409 | return err; |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 3410 | } |
Takashi Iwai | 1a4ba30 | 2015-02-24 11:50:11 +0100 | [diff] [blame] | 3411 | |
| 3412 | /* attach a new PCM streams */ |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame] | 3413 | list_for_each_entry(cpcm, &codec->pcm_list_head, list) { |
Takashi Iwai | 1a4ba30 | 2015-02-24 11:50:11 +0100 | [diff] [blame] | 3414 | if (cpcm->pcm) |
| 3415 | continue; /* already attached */ |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 3416 | if (!cpcm->stream[0].substreams && !cpcm->stream[1].substreams) |
Takashi Iwai | 41b5b01 | 2009-01-20 18:21:23 +0100 | [diff] [blame] | 3417 | continue; /* no substreams assigned */ |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 3418 | |
Takashi Iwai | 1a4ba30 | 2015-02-24 11:50:11 +0100 | [diff] [blame] | 3419 | dev = get_empty_pcm_device(bus, cpcm->pcm_type); |
| 3420 | if (dev < 0) |
| 3421 | continue; /* no fatal error */ |
| 3422 | cpcm->device = dev; |
Takashi Iwai | 0a50575 | 2015-04-16 23:25:02 +0200 | [diff] [blame^] | 3423 | err = snd_hda_attach_pcm_stream(bus, codec, cpcm); |
Takashi Iwai | 1a4ba30 | 2015-02-24 11:50:11 +0100 | [diff] [blame] | 3424 | if (err < 0) { |
| 3425 | codec_err(codec, |
| 3426 | "cannot attach PCM stream %d for codec #%d\n", |
Takashi Iwai | d068ebc | 2015-03-02 23:22:59 +0100 | [diff] [blame] | 3427 | dev, codec->core.addr); |
Takashi Iwai | 1a4ba30 | 2015-02-24 11:50:11 +0100 | [diff] [blame] | 3428 | continue; /* no fatal error */ |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 3429 | } |
| 3430 | } |
Takashi Iwai | 1a4ba30 | 2015-02-24 11:50:11 +0100 | [diff] [blame] | 3431 | |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 3432 | return 0; |
| 3433 | } |
| 3434 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3435 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3436 | * snd_hda_add_new_ctls - create controls from the array |
| 3437 | * @codec: the HDA codec |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 3438 | * @knew: the array of struct snd_kcontrol_new |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3439 | * |
| 3440 | * This helper function creates and add new controls in the given array. |
| 3441 | * The array must be terminated with an empty entry as terminator. |
| 3442 | * |
| 3443 | * Returns 0 if successful, or a negative error code. |
| 3444 | */ |
Takashi Iwai | 031024e | 2011-05-02 11:29:30 +0200 | [diff] [blame] | 3445 | int snd_hda_add_new_ctls(struct hda_codec *codec, |
| 3446 | const struct snd_kcontrol_new *knew) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3447 | { |
Jaroslav Kysela | 4d02d1b | 2009-11-12 10:15:48 +0100 | [diff] [blame] | 3448 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3449 | |
| 3450 | for (; knew->name; knew++) { |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 3451 | struct snd_kcontrol *kctl; |
Takashi Iwai | 1afe206 | 2010-12-23 10:17:52 +0100 | [diff] [blame] | 3452 | int addr = 0, idx = 0; |
Jaroslav Kysela | 5b0cb1d | 2009-12-08 16:13:32 +0100 | [diff] [blame] | 3453 | if (knew->iface == -1) /* skip this codec private value */ |
| 3454 | continue; |
Takashi Iwai | 1afe206 | 2010-12-23 10:17:52 +0100 | [diff] [blame] | 3455 | for (;;) { |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 3456 | kctl = snd_ctl_new1(knew, codec); |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3457 | if (!kctl) |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 3458 | return -ENOMEM; |
Takashi Iwai | 1afe206 | 2010-12-23 10:17:52 +0100 | [diff] [blame] | 3459 | if (addr > 0) |
| 3460 | kctl->id.device = addr; |
| 3461 | if (idx > 0) |
| 3462 | kctl->id.index = idx; |
Jaroslav Kysela | 3911a4c | 2009-11-11 13:43:01 +0100 | [diff] [blame] | 3463 | err = snd_hda_ctl_add(codec, 0, kctl); |
Takashi Iwai | 1afe206 | 2010-12-23 10:17:52 +0100 | [diff] [blame] | 3464 | if (!err) |
| 3465 | break; |
| 3466 | /* try first with another device index corresponding to |
| 3467 | * the codec addr; if it still fails (or it's the |
| 3468 | * primary codec), then try another control index |
| 3469 | */ |
Takashi Iwai | d068ebc | 2015-03-02 23:22:59 +0100 | [diff] [blame] | 3470 | if (!addr && codec->core.addr) |
| 3471 | addr = codec->core.addr; |
Takashi Iwai | 1afe206 | 2010-12-23 10:17:52 +0100 | [diff] [blame] | 3472 | else if (!idx && !knew->index) { |
| 3473 | idx = find_empty_mixer_ctl_idx(codec, |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 3474 | knew->name, 0); |
Takashi Iwai | 1afe206 | 2010-12-23 10:17:52 +0100 | [diff] [blame] | 3475 | if (idx <= 0) |
| 3476 | return err; |
| 3477 | } else |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 3478 | return err; |
| 3479 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3480 | } |
| 3481 | return 0; |
| 3482 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3483 | EXPORT_SYMBOL_GPL(snd_hda_add_new_ctls); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3484 | |
Takashi Iwai | 83012a7 | 2012-08-24 18:38:08 +0200 | [diff] [blame] | 3485 | #ifdef CONFIG_PM |
Takashi Iwai | bb57392 | 2015-02-20 09:26:04 +0100 | [diff] [blame] | 3486 | static void codec_set_power_save(struct hda_codec *codec, int delay) |
Takashi Iwai | cc72da7 | 2015-02-19 16:00:22 +0100 | [diff] [blame] | 3487 | { |
| 3488 | struct device *dev = hda_codec_dev(codec); |
Takashi Iwai | cc72da7 | 2015-02-19 16:00:22 +0100 | [diff] [blame] | 3489 | |
Takashi Iwai | cc72da7 | 2015-02-19 16:00:22 +0100 | [diff] [blame] | 3490 | if (delay > 0) { |
| 3491 | pm_runtime_set_autosuspend_delay(dev, delay); |
| 3492 | pm_runtime_use_autosuspend(dev); |
| 3493 | pm_runtime_allow(dev); |
| 3494 | if (!pm_runtime_suspended(dev)) |
| 3495 | pm_runtime_mark_last_busy(dev); |
| 3496 | } else { |
| 3497 | pm_runtime_dont_use_autosuspend(dev); |
| 3498 | pm_runtime_forbid(dev); |
| 3499 | } |
| 3500 | } |
Takashi Iwai | bb57392 | 2015-02-20 09:26:04 +0100 | [diff] [blame] | 3501 | |
| 3502 | /** |
| 3503 | * snd_hda_set_power_save - reprogram autosuspend for the given delay |
| 3504 | * @bus: HD-audio bus |
| 3505 | * @delay: autosuspend delay in msec, 0 = off |
| 3506 | * |
| 3507 | * Synchronize the runtime PM autosuspend state from the power_save option. |
| 3508 | */ |
| 3509 | void snd_hda_set_power_save(struct hda_bus *bus, int delay) |
| 3510 | { |
| 3511 | struct hda_codec *c; |
| 3512 | |
Takashi Iwai | d068ebc | 2015-03-02 23:22:59 +0100 | [diff] [blame] | 3513 | list_for_each_codec(c, bus) |
Takashi Iwai | bb57392 | 2015-02-20 09:26:04 +0100 | [diff] [blame] | 3514 | codec_set_power_save(c, delay); |
| 3515 | } |
| 3516 | EXPORT_SYMBOL_GPL(snd_hda_set_power_save); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3517 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 3518 | /** |
| 3519 | * snd_hda_check_amp_list_power - Check the amp list and update the power |
| 3520 | * @codec: HD-audio codec |
| 3521 | * @check: the object containing an AMP list and the status |
| 3522 | * @nid: NID to check / update |
| 3523 | * |
| 3524 | * Check whether the given NID is in the amp list. If it's in the list, |
| 3525 | * check the current AMP status, and update the the power-status according |
| 3526 | * to the mute status. |
| 3527 | * |
| 3528 | * This function is supposed to be set or called from the check_power_status |
| 3529 | * patch ops. |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 3530 | */ |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3531 | int snd_hda_check_amp_list_power(struct hda_codec *codec, |
| 3532 | struct hda_loopback_check *check, |
| 3533 | hda_nid_t nid) |
| 3534 | { |
Takashi Iwai | 031024e | 2011-05-02 11:29:30 +0200 | [diff] [blame] | 3535 | const struct hda_amp_list *p; |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3536 | int ch, v; |
| 3537 | |
| 3538 | if (!check->amplist) |
| 3539 | return 0; |
| 3540 | for (p = check->amplist; p->nid; p++) { |
| 3541 | if (p->nid == nid) |
| 3542 | break; |
| 3543 | } |
| 3544 | if (!p->nid) |
| 3545 | return 0; /* nothing changed */ |
| 3546 | |
| 3547 | for (p = check->amplist; p->nid; p++) { |
| 3548 | for (ch = 0; ch < 2; ch++) { |
| 3549 | v = snd_hda_codec_amp_read(codec, p->nid, ch, p->dir, |
| 3550 | p->idx); |
| 3551 | if (!(v & HDA_AMP_MUTE) && v > 0) { |
| 3552 | if (!check->power_on) { |
| 3553 | check->power_on = 1; |
Takashi Iwai | 664c715 | 2015-04-08 11:43:14 +0200 | [diff] [blame] | 3554 | snd_hda_power_up_pm(codec); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3555 | } |
| 3556 | return 1; |
| 3557 | } |
| 3558 | } |
| 3559 | } |
| 3560 | if (check->power_on) { |
| 3561 | check->power_on = 0; |
Takashi Iwai | 664c715 | 2015-04-08 11:43:14 +0200 | [diff] [blame] | 3562 | snd_hda_power_down_pm(codec); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3563 | } |
| 3564 | return 0; |
| 3565 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3566 | EXPORT_SYMBOL_GPL(snd_hda_check_amp_list_power); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3567 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3568 | |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 3569 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3570 | * input MUX helper |
| 3571 | */ |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 3572 | |
| 3573 | /** |
| 3574 | * snd_hda_input_mux_info_info - Info callback helper for the input-mux enum |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 3575 | * @imux: imux helper object |
| 3576 | * @uinfo: pointer to get/store the data |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 3577 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3578 | int snd_hda_input_mux_info(const struct hda_input_mux *imux, |
| 3579 | struct snd_ctl_elem_info *uinfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3580 | { |
| 3581 | unsigned int index; |
| 3582 | |
| 3583 | uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED; |
| 3584 | uinfo->count = 1; |
| 3585 | uinfo->value.enumerated.items = imux->num_items; |
Takashi Iwai | 5513b0c | 2007-10-09 11:58:41 +0200 | [diff] [blame] | 3586 | if (!imux->num_items) |
| 3587 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3588 | index = uinfo->value.enumerated.item; |
| 3589 | if (index >= imux->num_items) |
| 3590 | index = imux->num_items - 1; |
| 3591 | strcpy(uinfo->value.enumerated.name, imux->items[index].label); |
| 3592 | return 0; |
| 3593 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3594 | EXPORT_SYMBOL_GPL(snd_hda_input_mux_info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3595 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 3596 | /** |
| 3597 | * snd_hda_input_mux_info_put - Put callback helper for the input-mux enum |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 3598 | * @codec: the HDA codec |
| 3599 | * @imux: imux helper object |
| 3600 | * @ucontrol: pointer to get/store the data |
| 3601 | * @nid: input mux NID |
| 3602 | * @cur_val: pointer to get/store the current imux value |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 3603 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3604 | int snd_hda_input_mux_put(struct hda_codec *codec, |
| 3605 | const struct hda_input_mux *imux, |
| 3606 | struct snd_ctl_elem_value *ucontrol, |
| 3607 | hda_nid_t nid, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3608 | unsigned int *cur_val) |
| 3609 | { |
| 3610 | unsigned int idx; |
| 3611 | |
Takashi Iwai | 5513b0c | 2007-10-09 11:58:41 +0200 | [diff] [blame] | 3612 | if (!imux->num_items) |
| 3613 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3614 | idx = ucontrol->value.enumerated.item[0]; |
| 3615 | if (idx >= imux->num_items) |
| 3616 | idx = imux->num_items - 1; |
Takashi Iwai | 82beb8f | 2007-08-10 17:09:26 +0200 | [diff] [blame] | 3617 | if (*cur_val == idx) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3618 | return 0; |
Takashi Iwai | 82beb8f | 2007-08-10 17:09:26 +0200 | [diff] [blame] | 3619 | snd_hda_codec_write_cache(codec, nid, 0, AC_VERB_SET_CONNECT_SEL, |
| 3620 | imux->items[idx].index); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3621 | *cur_val = idx; |
| 3622 | return 1; |
| 3623 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3624 | EXPORT_SYMBOL_GPL(snd_hda_input_mux_put); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3625 | |
| 3626 | |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 3627 | /** |
| 3628 | * snd_hda_enum_helper_info - Helper for simple enum ctls |
| 3629 | * @kcontrol: ctl element |
| 3630 | * @uinfo: pointer to get/store the data |
| 3631 | * @num_items: number of enum items |
| 3632 | * @texts: enum item string array |
| 3633 | * |
Takashi Iwai | dda415d | 2012-11-30 18:34:38 +0100 | [diff] [blame] | 3634 | * process kcontrol info callback of a simple string enum array |
| 3635 | * when @num_items is 0 or @texts is NULL, assume a boolean enum array |
| 3636 | */ |
| 3637 | int snd_hda_enum_helper_info(struct snd_kcontrol *kcontrol, |
| 3638 | struct snd_ctl_elem_info *uinfo, |
| 3639 | int num_items, const char * const *texts) |
| 3640 | { |
| 3641 | static const char * const texts_default[] = { |
| 3642 | "Disabled", "Enabled" |
| 3643 | }; |
| 3644 | |
| 3645 | if (!texts || !num_items) { |
| 3646 | num_items = 2; |
| 3647 | texts = texts_default; |
| 3648 | } |
| 3649 | |
Takashi Iwai | 3ff7221 | 2014-10-20 18:17:28 +0200 | [diff] [blame] | 3650 | return snd_ctl_enum_info(uinfo, 1, num_items, texts); |
Takashi Iwai | dda415d | 2012-11-30 18:34:38 +0100 | [diff] [blame] | 3651 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3652 | EXPORT_SYMBOL_GPL(snd_hda_enum_helper_info); |
Takashi Iwai | dda415d | 2012-11-30 18:34:38 +0100 | [diff] [blame] | 3653 | |
| 3654 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3655 | * Multi-channel / digital-out PCM helper functions |
| 3656 | */ |
| 3657 | |
Takashi Iwai | 6b97eb4 | 2007-04-05 14:51:48 +0200 | [diff] [blame] | 3658 | /* setup SPDIF output stream */ |
| 3659 | static void setup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid, |
| 3660 | unsigned int stream_tag, unsigned int format) |
| 3661 | { |
Laurence Darby | 3bef1c3 | 2012-11-03 17:00:06 +0000 | [diff] [blame] | 3662 | struct hda_spdif_out *spdif; |
| 3663 | unsigned int curr_fmt; |
| 3664 | bool reset; |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 3665 | |
Laurence Darby | 3bef1c3 | 2012-11-03 17:00:06 +0000 | [diff] [blame] | 3666 | spdif = snd_hda_spdif_out_of_nid(codec, nid); |
| 3667 | curr_fmt = snd_hda_codec_read(codec, nid, 0, |
| 3668 | AC_VERB_GET_STREAM_FORMAT, 0); |
| 3669 | reset = codec->spdif_status_reset && |
| 3670 | (spdif->ctls & AC_DIG1_ENABLE) && |
| 3671 | curr_fmt != format; |
| 3672 | |
| 3673 | /* turn off SPDIF if needed; otherwise the IEC958 bits won't be |
| 3674 | updated */ |
| 3675 | if (reset) |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 3676 | set_dig_out_convert(codec, nid, |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 3677 | spdif->ctls & ~AC_DIG1_ENABLE & 0xff, |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 3678 | -1); |
Takashi Iwai | 6b97eb4 | 2007-04-05 14:51:48 +0200 | [diff] [blame] | 3679 | snd_hda_codec_setup_stream(codec, nid, stream_tag, 0, format); |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 3680 | if (codec->slave_dig_outs) { |
Takashi Iwai | dda1441 | 2011-05-02 11:29:30 +0200 | [diff] [blame] | 3681 | const hda_nid_t *d; |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 3682 | for (d = codec->slave_dig_outs; *d; d++) |
| 3683 | snd_hda_codec_setup_stream(codec, *d, stream_tag, 0, |
| 3684 | format); |
Matthew Ranostay | de51ca1 | 2008-09-07 14:31:40 -0400 | [diff] [blame] | 3685 | } |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 3686 | /* turn on again (if needed) */ |
Laurence Darby | 3bef1c3 | 2012-11-03 17:00:06 +0000 | [diff] [blame] | 3687 | if (reset) |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 3688 | set_dig_out_convert(codec, nid, |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 3689 | spdif->ctls & 0xff, -1); |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 3690 | } |
Matthew Ranostay | de51ca1 | 2008-09-07 14:31:40 -0400 | [diff] [blame] | 3691 | |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 3692 | static void cleanup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid) |
| 3693 | { |
| 3694 | snd_hda_codec_cleanup_stream(codec, nid); |
| 3695 | if (codec->slave_dig_outs) { |
Takashi Iwai | dda1441 | 2011-05-02 11:29:30 +0200 | [diff] [blame] | 3696 | const hda_nid_t *d; |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 3697 | for (d = codec->slave_dig_outs; *d; d++) |
| 3698 | snd_hda_codec_cleanup_stream(codec, *d); |
| 3699 | } |
Takashi Iwai | 6b97eb4 | 2007-04-05 14:51:48 +0200 | [diff] [blame] | 3700 | } |
| 3701 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 3702 | /** |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 3703 | * snd_hda_multi_out_dig_open - open the digital out in the exclusive mode |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 3704 | * @codec: the HDA codec |
| 3705 | * @mout: hda_multi_out object |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3706 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3707 | int snd_hda_multi_out_dig_open(struct hda_codec *codec, |
| 3708 | struct hda_multi_out *mout) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3709 | { |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 3710 | mutex_lock(&codec->spdif_mutex); |
Takashi Iwai | 5930ca4 | 2007-04-16 11:23:56 +0200 | [diff] [blame] | 3711 | if (mout->dig_out_used == HDA_DIG_ANALOG_DUP) |
| 3712 | /* already opened as analog dup; reset it once */ |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 3713 | cleanup_dig_out_stream(codec, mout->dig_out_nid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3714 | mout->dig_out_used = HDA_DIG_EXCLUSIVE; |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 3715 | mutex_unlock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3716 | return 0; |
| 3717 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3718 | EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_open); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3719 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 3720 | /** |
| 3721 | * snd_hda_multi_out_dig_prepare - prepare the digital out stream |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 3722 | * @codec: the HDA codec |
| 3723 | * @mout: hda_multi_out object |
| 3724 | * @stream_tag: stream tag to assign |
| 3725 | * @format: format id to assign |
| 3726 | * @substream: PCM substream to assign |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 3727 | */ |
Takashi Iwai | 6b97eb4 | 2007-04-05 14:51:48 +0200 | [diff] [blame] | 3728 | int snd_hda_multi_out_dig_prepare(struct hda_codec *codec, |
| 3729 | struct hda_multi_out *mout, |
| 3730 | unsigned int stream_tag, |
| 3731 | unsigned int format, |
| 3732 | struct snd_pcm_substream *substream) |
| 3733 | { |
| 3734 | mutex_lock(&codec->spdif_mutex); |
| 3735 | setup_dig_out_stream(codec, mout->dig_out_nid, stream_tag, format); |
| 3736 | mutex_unlock(&codec->spdif_mutex); |
| 3737 | return 0; |
| 3738 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3739 | EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_prepare); |
Takashi Iwai | 6b97eb4 | 2007-04-05 14:51:48 +0200 | [diff] [blame] | 3740 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 3741 | /** |
| 3742 | * snd_hda_multi_out_dig_cleanup - clean-up the digital out stream |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 3743 | * @codec: the HDA codec |
| 3744 | * @mout: hda_multi_out object |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 3745 | */ |
Takashi Iwai | 9411e21 | 2009-02-13 11:32:28 +0100 | [diff] [blame] | 3746 | int snd_hda_multi_out_dig_cleanup(struct hda_codec *codec, |
| 3747 | struct hda_multi_out *mout) |
| 3748 | { |
| 3749 | mutex_lock(&codec->spdif_mutex); |
| 3750 | cleanup_dig_out_stream(codec, mout->dig_out_nid); |
| 3751 | mutex_unlock(&codec->spdif_mutex); |
| 3752 | return 0; |
| 3753 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3754 | EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_cleanup); |
Takashi Iwai | 9411e21 | 2009-02-13 11:32:28 +0100 | [diff] [blame] | 3755 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 3756 | /** |
| 3757 | * snd_hda_multi_out_dig_close - release the digital out stream |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 3758 | * @codec: the HDA codec |
| 3759 | * @mout: hda_multi_out object |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3760 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3761 | int snd_hda_multi_out_dig_close(struct hda_codec *codec, |
| 3762 | struct hda_multi_out *mout) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3763 | { |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 3764 | mutex_lock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3765 | mout->dig_out_used = 0; |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 3766 | mutex_unlock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3767 | return 0; |
| 3768 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3769 | EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_close); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3770 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 3771 | /** |
| 3772 | * snd_hda_multi_out_analog_open - open analog outputs |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 3773 | * @codec: the HDA codec |
| 3774 | * @mout: hda_multi_out object |
| 3775 | * @substream: PCM substream to assign |
| 3776 | * @hinfo: PCM information to assign |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 3777 | * |
| 3778 | * Open analog outputs and set up the hw-constraints. |
| 3779 | * If the digital outputs can be opened as slave, open the digital |
| 3780 | * outputs, too. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3781 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3782 | int snd_hda_multi_out_analog_open(struct hda_codec *codec, |
| 3783 | struct hda_multi_out *mout, |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 3784 | struct snd_pcm_substream *substream, |
| 3785 | struct hda_pcm_stream *hinfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3786 | { |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 3787 | struct snd_pcm_runtime *runtime = substream->runtime; |
| 3788 | runtime->hw.channels_max = mout->max_channels; |
| 3789 | if (mout->dig_out_nid) { |
| 3790 | if (!mout->analog_rates) { |
| 3791 | mout->analog_rates = hinfo->rates; |
| 3792 | mout->analog_formats = hinfo->formats; |
| 3793 | mout->analog_maxbps = hinfo->maxbps; |
| 3794 | } else { |
| 3795 | runtime->hw.rates = mout->analog_rates; |
| 3796 | runtime->hw.formats = mout->analog_formats; |
| 3797 | hinfo->maxbps = mout->analog_maxbps; |
| 3798 | } |
| 3799 | if (!mout->spdif_rates) { |
| 3800 | snd_hda_query_supported_pcm(codec, mout->dig_out_nid, |
| 3801 | &mout->spdif_rates, |
| 3802 | &mout->spdif_formats, |
| 3803 | &mout->spdif_maxbps); |
| 3804 | } |
| 3805 | mutex_lock(&codec->spdif_mutex); |
| 3806 | if (mout->share_spdif) { |
Takashi Iwai | 022b466 | 2009-07-03 23:03:30 +0200 | [diff] [blame] | 3807 | if ((runtime->hw.rates & mout->spdif_rates) && |
| 3808 | (runtime->hw.formats & mout->spdif_formats)) { |
| 3809 | runtime->hw.rates &= mout->spdif_rates; |
| 3810 | runtime->hw.formats &= mout->spdif_formats; |
| 3811 | if (mout->spdif_maxbps < hinfo->maxbps) |
| 3812 | hinfo->maxbps = mout->spdif_maxbps; |
| 3813 | } else { |
| 3814 | mout->share_spdif = 0; |
| 3815 | /* FIXME: need notify? */ |
| 3816 | } |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 3817 | } |
Frederik Deweerdt | eaa9985 | 2008-04-14 13:11:44 +0200 | [diff] [blame] | 3818 | mutex_unlock(&codec->spdif_mutex); |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 3819 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3820 | return snd_pcm_hw_constraint_step(substream->runtime, 0, |
| 3821 | SNDRV_PCM_HW_PARAM_CHANNELS, 2); |
| 3822 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3823 | EXPORT_SYMBOL_GPL(snd_hda_multi_out_analog_open); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3824 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 3825 | /** |
| 3826 | * snd_hda_multi_out_analog_prepare - Preapre the analog outputs. |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 3827 | * @codec: the HDA codec |
| 3828 | * @mout: hda_multi_out object |
| 3829 | * @stream_tag: stream tag to assign |
| 3830 | * @format: format id to assign |
| 3831 | * @substream: PCM substream to assign |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 3832 | * |
| 3833 | * Set up the i/o for analog out. |
| 3834 | * When the digital out is available, copy the front out to digital out, too. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3835 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3836 | int snd_hda_multi_out_analog_prepare(struct hda_codec *codec, |
| 3837 | struct hda_multi_out *mout, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3838 | unsigned int stream_tag, |
| 3839 | unsigned int format, |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 3840 | struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3841 | { |
Takashi Iwai | dda1441 | 2011-05-02 11:29:30 +0200 | [diff] [blame] | 3842 | const hda_nid_t *nids = mout->dac_nids; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3843 | int chs = substream->runtime->channels; |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 3844 | struct hda_spdif_out *spdif; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3845 | int i; |
| 3846 | |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 3847 | mutex_lock(&codec->spdif_mutex); |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 3848 | spdif = snd_hda_spdif_out_of_nid(codec, mout->dig_out_nid); |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 3849 | if (mout->dig_out_nid && mout->share_spdif && |
| 3850 | mout->dig_out_used != HDA_DIG_EXCLUSIVE) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3851 | if (chs == 2 && |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3852 | snd_hda_is_supported_format(codec, mout->dig_out_nid, |
| 3853 | format) && |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 3854 | !(spdif->status & IEC958_AES0_NONAUDIO)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3855 | mout->dig_out_used = HDA_DIG_ANALOG_DUP; |
Takashi Iwai | 6b97eb4 | 2007-04-05 14:51:48 +0200 | [diff] [blame] | 3856 | setup_dig_out_stream(codec, mout->dig_out_nid, |
| 3857 | stream_tag, format); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3858 | } else { |
| 3859 | mout->dig_out_used = 0; |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 3860 | cleanup_dig_out_stream(codec, mout->dig_out_nid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3861 | } |
| 3862 | } |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 3863 | mutex_unlock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3864 | |
| 3865 | /* front */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3866 | snd_hda_codec_setup_stream(codec, nids[HDA_FRONT], stream_tag, |
| 3867 | 0, format); |
Takashi Iwai | d29240c | 2007-10-26 12:35:56 +0200 | [diff] [blame] | 3868 | if (!mout->no_share_stream && |
| 3869 | mout->hp_nid && mout->hp_nid != nids[HDA_FRONT]) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3870 | /* headphone out will just decode front left/right (stereo) */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3871 | snd_hda_codec_setup_stream(codec, mout->hp_nid, stream_tag, |
| 3872 | 0, format); |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 3873 | /* extra outputs copied from front */ |
Takashi Iwai | a06dbfc | 2011-08-23 18:16:13 +0200 | [diff] [blame] | 3874 | for (i = 0; i < ARRAY_SIZE(mout->hp_out_nid); i++) |
| 3875 | if (!mout->no_share_stream && mout->hp_out_nid[i]) |
| 3876 | snd_hda_codec_setup_stream(codec, |
| 3877 | mout->hp_out_nid[i], |
| 3878 | stream_tag, 0, format); |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 3879 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3880 | /* surrounds */ |
| 3881 | for (i = 1; i < mout->num_dacs; i++) { |
Takashi Iwai | 4b3acaf | 2005-06-10 19:48:10 +0200 | [diff] [blame] | 3882 | if (chs >= (i + 1) * 2) /* independent out */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3883 | snd_hda_codec_setup_stream(codec, nids[i], stream_tag, |
| 3884 | i * 2, format); |
Takashi Iwai | d29240c | 2007-10-26 12:35:56 +0200 | [diff] [blame] | 3885 | else if (!mout->no_share_stream) /* copy front */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3886 | snd_hda_codec_setup_stream(codec, nids[i], stream_tag, |
| 3887 | 0, format); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3888 | } |
David Henningsson | cd4035e | 2013-10-10 09:01:25 +0200 | [diff] [blame] | 3889 | |
| 3890 | /* extra surrounds */ |
| 3891 | for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++) { |
| 3892 | int ch = 0; |
| 3893 | if (!mout->extra_out_nid[i]) |
| 3894 | break; |
| 3895 | if (chs >= (i + 1) * 2) |
| 3896 | ch = i * 2; |
| 3897 | else if (!mout->no_share_stream) |
| 3898 | break; |
| 3899 | snd_hda_codec_setup_stream(codec, mout->extra_out_nid[i], |
| 3900 | stream_tag, ch, format); |
| 3901 | } |
| 3902 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3903 | return 0; |
| 3904 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3905 | EXPORT_SYMBOL_GPL(snd_hda_multi_out_analog_prepare); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3906 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 3907 | /** |
| 3908 | * snd_hda_multi_out_analog_cleanup - clean up the setting for analog out |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 3909 | * @codec: the HDA codec |
| 3910 | * @mout: hda_multi_out object |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3911 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3912 | int snd_hda_multi_out_analog_cleanup(struct hda_codec *codec, |
| 3913 | struct hda_multi_out *mout) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3914 | { |
Takashi Iwai | dda1441 | 2011-05-02 11:29:30 +0200 | [diff] [blame] | 3915 | const hda_nid_t *nids = mout->dac_nids; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3916 | int i; |
| 3917 | |
| 3918 | for (i = 0; i < mout->num_dacs; i++) |
Takashi Iwai | 888afa1 | 2008-03-18 09:57:50 +0100 | [diff] [blame] | 3919 | snd_hda_codec_cleanup_stream(codec, nids[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3920 | if (mout->hp_nid) |
Takashi Iwai | 888afa1 | 2008-03-18 09:57:50 +0100 | [diff] [blame] | 3921 | snd_hda_codec_cleanup_stream(codec, mout->hp_nid); |
Takashi Iwai | a06dbfc | 2011-08-23 18:16:13 +0200 | [diff] [blame] | 3922 | for (i = 0; i < ARRAY_SIZE(mout->hp_out_nid); i++) |
| 3923 | if (mout->hp_out_nid[i]) |
| 3924 | snd_hda_codec_cleanup_stream(codec, |
| 3925 | mout->hp_out_nid[i]); |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 3926 | for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++) |
| 3927 | if (mout->extra_out_nid[i]) |
Takashi Iwai | 888afa1 | 2008-03-18 09:57:50 +0100 | [diff] [blame] | 3928 | snd_hda_codec_cleanup_stream(codec, |
| 3929 | mout->extra_out_nid[i]); |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 3930 | mutex_lock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3931 | if (mout->dig_out_nid && mout->dig_out_used == HDA_DIG_ANALOG_DUP) { |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 3932 | cleanup_dig_out_stream(codec, mout->dig_out_nid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3933 | mout->dig_out_used = 0; |
| 3934 | } |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 3935 | mutex_unlock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3936 | return 0; |
| 3937 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3938 | EXPORT_SYMBOL_GPL(snd_hda_multi_out_analog_cleanup); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3939 | |
Takashi Iwai | 4740860 | 2012-04-20 13:06:53 +0200 | [diff] [blame] | 3940 | /** |
| 3941 | * snd_hda_get_default_vref - Get the default (mic) VREF pin bits |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 3942 | * @codec: the HDA codec |
| 3943 | * @pin: referred pin NID |
Takashi Iwai | 4740860 | 2012-04-20 13:06:53 +0200 | [diff] [blame] | 3944 | * |
| 3945 | * Guess the suitable VREF pin bits to be set as the pin-control value. |
| 3946 | * Note: the function doesn't set the AC_PINCTL_IN_EN bit. |
| 3947 | */ |
| 3948 | unsigned int snd_hda_get_default_vref(struct hda_codec *codec, hda_nid_t pin) |
| 3949 | { |
| 3950 | unsigned int pincap; |
| 3951 | unsigned int oldval; |
| 3952 | oldval = snd_hda_codec_read(codec, pin, 0, |
| 3953 | AC_VERB_GET_PIN_WIDGET_CONTROL, 0); |
| 3954 | pincap = snd_hda_query_pin_caps(codec, pin); |
| 3955 | pincap = (pincap & AC_PINCAP_VREF) >> AC_PINCAP_VREF_SHIFT; |
| 3956 | /* Exception: if the default pin setup is vref50, we give it priority */ |
| 3957 | if ((pincap & AC_PINCAP_VREF_80) && oldval != PIN_VREF50) |
| 3958 | return AC_PINCTL_VREF_80; |
| 3959 | else if (pincap & AC_PINCAP_VREF_50) |
| 3960 | return AC_PINCTL_VREF_50; |
| 3961 | else if (pincap & AC_PINCAP_VREF_100) |
| 3962 | return AC_PINCTL_VREF_100; |
| 3963 | else if (pincap & AC_PINCAP_VREF_GRD) |
| 3964 | return AC_PINCTL_VREF_GRD; |
| 3965 | return AC_PINCTL_VREF_HIZ; |
| 3966 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3967 | EXPORT_SYMBOL_GPL(snd_hda_get_default_vref); |
Takashi Iwai | 4740860 | 2012-04-20 13:06:53 +0200 | [diff] [blame] | 3968 | |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 3969 | /** |
| 3970 | * snd_hda_correct_pin_ctl - correct the pin ctl value for matching with the pin cap |
| 3971 | * @codec: the HDA codec |
| 3972 | * @pin: referred pin NID |
| 3973 | * @val: pin ctl value to audit |
| 3974 | */ |
Takashi Iwai | 62f3a2f | 2013-01-10 08:56:46 +0100 | [diff] [blame] | 3975 | unsigned int snd_hda_correct_pin_ctl(struct hda_codec *codec, |
| 3976 | hda_nid_t pin, unsigned int val) |
| 3977 | { |
| 3978 | static unsigned int cap_lists[][2] = { |
| 3979 | { AC_PINCTL_VREF_100, AC_PINCAP_VREF_100 }, |
| 3980 | { AC_PINCTL_VREF_80, AC_PINCAP_VREF_80 }, |
| 3981 | { AC_PINCTL_VREF_50, AC_PINCAP_VREF_50 }, |
| 3982 | { AC_PINCTL_VREF_GRD, AC_PINCAP_VREF_GRD }, |
| 3983 | }; |
| 3984 | unsigned int cap; |
| 3985 | |
| 3986 | if (!val) |
| 3987 | return 0; |
| 3988 | cap = snd_hda_query_pin_caps(codec, pin); |
| 3989 | if (!cap) |
| 3990 | return val; /* don't know what to do... */ |
| 3991 | |
| 3992 | if (val & AC_PINCTL_OUT_EN) { |
| 3993 | if (!(cap & AC_PINCAP_OUT)) |
| 3994 | val &= ~(AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN); |
| 3995 | else if ((val & AC_PINCTL_HP_EN) && !(cap & AC_PINCAP_HP_DRV)) |
| 3996 | val &= ~AC_PINCTL_HP_EN; |
| 3997 | } |
| 3998 | |
| 3999 | if (val & AC_PINCTL_IN_EN) { |
| 4000 | if (!(cap & AC_PINCAP_IN)) |
| 4001 | val &= ~(AC_PINCTL_IN_EN | AC_PINCTL_VREFEN); |
| 4002 | else { |
| 4003 | unsigned int vcap, vref; |
| 4004 | int i; |
| 4005 | vcap = (cap & AC_PINCAP_VREF) >> AC_PINCAP_VREF_SHIFT; |
| 4006 | vref = val & AC_PINCTL_VREFEN; |
| 4007 | for (i = 0; i < ARRAY_SIZE(cap_lists); i++) { |
| 4008 | if (vref == cap_lists[i][0] && |
| 4009 | !(vcap & cap_lists[i][1])) { |
| 4010 | if (i == ARRAY_SIZE(cap_lists) - 1) |
| 4011 | vref = AC_PINCTL_VREF_HIZ; |
| 4012 | else |
| 4013 | vref = cap_lists[i + 1][0]; |
| 4014 | } |
| 4015 | } |
| 4016 | val &= ~AC_PINCTL_VREFEN; |
| 4017 | val |= vref; |
| 4018 | } |
| 4019 | } |
| 4020 | |
| 4021 | return val; |
| 4022 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 4023 | EXPORT_SYMBOL_GPL(snd_hda_correct_pin_ctl); |
Takashi Iwai | 62f3a2f | 2013-01-10 08:56:46 +0100 | [diff] [blame] | 4024 | |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 4025 | /** |
| 4026 | * _snd_hda_pin_ctl - Helper to set pin ctl value |
| 4027 | * @codec: the HDA codec |
| 4028 | * @pin: referred pin NID |
| 4029 | * @val: pin control value to set |
| 4030 | * @cached: access over codec pinctl cache or direct write |
| 4031 | * |
| 4032 | * This function is a helper to set a pin ctl value more safely. |
| 4033 | * It corrects the pin ctl value via snd_hda_correct_pin_ctl(), stores the |
| 4034 | * value in pin target array via snd_hda_codec_set_pin_target(), then |
| 4035 | * actually writes the value via either snd_hda_codec_update_cache() or |
| 4036 | * snd_hda_codec_write() depending on @cached flag. |
| 4037 | */ |
Takashi Iwai | cdd03ce | 2012-04-20 12:34:50 +0200 | [diff] [blame] | 4038 | int _snd_hda_set_pin_ctl(struct hda_codec *codec, hda_nid_t pin, |
| 4039 | unsigned int val, bool cached) |
| 4040 | { |
Takashi Iwai | 62f3a2f | 2013-01-10 08:56:46 +0100 | [diff] [blame] | 4041 | val = snd_hda_correct_pin_ctl(codec, pin, val); |
Takashi Iwai | d7fdc00 | 2013-01-10 08:38:04 +0100 | [diff] [blame] | 4042 | snd_hda_codec_set_pin_target(codec, pin, val); |
Takashi Iwai | cdd03ce | 2012-04-20 12:34:50 +0200 | [diff] [blame] | 4043 | if (cached) |
| 4044 | return snd_hda_codec_update_cache(codec, pin, 0, |
| 4045 | AC_VERB_SET_PIN_WIDGET_CONTROL, val); |
| 4046 | else |
| 4047 | return snd_hda_codec_write(codec, pin, 0, |
| 4048 | AC_VERB_SET_PIN_WIDGET_CONTROL, val); |
| 4049 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 4050 | EXPORT_SYMBOL_GPL(_snd_hda_set_pin_ctl); |
Takashi Iwai | cdd03ce | 2012-04-20 12:34:50 +0200 | [diff] [blame] | 4051 | |
Takashi Iwai | 990061c | 2010-09-09 22:08:44 +0200 | [diff] [blame] | 4052 | /** |
| 4053 | * snd_hda_add_imux_item - Add an item to input_mux |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 4054 | * @codec: the HDA codec |
| 4055 | * @imux: imux helper object |
| 4056 | * @label: the name of imux item to assign |
| 4057 | * @index: index number of imux item to assign |
| 4058 | * @type_idx: pointer to store the resultant label index |
Takashi Iwai | 990061c | 2010-09-09 22:08:44 +0200 | [diff] [blame] | 4059 | * |
| 4060 | * When the same label is used already in the existing items, the number |
| 4061 | * suffix is appended to the label. This label index number is stored |
| 4062 | * to type_idx when non-NULL pointer is given. |
| 4063 | */ |
Takashi Iwai | 6194b99 | 2014-06-06 18:12:16 +0200 | [diff] [blame] | 4064 | int snd_hda_add_imux_item(struct hda_codec *codec, |
| 4065 | struct hda_input_mux *imux, const char *label, |
Takashi Iwai | 10a20af | 2010-09-09 16:28:02 +0200 | [diff] [blame] | 4066 | int index, int *type_idx) |
| 4067 | { |
| 4068 | int i, label_idx = 0; |
| 4069 | if (imux->num_items >= HDA_MAX_NUM_INPUTS) { |
Takashi Iwai | 6194b99 | 2014-06-06 18:12:16 +0200 | [diff] [blame] | 4070 | codec_err(codec, "hda_codec: Too many imux items!\n"); |
Takashi Iwai | 10a20af | 2010-09-09 16:28:02 +0200 | [diff] [blame] | 4071 | return -EINVAL; |
| 4072 | } |
| 4073 | for (i = 0; i < imux->num_items; i++) { |
| 4074 | if (!strncmp(label, imux->items[i].label, strlen(label))) |
| 4075 | label_idx++; |
| 4076 | } |
| 4077 | if (type_idx) |
| 4078 | *type_idx = label_idx; |
| 4079 | if (label_idx > 0) |
| 4080 | snprintf(imux->items[imux->num_items].label, |
| 4081 | sizeof(imux->items[imux->num_items].label), |
| 4082 | "%s %d", label, label_idx); |
| 4083 | else |
| 4084 | strlcpy(imux->items[imux->num_items].label, label, |
| 4085 | sizeof(imux->items[imux->num_items].label)); |
| 4086 | imux->items[imux->num_items].index = index; |
| 4087 | imux->num_items++; |
| 4088 | return 0; |
| 4089 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 4090 | EXPORT_SYMBOL_GPL(snd_hda_add_imux_item); |
Takashi Iwai | d7b1ae9 | 2010-08-30 13:00:16 +0200 | [diff] [blame] | 4091 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4092 | /** |
Takashi Iwai | 0a50575 | 2015-04-16 23:25:02 +0200 | [diff] [blame^] | 4093 | * snd_hda_bus_reset_codecs - Reset the bus |
Takashi Iwai | 59ed1ea | 2015-02-18 15:39:59 +0100 | [diff] [blame] | 4094 | * @bus: HD-audio bus |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4095 | */ |
Takashi Iwai | 0a50575 | 2015-04-16 23:25:02 +0200 | [diff] [blame^] | 4096 | void snd_hda_bus_reset_codecs(struct hda_bus *bus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4097 | { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 4098 | struct hda_codec *codec; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4099 | |
Takashi Iwai | d068ebc | 2015-03-02 23:22:59 +0100 | [diff] [blame] | 4100 | list_for_each_codec(codec, bus) { |
Takashi Iwai | 59ed1ea | 2015-02-18 15:39:59 +0100 | [diff] [blame] | 4101 | /* FIXME: maybe a better way needed for forced reset */ |
David Henningsson | 26a6cb6 | 2012-10-09 15:04:21 +0200 | [diff] [blame] | 4102 | cancel_delayed_work_sync(&codec->jackpoll_work); |
Takashi Iwai | 59ed1ea | 2015-02-18 15:39:59 +0100 | [diff] [blame] | 4103 | #ifdef CONFIG_PM |
Mengdong Lin | 0e24dbb | 2013-11-26 23:00:51 -0500 | [diff] [blame] | 4104 | if (hda_codec_is_power_on(codec)) { |
Takashi Iwai | cc72da7 | 2015-02-19 16:00:22 +0100 | [diff] [blame] | 4105 | hda_call_codec_suspend(codec); |
Mengdong Lin | 12edb89 | 2013-11-26 23:32:23 -0500 | [diff] [blame] | 4106 | hda_call_codec_resume(codec); |
Takashi Iwai | 59ed1ea | 2015-02-18 15:39:59 +0100 | [diff] [blame] | 4107 | } |
| 4108 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4109 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4110 | } |
Takashi Iwai | b2e1859 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 4111 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 4112 | /** |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 4113 | * snd_print_pcm_bits - Print the supported PCM fmt bits to the string buffer |
| 4114 | * @pcm: PCM caps bits |
| 4115 | * @buf: the string buffer to write |
| 4116 | * @buflen: the max buffer length |
| 4117 | * |
| 4118 | * used by hda_proc.c and hda_eld.c |
| 4119 | */ |
Takashi Iwai | b202226 | 2008-11-21 21:24:03 +0100 | [diff] [blame] | 4120 | void snd_print_pcm_bits(int pcm, char *buf, int buflen) |
| 4121 | { |
| 4122 | static unsigned int bits[] = { 8, 16, 20, 24, 32 }; |
| 4123 | int i, j; |
| 4124 | |
| 4125 | for (i = 0, j = 0; i < ARRAY_SIZE(bits); i++) |
| 4126 | if (pcm & (AC_SUPPCM_BITS_8 << i)) |
| 4127 | j += snprintf(buf + j, buflen - j, " %d", bits[i]); |
| 4128 | |
| 4129 | buf[j] = '\0'; /* necessary when j == 0 */ |
| 4130 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 4131 | EXPORT_SYMBOL_GPL(snd_print_pcm_bits); |
Takashi Iwai | 1289e9e | 2008-11-27 15:47:11 +0100 | [diff] [blame] | 4132 | |
| 4133 | MODULE_DESCRIPTION("HDA codec core"); |
| 4134 | MODULE_LICENSE("GPL"); |