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 | aa2936f | 2009-05-26 16:07:57 +0200 | [diff] [blame] | 140 | snd_hda_power_up(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 | aa2936f | 2009-05-26 16:07:57 +0200 | [diff] [blame] | 148 | snd_hda_power_down(codec); |
Takashi Iwai | d068ebc | 2015-03-02 23:22:59 +0100 | [diff] [blame] | 149 | if (!codec_in_pm(codec) && res && err < 0 && bus->rirb_error) { |
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 | 8dd7833 | 2009-06-02 01:16:07 +0200 | [diff] [blame] | 153 | bus->ops.bus_reset(bus); |
| 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 | |
| 439 | parm = snd_hda_param_read(codec, nid, AC_PAR_DEVLIST_LEN); |
| 440 | if (parm == -1 && codec->bus->rirb_error) |
| 441 | parm = 0; |
| 442 | return parm & AC_DEV_LIST_LEN_MASK; |
| 443 | } |
| 444 | |
| 445 | /** |
| 446 | * snd_hda_get_devices - copy device list without cache |
| 447 | * @codec: the HDA codec |
| 448 | * @nid: NID of the pin to parse |
| 449 | * @dev_list: device list array |
| 450 | * @max_devices: max. number of devices to store |
| 451 | * |
| 452 | * Copy the device list. This info is dynamic and so not cached. |
| 453 | * Currently called only from hda_proc.c, so not exported. |
| 454 | */ |
| 455 | int snd_hda_get_devices(struct hda_codec *codec, hda_nid_t nid, |
| 456 | u8 *dev_list, int max_devices) |
| 457 | { |
| 458 | unsigned int parm; |
| 459 | int i, dev_len, devices; |
| 460 | |
| 461 | parm = get_num_devices(codec, nid); |
| 462 | if (!parm) /* not multi-stream capable */ |
| 463 | return 0; |
| 464 | |
| 465 | dev_len = parm + 1; |
| 466 | dev_len = dev_len < max_devices ? dev_len : max_devices; |
| 467 | |
| 468 | devices = 0; |
| 469 | while (devices < dev_len) { |
| 470 | parm = snd_hda_codec_read(codec, nid, 0, |
| 471 | AC_VERB_GET_DEVICE_LIST, devices); |
| 472 | if (parm == -1 && codec->bus->rirb_error) |
| 473 | break; |
| 474 | |
| 475 | for (i = 0; i < 8; i++) { |
| 476 | dev_list[devices] = (u8)parm; |
| 477 | parm >>= 4; |
| 478 | devices++; |
| 479 | if (devices >= dev_len) |
| 480 | break; |
| 481 | } |
| 482 | } |
| 483 | return devices; |
| 484 | } |
| 485 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | * destructor |
| 488 | */ |
Takashi Iwai | 2565c89 | 2014-02-19 11:41:09 +0100 | [diff] [blame] | 489 | static void snd_hda_bus_free(struct hda_bus *bus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 490 | { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 491 | if (!bus) |
Takashi Iwai | 2565c89 | 2014-02-19 11:41:09 +0100 | [diff] [blame] | 492 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 493 | if (bus->ops.private_free) |
| 494 | bus->ops.private_free(bus); |
Takashi Iwai | d068ebc | 2015-03-02 23:22:59 +0100 | [diff] [blame] | 495 | snd_hdac_bus_exit(&bus->core); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 496 | kfree(bus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | } |
| 498 | |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 499 | static int snd_hda_bus_dev_free(struct snd_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | { |
Takashi Iwai | 2565c89 | 2014-02-19 11:41:09 +0100 | [diff] [blame] | 501 | snd_hda_bus_free(device->device_data); |
| 502 | return 0; |
| 503 | } |
| 504 | |
| 505 | static int snd_hda_bus_dev_disconnect(struct snd_device *device) |
| 506 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 507 | struct hda_bus *bus = device->device_data; |
Takashi Iwai | b94d3539 | 2008-11-21 09:08:06 +0100 | [diff] [blame] | 508 | bus->shutdown = 1; |
Takashi Iwai | 2565c89 | 2014-02-19 11:41:09 +0100 | [diff] [blame] | 509 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | } |
| 511 | |
Takashi Iwai | d068ebc | 2015-03-02 23:22:59 +0100 | [diff] [blame] | 512 | /* hdac_bus_ops translations */ |
| 513 | static int _hda_bus_command(struct hdac_bus *_bus, unsigned int cmd) |
| 514 | { |
| 515 | struct hda_bus *bus = container_of(_bus, struct hda_bus, core); |
| 516 | return bus->ops.command(bus, cmd); |
| 517 | } |
| 518 | |
| 519 | static int _hda_bus_get_response(struct hdac_bus *_bus, unsigned int addr, |
| 520 | unsigned int *res) |
| 521 | { |
| 522 | struct hda_bus *bus = container_of(_bus, struct hda_bus, core); |
| 523 | *res = bus->ops.get_response(bus, addr); |
| 524 | return bus->rirb_error ? -EIO : 0; |
| 525 | } |
| 526 | |
| 527 | static const struct hdac_bus_ops bus_ops = { |
| 528 | .command = _hda_bus_command, |
| 529 | .get_response = _hda_bus_get_response, |
| 530 | }; |
| 531 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 | /** |
| 533 | * snd_hda_bus_new - create a HDA bus |
| 534 | * @card: the card entry |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 | * @busp: the pointer to store the created bus instance |
| 536 | * |
| 537 | * Returns 0 if successful, or a negative error code. |
| 538 | */ |
Takashi Iwai | 6a0f56a | 2012-12-07 07:41:56 +0100 | [diff] [blame] | 539 | int snd_hda_bus_new(struct snd_card *card, |
Takashi Iwai | ef74497 | 2015-02-17 13:56:29 +0100 | [diff] [blame] | 540 | struct hda_bus **busp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | { |
| 542 | struct hda_bus *bus; |
| 543 | int err; |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 544 | static struct snd_device_ops dev_ops = { |
Takashi Iwai | 2565c89 | 2014-02-19 11:41:09 +0100 | [diff] [blame] | 545 | .dev_disconnect = snd_hda_bus_dev_disconnect, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | .dev_free = snd_hda_bus_dev_free, |
| 547 | }; |
| 548 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | if (busp) |
| 550 | *busp = NULL; |
| 551 | |
Takashi Iwai | e560d8d | 2005-09-09 14:21:46 +0200 | [diff] [blame] | 552 | bus = kzalloc(sizeof(*bus), GFP_KERNEL); |
Takashi Iwai | f4de8fe | 2015-02-27 16:17:18 +0100 | [diff] [blame] | 553 | if (!bus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 | |
Takashi Iwai | d068ebc | 2015-03-02 23:22:59 +0100 | [diff] [blame] | 556 | err = snd_hdac_bus_init(&bus->core, card->dev, &bus_ops); |
| 557 | if (err < 0) { |
| 558 | kfree(bus); |
| 559 | return err; |
| 560 | } |
| 561 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | bus->card = card; |
Takashi Iwai | 3f50ac6 | 2010-08-20 09:44:36 +0200 | [diff] [blame] | 563 | mutex_init(&bus->prepare_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 564 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 565 | err = snd_device_new(card, SNDRV_DEV_BUS, bus, &dev_ops); |
| 566 | if (err < 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | snd_hda_bus_free(bus); |
| 568 | return err; |
| 569 | } |
| 570 | if (busp) |
| 571 | *busp = bus; |
| 572 | return 0; |
| 573 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 574 | EXPORT_SYMBOL_GPL(snd_hda_bus_new); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 575 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 576 | /* |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 577 | * read widget caps for each widget and store in cache |
| 578 | */ |
| 579 | static int read_widget_caps(struct hda_codec *codec, hda_nid_t fg_node) |
| 580 | { |
| 581 | int i; |
| 582 | hda_nid_t nid; |
| 583 | |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 584 | codec->wcaps = kmalloc(codec->core.num_nodes * 4, GFP_KERNEL); |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 585 | if (!codec->wcaps) |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 586 | return -ENOMEM; |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 587 | nid = codec->core.start_nid; |
| 588 | for (i = 0; i < codec->core.num_nodes; i++, nid++) |
Takashi Iwai | 9ba17b4 | 2015-03-03 23:29:47 +0100 | [diff] [blame] | 589 | codec->wcaps[i] = snd_hdac_read_parm_uncached(&codec->core, |
| 590 | nid, AC_PAR_AUDIO_WIDGET_CAP); |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 591 | return 0; |
| 592 | } |
| 593 | |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 594 | /* read all pin default configurations and save codec->init_pins */ |
| 595 | static int read_pin_defaults(struct hda_codec *codec) |
| 596 | { |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 597 | hda_nid_t nid; |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 598 | |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 599 | for_each_hda_codec_node(nid, codec) { |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 600 | struct hda_pincfg *pin; |
| 601 | unsigned int wcaps = get_wcaps(codec, nid); |
Takashi Iwai | a22d543 | 2009-07-27 12:54:26 +0200 | [diff] [blame] | 602 | unsigned int wid_type = get_wcaps_type(wcaps); |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 603 | if (wid_type != AC_WID_PIN) |
| 604 | continue; |
| 605 | pin = snd_array_new(&codec->init_pins); |
| 606 | if (!pin) |
| 607 | return -ENOMEM; |
| 608 | pin->nid = nid; |
| 609 | pin->cfg = snd_hda_codec_read(codec, nid, 0, |
| 610 | AC_VERB_GET_CONFIG_DEFAULT, 0); |
Takashi Iwai | ac0547d | 2010-07-05 16:50:13 +0200 | [diff] [blame] | 611 | pin->ctrl = snd_hda_codec_read(codec, nid, 0, |
| 612 | AC_VERB_GET_PIN_WIDGET_CONTROL, |
| 613 | 0); |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 614 | } |
| 615 | return 0; |
| 616 | } |
| 617 | |
| 618 | /* look up the given pin config list and return the item matching with NID */ |
| 619 | static struct hda_pincfg *look_up_pincfg(struct hda_codec *codec, |
| 620 | struct snd_array *array, |
| 621 | hda_nid_t nid) |
| 622 | { |
| 623 | int i; |
| 624 | for (i = 0; i < array->used; i++) { |
| 625 | struct hda_pincfg *pin = snd_array_elem(array, i); |
| 626 | if (pin->nid == nid) |
| 627 | return pin; |
| 628 | } |
| 629 | return NULL; |
| 630 | } |
| 631 | |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 632 | /* set the current pin config value for the given NID. |
| 633 | * the value is cached, and read via snd_hda_codec_get_pincfg() |
| 634 | */ |
| 635 | int snd_hda_add_pincfg(struct hda_codec *codec, struct snd_array *list, |
| 636 | hda_nid_t nid, unsigned int cfg) |
| 637 | { |
| 638 | struct hda_pincfg *pin; |
| 639 | |
Takashi Iwai | d5657ec | 2013-04-18 09:59:28 +0200 | [diff] [blame] | 640 | /* the check below may be invalid when pins are added by a fixup |
| 641 | * dynamically (e.g. via snd_hda_codec_update_widgets()), so disabled |
| 642 | * for now |
| 643 | */ |
| 644 | /* |
Takashi Iwai | b82855a | 2009-12-27 11:24:56 +0100 | [diff] [blame] | 645 | if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN) |
| 646 | return -EINVAL; |
Takashi Iwai | d5657ec | 2013-04-18 09:59:28 +0200 | [diff] [blame] | 647 | */ |
Takashi Iwai | b82855a | 2009-12-27 11:24:56 +0100 | [diff] [blame] | 648 | |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 649 | pin = look_up_pincfg(codec, list, nid); |
| 650 | if (!pin) { |
| 651 | pin = snd_array_new(list); |
| 652 | if (!pin) |
| 653 | return -ENOMEM; |
| 654 | pin->nid = nid; |
| 655 | } |
| 656 | pin->cfg = cfg; |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 657 | return 0; |
| 658 | } |
| 659 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 660 | /** |
| 661 | * snd_hda_codec_set_pincfg - Override a pin default configuration |
| 662 | * @codec: the HDA codec |
| 663 | * @nid: NID to set the pin config |
| 664 | * @cfg: the pin default config value |
| 665 | * |
| 666 | * Override a pin default configuration value in the cache. |
| 667 | * This value can be read by snd_hda_codec_get_pincfg() in a higher |
| 668 | * priority than the real hardware value. |
| 669 | */ |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 670 | int snd_hda_codec_set_pincfg(struct hda_codec *codec, |
| 671 | hda_nid_t nid, unsigned int cfg) |
| 672 | { |
Takashi Iwai | 346ff70 | 2009-02-23 09:42:57 +0100 | [diff] [blame] | 673 | return snd_hda_add_pincfg(codec, &codec->driver_pins, nid, cfg); |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 674 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 675 | EXPORT_SYMBOL_GPL(snd_hda_codec_set_pincfg); |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 676 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 677 | /** |
| 678 | * snd_hda_codec_get_pincfg - Obtain a pin-default configuration |
| 679 | * @codec: the HDA codec |
| 680 | * @nid: NID to get the pin config |
| 681 | * |
| 682 | * Get the current pin config value of the given pin NID. |
| 683 | * If the pincfg value is cached or overridden via sysfs or driver, |
| 684 | * returns the cached value. |
| 685 | */ |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 686 | unsigned int snd_hda_codec_get_pincfg(struct hda_codec *codec, hda_nid_t nid) |
| 687 | { |
| 688 | struct hda_pincfg *pin; |
| 689 | |
Takashi Iwai | 648a8d2 | 2014-02-25 10:38:13 +0100 | [diff] [blame] | 690 | #ifdef CONFIG_SND_HDA_RECONFIG |
Takashi Iwai | 09b70e8 | 2013-01-10 18:21:56 +0100 | [diff] [blame] | 691 | { |
| 692 | unsigned int cfg = 0; |
| 693 | mutex_lock(&codec->user_mutex); |
| 694 | pin = look_up_pincfg(codec, &codec->user_pins, nid); |
| 695 | if (pin) |
| 696 | cfg = pin->cfg; |
| 697 | mutex_unlock(&codec->user_mutex); |
| 698 | if (cfg) |
| 699 | return cfg; |
| 700 | } |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 701 | #endif |
Takashi Iwai | 5e7b8e0 | 2009-02-23 09:45:59 +0100 | [diff] [blame] | 702 | pin = look_up_pincfg(codec, &codec->driver_pins, nid); |
| 703 | if (pin) |
| 704 | return pin->cfg; |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 705 | pin = look_up_pincfg(codec, &codec->init_pins, nid); |
| 706 | if (pin) |
| 707 | return pin->cfg; |
| 708 | return 0; |
| 709 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 710 | EXPORT_SYMBOL_GPL(snd_hda_codec_get_pincfg); |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 711 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 712 | /** |
| 713 | * snd_hda_codec_set_pin_target - remember the current pinctl target value |
| 714 | * @codec: the HDA codec |
| 715 | * @nid: pin NID |
| 716 | * @val: assigned pinctl value |
| 717 | * |
| 718 | * This function stores the given value to a pinctl target value in the |
| 719 | * pincfg table. This isn't always as same as the actually written value |
| 720 | * but can be referred at any time via snd_hda_codec_get_pin_target(). |
| 721 | */ |
Takashi Iwai | d7fdc00 | 2013-01-10 08:38:04 +0100 | [diff] [blame] | 722 | int snd_hda_codec_set_pin_target(struct hda_codec *codec, hda_nid_t nid, |
| 723 | unsigned int val) |
| 724 | { |
| 725 | struct hda_pincfg *pin; |
| 726 | |
| 727 | pin = look_up_pincfg(codec, &codec->init_pins, nid); |
| 728 | if (!pin) |
| 729 | return -EINVAL; |
| 730 | pin->target = val; |
| 731 | return 0; |
| 732 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 733 | EXPORT_SYMBOL_GPL(snd_hda_codec_set_pin_target); |
Takashi Iwai | d7fdc00 | 2013-01-10 08:38:04 +0100 | [diff] [blame] | 734 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 735 | /** |
| 736 | * snd_hda_codec_get_pin_target - return the current pinctl target value |
| 737 | * @codec: the HDA codec |
| 738 | * @nid: pin NID |
| 739 | */ |
Takashi Iwai | d7fdc00 | 2013-01-10 08:38:04 +0100 | [diff] [blame] | 740 | int snd_hda_codec_get_pin_target(struct hda_codec *codec, hda_nid_t nid) |
| 741 | { |
| 742 | struct hda_pincfg *pin; |
| 743 | |
| 744 | pin = look_up_pincfg(codec, &codec->init_pins, nid); |
| 745 | if (!pin) |
| 746 | return 0; |
| 747 | return pin->target; |
| 748 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 749 | EXPORT_SYMBOL_GPL(snd_hda_codec_get_pin_target); |
Takashi Iwai | d7fdc00 | 2013-01-10 08:38:04 +0100 | [diff] [blame] | 750 | |
Takashi Iwai | 92ee616 | 2009-12-27 11:18:59 +0100 | [diff] [blame] | 751 | /** |
| 752 | * snd_hda_shutup_pins - Shut up all pins |
| 753 | * @codec: the HDA codec |
| 754 | * |
| 755 | * Clear all pin controls to shup up before suspend for avoiding click noise. |
| 756 | * The controls aren't cached so that they can be resumed properly. |
| 757 | */ |
| 758 | void snd_hda_shutup_pins(struct hda_codec *codec) |
| 759 | { |
| 760 | int i; |
Takashi Iwai | ac0547d | 2010-07-05 16:50:13 +0200 | [diff] [blame] | 761 | /* don't shut up pins when unloading the driver; otherwise it breaks |
| 762 | * the default pin setup at the next load of the driver |
| 763 | */ |
| 764 | if (codec->bus->shutdown) |
| 765 | return; |
Takashi Iwai | 92ee616 | 2009-12-27 11:18:59 +0100 | [diff] [blame] | 766 | for (i = 0; i < codec->init_pins.used; i++) { |
| 767 | struct hda_pincfg *pin = snd_array_elem(&codec->init_pins, i); |
| 768 | /* use read here for syncing after issuing each verb */ |
| 769 | snd_hda_codec_read(codec, pin->nid, 0, |
| 770 | AC_VERB_SET_PIN_WIDGET_CONTROL, 0); |
| 771 | } |
Takashi Iwai | ac0547d | 2010-07-05 16:50:13 +0200 | [diff] [blame] | 772 | codec->pins_shutup = 1; |
Takashi Iwai | 92ee616 | 2009-12-27 11:18:59 +0100 | [diff] [blame] | 773 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 774 | EXPORT_SYMBOL_GPL(snd_hda_shutup_pins); |
Takashi Iwai | 92ee616 | 2009-12-27 11:18:59 +0100 | [diff] [blame] | 775 | |
Takashi Iwai | 2a43952 | 2011-07-26 09:52:50 +0200 | [diff] [blame] | 776 | #ifdef CONFIG_PM |
Takashi Iwai | ac0547d | 2010-07-05 16:50:13 +0200 | [diff] [blame] | 777 | /* Restore the pin controls cleared previously via snd_hda_shutup_pins() */ |
| 778 | static void restore_shutup_pins(struct hda_codec *codec) |
| 779 | { |
| 780 | int i; |
| 781 | if (!codec->pins_shutup) |
| 782 | return; |
| 783 | if (codec->bus->shutdown) |
| 784 | return; |
| 785 | for (i = 0; i < codec->init_pins.used; i++) { |
| 786 | struct hda_pincfg *pin = snd_array_elem(&codec->init_pins, i); |
| 787 | snd_hda_codec_write(codec, pin->nid, 0, |
| 788 | AC_VERB_SET_PIN_WIDGET_CONTROL, |
| 789 | pin->ctrl); |
| 790 | } |
| 791 | codec->pins_shutup = 0; |
| 792 | } |
Mike Waychison | 1c7276c | 2011-04-20 12:04:36 -0700 | [diff] [blame] | 793 | #endif |
Takashi Iwai | ac0547d | 2010-07-05 16:50:13 +0200 | [diff] [blame] | 794 | |
David Henningsson | 26a6cb6 | 2012-10-09 15:04:21 +0200 | [diff] [blame] | 795 | static void hda_jackpoll_work(struct work_struct *work) |
| 796 | { |
| 797 | struct hda_codec *codec = |
| 798 | container_of(work, struct hda_codec, jackpoll_work.work); |
David Henningsson | 26a6cb6 | 2012-10-09 15:04:21 +0200 | [diff] [blame] | 799 | |
| 800 | snd_hda_jack_set_dirty_all(codec); |
| 801 | snd_hda_jack_poll_all(codec); |
Wang Xingchao | 18e6062 | 2013-07-25 23:34:45 -0400 | [diff] [blame] | 802 | |
| 803 | if (!codec->jackpoll_interval) |
| 804 | return; |
| 805 | |
Takashi Iwai | 2f35c63 | 2015-02-27 22:43:26 +0100 | [diff] [blame] | 806 | schedule_delayed_work(&codec->jackpoll_work, |
| 807 | codec->jackpoll_interval); |
David Henningsson | 26a6cb6 | 2012-10-09 15:04:21 +0200 | [diff] [blame] | 808 | } |
| 809 | |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 810 | static void init_hda_cache(struct hda_cache_rec *cache, |
| 811 | unsigned int record_size); |
Takashi Iwai | 1fcaee6 | 2007-08-23 00:01:09 +0200 | [diff] [blame] | 812 | static void free_hda_cache(struct hda_cache_rec *cache); |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 813 | |
Takashi Iwai | 3fdf146 | 2012-11-22 08:16:31 +0100 | [diff] [blame] | 814 | /* release all pincfg lists */ |
| 815 | static void free_init_pincfgs(struct hda_codec *codec) |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 816 | { |
Takashi Iwai | 346ff70 | 2009-02-23 09:42:57 +0100 | [diff] [blame] | 817 | snd_array_free(&codec->driver_pins); |
Takashi Iwai | 648a8d2 | 2014-02-25 10:38:13 +0100 | [diff] [blame] | 818 | #ifdef CONFIG_SND_HDA_RECONFIG |
Takashi Iwai | 346ff70 | 2009-02-23 09:42:57 +0100 | [diff] [blame] | 819 | snd_array_free(&codec->user_pins); |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 820 | #endif |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 821 | snd_array_free(&codec->init_pins); |
| 822 | } |
| 823 | |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 824 | /* |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 825 | * audio-converter setup caches |
| 826 | */ |
| 827 | struct hda_cvt_setup { |
| 828 | hda_nid_t nid; |
| 829 | u8 stream_tag; |
| 830 | u8 channel_id; |
| 831 | u16 format_id; |
| 832 | unsigned char active; /* cvt is currently used */ |
| 833 | unsigned char dirty; /* setups should be cleared */ |
| 834 | }; |
| 835 | |
| 836 | /* get or create a cache entry for the given audio converter NID */ |
| 837 | static struct hda_cvt_setup * |
| 838 | get_hda_cvt_setup(struct hda_codec *codec, hda_nid_t nid) |
| 839 | { |
| 840 | struct hda_cvt_setup *p; |
| 841 | int i; |
| 842 | |
| 843 | for (i = 0; i < codec->cvt_setups.used; i++) { |
| 844 | p = snd_array_elem(&codec->cvt_setups, i); |
| 845 | if (p->nid == nid) |
| 846 | return p; |
| 847 | } |
| 848 | p = snd_array_new(&codec->cvt_setups); |
| 849 | if (p) |
| 850 | p->nid = nid; |
| 851 | return p; |
| 852 | } |
| 853 | |
| 854 | /* |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame] | 855 | * PCM device |
| 856 | */ |
| 857 | static void release_pcm(struct kref *kref) |
| 858 | { |
| 859 | struct hda_pcm *pcm = container_of(kref, struct hda_pcm, kref); |
| 860 | |
| 861 | if (pcm->pcm) |
| 862 | snd_device_free(pcm->codec->card, pcm->pcm); |
| 863 | clear_bit(pcm->device, pcm->codec->bus->pcm_dev_bits); |
| 864 | kfree(pcm->name); |
| 865 | kfree(pcm); |
| 866 | } |
| 867 | |
| 868 | void snd_hda_codec_pcm_put(struct hda_pcm *pcm) |
| 869 | { |
| 870 | kref_put(&pcm->kref, release_pcm); |
| 871 | } |
| 872 | EXPORT_SYMBOL_GPL(snd_hda_codec_pcm_put); |
| 873 | |
| 874 | struct hda_pcm *snd_hda_codec_pcm_new(struct hda_codec *codec, |
| 875 | const char *fmt, ...) |
| 876 | { |
| 877 | struct hda_pcm *pcm; |
| 878 | va_list args; |
| 879 | |
| 880 | va_start(args, fmt); |
| 881 | pcm = kzalloc(sizeof(*pcm), GFP_KERNEL); |
| 882 | if (!pcm) |
| 883 | return NULL; |
| 884 | |
| 885 | pcm->codec = codec; |
| 886 | kref_init(&pcm->kref); |
| 887 | pcm->name = kvasprintf(GFP_KERNEL, fmt, args); |
| 888 | if (!pcm->name) { |
| 889 | kfree(pcm); |
| 890 | return NULL; |
| 891 | } |
| 892 | |
| 893 | list_add_tail(&pcm->list, &codec->pcm_list_head); |
| 894 | return pcm; |
| 895 | } |
| 896 | EXPORT_SYMBOL_GPL(snd_hda_codec_pcm_new); |
| 897 | |
Takashi Iwai | 9a6246f | 2015-02-27 18:17:28 +0100 | [diff] [blame] | 898 | /* |
| 899 | * codec destructor |
| 900 | */ |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame] | 901 | static void codec_release_pcms(struct hda_codec *codec) |
| 902 | { |
| 903 | struct hda_pcm *pcm, *n; |
| 904 | |
| 905 | list_for_each_entry_safe(pcm, n, &codec->pcm_list_head, list) { |
| 906 | list_del_init(&pcm->list); |
Takashi Iwai | 9a6246f | 2015-02-27 18:17:28 +0100 | [diff] [blame] | 907 | if (pcm->pcm) |
| 908 | snd_device_disconnect(codec->card, pcm->pcm); |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame] | 909 | snd_hda_codec_pcm_put(pcm); |
| 910 | } |
| 911 | } |
| 912 | |
Takashi Iwai | 9a6246f | 2015-02-27 18:17:28 +0100 | [diff] [blame] | 913 | void snd_hda_codec_cleanup_for_unbind(struct hda_codec *codec) |
| 914 | { |
Takashi Iwai | c4c2533 | 2015-03-03 17:22:12 +0100 | [diff] [blame] | 915 | if (codec->registered) { |
| 916 | /* pm_runtime_put() is called in snd_hdac_device_exit() */ |
| 917 | pm_runtime_get_noresume(hda_codec_dev(codec)); |
| 918 | pm_runtime_disable(hda_codec_dev(codec)); |
| 919 | codec->registered = 0; |
| 920 | } |
| 921 | |
Takashi Iwai | 9a6246f | 2015-02-27 18:17:28 +0100 | [diff] [blame] | 922 | cancel_delayed_work_sync(&codec->jackpoll_work); |
Takashi Iwai | 9a6246f | 2015-02-27 18:17:28 +0100 | [diff] [blame] | 923 | if (!codec->in_freeing) |
| 924 | snd_hda_ctls_clear(codec); |
| 925 | codec_release_pcms(codec); |
| 926 | snd_hda_detach_beep_device(codec); |
| 927 | memset(&codec->patch_ops, 0, sizeof(codec->patch_ops)); |
| 928 | snd_hda_jack_tbl_clear(codec); |
| 929 | codec->proc_widget_hook = NULL; |
| 930 | codec->spec = NULL; |
| 931 | |
| 932 | free_hda_cache(&codec->amp_cache); |
| 933 | free_hda_cache(&codec->cmd_cache); |
| 934 | init_hda_cache(&codec->amp_cache, sizeof(struct hda_amp_info)); |
| 935 | init_hda_cache(&codec->cmd_cache, sizeof(struct hda_cache_head)); |
| 936 | |
| 937 | /* free only driver_pins so that init_pins + user_pins are restored */ |
| 938 | snd_array_free(&codec->driver_pins); |
| 939 | snd_array_free(&codec->cvt_setups); |
| 940 | snd_array_free(&codec->spdif_out); |
| 941 | snd_array_free(&codec->verbs); |
| 942 | codec->preset = NULL; |
| 943 | codec->slave_dig_outs = NULL; |
| 944 | codec->spdif_status_reset = 0; |
| 945 | snd_array_free(&codec->mixers); |
| 946 | snd_array_free(&codec->nids); |
| 947 | remove_conn_list(codec); |
Takashi Iwai | 4d75faa0 | 2015-02-25 14:42:38 +0100 | [diff] [blame] | 948 | snd_hdac_regmap_exit(&codec->core); |
Takashi Iwai | 9a6246f | 2015-02-27 18:17:28 +0100 | [diff] [blame] | 949 | } |
| 950 | |
Takashi Iwai | d819387 | 2012-08-31 07:54:38 -0700 | [diff] [blame] | 951 | static unsigned int hda_set_power_state(struct hda_codec *codec, |
Takashi Iwai | bb6ac72 | 2009-03-13 09:02:42 +0100 | [diff] [blame] | 952 | unsigned int power_state); |
| 953 | |
Takashi Iwai | c4c2533 | 2015-03-03 17:22:12 +0100 | [diff] [blame] | 954 | /* also called from hda_bind.c */ |
| 955 | void snd_hda_codec_register(struct hda_codec *codec) |
| 956 | { |
| 957 | if (codec->registered) |
| 958 | return; |
| 959 | if (device_is_registered(hda_codec_dev(codec))) { |
| 960 | snd_hda_register_beep_device(codec); |
| 961 | pm_runtime_enable(hda_codec_dev(codec)); |
| 962 | /* it was powered up in snd_hda_codec_new(), now all done */ |
| 963 | snd_hda_power_down(codec); |
| 964 | codec->registered = 1; |
| 965 | } |
| 966 | } |
| 967 | |
Takashi Iwai | 13aeaf6 | 2014-02-25 07:53:47 +0100 | [diff] [blame] | 968 | static int snd_hda_codec_dev_register(struct snd_device *device) |
| 969 | { |
Takashi Iwai | c4c2533 | 2015-03-03 17:22:12 +0100 | [diff] [blame] | 970 | snd_hda_codec_register(device->device_data); |
Takashi Iwai | d604b39 | 2014-02-28 13:42:09 +0100 | [diff] [blame] | 971 | return 0; |
Takashi Iwai | 13aeaf6 | 2014-02-25 07:53:47 +0100 | [diff] [blame] | 972 | } |
| 973 | |
| 974 | static int snd_hda_codec_dev_disconnect(struct snd_device *device) |
| 975 | { |
| 976 | struct hda_codec *codec = device->device_data; |
| 977 | |
Takashi Iwai | d604b39 | 2014-02-28 13:42:09 +0100 | [diff] [blame] | 978 | snd_hda_detach_beep_device(codec); |
Takashi Iwai | 13aeaf6 | 2014-02-25 07:53:47 +0100 | [diff] [blame] | 979 | return 0; |
| 980 | } |
| 981 | |
Takashi Iwai | 2565c89 | 2014-02-19 11:41:09 +0100 | [diff] [blame] | 982 | static int snd_hda_codec_dev_free(struct snd_device *device) |
| 983 | { |
Takashi Iwai | d56db74 | 2015-02-27 23:25:35 +0100 | [diff] [blame] | 984 | struct hda_codec *codec = device->device_data; |
| 985 | |
| 986 | codec->in_freeing = 1; |
Takashi Iwai | 3256be6 | 2015-02-24 14:59:42 +0100 | [diff] [blame] | 987 | snd_hdac_device_unregister(&codec->core); |
Takashi Iwai | d56db74 | 2015-02-27 23:25:35 +0100 | [diff] [blame] | 988 | put_device(hda_codec_dev(codec)); |
Takashi Iwai | 2565c89 | 2014-02-19 11:41:09 +0100 | [diff] [blame] | 989 | return 0; |
| 990 | } |
| 991 | |
Takashi Iwai | 13aeaf6 | 2014-02-25 07:53:47 +0100 | [diff] [blame] | 992 | static void snd_hda_codec_dev_release(struct device *dev) |
| 993 | { |
Takashi Iwai | d56db74 | 2015-02-27 23:25:35 +0100 | [diff] [blame] | 994 | struct hda_codec *codec = dev_to_hda_codec(dev); |
| 995 | |
| 996 | free_init_pincfgs(codec); |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 997 | snd_hdac_device_exit(&codec->core); |
Takashi Iwai | d56db74 | 2015-02-27 23:25:35 +0100 | [diff] [blame] | 998 | snd_hda_sysfs_clear(codec); |
| 999 | free_hda_cache(&codec->amp_cache); |
| 1000 | free_hda_cache(&codec->cmd_cache); |
Takashi Iwai | d56db74 | 2015-02-27 23:25:35 +0100 | [diff] [blame] | 1001 | kfree(codec->modelname); |
| 1002 | kfree(codec->wcaps); |
Takashi Iwai | d56db74 | 2015-02-27 23:25:35 +0100 | [diff] [blame] | 1003 | kfree(codec); |
Takashi Iwai | 13aeaf6 | 2014-02-25 07:53:47 +0100 | [diff] [blame] | 1004 | } |
| 1005 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1006 | /** |
| 1007 | * snd_hda_codec_new - create a HDA codec |
| 1008 | * @bus: the bus to assign |
| 1009 | * @codec_addr: the codec address |
| 1010 | * @codecp: the pointer to store the generated codec |
| 1011 | * |
| 1012 | * Returns 0 if successful, or a negative error code. |
| 1013 | */ |
Takashi Iwai | 6efdd85 | 2015-02-27 16:09:22 +0100 | [diff] [blame] | 1014 | int snd_hda_codec_new(struct hda_bus *bus, struct snd_card *card, |
| 1015 | unsigned int codec_addr, struct hda_codec **codecp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1016 | { |
| 1017 | struct hda_codec *codec; |
Jaroslav Kysela | ba44368 | 2008-08-13 20:55:32 +0200 | [diff] [blame] | 1018 | char component[31]; |
Takashi Iwai | d819387 | 2012-08-31 07:54:38 -0700 | [diff] [blame] | 1019 | hda_nid_t fg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1020 | int err; |
Takashi Iwai | 2565c89 | 2014-02-19 11:41:09 +0100 | [diff] [blame] | 1021 | static struct snd_device_ops dev_ops = { |
Takashi Iwai | 13aeaf6 | 2014-02-25 07:53:47 +0100 | [diff] [blame] | 1022 | .dev_register = snd_hda_codec_dev_register, |
| 1023 | .dev_disconnect = snd_hda_codec_dev_disconnect, |
Takashi Iwai | 2565c89 | 2014-02-19 11:41:09 +0100 | [diff] [blame] | 1024 | .dev_free = snd_hda_codec_dev_free, |
| 1025 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1026 | |
Takashi Iwai | da3cec3 | 2008-08-08 17:12:14 +0200 | [diff] [blame] | 1027 | if (snd_BUG_ON(!bus)) |
| 1028 | return -EINVAL; |
| 1029 | if (snd_BUG_ON(codec_addr > HDA_MAX_CODEC_ADDRESS)) |
| 1030 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1031 | |
Takashi Iwai | e560d8d | 2005-09-09 14:21:46 +0200 | [diff] [blame] | 1032 | codec = kzalloc(sizeof(*codec), GFP_KERNEL); |
Takashi Iwai | f4de8fe | 2015-02-27 16:17:18 +0100 | [diff] [blame] | 1033 | if (!codec) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1034 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1035 | |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 1036 | sprintf(component, "hdaudioC%dD%d", card->number, codec_addr); |
| 1037 | err = snd_hdac_device_init(&codec->core, &bus->core, component, |
| 1038 | codec_addr); |
| 1039 | if (err < 0) { |
| 1040 | kfree(codec); |
| 1041 | return err; |
| 1042 | } |
Takashi Iwai | d068ebc | 2015-03-02 23:22:59 +0100 | [diff] [blame] | 1043 | |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 1044 | codec->core.dev.release = snd_hda_codec_dev_release; |
| 1045 | codec->core.type = HDA_DEV_LEGACY; |
Takashi Iwai | 0585244 | 2015-03-03 15:40:08 +0100 | [diff] [blame] | 1046 | codec->core.exec_verb = codec_exec_verb; |
Takashi Iwai | 13aeaf6 | 2014-02-25 07:53:47 +0100 | [diff] [blame] | 1047 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1048 | codec->bus = bus; |
Takashi Iwai | 6efdd85 | 2015-02-27 16:09:22 +0100 | [diff] [blame] | 1049 | codec->card = card; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1050 | codec->addr = codec_addr; |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 1051 | mutex_init(&codec->spdif_mutex); |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 1052 | mutex_init(&codec->control_mutex); |
Takashi Iwai | c3b6bcc | 2012-05-10 16:11:15 +0200 | [diff] [blame] | 1053 | mutex_init(&codec->hash_mutex); |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 1054 | init_hda_cache(&codec->amp_cache, sizeof(struct hda_amp_info)); |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 1055 | init_hda_cache(&codec->cmd_cache, sizeof(struct hda_cache_head)); |
Jaroslav Kysela | 5b0cb1d | 2009-12-08 16:13:32 +0100 | [diff] [blame] | 1056 | snd_array_init(&codec->mixers, sizeof(struct hda_nid_item), 32); |
| 1057 | snd_array_init(&codec->nids, sizeof(struct hda_nid_item), 32); |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 1058 | snd_array_init(&codec->init_pins, sizeof(struct hda_pincfg), 16); |
Takashi Iwai | 346ff70 | 2009-02-23 09:42:57 +0100 | [diff] [blame] | 1059 | snd_array_init(&codec->driver_pins, sizeof(struct hda_pincfg), 16); |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1060 | snd_array_init(&codec->cvt_setups, sizeof(struct hda_cvt_setup), 8); |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 1061 | snd_array_init(&codec->spdif_out, sizeof(struct hda_spdif_out), 16); |
Takashi Iwai | 361dab3 | 2012-05-09 14:35:27 +0200 | [diff] [blame] | 1062 | snd_array_init(&codec->jacktbl, sizeof(struct hda_jack_tbl), 16); |
Takashi Iwai | c9ce6b2 | 2012-12-18 18:12:44 +0100 | [diff] [blame] | 1063 | snd_array_init(&codec->verbs, sizeof(struct hda_verb *), 8); |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 1064 | INIT_LIST_HEAD(&codec->conn_list); |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame] | 1065 | INIT_LIST_HEAD(&codec->pcm_list_head); |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 1066 | |
David Henningsson | 26a6cb6 | 2012-10-09 15:04:21 +0200 | [diff] [blame] | 1067 | INIT_DELAYED_WORK(&codec->jackpoll_work, hda_jackpoll_work); |
Mengdong Lin | 7f13292 | 2013-11-29 01:48:45 -0500 | [diff] [blame] | 1068 | codec->depop_delay = -1; |
David Henningsson | f5662e1 | 2014-07-22 14:09:34 +0200 | [diff] [blame] | 1069 | codec->fixup_id = HDA_FIXUP_ID_NOT_SET; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1070 | |
Takashi Iwai | 83012a7 | 2012-08-24 18:38:08 +0200 | [diff] [blame] | 1071 | #ifdef CONFIG_PM |
Takashi Iwai | cc72da7 | 2015-02-19 16:00:22 +0100 | [diff] [blame] | 1072 | codec->power_jiffies = jiffies; |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 1073 | #endif |
| 1074 | |
Takashi Iwai | 648a8d2 | 2014-02-25 10:38:13 +0100 | [diff] [blame] | 1075 | snd_hda_sysfs_init(codec); |
| 1076 | |
Takashi Iwai | c382a9f | 2012-05-07 15:01:02 +0200 | [diff] [blame] | 1077 | if (codec->bus->modelname) { |
| 1078 | codec->modelname = kstrdup(codec->bus->modelname, GFP_KERNEL); |
| 1079 | if (!codec->modelname) { |
Takashi Iwai | 13aeaf6 | 2014-02-25 07:53:47 +0100 | [diff] [blame] | 1080 | err = -ENODEV; |
| 1081 | goto error; |
Takashi Iwai | c382a9f | 2012-05-07 15:01:02 +0200 | [diff] [blame] | 1082 | } |
| 1083 | } |
| 1084 | |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 1085 | fg = codec->core.afg ? codec->core.afg : codec->core.mfg; |
Takashi Iwai | d819387 | 2012-08-31 07:54:38 -0700 | [diff] [blame] | 1086 | err = read_widget_caps(codec, fg); |
Takashi Iwai | f4de8fe | 2015-02-27 16:17:18 +0100 | [diff] [blame] | 1087 | if (err < 0) |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 1088 | goto error; |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 1089 | err = read_pin_defaults(codec); |
| 1090 | if (err < 0) |
| 1091 | goto error; |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 1092 | |
Takashi Iwai | bb6ac72 | 2009-03-13 09:02:42 +0100 | [diff] [blame] | 1093 | /* power-up all before initialization */ |
Takashi Iwai | d819387 | 2012-08-31 07:54:38 -0700 | [diff] [blame] | 1094 | hda_set_power_state(codec, AC_PWRST_D0); |
Takashi Iwai | bb6ac72 | 2009-03-13 09:02:42 +0100 | [diff] [blame] | 1095 | |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1096 | snd_hda_codec_proc_new(codec); |
| 1097 | |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1098 | snd_hda_create_hwdep(codec); |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1099 | |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 1100 | sprintf(component, "HDA:%08x,%08x,%08x", codec->core.vendor_id, |
| 1101 | codec->core.subsystem_id, codec->core.revision_id); |
Takashi Iwai | 6efdd85 | 2015-02-27 16:09:22 +0100 | [diff] [blame] | 1102 | snd_component_add(card, component); |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1103 | |
Takashi Iwai | 6efdd85 | 2015-02-27 16:09:22 +0100 | [diff] [blame] | 1104 | err = snd_device_new(card, SNDRV_DEV_CODEC, codec, &dev_ops); |
Takashi Iwai | 2565c89 | 2014-02-19 11:41:09 +0100 | [diff] [blame] | 1105 | if (err < 0) |
| 1106 | goto error; |
| 1107 | |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1108 | if (codecp) |
| 1109 | *codecp = codec; |
| 1110 | return 0; |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 1111 | |
| 1112 | error: |
Takashi Iwai | d56db74 | 2015-02-27 23:25:35 +0100 | [diff] [blame] | 1113 | put_device(hda_codec_dev(codec)); |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 1114 | return err; |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1115 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1116 | EXPORT_SYMBOL_GPL(snd_hda_codec_new); |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1117 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 1118 | /** |
| 1119 | * snd_hda_codec_update_widgets - Refresh widget caps and pin defaults |
| 1120 | * @codec: the HDA codec |
| 1121 | * |
| 1122 | * Forcibly refresh the all widget caps and the init pin configurations of |
| 1123 | * the given codec. |
| 1124 | */ |
Mengdong Lin | a15d05d | 2013-02-08 17:09:31 -0500 | [diff] [blame] | 1125 | int snd_hda_codec_update_widgets(struct hda_codec *codec) |
| 1126 | { |
| 1127 | hda_nid_t fg; |
| 1128 | int err; |
| 1129 | |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 1130 | err = snd_hdac_refresh_widgets(&codec->core); |
| 1131 | if (err < 0) |
| 1132 | return err; |
| 1133 | |
Mengdong Lin | a15d05d | 2013-02-08 17:09:31 -0500 | [diff] [blame] | 1134 | /* Assume the function group node does not change, |
| 1135 | * only the widget nodes may change. |
| 1136 | */ |
| 1137 | kfree(codec->wcaps); |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 1138 | fg = codec->core.afg ? codec->core.afg : codec->core.mfg; |
Mengdong Lin | a15d05d | 2013-02-08 17:09:31 -0500 | [diff] [blame] | 1139 | err = read_widget_caps(codec, fg); |
Takashi Iwai | f4de8fe | 2015-02-27 16:17:18 +0100 | [diff] [blame] | 1140 | if (err < 0) |
Mengdong Lin | a15d05d | 2013-02-08 17:09:31 -0500 | [diff] [blame] | 1141 | return err; |
Mengdong Lin | a15d05d | 2013-02-08 17:09:31 -0500 | [diff] [blame] | 1142 | |
| 1143 | snd_array_free(&codec->init_pins); |
| 1144 | err = read_pin_defaults(codec); |
| 1145 | |
| 1146 | return err; |
| 1147 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1148 | EXPORT_SYMBOL_GPL(snd_hda_codec_update_widgets); |
Mengdong Lin | a15d05d | 2013-02-08 17:09:31 -0500 | [diff] [blame] | 1149 | |
Takashi Iwai | ed36081 | 2012-08-08 17:12:52 +0200 | [diff] [blame] | 1150 | /* update the stream-id if changed */ |
| 1151 | static void update_pcm_stream_id(struct hda_codec *codec, |
| 1152 | struct hda_cvt_setup *p, hda_nid_t nid, |
| 1153 | u32 stream_tag, int channel_id) |
| 1154 | { |
| 1155 | unsigned int oldval, newval; |
| 1156 | |
| 1157 | if (p->stream_tag != stream_tag || p->channel_id != channel_id) { |
| 1158 | oldval = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_CONV, 0); |
| 1159 | newval = (stream_tag << 4) | channel_id; |
| 1160 | if (oldval != newval) |
| 1161 | snd_hda_codec_write(codec, nid, 0, |
| 1162 | AC_VERB_SET_CHANNEL_STREAMID, |
| 1163 | newval); |
| 1164 | p->stream_tag = stream_tag; |
| 1165 | p->channel_id = channel_id; |
| 1166 | } |
| 1167 | } |
| 1168 | |
| 1169 | /* update the format-id if changed */ |
| 1170 | static void update_pcm_format(struct hda_codec *codec, struct hda_cvt_setup *p, |
| 1171 | hda_nid_t nid, int format) |
| 1172 | { |
| 1173 | unsigned int oldval; |
| 1174 | |
| 1175 | if (p->format_id != format) { |
| 1176 | oldval = snd_hda_codec_read(codec, nid, 0, |
| 1177 | AC_VERB_GET_STREAM_FORMAT, 0); |
| 1178 | if (oldval != format) { |
| 1179 | msleep(1); |
| 1180 | snd_hda_codec_write(codec, nid, 0, |
| 1181 | AC_VERB_SET_STREAM_FORMAT, |
| 1182 | format); |
| 1183 | } |
| 1184 | p->format_id = format; |
| 1185 | } |
| 1186 | } |
| 1187 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1188 | /** |
| 1189 | * snd_hda_codec_setup_stream - set up the codec for streaming |
| 1190 | * @codec: the CODEC to set up |
| 1191 | * @nid: the NID to set up |
| 1192 | * @stream_tag: stream tag to pass, it's between 0x1 and 0xf. |
| 1193 | * @channel_id: channel id to pass, zero based. |
| 1194 | * @format: stream format. |
| 1195 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1196 | void snd_hda_codec_setup_stream(struct hda_codec *codec, hda_nid_t nid, |
| 1197 | u32 stream_tag, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1198 | int channel_id, int format) |
| 1199 | { |
Takashi Iwai | 3f50ac6 | 2010-08-20 09:44:36 +0200 | [diff] [blame] | 1200 | struct hda_codec *c; |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1201 | struct hda_cvt_setup *p; |
Takashi Iwai | 62b7e5e | 2010-10-22 17:15:47 +0200 | [diff] [blame] | 1202 | int type; |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1203 | int i; |
| 1204 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1205 | if (!nid) |
Takashi Iwai | d21b37e | 2005-04-20 13:45:55 +0200 | [diff] [blame] | 1206 | return; |
| 1207 | |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 1208 | codec_dbg(codec, |
| 1209 | "hda_codec_setup_stream: NID=0x%x, stream=0x%x, channel=%d, format=0x%x\n", |
| 1210 | nid, stream_tag, channel_id, format); |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1211 | p = get_hda_cvt_setup(codec, nid); |
Takashi Iwai | 6c35ae3 | 2013-05-10 13:39:50 +0200 | [diff] [blame] | 1212 | if (!p) |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1213 | return; |
Takashi Iwai | ed36081 | 2012-08-08 17:12:52 +0200 | [diff] [blame] | 1214 | |
Takashi Iwai | e6feb5d | 2015-03-16 21:32:11 +0100 | [diff] [blame] | 1215 | if (codec->patch_ops.stream_pm) |
| 1216 | codec->patch_ops.stream_pm(codec, nid, true); |
Takashi Iwai | ed36081 | 2012-08-08 17:12:52 +0200 | [diff] [blame] | 1217 | if (codec->pcm_format_first) |
| 1218 | update_pcm_format(codec, p, nid, format); |
| 1219 | update_pcm_stream_id(codec, p, nid, stream_tag, channel_id); |
| 1220 | if (!codec->pcm_format_first) |
| 1221 | update_pcm_format(codec, p, nid, format); |
| 1222 | |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1223 | p->active = 1; |
| 1224 | p->dirty = 0; |
| 1225 | |
| 1226 | /* make other inactive cvts with the same stream-tag dirty */ |
Takashi Iwai | 62b7e5e | 2010-10-22 17:15:47 +0200 | [diff] [blame] | 1227 | type = get_wcaps_type(get_wcaps(codec, nid)); |
Takashi Iwai | d068ebc | 2015-03-02 23:22:59 +0100 | [diff] [blame] | 1228 | list_for_each_codec(c, codec->bus) { |
Takashi Iwai | 3f50ac6 | 2010-08-20 09:44:36 +0200 | [diff] [blame] | 1229 | for (i = 0; i < c->cvt_setups.used; i++) { |
| 1230 | p = snd_array_elem(&c->cvt_setups, i); |
Takashi Iwai | 62b7e5e | 2010-10-22 17:15:47 +0200 | [diff] [blame] | 1231 | if (!p->active && p->stream_tag == stream_tag && |
David Henningsson | 54c2a89 | 2012-02-01 12:05:41 +0100 | [diff] [blame] | 1232 | get_wcaps_type(get_wcaps(c, p->nid)) == type) |
Takashi Iwai | 3f50ac6 | 2010-08-20 09:44:36 +0200 | [diff] [blame] | 1233 | p->dirty = 1; |
| 1234 | } |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1235 | } |
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(snd_hda_codec_setup_stream); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1238 | |
Takashi Iwai | f0cea79 | 2010-08-13 11:56:53 +0200 | [diff] [blame] | 1239 | static void really_cleanup_stream(struct hda_codec *codec, |
| 1240 | struct hda_cvt_setup *q); |
| 1241 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1242 | /** |
Takashi Iwai | f0cea79 | 2010-08-13 11:56:53 +0200 | [diff] [blame] | 1243 | * __snd_hda_codec_cleanup_stream - clean up the codec for closing |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1244 | * @codec: the CODEC to clean up |
| 1245 | * @nid: the NID to clean up |
Takashi Iwai | f0cea79 | 2010-08-13 11:56:53 +0200 | [diff] [blame] | 1246 | * @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] | 1247 | */ |
Takashi Iwai | f0cea79 | 2010-08-13 11:56:53 +0200 | [diff] [blame] | 1248 | void __snd_hda_codec_cleanup_stream(struct hda_codec *codec, hda_nid_t nid, |
| 1249 | int do_now) |
Takashi Iwai | 888afa1 | 2008-03-18 09:57:50 +0100 | [diff] [blame] | 1250 | { |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1251 | struct hda_cvt_setup *p; |
| 1252 | |
Takashi Iwai | 888afa1 | 2008-03-18 09:57:50 +0100 | [diff] [blame] | 1253 | if (!nid) |
| 1254 | return; |
| 1255 | |
Takashi Iwai | 0e7adbe | 2010-10-25 10:37:11 +0200 | [diff] [blame] | 1256 | if (codec->no_sticky_stream) |
| 1257 | do_now = 1; |
| 1258 | |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 1259 | codec_dbg(codec, "hda_codec_cleanup_stream: NID=0x%x\n", nid); |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1260 | p = get_hda_cvt_setup(codec, nid); |
Takashi Iwai | 6c35ae3 | 2013-05-10 13:39:50 +0200 | [diff] [blame] | 1261 | if (p) { |
Takashi Iwai | f0cea79 | 2010-08-13 11:56:53 +0200 | [diff] [blame] | 1262 | /* here we just clear the active flag when do_now isn't set; |
| 1263 | * actual clean-ups will be done later in |
| 1264 | * purify_inactive_streams() called from snd_hda_codec_prpapre() |
| 1265 | */ |
| 1266 | if (do_now) |
| 1267 | really_cleanup_stream(codec, p); |
| 1268 | else |
| 1269 | p->active = 0; |
| 1270 | } |
Takashi Iwai | 888afa1 | 2008-03-18 09:57:50 +0100 | [diff] [blame] | 1271 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1272 | EXPORT_SYMBOL_GPL(__snd_hda_codec_cleanup_stream); |
Takashi Iwai | 888afa1 | 2008-03-18 09:57:50 +0100 | [diff] [blame] | 1273 | |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1274 | static void really_cleanup_stream(struct hda_codec *codec, |
| 1275 | struct hda_cvt_setup *q) |
| 1276 | { |
| 1277 | hda_nid_t nid = q->nid; |
Takashi Iwai | 218264a | 2011-09-27 17:33:45 +0200 | [diff] [blame] | 1278 | if (q->stream_tag || q->channel_id) |
| 1279 | snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CHANNEL_STREAMID, 0); |
| 1280 | if (q->format_id) |
| 1281 | snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_STREAM_FORMAT, 0 |
| 1282 | ); |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1283 | memset(q, 0, sizeof(*q)); |
| 1284 | q->nid = nid; |
Takashi Iwai | e6feb5d | 2015-03-16 21:32:11 +0100 | [diff] [blame] | 1285 | if (codec->patch_ops.stream_pm) |
| 1286 | codec->patch_ops.stream_pm(codec, nid, false); |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1287 | } |
| 1288 | |
| 1289 | /* clean up the all conflicting obsolete streams */ |
| 1290 | static void purify_inactive_streams(struct hda_codec *codec) |
| 1291 | { |
Takashi Iwai | 3f50ac6 | 2010-08-20 09:44:36 +0200 | [diff] [blame] | 1292 | struct hda_codec *c; |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1293 | int i; |
| 1294 | |
Takashi Iwai | d068ebc | 2015-03-02 23:22:59 +0100 | [diff] [blame] | 1295 | list_for_each_codec(c, codec->bus) { |
Takashi Iwai | 3f50ac6 | 2010-08-20 09:44:36 +0200 | [diff] [blame] | 1296 | for (i = 0; i < c->cvt_setups.used; i++) { |
| 1297 | struct hda_cvt_setup *p; |
| 1298 | p = snd_array_elem(&c->cvt_setups, i); |
| 1299 | if (p->dirty) |
| 1300 | really_cleanup_stream(c, p); |
| 1301 | } |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1302 | } |
| 1303 | } |
| 1304 | |
Takashi Iwai | 2a43952 | 2011-07-26 09:52:50 +0200 | [diff] [blame] | 1305 | #ifdef CONFIG_PM |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1306 | /* clean up all streams; called from suspend */ |
| 1307 | static void hda_cleanup_all_streams(struct hda_codec *codec) |
| 1308 | { |
| 1309 | int i; |
| 1310 | |
| 1311 | for (i = 0; i < codec->cvt_setups.used; i++) { |
| 1312 | struct hda_cvt_setup *p = snd_array_elem(&codec->cvt_setups, i); |
| 1313 | if (p->stream_tag) |
| 1314 | really_cleanup_stream(codec, p); |
| 1315 | } |
| 1316 | } |
Mike Waychison | 1c7276c | 2011-04-20 12:04:36 -0700 | [diff] [blame] | 1317 | #endif |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1318 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1319 | /* |
| 1320 | * amp access functions |
| 1321 | */ |
| 1322 | |
Takashi Iwai | 4a19fae | 2005-06-08 14:43:58 +0200 | [diff] [blame] | 1323 | /* FIXME: more better hash key? */ |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 1324 | #define HDA_HASH_KEY(nid, dir, idx) (u32)((nid) + ((idx) << 16) + ((dir) << 24)) |
Takashi Iwai | 1327a32 | 2009-03-23 13:07:47 +0100 | [diff] [blame] | 1325 | #define HDA_HASH_PINCAP_KEY(nid) (u32)((nid) + (0x02 << 24)) |
Takashi Iwai | 92c7c8a | 2009-03-24 07:32:14 +0100 | [diff] [blame] | 1326 | #define HDA_HASH_PARPCM_KEY(nid) (u32)((nid) + (0x03 << 24)) |
| 1327 | #define HDA_HASH_PARSTR_KEY(nid) (u32)((nid) + (0x04 << 24)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1328 | #define INFO_AMP_CAPS (1<<0) |
Takashi Iwai | 4a19fae | 2005-06-08 14:43:58 +0200 | [diff] [blame] | 1329 | #define INFO_AMP_VOL(ch) (1 << (1 + (ch))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1330 | |
| 1331 | /* initialize the hash table */ |
Takashi Iwai | 6a0f56a | 2012-12-07 07:41:56 +0100 | [diff] [blame] | 1332 | static void init_hda_cache(struct hda_cache_rec *cache, |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 1333 | unsigned int record_size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1334 | { |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 1335 | memset(cache, 0, sizeof(*cache)); |
| 1336 | memset(cache->hash, 0xff, sizeof(cache->hash)); |
Takashi Iwai | 603c401 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 1337 | snd_array_init(&cache->buf, record_size, 64); |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 1338 | } |
| 1339 | |
Takashi Iwai | 1fcaee6 | 2007-08-23 00:01:09 +0200 | [diff] [blame] | 1340 | static void free_hda_cache(struct hda_cache_rec *cache) |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 1341 | { |
Takashi Iwai | 603c401 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 1342 | snd_array_free(&cache->buf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1343 | } |
| 1344 | |
| 1345 | /* query the hash. allocate an entry if not found. */ |
Takashi Iwai | a68d5a5 | 2010-03-30 18:03:44 +0200 | [diff] [blame] | 1346 | static struct hda_cache_head *get_hash(struct hda_cache_rec *cache, u32 key) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1347 | { |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 1348 | u16 idx = key % (u16)ARRAY_SIZE(cache->hash); |
| 1349 | u16 cur = cache->hash[idx]; |
| 1350 | struct hda_cache_head *info; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1351 | |
| 1352 | while (cur != 0xffff) { |
Takashi Iwai | f43aa02 | 2008-11-10 16:24:26 +0100 | [diff] [blame] | 1353 | info = snd_array_elem(&cache->buf, cur); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1354 | if (info->key == key) |
| 1355 | return info; |
| 1356 | cur = info->next; |
| 1357 | } |
Takashi Iwai | a68d5a5 | 2010-03-30 18:03:44 +0200 | [diff] [blame] | 1358 | return NULL; |
| 1359 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1360 | |
Takashi Iwai | a68d5a5 | 2010-03-30 18:03:44 +0200 | [diff] [blame] | 1361 | /* query the hash. allocate an entry if not found. */ |
| 1362 | static struct hda_cache_head *get_alloc_hash(struct hda_cache_rec *cache, |
| 1363 | u32 key) |
| 1364 | { |
| 1365 | struct hda_cache_head *info = get_hash(cache, key); |
| 1366 | if (!info) { |
| 1367 | u16 idx, cur; |
| 1368 | /* add a new hash entry */ |
| 1369 | info = snd_array_new(&cache->buf); |
| 1370 | if (!info) |
| 1371 | return NULL; |
| 1372 | cur = snd_array_index(&cache->buf, info); |
| 1373 | info->key = key; |
| 1374 | info->val = 0; |
Takashi Iwai | c370dd6 | 2012-12-13 18:30:04 +0100 | [diff] [blame] | 1375 | info->dirty = 0; |
Takashi Iwai | a68d5a5 | 2010-03-30 18:03:44 +0200 | [diff] [blame] | 1376 | idx = key % (u16)ARRAY_SIZE(cache->hash); |
| 1377 | info->next = cache->hash[idx]; |
| 1378 | cache->hash[idx] = cur; |
| 1379 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1380 | return info; |
| 1381 | } |
| 1382 | |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 1383 | /* query and allocate an amp hash entry */ |
| 1384 | static inline struct hda_amp_info * |
| 1385 | get_alloc_amp_hash(struct hda_codec *codec, u32 key) |
| 1386 | { |
| 1387 | return (struct hda_amp_info *)get_alloc_hash(&codec->amp_cache, key); |
| 1388 | } |
| 1389 | |
Takashi Iwai | c3b6bcc | 2012-05-10 16:11:15 +0200 | [diff] [blame] | 1390 | /* overwrite the value with the key in the caps hash */ |
| 1391 | static int write_caps_hash(struct hda_codec *codec, u32 key, unsigned int val) |
| 1392 | { |
| 1393 | struct hda_amp_info *info; |
| 1394 | |
| 1395 | mutex_lock(&codec->hash_mutex); |
| 1396 | info = get_alloc_amp_hash(codec, key); |
| 1397 | if (!info) { |
| 1398 | mutex_unlock(&codec->hash_mutex); |
| 1399 | return -EINVAL; |
| 1400 | } |
| 1401 | info->amp_caps = val; |
| 1402 | info->head.val |= INFO_AMP_CAPS; |
| 1403 | mutex_unlock(&codec->hash_mutex); |
| 1404 | return 0; |
| 1405 | } |
| 1406 | |
| 1407 | /* query the value from the caps hash; if not found, fetch the current |
| 1408 | * value from the given function and store in the hash |
| 1409 | */ |
| 1410 | static unsigned int |
| 1411 | query_caps_hash(struct hda_codec *codec, hda_nid_t nid, int dir, u32 key, |
| 1412 | unsigned int (*func)(struct hda_codec *, hda_nid_t, int)) |
| 1413 | { |
| 1414 | struct hda_amp_info *info; |
| 1415 | unsigned int val; |
| 1416 | |
| 1417 | mutex_lock(&codec->hash_mutex); |
| 1418 | info = get_alloc_amp_hash(codec, key); |
| 1419 | if (!info) { |
| 1420 | mutex_unlock(&codec->hash_mutex); |
| 1421 | return 0; |
| 1422 | } |
| 1423 | if (!(info->head.val & INFO_AMP_CAPS)) { |
| 1424 | mutex_unlock(&codec->hash_mutex); /* for reentrance */ |
| 1425 | val = func(codec, nid, dir); |
| 1426 | write_caps_hash(codec, key, val); |
| 1427 | } else { |
| 1428 | val = info->amp_caps; |
| 1429 | mutex_unlock(&codec->hash_mutex); |
| 1430 | } |
| 1431 | return val; |
| 1432 | } |
| 1433 | |
| 1434 | static unsigned int read_amp_cap(struct hda_codec *codec, hda_nid_t nid, |
| 1435 | int direction) |
| 1436 | { |
| 1437 | if (!(get_wcaps(codec, nid) & AC_WCAP_AMP_OVRD)) |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 1438 | nid = codec->core.afg; |
Takashi Iwai | c3b6bcc | 2012-05-10 16:11:15 +0200 | [diff] [blame] | 1439 | return snd_hda_param_read(codec, nid, |
| 1440 | direction == HDA_OUTPUT ? |
| 1441 | AC_PAR_AMP_OUT_CAP : AC_PAR_AMP_IN_CAP); |
| 1442 | } |
| 1443 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1444 | /** |
| 1445 | * query_amp_caps - query AMP capabilities |
| 1446 | * @codec: the HD-auio codec |
| 1447 | * @nid: the NID to query |
| 1448 | * @direction: either #HDA_INPUT or #HDA_OUTPUT |
| 1449 | * |
| 1450 | * Query AMP capabilities for the given widget and direction. |
| 1451 | * Returns the obtained capability bits. |
| 1452 | * |
| 1453 | * When cap bits have been already read, this doesn't read again but |
| 1454 | * returns the cached value. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1455 | */ |
Matthew Ranostay | 09a9995 | 2008-01-24 11:49:21 +0100 | [diff] [blame] | 1456 | 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] | 1457 | { |
Takashi Iwai | c3b6bcc | 2012-05-10 16:11:15 +0200 | [diff] [blame] | 1458 | return query_caps_hash(codec, nid, direction, |
| 1459 | HDA_HASH_KEY(nid, direction, 0), |
| 1460 | read_amp_cap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1461 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1462 | EXPORT_SYMBOL_GPL(query_amp_caps); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1463 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1464 | /** |
David Henningsson | 861a04e | 2014-09-23 10:38:17 +0200 | [diff] [blame] | 1465 | * snd_hda_check_amp_caps - query AMP capabilities |
| 1466 | * @codec: the HD-audio codec |
| 1467 | * @nid: the NID to query |
| 1468 | * @dir: either #HDA_INPUT or #HDA_OUTPUT |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 1469 | * @bits: bit mask to check the result |
David Henningsson | 861a04e | 2014-09-23 10:38:17 +0200 | [diff] [blame] | 1470 | * |
| 1471 | * Check whether the widget has the given amp capability for the direction. |
| 1472 | */ |
| 1473 | bool snd_hda_check_amp_caps(struct hda_codec *codec, hda_nid_t nid, |
| 1474 | int dir, unsigned int bits) |
| 1475 | { |
| 1476 | if (!nid) |
| 1477 | return false; |
| 1478 | if (get_wcaps(codec, nid) & (1 << (dir + 1))) |
| 1479 | if (query_amp_caps(codec, nid, dir) & bits) |
| 1480 | return true; |
| 1481 | return false; |
| 1482 | } |
| 1483 | EXPORT_SYMBOL_GPL(snd_hda_check_amp_caps); |
| 1484 | |
| 1485 | /** |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1486 | * snd_hda_override_amp_caps - Override the AMP capabilities |
| 1487 | * @codec: the CODEC to clean up |
| 1488 | * @nid: the NID to clean up |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 1489 | * @dir: either #HDA_INPUT or #HDA_OUTPUT |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1490 | * @caps: the capability bits to set |
| 1491 | * |
| 1492 | * Override the cached AMP caps bits value by the given one. |
| 1493 | * This function is useful if the driver needs to adjust the AMP ranges, |
| 1494 | * e.g. limit to 0dB, etc. |
| 1495 | * |
| 1496 | * Returns zero if successful or a negative error code. |
| 1497 | */ |
Takashi Iwai | 897cc18 | 2007-05-29 19:01:37 +0200 | [diff] [blame] | 1498 | int snd_hda_override_amp_caps(struct hda_codec *codec, hda_nid_t nid, int dir, |
| 1499 | unsigned int caps) |
| 1500 | { |
Takashi Iwai | c3b6bcc | 2012-05-10 16:11:15 +0200 | [diff] [blame] | 1501 | return write_caps_hash(codec, HDA_HASH_KEY(nid, dir, 0), caps); |
Takashi Iwai | 897cc18 | 2007-05-29 19:01:37 +0200 | [diff] [blame] | 1502 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1503 | EXPORT_SYMBOL_GPL(snd_hda_override_amp_caps); |
Takashi Iwai | 897cc18 | 2007-05-29 19:01:37 +0200 | [diff] [blame] | 1504 | |
Takashi Iwai | c3b6bcc | 2012-05-10 16:11:15 +0200 | [diff] [blame] | 1505 | static unsigned int read_pin_cap(struct hda_codec *codec, hda_nid_t nid, |
| 1506 | int dir) |
Takashi Iwai | 92c7c8a | 2009-03-24 07:32:14 +0100 | [diff] [blame] | 1507 | { |
| 1508 | return snd_hda_param_read(codec, nid, AC_PAR_PIN_CAP); |
| 1509 | } |
| 1510 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1511 | /** |
| 1512 | * snd_hda_query_pin_caps - Query PIN capabilities |
| 1513 | * @codec: the HD-auio codec |
| 1514 | * @nid: the NID to query |
| 1515 | * |
| 1516 | * Query PIN capabilities for the given widget. |
| 1517 | * Returns the obtained capability bits. |
| 1518 | * |
| 1519 | * When cap bits have been already read, this doesn't read again but |
| 1520 | * returns the cached value. |
| 1521 | */ |
Takashi Iwai | 92c7c8a | 2009-03-24 07:32:14 +0100 | [diff] [blame] | 1522 | u32 snd_hda_query_pin_caps(struct hda_codec *codec, hda_nid_t nid) |
| 1523 | { |
Takashi Iwai | c3b6bcc | 2012-05-10 16:11:15 +0200 | [diff] [blame] | 1524 | return query_caps_hash(codec, nid, 0, HDA_HASH_PINCAP_KEY(nid), |
Takashi Iwai | 92c7c8a | 2009-03-24 07:32:14 +0100 | [diff] [blame] | 1525 | read_pin_cap); |
| 1526 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1527 | EXPORT_SYMBOL_GPL(snd_hda_query_pin_caps); |
Takashi Iwai | 1327a32 | 2009-03-23 13:07:47 +0100 | [diff] [blame] | 1528 | |
Wu Fengguang | 864f92b | 2009-11-18 12:38:02 +0800 | [diff] [blame] | 1529 | /** |
Takashi Iwai | f57c256 | 2011-08-15 12:49:07 +0200 | [diff] [blame] | 1530 | * snd_hda_override_pin_caps - Override the pin capabilities |
| 1531 | * @codec: the CODEC |
| 1532 | * @nid: the NID to override |
| 1533 | * @caps: the capability bits to set |
| 1534 | * |
| 1535 | * Override the cached PIN capabilitiy bits value by the given one. |
| 1536 | * |
| 1537 | * Returns zero if successful or a negative error code. |
| 1538 | */ |
| 1539 | int snd_hda_override_pin_caps(struct hda_codec *codec, hda_nid_t nid, |
| 1540 | unsigned int caps) |
| 1541 | { |
Takashi Iwai | c3b6bcc | 2012-05-10 16:11:15 +0200 | [diff] [blame] | 1542 | return write_caps_hash(codec, HDA_HASH_PINCAP_KEY(nid), caps); |
Takashi Iwai | f57c256 | 2011-08-15 12:49:07 +0200 | [diff] [blame] | 1543 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1544 | EXPORT_SYMBOL_GPL(snd_hda_override_pin_caps); |
Takashi Iwai | f57c256 | 2011-08-15 12:49:07 +0200 | [diff] [blame] | 1545 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1546 | /** |
| 1547 | * snd_hda_codec_amp_stereo - update the AMP stereo values |
| 1548 | * @codec: HD-audio codec |
| 1549 | * @nid: NID to read the AMP value |
| 1550 | * @direction: #HDA_INPUT or #HDA_OUTPUT |
| 1551 | * @idx: the index value (only for input direction) |
| 1552 | * @mask: bit mask to set |
| 1553 | * @val: the bits value to set |
| 1554 | * |
| 1555 | * Update the AMP values like snd_hda_codec_amp_update(), but for a |
| 1556 | * stereo widget with the same mask and value. |
Takashi Iwai | 47fd830 | 2007-08-10 17:11:07 +0200 | [diff] [blame] | 1557 | */ |
| 1558 | int snd_hda_codec_amp_stereo(struct hda_codec *codec, hda_nid_t nid, |
| 1559 | int direction, int idx, int mask, int val) |
| 1560 | { |
| 1561 | int ch, ret = 0; |
Takashi Iwai | 46712646 | 2010-03-29 09:19:38 +0200 | [diff] [blame] | 1562 | |
| 1563 | if (snd_BUG_ON(mask & ~0xff)) |
| 1564 | mask &= 0xff; |
Takashi Iwai | 47fd830 | 2007-08-10 17:11:07 +0200 | [diff] [blame] | 1565 | for (ch = 0; ch < 2; ch++) |
| 1566 | ret |= snd_hda_codec_amp_update(codec, nid, ch, direction, |
| 1567 | idx, mask, val); |
| 1568 | return ret; |
| 1569 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1570 | EXPORT_SYMBOL_GPL(snd_hda_codec_amp_stereo); |
Takashi Iwai | 47fd830 | 2007-08-10 17:11:07 +0200 | [diff] [blame] | 1571 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 1572 | /** |
| 1573 | * snd_hda_codec_amp_init - initialize the AMP value |
| 1574 | * @codec: the HDA codec |
| 1575 | * @nid: NID to read the AMP value |
| 1576 | * @ch: channel (left=0 or right=1) |
| 1577 | * @dir: #HDA_INPUT or #HDA_OUTPUT |
| 1578 | * @idx: the index value (only for input direction) |
| 1579 | * @mask: bit mask to set |
| 1580 | * @val: the bits value to set |
| 1581 | * |
| 1582 | * 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] | 1583 | * the first access. If the amp was already initialized / updated beforehand, |
| 1584 | * this does nothing. |
| 1585 | */ |
| 1586 | int snd_hda_codec_amp_init(struct hda_codec *codec, hda_nid_t nid, int ch, |
| 1587 | int dir, int idx, int mask, int val) |
| 1588 | { |
Takashi Iwai | eeecd9d | 2015-02-25 15:18:50 +0100 | [diff] [blame^] | 1589 | int orig; |
| 1590 | |
| 1591 | if (!codec->core.regmap) |
| 1592 | return -EINVAL; |
| 1593 | regcache_cache_only(codec->core.regmap, true); |
| 1594 | orig = snd_hda_codec_amp_read(codec, nid, ch, dir, idx); |
| 1595 | regcache_cache_only(codec->core.regmap, false); |
| 1596 | if (orig >= 0) |
| 1597 | return 0; |
| 1598 | 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] | 1599 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1600 | EXPORT_SYMBOL_GPL(snd_hda_codec_amp_init); |
Takashi Iwai | 280e57d | 2012-12-14 10:32:21 +0100 | [diff] [blame] | 1601 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 1602 | /** |
| 1603 | * snd_hda_codec_amp_init_stereo - initialize the stereo AMP value |
| 1604 | * @codec: the HDA codec |
| 1605 | * @nid: NID to read the AMP value |
| 1606 | * @dir: #HDA_INPUT or #HDA_OUTPUT |
| 1607 | * @idx: the index value (only for input direction) |
| 1608 | * @mask: bit mask to set |
| 1609 | * @val: the bits value to set |
| 1610 | * |
| 1611 | * Call snd_hda_codec_amp_init() for both stereo channels. |
| 1612 | */ |
Takashi Iwai | 280e57d | 2012-12-14 10:32:21 +0100 | [diff] [blame] | 1613 | int snd_hda_codec_amp_init_stereo(struct hda_codec *codec, hda_nid_t nid, |
| 1614 | int dir, int idx, int mask, int val) |
| 1615 | { |
| 1616 | int ch, ret = 0; |
| 1617 | |
| 1618 | if (snd_BUG_ON(mask & ~0xff)) |
| 1619 | mask &= 0xff; |
| 1620 | for (ch = 0; ch < 2; ch++) |
| 1621 | ret |= snd_hda_codec_amp_init(codec, nid, ch, dir, |
| 1622 | idx, mask, val); |
| 1623 | return ret; |
| 1624 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1625 | EXPORT_SYMBOL_GPL(snd_hda_codec_amp_init_stereo); |
Takashi Iwai | 280e57d | 2012-12-14 10:32:21 +0100 | [diff] [blame] | 1626 | |
Takashi Iwai | afbd9b8 | 2010-07-08 18:40:37 +0200 | [diff] [blame] | 1627 | static u32 get_amp_max_value(struct hda_codec *codec, hda_nid_t nid, int dir, |
| 1628 | unsigned int ofs) |
| 1629 | { |
| 1630 | u32 caps = query_amp_caps(codec, nid, dir); |
| 1631 | /* get num steps */ |
| 1632 | caps = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT; |
| 1633 | if (ofs < caps) |
| 1634 | caps -= ofs; |
| 1635 | return caps; |
| 1636 | } |
| 1637 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1638 | /** |
| 1639 | * 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] | 1640 | * @kcontrol: referred ctl element |
| 1641 | * @uinfo: pointer to get/store the data |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1642 | * |
| 1643 | * The control element is supposed to have the private_value field |
| 1644 | * set up via HDA_COMPOSE_AMP_VAL*() or related macros. |
| 1645 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1646 | int snd_hda_mixer_amp_volume_info(struct snd_kcontrol *kcontrol, |
| 1647 | struct snd_ctl_elem_info *uinfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1648 | { |
| 1649 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 1650 | u16 nid = get_amp_nid(kcontrol); |
| 1651 | u8 chs = get_amp_channels(kcontrol); |
| 1652 | int dir = get_amp_direction(kcontrol); |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 1653 | unsigned int ofs = get_amp_offset(kcontrol); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1654 | |
Takashi Iwai | afbd9b8 | 2010-07-08 18:40:37 +0200 | [diff] [blame] | 1655 | uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER; |
| 1656 | uinfo->count = chs == 3 ? 2 : 1; |
| 1657 | uinfo->value.integer.min = 0; |
| 1658 | uinfo->value.integer.max = get_amp_max_value(codec, nid, dir, ofs); |
| 1659 | if (!uinfo->value.integer.max) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 1660 | codec_warn(codec, |
| 1661 | "num_steps = 0 for NID=0x%x (ctl = %s)\n", |
| 1662 | nid, kcontrol->id.name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1663 | return -EINVAL; |
| 1664 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1665 | return 0; |
| 1666 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1667 | EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_volume_info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1668 | |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 1669 | |
| 1670 | static inline unsigned int |
| 1671 | read_amp_value(struct hda_codec *codec, hda_nid_t nid, |
| 1672 | int ch, int dir, int idx, unsigned int ofs) |
| 1673 | { |
| 1674 | unsigned int val; |
| 1675 | val = snd_hda_codec_amp_read(codec, nid, ch, dir, idx); |
| 1676 | val &= HDA_AMP_VOLMASK; |
| 1677 | if (val >= ofs) |
| 1678 | val -= ofs; |
| 1679 | else |
| 1680 | val = 0; |
| 1681 | return val; |
| 1682 | } |
| 1683 | |
| 1684 | static inline int |
| 1685 | update_amp_value(struct hda_codec *codec, hda_nid_t nid, |
| 1686 | int ch, int dir, int idx, unsigned int ofs, |
| 1687 | unsigned int val) |
| 1688 | { |
Takashi Iwai | afbd9b8 | 2010-07-08 18:40:37 +0200 | [diff] [blame] | 1689 | unsigned int maxval; |
| 1690 | |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 1691 | if (val > 0) |
| 1692 | val += ofs; |
Takashi Iwai | 7ccc3ef | 2010-07-26 17:00:15 +0200 | [diff] [blame] | 1693 | /* ofs = 0: raw max value */ |
| 1694 | maxval = get_amp_max_value(codec, nid, dir, 0); |
Takashi Iwai | afbd9b8 | 2010-07-08 18:40:37 +0200 | [diff] [blame] | 1695 | if (val > maxval) |
| 1696 | val = maxval; |
Takashi Iwai | eeecd9d | 2015-02-25 15:18:50 +0100 | [diff] [blame^] | 1697 | return snd_hda_codec_amp_update(codec, nid, ch, dir, idx, |
| 1698 | HDA_AMP_VOLMASK, val); |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 1699 | } |
| 1700 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1701 | /** |
| 1702 | * 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] | 1703 | * @kcontrol: ctl element |
| 1704 | * @ucontrol: pointer to get/store the data |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1705 | * |
| 1706 | * The control element is supposed to have the private_value field |
| 1707 | * set up via HDA_COMPOSE_AMP_VAL*() or related macros. |
| 1708 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1709 | int snd_hda_mixer_amp_volume_get(struct snd_kcontrol *kcontrol, |
| 1710 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1711 | { |
| 1712 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 1713 | hda_nid_t nid = get_amp_nid(kcontrol); |
| 1714 | int chs = get_amp_channels(kcontrol); |
| 1715 | int dir = get_amp_direction(kcontrol); |
| 1716 | int idx = get_amp_index(kcontrol); |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 1717 | unsigned int ofs = get_amp_offset(kcontrol); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1718 | long *valp = ucontrol->value.integer.value; |
| 1719 | |
| 1720 | if (chs & 1) |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 1721 | *valp++ = read_amp_value(codec, nid, 0, dir, idx, ofs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1722 | if (chs & 2) |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 1723 | *valp = read_amp_value(codec, nid, 1, dir, idx, ofs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1724 | return 0; |
| 1725 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1726 | EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_volume_get); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1727 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1728 | /** |
| 1729 | * 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] | 1730 | * @kcontrol: ctl element |
| 1731 | * @ucontrol: pointer to get/store the data |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1732 | * |
| 1733 | * The control element is supposed to have the private_value field |
| 1734 | * set up via HDA_COMPOSE_AMP_VAL*() or related macros. |
| 1735 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1736 | int snd_hda_mixer_amp_volume_put(struct snd_kcontrol *kcontrol, |
| 1737 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1738 | { |
| 1739 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 1740 | hda_nid_t nid = get_amp_nid(kcontrol); |
| 1741 | int chs = get_amp_channels(kcontrol); |
| 1742 | int dir = get_amp_direction(kcontrol); |
| 1743 | int idx = get_amp_index(kcontrol); |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 1744 | unsigned int ofs = get_amp_offset(kcontrol); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1745 | long *valp = ucontrol->value.integer.value; |
| 1746 | int change = 0; |
| 1747 | |
Nicolas Graziano | b9f5a89 | 2005-07-29 12:17:20 +0200 | [diff] [blame] | 1748 | if (chs & 1) { |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 1749 | change = update_amp_value(codec, nid, 0, dir, idx, ofs, *valp); |
Nicolas Graziano | b9f5a89 | 2005-07-29 12:17:20 +0200 | [diff] [blame] | 1750 | valp++; |
| 1751 | } |
Takashi Iwai | 4a19fae | 2005-06-08 14:43:58 +0200 | [diff] [blame] | 1752 | if (chs & 2) |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 1753 | change |= update_amp_value(codec, nid, 1, dir, idx, ofs, *valp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1754 | return change; |
| 1755 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1756 | EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_volume_put); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1757 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1758 | /** |
| 1759 | * 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] | 1760 | * @kcontrol: ctl element |
| 1761 | * @op_flag: operation flag |
| 1762 | * @size: byte size of input TLV |
| 1763 | * @_tlv: TLV data |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1764 | * |
| 1765 | * The control element is supposed to have the private_value field |
| 1766 | * set up via HDA_COMPOSE_AMP_VAL*() or related macros. |
| 1767 | */ |
Jaroslav Kysela | 302e9c5 | 2006-07-05 17:39:49 +0200 | [diff] [blame] | 1768 | int snd_hda_mixer_amp_tlv(struct snd_kcontrol *kcontrol, int op_flag, |
| 1769 | unsigned int size, unsigned int __user *_tlv) |
| 1770 | { |
| 1771 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 1772 | hda_nid_t nid = get_amp_nid(kcontrol); |
| 1773 | int dir = get_amp_direction(kcontrol); |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 1774 | unsigned int ofs = get_amp_offset(kcontrol); |
Clemens Ladisch | de8c85f | 2010-10-15 10:32:50 +0200 | [diff] [blame] | 1775 | bool min_mute = get_amp_min_mute(kcontrol); |
Jaroslav Kysela | 302e9c5 | 2006-07-05 17:39:49 +0200 | [diff] [blame] | 1776 | u32 caps, val1, val2; |
| 1777 | |
| 1778 | if (size < 4 * sizeof(unsigned int)) |
| 1779 | return -ENOMEM; |
| 1780 | caps = query_amp_caps(codec, nid, dir); |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1781 | val2 = (caps & AC_AMPCAP_STEP_SIZE) >> AC_AMPCAP_STEP_SIZE_SHIFT; |
| 1782 | val2 = (val2 + 1) * 25; |
Jaroslav Kysela | 302e9c5 | 2006-07-05 17:39:49 +0200 | [diff] [blame] | 1783 | val1 = -((caps & AC_AMPCAP_OFFSET) >> AC_AMPCAP_OFFSET_SHIFT); |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 1784 | val1 += ofs; |
Jaroslav Kysela | 302e9c5 | 2006-07-05 17:39:49 +0200 | [diff] [blame] | 1785 | val1 = ((int)val1) * ((int)val2); |
Takashi Iwai | 3868137 | 2012-02-27 15:00:58 +0100 | [diff] [blame] | 1786 | if (min_mute || (caps & AC_AMPCAP_MIN_MUTE)) |
Takashi Iwai | c08d916 | 2010-10-17 10:40:53 +0200 | [diff] [blame] | 1787 | val2 |= TLV_DB_SCALE_MUTE; |
Jaroslav Kysela | 302e9c5 | 2006-07-05 17:39:49 +0200 | [diff] [blame] | 1788 | if (put_user(SNDRV_CTL_TLVT_DB_SCALE, _tlv)) |
| 1789 | return -EFAULT; |
| 1790 | if (put_user(2 * sizeof(unsigned int), _tlv + 1)) |
| 1791 | return -EFAULT; |
| 1792 | if (put_user(val1, _tlv + 2)) |
| 1793 | return -EFAULT; |
| 1794 | if (put_user(val2, _tlv + 3)) |
| 1795 | return -EFAULT; |
| 1796 | return 0; |
| 1797 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1798 | EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_tlv); |
Jaroslav Kysela | 302e9c5 | 2006-07-05 17:39:49 +0200 | [diff] [blame] | 1799 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1800 | /** |
| 1801 | * snd_hda_set_vmaster_tlv - Set TLV for a virtual master control |
| 1802 | * @codec: HD-audio codec |
| 1803 | * @nid: NID of a reference widget |
| 1804 | * @dir: #HDA_INPUT or #HDA_OUTPUT |
| 1805 | * @tlv: TLV data to be stored, at least 4 elements |
| 1806 | * |
| 1807 | * Set (static) TLV data for a virtual master volume using the AMP caps |
| 1808 | * obtained from the reference NID. |
| 1809 | * The volume range is recalculated as if the max volume is 0dB. |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1810 | */ |
| 1811 | void snd_hda_set_vmaster_tlv(struct hda_codec *codec, hda_nid_t nid, int dir, |
| 1812 | unsigned int *tlv) |
| 1813 | { |
| 1814 | u32 caps; |
| 1815 | int nums, step; |
| 1816 | |
| 1817 | caps = query_amp_caps(codec, nid, dir); |
| 1818 | nums = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT; |
| 1819 | step = (caps & AC_AMPCAP_STEP_SIZE) >> AC_AMPCAP_STEP_SIZE_SHIFT; |
| 1820 | step = (step + 1) * 25; |
| 1821 | tlv[0] = SNDRV_CTL_TLVT_DB_SCALE; |
| 1822 | tlv[1] = 2 * sizeof(unsigned int); |
| 1823 | tlv[2] = -nums * step; |
| 1824 | tlv[3] = step; |
| 1825 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1826 | EXPORT_SYMBOL_GPL(snd_hda_set_vmaster_tlv); |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1827 | |
| 1828 | /* find a mixer control element with the given name */ |
Takashi Iwai | 09f9970 | 2008-02-04 12:31:13 +0100 | [diff] [blame] | 1829 | static struct snd_kcontrol * |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 1830 | 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] | 1831 | { |
| 1832 | struct snd_ctl_elem_id id; |
| 1833 | memset(&id, 0, sizeof(id)); |
| 1834 | id.iface = SNDRV_CTL_ELEM_IFACE_MIXER; |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 1835 | id.device = dev; |
Takashi Iwai | 09f9970 | 2008-02-04 12:31:13 +0100 | [diff] [blame] | 1836 | id.index = idx; |
Takashi Iwai | 18cb710 | 2009-04-16 10:22:24 +0200 | [diff] [blame] | 1837 | if (snd_BUG_ON(strlen(name) >= sizeof(id.name))) |
| 1838 | return NULL; |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1839 | strcpy(id.name, name); |
Takashi Iwai | 6efdd85 | 2015-02-27 16:09:22 +0100 | [diff] [blame] | 1840 | return snd_ctl_find_id(codec->card, &id); |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1841 | } |
| 1842 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1843 | /** |
| 1844 | * snd_hda_find_mixer_ctl - Find a mixer control element with the given name |
| 1845 | * @codec: HD-audio codec |
| 1846 | * @name: ctl id name string |
| 1847 | * |
| 1848 | * Get the control element with the given id string and IFACE_MIXER. |
| 1849 | */ |
Takashi Iwai | 09f9970 | 2008-02-04 12:31:13 +0100 | [diff] [blame] | 1850 | struct snd_kcontrol *snd_hda_find_mixer_ctl(struct hda_codec *codec, |
| 1851 | const char *name) |
| 1852 | { |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 1853 | return find_mixer_ctl(codec, name, 0, 0); |
Takashi Iwai | 09f9970 | 2008-02-04 12:31:13 +0100 | [diff] [blame] | 1854 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1855 | EXPORT_SYMBOL_GPL(snd_hda_find_mixer_ctl); |
Takashi Iwai | 09f9970 | 2008-02-04 12:31:13 +0100 | [diff] [blame] | 1856 | |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 1857 | 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] | 1858 | int start_idx) |
Takashi Iwai | 1afe206 | 2010-12-23 10:17:52 +0100 | [diff] [blame] | 1859 | { |
Takashi Iwai | ea9b43a | 2013-02-12 17:02:41 +0100 | [diff] [blame] | 1860 | int i, idx; |
| 1861 | /* 16 ctlrs should be large enough */ |
| 1862 | for (i = 0, idx = start_idx; i < 16; i++, idx++) { |
| 1863 | if (!find_mixer_ctl(codec, name, 0, idx)) |
Takashi Iwai | 1afe206 | 2010-12-23 10:17:52 +0100 | [diff] [blame] | 1864 | return idx; |
| 1865 | } |
| 1866 | return -EBUSY; |
| 1867 | } |
| 1868 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1869 | /** |
Jaroslav Kysela | 5b0cb1d | 2009-12-08 16:13:32 +0100 | [diff] [blame] | 1870 | * 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] | 1871 | * @codec: HD-audio codec |
| 1872 | * @nid: corresponding NID (optional) |
| 1873 | * @kctl: the control element to assign |
| 1874 | * |
| 1875 | * Add the given control element to an array inside the codec instance. |
| 1876 | * All control elements belonging to a codec are supposed to be added |
| 1877 | * by this function so that a proper clean-up works at the free or |
| 1878 | * reconfiguration time. |
| 1879 | * |
| 1880 | * If non-zero @nid is passed, the NID is assigned to the control element. |
| 1881 | * The assignment is shown in the codec proc file. |
| 1882 | * |
| 1883 | * snd_hda_ctl_add() checks the control subdev id field whether |
| 1884 | * #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] | 1885 | * bits value is taken as the NID to assign. The #HDA_NID_ITEM_AMP bit |
| 1886 | * specifies if kctl->private_value is a HDA amplifier value. |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1887 | */ |
Jaroslav Kysela | 3911a4c | 2009-11-11 13:43:01 +0100 | [diff] [blame] | 1888 | int snd_hda_ctl_add(struct hda_codec *codec, hda_nid_t nid, |
| 1889 | struct snd_kcontrol *kctl) |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1890 | { |
| 1891 | int err; |
Jaroslav Kysela | 9e3fd87 | 2009-12-08 17:45:25 +0100 | [diff] [blame] | 1892 | unsigned short flags = 0; |
Jaroslav Kysela | 3911a4c | 2009-11-11 13:43:01 +0100 | [diff] [blame] | 1893 | struct hda_nid_item *item; |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1894 | |
Jaroslav Kysela | 5e26dfd | 2009-12-10 13:57:01 +0100 | [diff] [blame] | 1895 | if (kctl->id.subdevice & HDA_SUBDEV_AMP_FLAG) { |
Jaroslav Kysela | 9e3fd87 | 2009-12-08 17:45:25 +0100 | [diff] [blame] | 1896 | flags |= HDA_NID_ITEM_AMP; |
Jaroslav Kysela | 5e26dfd | 2009-12-10 13:57:01 +0100 | [diff] [blame] | 1897 | if (nid == 0) |
| 1898 | nid = get_amp_nid_(kctl->private_value); |
| 1899 | } |
Jaroslav Kysela | 9e3fd87 | 2009-12-08 17:45:25 +0100 | [diff] [blame] | 1900 | if ((kctl->id.subdevice & HDA_SUBDEV_NID_FLAG) != 0 && nid == 0) |
| 1901 | nid = kctl->id.subdevice & 0xffff; |
Jaroslav Kysela | 5e26dfd | 2009-12-10 13:57:01 +0100 | [diff] [blame] | 1902 | if (kctl->id.subdevice & (HDA_SUBDEV_NID_FLAG|HDA_SUBDEV_AMP_FLAG)) |
Jaroslav Kysela | 4d02d1b | 2009-11-12 10:15:48 +0100 | [diff] [blame] | 1903 | kctl->id.subdevice = 0; |
Takashi Iwai | 6efdd85 | 2015-02-27 16:09:22 +0100 | [diff] [blame] | 1904 | err = snd_ctl_add(codec->card, kctl); |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1905 | if (err < 0) |
| 1906 | return err; |
Jaroslav Kysela | 3911a4c | 2009-11-11 13:43:01 +0100 | [diff] [blame] | 1907 | item = snd_array_new(&codec->mixers); |
| 1908 | if (!item) |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1909 | return -ENOMEM; |
Jaroslav Kysela | 3911a4c | 2009-11-11 13:43:01 +0100 | [diff] [blame] | 1910 | item->kctl = kctl; |
| 1911 | item->nid = nid; |
Jaroslav Kysela | 9e3fd87 | 2009-12-08 17:45:25 +0100 | [diff] [blame] | 1912 | item->flags = flags; |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1913 | return 0; |
| 1914 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1915 | EXPORT_SYMBOL_GPL(snd_hda_ctl_add); |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1916 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1917 | /** |
Jaroslav Kysela | 5b0cb1d | 2009-12-08 16:13:32 +0100 | [diff] [blame] | 1918 | * snd_hda_add_nid - Assign a NID to a control element |
| 1919 | * @codec: HD-audio codec |
| 1920 | * @nid: corresponding NID (optional) |
| 1921 | * @kctl: the control element to assign |
| 1922 | * @index: index to kctl |
| 1923 | * |
| 1924 | * Add the given control element to an array inside the codec instance. |
| 1925 | * This function is used when #snd_hda_ctl_add cannot be used for 1:1 |
| 1926 | * NID:KCTL mapping - for example "Capture Source" selector. |
| 1927 | */ |
| 1928 | int snd_hda_add_nid(struct hda_codec *codec, struct snd_kcontrol *kctl, |
| 1929 | unsigned int index, hda_nid_t nid) |
| 1930 | { |
| 1931 | struct hda_nid_item *item; |
| 1932 | |
| 1933 | if (nid > 0) { |
| 1934 | item = snd_array_new(&codec->nids); |
| 1935 | if (!item) |
| 1936 | return -ENOMEM; |
| 1937 | item->kctl = kctl; |
| 1938 | item->index = index; |
| 1939 | item->nid = nid; |
| 1940 | return 0; |
| 1941 | } |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 1942 | codec_err(codec, "no NID for mapping control %s:%d:%d\n", |
| 1943 | kctl->id.name, kctl->id.index, index); |
Jaroslav Kysela | 5b0cb1d | 2009-12-08 16:13:32 +0100 | [diff] [blame] | 1944 | return -EINVAL; |
| 1945 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1946 | EXPORT_SYMBOL_GPL(snd_hda_add_nid); |
Jaroslav Kysela | 5b0cb1d | 2009-12-08 16:13:32 +0100 | [diff] [blame] | 1947 | |
| 1948 | /** |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1949 | * snd_hda_ctls_clear - Clear all controls assigned to the given codec |
| 1950 | * @codec: HD-audio codec |
| 1951 | */ |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1952 | void snd_hda_ctls_clear(struct hda_codec *codec) |
| 1953 | { |
| 1954 | int i; |
Jaroslav Kysela | 3911a4c | 2009-11-11 13:43:01 +0100 | [diff] [blame] | 1955 | struct hda_nid_item *items = codec->mixers.list; |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1956 | for (i = 0; i < codec->mixers.used; i++) |
Takashi Iwai | 6efdd85 | 2015-02-27 16:09:22 +0100 | [diff] [blame] | 1957 | snd_ctl_remove(codec->card, items[i].kctl); |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1958 | snd_array_free(&codec->mixers); |
Jaroslav Kysela | 5b0cb1d | 2009-12-08 16:13:32 +0100 | [diff] [blame] | 1959 | snd_array_free(&codec->nids); |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1960 | } |
| 1961 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 1962 | /** |
| 1963 | * snd_hda_lock_devices - pseudo device locking |
| 1964 | * @bus: the BUS |
| 1965 | * |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 1966 | * toggle card->shutdown to allow/disallow the device access (as a hack) |
| 1967 | */ |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 1968 | int snd_hda_lock_devices(struct hda_bus *bus) |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1969 | { |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 1970 | struct snd_card *card = bus->card; |
| 1971 | struct hda_codec *codec; |
| 1972 | |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 1973 | spin_lock(&card->files_lock); |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 1974 | if (card->shutdown) |
| 1975 | goto err_unlock; |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 1976 | card->shutdown = 1; |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 1977 | if (!list_empty(&card->ctl_files)) |
| 1978 | goto err_clear; |
| 1979 | |
Takashi Iwai | d068ebc | 2015-03-02 23:22:59 +0100 | [diff] [blame] | 1980 | list_for_each_codec(codec, bus) { |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame] | 1981 | struct hda_pcm *cpcm; |
| 1982 | list_for_each_entry(cpcm, &codec->pcm_list_head, list) { |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 1983 | if (!cpcm->pcm) |
| 1984 | continue; |
| 1985 | if (cpcm->pcm->streams[0].substream_opened || |
| 1986 | cpcm->pcm->streams[1].substream_opened) |
| 1987 | goto err_clear; |
| 1988 | } |
| 1989 | } |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 1990 | spin_unlock(&card->files_lock); |
| 1991 | return 0; |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 1992 | |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 1993 | err_clear: |
| 1994 | card->shutdown = 0; |
| 1995 | err_unlock: |
| 1996 | spin_unlock(&card->files_lock); |
| 1997 | return -EINVAL; |
| 1998 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1999 | EXPORT_SYMBOL_GPL(snd_hda_lock_devices); |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 2000 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 2001 | /** |
| 2002 | * snd_hda_unlock_devices - pseudo device unlocking |
| 2003 | * @bus: the BUS |
| 2004 | */ |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 2005 | void snd_hda_unlock_devices(struct hda_bus *bus) |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 2006 | { |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 2007 | struct snd_card *card = bus->card; |
| 2008 | |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 2009 | spin_lock(&card->files_lock); |
| 2010 | card->shutdown = 0; |
| 2011 | spin_unlock(&card->files_lock); |
| 2012 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2013 | EXPORT_SYMBOL_GPL(snd_hda_unlock_devices); |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 2014 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2015 | /** |
| 2016 | * snd_hda_codec_reset - Clear all objects assigned to the codec |
| 2017 | * @codec: HD-audio codec |
| 2018 | * |
| 2019 | * This frees the all PCM and control elements assigned to the codec, and |
| 2020 | * clears the caches and restores the pin default configurations. |
| 2021 | * |
| 2022 | * When a device is being used, it returns -EBSY. If successfully freed, |
| 2023 | * returns zero. |
| 2024 | */ |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 2025 | int snd_hda_codec_reset(struct hda_codec *codec) |
| 2026 | { |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 2027 | struct hda_bus *bus = codec->bus; |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 2028 | |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 2029 | if (snd_hda_lock_devices(bus) < 0) |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 2030 | return -EBUSY; |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 2031 | |
| 2032 | /* OK, let it free */ |
Takashi Iwai | 3256be6 | 2015-02-24 14:59:42 +0100 | [diff] [blame] | 2033 | snd_hdac_device_unregister(&codec->core); |
Takashi Iwai | d8a766a | 2015-02-17 15:25:37 +0100 | [diff] [blame] | 2034 | |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 2035 | /* allow device access again */ |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 2036 | snd_hda_unlock_devices(bus); |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 2037 | return 0; |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 2038 | } |
| 2039 | |
Takashi Iwai | 6194b99 | 2014-06-06 18:12:16 +0200 | [diff] [blame] | 2040 | 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] | 2041 | |
| 2042 | /* apply the function to all matching slave ctls in the mixer list */ |
| 2043 | static int map_slaves(struct hda_codec *codec, const char * const *slaves, |
Takashi Iwai | 9322ca5 | 2012-02-03 14:28:01 +0100 | [diff] [blame] | 2044 | const char *suffix, map_slave_func_t func, void *data) |
Takashi Iwai | aeb4b88 | 2011-11-10 12:28:38 +0100 | [diff] [blame] | 2045 | { |
| 2046 | struct hda_nid_item *items; |
| 2047 | const char * const *s; |
| 2048 | int i, err; |
| 2049 | |
| 2050 | items = codec->mixers.list; |
| 2051 | for (i = 0; i < codec->mixers.used; i++) { |
| 2052 | struct snd_kcontrol *sctl = items[i].kctl; |
Takashi Iwai | ca16ec0 | 2013-10-28 12:00:35 +0100 | [diff] [blame] | 2053 | if (!sctl || sctl->id.iface != SNDRV_CTL_ELEM_IFACE_MIXER) |
Takashi Iwai | aeb4b88 | 2011-11-10 12:28:38 +0100 | [diff] [blame] | 2054 | continue; |
| 2055 | for (s = slaves; *s; s++) { |
Takashi Iwai | 9322ca5 | 2012-02-03 14:28:01 +0100 | [diff] [blame] | 2056 | char tmpname[sizeof(sctl->id.name)]; |
| 2057 | const char *name = *s; |
| 2058 | if (suffix) { |
| 2059 | snprintf(tmpname, sizeof(tmpname), "%s %s", |
| 2060 | name, suffix); |
| 2061 | name = tmpname; |
| 2062 | } |
Takashi Iwai | 9322ca5 | 2012-02-03 14:28:01 +0100 | [diff] [blame] | 2063 | if (!strcmp(sctl->id.name, name)) { |
Takashi Iwai | 6194b99 | 2014-06-06 18:12:16 +0200 | [diff] [blame] | 2064 | err = func(codec, data, sctl); |
Takashi Iwai | aeb4b88 | 2011-11-10 12:28:38 +0100 | [diff] [blame] | 2065 | if (err) |
| 2066 | return err; |
| 2067 | break; |
| 2068 | } |
| 2069 | } |
| 2070 | } |
| 2071 | return 0; |
| 2072 | } |
| 2073 | |
Takashi Iwai | 6194b99 | 2014-06-06 18:12:16 +0200 | [diff] [blame] | 2074 | static int check_slave_present(struct hda_codec *codec, |
| 2075 | void *data, struct snd_kcontrol *sctl) |
Takashi Iwai | aeb4b88 | 2011-11-10 12:28:38 +0100 | [diff] [blame] | 2076 | { |
| 2077 | return 1; |
| 2078 | } |
| 2079 | |
Takashi Iwai | 18478e8 | 2012-03-09 17:51:10 +0100 | [diff] [blame] | 2080 | /* guess the value corresponding to 0dB */ |
Takashi Iwai | 6194b99 | 2014-06-06 18:12:16 +0200 | [diff] [blame] | 2081 | static int get_kctl_0dB_offset(struct hda_codec *codec, |
| 2082 | struct snd_kcontrol *kctl, int *step_to_check) |
Takashi Iwai | 18478e8 | 2012-03-09 17:51:10 +0100 | [diff] [blame] | 2083 | { |
| 2084 | int _tlv[4]; |
| 2085 | const int *tlv = NULL; |
| 2086 | int val = -1; |
| 2087 | |
| 2088 | if (kctl->vd[0].access & SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK) { |
| 2089 | /* FIXME: set_fs() hack for obtaining user-space TLV data */ |
| 2090 | mm_segment_t fs = get_fs(); |
| 2091 | set_fs(get_ds()); |
| 2092 | if (!kctl->tlv.c(kctl, 0, sizeof(_tlv), _tlv)) |
| 2093 | tlv = _tlv; |
| 2094 | set_fs(fs); |
| 2095 | } else if (kctl->vd[0].access & SNDRV_CTL_ELEM_ACCESS_TLV_READ) |
| 2096 | tlv = kctl->tlv.p; |
Takashi Iwai | a4e7a12 | 2013-11-04 15:44:09 +0100 | [diff] [blame] | 2097 | if (tlv && tlv[0] == SNDRV_CTL_TLVT_DB_SCALE) { |
| 2098 | int step = tlv[3]; |
| 2099 | step &= ~TLV_DB_SCALE_MUTE; |
| 2100 | if (!step) |
| 2101 | return -1; |
Takashi Iwai | 485e3e0 | 2013-11-04 15:51:00 +0100 | [diff] [blame] | 2102 | if (*step_to_check && *step_to_check != step) { |
Takashi Iwai | 6194b99 | 2014-06-06 18:12:16 +0200 | [diff] [blame] | 2103 | codec_err(codec, "Mismatching dB step for vmaster slave (%d!=%d)\n", |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 2104 | - *step_to_check, step); |
Takashi Iwai | 485e3e0 | 2013-11-04 15:51:00 +0100 | [diff] [blame] | 2105 | return -1; |
| 2106 | } |
| 2107 | *step_to_check = step; |
Takashi Iwai | a4e7a12 | 2013-11-04 15:44:09 +0100 | [diff] [blame] | 2108 | val = -tlv[2] / step; |
| 2109 | } |
Takashi Iwai | 18478e8 | 2012-03-09 17:51:10 +0100 | [diff] [blame] | 2110 | return val; |
| 2111 | } |
| 2112 | |
| 2113 | /* call kctl->put with the given value(s) */ |
| 2114 | static int put_kctl_with_value(struct snd_kcontrol *kctl, int val) |
| 2115 | { |
| 2116 | struct snd_ctl_elem_value *ucontrol; |
| 2117 | ucontrol = kzalloc(sizeof(*ucontrol), GFP_KERNEL); |
| 2118 | if (!ucontrol) |
| 2119 | return -ENOMEM; |
| 2120 | ucontrol->value.integer.value[0] = val; |
| 2121 | ucontrol->value.integer.value[1] = val; |
| 2122 | kctl->put(kctl, ucontrol); |
| 2123 | kfree(ucontrol); |
| 2124 | return 0; |
| 2125 | } |
| 2126 | |
| 2127 | /* initialize the slave volume with 0dB */ |
Takashi Iwai | 6194b99 | 2014-06-06 18:12:16 +0200 | [diff] [blame] | 2128 | static int init_slave_0dB(struct hda_codec *codec, |
| 2129 | void *data, struct snd_kcontrol *slave) |
Takashi Iwai | 18478e8 | 2012-03-09 17:51:10 +0100 | [diff] [blame] | 2130 | { |
Takashi Iwai | 6194b99 | 2014-06-06 18:12:16 +0200 | [diff] [blame] | 2131 | int offset = get_kctl_0dB_offset(codec, slave, data); |
Takashi Iwai | 18478e8 | 2012-03-09 17:51:10 +0100 | [diff] [blame] | 2132 | if (offset > 0) |
| 2133 | put_kctl_with_value(slave, offset); |
| 2134 | return 0; |
| 2135 | } |
| 2136 | |
| 2137 | /* unmute the slave */ |
Takashi Iwai | 6194b99 | 2014-06-06 18:12:16 +0200 | [diff] [blame] | 2138 | static int init_slave_unmute(struct hda_codec *codec, |
| 2139 | void *data, struct snd_kcontrol *slave) |
Takashi Iwai | 18478e8 | 2012-03-09 17:51:10 +0100 | [diff] [blame] | 2140 | { |
| 2141 | return put_kctl_with_value(slave, 1); |
| 2142 | } |
| 2143 | |
Takashi Iwai | e875094 | 2014-06-30 14:02:39 +0200 | [diff] [blame] | 2144 | static int add_slave(struct hda_codec *codec, |
| 2145 | void *data, struct snd_kcontrol *slave) |
| 2146 | { |
| 2147 | return snd_ctl_add_slave(data, slave); |
| 2148 | } |
| 2149 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2150 | /** |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 2151 | * __snd_hda_add_vmaster - create a virtual master control and add slaves |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2152 | * @codec: HD-audio codec |
| 2153 | * @name: vmaster control name |
| 2154 | * @tlv: TLV data (optional) |
| 2155 | * @slaves: slave control names (optional) |
Takashi Iwai | 9322ca5 | 2012-02-03 14:28:01 +0100 | [diff] [blame] | 2156 | * @suffix: suffix string to each slave name (optional) |
Takashi Iwai | 18478e8 | 2012-03-09 17:51:10 +0100 | [diff] [blame] | 2157 | * @init_slave_vol: initialize slaves to unmute/0dB |
Takashi Iwai | 29e5853 | 2012-03-12 12:25:03 +0100 | [diff] [blame] | 2158 | * @ctl_ret: store the vmaster kcontrol in return |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2159 | * |
| 2160 | * Create a virtual master control with the given name. The TLV data |
| 2161 | * must be either NULL or a valid data. |
| 2162 | * |
| 2163 | * @slaves is a NULL-terminated array of strings, each of which is a |
| 2164 | * slave control name. All controls with these names are assigned to |
| 2165 | * the new virtual master control. |
| 2166 | * |
| 2167 | * This function returns zero if successful or a negative error code. |
| 2168 | */ |
Takashi Iwai | 18478e8 | 2012-03-09 17:51:10 +0100 | [diff] [blame] | 2169 | int __snd_hda_add_vmaster(struct hda_codec *codec, char *name, |
Takashi Iwai | 9322ca5 | 2012-02-03 14:28:01 +0100 | [diff] [blame] | 2170 | unsigned int *tlv, const char * const *slaves, |
Takashi Iwai | 29e5853 | 2012-03-12 12:25:03 +0100 | [diff] [blame] | 2171 | const char *suffix, bool init_slave_vol, |
| 2172 | struct snd_kcontrol **ctl_ret) |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 2173 | { |
| 2174 | struct snd_kcontrol *kctl; |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 2175 | int err; |
| 2176 | |
Takashi Iwai | 29e5853 | 2012-03-12 12:25:03 +0100 | [diff] [blame] | 2177 | if (ctl_ret) |
| 2178 | *ctl_ret = NULL; |
| 2179 | |
Takashi Iwai | 9322ca5 | 2012-02-03 14:28:01 +0100 | [diff] [blame] | 2180 | err = map_slaves(codec, slaves, suffix, check_slave_present, NULL); |
Takashi Iwai | aeb4b88 | 2011-11-10 12:28:38 +0100 | [diff] [blame] | 2181 | if (err != 1) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 2182 | codec_dbg(codec, "No slave found for %s\n", name); |
Takashi Iwai | 2f08554 | 2008-02-22 18:43:50 +0100 | [diff] [blame] | 2183 | return 0; |
| 2184 | } |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 2185 | kctl = snd_ctl_make_virtual_master(name, tlv); |
| 2186 | if (!kctl) |
| 2187 | return -ENOMEM; |
Jaroslav Kysela | 3911a4c | 2009-11-11 13:43:01 +0100 | [diff] [blame] | 2188 | err = snd_hda_ctl_add(codec, 0, kctl); |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 2189 | if (err < 0) |
| 2190 | return err; |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 2191 | |
Takashi Iwai | e875094 | 2014-06-30 14:02:39 +0200 | [diff] [blame] | 2192 | err = map_slaves(codec, slaves, suffix, add_slave, kctl); |
Takashi Iwai | aeb4b88 | 2011-11-10 12:28:38 +0100 | [diff] [blame] | 2193 | if (err < 0) |
| 2194 | return err; |
Takashi Iwai | 18478e8 | 2012-03-09 17:51:10 +0100 | [diff] [blame] | 2195 | |
| 2196 | /* init with master mute & zero volume */ |
| 2197 | put_kctl_with_value(kctl, 0); |
Takashi Iwai | 485e3e0 | 2013-11-04 15:51:00 +0100 | [diff] [blame] | 2198 | if (init_slave_vol) { |
| 2199 | int step = 0; |
Takashi Iwai | 18478e8 | 2012-03-09 17:51:10 +0100 | [diff] [blame] | 2200 | map_slaves(codec, slaves, suffix, |
Takashi Iwai | 485e3e0 | 2013-11-04 15:51:00 +0100 | [diff] [blame] | 2201 | tlv ? init_slave_0dB : init_slave_unmute, &step); |
| 2202 | } |
Takashi Iwai | 18478e8 | 2012-03-09 17:51:10 +0100 | [diff] [blame] | 2203 | |
Takashi Iwai | 29e5853 | 2012-03-12 12:25:03 +0100 | [diff] [blame] | 2204 | if (ctl_ret) |
| 2205 | *ctl_ret = kctl; |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 2206 | return 0; |
| 2207 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2208 | EXPORT_SYMBOL_GPL(__snd_hda_add_vmaster); |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 2209 | |
Takashi Iwai | d2f344b | 2012-03-12 16:59:58 +0100 | [diff] [blame] | 2210 | /* |
| 2211 | * mute-LED control using vmaster |
| 2212 | */ |
| 2213 | static int vmaster_mute_mode_info(struct snd_kcontrol *kcontrol, |
| 2214 | struct snd_ctl_elem_info *uinfo) |
| 2215 | { |
| 2216 | static const char * const texts[] = { |
David Henningsson | c86c2d4 | 2013-01-03 14:12:29 +0100 | [diff] [blame] | 2217 | "On", "Off", "Follow Master" |
Takashi Iwai | d2f344b | 2012-03-12 16:59:58 +0100 | [diff] [blame] | 2218 | }; |
Takashi Iwai | d2f344b | 2012-03-12 16:59:58 +0100 | [diff] [blame] | 2219 | |
Takashi Iwai | 3ff7221 | 2014-10-20 18:17:28 +0200 | [diff] [blame] | 2220 | return snd_ctl_enum_info(uinfo, 1, 3, texts); |
Takashi Iwai | d2f344b | 2012-03-12 16:59:58 +0100 | [diff] [blame] | 2221 | } |
| 2222 | |
| 2223 | static int vmaster_mute_mode_get(struct snd_kcontrol *kcontrol, |
| 2224 | struct snd_ctl_elem_value *ucontrol) |
| 2225 | { |
| 2226 | struct hda_vmaster_mute_hook *hook = snd_kcontrol_chip(kcontrol); |
| 2227 | ucontrol->value.enumerated.item[0] = hook->mute_mode; |
| 2228 | return 0; |
| 2229 | } |
| 2230 | |
| 2231 | static int vmaster_mute_mode_put(struct snd_kcontrol *kcontrol, |
| 2232 | struct snd_ctl_elem_value *ucontrol) |
| 2233 | { |
| 2234 | struct hda_vmaster_mute_hook *hook = snd_kcontrol_chip(kcontrol); |
| 2235 | unsigned int old_mode = hook->mute_mode; |
| 2236 | |
| 2237 | hook->mute_mode = ucontrol->value.enumerated.item[0]; |
| 2238 | if (hook->mute_mode > HDA_VMUTE_FOLLOW_MASTER) |
| 2239 | hook->mute_mode = HDA_VMUTE_FOLLOW_MASTER; |
| 2240 | if (old_mode == hook->mute_mode) |
| 2241 | return 0; |
| 2242 | snd_hda_sync_vmaster_hook(hook); |
| 2243 | return 1; |
| 2244 | } |
| 2245 | |
| 2246 | static struct snd_kcontrol_new vmaster_mute_mode = { |
| 2247 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 2248 | .name = "Mute-LED Mode", |
| 2249 | .info = vmaster_mute_mode_info, |
| 2250 | .get = vmaster_mute_mode_get, |
| 2251 | .put = vmaster_mute_mode_put, |
| 2252 | }; |
| 2253 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 2254 | /** |
| 2255 | * snd_hda_add_vmaster_hook - Add a vmaster hook for mute-LED |
| 2256 | * @codec: the HDA codec |
| 2257 | * @hook: the vmaster hook object |
| 2258 | * @expose_enum_ctl: flag to create an enum ctl |
| 2259 | * |
| 2260 | * Add a mute-LED hook with the given vmaster switch kctl. |
| 2261 | * When @expose_enum_ctl is set, "Mute-LED Mode" control is automatically |
| 2262 | * created and associated with the given hook. |
Takashi Iwai | d2f344b | 2012-03-12 16:59:58 +0100 | [diff] [blame] | 2263 | */ |
| 2264 | int snd_hda_add_vmaster_hook(struct hda_codec *codec, |
Takashi Iwai | f29735c | 2012-03-13 07:55:10 +0100 | [diff] [blame] | 2265 | struct hda_vmaster_mute_hook *hook, |
| 2266 | bool expose_enum_ctl) |
Takashi Iwai | d2f344b | 2012-03-12 16:59:58 +0100 | [diff] [blame] | 2267 | { |
| 2268 | struct snd_kcontrol *kctl; |
| 2269 | |
| 2270 | if (!hook->hook || !hook->sw_kctl) |
| 2271 | return 0; |
| 2272 | snd_ctl_add_vmaster_hook(hook->sw_kctl, hook->hook, codec); |
| 2273 | hook->codec = codec; |
| 2274 | hook->mute_mode = HDA_VMUTE_FOLLOW_MASTER; |
Takashi Iwai | f29735c | 2012-03-13 07:55:10 +0100 | [diff] [blame] | 2275 | if (!expose_enum_ctl) |
| 2276 | return 0; |
Takashi Iwai | d2f344b | 2012-03-12 16:59:58 +0100 | [diff] [blame] | 2277 | kctl = snd_ctl_new1(&vmaster_mute_mode, hook); |
| 2278 | if (!kctl) |
| 2279 | return -ENOMEM; |
| 2280 | return snd_hda_ctl_add(codec, 0, kctl); |
| 2281 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2282 | EXPORT_SYMBOL_GPL(snd_hda_add_vmaster_hook); |
Takashi Iwai | d2f344b | 2012-03-12 16:59:58 +0100 | [diff] [blame] | 2283 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 2284 | /** |
| 2285 | * snd_hda_sync_vmaster_hook - Sync vmaster hook |
| 2286 | * @hook: the vmaster hook |
| 2287 | * |
| 2288 | * Call the hook with the current value for synchronization. |
| 2289 | * Should be called in init callback. |
Takashi Iwai | d2f344b | 2012-03-12 16:59:58 +0100 | [diff] [blame] | 2290 | */ |
| 2291 | void snd_hda_sync_vmaster_hook(struct hda_vmaster_mute_hook *hook) |
| 2292 | { |
| 2293 | if (!hook->hook || !hook->codec) |
| 2294 | return; |
Takashi Iwai | 594813f | 2013-04-17 18:16:05 +0200 | [diff] [blame] | 2295 | /* don't call vmaster hook in the destructor since it might have |
| 2296 | * been already destroyed |
| 2297 | */ |
| 2298 | if (hook->codec->bus->shutdown) |
| 2299 | return; |
Takashi Iwai | d2f344b | 2012-03-12 16:59:58 +0100 | [diff] [blame] | 2300 | switch (hook->mute_mode) { |
| 2301 | case HDA_VMUTE_FOLLOW_MASTER: |
| 2302 | snd_ctl_sync_vmaster_hook(hook->sw_kctl); |
| 2303 | break; |
| 2304 | default: |
| 2305 | hook->hook(hook->codec, hook->mute_mode); |
| 2306 | break; |
| 2307 | } |
| 2308 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2309 | EXPORT_SYMBOL_GPL(snd_hda_sync_vmaster_hook); |
Takashi Iwai | d2f344b | 2012-03-12 16:59:58 +0100 | [diff] [blame] | 2310 | |
| 2311 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2312 | /** |
| 2313 | * 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] | 2314 | * @kcontrol: referred ctl element |
| 2315 | * @uinfo: pointer to get/store the data |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2316 | * |
| 2317 | * The control element is supposed to have the private_value field |
| 2318 | * set up via HDA_COMPOSE_AMP_VAL*() or related macros. |
| 2319 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2320 | int snd_hda_mixer_amp_switch_info(struct snd_kcontrol *kcontrol, |
| 2321 | struct snd_ctl_elem_info *uinfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2322 | { |
| 2323 | int chs = get_amp_channels(kcontrol); |
| 2324 | |
| 2325 | uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN; |
| 2326 | uinfo->count = chs == 3 ? 2 : 1; |
| 2327 | uinfo->value.integer.min = 0; |
| 2328 | uinfo->value.integer.max = 1; |
| 2329 | return 0; |
| 2330 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2331 | EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_switch_info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2332 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2333 | /** |
| 2334 | * 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] | 2335 | * @kcontrol: ctl element |
| 2336 | * @ucontrol: pointer to get/store the data |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2337 | * |
| 2338 | * The control element is supposed to have the private_value field |
| 2339 | * set up via HDA_COMPOSE_AMP_VAL*() or related macros. |
| 2340 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2341 | int snd_hda_mixer_amp_switch_get(struct snd_kcontrol *kcontrol, |
| 2342 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2343 | { |
| 2344 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2345 | hda_nid_t nid = get_amp_nid(kcontrol); |
| 2346 | int chs = get_amp_channels(kcontrol); |
| 2347 | int dir = get_amp_direction(kcontrol); |
| 2348 | int idx = get_amp_index(kcontrol); |
| 2349 | long *valp = ucontrol->value.integer.value; |
| 2350 | |
| 2351 | if (chs & 1) |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2352 | *valp++ = (snd_hda_codec_amp_read(codec, nid, 0, dir, idx) & |
Takashi Iwai | 47fd830 | 2007-08-10 17:11:07 +0200 | [diff] [blame] | 2353 | HDA_AMP_MUTE) ? 0 : 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2354 | if (chs & 2) |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2355 | *valp = (snd_hda_codec_amp_read(codec, nid, 1, dir, idx) & |
Takashi Iwai | 47fd830 | 2007-08-10 17:11:07 +0200 | [diff] [blame] | 2356 | HDA_AMP_MUTE) ? 0 : 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2357 | return 0; |
| 2358 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2359 | EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_switch_get); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2360 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2361 | /** |
| 2362 | * 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] | 2363 | * @kcontrol: ctl element |
| 2364 | * @ucontrol: pointer to get/store the data |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2365 | * |
| 2366 | * The control element is supposed to have the private_value field |
| 2367 | * set up via HDA_COMPOSE_AMP_VAL*() or related macros. |
| 2368 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2369 | int snd_hda_mixer_amp_switch_put(struct snd_kcontrol *kcontrol, |
| 2370 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2371 | { |
| 2372 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2373 | hda_nid_t nid = get_amp_nid(kcontrol); |
| 2374 | int chs = get_amp_channels(kcontrol); |
| 2375 | int dir = get_amp_direction(kcontrol); |
| 2376 | int idx = get_amp_index(kcontrol); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2377 | long *valp = ucontrol->value.integer.value; |
| 2378 | int change = 0; |
| 2379 | |
Nicolas Graziano | b9f5a89 | 2005-07-29 12:17:20 +0200 | [diff] [blame] | 2380 | if (chs & 1) { |
Takashi Iwai | eeecd9d | 2015-02-25 15:18:50 +0100 | [diff] [blame^] | 2381 | change = snd_hda_codec_amp_update(codec, nid, 0, dir, idx, |
| 2382 | HDA_AMP_MUTE, |
| 2383 | *valp ? 0 : HDA_AMP_MUTE); |
Nicolas Graziano | b9f5a89 | 2005-07-29 12:17:20 +0200 | [diff] [blame] | 2384 | valp++; |
| 2385 | } |
Takashi Iwai | 4a19fae | 2005-06-08 14:43:58 +0200 | [diff] [blame] | 2386 | if (chs & 2) |
Takashi Iwai | eeecd9d | 2015-02-25 15:18:50 +0100 | [diff] [blame^] | 2387 | change |= snd_hda_codec_amp_update(codec, nid, 1, dir, idx, |
| 2388 | HDA_AMP_MUTE, |
| 2389 | *valp ? 0 : HDA_AMP_MUTE); |
Takashi Iwai | 9e5341b | 2010-09-21 09:57:06 +0200 | [diff] [blame] | 2390 | hda_call_check_power_status(codec, nid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2391 | return change; |
| 2392 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2393 | EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_switch_put); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2394 | |
| 2395 | /* |
Takashi Iwai | 985be54 | 2005-11-02 18:26:49 +0100 | [diff] [blame] | 2396 | * bound volume controls |
| 2397 | * |
| 2398 | * bind multiple volumes (# indices, from 0) |
| 2399 | */ |
| 2400 | |
| 2401 | #define AMP_VAL_IDX_SHIFT 19 |
| 2402 | #define AMP_VAL_IDX_MASK (0x0f<<19) |
| 2403 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2404 | /** |
| 2405 | * 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] | 2406 | * @kcontrol: ctl element |
| 2407 | * @ucontrol: pointer to get/store the data |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2408 | * |
| 2409 | * The control element is supposed to have the private_value field |
| 2410 | * set up via HDA_BIND_MUTE*() macros. |
| 2411 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2412 | int snd_hda_mixer_bind_switch_get(struct snd_kcontrol *kcontrol, |
| 2413 | struct snd_ctl_elem_value *ucontrol) |
Takashi Iwai | 985be54 | 2005-11-02 18:26:49 +0100 | [diff] [blame] | 2414 | { |
| 2415 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2416 | unsigned long pval; |
| 2417 | int err; |
| 2418 | |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 2419 | mutex_lock(&codec->control_mutex); |
Takashi Iwai | 985be54 | 2005-11-02 18:26:49 +0100 | [diff] [blame] | 2420 | pval = kcontrol->private_value; |
| 2421 | kcontrol->private_value = pval & ~AMP_VAL_IDX_MASK; /* index 0 */ |
| 2422 | err = snd_hda_mixer_amp_switch_get(kcontrol, ucontrol); |
| 2423 | kcontrol->private_value = pval; |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 2424 | mutex_unlock(&codec->control_mutex); |
Takashi Iwai | 985be54 | 2005-11-02 18:26:49 +0100 | [diff] [blame] | 2425 | return err; |
| 2426 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2427 | EXPORT_SYMBOL_GPL(snd_hda_mixer_bind_switch_get); |
Takashi Iwai | 985be54 | 2005-11-02 18:26:49 +0100 | [diff] [blame] | 2428 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2429 | /** |
| 2430 | * 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] | 2431 | * @kcontrol: ctl element |
| 2432 | * @ucontrol: pointer to get/store the data |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2433 | * |
| 2434 | * The control element is supposed to have the private_value field |
| 2435 | * set up via HDA_BIND_MUTE*() macros. |
| 2436 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2437 | int snd_hda_mixer_bind_switch_put(struct snd_kcontrol *kcontrol, |
| 2438 | struct snd_ctl_elem_value *ucontrol) |
Takashi Iwai | 985be54 | 2005-11-02 18:26:49 +0100 | [diff] [blame] | 2439 | { |
| 2440 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2441 | unsigned long pval; |
| 2442 | int i, indices, err = 0, change = 0; |
| 2443 | |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 2444 | mutex_lock(&codec->control_mutex); |
Takashi Iwai | 985be54 | 2005-11-02 18:26:49 +0100 | [diff] [blame] | 2445 | pval = kcontrol->private_value; |
| 2446 | indices = (pval & AMP_VAL_IDX_MASK) >> AMP_VAL_IDX_SHIFT; |
| 2447 | for (i = 0; i < indices; i++) { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2448 | kcontrol->private_value = (pval & ~AMP_VAL_IDX_MASK) | |
| 2449 | (i << AMP_VAL_IDX_SHIFT); |
Takashi Iwai | 985be54 | 2005-11-02 18:26:49 +0100 | [diff] [blame] | 2450 | err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol); |
| 2451 | if (err < 0) |
| 2452 | break; |
| 2453 | change |= err; |
| 2454 | } |
| 2455 | kcontrol->private_value = pval; |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 2456 | mutex_unlock(&codec->control_mutex); |
Takashi Iwai | 985be54 | 2005-11-02 18:26:49 +0100 | [diff] [blame] | 2457 | return err < 0 ? err : change; |
| 2458 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2459 | EXPORT_SYMBOL_GPL(snd_hda_mixer_bind_switch_put); |
Takashi Iwai | 985be54 | 2005-11-02 18:26:49 +0100 | [diff] [blame] | 2460 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2461 | /** |
| 2462 | * 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] | 2463 | * @kcontrol: referred ctl element |
| 2464 | * @uinfo: pointer to get/store the data |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2465 | * |
| 2466 | * The control element is supposed to have the private_value field |
| 2467 | * set up via HDA_BIND_VOL() or HDA_BIND_SW() macros. |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2468 | */ |
| 2469 | int snd_hda_mixer_bind_ctls_info(struct snd_kcontrol *kcontrol, |
| 2470 | struct snd_ctl_elem_info *uinfo) |
| 2471 | { |
| 2472 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2473 | struct hda_bind_ctls *c; |
| 2474 | int err; |
| 2475 | |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 2476 | mutex_lock(&codec->control_mutex); |
Serge A. Suchkov | 14c65f9 | 2008-02-22 18:43:16 +0100 | [diff] [blame] | 2477 | c = (struct hda_bind_ctls *)kcontrol->private_value; |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2478 | kcontrol->private_value = *c->values; |
| 2479 | err = c->ops->info(kcontrol, uinfo); |
| 2480 | kcontrol->private_value = (long)c; |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 2481 | mutex_unlock(&codec->control_mutex); |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2482 | return err; |
| 2483 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2484 | EXPORT_SYMBOL_GPL(snd_hda_mixer_bind_ctls_info); |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2485 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2486 | /** |
| 2487 | * 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] | 2488 | * @kcontrol: ctl element |
| 2489 | * @ucontrol: pointer to get/store the data |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2490 | * |
| 2491 | * The control element is supposed to have the private_value field |
| 2492 | * set up via HDA_BIND_VOL() or HDA_BIND_SW() macros. |
| 2493 | */ |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2494 | int snd_hda_mixer_bind_ctls_get(struct snd_kcontrol *kcontrol, |
| 2495 | struct snd_ctl_elem_value *ucontrol) |
| 2496 | { |
| 2497 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2498 | struct hda_bind_ctls *c; |
| 2499 | int err; |
| 2500 | |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 2501 | mutex_lock(&codec->control_mutex); |
Serge A. Suchkov | 14c65f9 | 2008-02-22 18:43:16 +0100 | [diff] [blame] | 2502 | c = (struct hda_bind_ctls *)kcontrol->private_value; |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2503 | kcontrol->private_value = *c->values; |
| 2504 | err = c->ops->get(kcontrol, ucontrol); |
| 2505 | kcontrol->private_value = (long)c; |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 2506 | mutex_unlock(&codec->control_mutex); |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2507 | return err; |
| 2508 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2509 | EXPORT_SYMBOL_GPL(snd_hda_mixer_bind_ctls_get); |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2510 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2511 | /** |
| 2512 | * 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] | 2513 | * @kcontrol: ctl element |
| 2514 | * @ucontrol: pointer to get/store the data |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2515 | * |
| 2516 | * The control element is supposed to have the private_value field |
| 2517 | * set up via HDA_BIND_VOL() or HDA_BIND_SW() macros. |
| 2518 | */ |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2519 | int snd_hda_mixer_bind_ctls_put(struct snd_kcontrol *kcontrol, |
| 2520 | struct snd_ctl_elem_value *ucontrol) |
| 2521 | { |
| 2522 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2523 | struct hda_bind_ctls *c; |
| 2524 | unsigned long *vals; |
| 2525 | int err = 0, change = 0; |
| 2526 | |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 2527 | mutex_lock(&codec->control_mutex); |
Serge A. Suchkov | 14c65f9 | 2008-02-22 18:43:16 +0100 | [diff] [blame] | 2528 | c = (struct hda_bind_ctls *)kcontrol->private_value; |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2529 | for (vals = c->values; *vals; vals++) { |
| 2530 | kcontrol->private_value = *vals; |
| 2531 | err = c->ops->put(kcontrol, ucontrol); |
| 2532 | if (err < 0) |
| 2533 | break; |
| 2534 | change |= err; |
| 2535 | } |
| 2536 | kcontrol->private_value = (long)c; |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 2537 | mutex_unlock(&codec->control_mutex); |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2538 | return err < 0 ? err : change; |
| 2539 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2540 | EXPORT_SYMBOL_GPL(snd_hda_mixer_bind_ctls_put); |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2541 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2542 | /** |
| 2543 | * snd_hda_mixer_bind_tlv - TLV callback for a generic bound control |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 2544 | * @kcontrol: ctl element |
| 2545 | * @op_flag: operation flag |
| 2546 | * @size: byte size of input TLV |
| 2547 | * @tlv: TLV data |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2548 | * |
| 2549 | * The control element is supposed to have the private_value field |
| 2550 | * set up via HDA_BIND_VOL() macro. |
| 2551 | */ |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2552 | int snd_hda_mixer_bind_tlv(struct snd_kcontrol *kcontrol, int op_flag, |
| 2553 | unsigned int size, unsigned int __user *tlv) |
| 2554 | { |
| 2555 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2556 | struct hda_bind_ctls *c; |
| 2557 | int err; |
| 2558 | |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 2559 | mutex_lock(&codec->control_mutex); |
Serge A. Suchkov | 14c65f9 | 2008-02-22 18:43:16 +0100 | [diff] [blame] | 2560 | c = (struct hda_bind_ctls *)kcontrol->private_value; |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2561 | kcontrol->private_value = *c->values; |
| 2562 | err = c->ops->tlv(kcontrol, op_flag, size, tlv); |
| 2563 | kcontrol->private_value = (long)c; |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 2564 | mutex_unlock(&codec->control_mutex); |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2565 | return err; |
| 2566 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2567 | EXPORT_SYMBOL_GPL(snd_hda_mixer_bind_tlv); |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2568 | |
| 2569 | struct hda_ctl_ops snd_hda_bind_vol = { |
| 2570 | .info = snd_hda_mixer_amp_volume_info, |
| 2571 | .get = snd_hda_mixer_amp_volume_get, |
| 2572 | .put = snd_hda_mixer_amp_volume_put, |
| 2573 | .tlv = snd_hda_mixer_amp_tlv |
| 2574 | }; |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2575 | EXPORT_SYMBOL_GPL(snd_hda_bind_vol); |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2576 | |
| 2577 | struct hda_ctl_ops snd_hda_bind_sw = { |
| 2578 | .info = snd_hda_mixer_amp_switch_info, |
| 2579 | .get = snd_hda_mixer_amp_switch_get, |
| 2580 | .put = snd_hda_mixer_amp_switch_put, |
| 2581 | .tlv = snd_hda_mixer_amp_tlv |
| 2582 | }; |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2583 | EXPORT_SYMBOL_GPL(snd_hda_bind_sw); |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2584 | |
| 2585 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2586 | * SPDIF out controls |
| 2587 | */ |
| 2588 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2589 | static int snd_hda_spdif_mask_info(struct snd_kcontrol *kcontrol, |
| 2590 | struct snd_ctl_elem_info *uinfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2591 | { |
| 2592 | uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958; |
| 2593 | uinfo->count = 1; |
| 2594 | return 0; |
| 2595 | } |
| 2596 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2597 | static int snd_hda_spdif_cmask_get(struct snd_kcontrol *kcontrol, |
| 2598 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2599 | { |
| 2600 | ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL | |
| 2601 | IEC958_AES0_NONAUDIO | |
| 2602 | IEC958_AES0_CON_EMPHASIS_5015 | |
| 2603 | IEC958_AES0_CON_NOT_COPYRIGHT; |
| 2604 | ucontrol->value.iec958.status[1] = IEC958_AES1_CON_CATEGORY | |
| 2605 | IEC958_AES1_CON_ORIGINAL; |
| 2606 | return 0; |
| 2607 | } |
| 2608 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2609 | static int snd_hda_spdif_pmask_get(struct snd_kcontrol *kcontrol, |
| 2610 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2611 | { |
| 2612 | ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL | |
| 2613 | IEC958_AES0_NONAUDIO | |
| 2614 | IEC958_AES0_PRO_EMPHASIS_5015; |
| 2615 | return 0; |
| 2616 | } |
| 2617 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2618 | static int snd_hda_spdif_default_get(struct snd_kcontrol *kcontrol, |
| 2619 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2620 | { |
| 2621 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 2622 | int idx = kcontrol->private_value; |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 2623 | struct hda_spdif_out *spdif; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2624 | |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 2625 | mutex_lock(&codec->spdif_mutex); |
| 2626 | spdif = snd_array_elem(&codec->spdif_out, idx); |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 2627 | ucontrol->value.iec958.status[0] = spdif->status & 0xff; |
| 2628 | ucontrol->value.iec958.status[1] = (spdif->status >> 8) & 0xff; |
| 2629 | ucontrol->value.iec958.status[2] = (spdif->status >> 16) & 0xff; |
| 2630 | ucontrol->value.iec958.status[3] = (spdif->status >> 24) & 0xff; |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 2631 | mutex_unlock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2632 | |
| 2633 | return 0; |
| 2634 | } |
| 2635 | |
| 2636 | /* convert from SPDIF status bits to HDA SPDIF bits |
| 2637 | * bit 0 (DigEn) is always set zero (to be filled later) |
| 2638 | */ |
| 2639 | static unsigned short convert_from_spdif_status(unsigned int sbits) |
| 2640 | { |
| 2641 | unsigned short val = 0; |
| 2642 | |
| 2643 | if (sbits & IEC958_AES0_PROFESSIONAL) |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2644 | val |= AC_DIG1_PROFESSIONAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2645 | if (sbits & IEC958_AES0_NONAUDIO) |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2646 | val |= AC_DIG1_NONAUDIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2647 | if (sbits & IEC958_AES0_PROFESSIONAL) { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2648 | if ((sbits & IEC958_AES0_PRO_EMPHASIS) == |
| 2649 | IEC958_AES0_PRO_EMPHASIS_5015) |
| 2650 | val |= AC_DIG1_EMPHASIS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2651 | } else { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2652 | if ((sbits & IEC958_AES0_CON_EMPHASIS) == |
| 2653 | IEC958_AES0_CON_EMPHASIS_5015) |
| 2654 | val |= AC_DIG1_EMPHASIS; |
| 2655 | if (!(sbits & IEC958_AES0_CON_NOT_COPYRIGHT)) |
| 2656 | val |= AC_DIG1_COPYRIGHT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2657 | if (sbits & (IEC958_AES1_CON_ORIGINAL << 8)) |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2658 | val |= AC_DIG1_LEVEL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2659 | val |= sbits & (IEC958_AES1_CON_CATEGORY << 8); |
| 2660 | } |
| 2661 | return val; |
| 2662 | } |
| 2663 | |
| 2664 | /* convert to SPDIF status bits from HDA SPDIF bits |
| 2665 | */ |
| 2666 | static unsigned int convert_to_spdif_status(unsigned short val) |
| 2667 | { |
| 2668 | unsigned int sbits = 0; |
| 2669 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2670 | if (val & AC_DIG1_NONAUDIO) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2671 | sbits |= IEC958_AES0_NONAUDIO; |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2672 | if (val & AC_DIG1_PROFESSIONAL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2673 | sbits |= IEC958_AES0_PROFESSIONAL; |
| 2674 | if (sbits & IEC958_AES0_PROFESSIONAL) { |
Takashi Iwai | a686fd1 | 2013-03-20 15:42:00 +0100 | [diff] [blame] | 2675 | if (val & AC_DIG1_EMPHASIS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2676 | sbits |= IEC958_AES0_PRO_EMPHASIS_5015; |
| 2677 | } else { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2678 | if (val & AC_DIG1_EMPHASIS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2679 | sbits |= IEC958_AES0_CON_EMPHASIS_5015; |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2680 | if (!(val & AC_DIG1_COPYRIGHT)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2681 | sbits |= IEC958_AES0_CON_NOT_COPYRIGHT; |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2682 | if (val & AC_DIG1_LEVEL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2683 | sbits |= (IEC958_AES1_CON_ORIGINAL << 8); |
| 2684 | sbits |= val & (0x7f << 8); |
| 2685 | } |
| 2686 | return sbits; |
| 2687 | } |
| 2688 | |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 2689 | /* set digital convert verbs both for the given NID and its slaves */ |
| 2690 | static void set_dig_out(struct hda_codec *codec, hda_nid_t nid, |
| 2691 | int verb, int val) |
| 2692 | { |
Takashi Iwai | dda1441 | 2011-05-02 11:29:30 +0200 | [diff] [blame] | 2693 | const hda_nid_t *d; |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 2694 | |
Takashi Iwai | 9e97697 | 2008-11-25 08:17:20 +0100 | [diff] [blame] | 2695 | snd_hda_codec_write_cache(codec, nid, 0, verb, val); |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 2696 | d = codec->slave_dig_outs; |
| 2697 | if (!d) |
| 2698 | return; |
| 2699 | for (; *d; d++) |
Takashi Iwai | 9e97697 | 2008-11-25 08:17:20 +0100 | [diff] [blame] | 2700 | snd_hda_codec_write_cache(codec, *d, 0, verb, val); |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 2701 | } |
| 2702 | |
| 2703 | static inline void set_dig_out_convert(struct hda_codec *codec, hda_nid_t nid, |
| 2704 | int dig1, int dig2) |
| 2705 | { |
| 2706 | if (dig1 != -1) |
| 2707 | set_dig_out(codec, nid, AC_VERB_SET_DIGI_CONVERT_1, dig1); |
| 2708 | if (dig2 != -1) |
| 2709 | set_dig_out(codec, nid, AC_VERB_SET_DIGI_CONVERT_2, dig2); |
| 2710 | } |
| 2711 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2712 | static int snd_hda_spdif_default_put(struct snd_kcontrol *kcontrol, |
| 2713 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2714 | { |
| 2715 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 2716 | int idx = kcontrol->private_value; |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 2717 | struct hda_spdif_out *spdif; |
| 2718 | hda_nid_t nid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2719 | unsigned short val; |
| 2720 | int change; |
| 2721 | |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 2722 | mutex_lock(&codec->spdif_mutex); |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 2723 | spdif = snd_array_elem(&codec->spdif_out, idx); |
| 2724 | nid = spdif->nid; |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 2725 | spdif->status = ucontrol->value.iec958.status[0] | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2726 | ((unsigned int)ucontrol->value.iec958.status[1] << 8) | |
| 2727 | ((unsigned int)ucontrol->value.iec958.status[2] << 16) | |
| 2728 | ((unsigned int)ucontrol->value.iec958.status[3] << 24); |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 2729 | val = convert_from_spdif_status(spdif->status); |
| 2730 | val |= spdif->ctls & 1; |
| 2731 | change = spdif->ctls != val; |
| 2732 | spdif->ctls = val; |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 2733 | if (change && nid != (u16)-1) |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 2734 | set_dig_out_convert(codec, nid, val & 0xff, (val >> 8) & 0xff); |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 2735 | mutex_unlock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2736 | return change; |
| 2737 | } |
| 2738 | |
Takashi Iwai | a5ce889 | 2007-07-23 15:42:26 +0200 | [diff] [blame] | 2739 | #define snd_hda_spdif_out_switch_info snd_ctl_boolean_mono_info |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2740 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2741 | static int snd_hda_spdif_out_switch_get(struct snd_kcontrol *kcontrol, |
| 2742 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2743 | { |
| 2744 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 2745 | int idx = kcontrol->private_value; |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 2746 | struct hda_spdif_out *spdif; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2747 | |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 2748 | mutex_lock(&codec->spdif_mutex); |
| 2749 | spdif = snd_array_elem(&codec->spdif_out, idx); |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 2750 | ucontrol->value.integer.value[0] = spdif->ctls & AC_DIG1_ENABLE; |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 2751 | mutex_unlock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2752 | return 0; |
| 2753 | } |
| 2754 | |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 2755 | static inline void set_spdif_ctls(struct hda_codec *codec, hda_nid_t nid, |
| 2756 | int dig1, int dig2) |
| 2757 | { |
| 2758 | set_dig_out_convert(codec, nid, dig1, dig2); |
| 2759 | /* unmute amp switch (if any) */ |
| 2760 | if ((get_wcaps(codec, nid) & AC_WCAP_OUT_AMP) && |
| 2761 | (dig1 & AC_DIG1_ENABLE)) |
| 2762 | snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0, |
| 2763 | HDA_AMP_MUTE, 0); |
| 2764 | } |
| 2765 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2766 | static int snd_hda_spdif_out_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); |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 2770 | int idx = kcontrol->private_value; |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 2771 | struct hda_spdif_out *spdif; |
| 2772 | hda_nid_t nid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2773 | unsigned short val; |
| 2774 | int change; |
| 2775 | |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 2776 | mutex_lock(&codec->spdif_mutex); |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 2777 | spdif = snd_array_elem(&codec->spdif_out, idx); |
| 2778 | nid = spdif->nid; |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 2779 | val = spdif->ctls & ~AC_DIG1_ENABLE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2780 | if (ucontrol->value.integer.value[0]) |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2781 | val |= AC_DIG1_ENABLE; |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 2782 | change = spdif->ctls != val; |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 2783 | spdif->ctls = val; |
| 2784 | if (change && nid != (u16)-1) |
| 2785 | set_spdif_ctls(codec, nid, val & 0xff, -1); |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 2786 | mutex_unlock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2787 | return change; |
| 2788 | } |
| 2789 | |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 2790 | static struct snd_kcontrol_new dig_mixes[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2791 | { |
| 2792 | .access = SNDRV_CTL_ELEM_ACCESS_READ, |
| 2793 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 2794 | .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, CON_MASK), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2795 | .info = snd_hda_spdif_mask_info, |
| 2796 | .get = snd_hda_spdif_cmask_get, |
| 2797 | }, |
| 2798 | { |
| 2799 | .access = SNDRV_CTL_ELEM_ACCESS_READ, |
| 2800 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 2801 | .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, PRO_MASK), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2802 | .info = snd_hda_spdif_mask_info, |
| 2803 | .get = snd_hda_spdif_pmask_get, |
| 2804 | }, |
| 2805 | { |
| 2806 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 2807 | .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, DEFAULT), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2808 | .info = snd_hda_spdif_mask_info, |
| 2809 | .get = snd_hda_spdif_default_get, |
| 2810 | .put = snd_hda_spdif_default_put, |
| 2811 | }, |
| 2812 | { |
| 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("", PLAYBACK, SWITCH), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2815 | .info = snd_hda_spdif_out_switch_info, |
| 2816 | .get = snd_hda_spdif_out_switch_get, |
| 2817 | .put = snd_hda_spdif_out_switch_put, |
| 2818 | }, |
| 2819 | { } /* end */ |
| 2820 | }; |
| 2821 | |
| 2822 | /** |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 2823 | * snd_hda_create_dig_out_ctls - create Output SPDIF-related controls |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2824 | * @codec: the HDA codec |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 2825 | * @associated_nid: NID that new ctls associated with |
| 2826 | * @cvt_nid: converter NID |
| 2827 | * @type: HDA_PCM_TYPE_* |
| 2828 | * Creates controls related with the digital output. |
| 2829 | * Called from each patch supporting the digital out. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2830 | * |
| 2831 | * Returns 0 if successful, or a negative error code. |
| 2832 | */ |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 2833 | int snd_hda_create_dig_out_ctls(struct hda_codec *codec, |
| 2834 | hda_nid_t associated_nid, |
| 2835 | hda_nid_t cvt_nid, |
| 2836 | int type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2837 | { |
| 2838 | int err; |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 2839 | struct snd_kcontrol *kctl; |
| 2840 | struct snd_kcontrol_new *dig_mix; |
Takashi Iwai | ea9b43a | 2013-02-12 17:02:41 +0100 | [diff] [blame] | 2841 | int idx = 0; |
| 2842 | const int spdif_index = 16; |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 2843 | struct hda_spdif_out *spdif; |
Takashi Iwai | ea9b43a | 2013-02-12 17:02:41 +0100 | [diff] [blame] | 2844 | struct hda_bus *bus = codec->bus; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2845 | |
Takashi Iwai | ea9b43a | 2013-02-12 17:02:41 +0100 | [diff] [blame] | 2846 | if (bus->primary_dig_out_type == HDA_PCM_TYPE_HDMI && |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 2847 | type == HDA_PCM_TYPE_SPDIF) { |
Takashi Iwai | ea9b43a | 2013-02-12 17:02:41 +0100 | [diff] [blame] | 2848 | idx = spdif_index; |
| 2849 | } else if (bus->primary_dig_out_type == HDA_PCM_TYPE_SPDIF && |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 2850 | type == HDA_PCM_TYPE_HDMI) { |
Takashi Iwai | ea9b43a | 2013-02-12 17:02:41 +0100 | [diff] [blame] | 2851 | /* suppose a single SPDIF device */ |
| 2852 | for (dig_mix = dig_mixes; dig_mix->name; dig_mix++) { |
| 2853 | kctl = find_mixer_ctl(codec, dig_mix->name, 0, 0); |
| 2854 | if (!kctl) |
| 2855 | break; |
| 2856 | kctl->id.index = spdif_index; |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 2857 | } |
Takashi Iwai | ea9b43a | 2013-02-12 17:02:41 +0100 | [diff] [blame] | 2858 | bus->primary_dig_out_type = HDA_PCM_TYPE_HDMI; |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 2859 | } |
Takashi Iwai | ea9b43a | 2013-02-12 17:02:41 +0100 | [diff] [blame] | 2860 | if (!bus->primary_dig_out_type) |
| 2861 | bus->primary_dig_out_type = type; |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 2862 | |
Takashi Iwai | ea9b43a | 2013-02-12 17:02:41 +0100 | [diff] [blame] | 2863 | idx = find_empty_mixer_ctl_idx(codec, "IEC958 Playback Switch", idx); |
Takashi Iwai | 1afe206 | 2010-12-23 10:17:52 +0100 | [diff] [blame] | 2864 | if (idx < 0) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 2865 | codec_err(codec, "too many IEC958 outputs\n"); |
Takashi Iwai | 09f9970 | 2008-02-04 12:31:13 +0100 | [diff] [blame] | 2866 | return -EBUSY; |
| 2867 | } |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 2868 | spdif = snd_array_new(&codec->spdif_out); |
Mengdong Lin | 25336e8 | 2013-03-07 14:10:25 -0500 | [diff] [blame] | 2869 | if (!spdif) |
| 2870 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2871 | for (dig_mix = dig_mixes; dig_mix->name; dig_mix++) { |
| 2872 | kctl = snd_ctl_new1(dig_mix, codec); |
Takashi Iwai | b91f080 | 2008-11-04 08:43:08 +0100 | [diff] [blame] | 2873 | if (!kctl) |
| 2874 | return -ENOMEM; |
Takashi Iwai | 09f9970 | 2008-02-04 12:31:13 +0100 | [diff] [blame] | 2875 | kctl->id.index = idx; |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 2876 | kctl->private_value = codec->spdif_out.used - 1; |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 2877 | err = snd_hda_ctl_add(codec, associated_nid, kctl); |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2878 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2879 | return err; |
| 2880 | } |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 2881 | spdif->nid = cvt_nid; |
| 2882 | spdif->ctls = snd_hda_codec_read(codec, cvt_nid, 0, |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 2883 | AC_VERB_GET_DIGI_CONVERT_1, 0); |
| 2884 | spdif->status = convert_to_spdif_status(spdif->ctls); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2885 | return 0; |
| 2886 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2887 | EXPORT_SYMBOL_GPL(snd_hda_create_dig_out_ctls); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2888 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 2889 | /** |
| 2890 | * snd_hda_spdif_out_of_nid - get the hda_spdif_out entry from the given NID |
| 2891 | * @codec: the HDA codec |
| 2892 | * @nid: widget NID |
| 2893 | * |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 2894 | * call within spdif_mutex lock |
| 2895 | */ |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 2896 | struct hda_spdif_out *snd_hda_spdif_out_of_nid(struct hda_codec *codec, |
| 2897 | hda_nid_t nid) |
| 2898 | { |
| 2899 | int i; |
| 2900 | for (i = 0; i < codec->spdif_out.used; i++) { |
| 2901 | struct hda_spdif_out *spdif = |
| 2902 | snd_array_elem(&codec->spdif_out, i); |
| 2903 | if (spdif->nid == nid) |
| 2904 | return spdif; |
| 2905 | } |
| 2906 | return NULL; |
| 2907 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2908 | EXPORT_SYMBOL_GPL(snd_hda_spdif_out_of_nid); |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 2909 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 2910 | /** |
| 2911 | * snd_hda_spdif_ctls_unassign - Unassign the given SPDIF ctl |
| 2912 | * @codec: the HDA codec |
| 2913 | * @idx: the SPDIF ctl index |
| 2914 | * |
| 2915 | * Unassign the widget from the given SPDIF control. |
| 2916 | */ |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 2917 | void snd_hda_spdif_ctls_unassign(struct hda_codec *codec, int idx) |
| 2918 | { |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 2919 | struct hda_spdif_out *spdif; |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 2920 | |
| 2921 | mutex_lock(&codec->spdif_mutex); |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 2922 | spdif = snd_array_elem(&codec->spdif_out, idx); |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 2923 | spdif->nid = (u16)-1; |
| 2924 | mutex_unlock(&codec->spdif_mutex); |
| 2925 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2926 | EXPORT_SYMBOL_GPL(snd_hda_spdif_ctls_unassign); |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 2927 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 2928 | /** |
| 2929 | * snd_hda_spdif_ctls_assign - Assign the SPDIF controls to the given NID |
| 2930 | * @codec: the HDA codec |
| 2931 | * @idx: the SPDIF ctl idx |
| 2932 | * @nid: widget NID |
| 2933 | * |
| 2934 | * Assign the widget to the SPDIF control with the given index. |
| 2935 | */ |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 2936 | void snd_hda_spdif_ctls_assign(struct hda_codec *codec, int idx, hda_nid_t nid) |
| 2937 | { |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 2938 | struct hda_spdif_out *spdif; |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 2939 | unsigned short val; |
| 2940 | |
| 2941 | mutex_lock(&codec->spdif_mutex); |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 2942 | spdif = snd_array_elem(&codec->spdif_out, idx); |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 2943 | if (spdif->nid != nid) { |
| 2944 | spdif->nid = nid; |
| 2945 | val = spdif->ctls; |
| 2946 | set_spdif_ctls(codec, nid, val & 0xff, (val >> 8) & 0xff); |
| 2947 | } |
| 2948 | mutex_unlock(&codec->spdif_mutex); |
| 2949 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2950 | EXPORT_SYMBOL_GPL(snd_hda_spdif_ctls_assign); |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 2951 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2952 | /* |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 2953 | * SPDIF sharing with analog output |
| 2954 | */ |
| 2955 | static int spdif_share_sw_get(struct snd_kcontrol *kcontrol, |
| 2956 | struct snd_ctl_elem_value *ucontrol) |
| 2957 | { |
| 2958 | struct hda_multi_out *mout = snd_kcontrol_chip(kcontrol); |
| 2959 | ucontrol->value.integer.value[0] = mout->share_spdif; |
| 2960 | return 0; |
| 2961 | } |
| 2962 | |
| 2963 | static int spdif_share_sw_put(struct snd_kcontrol *kcontrol, |
| 2964 | struct snd_ctl_elem_value *ucontrol) |
| 2965 | { |
| 2966 | struct hda_multi_out *mout = snd_kcontrol_chip(kcontrol); |
| 2967 | mout->share_spdif = !!ucontrol->value.integer.value[0]; |
| 2968 | return 0; |
| 2969 | } |
| 2970 | |
| 2971 | static struct snd_kcontrol_new spdif_share_sw = { |
| 2972 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 2973 | .name = "IEC958 Default PCM Playback Switch", |
| 2974 | .info = snd_ctl_boolean_mono_info, |
| 2975 | .get = spdif_share_sw_get, |
| 2976 | .put = spdif_share_sw_put, |
| 2977 | }; |
| 2978 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2979 | /** |
| 2980 | * snd_hda_create_spdif_share_sw - create Default PCM switch |
| 2981 | * @codec: the HDA codec |
| 2982 | * @mout: multi-out instance |
| 2983 | */ |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 2984 | int snd_hda_create_spdif_share_sw(struct hda_codec *codec, |
| 2985 | struct hda_multi_out *mout) |
| 2986 | { |
Mengdong Lin | 4c7a548 | 2013-03-07 14:11:05 -0500 | [diff] [blame] | 2987 | struct snd_kcontrol *kctl; |
| 2988 | |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 2989 | if (!mout->dig_out_nid) |
| 2990 | return 0; |
Mengdong Lin | 4c7a548 | 2013-03-07 14:11:05 -0500 | [diff] [blame] | 2991 | |
| 2992 | kctl = snd_ctl_new1(&spdif_share_sw, mout); |
| 2993 | if (!kctl) |
| 2994 | return -ENOMEM; |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 2995 | /* ATTENTION: here mout is passed as private_data, instead of codec */ |
Mengdong Lin | 4c7a548 | 2013-03-07 14:11:05 -0500 | [diff] [blame] | 2996 | return snd_hda_ctl_add(codec, mout->dig_out_nid, kctl); |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 2997 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2998 | EXPORT_SYMBOL_GPL(snd_hda_create_spdif_share_sw); |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 2999 | |
| 3000 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3001 | * SPDIF input |
| 3002 | */ |
| 3003 | |
| 3004 | #define snd_hda_spdif_in_switch_info snd_hda_spdif_out_switch_info |
| 3005 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3006 | static int snd_hda_spdif_in_switch_get(struct snd_kcontrol *kcontrol, |
| 3007 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3008 | { |
| 3009 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 3010 | |
| 3011 | ucontrol->value.integer.value[0] = codec->spdif_in_enable; |
| 3012 | return 0; |
| 3013 | } |
| 3014 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3015 | static int snd_hda_spdif_in_switch_put(struct snd_kcontrol *kcontrol, |
| 3016 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3017 | { |
| 3018 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 3019 | hda_nid_t nid = kcontrol->private_value; |
| 3020 | unsigned int val = !!ucontrol->value.integer.value[0]; |
| 3021 | int change; |
| 3022 | |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 3023 | mutex_lock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3024 | change = codec->spdif_in_enable != val; |
Takashi Iwai | 82beb8f | 2007-08-10 17:09:26 +0200 | [diff] [blame] | 3025 | if (change) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3026 | codec->spdif_in_enable = val; |
Takashi Iwai | 82beb8f | 2007-08-10 17:09:26 +0200 | [diff] [blame] | 3027 | snd_hda_codec_write_cache(codec, nid, 0, |
| 3028 | AC_VERB_SET_DIGI_CONVERT_1, val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3029 | } |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 3030 | mutex_unlock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3031 | return change; |
| 3032 | } |
| 3033 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3034 | static int snd_hda_spdif_in_status_get(struct snd_kcontrol *kcontrol, |
| 3035 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3036 | { |
| 3037 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 3038 | hda_nid_t nid = kcontrol->private_value; |
| 3039 | unsigned short val; |
| 3040 | unsigned int sbits; |
| 3041 | |
Andrew Paprocki | 3982d17 | 2007-12-19 12:13:44 +0100 | [diff] [blame] | 3042 | val = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_DIGI_CONVERT_1, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3043 | sbits = convert_to_spdif_status(val); |
| 3044 | ucontrol->value.iec958.status[0] = sbits; |
| 3045 | ucontrol->value.iec958.status[1] = sbits >> 8; |
| 3046 | ucontrol->value.iec958.status[2] = sbits >> 16; |
| 3047 | ucontrol->value.iec958.status[3] = sbits >> 24; |
| 3048 | return 0; |
| 3049 | } |
| 3050 | |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 3051 | static struct snd_kcontrol_new dig_in_ctls[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3052 | { |
| 3053 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 3054 | .name = SNDRV_CTL_NAME_IEC958("", CAPTURE, SWITCH), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3055 | .info = snd_hda_spdif_in_switch_info, |
| 3056 | .get = snd_hda_spdif_in_switch_get, |
| 3057 | .put = snd_hda_spdif_in_switch_put, |
| 3058 | }, |
| 3059 | { |
| 3060 | .access = SNDRV_CTL_ELEM_ACCESS_READ, |
| 3061 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 3062 | .name = SNDRV_CTL_NAME_IEC958("", CAPTURE, DEFAULT), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3063 | .info = snd_hda_spdif_mask_info, |
| 3064 | .get = snd_hda_spdif_in_status_get, |
| 3065 | }, |
| 3066 | { } /* end */ |
| 3067 | }; |
| 3068 | |
| 3069 | /** |
| 3070 | * snd_hda_create_spdif_in_ctls - create Input SPDIF-related controls |
| 3071 | * @codec: the HDA codec |
| 3072 | * @nid: audio in widget NID |
| 3073 | * |
| 3074 | * Creates controls related with the SPDIF input. |
| 3075 | * Called from each patch supporting the SPDIF in. |
| 3076 | * |
| 3077 | * Returns 0 if successful, or a negative error code. |
| 3078 | */ |
Takashi Iwai | 12f288b | 2007-08-02 15:51:59 +0200 | [diff] [blame] | 3079 | 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] | 3080 | { |
| 3081 | int err; |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 3082 | struct snd_kcontrol *kctl; |
| 3083 | struct snd_kcontrol_new *dig_mix; |
Takashi Iwai | 09f9970 | 2008-02-04 12:31:13 +0100 | [diff] [blame] | 3084 | int idx; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3085 | |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 3086 | idx = find_empty_mixer_ctl_idx(codec, "IEC958 Capture Switch", 0); |
Takashi Iwai | 1afe206 | 2010-12-23 10:17:52 +0100 | [diff] [blame] | 3087 | if (idx < 0) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 3088 | codec_err(codec, "too many IEC958 inputs\n"); |
Takashi Iwai | 09f9970 | 2008-02-04 12:31:13 +0100 | [diff] [blame] | 3089 | return -EBUSY; |
| 3090 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3091 | for (dig_mix = dig_in_ctls; dig_mix->name; dig_mix++) { |
| 3092 | kctl = snd_ctl_new1(dig_mix, codec); |
Takashi Iwai | c8dcdf8 | 2009-02-06 16:21:20 +0100 | [diff] [blame] | 3093 | if (!kctl) |
| 3094 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3095 | kctl->private_value = nid; |
Jaroslav Kysela | 3911a4c | 2009-11-11 13:43:01 +0100 | [diff] [blame] | 3096 | err = snd_hda_ctl_add(codec, nid, kctl); |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3097 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3098 | return err; |
| 3099 | } |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3100 | codec->spdif_in_enable = |
Andrew Paprocki | 3982d17 | 2007-12-19 12:13:44 +0100 | [diff] [blame] | 3101 | snd_hda_codec_read(codec, nid, 0, |
| 3102 | AC_VERB_GET_DIGI_CONVERT_1, 0) & |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3103 | AC_DIG1_ENABLE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3104 | return 0; |
| 3105 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3106 | EXPORT_SYMBOL_GPL(snd_hda_create_spdif_in_ctls); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3107 | |
Takashi Iwai | 82beb8f | 2007-08-10 17:09:26 +0200 | [diff] [blame] | 3108 | /* |
| 3109 | * command cache |
| 3110 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3111 | |
Takashi Iwai | c370dd6 | 2012-12-13 18:30:04 +0100 | [diff] [blame] | 3112 | /* build a 31bit cache key with the widget id and the command parameter */ |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 3113 | #define build_cmd_cache_key(nid, verb) ((verb << 8) | nid) |
| 3114 | #define get_cmd_cache_nid(key) ((key) & 0xff) |
| 3115 | #define get_cmd_cache_cmd(key) (((key) >> 8) & 0xffff) |
| 3116 | |
| 3117 | /** |
| 3118 | * snd_hda_codec_write_cache - send a single command with caching |
| 3119 | * @codec: the HDA codec |
| 3120 | * @nid: NID to send the command |
Takashi Iwai | e7ecc27 | 2013-06-06 14:00:23 +0200 | [diff] [blame] | 3121 | * @flags: optional bit flags |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 3122 | * @verb: the verb to send |
| 3123 | * @parm: the parameter for the verb |
| 3124 | * |
| 3125 | * Send a single command without waiting for response. |
| 3126 | * |
| 3127 | * Returns 0 if successful, or a negative error code. |
| 3128 | */ |
| 3129 | int snd_hda_codec_write_cache(struct hda_codec *codec, hda_nid_t nid, |
Takashi Iwai | e7ecc27 | 2013-06-06 14:00:23 +0200 | [diff] [blame] | 3130 | int flags, unsigned int verb, unsigned int parm) |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 3131 | { |
Takashi Iwai | c370dd6 | 2012-12-13 18:30:04 +0100 | [diff] [blame] | 3132 | int err; |
Takashi Iwai | aa2936f | 2009-05-26 16:07:57 +0200 | [diff] [blame] | 3133 | struct hda_cache_head *c; |
| 3134 | u32 key; |
Takashi Iwai | de1e37b | 2012-12-20 11:00:21 +0100 | [diff] [blame] | 3135 | unsigned int cache_only; |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 3136 | |
Takashi Iwai | de1e37b | 2012-12-20 11:00:21 +0100 | [diff] [blame] | 3137 | cache_only = codec->cached_write; |
| 3138 | if (!cache_only) { |
Takashi Iwai | e7ecc27 | 2013-06-06 14:00:23 +0200 | [diff] [blame] | 3139 | err = snd_hda_codec_write(codec, nid, flags, verb, parm); |
Takashi Iwai | c370dd6 | 2012-12-13 18:30:04 +0100 | [diff] [blame] | 3140 | if (err < 0) |
| 3141 | return err; |
| 3142 | } |
| 3143 | |
Takashi Iwai | aa2936f | 2009-05-26 16:07:57 +0200 | [diff] [blame] | 3144 | /* parm may contain the verb stuff for get/set amp */ |
| 3145 | verb = verb | (parm >> 8); |
| 3146 | parm &= 0xff; |
| 3147 | key = build_cmd_cache_key(nid, verb); |
Takashi Iwai | d068ebc | 2015-03-02 23:22:59 +0100 | [diff] [blame] | 3148 | mutex_lock(&codec->bus->core.cmd_mutex); |
Takashi Iwai | aa2936f | 2009-05-26 16:07:57 +0200 | [diff] [blame] | 3149 | c = get_alloc_hash(&codec->cmd_cache, key); |
Takashi Iwai | c370dd6 | 2012-12-13 18:30:04 +0100 | [diff] [blame] | 3150 | if (c) { |
Takashi Iwai | aa2936f | 2009-05-26 16:07:57 +0200 | [diff] [blame] | 3151 | c->val = parm; |
Takashi Iwai | de1e37b | 2012-12-20 11:00:21 +0100 | [diff] [blame] | 3152 | c->dirty = cache_only; |
Takashi Iwai | c370dd6 | 2012-12-13 18:30:04 +0100 | [diff] [blame] | 3153 | } |
Takashi Iwai | d068ebc | 2015-03-02 23:22:59 +0100 | [diff] [blame] | 3154 | mutex_unlock(&codec->bus->core.cmd_mutex); |
Takashi Iwai | aa2936f | 2009-05-26 16:07:57 +0200 | [diff] [blame] | 3155 | return 0; |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 3156 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3157 | EXPORT_SYMBOL_GPL(snd_hda_codec_write_cache); |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 3158 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 3159 | /** |
Takashi Iwai | a68d5a5 | 2010-03-30 18:03:44 +0200 | [diff] [blame] | 3160 | * snd_hda_codec_update_cache - check cache and write the cmd only when needed |
| 3161 | * @codec: the HDA codec |
| 3162 | * @nid: NID to send the command |
Takashi Iwai | e7ecc27 | 2013-06-06 14:00:23 +0200 | [diff] [blame] | 3163 | * @flags: optional bit flags |
Takashi Iwai | a68d5a5 | 2010-03-30 18:03:44 +0200 | [diff] [blame] | 3164 | * @verb: the verb to send |
| 3165 | * @parm: the parameter for the verb |
| 3166 | * |
| 3167 | * This function works like snd_hda_codec_write_cache(), but it doesn't send |
| 3168 | * command if the parameter is already identical with the cached value. |
| 3169 | * If not, it sends the command and refreshes the cache. |
| 3170 | * |
| 3171 | * Returns 0 if successful, or a negative error code. |
| 3172 | */ |
| 3173 | int snd_hda_codec_update_cache(struct hda_codec *codec, hda_nid_t nid, |
Takashi Iwai | e7ecc27 | 2013-06-06 14:00:23 +0200 | [diff] [blame] | 3174 | int flags, unsigned int verb, unsigned int parm) |
Takashi Iwai | a68d5a5 | 2010-03-30 18:03:44 +0200 | [diff] [blame] | 3175 | { |
| 3176 | struct hda_cache_head *c; |
| 3177 | u32 key; |
| 3178 | |
| 3179 | /* parm may contain the verb stuff for get/set amp */ |
| 3180 | verb = verb | (parm >> 8); |
| 3181 | parm &= 0xff; |
| 3182 | key = build_cmd_cache_key(nid, verb); |
Takashi Iwai | d068ebc | 2015-03-02 23:22:59 +0100 | [diff] [blame] | 3183 | mutex_lock(&codec->bus->core.cmd_mutex); |
Takashi Iwai | a68d5a5 | 2010-03-30 18:03:44 +0200 | [diff] [blame] | 3184 | c = get_hash(&codec->cmd_cache, key); |
| 3185 | if (c && c->val == parm) { |
Takashi Iwai | d068ebc | 2015-03-02 23:22:59 +0100 | [diff] [blame] | 3186 | mutex_unlock(&codec->bus->core.cmd_mutex); |
Takashi Iwai | a68d5a5 | 2010-03-30 18:03:44 +0200 | [diff] [blame] | 3187 | return 0; |
| 3188 | } |
Takashi Iwai | d068ebc | 2015-03-02 23:22:59 +0100 | [diff] [blame] | 3189 | mutex_unlock(&codec->bus->core.cmd_mutex); |
Takashi Iwai | e7ecc27 | 2013-06-06 14:00:23 +0200 | [diff] [blame] | 3190 | return snd_hda_codec_write_cache(codec, nid, flags, verb, parm); |
Takashi Iwai | a68d5a5 | 2010-03-30 18:03:44 +0200 | [diff] [blame] | 3191 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3192 | EXPORT_SYMBOL_GPL(snd_hda_codec_update_cache); |
Takashi Iwai | a68d5a5 | 2010-03-30 18:03:44 +0200 | [diff] [blame] | 3193 | |
| 3194 | /** |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 3195 | * snd_hda_codec_resume_cache - Resume the all commands from the cache |
| 3196 | * @codec: HD-audio codec |
| 3197 | * |
| 3198 | * Execute all verbs recorded in the command caches to resume. |
| 3199 | */ |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 3200 | void snd_hda_codec_resume_cache(struct hda_codec *codec) |
| 3201 | { |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 3202 | int i; |
| 3203 | |
Takashi Iwai | c370dd6 | 2012-12-13 18:30:04 +0100 | [diff] [blame] | 3204 | mutex_lock(&codec->hash_mutex); |
Takashi Iwai | aa88a35 | 2012-12-20 11:02:00 +0100 | [diff] [blame] | 3205 | codec->cached_write = 0; |
Takashi Iwai | c370dd6 | 2012-12-13 18:30:04 +0100 | [diff] [blame] | 3206 | for (i = 0; i < codec->cmd_cache.buf.used; i++) { |
| 3207 | struct hda_cache_head *buffer; |
| 3208 | u32 key; |
| 3209 | |
| 3210 | buffer = snd_array_elem(&codec->cmd_cache.buf, i); |
| 3211 | key = buffer->key; |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 3212 | if (!key) |
| 3213 | continue; |
Takashi Iwai | c370dd6 | 2012-12-13 18:30:04 +0100 | [diff] [blame] | 3214 | if (!buffer->dirty) |
| 3215 | continue; |
| 3216 | buffer->dirty = 0; |
| 3217 | mutex_unlock(&codec->hash_mutex); |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 3218 | snd_hda_codec_write(codec, get_cmd_cache_nid(key), 0, |
| 3219 | get_cmd_cache_cmd(key), buffer->val); |
Takashi Iwai | c370dd6 | 2012-12-13 18:30:04 +0100 | [diff] [blame] | 3220 | mutex_lock(&codec->hash_mutex); |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 3221 | } |
Takashi Iwai | c370dd6 | 2012-12-13 18:30:04 +0100 | [diff] [blame] | 3222 | mutex_unlock(&codec->hash_mutex); |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 3223 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3224 | EXPORT_SYMBOL_GPL(snd_hda_codec_resume_cache); |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 3225 | |
| 3226 | /** |
| 3227 | * snd_hda_sequence_write_cache - sequence writes with caching |
| 3228 | * @codec: the HDA codec |
| 3229 | * @seq: VERB array to send |
| 3230 | * |
| 3231 | * Send the commands sequentially from the given array. |
| 3232 | * Thte commands are recorded on cache for power-save and resume. |
| 3233 | * The array must be terminated with NID=0. |
| 3234 | */ |
| 3235 | void snd_hda_sequence_write_cache(struct hda_codec *codec, |
| 3236 | const struct hda_verb *seq) |
| 3237 | { |
| 3238 | for (; seq->nid; seq++) |
| 3239 | snd_hda_codec_write_cache(codec, seq->nid, 0, seq->verb, |
| 3240 | seq->param); |
| 3241 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3242 | EXPORT_SYMBOL_GPL(snd_hda_sequence_write_cache); |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 3243 | |
Takashi Iwai | dc870f3 | 2013-01-22 15:24:30 +0100 | [diff] [blame] | 3244 | /** |
| 3245 | * snd_hda_codec_flush_cache - Execute all pending (cached) amps / verbs |
| 3246 | * @codec: HD-audio codec |
| 3247 | */ |
| 3248 | void snd_hda_codec_flush_cache(struct hda_codec *codec) |
| 3249 | { |
Takashi Iwai | eeecd9d | 2015-02-25 15:18:50 +0100 | [diff] [blame^] | 3250 | if (codec->core.regmap) |
| 3251 | regcache_sync(codec->core.regmap); |
Takashi Iwai | dc870f3 | 2013-01-22 15:24:30 +0100 | [diff] [blame] | 3252 | snd_hda_codec_resume_cache(codec); |
| 3253 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3254 | EXPORT_SYMBOL_GPL(snd_hda_codec_flush_cache); |
Takashi Iwai | dc870f3 | 2013-01-22 15:24:30 +0100 | [diff] [blame] | 3255 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 3256 | /** |
| 3257 | * snd_hda_codec_set_power_to_all - Set the power state to all widgets |
| 3258 | * @codec: the HDA codec |
| 3259 | * @fg: function group (not used now) |
| 3260 | * @power_state: the power state to set (AC_PWRST_*) |
| 3261 | * |
| 3262 | * Set the given power state to all widgets that have the power control. |
| 3263 | * If the codec has power_filter set, it evaluates the power state and |
| 3264 | * filter out if it's unchanged as D3. |
| 3265 | */ |
Takashi Iwai | 4d7fbdb | 2011-07-26 10:33:10 +0200 | [diff] [blame] | 3266 | 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] | 3267 | unsigned int power_state) |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 3268 | { |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 3269 | hda_nid_t nid; |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 3270 | |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 3271 | for_each_hda_codec_node(nid, codec) { |
Takashi Iwai | 7eba5c9 | 2007-11-14 14:53:42 +0100 | [diff] [blame] | 3272 | unsigned int wcaps = get_wcaps(codec, nid); |
Takashi Iwai | 9419ab6 | 2013-01-24 17:23:35 +0100 | [diff] [blame] | 3273 | unsigned int state = power_state; |
Takashi Iwai | 4d7fbdb | 2011-07-26 10:33:10 +0200 | [diff] [blame] | 3274 | if (!(wcaps & AC_WCAP_POWER)) |
| 3275 | continue; |
Takashi Iwai | 9419ab6 | 2013-01-24 17:23:35 +0100 | [diff] [blame] | 3276 | if (codec->power_filter) { |
| 3277 | state = codec->power_filter(codec, nid, power_state); |
| 3278 | if (state != power_state && power_state == AC_PWRST_D3) |
Takashi Iwai | 4d7fbdb | 2011-07-26 10:33:10 +0200 | [diff] [blame] | 3279 | continue; |
Takashi Iwai | 1194b5b | 2007-10-10 10:04:26 +0200 | [diff] [blame] | 3280 | } |
Takashi Iwai | 4d7fbdb | 2011-07-26 10:33:10 +0200 | [diff] [blame] | 3281 | snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_POWER_STATE, |
Takashi Iwai | 9419ab6 | 2013-01-24 17:23:35 +0100 | [diff] [blame] | 3282 | state); |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 3283 | } |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 3284 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3285 | EXPORT_SYMBOL_GPL(snd_hda_codec_set_power_to_all); |
Takashi Iwai | 4d7fbdb | 2011-07-26 10:33:10 +0200 | [diff] [blame] | 3286 | |
| 3287 | /* |
Takashi Iwai | 432c641 | 2012-08-28 09:59:20 -0700 | [diff] [blame] | 3288 | * wait until the state is reached, returns the current state |
| 3289 | */ |
| 3290 | static unsigned int hda_sync_power_state(struct hda_codec *codec, |
| 3291 | hda_nid_t fg, |
| 3292 | unsigned int power_state) |
| 3293 | { |
| 3294 | unsigned long end_time = jiffies + msecs_to_jiffies(500); |
| 3295 | unsigned int state, actual_state; |
| 3296 | |
| 3297 | for (;;) { |
| 3298 | state = snd_hda_codec_read(codec, fg, 0, |
| 3299 | AC_VERB_GET_POWER_STATE, 0); |
| 3300 | if (state & AC_PWRST_ERROR) |
| 3301 | break; |
| 3302 | actual_state = (state >> 4) & 0x0f; |
| 3303 | if (actual_state == power_state) |
| 3304 | break; |
| 3305 | if (time_after_eq(jiffies, end_time)) |
| 3306 | break; |
| 3307 | /* wait until the codec reachs to the target state */ |
| 3308 | msleep(1); |
| 3309 | } |
| 3310 | return state; |
| 3311 | } |
| 3312 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 3313 | /** |
| 3314 | * snd_hda_codec_eapd_power_filter - A power filter callback for EAPD |
| 3315 | * @codec: the HDA codec |
| 3316 | * @nid: widget NID |
| 3317 | * @power_state: power state to evalue |
| 3318 | * |
| 3319 | * Don't power down the widget if it controls eapd and EAPD_BTLENABLE is set. |
| 3320 | * This can be used a codec power_filter callback. |
| 3321 | */ |
Takashi Iwai | ba615b8 | 2013-03-13 14:47:21 +0100 | [diff] [blame] | 3322 | unsigned int snd_hda_codec_eapd_power_filter(struct hda_codec *codec, |
| 3323 | hda_nid_t nid, |
| 3324 | unsigned int power_state) |
Takashi Iwai | 9419ab6 | 2013-01-24 17:23:35 +0100 | [diff] [blame] | 3325 | { |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 3326 | if (nid == codec->core.afg || nid == codec->core.mfg) |
Takashi Iwai | dfc6e46 | 2014-01-13 16:09:57 +0100 | [diff] [blame] | 3327 | return power_state; |
Takashi Iwai | 9419ab6 | 2013-01-24 17:23:35 +0100 | [diff] [blame] | 3328 | if (power_state == AC_PWRST_D3 && |
| 3329 | get_wcaps_type(get_wcaps(codec, nid)) == AC_WID_PIN && |
| 3330 | (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD)) { |
| 3331 | int eapd = snd_hda_codec_read(codec, nid, 0, |
| 3332 | AC_VERB_GET_EAPD_BTLENABLE, 0); |
| 3333 | if (eapd & 0x02) |
| 3334 | return AC_PWRST_D0; |
| 3335 | } |
| 3336 | return power_state; |
| 3337 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3338 | EXPORT_SYMBOL_GPL(snd_hda_codec_eapd_power_filter); |
Takashi Iwai | 9419ab6 | 2013-01-24 17:23:35 +0100 | [diff] [blame] | 3339 | |
Takashi Iwai | 432c641 | 2012-08-28 09:59:20 -0700 | [diff] [blame] | 3340 | /* |
Takashi Iwai | 08fa20a | 2012-08-31 07:46:56 -0700 | [diff] [blame] | 3341 | * set power state of the codec, and return the power state |
Takashi Iwai | 4d7fbdb | 2011-07-26 10:33:10 +0200 | [diff] [blame] | 3342 | */ |
Takashi Iwai | d819387 | 2012-08-31 07:54:38 -0700 | [diff] [blame] | 3343 | static unsigned int hda_set_power_state(struct hda_codec *codec, |
Takashi Iwai | 08fa20a | 2012-08-31 07:46:56 -0700 | [diff] [blame] | 3344 | unsigned int power_state) |
Takashi Iwai | 4d7fbdb | 2011-07-26 10:33:10 +0200 | [diff] [blame] | 3345 | { |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 3346 | 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] | 3347 | int count; |
| 3348 | unsigned int state; |
Takashi Iwai | 63e51fd | 2013-06-06 14:20:19 +0200 | [diff] [blame] | 3349 | int flags = 0; |
Wang Xingchao | 09617ce | 2012-06-08 10:26:08 +0800 | [diff] [blame] | 3350 | |
Takashi Iwai | 4d7fbdb | 2011-07-26 10:33:10 +0200 | [diff] [blame] | 3351 | /* this delay seems necessary to avoid click noise at power-down */ |
Wang Xingchao | 0f4ccbb | 2012-06-07 16:51:33 +0800 | [diff] [blame] | 3352 | if (power_state == AC_PWRST_D3) { |
Mengdong Lin | 7f13292 | 2013-11-29 01:48:45 -0500 | [diff] [blame] | 3353 | if (codec->depop_delay < 0) |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 3354 | msleep(codec_has_epss(codec) ? 10 : 100); |
Mengdong Lin | 7f13292 | 2013-11-29 01:48:45 -0500 | [diff] [blame] | 3355 | else if (codec->depop_delay > 0) |
| 3356 | msleep(codec->depop_delay); |
Takashi Iwai | 63e51fd | 2013-06-06 14:20:19 +0200 | [diff] [blame] | 3357 | flags = HDA_RW_NO_RESPONSE_FALLBACK; |
Wang Xingchao | 0f4ccbb | 2012-06-07 16:51:33 +0800 | [diff] [blame] | 3358 | } |
Wang Xingchao | 09617ce | 2012-06-08 10:26:08 +0800 | [diff] [blame] | 3359 | |
| 3360 | /* repeat power states setting at most 10 times*/ |
| 3361 | for (count = 0; count < 10; count++) { |
Takashi Iwai | 432c641 | 2012-08-28 09:59:20 -0700 | [diff] [blame] | 3362 | if (codec->patch_ops.set_power_state) |
| 3363 | codec->patch_ops.set_power_state(codec, fg, |
| 3364 | power_state); |
| 3365 | else { |
Takashi Iwai | dfc6e46 | 2014-01-13 16:09:57 +0100 | [diff] [blame] | 3366 | state = power_state; |
| 3367 | if (codec->power_filter) |
| 3368 | state = codec->power_filter(codec, fg, state); |
| 3369 | if (state == power_state || power_state != AC_PWRST_D3) |
| 3370 | snd_hda_codec_read(codec, fg, flags, |
| 3371 | AC_VERB_SET_POWER_STATE, |
| 3372 | state); |
Takashi Iwai | 9419ab6 | 2013-01-24 17:23:35 +0100 | [diff] [blame] | 3373 | snd_hda_codec_set_power_to_all(codec, fg, power_state); |
Takashi Iwai | 432c641 | 2012-08-28 09:59:20 -0700 | [diff] [blame] | 3374 | } |
| 3375 | state = hda_sync_power_state(codec, fg, power_state); |
Wang Xingchao | 09617ce | 2012-06-08 10:26:08 +0800 | [diff] [blame] | 3376 | if (!(state & AC_PWRST_ERROR)) |
| 3377 | break; |
| 3378 | } |
Mengdong Lin | b8dfc462 | 2012-08-23 17:32:30 +0800 | [diff] [blame] | 3379 | |
Takashi Iwai | 08fa20a | 2012-08-31 07:46:56 -0700 | [diff] [blame] | 3380 | return state; |
Takashi Iwai | 4d7fbdb | 2011-07-26 10:33:10 +0200 | [diff] [blame] | 3381 | } |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 3382 | |
Takashi Iwai | b9c590b | 2013-01-24 17:27:32 +0100 | [diff] [blame] | 3383 | /* sync power states of all widgets; |
| 3384 | * this is called at the end of codec parsing |
| 3385 | */ |
| 3386 | static void sync_power_up_states(struct hda_codec *codec) |
| 3387 | { |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 3388 | hda_nid_t nid; |
Takashi Iwai | b9c590b | 2013-01-24 17:27:32 +0100 | [diff] [blame] | 3389 | |
Takashi Iwai | ba615b8 | 2013-03-13 14:47:21 +0100 | [diff] [blame] | 3390 | /* don't care if no filter is used */ |
| 3391 | if (!codec->power_filter) |
Takashi Iwai | b9c590b | 2013-01-24 17:27:32 +0100 | [diff] [blame] | 3392 | return; |
| 3393 | |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 3394 | for_each_hda_codec_node(nid, codec) { |
Takashi Iwai | b9c590b | 2013-01-24 17:27:32 +0100 | [diff] [blame] | 3395 | unsigned int wcaps = get_wcaps(codec, nid); |
Takashi Iwai | 9040d10 | 2013-01-24 17:47:17 +0100 | [diff] [blame] | 3396 | unsigned int target; |
Takashi Iwai | b9c590b | 2013-01-24 17:27:32 +0100 | [diff] [blame] | 3397 | if (!(wcaps & AC_WCAP_POWER)) |
| 3398 | continue; |
| 3399 | target = codec->power_filter(codec, nid, AC_PWRST_D0); |
| 3400 | if (target == AC_PWRST_D0) |
| 3401 | continue; |
Takashi Iwai | 9040d10 | 2013-01-24 17:47:17 +0100 | [diff] [blame] | 3402 | if (!snd_hda_check_power_state(codec, nid, target)) |
Takashi Iwai | b9c590b | 2013-01-24 17:27:32 +0100 | [diff] [blame] | 3403 | snd_hda_codec_write(codec, nid, 0, |
| 3404 | AC_VERB_SET_POWER_STATE, target); |
| 3405 | } |
| 3406 | } |
| 3407 | |
Takashi Iwai | 648a8d2 | 2014-02-25 10:38:13 +0100 | [diff] [blame] | 3408 | #ifdef CONFIG_SND_HDA_RECONFIG |
Takashi Iwai | 11aeff0 | 2008-07-30 15:01:46 +0200 | [diff] [blame] | 3409 | /* execute additional init verbs */ |
| 3410 | static void hda_exec_init_verbs(struct hda_codec *codec) |
| 3411 | { |
| 3412 | if (codec->init_verbs.list) |
| 3413 | snd_hda_sequence_write(codec, codec->init_verbs.list); |
| 3414 | } |
| 3415 | #else |
| 3416 | static inline void hda_exec_init_verbs(struct hda_codec *codec) {} |
| 3417 | #endif |
| 3418 | |
Takashi Iwai | 2a43952 | 2011-07-26 09:52:50 +0200 | [diff] [blame] | 3419 | #ifdef CONFIG_PM |
Takashi Iwai | cc72da7 | 2015-02-19 16:00:22 +0100 | [diff] [blame] | 3420 | /* update the power on/off account with the current jiffies */ |
| 3421 | static void update_power_acct(struct hda_codec *codec, bool on) |
| 3422 | { |
| 3423 | unsigned long delta = jiffies - codec->power_jiffies; |
| 3424 | |
| 3425 | if (on) |
| 3426 | codec->power_on_acct += delta; |
| 3427 | else |
| 3428 | codec->power_off_acct += delta; |
| 3429 | codec->power_jiffies += delta; |
| 3430 | } |
| 3431 | |
| 3432 | void snd_hda_update_power_acct(struct hda_codec *codec) |
| 3433 | { |
| 3434 | update_power_acct(codec, hda_codec_is_power_on(codec)); |
| 3435 | } |
| 3436 | |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3437 | /* |
| 3438 | * call suspend and power-down; used both from PM and power-save |
Takashi Iwai | 08fa20a | 2012-08-31 07:46:56 -0700 | [diff] [blame] | 3439 | * this function returns the power state in the end |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3440 | */ |
Takashi Iwai | cc72da7 | 2015-02-19 16:00:22 +0100 | [diff] [blame] | 3441 | static unsigned int hda_call_codec_suspend(struct hda_codec *codec) |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3442 | { |
Takashi Iwai | 08fa20a | 2012-08-31 07:46:56 -0700 | [diff] [blame] | 3443 | unsigned int state; |
| 3444 | |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 3445 | atomic_inc(&codec->core.in_pm); |
Takashi Iwai | 989c318 | 2012-11-19 14:14:58 +0100 | [diff] [blame] | 3446 | |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3447 | if (codec->patch_ops.suspend) |
Takashi Iwai | 68cb2b5 | 2012-07-02 15:20:37 +0200 | [diff] [blame] | 3448 | codec->patch_ops.suspend(codec); |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 3449 | hda_cleanup_all_streams(codec); |
Takashi Iwai | d819387 | 2012-08-31 07:54:38 -0700 | [diff] [blame] | 3450 | state = hda_set_power_state(codec, AC_PWRST_D3); |
Takashi Iwai | cc72da7 | 2015-02-19 16:00:22 +0100 | [diff] [blame] | 3451 | update_power_acct(codec, true); |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 3452 | atomic_dec(&codec->core.in_pm); |
Takashi Iwai | 08fa20a | 2012-08-31 07:46:56 -0700 | [diff] [blame] | 3453 | return state; |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3454 | } |
| 3455 | |
Takashi Iwai | c370dd6 | 2012-12-13 18:30:04 +0100 | [diff] [blame] | 3456 | /* mark all entries of cmd and amp caches dirty */ |
| 3457 | static void hda_mark_cmd_cache_dirty(struct hda_codec *codec) |
| 3458 | { |
| 3459 | int i; |
| 3460 | for (i = 0; i < codec->cmd_cache.buf.used; i++) { |
| 3461 | struct hda_cache_head *cmd; |
| 3462 | cmd = snd_array_elem(&codec->cmd_cache.buf, i); |
| 3463 | cmd->dirty = 1; |
| 3464 | } |
| 3465 | for (i = 0; i < codec->amp_cache.buf.used; i++) { |
| 3466 | struct hda_amp_info *amp; |
David Henningsson | f038fca | 2013-01-15 15:27:19 +0100 | [diff] [blame] | 3467 | amp = snd_array_elem(&codec->amp_cache.buf, i); |
Takashi Iwai | c370dd6 | 2012-12-13 18:30:04 +0100 | [diff] [blame] | 3468 | amp->head.dirty = 1; |
| 3469 | } |
| 3470 | } |
| 3471 | |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3472 | /* |
| 3473 | * kick up codec; used both from PM and power-save |
| 3474 | */ |
| 3475 | static void hda_call_codec_resume(struct hda_codec *codec) |
| 3476 | { |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 3477 | atomic_inc(&codec->core.in_pm); |
Takashi Iwai | 989c318 | 2012-11-19 14:14:58 +0100 | [diff] [blame] | 3478 | |
Takashi Iwai | eeecd9d | 2015-02-25 15:18:50 +0100 | [diff] [blame^] | 3479 | if (codec->core.regmap) |
| 3480 | regcache_mark_dirty(codec->core.regmap); |
| 3481 | |
Takashi Iwai | c370dd6 | 2012-12-13 18:30:04 +0100 | [diff] [blame] | 3482 | hda_mark_cmd_cache_dirty(codec); |
| 3483 | |
Takashi Iwai | cc72da7 | 2015-02-19 16:00:22 +0100 | [diff] [blame] | 3484 | codec->power_jiffies = jiffies; |
Takashi Iwai | cc72da7 | 2015-02-19 16:00:22 +0100 | [diff] [blame] | 3485 | |
Takashi Iwai | d819387 | 2012-08-31 07:54:38 -0700 | [diff] [blame] | 3486 | hda_set_power_state(codec, AC_PWRST_D0); |
Takashi Iwai | ac0547d | 2010-07-05 16:50:13 +0200 | [diff] [blame] | 3487 | restore_shutup_pins(codec); |
Takashi Iwai | 11aeff0 | 2008-07-30 15:01:46 +0200 | [diff] [blame] | 3488 | hda_exec_init_verbs(codec); |
Takashi Iwai | 31614bb | 2013-01-23 15:58:40 +0100 | [diff] [blame] | 3489 | snd_hda_jack_set_dirty_all(codec); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3490 | if (codec->patch_ops.resume) |
| 3491 | codec->patch_ops.resume(codec); |
| 3492 | else { |
Takashi Iwai | 9d99f31 | 2007-08-14 15:15:52 +0200 | [diff] [blame] | 3493 | if (codec->patch_ops.init) |
| 3494 | codec->patch_ops.init(codec); |
Takashi Iwai | eeecd9d | 2015-02-25 15:18:50 +0100 | [diff] [blame^] | 3495 | if (codec->core.regmap) |
| 3496 | regcache_sync(codec->core.regmap); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3497 | snd_hda_codec_resume_cache(codec); |
| 3498 | } |
David Henningsson | 26a6cb6 | 2012-10-09 15:04:21 +0200 | [diff] [blame] | 3499 | |
| 3500 | if (codec->jackpoll_interval) |
| 3501 | hda_jackpoll_work(&codec->jackpoll_work.work); |
Takashi Iwai | 31614bb | 2013-01-23 15:58:40 +0100 | [diff] [blame] | 3502 | else |
David Henningsson | 26a6cb6 | 2012-10-09 15:04:21 +0200 | [diff] [blame] | 3503 | snd_hda_jack_report_sync(codec); |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 3504 | atomic_dec(&codec->core.in_pm); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3505 | } |
Takashi Iwai | 59ed1ea | 2015-02-18 15:39:59 +0100 | [diff] [blame] | 3506 | |
Takashi Iwai | cc72da7 | 2015-02-19 16:00:22 +0100 | [diff] [blame] | 3507 | static int hda_codec_runtime_suspend(struct device *dev) |
Takashi Iwai | 59ed1ea | 2015-02-18 15:39:59 +0100 | [diff] [blame] | 3508 | { |
| 3509 | struct hda_codec *codec = dev_to_hda_codec(dev); |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame] | 3510 | struct hda_pcm *pcm; |
Takashi Iwai | cc72da7 | 2015-02-19 16:00:22 +0100 | [diff] [blame] | 3511 | unsigned int state; |
Takashi Iwai | 59ed1ea | 2015-02-18 15:39:59 +0100 | [diff] [blame] | 3512 | |
| 3513 | cancel_delayed_work_sync(&codec->jackpoll_work); |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame] | 3514 | list_for_each_entry(pcm, &codec->pcm_list_head, list) |
| 3515 | snd_pcm_suspend_all(pcm->pcm); |
Takashi Iwai | cc72da7 | 2015-02-19 16:00:22 +0100 | [diff] [blame] | 3516 | state = hda_call_codec_suspend(codec); |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 3517 | if (codec_has_clkstop(codec) && codec_has_epss(codec) && |
| 3518 | (state & AC_PWRST_CLK_STOP_OK)) |
| 3519 | snd_hdac_codec_link_down(&codec->core); |
Takashi Iwai | 59ed1ea | 2015-02-18 15:39:59 +0100 | [diff] [blame] | 3520 | return 0; |
| 3521 | } |
| 3522 | |
Takashi Iwai | cc72da7 | 2015-02-19 16:00:22 +0100 | [diff] [blame] | 3523 | static int hda_codec_runtime_resume(struct device *dev) |
Takashi Iwai | 59ed1ea | 2015-02-18 15:39:59 +0100 | [diff] [blame] | 3524 | { |
Takashi Iwai | 55ed9cd | 2015-02-19 17:35:32 +0100 | [diff] [blame] | 3525 | struct hda_codec *codec = dev_to_hda_codec(dev); |
| 3526 | |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 3527 | snd_hdac_codec_link_up(&codec->core); |
Takashi Iwai | 55ed9cd | 2015-02-19 17:35:32 +0100 | [diff] [blame] | 3528 | hda_call_codec_resume(codec); |
Takashi Iwai | cc72da7 | 2015-02-19 16:00:22 +0100 | [diff] [blame] | 3529 | pm_runtime_mark_last_busy(dev); |
Takashi Iwai | 59ed1ea | 2015-02-18 15:39:59 +0100 | [diff] [blame] | 3530 | return 0; |
| 3531 | } |
Takashi Iwai | 2a43952 | 2011-07-26 09:52:50 +0200 | [diff] [blame] | 3532 | #endif /* CONFIG_PM */ |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3533 | |
Takashi Iwai | 59ed1ea | 2015-02-18 15:39:59 +0100 | [diff] [blame] | 3534 | /* referred in hda_bind.c */ |
| 3535 | const struct dev_pm_ops hda_codec_driver_pm = { |
Takashi Iwai | cc72da7 | 2015-02-19 16:00:22 +0100 | [diff] [blame] | 3536 | SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend, |
| 3537 | pm_runtime_force_resume) |
| 3538 | SET_RUNTIME_PM_OPS(hda_codec_runtime_suspend, hda_codec_runtime_resume, |
| 3539 | NULL) |
Takashi Iwai | 59ed1ea | 2015-02-18 15:39:59 +0100 | [diff] [blame] | 3540 | }; |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 3541 | |
Takashi Iwai | 9c9a517 | 2012-07-31 11:35:35 +0200 | [diff] [blame] | 3542 | /* |
| 3543 | * add standard channel maps if not specified |
| 3544 | */ |
| 3545 | static int add_std_chmaps(struct hda_codec *codec) |
| 3546 | { |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame] | 3547 | struct hda_pcm *pcm; |
| 3548 | int str, err; |
Takashi Iwai | 9c9a517 | 2012-07-31 11:35:35 +0200 | [diff] [blame] | 3549 | |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame] | 3550 | list_for_each_entry(pcm, &codec->pcm_list_head, list) { |
Takashi Iwai | 9c9a517 | 2012-07-31 11:35:35 +0200 | [diff] [blame] | 3551 | for (str = 0; str < 2; str++) { |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame] | 3552 | struct hda_pcm_stream *hinfo = &pcm->stream[str]; |
Takashi Iwai | 9c9a517 | 2012-07-31 11:35:35 +0200 | [diff] [blame] | 3553 | struct snd_pcm_chmap *chmap; |
Takashi Iwai | ee81abb | 2012-11-08 17:12:10 +0100 | [diff] [blame] | 3554 | const struct snd_pcm_chmap_elem *elem; |
Takashi Iwai | 9c9a517 | 2012-07-31 11:35:35 +0200 | [diff] [blame] | 3555 | |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame] | 3556 | if (pcm->own_chmap) |
Takashi Iwai | 9c9a517 | 2012-07-31 11:35:35 +0200 | [diff] [blame] | 3557 | continue; |
| 3558 | if (!pcm || !hinfo->substreams) |
| 3559 | continue; |
Takashi Iwai | ee81abb | 2012-11-08 17:12:10 +0100 | [diff] [blame] | 3560 | elem = hinfo->chmap ? hinfo->chmap : snd_pcm_std_chmaps; |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame] | 3561 | err = snd_pcm_add_chmap_ctls(pcm->pcm, str, elem, |
Takashi Iwai | 9c9a517 | 2012-07-31 11:35:35 +0200 | [diff] [blame] | 3562 | hinfo->channels_max, |
| 3563 | 0, &chmap); |
| 3564 | if (err < 0) |
| 3565 | return err; |
| 3566 | chmap->channel_mask = SND_PCM_CHMAP_MASK_2468; |
| 3567 | } |
| 3568 | } |
| 3569 | return 0; |
| 3570 | } |
| 3571 | |
Takashi Iwai | ee81abb | 2012-11-08 17:12:10 +0100 | [diff] [blame] | 3572 | /* default channel maps for 2.1 speakers; |
| 3573 | * since HD-audio supports only stereo, odd number channels are omitted |
| 3574 | */ |
| 3575 | const struct snd_pcm_chmap_elem snd_pcm_2_1_chmaps[] = { |
| 3576 | { .channels = 2, |
| 3577 | .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR } }, |
| 3578 | { .channels = 4, |
| 3579 | .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR, |
| 3580 | SNDRV_CHMAP_LFE, SNDRV_CHMAP_LFE } }, |
| 3581 | { } |
| 3582 | }; |
| 3583 | EXPORT_SYMBOL_GPL(snd_pcm_2_1_chmaps); |
| 3584 | |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 3585 | int snd_hda_codec_build_controls(struct hda_codec *codec) |
| 3586 | { |
| 3587 | int err = 0; |
Takashi Iwai | 11aeff0 | 2008-07-30 15:01:46 +0200 | [diff] [blame] | 3588 | hda_exec_init_verbs(codec); |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 3589 | /* continue to initialize... */ |
| 3590 | if (codec->patch_ops.init) |
| 3591 | err = codec->patch_ops.init(codec); |
| 3592 | if (!err && codec->patch_ops.build_controls) |
| 3593 | err = codec->patch_ops.build_controls(codec); |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 3594 | if (err < 0) |
| 3595 | return err; |
Takashi Iwai | 9c9a517 | 2012-07-31 11:35:35 +0200 | [diff] [blame] | 3596 | |
| 3597 | /* we create chmaps here instead of build_pcms */ |
| 3598 | err = add_std_chmaps(codec); |
| 3599 | if (err < 0) |
| 3600 | return err; |
| 3601 | |
David Henningsson | 26a6cb6 | 2012-10-09 15:04:21 +0200 | [diff] [blame] | 3602 | if (codec->jackpoll_interval) |
| 3603 | hda_jackpoll_work(&codec->jackpoll_work.work); |
| 3604 | else |
| 3605 | snd_hda_jack_report_sync(codec); /* call at the last init point */ |
Takashi Iwai | b9c590b | 2013-01-24 17:27:32 +0100 | [diff] [blame] | 3606 | sync_power_up_states(codec); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3607 | return 0; |
| 3608 | } |
| 3609 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3610 | /* |
| 3611 | * stream formats |
| 3612 | */ |
Takashi Iwai | befdf31 | 2005-08-22 13:57:55 +0200 | [diff] [blame] | 3613 | struct hda_rate_tbl { |
| 3614 | unsigned int hz; |
| 3615 | unsigned int alsa_bits; |
| 3616 | unsigned int hda_fmt; |
| 3617 | }; |
| 3618 | |
Takashi Iwai | 92f10b3 | 2010-08-03 14:21:00 +0200 | [diff] [blame] | 3619 | /* rate = base * mult / div */ |
| 3620 | #define HDA_RATE(base, mult, div) \ |
| 3621 | (AC_FMT_BASE_##base##K | (((mult) - 1) << AC_FMT_MULT_SHIFT) | \ |
| 3622 | (((div) - 1) << AC_FMT_DIV_SHIFT)) |
| 3623 | |
Takashi Iwai | befdf31 | 2005-08-22 13:57:55 +0200 | [diff] [blame] | 3624 | static struct hda_rate_tbl rate_bits[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3625 | /* rate in Hz, ALSA rate bitmask, HDA format value */ |
Nicolas Graziano | 9d8f53f | 2005-08-22 13:47:16 +0200 | [diff] [blame] | 3626 | |
| 3627 | /* autodetected value used in snd_hda_query_supported_pcm */ |
Takashi Iwai | 92f10b3 | 2010-08-03 14:21:00 +0200 | [diff] [blame] | 3628 | { 8000, SNDRV_PCM_RATE_8000, HDA_RATE(48, 1, 6) }, |
| 3629 | { 11025, SNDRV_PCM_RATE_11025, HDA_RATE(44, 1, 4) }, |
| 3630 | { 16000, SNDRV_PCM_RATE_16000, HDA_RATE(48, 1, 3) }, |
| 3631 | { 22050, SNDRV_PCM_RATE_22050, HDA_RATE(44, 1, 2) }, |
| 3632 | { 32000, SNDRV_PCM_RATE_32000, HDA_RATE(48, 2, 3) }, |
| 3633 | { 44100, SNDRV_PCM_RATE_44100, HDA_RATE(44, 1, 1) }, |
| 3634 | { 48000, SNDRV_PCM_RATE_48000, HDA_RATE(48, 1, 1) }, |
| 3635 | { 88200, SNDRV_PCM_RATE_88200, HDA_RATE(44, 2, 1) }, |
| 3636 | { 96000, SNDRV_PCM_RATE_96000, HDA_RATE(48, 2, 1) }, |
| 3637 | { 176400, SNDRV_PCM_RATE_176400, HDA_RATE(44, 4, 1) }, |
| 3638 | { 192000, SNDRV_PCM_RATE_192000, HDA_RATE(48, 4, 1) }, |
Takashi Iwai | a961f9f | 2007-04-12 13:08:09 +0200 | [diff] [blame] | 3639 | #define AC_PAR_PCM_RATE_BITS 11 |
| 3640 | /* up to bits 10, 384kHZ isn't supported properly */ |
| 3641 | |
| 3642 | /* not autodetected value */ |
Takashi Iwai | 92f10b3 | 2010-08-03 14:21:00 +0200 | [diff] [blame] | 3643 | { 9600, SNDRV_PCM_RATE_KNOT, HDA_RATE(48, 1, 5) }, |
Nicolas Graziano | 9d8f53f | 2005-08-22 13:47:16 +0200 | [diff] [blame] | 3644 | |
Takashi Iwai | befdf31 | 2005-08-22 13:57:55 +0200 | [diff] [blame] | 3645 | { 0 } /* terminator */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3646 | }; |
| 3647 | |
| 3648 | /** |
| 3649 | * snd_hda_calc_stream_format - calculate format bitset |
Takashi Iwai | 6194b99 | 2014-06-06 18:12:16 +0200 | [diff] [blame] | 3650 | * @codec: HD-audio codec |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3651 | * @rate: the sample rate |
| 3652 | * @channels: the number of channels |
| 3653 | * @format: the PCM format (SNDRV_PCM_FORMAT_XXX) |
| 3654 | * @maxbps: the max. bps |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 3655 | * @spdif_ctls: HD-audio SPDIF status bits (0 if irrelevant) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3656 | * |
| 3657 | * Calculate the format bitset from the given rate, channels and th PCM format. |
| 3658 | * |
| 3659 | * Return zero if invalid. |
| 3660 | */ |
Takashi Iwai | 6194b99 | 2014-06-06 18:12:16 +0200 | [diff] [blame] | 3661 | unsigned int snd_hda_calc_stream_format(struct hda_codec *codec, |
| 3662 | unsigned int rate, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3663 | unsigned int channels, |
| 3664 | unsigned int format, |
Anssi Hannula | 32c168c | 2010-08-03 13:28:57 +0300 | [diff] [blame] | 3665 | unsigned int maxbps, |
| 3666 | unsigned short spdif_ctls) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3667 | { |
| 3668 | int i; |
| 3669 | unsigned int val = 0; |
| 3670 | |
Takashi Iwai | befdf31 | 2005-08-22 13:57:55 +0200 | [diff] [blame] | 3671 | for (i = 0; rate_bits[i].hz; i++) |
| 3672 | if (rate_bits[i].hz == rate) { |
| 3673 | val = rate_bits[i].hda_fmt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3674 | break; |
| 3675 | } |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3676 | if (!rate_bits[i].hz) { |
Takashi Iwai | 6194b99 | 2014-06-06 18:12:16 +0200 | [diff] [blame] | 3677 | codec_dbg(codec, "invalid rate %d\n", rate); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3678 | return 0; |
| 3679 | } |
| 3680 | |
| 3681 | if (channels == 0 || channels > 8) { |
Takashi Iwai | 6194b99 | 2014-06-06 18:12:16 +0200 | [diff] [blame] | 3682 | codec_dbg(codec, "invalid channels %d\n", channels); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3683 | return 0; |
| 3684 | } |
| 3685 | val |= channels - 1; |
| 3686 | |
| 3687 | switch (snd_pcm_format_width(format)) { |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 3688 | case 8: |
Takashi Iwai | 92f10b3 | 2010-08-03 14:21:00 +0200 | [diff] [blame] | 3689 | val |= AC_FMT_BITS_8; |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 3690 | break; |
| 3691 | case 16: |
Takashi Iwai | 92f10b3 | 2010-08-03 14:21:00 +0200 | [diff] [blame] | 3692 | val |= AC_FMT_BITS_16; |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 3693 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3694 | case 20: |
| 3695 | case 24: |
| 3696 | case 32: |
Takashi Iwai | b0bb3aa | 2009-07-03 23:25:37 +0200 | [diff] [blame] | 3697 | if (maxbps >= 32 || format == SNDRV_PCM_FORMAT_FLOAT_LE) |
Takashi Iwai | 92f10b3 | 2010-08-03 14:21:00 +0200 | [diff] [blame] | 3698 | val |= AC_FMT_BITS_32; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3699 | else if (maxbps >= 24) |
Takashi Iwai | 92f10b3 | 2010-08-03 14:21:00 +0200 | [diff] [blame] | 3700 | val |= AC_FMT_BITS_24; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3701 | else |
Takashi Iwai | 92f10b3 | 2010-08-03 14:21:00 +0200 | [diff] [blame] | 3702 | val |= AC_FMT_BITS_20; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3703 | break; |
| 3704 | default: |
Takashi Iwai | 6194b99 | 2014-06-06 18:12:16 +0200 | [diff] [blame] | 3705 | codec_dbg(codec, "invalid format width %d\n", |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 3706 | snd_pcm_format_width(format)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3707 | return 0; |
| 3708 | } |
| 3709 | |
Anssi Hannula | 32c168c | 2010-08-03 13:28:57 +0300 | [diff] [blame] | 3710 | if (spdif_ctls & AC_DIG1_NONAUDIO) |
Takashi Iwai | 92f10b3 | 2010-08-03 14:21:00 +0200 | [diff] [blame] | 3711 | val |= AC_FMT_TYPE_NON_PCM; |
Anssi Hannula | 32c168c | 2010-08-03 13:28:57 +0300 | [diff] [blame] | 3712 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3713 | return val; |
| 3714 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3715 | EXPORT_SYMBOL_GPL(snd_hda_calc_stream_format); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3716 | |
Takashi Iwai | c3b6bcc | 2012-05-10 16:11:15 +0200 | [diff] [blame] | 3717 | static unsigned int get_pcm_param(struct hda_codec *codec, hda_nid_t nid, |
| 3718 | int dir) |
Takashi Iwai | 92c7c8a | 2009-03-24 07:32:14 +0100 | [diff] [blame] | 3719 | { |
| 3720 | unsigned int val = 0; |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 3721 | if (nid != codec->core.afg && |
Takashi Iwai | 92c7c8a | 2009-03-24 07:32:14 +0100 | [diff] [blame] | 3722 | (get_wcaps(codec, nid) & AC_WCAP_FORMAT_OVRD)) |
| 3723 | val = snd_hda_param_read(codec, nid, AC_PAR_PCM); |
| 3724 | if (!val || val == -1) |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 3725 | val = snd_hda_param_read(codec, codec->core.afg, AC_PAR_PCM); |
Takashi Iwai | 92c7c8a | 2009-03-24 07:32:14 +0100 | [diff] [blame] | 3726 | if (!val || val == -1) |
| 3727 | return 0; |
| 3728 | return val; |
| 3729 | } |
| 3730 | |
| 3731 | static unsigned int query_pcm_param(struct hda_codec *codec, hda_nid_t nid) |
| 3732 | { |
Takashi Iwai | c3b6bcc | 2012-05-10 16:11:15 +0200 | [diff] [blame] | 3733 | return query_caps_hash(codec, nid, 0, HDA_HASH_PARPCM_KEY(nid), |
Takashi Iwai | 92c7c8a | 2009-03-24 07:32:14 +0100 | [diff] [blame] | 3734 | get_pcm_param); |
| 3735 | } |
| 3736 | |
Takashi Iwai | c3b6bcc | 2012-05-10 16:11:15 +0200 | [diff] [blame] | 3737 | static unsigned int get_stream_param(struct hda_codec *codec, hda_nid_t nid, |
| 3738 | int dir) |
Takashi Iwai | 92c7c8a | 2009-03-24 07:32:14 +0100 | [diff] [blame] | 3739 | { |
| 3740 | unsigned int streams = snd_hda_param_read(codec, nid, AC_PAR_STREAM); |
| 3741 | if (!streams || streams == -1) |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 3742 | streams = snd_hda_param_read(codec, codec->core.afg, AC_PAR_STREAM); |
Takashi Iwai | 92c7c8a | 2009-03-24 07:32:14 +0100 | [diff] [blame] | 3743 | if (!streams || streams == -1) |
| 3744 | return 0; |
| 3745 | return streams; |
| 3746 | } |
| 3747 | |
| 3748 | static unsigned int query_stream_param(struct hda_codec *codec, hda_nid_t nid) |
| 3749 | { |
Takashi Iwai | c3b6bcc | 2012-05-10 16:11:15 +0200 | [diff] [blame] | 3750 | return query_caps_hash(codec, nid, 0, HDA_HASH_PARSTR_KEY(nid), |
Takashi Iwai | 92c7c8a | 2009-03-24 07:32:14 +0100 | [diff] [blame] | 3751 | get_stream_param); |
| 3752 | } |
| 3753 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3754 | /** |
| 3755 | * snd_hda_query_supported_pcm - query the supported PCM rates and formats |
| 3756 | * @codec: the HDA codec |
| 3757 | * @nid: NID to query |
| 3758 | * @ratesp: the pointer to store the detected rate bitflags |
| 3759 | * @formatsp: the pointer to store the detected formats |
| 3760 | * @bpsp: the pointer to store the detected format widths |
| 3761 | * |
| 3762 | * Queries the supported PCM rates and formats. The NULL @ratesp, @formatsp |
| 3763 | * or @bsps argument is ignored. |
| 3764 | * |
| 3765 | * Returns 0 if successful, otherwise a negative error code. |
| 3766 | */ |
Stephen Warren | 384a48d | 2011-06-01 11:14:21 -0600 | [diff] [blame] | 3767 | int snd_hda_query_supported_pcm(struct hda_codec *codec, hda_nid_t nid, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3768 | u32 *ratesp, u64 *formatsp, unsigned int *bpsp) |
| 3769 | { |
Jaroslav Kysela | ee50471 | 2009-03-17 14:30:31 +0100 | [diff] [blame] | 3770 | unsigned int i, val, wcaps; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3771 | |
Jaroslav Kysela | ee50471 | 2009-03-17 14:30:31 +0100 | [diff] [blame] | 3772 | wcaps = get_wcaps(codec, nid); |
Takashi Iwai | 92c7c8a | 2009-03-24 07:32:14 +0100 | [diff] [blame] | 3773 | val = query_pcm_param(codec, nid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3774 | |
| 3775 | if (ratesp) { |
| 3776 | u32 rates = 0; |
Takashi Iwai | a961f9f | 2007-04-12 13:08:09 +0200 | [diff] [blame] | 3777 | for (i = 0; i < AC_PAR_PCM_RATE_BITS; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3778 | if (val & (1 << i)) |
Takashi Iwai | befdf31 | 2005-08-22 13:57:55 +0200 | [diff] [blame] | 3779 | rates |= rate_bits[i].alsa_bits; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3780 | } |
Jaroslav Kysela | ee50471 | 2009-03-17 14:30:31 +0100 | [diff] [blame] | 3781 | if (rates == 0) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 3782 | codec_err(codec, |
| 3783 | "rates == 0 (nid=0x%x, val=0x%x, ovrd=%i)\n", |
| 3784 | nid, val, |
| 3785 | (wcaps & AC_WCAP_FORMAT_OVRD) ? 1 : 0); |
Jaroslav Kysela | ee50471 | 2009-03-17 14:30:31 +0100 | [diff] [blame] | 3786 | return -EIO; |
| 3787 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3788 | *ratesp = rates; |
| 3789 | } |
| 3790 | |
| 3791 | if (formatsp || bpsp) { |
| 3792 | u64 formats = 0; |
Jaroslav Kysela | ee50471 | 2009-03-17 14:30:31 +0100 | [diff] [blame] | 3793 | unsigned int streams, bps; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3794 | |
Takashi Iwai | 92c7c8a | 2009-03-24 07:32:14 +0100 | [diff] [blame] | 3795 | streams = query_stream_param(codec, nid); |
| 3796 | if (!streams) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3797 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3798 | |
| 3799 | bps = 0; |
| 3800 | if (streams & AC_SUPFMT_PCM) { |
| 3801 | if (val & AC_SUPPCM_BITS_8) { |
| 3802 | formats |= SNDRV_PCM_FMTBIT_U8; |
| 3803 | bps = 8; |
| 3804 | } |
| 3805 | if (val & AC_SUPPCM_BITS_16) { |
| 3806 | formats |= SNDRV_PCM_FMTBIT_S16_LE; |
| 3807 | bps = 16; |
| 3808 | } |
| 3809 | if (wcaps & AC_WCAP_DIGITAL) { |
| 3810 | if (val & AC_SUPPCM_BITS_32) |
| 3811 | formats |= SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE; |
| 3812 | if (val & (AC_SUPPCM_BITS_20|AC_SUPPCM_BITS_24)) |
| 3813 | formats |= SNDRV_PCM_FMTBIT_S32_LE; |
| 3814 | if (val & AC_SUPPCM_BITS_24) |
| 3815 | bps = 24; |
| 3816 | else if (val & AC_SUPPCM_BITS_20) |
| 3817 | bps = 20; |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3818 | } else if (val & (AC_SUPPCM_BITS_20|AC_SUPPCM_BITS_24| |
| 3819 | AC_SUPPCM_BITS_32)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3820 | formats |= SNDRV_PCM_FMTBIT_S32_LE; |
| 3821 | if (val & AC_SUPPCM_BITS_32) |
| 3822 | bps = 32; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3823 | else if (val & AC_SUPPCM_BITS_24) |
| 3824 | bps = 24; |
Nicolas Graziano | 33ef7651 | 2006-09-19 14:23:14 +0200 | [diff] [blame] | 3825 | else if (val & AC_SUPPCM_BITS_20) |
| 3826 | bps = 20; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3827 | } |
| 3828 | } |
Takashi Iwai | 8c7dd89 | 2012-05-12 09:38:05 +0200 | [diff] [blame] | 3829 | #if 0 /* FIXME: CS4206 doesn't work, which is the only codec supporting float */ |
Takashi Iwai | b5025c5 | 2009-07-01 18:05:27 +0200 | [diff] [blame] | 3830 | if (streams & AC_SUPFMT_FLOAT32) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3831 | formats |= SNDRV_PCM_FMTBIT_FLOAT_LE; |
Takashi Iwai | b0bb3aa | 2009-07-03 23:25:37 +0200 | [diff] [blame] | 3832 | if (!bps) |
| 3833 | bps = 32; |
Takashi Iwai | b5025c5 | 2009-07-01 18:05:27 +0200 | [diff] [blame] | 3834 | } |
Takashi Iwai | 8c7dd89 | 2012-05-12 09:38:05 +0200 | [diff] [blame] | 3835 | #endif |
Takashi Iwai | b5025c5 | 2009-07-01 18:05:27 +0200 | [diff] [blame] | 3836 | if (streams == AC_SUPFMT_AC3) { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3837 | /* should be exclusive */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3838 | /* temporary hack: we have still no proper support |
| 3839 | * for the direct AC3 stream... |
| 3840 | */ |
| 3841 | formats |= SNDRV_PCM_FMTBIT_U8; |
| 3842 | bps = 8; |
| 3843 | } |
Jaroslav Kysela | ee50471 | 2009-03-17 14:30:31 +0100 | [diff] [blame] | 3844 | if (formats == 0) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 3845 | codec_err(codec, |
| 3846 | "formats == 0 (nid=0x%x, val=0x%x, ovrd=%i, streams=0x%x)\n", |
| 3847 | nid, val, |
| 3848 | (wcaps & AC_WCAP_FORMAT_OVRD) ? 1 : 0, |
| 3849 | streams); |
Jaroslav Kysela | ee50471 | 2009-03-17 14:30:31 +0100 | [diff] [blame] | 3850 | return -EIO; |
| 3851 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3852 | if (formatsp) |
| 3853 | *formatsp = formats; |
| 3854 | if (bpsp) |
| 3855 | *bpsp = bps; |
| 3856 | } |
| 3857 | |
| 3858 | return 0; |
| 3859 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3860 | EXPORT_SYMBOL_GPL(snd_hda_query_supported_pcm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3861 | |
| 3862 | /** |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 3863 | * snd_hda_is_supported_format - Check the validity of the format |
| 3864 | * @codec: HD-audio codec |
| 3865 | * @nid: NID to check |
| 3866 | * @format: the HD-audio format value to check |
| 3867 | * |
| 3868 | * Check whether the given node supports the format value. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3869 | * |
| 3870 | * Returns 1 if supported, 0 if not. |
| 3871 | */ |
| 3872 | int snd_hda_is_supported_format(struct hda_codec *codec, hda_nid_t nid, |
| 3873 | unsigned int format) |
| 3874 | { |
| 3875 | int i; |
| 3876 | unsigned int val = 0, rate, stream; |
| 3877 | |
Takashi Iwai | 92c7c8a | 2009-03-24 07:32:14 +0100 | [diff] [blame] | 3878 | val = query_pcm_param(codec, nid); |
| 3879 | if (!val) |
| 3880 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3881 | |
| 3882 | rate = format & 0xff00; |
Takashi Iwai | a961f9f | 2007-04-12 13:08:09 +0200 | [diff] [blame] | 3883 | for (i = 0; i < AC_PAR_PCM_RATE_BITS; i++) |
Takashi Iwai | befdf31 | 2005-08-22 13:57:55 +0200 | [diff] [blame] | 3884 | if (rate_bits[i].hda_fmt == rate) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3885 | if (val & (1 << i)) |
| 3886 | break; |
| 3887 | return 0; |
| 3888 | } |
Takashi Iwai | a961f9f | 2007-04-12 13:08:09 +0200 | [diff] [blame] | 3889 | if (i >= AC_PAR_PCM_RATE_BITS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3890 | return 0; |
| 3891 | |
Takashi Iwai | 92c7c8a | 2009-03-24 07:32:14 +0100 | [diff] [blame] | 3892 | stream = query_stream_param(codec, nid); |
| 3893 | if (!stream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3894 | return 0; |
| 3895 | |
| 3896 | if (stream & AC_SUPFMT_PCM) { |
| 3897 | switch (format & 0xf0) { |
| 3898 | case 0x00: |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3899 | if (!(val & AC_SUPPCM_BITS_8)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3900 | return 0; |
| 3901 | break; |
| 3902 | case 0x10: |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3903 | if (!(val & AC_SUPPCM_BITS_16)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3904 | return 0; |
| 3905 | break; |
| 3906 | case 0x20: |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3907 | if (!(val & AC_SUPPCM_BITS_20)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3908 | return 0; |
| 3909 | break; |
| 3910 | case 0x30: |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3911 | if (!(val & AC_SUPPCM_BITS_24)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3912 | return 0; |
| 3913 | break; |
| 3914 | case 0x40: |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3915 | if (!(val & AC_SUPPCM_BITS_32)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3916 | return 0; |
| 3917 | break; |
| 3918 | default: |
| 3919 | return 0; |
| 3920 | } |
| 3921 | } else { |
| 3922 | /* FIXME: check for float32 and AC3? */ |
| 3923 | } |
| 3924 | |
| 3925 | return 1; |
| 3926 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3927 | EXPORT_SYMBOL_GPL(snd_hda_is_supported_format); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3928 | |
| 3929 | /* |
| 3930 | * PCM stuff |
| 3931 | */ |
| 3932 | static int hda_pcm_default_open_close(struct hda_pcm_stream *hinfo, |
| 3933 | struct hda_codec *codec, |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 3934 | struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3935 | { |
| 3936 | return 0; |
| 3937 | } |
| 3938 | |
| 3939 | static int hda_pcm_default_prepare(struct hda_pcm_stream *hinfo, |
| 3940 | struct hda_codec *codec, |
| 3941 | unsigned int stream_tag, |
| 3942 | unsigned int format, |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 3943 | struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3944 | { |
| 3945 | snd_hda_codec_setup_stream(codec, hinfo->nid, stream_tag, 0, format); |
| 3946 | return 0; |
| 3947 | } |
| 3948 | |
| 3949 | static int hda_pcm_default_cleanup(struct hda_pcm_stream *hinfo, |
| 3950 | struct hda_codec *codec, |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 3951 | struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3952 | { |
Takashi Iwai | 888afa1 | 2008-03-18 09:57:50 +0100 | [diff] [blame] | 3953 | snd_hda_codec_cleanup_stream(codec, hinfo->nid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3954 | return 0; |
| 3955 | } |
| 3956 | |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 3957 | static int set_pcm_default_values(struct hda_codec *codec, |
| 3958 | struct hda_pcm_stream *info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3959 | { |
Jaroslav Kysela | ee50471 | 2009-03-17 14:30:31 +0100 | [diff] [blame] | 3960 | int err; |
| 3961 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3962 | /* query support PCM information from the given NID */ |
| 3963 | if (info->nid && (!info->rates || !info->formats)) { |
Jaroslav Kysela | ee50471 | 2009-03-17 14:30:31 +0100 | [diff] [blame] | 3964 | err = snd_hda_query_supported_pcm(codec, info->nid, |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3965 | info->rates ? NULL : &info->rates, |
| 3966 | info->formats ? NULL : &info->formats, |
| 3967 | info->maxbps ? NULL : &info->maxbps); |
Jaroslav Kysela | ee50471 | 2009-03-17 14:30:31 +0100 | [diff] [blame] | 3968 | if (err < 0) |
| 3969 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3970 | } |
| 3971 | if (info->ops.open == NULL) |
| 3972 | info->ops.open = hda_pcm_default_open_close; |
| 3973 | if (info->ops.close == NULL) |
| 3974 | info->ops.close = hda_pcm_default_open_close; |
| 3975 | if (info->ops.prepare == NULL) { |
Takashi Iwai | da3cec3 | 2008-08-08 17:12:14 +0200 | [diff] [blame] | 3976 | if (snd_BUG_ON(!info->nid)) |
| 3977 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3978 | info->ops.prepare = hda_pcm_default_prepare; |
| 3979 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3980 | if (info->ops.cleanup == NULL) { |
Takashi Iwai | da3cec3 | 2008-08-08 17:12:14 +0200 | [diff] [blame] | 3981 | if (snd_BUG_ON(!info->nid)) |
| 3982 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3983 | info->ops.cleanup = hda_pcm_default_cleanup; |
| 3984 | } |
| 3985 | return 0; |
| 3986 | } |
| 3987 | |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 3988 | /* |
| 3989 | * codec prepare/cleanup entries |
| 3990 | */ |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 3991 | /** |
| 3992 | * snd_hda_codec_prepare - Prepare a stream |
| 3993 | * @codec: the HDA codec |
| 3994 | * @hinfo: PCM information |
| 3995 | * @stream: stream tag to assign |
| 3996 | * @format: format id to assign |
| 3997 | * @substream: PCM substream to assign |
| 3998 | * |
| 3999 | * Calls the prepare callback set by the codec with the given arguments. |
| 4000 | * Clean up the inactive streams when successful. |
| 4001 | */ |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 4002 | int snd_hda_codec_prepare(struct hda_codec *codec, |
| 4003 | struct hda_pcm_stream *hinfo, |
| 4004 | unsigned int stream, |
| 4005 | unsigned int format, |
| 4006 | struct snd_pcm_substream *substream) |
| 4007 | { |
| 4008 | int ret; |
Takashi Iwai | 3f50ac6 | 2010-08-20 09:44:36 +0200 | [diff] [blame] | 4009 | mutex_lock(&codec->bus->prepare_mutex); |
Takashi Iwai | 61ca410 | 2015-02-27 17:57:55 +0100 | [diff] [blame] | 4010 | if (hinfo->ops.prepare) |
| 4011 | ret = hinfo->ops.prepare(hinfo, codec, stream, format, |
| 4012 | substream); |
| 4013 | else |
| 4014 | ret = -ENODEV; |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 4015 | if (ret >= 0) |
| 4016 | purify_inactive_streams(codec); |
Takashi Iwai | 3f50ac6 | 2010-08-20 09:44:36 +0200 | [diff] [blame] | 4017 | mutex_unlock(&codec->bus->prepare_mutex); |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 4018 | return ret; |
| 4019 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 4020 | EXPORT_SYMBOL_GPL(snd_hda_codec_prepare); |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 4021 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 4022 | /** |
| 4023 | * snd_hda_codec_cleanup - Prepare a stream |
| 4024 | * @codec: the HDA codec |
| 4025 | * @hinfo: PCM information |
| 4026 | * @substream: PCM substream |
| 4027 | * |
| 4028 | * Calls the cleanup callback set by the codec with the given arguments. |
| 4029 | */ |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 4030 | void snd_hda_codec_cleanup(struct hda_codec *codec, |
| 4031 | struct hda_pcm_stream *hinfo, |
| 4032 | struct snd_pcm_substream *substream) |
| 4033 | { |
Takashi Iwai | 3f50ac6 | 2010-08-20 09:44:36 +0200 | [diff] [blame] | 4034 | mutex_lock(&codec->bus->prepare_mutex); |
Takashi Iwai | 61ca410 | 2015-02-27 17:57:55 +0100 | [diff] [blame] | 4035 | if (hinfo->ops.cleanup) |
| 4036 | hinfo->ops.cleanup(hinfo, codec, substream); |
Takashi Iwai | 3f50ac6 | 2010-08-20 09:44:36 +0200 | [diff] [blame] | 4037 | mutex_unlock(&codec->bus->prepare_mutex); |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 4038 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 4039 | EXPORT_SYMBOL_GPL(snd_hda_codec_cleanup); |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 4040 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 4041 | /* global */ |
Jaroslav Kysela | e330323 | 2009-11-10 14:53:02 +0100 | [diff] [blame] | 4042 | const char *snd_hda_pcm_type_name[HDA_PCM_NTYPES] = { |
| 4043 | "Audio", "SPDIF", "HDMI", "Modem" |
| 4044 | }; |
| 4045 | |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 4046 | /* |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 4047 | * get the empty PCM device number to assign |
| 4048 | */ |
Takashi Iwai | 36bb00d | 2013-06-06 12:10:24 +0200 | [diff] [blame] | 4049 | 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] | 4050 | { |
Wu Fengguang | f5d6def | 2009-10-30 11:38:26 +0100 | [diff] [blame] | 4051 | /* audio device indices; not linear to keep compatibility */ |
Takashi Iwai | 36bb00d | 2013-06-06 12:10:24 +0200 | [diff] [blame] | 4052 | /* assigned to static slots up to dev#10; if more needed, assign |
| 4053 | * the later slot dynamically (when CONFIG_SND_DYNAMIC_MINORS=y) |
| 4054 | */ |
Wu Fengguang | f5d6def | 2009-10-30 11:38:26 +0100 | [diff] [blame] | 4055 | static int audio_idx[HDA_PCM_NTYPES][5] = { |
| 4056 | [HDA_PCM_TYPE_AUDIO] = { 0, 2, 4, 5, -1 }, |
| 4057 | [HDA_PCM_TYPE_SPDIF] = { 1, -1 }, |
Wu Fengguang | 92608ba | 2009-10-30 11:40:03 +0100 | [diff] [blame] | 4058 | [HDA_PCM_TYPE_HDMI] = { 3, 7, 8, 9, -1 }, |
Wu Fengguang | f5d6def | 2009-10-30 11:38:26 +0100 | [diff] [blame] | 4059 | [HDA_PCM_TYPE_MODEM] = { 6, -1 }, |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 4060 | }; |
Wu Fengguang | f5d6def | 2009-10-30 11:38:26 +0100 | [diff] [blame] | 4061 | int i; |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 4062 | |
Wu Fengguang | f5d6def | 2009-10-30 11:38:26 +0100 | [diff] [blame] | 4063 | if (type >= HDA_PCM_NTYPES) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 4064 | dev_err(bus->card->dev, "Invalid PCM type %d\n", type); |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 4065 | return -EINVAL; |
| 4066 | } |
Wu Fengguang | f5d6def | 2009-10-30 11:38:26 +0100 | [diff] [blame] | 4067 | |
Takashi Iwai | 36bb00d | 2013-06-06 12:10:24 +0200 | [diff] [blame] | 4068 | for (i = 0; audio_idx[type][i] >= 0; i++) { |
| 4069 | #ifndef CONFIG_SND_DYNAMIC_MINORS |
| 4070 | if (audio_idx[type][i] >= 8) |
| 4071 | break; |
| 4072 | #endif |
Wu Fengguang | f5d6def | 2009-10-30 11:38:26 +0100 | [diff] [blame] | 4073 | if (!test_and_set_bit(audio_idx[type][i], bus->pcm_dev_bits)) |
| 4074 | return audio_idx[type][i]; |
Takashi Iwai | 36bb00d | 2013-06-06 12:10:24 +0200 | [diff] [blame] | 4075 | } |
Wu Fengguang | f5d6def | 2009-10-30 11:38:26 +0100 | [diff] [blame] | 4076 | |
Takashi Iwai | 36bb00d | 2013-06-06 12:10:24 +0200 | [diff] [blame] | 4077 | #ifdef CONFIG_SND_DYNAMIC_MINORS |
Takashi Iwai | 01b65bf | 2011-11-24 14:31:46 +0100 | [diff] [blame] | 4078 | /* non-fixed slots starting from 10 */ |
| 4079 | for (i = 10; i < 32; i++) { |
| 4080 | if (!test_and_set_bit(i, bus->pcm_dev_bits)) |
| 4081 | return i; |
| 4082 | } |
Takashi Iwai | 36bb00d | 2013-06-06 12:10:24 +0200 | [diff] [blame] | 4083 | #endif |
Takashi Iwai | 01b65bf | 2011-11-24 14:31:46 +0100 | [diff] [blame] | 4084 | |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 4085 | dev_warn(bus->card->dev, "Too many %s devices\n", |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 4086 | snd_hda_pcm_type_name[type]); |
Takashi Iwai | 36bb00d | 2013-06-06 12:10:24 +0200 | [diff] [blame] | 4087 | #ifndef CONFIG_SND_DYNAMIC_MINORS |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 4088 | dev_warn(bus->card->dev, |
| 4089 | "Consider building the kernel with CONFIG_SND_DYNAMIC_MINORS=y\n"); |
Takashi Iwai | 36bb00d | 2013-06-06 12:10:24 +0200 | [diff] [blame] | 4090 | #endif |
Wu Fengguang | f5d6def | 2009-10-30 11:38:26 +0100 | [diff] [blame] | 4091 | return -EAGAIN; |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 4092 | } |
| 4093 | |
Takashi Iwai | 1a4ba30 | 2015-02-24 11:50:11 +0100 | [diff] [blame] | 4094 | /* call build_pcms ops of the given codec and set up the default parameters */ |
| 4095 | int snd_hda_codec_parse_pcms(struct hda_codec *codec) |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 4096 | { |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame] | 4097 | struct hda_pcm *cpcm; |
Takashi Iwai | 1a4ba30 | 2015-02-24 11:50:11 +0100 | [diff] [blame] | 4098 | int err; |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 4099 | |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame] | 4100 | if (!list_empty(&codec->pcm_list_head)) |
Takashi Iwai | 1a4ba30 | 2015-02-24 11:50:11 +0100 | [diff] [blame] | 4101 | return 0; /* already parsed */ |
| 4102 | |
| 4103 | if (!codec->patch_ops.build_pcms) |
| 4104 | return 0; |
| 4105 | |
| 4106 | err = codec->patch_ops.build_pcms(codec); |
| 4107 | if (err < 0) { |
| 4108 | codec_err(codec, "cannot build PCMs for #%d (error %d)\n", |
Takashi Iwai | d068ebc | 2015-03-02 23:22:59 +0100 | [diff] [blame] | 4109 | codec->core.addr, err); |
Takashi Iwai | 1a4ba30 | 2015-02-24 11:50:11 +0100 | [diff] [blame] | 4110 | return err; |
| 4111 | } |
| 4112 | |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame] | 4113 | list_for_each_entry(cpcm, &codec->pcm_list_head, list) { |
Takashi Iwai | 1a4ba30 | 2015-02-24 11:50:11 +0100 | [diff] [blame] | 4114 | int stream; |
| 4115 | |
| 4116 | for (stream = 0; stream < 2; stream++) { |
| 4117 | struct hda_pcm_stream *info = &cpcm->stream[stream]; |
| 4118 | |
| 4119 | if (!info->substreams) |
| 4120 | continue; |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 4121 | err = set_pcm_default_values(codec, info); |
Takashi Iwai | 1a4ba30 | 2015-02-24 11:50:11 +0100 | [diff] [blame] | 4122 | if (err < 0) { |
| 4123 | codec_warn(codec, |
| 4124 | "fail to setup default for PCM %s\n", |
| 4125 | cpcm->name); |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 4126 | return err; |
Takashi Iwai | 1a4ba30 | 2015-02-24 11:50:11 +0100 | [diff] [blame] | 4127 | } |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 4128 | } |
| 4129 | } |
Takashi Iwai | 1a4ba30 | 2015-02-24 11:50:11 +0100 | [diff] [blame] | 4130 | |
| 4131 | return 0; |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 4132 | } |
| 4133 | |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 4134 | /* assign all PCMs of the given codec */ |
| 4135 | int snd_hda_codec_build_pcms(struct hda_codec *codec) |
| 4136 | { |
Takashi Iwai | 1a4ba30 | 2015-02-24 11:50:11 +0100 | [diff] [blame] | 4137 | struct hda_bus *bus = codec->bus; |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame] | 4138 | struct hda_pcm *cpcm; |
Takashi Iwai | 1a4ba30 | 2015-02-24 11:50:11 +0100 | [diff] [blame] | 4139 | int dev, err; |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 4140 | |
Takashi Iwai | 1a4ba30 | 2015-02-24 11:50:11 +0100 | [diff] [blame] | 4141 | if (snd_BUG_ON(!bus->ops.attach_pcm)) |
| 4142 | return -EINVAL; |
| 4143 | |
| 4144 | err = snd_hda_codec_parse_pcms(codec); |
| 4145 | if (err < 0) { |
| 4146 | snd_hda_codec_reset(codec); |
| 4147 | return err; |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 4148 | } |
Takashi Iwai | 1a4ba30 | 2015-02-24 11:50:11 +0100 | [diff] [blame] | 4149 | |
| 4150 | /* attach a new PCM streams */ |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame] | 4151 | list_for_each_entry(cpcm, &codec->pcm_list_head, list) { |
Takashi Iwai | 1a4ba30 | 2015-02-24 11:50:11 +0100 | [diff] [blame] | 4152 | if (cpcm->pcm) |
| 4153 | continue; /* already attached */ |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 4154 | if (!cpcm->stream[0].substreams && !cpcm->stream[1].substreams) |
Takashi Iwai | 41b5b01 | 2009-01-20 18:21:23 +0100 | [diff] [blame] | 4155 | continue; /* no substreams assigned */ |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 4156 | |
Takashi Iwai | 1a4ba30 | 2015-02-24 11:50:11 +0100 | [diff] [blame] | 4157 | dev = get_empty_pcm_device(bus, cpcm->pcm_type); |
| 4158 | if (dev < 0) |
| 4159 | continue; /* no fatal error */ |
| 4160 | cpcm->device = dev; |
| 4161 | err = bus->ops.attach_pcm(bus, codec, cpcm); |
| 4162 | if (err < 0) { |
| 4163 | codec_err(codec, |
| 4164 | "cannot attach PCM stream %d for codec #%d\n", |
Takashi Iwai | d068ebc | 2015-03-02 23:22:59 +0100 | [diff] [blame] | 4165 | dev, codec->core.addr); |
Takashi Iwai | 1a4ba30 | 2015-02-24 11:50:11 +0100 | [diff] [blame] | 4166 | continue; /* no fatal error */ |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 4167 | } |
| 4168 | } |
Takashi Iwai | 1a4ba30 | 2015-02-24 11:50:11 +0100 | [diff] [blame] | 4169 | |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 4170 | return 0; |
| 4171 | } |
| 4172 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4173 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4174 | * snd_hda_add_new_ctls - create controls from the array |
| 4175 | * @codec: the HDA codec |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 4176 | * @knew: the array of struct snd_kcontrol_new |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4177 | * |
| 4178 | * This helper function creates and add new controls in the given array. |
| 4179 | * The array must be terminated with an empty entry as terminator. |
| 4180 | * |
| 4181 | * Returns 0 if successful, or a negative error code. |
| 4182 | */ |
Takashi Iwai | 031024e | 2011-05-02 11:29:30 +0200 | [diff] [blame] | 4183 | int snd_hda_add_new_ctls(struct hda_codec *codec, |
| 4184 | const struct snd_kcontrol_new *knew) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4185 | { |
Jaroslav Kysela | 4d02d1b | 2009-11-12 10:15:48 +0100 | [diff] [blame] | 4186 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4187 | |
| 4188 | for (; knew->name; knew++) { |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 4189 | struct snd_kcontrol *kctl; |
Takashi Iwai | 1afe206 | 2010-12-23 10:17:52 +0100 | [diff] [blame] | 4190 | int addr = 0, idx = 0; |
Jaroslav Kysela | 5b0cb1d | 2009-12-08 16:13:32 +0100 | [diff] [blame] | 4191 | if (knew->iface == -1) /* skip this codec private value */ |
| 4192 | continue; |
Takashi Iwai | 1afe206 | 2010-12-23 10:17:52 +0100 | [diff] [blame] | 4193 | for (;;) { |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 4194 | kctl = snd_ctl_new1(knew, codec); |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 4195 | if (!kctl) |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 4196 | return -ENOMEM; |
Takashi Iwai | 1afe206 | 2010-12-23 10:17:52 +0100 | [diff] [blame] | 4197 | if (addr > 0) |
| 4198 | kctl->id.device = addr; |
| 4199 | if (idx > 0) |
| 4200 | kctl->id.index = idx; |
Jaroslav Kysela | 3911a4c | 2009-11-11 13:43:01 +0100 | [diff] [blame] | 4201 | err = snd_hda_ctl_add(codec, 0, kctl); |
Takashi Iwai | 1afe206 | 2010-12-23 10:17:52 +0100 | [diff] [blame] | 4202 | if (!err) |
| 4203 | break; |
| 4204 | /* try first with another device index corresponding to |
| 4205 | * the codec addr; if it still fails (or it's the |
| 4206 | * primary codec), then try another control index |
| 4207 | */ |
Takashi Iwai | d068ebc | 2015-03-02 23:22:59 +0100 | [diff] [blame] | 4208 | if (!addr && codec->core.addr) |
| 4209 | addr = codec->core.addr; |
Takashi Iwai | 1afe206 | 2010-12-23 10:17:52 +0100 | [diff] [blame] | 4210 | else if (!idx && !knew->index) { |
| 4211 | idx = find_empty_mixer_ctl_idx(codec, |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 4212 | knew->name, 0); |
Takashi Iwai | 1afe206 | 2010-12-23 10:17:52 +0100 | [diff] [blame] | 4213 | if (idx <= 0) |
| 4214 | return err; |
| 4215 | } else |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 4216 | return err; |
| 4217 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4218 | } |
| 4219 | return 0; |
| 4220 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 4221 | EXPORT_SYMBOL_GPL(snd_hda_add_new_ctls); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4222 | |
Takashi Iwai | 83012a7 | 2012-08-24 18:38:08 +0200 | [diff] [blame] | 4223 | #ifdef CONFIG_PM |
Takashi Iwai | bb57392 | 2015-02-20 09:26:04 +0100 | [diff] [blame] | 4224 | static void codec_set_power_save(struct hda_codec *codec, int delay) |
Takashi Iwai | cc72da7 | 2015-02-19 16:00:22 +0100 | [diff] [blame] | 4225 | { |
| 4226 | struct device *dev = hda_codec_dev(codec); |
Takashi Iwai | cc72da7 | 2015-02-19 16:00:22 +0100 | [diff] [blame] | 4227 | |
Takashi Iwai | cc72da7 | 2015-02-19 16:00:22 +0100 | [diff] [blame] | 4228 | if (delay > 0) { |
| 4229 | pm_runtime_set_autosuspend_delay(dev, delay); |
| 4230 | pm_runtime_use_autosuspend(dev); |
| 4231 | pm_runtime_allow(dev); |
| 4232 | if (!pm_runtime_suspended(dev)) |
| 4233 | pm_runtime_mark_last_busy(dev); |
| 4234 | } else { |
| 4235 | pm_runtime_dont_use_autosuspend(dev); |
| 4236 | pm_runtime_forbid(dev); |
| 4237 | } |
| 4238 | } |
Takashi Iwai | bb57392 | 2015-02-20 09:26:04 +0100 | [diff] [blame] | 4239 | |
| 4240 | /** |
| 4241 | * snd_hda_set_power_save - reprogram autosuspend for the given delay |
| 4242 | * @bus: HD-audio bus |
| 4243 | * @delay: autosuspend delay in msec, 0 = off |
| 4244 | * |
| 4245 | * Synchronize the runtime PM autosuspend state from the power_save option. |
| 4246 | */ |
| 4247 | void snd_hda_set_power_save(struct hda_bus *bus, int delay) |
| 4248 | { |
| 4249 | struct hda_codec *c; |
| 4250 | |
Takashi Iwai | d068ebc | 2015-03-02 23:22:59 +0100 | [diff] [blame] | 4251 | list_for_each_codec(c, bus) |
Takashi Iwai | bb57392 | 2015-02-20 09:26:04 +0100 | [diff] [blame] | 4252 | codec_set_power_save(c, delay); |
| 4253 | } |
| 4254 | EXPORT_SYMBOL_GPL(snd_hda_set_power_save); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 4255 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 4256 | /** |
| 4257 | * snd_hda_check_amp_list_power - Check the amp list and update the power |
| 4258 | * @codec: HD-audio codec |
| 4259 | * @check: the object containing an AMP list and the status |
| 4260 | * @nid: NID to check / update |
| 4261 | * |
| 4262 | * Check whether the given NID is in the amp list. If it's in the list, |
| 4263 | * check the current AMP status, and update the the power-status according |
| 4264 | * to the mute status. |
| 4265 | * |
| 4266 | * This function is supposed to be set or called from the check_power_status |
| 4267 | * patch ops. |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 4268 | */ |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 4269 | int snd_hda_check_amp_list_power(struct hda_codec *codec, |
| 4270 | struct hda_loopback_check *check, |
| 4271 | hda_nid_t nid) |
| 4272 | { |
Takashi Iwai | 031024e | 2011-05-02 11:29:30 +0200 | [diff] [blame] | 4273 | const struct hda_amp_list *p; |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 4274 | int ch, v; |
| 4275 | |
| 4276 | if (!check->amplist) |
| 4277 | return 0; |
| 4278 | for (p = check->amplist; p->nid; p++) { |
| 4279 | if (p->nid == nid) |
| 4280 | break; |
| 4281 | } |
| 4282 | if (!p->nid) |
| 4283 | return 0; /* nothing changed */ |
| 4284 | |
| 4285 | for (p = check->amplist; p->nid; p++) { |
| 4286 | for (ch = 0; ch < 2; ch++) { |
| 4287 | v = snd_hda_codec_amp_read(codec, p->nid, ch, p->dir, |
| 4288 | p->idx); |
| 4289 | if (!(v & HDA_AMP_MUTE) && v > 0) { |
| 4290 | if (!check->power_on) { |
| 4291 | check->power_on = 1; |
| 4292 | snd_hda_power_up(codec); |
| 4293 | } |
| 4294 | return 1; |
| 4295 | } |
| 4296 | } |
| 4297 | } |
| 4298 | if (check->power_on) { |
| 4299 | check->power_on = 0; |
| 4300 | snd_hda_power_down(codec); |
| 4301 | } |
| 4302 | return 0; |
| 4303 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 4304 | EXPORT_SYMBOL_GPL(snd_hda_check_amp_list_power); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 4305 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4306 | |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 4307 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4308 | * input MUX helper |
| 4309 | */ |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 4310 | |
| 4311 | /** |
| 4312 | * 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] | 4313 | * @imux: imux helper object |
| 4314 | * @uinfo: pointer to get/store the data |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 4315 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 4316 | int snd_hda_input_mux_info(const struct hda_input_mux *imux, |
| 4317 | struct snd_ctl_elem_info *uinfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4318 | { |
| 4319 | unsigned int index; |
| 4320 | |
| 4321 | uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED; |
| 4322 | uinfo->count = 1; |
| 4323 | uinfo->value.enumerated.items = imux->num_items; |
Takashi Iwai | 5513b0c | 2007-10-09 11:58:41 +0200 | [diff] [blame] | 4324 | if (!imux->num_items) |
| 4325 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4326 | index = uinfo->value.enumerated.item; |
| 4327 | if (index >= imux->num_items) |
| 4328 | index = imux->num_items - 1; |
| 4329 | strcpy(uinfo->value.enumerated.name, imux->items[index].label); |
| 4330 | return 0; |
| 4331 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 4332 | EXPORT_SYMBOL_GPL(snd_hda_input_mux_info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4333 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 4334 | /** |
| 4335 | * 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] | 4336 | * @codec: the HDA codec |
| 4337 | * @imux: imux helper object |
| 4338 | * @ucontrol: pointer to get/store the data |
| 4339 | * @nid: input mux NID |
| 4340 | * @cur_val: pointer to get/store the current imux value |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 4341 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 4342 | int snd_hda_input_mux_put(struct hda_codec *codec, |
| 4343 | const struct hda_input_mux *imux, |
| 4344 | struct snd_ctl_elem_value *ucontrol, |
| 4345 | hda_nid_t nid, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4346 | unsigned int *cur_val) |
| 4347 | { |
| 4348 | unsigned int idx; |
| 4349 | |
Takashi Iwai | 5513b0c | 2007-10-09 11:58:41 +0200 | [diff] [blame] | 4350 | if (!imux->num_items) |
| 4351 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4352 | idx = ucontrol->value.enumerated.item[0]; |
| 4353 | if (idx >= imux->num_items) |
| 4354 | idx = imux->num_items - 1; |
Takashi Iwai | 82beb8f | 2007-08-10 17:09:26 +0200 | [diff] [blame] | 4355 | if (*cur_val == idx) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4356 | return 0; |
Takashi Iwai | 82beb8f | 2007-08-10 17:09:26 +0200 | [diff] [blame] | 4357 | snd_hda_codec_write_cache(codec, nid, 0, AC_VERB_SET_CONNECT_SEL, |
| 4358 | imux->items[idx].index); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4359 | *cur_val = idx; |
| 4360 | return 1; |
| 4361 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 4362 | EXPORT_SYMBOL_GPL(snd_hda_input_mux_put); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4363 | |
| 4364 | |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 4365 | /** |
| 4366 | * snd_hda_enum_helper_info - Helper for simple enum ctls |
| 4367 | * @kcontrol: ctl element |
| 4368 | * @uinfo: pointer to get/store the data |
| 4369 | * @num_items: number of enum items |
| 4370 | * @texts: enum item string array |
| 4371 | * |
Takashi Iwai | dda415d | 2012-11-30 18:34:38 +0100 | [diff] [blame] | 4372 | * process kcontrol info callback of a simple string enum array |
| 4373 | * when @num_items is 0 or @texts is NULL, assume a boolean enum array |
| 4374 | */ |
| 4375 | int snd_hda_enum_helper_info(struct snd_kcontrol *kcontrol, |
| 4376 | struct snd_ctl_elem_info *uinfo, |
| 4377 | int num_items, const char * const *texts) |
| 4378 | { |
| 4379 | static const char * const texts_default[] = { |
| 4380 | "Disabled", "Enabled" |
| 4381 | }; |
| 4382 | |
| 4383 | if (!texts || !num_items) { |
| 4384 | num_items = 2; |
| 4385 | texts = texts_default; |
| 4386 | } |
| 4387 | |
Takashi Iwai | 3ff7221 | 2014-10-20 18:17:28 +0200 | [diff] [blame] | 4388 | return snd_ctl_enum_info(uinfo, 1, num_items, texts); |
Takashi Iwai | dda415d | 2012-11-30 18:34:38 +0100 | [diff] [blame] | 4389 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 4390 | EXPORT_SYMBOL_GPL(snd_hda_enum_helper_info); |
Takashi Iwai | dda415d | 2012-11-30 18:34:38 +0100 | [diff] [blame] | 4391 | |
| 4392 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4393 | * Multi-channel / digital-out PCM helper functions |
| 4394 | */ |
| 4395 | |
Takashi Iwai | 6b97eb4 | 2007-04-05 14:51:48 +0200 | [diff] [blame] | 4396 | /* setup SPDIF output stream */ |
| 4397 | static void setup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid, |
| 4398 | unsigned int stream_tag, unsigned int format) |
| 4399 | { |
Laurence Darby | 3bef1c3 | 2012-11-03 17:00:06 +0000 | [diff] [blame] | 4400 | struct hda_spdif_out *spdif; |
| 4401 | unsigned int curr_fmt; |
| 4402 | bool reset; |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 4403 | |
Laurence Darby | 3bef1c3 | 2012-11-03 17:00:06 +0000 | [diff] [blame] | 4404 | spdif = snd_hda_spdif_out_of_nid(codec, nid); |
| 4405 | curr_fmt = snd_hda_codec_read(codec, nid, 0, |
| 4406 | AC_VERB_GET_STREAM_FORMAT, 0); |
| 4407 | reset = codec->spdif_status_reset && |
| 4408 | (spdif->ctls & AC_DIG1_ENABLE) && |
| 4409 | curr_fmt != format; |
| 4410 | |
| 4411 | /* turn off SPDIF if needed; otherwise the IEC958 bits won't be |
| 4412 | updated */ |
| 4413 | if (reset) |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 4414 | set_dig_out_convert(codec, nid, |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 4415 | spdif->ctls & ~AC_DIG1_ENABLE & 0xff, |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 4416 | -1); |
Takashi Iwai | 6b97eb4 | 2007-04-05 14:51:48 +0200 | [diff] [blame] | 4417 | snd_hda_codec_setup_stream(codec, nid, stream_tag, 0, format); |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 4418 | if (codec->slave_dig_outs) { |
Takashi Iwai | dda1441 | 2011-05-02 11:29:30 +0200 | [diff] [blame] | 4419 | const hda_nid_t *d; |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 4420 | for (d = codec->slave_dig_outs; *d; d++) |
| 4421 | snd_hda_codec_setup_stream(codec, *d, stream_tag, 0, |
| 4422 | format); |
Matthew Ranostay | de51ca1 | 2008-09-07 14:31:40 -0400 | [diff] [blame] | 4423 | } |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 4424 | /* turn on again (if needed) */ |
Laurence Darby | 3bef1c3 | 2012-11-03 17:00:06 +0000 | [diff] [blame] | 4425 | if (reset) |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 4426 | set_dig_out_convert(codec, nid, |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 4427 | spdif->ctls & 0xff, -1); |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 4428 | } |
Matthew Ranostay | de51ca1 | 2008-09-07 14:31:40 -0400 | [diff] [blame] | 4429 | |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 4430 | static void cleanup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid) |
| 4431 | { |
| 4432 | snd_hda_codec_cleanup_stream(codec, nid); |
| 4433 | if (codec->slave_dig_outs) { |
Takashi Iwai | dda1441 | 2011-05-02 11:29:30 +0200 | [diff] [blame] | 4434 | const hda_nid_t *d; |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 4435 | for (d = codec->slave_dig_outs; *d; d++) |
| 4436 | snd_hda_codec_cleanup_stream(codec, *d); |
| 4437 | } |
Takashi Iwai | 6b97eb4 | 2007-04-05 14:51:48 +0200 | [diff] [blame] | 4438 | } |
| 4439 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 4440 | /** |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 4441 | * 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] | 4442 | * @codec: the HDA codec |
| 4443 | * @mout: hda_multi_out object |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4444 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 4445 | int snd_hda_multi_out_dig_open(struct hda_codec *codec, |
| 4446 | struct hda_multi_out *mout) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4447 | { |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 4448 | mutex_lock(&codec->spdif_mutex); |
Takashi Iwai | 5930ca4 | 2007-04-16 11:23:56 +0200 | [diff] [blame] | 4449 | if (mout->dig_out_used == HDA_DIG_ANALOG_DUP) |
| 4450 | /* already opened as analog dup; reset it once */ |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 4451 | cleanup_dig_out_stream(codec, mout->dig_out_nid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4452 | mout->dig_out_used = HDA_DIG_EXCLUSIVE; |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 4453 | mutex_unlock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4454 | return 0; |
| 4455 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 4456 | EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_open); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4457 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 4458 | /** |
| 4459 | * snd_hda_multi_out_dig_prepare - prepare the digital out stream |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 4460 | * @codec: the HDA codec |
| 4461 | * @mout: hda_multi_out object |
| 4462 | * @stream_tag: stream tag to assign |
| 4463 | * @format: format id to assign |
| 4464 | * @substream: PCM substream to assign |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 4465 | */ |
Takashi Iwai | 6b97eb4 | 2007-04-05 14:51:48 +0200 | [diff] [blame] | 4466 | int snd_hda_multi_out_dig_prepare(struct hda_codec *codec, |
| 4467 | struct hda_multi_out *mout, |
| 4468 | unsigned int stream_tag, |
| 4469 | unsigned int format, |
| 4470 | struct snd_pcm_substream *substream) |
| 4471 | { |
| 4472 | mutex_lock(&codec->spdif_mutex); |
| 4473 | setup_dig_out_stream(codec, mout->dig_out_nid, stream_tag, format); |
| 4474 | mutex_unlock(&codec->spdif_mutex); |
| 4475 | return 0; |
| 4476 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 4477 | EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_prepare); |
Takashi Iwai | 6b97eb4 | 2007-04-05 14:51:48 +0200 | [diff] [blame] | 4478 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 4479 | /** |
| 4480 | * snd_hda_multi_out_dig_cleanup - clean-up the digital out stream |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 4481 | * @codec: the HDA codec |
| 4482 | * @mout: hda_multi_out object |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 4483 | */ |
Takashi Iwai | 9411e21 | 2009-02-13 11:32:28 +0100 | [diff] [blame] | 4484 | int snd_hda_multi_out_dig_cleanup(struct hda_codec *codec, |
| 4485 | struct hda_multi_out *mout) |
| 4486 | { |
| 4487 | mutex_lock(&codec->spdif_mutex); |
| 4488 | cleanup_dig_out_stream(codec, mout->dig_out_nid); |
| 4489 | mutex_unlock(&codec->spdif_mutex); |
| 4490 | return 0; |
| 4491 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 4492 | EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_cleanup); |
Takashi Iwai | 9411e21 | 2009-02-13 11:32:28 +0100 | [diff] [blame] | 4493 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 4494 | /** |
| 4495 | * snd_hda_multi_out_dig_close - release the digital out stream |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 4496 | * @codec: the HDA codec |
| 4497 | * @mout: hda_multi_out object |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4498 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 4499 | int snd_hda_multi_out_dig_close(struct hda_codec *codec, |
| 4500 | struct hda_multi_out *mout) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4501 | { |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 4502 | mutex_lock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4503 | mout->dig_out_used = 0; |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 4504 | mutex_unlock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4505 | return 0; |
| 4506 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 4507 | EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_close); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4508 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 4509 | /** |
| 4510 | * snd_hda_multi_out_analog_open - open analog outputs |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 4511 | * @codec: the HDA codec |
| 4512 | * @mout: hda_multi_out object |
| 4513 | * @substream: PCM substream to assign |
| 4514 | * @hinfo: PCM information to assign |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 4515 | * |
| 4516 | * Open analog outputs and set up the hw-constraints. |
| 4517 | * If the digital outputs can be opened as slave, open the digital |
| 4518 | * outputs, too. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4519 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 4520 | int snd_hda_multi_out_analog_open(struct hda_codec *codec, |
| 4521 | struct hda_multi_out *mout, |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 4522 | struct snd_pcm_substream *substream, |
| 4523 | struct hda_pcm_stream *hinfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4524 | { |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 4525 | struct snd_pcm_runtime *runtime = substream->runtime; |
| 4526 | runtime->hw.channels_max = mout->max_channels; |
| 4527 | if (mout->dig_out_nid) { |
| 4528 | if (!mout->analog_rates) { |
| 4529 | mout->analog_rates = hinfo->rates; |
| 4530 | mout->analog_formats = hinfo->formats; |
| 4531 | mout->analog_maxbps = hinfo->maxbps; |
| 4532 | } else { |
| 4533 | runtime->hw.rates = mout->analog_rates; |
| 4534 | runtime->hw.formats = mout->analog_formats; |
| 4535 | hinfo->maxbps = mout->analog_maxbps; |
| 4536 | } |
| 4537 | if (!mout->spdif_rates) { |
| 4538 | snd_hda_query_supported_pcm(codec, mout->dig_out_nid, |
| 4539 | &mout->spdif_rates, |
| 4540 | &mout->spdif_formats, |
| 4541 | &mout->spdif_maxbps); |
| 4542 | } |
| 4543 | mutex_lock(&codec->spdif_mutex); |
| 4544 | if (mout->share_spdif) { |
Takashi Iwai | 022b466 | 2009-07-03 23:03:30 +0200 | [diff] [blame] | 4545 | if ((runtime->hw.rates & mout->spdif_rates) && |
| 4546 | (runtime->hw.formats & mout->spdif_formats)) { |
| 4547 | runtime->hw.rates &= mout->spdif_rates; |
| 4548 | runtime->hw.formats &= mout->spdif_formats; |
| 4549 | if (mout->spdif_maxbps < hinfo->maxbps) |
| 4550 | hinfo->maxbps = mout->spdif_maxbps; |
| 4551 | } else { |
| 4552 | mout->share_spdif = 0; |
| 4553 | /* FIXME: need notify? */ |
| 4554 | } |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 4555 | } |
Frederik Deweerdt | eaa9985 | 2008-04-14 13:11:44 +0200 | [diff] [blame] | 4556 | mutex_unlock(&codec->spdif_mutex); |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 4557 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4558 | return snd_pcm_hw_constraint_step(substream->runtime, 0, |
| 4559 | SNDRV_PCM_HW_PARAM_CHANNELS, 2); |
| 4560 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 4561 | EXPORT_SYMBOL_GPL(snd_hda_multi_out_analog_open); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4562 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 4563 | /** |
| 4564 | * snd_hda_multi_out_analog_prepare - Preapre the analog outputs. |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 4565 | * @codec: the HDA codec |
| 4566 | * @mout: hda_multi_out object |
| 4567 | * @stream_tag: stream tag to assign |
| 4568 | * @format: format id to assign |
| 4569 | * @substream: PCM substream to assign |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 4570 | * |
| 4571 | * Set up the i/o for analog out. |
| 4572 | * 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] | 4573 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 4574 | int snd_hda_multi_out_analog_prepare(struct hda_codec *codec, |
| 4575 | struct hda_multi_out *mout, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4576 | unsigned int stream_tag, |
| 4577 | unsigned int format, |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 4578 | struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4579 | { |
Takashi Iwai | dda1441 | 2011-05-02 11:29:30 +0200 | [diff] [blame] | 4580 | const hda_nid_t *nids = mout->dac_nids; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4581 | int chs = substream->runtime->channels; |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 4582 | struct hda_spdif_out *spdif; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4583 | int i; |
| 4584 | |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 4585 | mutex_lock(&codec->spdif_mutex); |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 4586 | spdif = snd_hda_spdif_out_of_nid(codec, mout->dig_out_nid); |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 4587 | if (mout->dig_out_nid && mout->share_spdif && |
| 4588 | mout->dig_out_used != HDA_DIG_EXCLUSIVE) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4589 | if (chs == 2 && |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 4590 | snd_hda_is_supported_format(codec, mout->dig_out_nid, |
| 4591 | format) && |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 4592 | !(spdif->status & IEC958_AES0_NONAUDIO)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4593 | mout->dig_out_used = HDA_DIG_ANALOG_DUP; |
Takashi Iwai | 6b97eb4 | 2007-04-05 14:51:48 +0200 | [diff] [blame] | 4594 | setup_dig_out_stream(codec, mout->dig_out_nid, |
| 4595 | stream_tag, format); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4596 | } else { |
| 4597 | mout->dig_out_used = 0; |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 4598 | cleanup_dig_out_stream(codec, mout->dig_out_nid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4599 | } |
| 4600 | } |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 4601 | mutex_unlock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4602 | |
| 4603 | /* front */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 4604 | snd_hda_codec_setup_stream(codec, nids[HDA_FRONT], stream_tag, |
| 4605 | 0, format); |
Takashi Iwai | d29240c | 2007-10-26 12:35:56 +0200 | [diff] [blame] | 4606 | if (!mout->no_share_stream && |
| 4607 | mout->hp_nid && mout->hp_nid != nids[HDA_FRONT]) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4608 | /* headphone out will just decode front left/right (stereo) */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 4609 | snd_hda_codec_setup_stream(codec, mout->hp_nid, stream_tag, |
| 4610 | 0, format); |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 4611 | /* extra outputs copied from front */ |
Takashi Iwai | a06dbfc | 2011-08-23 18:16:13 +0200 | [diff] [blame] | 4612 | for (i = 0; i < ARRAY_SIZE(mout->hp_out_nid); i++) |
| 4613 | if (!mout->no_share_stream && mout->hp_out_nid[i]) |
| 4614 | snd_hda_codec_setup_stream(codec, |
| 4615 | mout->hp_out_nid[i], |
| 4616 | stream_tag, 0, format); |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 4617 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4618 | /* surrounds */ |
| 4619 | for (i = 1; i < mout->num_dacs; i++) { |
Takashi Iwai | 4b3acaf | 2005-06-10 19:48:10 +0200 | [diff] [blame] | 4620 | if (chs >= (i + 1) * 2) /* independent out */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 4621 | snd_hda_codec_setup_stream(codec, nids[i], stream_tag, |
| 4622 | i * 2, format); |
Takashi Iwai | d29240c | 2007-10-26 12:35:56 +0200 | [diff] [blame] | 4623 | else if (!mout->no_share_stream) /* copy front */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 4624 | snd_hda_codec_setup_stream(codec, nids[i], stream_tag, |
| 4625 | 0, format); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4626 | } |
David Henningsson | cd4035e | 2013-10-10 09:01:25 +0200 | [diff] [blame] | 4627 | |
| 4628 | /* extra surrounds */ |
| 4629 | for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++) { |
| 4630 | int ch = 0; |
| 4631 | if (!mout->extra_out_nid[i]) |
| 4632 | break; |
| 4633 | if (chs >= (i + 1) * 2) |
| 4634 | ch = i * 2; |
| 4635 | else if (!mout->no_share_stream) |
| 4636 | break; |
| 4637 | snd_hda_codec_setup_stream(codec, mout->extra_out_nid[i], |
| 4638 | stream_tag, ch, format); |
| 4639 | } |
| 4640 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4641 | return 0; |
| 4642 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 4643 | EXPORT_SYMBOL_GPL(snd_hda_multi_out_analog_prepare); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4644 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 4645 | /** |
| 4646 | * 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] | 4647 | * @codec: the HDA codec |
| 4648 | * @mout: hda_multi_out object |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4649 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 4650 | int snd_hda_multi_out_analog_cleanup(struct hda_codec *codec, |
| 4651 | struct hda_multi_out *mout) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4652 | { |
Takashi Iwai | dda1441 | 2011-05-02 11:29:30 +0200 | [diff] [blame] | 4653 | const hda_nid_t *nids = mout->dac_nids; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4654 | int i; |
| 4655 | |
| 4656 | for (i = 0; i < mout->num_dacs; i++) |
Takashi Iwai | 888afa1 | 2008-03-18 09:57:50 +0100 | [diff] [blame] | 4657 | snd_hda_codec_cleanup_stream(codec, nids[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4658 | if (mout->hp_nid) |
Takashi Iwai | 888afa1 | 2008-03-18 09:57:50 +0100 | [diff] [blame] | 4659 | snd_hda_codec_cleanup_stream(codec, mout->hp_nid); |
Takashi Iwai | a06dbfc | 2011-08-23 18:16:13 +0200 | [diff] [blame] | 4660 | for (i = 0; i < ARRAY_SIZE(mout->hp_out_nid); i++) |
| 4661 | if (mout->hp_out_nid[i]) |
| 4662 | snd_hda_codec_cleanup_stream(codec, |
| 4663 | mout->hp_out_nid[i]); |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 4664 | for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++) |
| 4665 | if (mout->extra_out_nid[i]) |
Takashi Iwai | 888afa1 | 2008-03-18 09:57:50 +0100 | [diff] [blame] | 4666 | snd_hda_codec_cleanup_stream(codec, |
| 4667 | mout->extra_out_nid[i]); |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 4668 | mutex_lock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4669 | 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] | 4670 | cleanup_dig_out_stream(codec, mout->dig_out_nid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4671 | mout->dig_out_used = 0; |
| 4672 | } |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 4673 | mutex_unlock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4674 | return 0; |
| 4675 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 4676 | EXPORT_SYMBOL_GPL(snd_hda_multi_out_analog_cleanup); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4677 | |
Takashi Iwai | 4740860 | 2012-04-20 13:06:53 +0200 | [diff] [blame] | 4678 | /** |
| 4679 | * snd_hda_get_default_vref - Get the default (mic) VREF pin bits |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 4680 | * @codec: the HDA codec |
| 4681 | * @pin: referred pin NID |
Takashi Iwai | 4740860 | 2012-04-20 13:06:53 +0200 | [diff] [blame] | 4682 | * |
| 4683 | * Guess the suitable VREF pin bits to be set as the pin-control value. |
| 4684 | * Note: the function doesn't set the AC_PINCTL_IN_EN bit. |
| 4685 | */ |
| 4686 | unsigned int snd_hda_get_default_vref(struct hda_codec *codec, hda_nid_t pin) |
| 4687 | { |
| 4688 | unsigned int pincap; |
| 4689 | unsigned int oldval; |
| 4690 | oldval = snd_hda_codec_read(codec, pin, 0, |
| 4691 | AC_VERB_GET_PIN_WIDGET_CONTROL, 0); |
| 4692 | pincap = snd_hda_query_pin_caps(codec, pin); |
| 4693 | pincap = (pincap & AC_PINCAP_VREF) >> AC_PINCAP_VREF_SHIFT; |
| 4694 | /* Exception: if the default pin setup is vref50, we give it priority */ |
| 4695 | if ((pincap & AC_PINCAP_VREF_80) && oldval != PIN_VREF50) |
| 4696 | return AC_PINCTL_VREF_80; |
| 4697 | else if (pincap & AC_PINCAP_VREF_50) |
| 4698 | return AC_PINCTL_VREF_50; |
| 4699 | else if (pincap & AC_PINCAP_VREF_100) |
| 4700 | return AC_PINCTL_VREF_100; |
| 4701 | else if (pincap & AC_PINCAP_VREF_GRD) |
| 4702 | return AC_PINCTL_VREF_GRD; |
| 4703 | return AC_PINCTL_VREF_HIZ; |
| 4704 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 4705 | EXPORT_SYMBOL_GPL(snd_hda_get_default_vref); |
Takashi Iwai | 4740860 | 2012-04-20 13:06:53 +0200 | [diff] [blame] | 4706 | |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 4707 | /** |
| 4708 | * snd_hda_correct_pin_ctl - correct the pin ctl value for matching with the pin cap |
| 4709 | * @codec: the HDA codec |
| 4710 | * @pin: referred pin NID |
| 4711 | * @val: pin ctl value to audit |
| 4712 | */ |
Takashi Iwai | 62f3a2f | 2013-01-10 08:56:46 +0100 | [diff] [blame] | 4713 | unsigned int snd_hda_correct_pin_ctl(struct hda_codec *codec, |
| 4714 | hda_nid_t pin, unsigned int val) |
| 4715 | { |
| 4716 | static unsigned int cap_lists[][2] = { |
| 4717 | { AC_PINCTL_VREF_100, AC_PINCAP_VREF_100 }, |
| 4718 | { AC_PINCTL_VREF_80, AC_PINCAP_VREF_80 }, |
| 4719 | { AC_PINCTL_VREF_50, AC_PINCAP_VREF_50 }, |
| 4720 | { AC_PINCTL_VREF_GRD, AC_PINCAP_VREF_GRD }, |
| 4721 | }; |
| 4722 | unsigned int cap; |
| 4723 | |
| 4724 | if (!val) |
| 4725 | return 0; |
| 4726 | cap = snd_hda_query_pin_caps(codec, pin); |
| 4727 | if (!cap) |
| 4728 | return val; /* don't know what to do... */ |
| 4729 | |
| 4730 | if (val & AC_PINCTL_OUT_EN) { |
| 4731 | if (!(cap & AC_PINCAP_OUT)) |
| 4732 | val &= ~(AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN); |
| 4733 | else if ((val & AC_PINCTL_HP_EN) && !(cap & AC_PINCAP_HP_DRV)) |
| 4734 | val &= ~AC_PINCTL_HP_EN; |
| 4735 | } |
| 4736 | |
| 4737 | if (val & AC_PINCTL_IN_EN) { |
| 4738 | if (!(cap & AC_PINCAP_IN)) |
| 4739 | val &= ~(AC_PINCTL_IN_EN | AC_PINCTL_VREFEN); |
| 4740 | else { |
| 4741 | unsigned int vcap, vref; |
| 4742 | int i; |
| 4743 | vcap = (cap & AC_PINCAP_VREF) >> AC_PINCAP_VREF_SHIFT; |
| 4744 | vref = val & AC_PINCTL_VREFEN; |
| 4745 | for (i = 0; i < ARRAY_SIZE(cap_lists); i++) { |
| 4746 | if (vref == cap_lists[i][0] && |
| 4747 | !(vcap & cap_lists[i][1])) { |
| 4748 | if (i == ARRAY_SIZE(cap_lists) - 1) |
| 4749 | vref = AC_PINCTL_VREF_HIZ; |
| 4750 | else |
| 4751 | vref = cap_lists[i + 1][0]; |
| 4752 | } |
| 4753 | } |
| 4754 | val &= ~AC_PINCTL_VREFEN; |
| 4755 | val |= vref; |
| 4756 | } |
| 4757 | } |
| 4758 | |
| 4759 | return val; |
| 4760 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 4761 | EXPORT_SYMBOL_GPL(snd_hda_correct_pin_ctl); |
Takashi Iwai | 62f3a2f | 2013-01-10 08:56:46 +0100 | [diff] [blame] | 4762 | |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 4763 | /** |
| 4764 | * _snd_hda_pin_ctl - Helper to set pin ctl value |
| 4765 | * @codec: the HDA codec |
| 4766 | * @pin: referred pin NID |
| 4767 | * @val: pin control value to set |
| 4768 | * @cached: access over codec pinctl cache or direct write |
| 4769 | * |
| 4770 | * This function is a helper to set a pin ctl value more safely. |
| 4771 | * It corrects the pin ctl value via snd_hda_correct_pin_ctl(), stores the |
| 4772 | * value in pin target array via snd_hda_codec_set_pin_target(), then |
| 4773 | * actually writes the value via either snd_hda_codec_update_cache() or |
| 4774 | * snd_hda_codec_write() depending on @cached flag. |
| 4775 | */ |
Takashi Iwai | cdd03ce | 2012-04-20 12:34:50 +0200 | [diff] [blame] | 4776 | int _snd_hda_set_pin_ctl(struct hda_codec *codec, hda_nid_t pin, |
| 4777 | unsigned int val, bool cached) |
| 4778 | { |
Takashi Iwai | 62f3a2f | 2013-01-10 08:56:46 +0100 | [diff] [blame] | 4779 | val = snd_hda_correct_pin_ctl(codec, pin, val); |
Takashi Iwai | d7fdc00 | 2013-01-10 08:38:04 +0100 | [diff] [blame] | 4780 | snd_hda_codec_set_pin_target(codec, pin, val); |
Takashi Iwai | cdd03ce | 2012-04-20 12:34:50 +0200 | [diff] [blame] | 4781 | if (cached) |
| 4782 | return snd_hda_codec_update_cache(codec, pin, 0, |
| 4783 | AC_VERB_SET_PIN_WIDGET_CONTROL, val); |
| 4784 | else |
| 4785 | return snd_hda_codec_write(codec, pin, 0, |
| 4786 | AC_VERB_SET_PIN_WIDGET_CONTROL, val); |
| 4787 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 4788 | EXPORT_SYMBOL_GPL(_snd_hda_set_pin_ctl); |
Takashi Iwai | cdd03ce | 2012-04-20 12:34:50 +0200 | [diff] [blame] | 4789 | |
Takashi Iwai | 990061c | 2010-09-09 22:08:44 +0200 | [diff] [blame] | 4790 | /** |
| 4791 | * snd_hda_add_imux_item - Add an item to input_mux |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 4792 | * @codec: the HDA codec |
| 4793 | * @imux: imux helper object |
| 4794 | * @label: the name of imux item to assign |
| 4795 | * @index: index number of imux item to assign |
| 4796 | * @type_idx: pointer to store the resultant label index |
Takashi Iwai | 990061c | 2010-09-09 22:08:44 +0200 | [diff] [blame] | 4797 | * |
| 4798 | * When the same label is used already in the existing items, the number |
| 4799 | * suffix is appended to the label. This label index number is stored |
| 4800 | * to type_idx when non-NULL pointer is given. |
| 4801 | */ |
Takashi Iwai | 6194b99 | 2014-06-06 18:12:16 +0200 | [diff] [blame] | 4802 | int snd_hda_add_imux_item(struct hda_codec *codec, |
| 4803 | struct hda_input_mux *imux, const char *label, |
Takashi Iwai | 10a20af | 2010-09-09 16:28:02 +0200 | [diff] [blame] | 4804 | int index, int *type_idx) |
| 4805 | { |
| 4806 | int i, label_idx = 0; |
| 4807 | if (imux->num_items >= HDA_MAX_NUM_INPUTS) { |
Takashi Iwai | 6194b99 | 2014-06-06 18:12:16 +0200 | [diff] [blame] | 4808 | codec_err(codec, "hda_codec: Too many imux items!\n"); |
Takashi Iwai | 10a20af | 2010-09-09 16:28:02 +0200 | [diff] [blame] | 4809 | return -EINVAL; |
| 4810 | } |
| 4811 | for (i = 0; i < imux->num_items; i++) { |
| 4812 | if (!strncmp(label, imux->items[i].label, strlen(label))) |
| 4813 | label_idx++; |
| 4814 | } |
| 4815 | if (type_idx) |
| 4816 | *type_idx = label_idx; |
| 4817 | if (label_idx > 0) |
| 4818 | snprintf(imux->items[imux->num_items].label, |
| 4819 | sizeof(imux->items[imux->num_items].label), |
| 4820 | "%s %d", label, label_idx); |
| 4821 | else |
| 4822 | strlcpy(imux->items[imux->num_items].label, label, |
| 4823 | sizeof(imux->items[imux->num_items].label)); |
| 4824 | imux->items[imux->num_items].index = index; |
| 4825 | imux->num_items++; |
| 4826 | return 0; |
| 4827 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 4828 | EXPORT_SYMBOL_GPL(snd_hda_add_imux_item); |
Takashi Iwai | d7b1ae9 | 2010-08-30 13:00:16 +0200 | [diff] [blame] | 4829 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4830 | /** |
Takashi Iwai | 59ed1ea | 2015-02-18 15:39:59 +0100 | [diff] [blame] | 4831 | * snd_hda_bus_reset - Reset the bus |
| 4832 | * @bus: HD-audio bus |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4833 | */ |
Takashi Iwai | 59ed1ea | 2015-02-18 15:39:59 +0100 | [diff] [blame] | 4834 | void snd_hda_bus_reset(struct hda_bus *bus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4835 | { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 4836 | struct hda_codec *codec; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4837 | |
Takashi Iwai | d068ebc | 2015-03-02 23:22:59 +0100 | [diff] [blame] | 4838 | list_for_each_codec(codec, bus) { |
Takashi Iwai | 59ed1ea | 2015-02-18 15:39:59 +0100 | [diff] [blame] | 4839 | /* FIXME: maybe a better way needed for forced reset */ |
David Henningsson | 26a6cb6 | 2012-10-09 15:04:21 +0200 | [diff] [blame] | 4840 | cancel_delayed_work_sync(&codec->jackpoll_work); |
Takashi Iwai | 59ed1ea | 2015-02-18 15:39:59 +0100 | [diff] [blame] | 4841 | #ifdef CONFIG_PM |
Mengdong Lin | 0e24dbb | 2013-11-26 23:00:51 -0500 | [diff] [blame] | 4842 | if (hda_codec_is_power_on(codec)) { |
Takashi Iwai | cc72da7 | 2015-02-19 16:00:22 +0100 | [diff] [blame] | 4843 | hda_call_codec_suspend(codec); |
Mengdong Lin | 12edb89 | 2013-11-26 23:32:23 -0500 | [diff] [blame] | 4844 | hda_call_codec_resume(codec); |
Takashi Iwai | 59ed1ea | 2015-02-18 15:39:59 +0100 | [diff] [blame] | 4845 | } |
| 4846 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4847 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4848 | } |
Takashi Iwai | 59ed1ea | 2015-02-18 15:39:59 +0100 | [diff] [blame] | 4849 | EXPORT_SYMBOL_GPL(snd_hda_bus_reset); |
Takashi Iwai | b2e1859 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 4850 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 4851 | /** |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 4852 | * snd_print_pcm_bits - Print the supported PCM fmt bits to the string buffer |
| 4853 | * @pcm: PCM caps bits |
| 4854 | * @buf: the string buffer to write |
| 4855 | * @buflen: the max buffer length |
| 4856 | * |
| 4857 | * used by hda_proc.c and hda_eld.c |
| 4858 | */ |
Takashi Iwai | b202226 | 2008-11-21 21:24:03 +0100 | [diff] [blame] | 4859 | void snd_print_pcm_bits(int pcm, char *buf, int buflen) |
| 4860 | { |
| 4861 | static unsigned int bits[] = { 8, 16, 20, 24, 32 }; |
| 4862 | int i, j; |
| 4863 | |
| 4864 | for (i = 0, j = 0; i < ARRAY_SIZE(bits); i++) |
| 4865 | if (pcm & (AC_SUPPCM_BITS_8 << i)) |
| 4866 | j += snprintf(buf + j, buflen - j, " %d", bits[i]); |
| 4867 | |
| 4868 | buf[j] = '\0'; /* necessary when j == 0 */ |
| 4869 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 4870 | EXPORT_SYMBOL_GPL(snd_print_pcm_bits); |
Takashi Iwai | 1289e9e | 2008-11-27 15:47:11 +0100 | [diff] [blame] | 4871 | |
| 4872 | MODULE_DESCRIPTION("HDA codec core"); |
| 4873 | MODULE_LICENSE("GPL"); |